@seamapi/types 1.205.0 → 1.206.0
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/dist/connect.cjs +8 -16
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +11 -1
- package/lib/seam/connect/models/acs/acs-system.js +5 -9
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +9 -1
- package/lib/seam/connect/openapi.js +3 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +5 -11
- package/src/lib/seam/connect/openapi.ts +3 -6
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -3062,6 +3062,8 @@ export interface Routes {
|
|
|
3062
3062
|
user_identity_phone_number?: string | undefined;
|
|
3063
3063
|
user_identity_email_address?: string | undefined;
|
|
3064
3064
|
acs_system_id?: string | undefined;
|
|
3065
|
+
limit?: number;
|
|
3066
|
+
created_before?: Date | undefined;
|
|
3065
3067
|
};
|
|
3066
3068
|
formData: {};
|
|
3067
3069
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -86,13 +86,7 @@ const acs_system_error_map = z.object({
|
|
|
86
86
|
|
|
87
87
|
export type AcsSystemErrorMap = z.infer<typeof acs_system_error_map>
|
|
88
88
|
|
|
89
|
-
const acs_system_warning = z.object({})
|
|
90
|
-
`
|
|
91
|
-
---
|
|
92
|
-
undocumented: Currently, no warnings defined for \`acs_system\`s.
|
|
93
|
-
---
|
|
94
|
-
`,
|
|
95
|
-
)
|
|
89
|
+
const acs_system_warning = z.object({})
|
|
96
90
|
|
|
97
91
|
const acs_system_warning_map = z.object({})
|
|
98
92
|
|
|
@@ -151,10 +145,10 @@ export const acs_system = z
|
|
|
151
145
|
.describe('Errors associated with the `acs_system`.'),
|
|
152
146
|
warnings: z.array(acs_system_warning).describe(
|
|
153
147
|
`
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
148
|
+
---
|
|
149
|
+
undocumented: Currently, no warnings defined for \`acs_system\`s.
|
|
150
|
+
---
|
|
151
|
+
`,
|
|
158
152
|
),
|
|
159
153
|
})
|
|
160
154
|
.merge(acs_system_capability_flags)
|
|
@@ -587,12 +587,7 @@ export default {
|
|
|
587
587
|
'x-deprecated': 'Use `external_type_display_name`.',
|
|
588
588
|
},
|
|
589
589
|
warnings: {
|
|
590
|
-
items: {
|
|
591
|
-
description:
|
|
592
|
-
'\n ---\n undocumented: Currently, no warnings defined for `acs_system`s.\n ---\n ',
|
|
593
|
-
properties: {},
|
|
594
|
-
type: 'object',
|
|
595
|
-
},
|
|
590
|
+
items: { properties: {}, type: 'object' },
|
|
596
591
|
type: 'array',
|
|
597
592
|
'x-undocumented':
|
|
598
593
|
'Currently, no warnings defined for `acs_system`s.',
|
|
@@ -7074,6 +7069,8 @@ export default {
|
|
|
7074
7069
|
schema: {
|
|
7075
7070
|
properties: {
|
|
7076
7071
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
7072
|
+
created_before: { format: 'date-time', type: 'string' },
|
|
7073
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
7077
7074
|
user_identity_email_address: { type: 'string' },
|
|
7078
7075
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
7079
7076
|
user_identity_phone_number: { type: 'string' },
|
|
@@ -3502,6 +3502,8 @@ export interface Routes {
|
|
|
3502
3502
|
user_identity_phone_number?: string | undefined
|
|
3503
3503
|
user_identity_email_address?: string | undefined
|
|
3504
3504
|
acs_system_id?: string | undefined
|
|
3505
|
+
limit?: number
|
|
3506
|
+
created_before?: Date | undefined
|
|
3505
3507
|
}
|
|
3506
3508
|
formData: {}
|
|
3507
3509
|
jsonResponse: {
|