@remit/api-zod-schemas 0.0.32 → 0.0.34
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.
- package/README.md +24 -1
- package/package.json +1 -1
- package/schemas.d.ts +628 -32
- package/schemas.d.ts.map +1 -1
- package/schemas.js +163 -4
- package/schemas.js.map +1 -1
- package/schemas.ts +187 -5
package/README.md
CHANGED
|
@@ -51,6 +51,13 @@ type CognitoAuthorizer = z.infer<typeof CognitoAuthorizerSchema>;
|
|
|
51
51
|
- `FilterClauseFieldSchema` - Enum for FilterClauseField
|
|
52
52
|
- `LabelColorSchema` - Enum for LabelColor
|
|
53
53
|
- `OrganizeJobStateSchema` - Enum for OrganizeJobState
|
|
54
|
+
- `CalendarColorSchema` - Enum for CalendarColor
|
|
55
|
+
- `CalendarComponentSetSchema` - Enum for CalendarComponentSet
|
|
56
|
+
- `CalendarSourceSchema` - Enum for CalendarSource
|
|
57
|
+
- `CalendarEventStatusSchema` - Enum for CalendarEventStatus
|
|
58
|
+
- `CalendarTransparencySchema` - Enum for CalendarTransparency
|
|
59
|
+
- `ZoneCertaintySchema` - Enum for ZoneCertainty
|
|
60
|
+
- `RecurrenceScopeSchema` - Enum for RecurrenceScope
|
|
54
61
|
- `SortOrderSchema` - Enum for SortOrder
|
|
55
62
|
- `StarColorSchema` - Enum for StarColor
|
|
56
63
|
- `MessageCategorySchema` - Enum for MessageCategory
|
|
@@ -89,10 +96,11 @@ type CognitoAuthorizer = z.infer<typeof CognitoAuthorizerSchema>;
|
|
|
89
96
|
- `ApiErrorSchema` - ApiError model
|
|
90
97
|
- `FolderRoleConflictSchema` - FolderRoleConflict model
|
|
91
98
|
- `AppointFolderRoleConflictSchema` - AppointFolderRoleConflict model
|
|
99
|
+
- `NotFoundErrorSchema` - NotFoundError model
|
|
100
|
+
- `PreconditionFailedErrorSchema` - PreconditionFailedError model
|
|
92
101
|
- `DeleteMessagesConflictSchema` - DeleteMessagesConflict model
|
|
93
102
|
- `MessagePlacementConflictSchema` - MessagePlacementConflict model
|
|
94
103
|
- `AmazonApiGatewayIntegrationSchema` - AmazonApiGatewayIntegration model
|
|
95
|
-
- `NotFoundErrorSchema` - NotFoundError model
|
|
96
104
|
- `InternalServerErrorSchema` - InternalServerError model
|
|
97
105
|
- `UnauthorizedErrorSchema` - UnauthorizedError model
|
|
98
106
|
- `ForbiddenErrorSchema` - ForbiddenError model
|
|
@@ -144,6 +152,20 @@ type CognitoAuthorizer = z.infer<typeof CognitoAuthorizerSchema>;
|
|
|
144
152
|
- `OrganizePreviewResponseSchema` - OrganizePreviewResponse model
|
|
145
153
|
- `OrganizeJobRequestSchema` - OrganizeJobRequest model
|
|
146
154
|
- `OrganizeJobResponseSchema` - OrganizeJobResponse model
|
|
155
|
+
- `CalendarListResponseSchema` - CalendarListResponse model
|
|
156
|
+
- `CalendarCollectionSchema` - CalendarCollection model
|
|
157
|
+
- `CalendarResponseSchema` - CalendarResponse model
|
|
158
|
+
- `CreateCalendarInputSchema` - CreateCalendarInput model
|
|
159
|
+
- `UpdateCalendarInputSchema` - UpdateCalendarInput model
|
|
160
|
+
- `CalendarNoContentSchema` - CalendarNoContent model
|
|
161
|
+
- `CalendarEventListResponseSchema` - CalendarEventListResponse model
|
|
162
|
+
- `CalendarEventInstanceSchema` - CalendarEventInstance model
|
|
163
|
+
- `CreateCalendarEventInputSchema` - CreateCalendarEventInput model
|
|
164
|
+
- `CalendarObjectSchema` - CalendarObject model
|
|
165
|
+
- `CalendarEventResponseSchema` - CalendarEventResponse model
|
|
166
|
+
- `UpdateCalendarEventInputSchema` - UpdateCalendarEventInput model
|
|
167
|
+
- `CalendarFreeBusyResponseSchema` - CalendarFreeBusyResponse model
|
|
168
|
+
- `CalendarFreeBusySpanSchema` - CalendarFreeBusySpan model
|
|
147
169
|
- `EmptyTrashResponseSchema` - EmptyTrashResponse model
|
|
148
170
|
- `SyncTriggerResponseSchema` - SyncTriggerResponse model
|
|
149
171
|
- `AccountSyncStatusResponseSchema` - AccountSyncStatusResponse model
|
|
@@ -232,6 +254,7 @@ type CognitoAuthorizer = z.infer<typeof CognitoAuthorizerSchema>;
|
|
|
232
254
|
- `RawMessageStorageSchema` - RawMessageStorage model
|
|
233
255
|
- `BodyPartStorageSchema` - BodyPartStorage model
|
|
234
256
|
- `BodyPartContentSchema` - BodyPartContent model
|
|
257
|
+
- `CalendarEventIndexSchema` - CalendarEventIndex model
|
|
235
258
|
- `MessageLabelSchema` - MessageLabel model
|
|
236
259
|
- `FilterAnchorSchema` - FilterAnchor model
|
|
237
260
|
- `MicrosoftOAuthStartRequestSchema` - MicrosoftOAuthStartRequest model
|