@remit/api-zod-schemas 0.0.33 → 0.0.35
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 +30 -9
- package/package.json +1 -1
- package/schemas.d.ts +791 -185
- package/schemas.d.ts.map +1 -1
- package/schemas.js +205 -44
- package/schemas.js.map +1 -1
- package/schemas.ts +235 -53
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
|
|
@@ -73,6 +80,9 @@ type CognitoAuthorizer = z.infer<typeof CognitoAuthorizerSchema>;
|
|
|
73
80
|
- `MultipartSubtypeSchema` - Enum for MultipartSubtype
|
|
74
81
|
- `ReferenceTypeSchema` - Enum for ReferenceType
|
|
75
82
|
- `LabelActionSchema` - Enum for LabelAction
|
|
83
|
+
- `CalendarSuggestionStateSchema` - Enum for CalendarSuggestionState
|
|
84
|
+
- `CalendarInviteMethodSchema` - Enum for CalendarInviteMethod
|
|
85
|
+
- `CalendarSuggestionSourceSchema` - Enum for CalendarSuggestionSource
|
|
76
86
|
- `MessageSystemFlagSchema` - Enum for MessageSystemFlag
|
|
77
87
|
- `MessageKeywordFlagSchema` - Enum for MessageKeywordFlag
|
|
78
88
|
- `MailboxAttributeSchema` - Enum for MailboxAttribute
|
|
@@ -81,12 +91,6 @@ type CognitoAuthorizer = z.infer<typeof CognitoAuthorizerSchema>;
|
|
|
81
91
|
- `AccountSettingNameSchema` - Enum for AccountSettingName
|
|
82
92
|
- `ConfigImportStateSchema` - Enum for ConfigImportState
|
|
83
93
|
- `ConfigImportRefKindSchema` - Enum for ConfigImportRefKind
|
|
84
|
-
- `CalendarColorSchema` - Enum for CalendarColor
|
|
85
|
-
- `CalendarComponentSetSchema` - Enum for CalendarComponentSet
|
|
86
|
-
- `CalendarSourceSchema` - Enum for CalendarSource
|
|
87
|
-
- `CalendarEventStatusSchema` - Enum for CalendarEventStatus
|
|
88
|
-
- `CalendarTransparencySchema` - Enum for CalendarTransparency
|
|
89
|
-
- `ZoneCertaintySchema` - Enum for ZoneCertainty
|
|
90
94
|
- `MessagePlacementMoveStateSchema` - Enum for MessagePlacementMoveState
|
|
91
95
|
- `FlagPushOperationSchema` - Enum for FlagPushOperation
|
|
92
96
|
- `MessageFlagPushStateSchema` - Enum for MessageFlagPushState
|
|
@@ -95,10 +99,11 @@ type CognitoAuthorizer = z.infer<typeof CognitoAuthorizerSchema>;
|
|
|
95
99
|
- `ApiErrorSchema` - ApiError model
|
|
96
100
|
- `FolderRoleConflictSchema` - FolderRoleConflict model
|
|
97
101
|
- `AppointFolderRoleConflictSchema` - AppointFolderRoleConflict model
|
|
102
|
+
- `NotFoundErrorSchema` - NotFoundError model
|
|
103
|
+
- `PreconditionFailedErrorSchema` - PreconditionFailedError model
|
|
98
104
|
- `DeleteMessagesConflictSchema` - DeleteMessagesConflict model
|
|
99
105
|
- `MessagePlacementConflictSchema` - MessagePlacementConflict model
|
|
100
106
|
- `AmazonApiGatewayIntegrationSchema` - AmazonApiGatewayIntegration model
|
|
101
|
-
- `NotFoundErrorSchema` - NotFoundError model
|
|
102
107
|
- `InternalServerErrorSchema` - InternalServerError model
|
|
103
108
|
- `UnauthorizedErrorSchema` - UnauthorizedError model
|
|
104
109
|
- `ForbiddenErrorSchema` - ForbiddenError model
|
|
@@ -150,6 +155,20 @@ type CognitoAuthorizer = z.infer<typeof CognitoAuthorizerSchema>;
|
|
|
150
155
|
- `OrganizePreviewResponseSchema` - OrganizePreviewResponse model
|
|
151
156
|
- `OrganizeJobRequestSchema` - OrganizeJobRequest model
|
|
152
157
|
- `OrganizeJobResponseSchema` - OrganizeJobResponse model
|
|
158
|
+
- `CalendarListResponseSchema` - CalendarListResponse model
|
|
159
|
+
- `CalendarCollectionSchema` - CalendarCollection model
|
|
160
|
+
- `CalendarResponseSchema` - CalendarResponse model
|
|
161
|
+
- `CreateCalendarInputSchema` - CreateCalendarInput model
|
|
162
|
+
- `UpdateCalendarInputSchema` - UpdateCalendarInput model
|
|
163
|
+
- `CalendarNoContentSchema` - CalendarNoContent model
|
|
164
|
+
- `CalendarEventListResponseSchema` - CalendarEventListResponse model
|
|
165
|
+
- `CalendarEventInstanceSchema` - CalendarEventInstance model
|
|
166
|
+
- `CreateCalendarEventInputSchema` - CreateCalendarEventInput model
|
|
167
|
+
- `CalendarObjectSchema` - CalendarObject model
|
|
168
|
+
- `CalendarEventResponseSchema` - CalendarEventResponse model
|
|
169
|
+
- `UpdateCalendarEventInputSchema` - UpdateCalendarEventInput model
|
|
170
|
+
- `CalendarFreeBusyResponseSchema` - CalendarFreeBusyResponse model
|
|
171
|
+
- `CalendarFreeBusySpanSchema` - CalendarFreeBusySpan model
|
|
153
172
|
- `EmptyTrashResponseSchema` - EmptyTrashResponse model
|
|
154
173
|
- `SyncTriggerResponseSchema` - SyncTriggerResponse model
|
|
155
174
|
- `AccountSyncStatusResponseSchema` - AccountSyncStatusResponse model
|
|
@@ -214,6 +233,10 @@ type CognitoAuthorizer = z.infer<typeof CognitoAuthorizerSchema>;
|
|
|
214
233
|
- `UpdateMessageLabelsInputSchema` - UpdateMessageLabelsInput model
|
|
215
234
|
- `SpamReportBulkResultSchema` - SpamReportBulkResult model
|
|
216
235
|
- `SpamReportFailureSchema` - SpamReportFailure model
|
|
236
|
+
- `CalendarSuggestionSchema` - CalendarSuggestion model
|
|
237
|
+
- `CalendarSuggestionResponseSchema` - CalendarSuggestionResponse model
|
|
238
|
+
- `AcceptCalendarSuggestionInputSchema` - AcceptCalendarSuggestionInput model
|
|
239
|
+
- `DismissCalendarSuggestionInputSchema` - DismissCalendarSuggestionInput model
|
|
217
240
|
- `EnvelopeAddressSchema` - EnvelopeAddress model
|
|
218
241
|
- `ConfigImportUnresolvedRefSchema` - ConfigImportUnresolvedRef model
|
|
219
242
|
- `ConfigImportSchema` - ConfigImport model
|
|
@@ -238,8 +261,6 @@ type CognitoAuthorizer = z.infer<typeof CognitoAuthorizerSchema>;
|
|
|
238
261
|
- `RawMessageStorageSchema` - RawMessageStorage model
|
|
239
262
|
- `BodyPartStorageSchema` - BodyPartStorage model
|
|
240
263
|
- `BodyPartContentSchema` - BodyPartContent model
|
|
241
|
-
- `CalendarCollectionSchema` - CalendarCollection model
|
|
242
|
-
- `CalendarObjectSchema` - CalendarObject model
|
|
243
264
|
- `CalendarEventIndexSchema` - CalendarEventIndex model
|
|
244
265
|
- `MessageLabelSchema` - MessageLabel model
|
|
245
266
|
- `FilterAnchorSchema` - FilterAnchor model
|