airbyte-cdk 6.45.4.post48.dev14477787653__py3-none-any.whl → 6.45.4.post49.dev14495925594__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,5 +18,6 @@ class FileRecordData(BaseModel):
18
18
  bytes: int
19
19
  source_uri: str
20
20
  id: Optional[str] = None
21
+ created_at: Optional[str] = None
21
22
  updated_at: Optional[str] = None
22
23
  mime_type: Optional[str] = None
@@ -27,6 +27,7 @@ file_transfer_schema = {
27
27
  "source_uri": {"type": "string"},
28
28
  "bytes": {"type": "integer"},
29
29
  "id": {"type": ["null", "string"]},
30
+ "created_at": {"type": ["null", "string"]},
30
31
  "updated_at": {"type": ["null", "string"]},
31
32
  "mime_type": {"type": ["null", "string"]},
32
33
  },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-cdk
3
- Version: 6.45.4.post48.dev14477787653
3
+ Version: 6.45.4.post49.dev14495925594
4
4
  Summary: A framework for writing Airbyte Connectors.
5
5
  Home-page: https://airbyte.com
6
6
  License: MIT
@@ -225,7 +225,7 @@ airbyte_cdk/sources/file_based/exceptions.py,sha256=WP0qkG6fpWoBpOyyicgp5YNE393V
225
225
  airbyte_cdk/sources/file_based/file_based_source.py,sha256=Xg8OYWnGc-OcVBglvS08uwAWGWHBhEqsBnyODIkOK-4,20051
226
226
  airbyte_cdk/sources/file_based/file_based_stream_permissions_reader.py,sha256=4e7FXqQ9hueacexC0SyrZyjF8oREYHza8pKF9CgKbD8,5050
227
227
  airbyte_cdk/sources/file_based/file_based_stream_reader.py,sha256=rwz8AhEIqYB9gBF7uW9eR--eUiHOntzuwLH8jFHNacE,7854
228
- airbyte_cdk/sources/file_based/file_record_data.py,sha256=aIbUHHjZOF_OIS22ePr0Vu0MQ6rmLmSC1D4kDdGmVKw,415
228
+ airbyte_cdk/sources/file_based/file_record_data.py,sha256=GtCHwIagI24EsZbAh_qffBtGuLSJQulRxoA3KgoqUSA,452
229
229
  airbyte_cdk/sources/file_based/file_types/__init__.py,sha256=blCLn0-2LC-ZdgcNyDEhqM2RiUvEjEBh-G4-t32ZtuM,1268
230
230
  airbyte_cdk/sources/file_based/file_types/avro_parser.py,sha256=USEYqiICXBWpDV443VtNOCmUA-GINzY_Zah74_5w3qQ,10860
231
231
  airbyte_cdk/sources/file_based/file_types/csv_parser.py,sha256=QlCXB-ry3np67Q_VerQEPoWDOTcPTB6Go4ydZxY9ae4,20445
@@ -236,7 +236,7 @@ airbyte_cdk/sources/file_based/file_types/jsonl_parser.py,sha256=GwyNyxmST4RX-Xp
236
236
  airbyte_cdk/sources/file_based/file_types/parquet_parser.py,sha256=XenFg5sJ-UBnIkSmsiNJRou11NO0zZXx-RXgPHMT2NA,10487
237
237
  airbyte_cdk/sources/file_based/file_types/unstructured_parser.py,sha256=2TYOQl62FQPCa8otLbkDIk_j01EP3oWaKSfXGhCjCHg,19492
238
238
  airbyte_cdk/sources/file_based/remote_file.py,sha256=yqRz93vPe8PBXLIMJ5W5u2JRlZRhg6sBrAjn3pPjJ8A,315
239
- airbyte_cdk/sources/file_based/schema_helpers.py,sha256=1zRxdyirn-1kx2Zvh1TOZ_AzFkwrNxqwIZFmQ5V-2s4,9859
239
+ airbyte_cdk/sources/file_based/schema_helpers.py,sha256=dKXAOTmMI3YmC5u7PeHC9AaZmlL6ft7CYSFQKCg0sXw,9911
240
240
  airbyte_cdk/sources/file_based/schema_validation_policies/__init__.py,sha256=FkByIyEy56x2_awYnxGPqGaOp7zAzpAoRkPZHKySI9M,536
241
241
  airbyte_cdk/sources/file_based/schema_validation_policies/abstract_schema_validation_policy.py,sha256=kjvX7nOmUALYd7HuZHilUzgJPZ-MnZ08mtvuBnt2tQ0,618
242
242
  airbyte_cdk/sources/file_based/schema_validation_policies/default_schema_validation_policies.py,sha256=vjTlmYT_nqzY3DbT5xem7X-bwgA9RyXHoKFqiMO2URk,1728
@@ -368,9 +368,9 @@ airbyte_cdk/utils/slice_hasher.py,sha256=EDxgROHDbfG-QKQb59m7h_7crN1tRiawdf5uU7G
368
368
  airbyte_cdk/utils/spec_schema_transformations.py,sha256=-5HTuNsnDBAhj-oLeQXwpTGA0HdcjFOf2zTEMUTTg_Y,816
369
369
  airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
370
370
  airbyte_cdk/utils/traced_exception.py,sha256=C8uIBuCL_E4WnBAOPSxBicD06JAldoN9fGsQDp463OY,6292
371
- airbyte_cdk-6.45.4.post48.dev14477787653.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
372
- airbyte_cdk-6.45.4.post48.dev14477787653.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
373
- airbyte_cdk-6.45.4.post48.dev14477787653.dist-info/METADATA,sha256=Gu6M00yFsyCmQxvvT4JMHpkZK7f8nmd9IiGZfuiHpfc,6093
374
- airbyte_cdk-6.45.4.post48.dev14477787653.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
375
- airbyte_cdk-6.45.4.post48.dev14477787653.dist-info/entry_points.txt,sha256=fj-e3PAQvsxsQzyyq8UkG1k8spunWnD4BAH2AwlR6NM,95
376
- airbyte_cdk-6.45.4.post48.dev14477787653.dist-info/RECORD,,
371
+ airbyte_cdk-6.45.4.post49.dev14495925594.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
372
+ airbyte_cdk-6.45.4.post49.dev14495925594.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
373
+ airbyte_cdk-6.45.4.post49.dev14495925594.dist-info/METADATA,sha256=TeyHzZfvAyAPR51JBpxkYrQyyokxjv7kBcpnr1OG4V8,6093
374
+ airbyte_cdk-6.45.4.post49.dev14495925594.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
375
+ airbyte_cdk-6.45.4.post49.dev14495925594.dist-info/entry_points.txt,sha256=fj-e3PAQvsxsQzyyq8UkG1k8spunWnD4BAH2AwlR6NM,95
376
+ airbyte_cdk-6.45.4.post49.dev14495925594.dist-info/RECORD,,