File tree 7 files changed +8
-8
lines changed
algoliasearch/ingestion/models
7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class Authentication(BaseModel):
54
54
input : AuthInputPartial
55
55
created_at : str
56
56
""" Date of creation in RFC 3339 format. """
57
- updated_at : Optional [ str ] = None
57
+ updated_at : str
58
58
""" Date of last update in RFC 3339 format. """
59
59
60
60
model_config = ConfigDict (
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class Destination(BaseModel):
53
53
input : DestinationInput
54
54
created_at : str
55
55
""" Date of creation in RFC 3339 format. """
56
- updated_at : Optional [ str ] = None
56
+ updated_at : str
57
57
""" Date of last update in RFC 3339 format. """
58
58
authentication_id : Optional [str ] = None
59
59
""" Universally unique identifier (UUID) of an authentication resource. """
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class Source(BaseModel):
53
53
""" Universally unique identifier (UUID) of an authentication resource. """
54
54
created_at : str
55
55
""" Date of creation in RFC 3339 format. """
56
- updated_at : Optional [ str ] = None
56
+ updated_at : str
57
57
""" Date of last update in RFC 3339 format. """
58
58
59
59
model_config = ConfigDict (
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ class Task(BaseModel):
80
80
policies : Optional [Policies ] = None
81
81
created_at : str
82
82
""" Date of creation in RFC 3339 format. """
83
- updated_at : Optional [ str ] = None
83
+ updated_at : str
84
84
""" Date of last update in RFC 3339 format. """
85
85
86
86
model_config = ConfigDict (
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ class TaskV1(BaseModel):
69
69
policies : Optional [Policies ] = None
70
70
created_at : str
71
71
""" Date of creation in RFC 3339 format. """
72
- updated_at : Optional [ str ] = None
72
+ updated_at : str
73
73
""" Date of last update in RFC 3339 format. """
74
74
75
75
model_config = ConfigDict (
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class Transformation(BaseModel):
53
53
""" Owner of the resource. """
54
54
created_at : str
55
55
""" Date of creation in RFC 3339 format. """
56
- updated_at : Optional [ str ] = None
56
+ updated_at : str
57
57
""" Date of last update in RFC 3339 format. """
58
58
59
59
model_config = ConfigDict (
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ class TransformationTryResponse(BaseModel):
35
35
TransformationTryResponse
36
36
"""
37
37
38
- payloads : List [object ]
39
- """ The array of records returned by the transformation service. """
38
+ payloads : List [str ]
39
+ """ The array of stringified records returned by the transformation service. """
40
40
error : Optional [TransformationError ] = None
41
41
42
42
model_config = ConfigDict (
You can’t perform that action at this time.
0 commit comments