Skip to content

Commit ac40035

Browse files
authoredApr 2, 2025··
fix(specs): make the updateAt non-null in ingestion (#4697)
1 parent e67774c commit ac40035

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed
 

Diff for: ‎specs/ingestion/common/schemas/authentication.yml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Authentication:
2525
- name
2626
- input
2727
- createdAt
28+
- updatedAt
2829

2930
AuthenticationCreate:
3031
type: object

Diff for: ‎specs/ingestion/common/schemas/destination.yml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Destination:
2727
- name
2828
- input
2929
- createdAt
30+
- updatedAt
3031

3132
DestinationCreate:
3233
type: object

Diff for: ‎specs/ingestion/common/schemas/source.yml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Source:
2323
- type
2424
- name
2525
- createdAt
26+
- updatedAt
2627

2728
SourceCreate:
2829
type: object

Diff for: ‎specs/ingestion/common/schemas/task.yml

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Task:
4444
- destinationID
4545
- enabled
4646
- createdAt
47+
- updatedAt
4748

4849
TaskV1:
4950
type: object
@@ -86,6 +87,7 @@ TaskV1:
8687
- trigger
8788
- enabled
8889
- createdAt
90+
- updatedAt
8991

9092
Trigger:
9193
description: Trigger that runs the task.

Diff for: ‎specs/ingestion/common/schemas/transformation.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Transformation:
2323
- code
2424
- name
2525
- createdAt
26+
- updatedAt
2627

2728
Code:
2829
type: string
@@ -119,9 +120,9 @@ TransformationTryResponse:
119120
properties:
120121
payloads:
121122
type: array
122-
description: The array of records returned by the transformation service.
123+
description: The array of stringified records returned by the transformation service.
123124
items:
124-
type: object
125+
type: string
125126
error:
126127
title: transformationError
127128
type: object

0 commit comments

Comments
 (0)
Please sign in to comment.