@seamapi/types 1.473.0 → 1.474.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 +43 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +135 -0
- package/dist/index.cjs +43 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +126 -0
- package/lib/seam/connect/models/batch.js +3 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +16 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +48 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +52 -0
|
@@ -33447,6 +33447,43 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33447
33447
|
selected_provider: string | null;
|
|
33448
33448
|
customer_key?: string | undefined;
|
|
33449
33449
|
}>, "many">>;
|
|
33450
|
+
access_methods: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33451
|
+
workspace_id: z.ZodString;
|
|
33452
|
+
access_method_id: z.ZodString;
|
|
33453
|
+
display_name: z.ZodString;
|
|
33454
|
+
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
33455
|
+
created_at: z.ZodString;
|
|
33456
|
+
issued_at: z.ZodNullable<z.ZodString>;
|
|
33457
|
+
is_issued: z.ZodBoolean;
|
|
33458
|
+
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
33459
|
+
client_session_token: z.ZodOptional<z.ZodString>;
|
|
33460
|
+
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
33461
|
+
code: z.ZodOptional<z.ZodString>;
|
|
33462
|
+
}, "strip", z.ZodTypeAny, {
|
|
33463
|
+
display_name: string;
|
|
33464
|
+
workspace_id: string;
|
|
33465
|
+
created_at: string;
|
|
33466
|
+
mode: "code" | "card" | "mobile_key";
|
|
33467
|
+
access_method_id: string;
|
|
33468
|
+
issued_at: string | null;
|
|
33469
|
+
is_issued: boolean;
|
|
33470
|
+
code?: string | undefined;
|
|
33471
|
+
client_session_token?: string | undefined;
|
|
33472
|
+
instant_key_url?: string | undefined;
|
|
33473
|
+
is_encoding_required?: boolean | undefined;
|
|
33474
|
+
}, {
|
|
33475
|
+
display_name: string;
|
|
33476
|
+
workspace_id: string;
|
|
33477
|
+
created_at: string;
|
|
33478
|
+
mode: "code" | "card" | "mobile_key";
|
|
33479
|
+
access_method_id: string;
|
|
33480
|
+
issued_at: string | null;
|
|
33481
|
+
is_issued: boolean;
|
|
33482
|
+
code?: string | undefined;
|
|
33483
|
+
client_session_token?: string | undefined;
|
|
33484
|
+
instant_key_url?: string | undefined;
|
|
33485
|
+
is_encoding_required?: boolean | undefined;
|
|
33486
|
+
}>, "many">>;
|
|
33450
33487
|
}, "strip", z.ZodTypeAny, {
|
|
33451
33488
|
batch_type: "workspaces";
|
|
33452
33489
|
spaces?: {
|
|
@@ -34268,6 +34305,19 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
34268
34305
|
user_identity_key: string | null;
|
|
34269
34306
|
acs_user_ids: string[];
|
|
34270
34307
|
}[] | undefined;
|
|
34308
|
+
access_methods?: {
|
|
34309
|
+
display_name: string;
|
|
34310
|
+
workspace_id: string;
|
|
34311
|
+
created_at: string;
|
|
34312
|
+
mode: "code" | "card" | "mobile_key";
|
|
34313
|
+
access_method_id: string;
|
|
34314
|
+
issued_at: string | null;
|
|
34315
|
+
is_issued: boolean;
|
|
34316
|
+
code?: string | undefined;
|
|
34317
|
+
client_session_token?: string | undefined;
|
|
34318
|
+
instant_key_url?: string | undefined;
|
|
34319
|
+
is_encoding_required?: boolean | undefined;
|
|
34320
|
+
}[] | undefined;
|
|
34271
34321
|
workspaces?: {
|
|
34272
34322
|
name: string;
|
|
34273
34323
|
workspace_id: string;
|
|
@@ -36387,6 +36437,19 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
36387
36437
|
user_identity_key: string | null;
|
|
36388
36438
|
acs_user_ids: string[];
|
|
36389
36439
|
}[] | undefined;
|
|
36440
|
+
access_methods?: {
|
|
36441
|
+
display_name: string;
|
|
36442
|
+
workspace_id: string;
|
|
36443
|
+
created_at: string;
|
|
36444
|
+
mode: "code" | "card" | "mobile_key";
|
|
36445
|
+
access_method_id: string;
|
|
36446
|
+
issued_at: string | null;
|
|
36447
|
+
is_issued: boolean;
|
|
36448
|
+
code?: string | undefined;
|
|
36449
|
+
client_session_token?: string | undefined;
|
|
36450
|
+
instant_key_url?: string | undefined;
|
|
36451
|
+
is_encoding_required?: boolean | undefined;
|
|
36452
|
+
}[] | undefined;
|
|
36390
36453
|
workspaces?: {
|
|
36391
36454
|
name: string;
|
|
36392
36455
|
workspace_id: string;
|
|
@@ -51357,6 +51420,43 @@ export declare const batch: z.ZodObject<{
|
|
|
51357
51420
|
selected_provider: string | null;
|
|
51358
51421
|
customer_key?: string | undefined;
|
|
51359
51422
|
}>, "many">>;
|
|
51423
|
+
access_methods: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51424
|
+
workspace_id: z.ZodString;
|
|
51425
|
+
access_method_id: z.ZodString;
|
|
51426
|
+
display_name: z.ZodString;
|
|
51427
|
+
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
51428
|
+
created_at: z.ZodString;
|
|
51429
|
+
issued_at: z.ZodNullable<z.ZodString>;
|
|
51430
|
+
is_issued: z.ZodBoolean;
|
|
51431
|
+
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
51432
|
+
client_session_token: z.ZodOptional<z.ZodString>;
|
|
51433
|
+
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
51434
|
+
code: z.ZodOptional<z.ZodString>;
|
|
51435
|
+
}, "strip", z.ZodTypeAny, {
|
|
51436
|
+
display_name: string;
|
|
51437
|
+
workspace_id: string;
|
|
51438
|
+
created_at: string;
|
|
51439
|
+
mode: "code" | "card" | "mobile_key";
|
|
51440
|
+
access_method_id: string;
|
|
51441
|
+
issued_at: string | null;
|
|
51442
|
+
is_issued: boolean;
|
|
51443
|
+
code?: string | undefined;
|
|
51444
|
+
client_session_token?: string | undefined;
|
|
51445
|
+
instant_key_url?: string | undefined;
|
|
51446
|
+
is_encoding_required?: boolean | undefined;
|
|
51447
|
+
}, {
|
|
51448
|
+
display_name: string;
|
|
51449
|
+
workspace_id: string;
|
|
51450
|
+
created_at: string;
|
|
51451
|
+
mode: "code" | "card" | "mobile_key";
|
|
51452
|
+
access_method_id: string;
|
|
51453
|
+
issued_at: string | null;
|
|
51454
|
+
is_issued: boolean;
|
|
51455
|
+
code?: string | undefined;
|
|
51456
|
+
client_session_token?: string | undefined;
|
|
51457
|
+
instant_key_url?: string | undefined;
|
|
51458
|
+
is_encoding_required?: boolean | undefined;
|
|
51459
|
+
}>, "many">>;
|
|
51360
51460
|
}, "strip", z.ZodTypeAny, {
|
|
51361
51461
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
51362
51462
|
spaces?: {
|
|
@@ -52178,6 +52278,19 @@ export declare const batch: z.ZodObject<{
|
|
|
52178
52278
|
user_identity_key: string | null;
|
|
52179
52279
|
acs_user_ids: string[];
|
|
52180
52280
|
}[] | undefined;
|
|
52281
|
+
access_methods?: {
|
|
52282
|
+
display_name: string;
|
|
52283
|
+
workspace_id: string;
|
|
52284
|
+
created_at: string;
|
|
52285
|
+
mode: "code" | "card" | "mobile_key";
|
|
52286
|
+
access_method_id: string;
|
|
52287
|
+
issued_at: string | null;
|
|
52288
|
+
is_issued: boolean;
|
|
52289
|
+
code?: string | undefined;
|
|
52290
|
+
client_session_token?: string | undefined;
|
|
52291
|
+
instant_key_url?: string | undefined;
|
|
52292
|
+
is_encoding_required?: boolean | undefined;
|
|
52293
|
+
}[] | undefined;
|
|
52181
52294
|
workspaces?: {
|
|
52182
52295
|
name: string;
|
|
52183
52296
|
workspace_id: string;
|
|
@@ -54297,6 +54410,19 @@ export declare const batch: z.ZodObject<{
|
|
|
54297
54410
|
user_identity_key: string | null;
|
|
54298
54411
|
acs_user_ids: string[];
|
|
54299
54412
|
}[] | undefined;
|
|
54413
|
+
access_methods?: {
|
|
54414
|
+
display_name: string;
|
|
54415
|
+
workspace_id: string;
|
|
54416
|
+
created_at: string;
|
|
54417
|
+
mode: "code" | "card" | "mobile_key";
|
|
54418
|
+
access_method_id: string;
|
|
54419
|
+
issued_at: string | null;
|
|
54420
|
+
is_issued: boolean;
|
|
54421
|
+
code?: string | undefined;
|
|
54422
|
+
client_session_token?: string | undefined;
|
|
54423
|
+
instant_key_url?: string | undefined;
|
|
54424
|
+
is_encoding_required?: boolean | undefined;
|
|
54425
|
+
}[] | undefined;
|
|
54300
54426
|
workspaces?: {
|
|
54301
54427
|
name: string;
|
|
54302
54428
|
workspace_id: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
import { access_method } from './access-grants/access-method.js';
|
|
2
3
|
import { acs_access_group, unmanaged_acs_access_group, } from './acs/acs-access-group.js';
|
|
3
4
|
import { acs_encoder } from './acs/acs-encoder.js';
|
|
4
5
|
import { acs_user, unmanaged_acs_user } from './acs/acs-users/acs-user.js';
|
|
@@ -55,6 +56,7 @@ export const workspaces_batch = z
|
|
|
55
56
|
unmanaged_acs_access_groups: unmanaged_acs_access_group.array().optional(),
|
|
56
57
|
unmanaged_devices: unmanaged_device.array().optional(),
|
|
57
58
|
connect_webviews: connect_webview.array().optional(),
|
|
59
|
+
access_methods: access_method.array().optional(),
|
|
58
60
|
})
|
|
59
61
|
.describe('A batch of workspace resources.');
|
|
60
62
|
export const batch = z
|
|
@@ -80,6 +82,7 @@ export const batch = z
|
|
|
80
82
|
unmanaged_acs_access_groups: unmanaged_acs_access_group.array().optional(),
|
|
81
83
|
unmanaged_devices: unmanaged_device.array().optional(),
|
|
82
84
|
connect_webviews: connect_webview.array().optional(),
|
|
85
|
+
access_methods: access_method.array().optional(),
|
|
83
86
|
})
|
|
84
87
|
.describe('A batch of workspace resources.');
|
|
85
88
|
//# sourceMappingURL=batch.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"batch.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/batch.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"batch.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/batch.ts"],"names":[],"mappings":"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"}
|
|
@@ -18103,6 +18103,12 @@ declare const _default: {
|
|
|
18103
18103
|
batch: {
|
|
18104
18104
|
description: string;
|
|
18105
18105
|
properties: {
|
|
18106
|
+
access_methods: {
|
|
18107
|
+
items: {
|
|
18108
|
+
$ref: string;
|
|
18109
|
+
};
|
|
18110
|
+
type: string;
|
|
18111
|
+
};
|
|
18106
18112
|
acs_access_groups: {
|
|
18107
18113
|
items: {
|
|
18108
18114
|
$ref: string;
|
|
@@ -18288,6 +18294,12 @@ declare const _default: {
|
|
|
18288
18294
|
batch: {
|
|
18289
18295
|
description: string;
|
|
18290
18296
|
properties: {
|
|
18297
|
+
access_methods: {
|
|
18298
|
+
items: {
|
|
18299
|
+
$ref: string;
|
|
18300
|
+
};
|
|
18301
|
+
type: string;
|
|
18302
|
+
};
|
|
18291
18303
|
acs_access_groups: {
|
|
18292
18304
|
items: {
|
|
18293
18305
|
$ref: string;
|
|
@@ -47710,6 +47722,12 @@ declare const _default: {
|
|
|
47710
47722
|
batch: {
|
|
47711
47723
|
description: string;
|
|
47712
47724
|
properties: {
|
|
47725
|
+
access_methods: {
|
|
47726
|
+
items: {
|
|
47727
|
+
$ref: string;
|
|
47728
|
+
};
|
|
47729
|
+
type: string;
|
|
47730
|
+
};
|
|
47713
47731
|
acs_access_groups: {
|
|
47714
47732
|
items: {
|
|
47715
47733
|
$ref: string;
|
|
@@ -47870,6 +47888,12 @@ declare const _default: {
|
|
|
47870
47888
|
batch: {
|
|
47871
47889
|
description: string;
|
|
47872
47890
|
properties: {
|
|
47891
|
+
access_methods: {
|
|
47892
|
+
items: {
|
|
47893
|
+
$ref: string;
|
|
47894
|
+
};
|
|
47895
|
+
type: string;
|
|
47896
|
+
};
|
|
47873
47897
|
acs_access_groups: {
|
|
47874
47898
|
items: {
|
|
47875
47899
|
$ref: string;
|
|
@@ -26265,6 +26265,10 @@ export default {
|
|
|
26265
26265
|
batch: {
|
|
26266
26266
|
description: 'A batch of workspace resources.',
|
|
26267
26267
|
properties: {
|
|
26268
|
+
access_methods: {
|
|
26269
|
+
items: { $ref: '#/components/schemas/access_method' },
|
|
26270
|
+
type: 'array',
|
|
26271
|
+
},
|
|
26268
26272
|
acs_access_groups: {
|
|
26269
26273
|
items: {
|
|
26270
26274
|
$ref: '#/components/schemas/acs_access_group',
|
|
@@ -26422,6 +26426,10 @@ export default {
|
|
|
26422
26426
|
batch: {
|
|
26423
26427
|
description: 'A batch of workspace resources.',
|
|
26424
26428
|
properties: {
|
|
26429
|
+
access_methods: {
|
|
26430
|
+
items: { $ref: '#/components/schemas/access_method' },
|
|
26431
|
+
type: 'array',
|
|
26432
|
+
},
|
|
26425
26433
|
acs_access_groups: {
|
|
26426
26434
|
items: {
|
|
26427
26435
|
$ref: '#/components/schemas/acs_access_group',
|
|
@@ -51796,6 +51804,10 @@ export default {
|
|
|
51796
51804
|
batch: {
|
|
51797
51805
|
description: 'A batch of workspace resources.',
|
|
51798
51806
|
properties: {
|
|
51807
|
+
access_methods: {
|
|
51808
|
+
items: { $ref: '#/components/schemas/access_method' },
|
|
51809
|
+
type: 'array',
|
|
51810
|
+
},
|
|
51799
51811
|
acs_access_groups: {
|
|
51800
51812
|
items: {
|
|
51801
51813
|
$ref: '#/components/schemas/acs_access_group',
|
|
@@ -51930,6 +51942,10 @@ export default {
|
|
|
51930
51942
|
batch: {
|
|
51931
51943
|
description: 'A batch of workspace resources.',
|
|
51932
51944
|
properties: {
|
|
51945
|
+
access_methods: {
|
|
51946
|
+
items: { $ref: '#/components/schemas/access_method' },
|
|
51947
|
+
type: 'array',
|
|
51948
|
+
},
|
|
51933
51949
|
acs_access_groups: {
|
|
51934
51950
|
items: {
|
|
51935
51951
|
$ref: '#/components/schemas/acs_access_group',
|