diff --git a/.env b/.env index 430cc5b..dd9a386 100644 --- a/.env +++ b/.env @@ -1,3 +1,3 @@ # x-release-please-start-version -VERSION=0.14.2 +VERSION=0.14.1337 # x-release-please-end diff --git a/.github/workflows/pull-request-publish.yml b/.github/workflows/pull-request-publish.yml index 1c7e80a..9b0fef8 100644 --- a/.github/workflows/pull-request-publish.yml +++ b/.github/workflows/pull-request-publish.yml @@ -47,7 +47,10 @@ jobs: CLOUDREPO_USER: ${{ secrets.CLOUDREPO_USER }} CLOUDREPO_PASSWORD: ${{ secrets.CLOUDREPO_PASSWORD }} # will use the version in .env - run: ./gradlew publish + run: | + cat .env + echo VERSION: $VERSION + ./gradlew publish # python - name: Generate Python Protocol Classes diff --git a/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml b/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml index 24c9fa5..e9ea79a 100644 --- a/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml +++ b/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml @@ -76,6 +76,9 @@ definitions: meta: description: Information about this record added mid-sync "$ref": "#/definitions/AirbyteRecordMessageMeta" + file_reference: + description: A reference to assoicated file to be moved with along with the record data. + "$ref": "#/definitions/AirbyteRecordMessageFileReference" AirbyteRecordMessageMeta: type: object additionalProperties: true @@ -122,6 +125,22 @@ definitions: - SOURCE_RETRIEVAL_ERROR # Errors casting to appropriate type - DESTINATION_TYPECAST_ERROR + AirbyteRecordMessageFileReference: + type: object + additionalProperties: true + properties: + file_url: + type: string + description: |- + The absolute path to the referenced file. + file_relative_path: + type: string + description: |- + The relative path to the referenced file in source. + file_size_bytes: + type: integer + description: |- + The size of the referenced file in bytes. AirbyteStateMessage: type: object additionalProperties: true @@ -484,6 +503,10 @@ definitions: If the stream is resumable or not. Should be set to true if the stream supports incremental. Defaults to false. Primarily used by the Platform in Full Refresh to determine if a Full Refresh stream should actually be treated as incremental within a job. type: boolean + is_file_based: + type: boolean + description: |- + This stream represents a series of discrete files and their metadata. ConfiguredAirbyteCatalog: type: object additionalProperties: true @@ -545,6 +568,10 @@ definitions: If this is null, it means that the platform is not supporting the refresh and it is expected that no extra id will be added to the records and no data from previous generation will be cleanup. " type: integer + copy_associated_file: + type: boolean + description: |- + If the stream is_file_based, the associated file will be copied to local disk and passed via reference along with its metadata. SyncMode: type: string enum: