Skip to content

Commit

Permalink
Merge branch 'airbytehq:main' into bajnok97/34825-add-minio-mc-overri…
Browse files Browse the repository at this point in the history
…de-capability
  • Loading branch information
bajnok97 authored Oct 2, 2024
2 parents 448a0bb + 156f8f9 commit 75836e6
Show file tree
Hide file tree
Showing 180 changed files with 248,029 additions and 2,892 deletions.
16 changes: 14 additions & 2 deletions airbyte-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,24 @@ plugins {

airbyte {
spotless {
excludes = listOf(project(":oss:airbyte-api:workload-api").file("src/main/openapi/workload-openapi.yaml").path)
excludes = listOf(
project(":oss:airbyte-api:workload-api").file("src/main/openapi/workload-openapi.yaml").path,
project(":oss:airbyte-api:server-api").file("src/main/openapi/api.yaml").path,

project(":oss:airbyte-api:server-api").file("src/main/openapi/api_sdk.yaml").path,
project(":oss:airbyte-api:server-api").file("src/main/openapi/api_terraform.yaml").path,
project(":oss:airbyte-api:server-api").file("src/main/openapi/api_documentation_connections.yaml").path,
project(":oss:airbyte-api:server-api").file("src/main/openapi/api_documentation_sources.yaml").path,
project(":oss:airbyte-api:server-api").file("src/main/openapi/api_documentation_destinations.yaml").path,
project(":oss:airbyte-api:server-api").file("src/main/openapi/api_documentation_streams.yaml").path,
project(":oss:airbyte-api:server-api").file("src/main/openapi/api_documentation_jobs.yaml").path,
project(":oss:airbyte-api:server-api").file("src/main/openapi/api_documentation_workspaces.yaml").path,
)
}
}

dependencies {
project.subprojects.forEach { subProject ->
implementation(project(subProject.path))
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package io.airbyte.api.problems

class ResourceType {
companion object {
const val ORGANIZATION = "organization"
const val ORGANIZATION_PAYMENT_CONFIG = "organization_payment_configuration"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ components:
properties:
status:
type: integer
default: 400
default: 404
type:
type: string
default: https://reference.airbyte.com/reference/errors#resource-not-found
Expand Down
346 changes: 187 additions & 159 deletions airbyte-api/server-api/build.gradle.kts

Large diffs are not rendered by default.

Loading

0 comments on commit 75836e6

Please sign in to comment.