@seamapi/types 1.363.0 → 1.364.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 +312 -38
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1410 -102
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1486 -34
- package/lib/seam/connect/models/access-codes/managed-access-code.js +135 -11
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +306 -21
- package/lib/seam/connect/models/acs/acs-user.d.ts +8 -8
- package/lib/seam/connect/openapi.d.ts +18 -2
- package/lib/seam/connect/openapi.js +240 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +594 -45
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +152 -12
- package/src/lib/seam/connect/openapi.ts +252 -32
- package/src/lib/seam/connect/route-types.ts +648 -54
|
@@ -184,15 +184,15 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
184
184
|
warning_code: "unknown_issue_with_acs_user";
|
|
185
185
|
}>>>;
|
|
186
186
|
}, "strip", z.ZodTypeAny, {
|
|
187
|
-
|
|
187
|
+
salto_ks_user_not_subscribed?: {
|
|
188
188
|
message: string;
|
|
189
189
|
created_at: string;
|
|
190
|
-
warning_code: "
|
|
190
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
191
191
|
} | null | undefined;
|
|
192
|
-
|
|
192
|
+
being_deleted?: {
|
|
193
193
|
message: string;
|
|
194
194
|
created_at: string;
|
|
195
|
-
warning_code: "
|
|
195
|
+
warning_code: "being_deleted";
|
|
196
196
|
} | null | undefined;
|
|
197
197
|
unknown_issue_with_acs_user?: {
|
|
198
198
|
message: string;
|
|
@@ -200,15 +200,15 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
200
200
|
warning_code: "unknown_issue_with_acs_user";
|
|
201
201
|
} | null | undefined;
|
|
202
202
|
}, {
|
|
203
|
-
|
|
203
|
+
salto_ks_user_not_subscribed?: {
|
|
204
204
|
message: string;
|
|
205
205
|
created_at: string;
|
|
206
|
-
warning_code: "
|
|
206
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
207
207
|
} | null | undefined;
|
|
208
|
-
|
|
208
|
+
being_deleted?: {
|
|
209
209
|
message: string;
|
|
210
210
|
created_at: string;
|
|
211
|
-
warning_code: "
|
|
211
|
+
warning_code: "being_deleted";
|
|
212
212
|
} | null | undefined;
|
|
213
213
|
unknown_issue_with_acs_user?: {
|
|
214
214
|
message: string;
|
|
@@ -43,6 +43,11 @@ declare const _default: {
|
|
|
43
43
|
oneOf: ({
|
|
44
44
|
description: string;
|
|
45
45
|
properties: {
|
|
46
|
+
created_at: {
|
|
47
|
+
format: string;
|
|
48
|
+
type: string;
|
|
49
|
+
description?: never;
|
|
50
|
+
};
|
|
46
51
|
error_code: {
|
|
47
52
|
description: string;
|
|
48
53
|
enum: string[];
|
|
@@ -55,7 +60,6 @@ declare const _default: {
|
|
|
55
60
|
message: {
|
|
56
61
|
type: string;
|
|
57
62
|
};
|
|
58
|
-
created_at?: never;
|
|
59
63
|
is_connected_account_error?: never;
|
|
60
64
|
is_device_error?: never;
|
|
61
65
|
};
|
|
@@ -212,6 +216,10 @@ declare const _default: {
|
|
|
212
216
|
oneOf: {
|
|
213
217
|
description: string;
|
|
214
218
|
properties: {
|
|
219
|
+
created_at: {
|
|
220
|
+
format: string;
|
|
221
|
+
type: string;
|
|
222
|
+
};
|
|
215
223
|
message: {
|
|
216
224
|
type: string;
|
|
217
225
|
};
|
|
@@ -7482,6 +7490,11 @@ declare const _default: {
|
|
|
7482
7490
|
oneOf: ({
|
|
7483
7491
|
description: string;
|
|
7484
7492
|
properties: {
|
|
7493
|
+
created_at: {
|
|
7494
|
+
format: string;
|
|
7495
|
+
type: string;
|
|
7496
|
+
description?: never;
|
|
7497
|
+
};
|
|
7485
7498
|
error_code: {
|
|
7486
7499
|
description: string;
|
|
7487
7500
|
enum: string[];
|
|
@@ -7494,7 +7507,6 @@ declare const _default: {
|
|
|
7494
7507
|
message: {
|
|
7495
7508
|
type: string;
|
|
7496
7509
|
};
|
|
7497
|
-
created_at?: never;
|
|
7498
7510
|
is_connected_account_error?: never;
|
|
7499
7511
|
is_device_error?: never;
|
|
7500
7512
|
};
|
|
@@ -7615,6 +7627,10 @@ declare const _default: {
|
|
|
7615
7627
|
oneOf: {
|
|
7616
7628
|
description: string;
|
|
7617
7629
|
properties: {
|
|
7630
|
+
created_at: {
|
|
7631
|
+
format: string;
|
|
7632
|
+
type: string;
|
|
7633
|
+
};
|
|
7618
7634
|
message: {
|
|
7619
7635
|
type: string;
|
|
7620
7636
|
};
|