@seamapi/types 1.477.0 → 1.479.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 +87 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +271 -4
- package/dist/index.cjs +87 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +236 -0
- package/lib/seam/connect/models/batch.js +3 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +4 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.js +2 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +57 -0
- package/lib/seam/connect/openapi.js +34 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +92 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/models/customization_profiles/customization_profile.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +34 -5
- package/src/lib/seam/connect/route-types.ts +96 -3
|
@@ -33484,6 +33484,80 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33484
33484
|
instant_key_url?: string | undefined;
|
|
33485
33485
|
is_encoding_required?: boolean | undefined;
|
|
33486
33486
|
}>, "many">>;
|
|
33487
|
+
access_grants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33488
|
+
workspace_id: z.ZodString;
|
|
33489
|
+
access_grant_id: z.ZodString;
|
|
33490
|
+
access_grant_key: z.ZodOptional<z.ZodString>;
|
|
33491
|
+
user_identity_id: z.ZodString;
|
|
33492
|
+
location_ids: z.ZodArray<z.ZodString, "many">;
|
|
33493
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
33494
|
+
requested_access_methods: z.ZodArray<z.ZodObject<{
|
|
33495
|
+
display_name: z.ZodString;
|
|
33496
|
+
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
33497
|
+
created_at: z.ZodString;
|
|
33498
|
+
created_access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
33499
|
+
}, "strip", z.ZodTypeAny, {
|
|
33500
|
+
display_name: string;
|
|
33501
|
+
created_at: string;
|
|
33502
|
+
mode: "code" | "card" | "mobile_key";
|
|
33503
|
+
created_access_method_ids: string[];
|
|
33504
|
+
}, {
|
|
33505
|
+
display_name: string;
|
|
33506
|
+
created_at: string;
|
|
33507
|
+
mode: "code" | "card" | "mobile_key";
|
|
33508
|
+
created_access_method_ids: string[];
|
|
33509
|
+
}>, "many">;
|
|
33510
|
+
access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
33511
|
+
client_session_token: z.ZodOptional<z.ZodString>;
|
|
33512
|
+
name: z.ZodNullable<z.ZodString>;
|
|
33513
|
+
display_name: z.ZodString;
|
|
33514
|
+
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
33515
|
+
created_at: z.ZodString;
|
|
33516
|
+
starts_at: z.ZodString;
|
|
33517
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
33518
|
+
}, "strip", z.ZodTypeAny, {
|
|
33519
|
+
name: string | null;
|
|
33520
|
+
display_name: string;
|
|
33521
|
+
workspace_id: string;
|
|
33522
|
+
created_at: string;
|
|
33523
|
+
starts_at: string;
|
|
33524
|
+
ends_at: string | null;
|
|
33525
|
+
access_grant_id: string;
|
|
33526
|
+
user_identity_id: string;
|
|
33527
|
+
location_ids: string[];
|
|
33528
|
+
space_ids: string[];
|
|
33529
|
+
requested_access_methods: {
|
|
33530
|
+
display_name: string;
|
|
33531
|
+
created_at: string;
|
|
33532
|
+
mode: "code" | "card" | "mobile_key";
|
|
33533
|
+
created_access_method_ids: string[];
|
|
33534
|
+
}[];
|
|
33535
|
+
access_method_ids: string[];
|
|
33536
|
+
access_grant_key?: string | undefined;
|
|
33537
|
+
client_session_token?: string | undefined;
|
|
33538
|
+
instant_key_url?: string | undefined;
|
|
33539
|
+
}, {
|
|
33540
|
+
name: string | null;
|
|
33541
|
+
display_name: string;
|
|
33542
|
+
workspace_id: string;
|
|
33543
|
+
created_at: string;
|
|
33544
|
+
starts_at: string;
|
|
33545
|
+
ends_at: string | null;
|
|
33546
|
+
access_grant_id: string;
|
|
33547
|
+
user_identity_id: string;
|
|
33548
|
+
location_ids: string[];
|
|
33549
|
+
space_ids: string[];
|
|
33550
|
+
requested_access_methods: {
|
|
33551
|
+
display_name: string;
|
|
33552
|
+
created_at: string;
|
|
33553
|
+
mode: "code" | "card" | "mobile_key";
|
|
33554
|
+
created_access_method_ids: string[];
|
|
33555
|
+
}[];
|
|
33556
|
+
access_method_ids: string[];
|
|
33557
|
+
access_grant_key?: string | undefined;
|
|
33558
|
+
client_session_token?: string | undefined;
|
|
33559
|
+
instant_key_url?: string | undefined;
|
|
33560
|
+
}>, "many">>;
|
|
33487
33561
|
}, "strip", z.ZodTypeAny, {
|
|
33488
33562
|
batch_type: "workspaces";
|
|
33489
33563
|
spaces?: {
|
|
@@ -34278,6 +34352,28 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
34278
34352
|
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | undefined;
|
|
34279
34353
|
system_type_display_name?: string | undefined;
|
|
34280
34354
|
}[] | undefined;
|
|
34355
|
+
access_grants?: {
|
|
34356
|
+
name: string | null;
|
|
34357
|
+
display_name: string;
|
|
34358
|
+
workspace_id: string;
|
|
34359
|
+
created_at: string;
|
|
34360
|
+
starts_at: string;
|
|
34361
|
+
ends_at: string | null;
|
|
34362
|
+
access_grant_id: string;
|
|
34363
|
+
user_identity_id: string;
|
|
34364
|
+
location_ids: string[];
|
|
34365
|
+
space_ids: string[];
|
|
34366
|
+
requested_access_methods: {
|
|
34367
|
+
display_name: string;
|
|
34368
|
+
created_at: string;
|
|
34369
|
+
mode: "code" | "card" | "mobile_key";
|
|
34370
|
+
created_access_method_ids: string[];
|
|
34371
|
+
}[];
|
|
34372
|
+
access_method_ids: string[];
|
|
34373
|
+
access_grant_key?: string | undefined;
|
|
34374
|
+
client_session_token?: string | undefined;
|
|
34375
|
+
instant_key_url?: string | undefined;
|
|
34376
|
+
}[] | undefined;
|
|
34281
34377
|
user_identities?: {
|
|
34282
34378
|
display_name: string;
|
|
34283
34379
|
workspace_id: string;
|
|
@@ -36410,6 +36506,28 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
36410
36506
|
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | undefined;
|
|
36411
36507
|
system_type_display_name?: string | undefined;
|
|
36412
36508
|
}[] | undefined;
|
|
36509
|
+
access_grants?: {
|
|
36510
|
+
name: string | null;
|
|
36511
|
+
display_name: string;
|
|
36512
|
+
workspace_id: string;
|
|
36513
|
+
created_at: string;
|
|
36514
|
+
starts_at: string;
|
|
36515
|
+
ends_at: string | null;
|
|
36516
|
+
access_grant_id: string;
|
|
36517
|
+
user_identity_id: string;
|
|
36518
|
+
location_ids: string[];
|
|
36519
|
+
space_ids: string[];
|
|
36520
|
+
requested_access_methods: {
|
|
36521
|
+
display_name: string;
|
|
36522
|
+
created_at: string;
|
|
36523
|
+
mode: "code" | "card" | "mobile_key";
|
|
36524
|
+
created_access_method_ids: string[];
|
|
36525
|
+
}[];
|
|
36526
|
+
access_method_ids: string[];
|
|
36527
|
+
access_grant_key?: string | undefined;
|
|
36528
|
+
client_session_token?: string | undefined;
|
|
36529
|
+
instant_key_url?: string | undefined;
|
|
36530
|
+
}[] | undefined;
|
|
36413
36531
|
user_identities?: {
|
|
36414
36532
|
display_name: string;
|
|
36415
36533
|
workspace_id: string;
|
|
@@ -51457,6 +51575,80 @@ export declare const batch: z.ZodObject<{
|
|
|
51457
51575
|
instant_key_url?: string | undefined;
|
|
51458
51576
|
is_encoding_required?: boolean | undefined;
|
|
51459
51577
|
}>, "many">>;
|
|
51578
|
+
access_grants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51579
|
+
workspace_id: z.ZodString;
|
|
51580
|
+
access_grant_id: z.ZodString;
|
|
51581
|
+
access_grant_key: z.ZodOptional<z.ZodString>;
|
|
51582
|
+
user_identity_id: z.ZodString;
|
|
51583
|
+
location_ids: z.ZodArray<z.ZodString, "many">;
|
|
51584
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
51585
|
+
requested_access_methods: z.ZodArray<z.ZodObject<{
|
|
51586
|
+
display_name: z.ZodString;
|
|
51587
|
+
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
51588
|
+
created_at: z.ZodString;
|
|
51589
|
+
created_access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
51590
|
+
}, "strip", z.ZodTypeAny, {
|
|
51591
|
+
display_name: string;
|
|
51592
|
+
created_at: string;
|
|
51593
|
+
mode: "code" | "card" | "mobile_key";
|
|
51594
|
+
created_access_method_ids: string[];
|
|
51595
|
+
}, {
|
|
51596
|
+
display_name: string;
|
|
51597
|
+
created_at: string;
|
|
51598
|
+
mode: "code" | "card" | "mobile_key";
|
|
51599
|
+
created_access_method_ids: string[];
|
|
51600
|
+
}>, "many">;
|
|
51601
|
+
access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
51602
|
+
client_session_token: z.ZodOptional<z.ZodString>;
|
|
51603
|
+
name: z.ZodNullable<z.ZodString>;
|
|
51604
|
+
display_name: z.ZodString;
|
|
51605
|
+
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
51606
|
+
created_at: z.ZodString;
|
|
51607
|
+
starts_at: z.ZodString;
|
|
51608
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
51609
|
+
}, "strip", z.ZodTypeAny, {
|
|
51610
|
+
name: string | null;
|
|
51611
|
+
display_name: string;
|
|
51612
|
+
workspace_id: string;
|
|
51613
|
+
created_at: string;
|
|
51614
|
+
starts_at: string;
|
|
51615
|
+
ends_at: string | null;
|
|
51616
|
+
access_grant_id: string;
|
|
51617
|
+
user_identity_id: string;
|
|
51618
|
+
location_ids: string[];
|
|
51619
|
+
space_ids: string[];
|
|
51620
|
+
requested_access_methods: {
|
|
51621
|
+
display_name: string;
|
|
51622
|
+
created_at: string;
|
|
51623
|
+
mode: "code" | "card" | "mobile_key";
|
|
51624
|
+
created_access_method_ids: string[];
|
|
51625
|
+
}[];
|
|
51626
|
+
access_method_ids: string[];
|
|
51627
|
+
access_grant_key?: string | undefined;
|
|
51628
|
+
client_session_token?: string | undefined;
|
|
51629
|
+
instant_key_url?: string | undefined;
|
|
51630
|
+
}, {
|
|
51631
|
+
name: string | null;
|
|
51632
|
+
display_name: string;
|
|
51633
|
+
workspace_id: string;
|
|
51634
|
+
created_at: string;
|
|
51635
|
+
starts_at: string;
|
|
51636
|
+
ends_at: string | null;
|
|
51637
|
+
access_grant_id: string;
|
|
51638
|
+
user_identity_id: string;
|
|
51639
|
+
location_ids: string[];
|
|
51640
|
+
space_ids: string[];
|
|
51641
|
+
requested_access_methods: {
|
|
51642
|
+
display_name: string;
|
|
51643
|
+
created_at: string;
|
|
51644
|
+
mode: "code" | "card" | "mobile_key";
|
|
51645
|
+
created_access_method_ids: string[];
|
|
51646
|
+
}[];
|
|
51647
|
+
access_method_ids: string[];
|
|
51648
|
+
access_grant_key?: string | undefined;
|
|
51649
|
+
client_session_token?: string | undefined;
|
|
51650
|
+
instant_key_url?: string | undefined;
|
|
51651
|
+
}>, "many">>;
|
|
51460
51652
|
}, "strip", z.ZodTypeAny, {
|
|
51461
51653
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
51462
51654
|
spaces?: {
|
|
@@ -52251,6 +52443,28 @@ export declare const batch: z.ZodObject<{
|
|
|
52251
52443
|
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | undefined;
|
|
52252
52444
|
system_type_display_name?: string | undefined;
|
|
52253
52445
|
}[] | undefined;
|
|
52446
|
+
access_grants?: {
|
|
52447
|
+
name: string | null;
|
|
52448
|
+
display_name: string;
|
|
52449
|
+
workspace_id: string;
|
|
52450
|
+
created_at: string;
|
|
52451
|
+
starts_at: string;
|
|
52452
|
+
ends_at: string | null;
|
|
52453
|
+
access_grant_id: string;
|
|
52454
|
+
user_identity_id: string;
|
|
52455
|
+
location_ids: string[];
|
|
52456
|
+
space_ids: string[];
|
|
52457
|
+
requested_access_methods: {
|
|
52458
|
+
display_name: string;
|
|
52459
|
+
created_at: string;
|
|
52460
|
+
mode: "code" | "card" | "mobile_key";
|
|
52461
|
+
created_access_method_ids: string[];
|
|
52462
|
+
}[];
|
|
52463
|
+
access_method_ids: string[];
|
|
52464
|
+
access_grant_key?: string | undefined;
|
|
52465
|
+
client_session_token?: string | undefined;
|
|
52466
|
+
instant_key_url?: string | undefined;
|
|
52467
|
+
}[] | undefined;
|
|
52254
52468
|
user_identities?: {
|
|
52255
52469
|
display_name: string;
|
|
52256
52470
|
workspace_id: string;
|
|
@@ -54383,6 +54597,28 @@ export declare const batch: z.ZodObject<{
|
|
|
54383
54597
|
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | undefined;
|
|
54384
54598
|
system_type_display_name?: string | undefined;
|
|
54385
54599
|
}[] | undefined;
|
|
54600
|
+
access_grants?: {
|
|
54601
|
+
name: string | null;
|
|
54602
|
+
display_name: string;
|
|
54603
|
+
workspace_id: string;
|
|
54604
|
+
created_at: string;
|
|
54605
|
+
starts_at: string;
|
|
54606
|
+
ends_at: string | null;
|
|
54607
|
+
access_grant_id: string;
|
|
54608
|
+
user_identity_id: string;
|
|
54609
|
+
location_ids: string[];
|
|
54610
|
+
space_ids: string[];
|
|
54611
|
+
requested_access_methods: {
|
|
54612
|
+
display_name: string;
|
|
54613
|
+
created_at: string;
|
|
54614
|
+
mode: "code" | "card" | "mobile_key";
|
|
54615
|
+
created_access_method_ids: string[];
|
|
54616
|
+
}[];
|
|
54617
|
+
access_method_ids: string[];
|
|
54618
|
+
access_grant_key?: string | undefined;
|
|
54619
|
+
client_session_token?: string | undefined;
|
|
54620
|
+
instant_key_url?: string | undefined;
|
|
54621
|
+
}[] | undefined;
|
|
54386
54622
|
user_identities?: {
|
|
54387
54623
|
display_name: string;
|
|
54388
54624
|
workspace_id: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
import { access_grant } from './access-grants/access-grant.js';
|
|
2
3
|
import { access_method } from './access-grants/access-method.js';
|
|
3
4
|
import { acs_access_group, unmanaged_acs_access_group, } from './acs/acs-access-group.js';
|
|
4
5
|
import { acs_encoder } from './acs/acs-encoder.js';
|
|
@@ -57,6 +58,7 @@ export const workspaces_batch = z
|
|
|
57
58
|
unmanaged_devices: unmanaged_device.array().optional(),
|
|
58
59
|
connect_webviews: connect_webview.array().optional(),
|
|
59
60
|
access_methods: access_method.array().optional(),
|
|
61
|
+
access_grants: access_grant.array().optional(),
|
|
60
62
|
})
|
|
61
63
|
.describe('A batch of workspace resources.');
|
|
62
64
|
export const batch = z
|
|
@@ -83,6 +85,7 @@ export const batch = z
|
|
|
83
85
|
unmanaged_devices: unmanaged_device.array().optional(),
|
|
84
86
|
connect_webviews: connect_webview.array().optional(),
|
|
85
87
|
access_methods: access_method.array().optional(),
|
|
88
|
+
access_grants: access_grant.array().optional(),
|
|
86
89
|
})
|
|
87
90
|
.describe('A batch of workspace resources.');
|
|
88
91
|
//# 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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"}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const customization_profile: z.ZodObject<{
|
|
3
|
-
customization_profile_id: z.ZodString;
|
|
4
3
|
workspace_id: z.ZodString;
|
|
4
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5
|
+
customization_profile_id: z.ZodString;
|
|
5
6
|
created_at: z.ZodString;
|
|
6
7
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
7
8
|
primary_color: z.ZodOptional<z.ZodString>;
|
|
8
9
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
9
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
name: string | null;
|
|
10
12
|
workspace_id: string;
|
|
11
13
|
created_at: string;
|
|
12
14
|
customization_profile_id: string;
|
|
@@ -14,6 +16,7 @@ export declare const customization_profile: z.ZodObject<{
|
|
|
14
16
|
primary_color?: string | undefined;
|
|
15
17
|
secondary_color?: string | undefined;
|
|
16
18
|
}, {
|
|
19
|
+
name: string | null;
|
|
17
20
|
workspace_id: string;
|
|
18
21
|
created_at: string;
|
|
19
22
|
customization_profile_id: string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export const customization_profile = z.object({
|
|
3
|
-
customization_profile_id: z.string().uuid(),
|
|
4
3
|
workspace_id: z.string().uuid(),
|
|
4
|
+
name: z.string().nullable(),
|
|
5
|
+
customization_profile_id: z.string().uuid(),
|
|
5
6
|
created_at: z.string().datetime(),
|
|
6
7
|
logo_url: z.string().url().optional(),
|
|
7
8
|
primary_color: z.string().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customization_profile.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customization_profiles/customization_profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,
|
|
1
|
+
{"version":3,"file":"customization_profile.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customization_profiles/customization_profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC,QAAQ,CAAC;;;;;;;CAOX,CAAC,CAAA"}
|
|
@@ -18103,6 +18103,12 @@ declare const _default: {
|
|
|
18103
18103
|
batch: {
|
|
18104
18104
|
description: string;
|
|
18105
18105
|
properties: {
|
|
18106
|
+
access_grants: {
|
|
18107
|
+
items: {
|
|
18108
|
+
$ref: string;
|
|
18109
|
+
};
|
|
18110
|
+
type: string;
|
|
18111
|
+
};
|
|
18106
18112
|
access_methods: {
|
|
18107
18113
|
items: {
|
|
18108
18114
|
$ref: string;
|
|
@@ -18294,6 +18300,12 @@ declare const _default: {
|
|
|
18294
18300
|
batch: {
|
|
18295
18301
|
description: string;
|
|
18296
18302
|
properties: {
|
|
18303
|
+
access_grants: {
|
|
18304
|
+
items: {
|
|
18305
|
+
$ref: string;
|
|
18306
|
+
};
|
|
18307
|
+
type: string;
|
|
18308
|
+
};
|
|
18297
18309
|
access_methods: {
|
|
18298
18310
|
items: {
|
|
18299
18311
|
$ref: string;
|
|
@@ -47709,6 +47721,11 @@ declare const _default: {
|
|
|
47709
47721
|
'application/json': {
|
|
47710
47722
|
schema: {
|
|
47711
47723
|
properties: {
|
|
47724
|
+
name: {
|
|
47725
|
+
default: null;
|
|
47726
|
+
nullable: boolean;
|
|
47727
|
+
type: string;
|
|
47728
|
+
};
|
|
47712
47729
|
primary_color: {
|
|
47713
47730
|
type: string;
|
|
47714
47731
|
};
|
|
@@ -47743,6 +47760,10 @@ declare const _default: {
|
|
|
47743
47760
|
format: string;
|
|
47744
47761
|
type: string;
|
|
47745
47762
|
};
|
|
47763
|
+
name: {
|
|
47764
|
+
nullable: boolean;
|
|
47765
|
+
type: string;
|
|
47766
|
+
};
|
|
47746
47767
|
primary_color: {
|
|
47747
47768
|
type: string;
|
|
47748
47769
|
};
|
|
@@ -47825,6 +47846,10 @@ declare const _default: {
|
|
|
47825
47846
|
format: string;
|
|
47826
47847
|
type: string;
|
|
47827
47848
|
};
|
|
47849
|
+
name: {
|
|
47850
|
+
nullable: boolean;
|
|
47851
|
+
type: string;
|
|
47852
|
+
};
|
|
47828
47853
|
primary_color: {
|
|
47829
47854
|
type: string;
|
|
47830
47855
|
};
|
|
@@ -47912,6 +47937,10 @@ declare const _default: {
|
|
|
47912
47937
|
format: string;
|
|
47913
47938
|
type: string;
|
|
47914
47939
|
};
|
|
47940
|
+
name: {
|
|
47941
|
+
nullable: boolean;
|
|
47942
|
+
type: string;
|
|
47943
|
+
};
|
|
47915
47944
|
primary_color: {
|
|
47916
47945
|
type: string;
|
|
47917
47946
|
};
|
|
@@ -47986,6 +48015,10 @@ declare const _default: {
|
|
|
47986
48015
|
format: string;
|
|
47987
48016
|
type: string;
|
|
47988
48017
|
};
|
|
48018
|
+
name: {
|
|
48019
|
+
nullable: boolean;
|
|
48020
|
+
type: string;
|
|
48021
|
+
};
|
|
47989
48022
|
primary_color: {
|
|
47990
48023
|
type: string;
|
|
47991
48024
|
};
|
|
@@ -48060,6 +48093,10 @@ declare const _default: {
|
|
|
48060
48093
|
format: string;
|
|
48061
48094
|
type: string;
|
|
48062
48095
|
};
|
|
48096
|
+
name: {
|
|
48097
|
+
nullable: boolean;
|
|
48098
|
+
type: string;
|
|
48099
|
+
};
|
|
48063
48100
|
primary_color: {
|
|
48064
48101
|
type: string;
|
|
48065
48102
|
};
|
|
@@ -48123,6 +48160,10 @@ declare const _default: {
|
|
|
48123
48160
|
format: string;
|
|
48124
48161
|
type: string;
|
|
48125
48162
|
};
|
|
48163
|
+
name: {
|
|
48164
|
+
nullable: boolean;
|
|
48165
|
+
type: string;
|
|
48166
|
+
};
|
|
48126
48167
|
primary_color: {
|
|
48127
48168
|
type: string;
|
|
48128
48169
|
};
|
|
@@ -48183,6 +48224,10 @@ declare const _default: {
|
|
|
48183
48224
|
format: string;
|
|
48184
48225
|
type: string;
|
|
48185
48226
|
};
|
|
48227
|
+
name: {
|
|
48228
|
+
nullable: boolean;
|
|
48229
|
+
type: string;
|
|
48230
|
+
};
|
|
48186
48231
|
primary_color: {
|
|
48187
48232
|
type: string;
|
|
48188
48233
|
};
|
|
@@ -48294,6 +48339,12 @@ declare const _default: {
|
|
|
48294
48339
|
batch: {
|
|
48295
48340
|
description: string;
|
|
48296
48341
|
properties: {
|
|
48342
|
+
access_grants: {
|
|
48343
|
+
items: {
|
|
48344
|
+
$ref: string;
|
|
48345
|
+
};
|
|
48346
|
+
type: string;
|
|
48347
|
+
};
|
|
48297
48348
|
access_methods: {
|
|
48298
48349
|
items: {
|
|
48299
48350
|
$ref: string;
|
|
@@ -48460,6 +48511,12 @@ declare const _default: {
|
|
|
48460
48511
|
batch: {
|
|
48461
48512
|
description: string;
|
|
48462
48513
|
properties: {
|
|
48514
|
+
access_grants: {
|
|
48515
|
+
items: {
|
|
48516
|
+
$ref: string;
|
|
48517
|
+
};
|
|
48518
|
+
type: string;
|
|
48519
|
+
};
|
|
48463
48520
|
access_methods: {
|
|
48464
48521
|
items: {
|
|
48465
48522
|
$ref: string;
|
|
@@ -26266,6 +26266,10 @@ export default {
|
|
|
26266
26266
|
batch: {
|
|
26267
26267
|
description: 'A batch of workspace resources.',
|
|
26268
26268
|
properties: {
|
|
26269
|
+
access_grants: {
|
|
26270
|
+
items: { $ref: '#/components/schemas/access_grant' },
|
|
26271
|
+
type: 'array',
|
|
26272
|
+
},
|
|
26269
26273
|
access_methods: {
|
|
26270
26274
|
items: { $ref: '#/components/schemas/access_method' },
|
|
26271
26275
|
type: 'array',
|
|
@@ -26427,6 +26431,10 @@ export default {
|
|
|
26427
26431
|
batch: {
|
|
26428
26432
|
description: 'A batch of workspace resources.',
|
|
26429
26433
|
properties: {
|
|
26434
|
+
access_grants: {
|
|
26435
|
+
items: { $ref: '#/components/schemas/access_grant' },
|
|
26436
|
+
type: 'array',
|
|
26437
|
+
},
|
|
26430
26438
|
access_methods: {
|
|
26431
26439
|
items: { $ref: '#/components/schemas/access_method' },
|
|
26432
26440
|
type: 'array',
|
|
@@ -51793,6 +51801,7 @@ export default {
|
|
|
51793
51801
|
'application/json': {
|
|
51794
51802
|
schema: {
|
|
51795
51803
|
properties: {
|
|
51804
|
+
name: { default: null, nullable: true, type: 'string' },
|
|
51796
51805
|
primary_color: { type: 'string' },
|
|
51797
51806
|
secondary_color: { type: 'string' },
|
|
51798
51807
|
},
|
|
@@ -51817,13 +51826,15 @@ export default {
|
|
|
51817
51826
|
type: 'string',
|
|
51818
51827
|
},
|
|
51819
51828
|
logo_url: { format: 'uri', type: 'string' },
|
|
51829
|
+
name: { nullable: true, type: 'string' },
|
|
51820
51830
|
primary_color: { type: 'string' },
|
|
51821
51831
|
secondary_color: { type: 'string' },
|
|
51822
51832
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
51823
51833
|
},
|
|
51824
51834
|
required: [
|
|
51825
|
-
'customization_profile_id',
|
|
51826
51835
|
'workspace_id',
|
|
51836
|
+
'name',
|
|
51837
|
+
'customization_profile_id',
|
|
51827
51838
|
'created_at',
|
|
51828
51839
|
],
|
|
51829
51840
|
type: 'object',
|
|
@@ -51881,13 +51892,15 @@ export default {
|
|
|
51881
51892
|
type: 'string',
|
|
51882
51893
|
},
|
|
51883
51894
|
logo_url: { format: 'uri', type: 'string' },
|
|
51895
|
+
name: { nullable: true, type: 'string' },
|
|
51884
51896
|
primary_color: { type: 'string' },
|
|
51885
51897
|
secondary_color: { type: 'string' },
|
|
51886
51898
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
51887
51899
|
},
|
|
51888
51900
|
required: [
|
|
51889
|
-
'customization_profile_id',
|
|
51890
51901
|
'workspace_id',
|
|
51902
|
+
'name',
|
|
51903
|
+
'customization_profile_id',
|
|
51891
51904
|
'created_at',
|
|
51892
51905
|
],
|
|
51893
51906
|
type: 'object',
|
|
@@ -51948,13 +51961,15 @@ export default {
|
|
|
51948
51961
|
type: 'string',
|
|
51949
51962
|
},
|
|
51950
51963
|
logo_url: { format: 'uri', type: 'string' },
|
|
51964
|
+
name: { nullable: true, type: 'string' },
|
|
51951
51965
|
primary_color: { type: 'string' },
|
|
51952
51966
|
secondary_color: { type: 'string' },
|
|
51953
51967
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
51954
51968
|
},
|
|
51955
51969
|
required: [
|
|
51956
|
-
'customization_profile_id',
|
|
51957
51970
|
'workspace_id',
|
|
51971
|
+
'name',
|
|
51972
|
+
'customization_profile_id',
|
|
51958
51973
|
'created_at',
|
|
51959
51974
|
],
|
|
51960
51975
|
type: 'object',
|
|
@@ -52005,13 +52020,15 @@ export default {
|
|
|
52005
52020
|
type: 'string',
|
|
52006
52021
|
},
|
|
52007
52022
|
logo_url: { format: 'uri', type: 'string' },
|
|
52023
|
+
name: { nullable: true, type: 'string' },
|
|
52008
52024
|
primary_color: { type: 'string' },
|
|
52009
52025
|
secondary_color: { type: 'string' },
|
|
52010
52026
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
52011
52027
|
},
|
|
52012
52028
|
required: [
|
|
52013
|
-
'customization_profile_id',
|
|
52014
52029
|
'workspace_id',
|
|
52030
|
+
'name',
|
|
52031
|
+
'customization_profile_id',
|
|
52015
52032
|
'created_at',
|
|
52016
52033
|
],
|
|
52017
52034
|
type: 'object',
|
|
@@ -52062,13 +52079,15 @@ export default {
|
|
|
52062
52079
|
type: 'string',
|
|
52063
52080
|
},
|
|
52064
52081
|
logo_url: { format: 'uri', type: 'string' },
|
|
52082
|
+
name: { nullable: true, type: 'string' },
|
|
52065
52083
|
primary_color: { type: 'string' },
|
|
52066
52084
|
secondary_color: { type: 'string' },
|
|
52067
52085
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
52068
52086
|
},
|
|
52069
52087
|
required: [
|
|
52070
|
-
'customization_profile_id',
|
|
52071
52088
|
'workspace_id',
|
|
52089
|
+
'name',
|
|
52090
|
+
'customization_profile_id',
|
|
52072
52091
|
'created_at',
|
|
52073
52092
|
],
|
|
52074
52093
|
type: 'object',
|
|
@@ -52111,6 +52130,7 @@ export default {
|
|
|
52111
52130
|
schema: {
|
|
52112
52131
|
properties: {
|
|
52113
52132
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
52133
|
+
name: { nullable: true, type: 'string' },
|
|
52114
52134
|
primary_color: { type: 'string' },
|
|
52115
52135
|
secondary_color: { type: 'string' },
|
|
52116
52136
|
},
|
|
@@ -52154,6 +52174,7 @@ export default {
|
|
|
52154
52174
|
schema: {
|
|
52155
52175
|
properties: {
|
|
52156
52176
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
52177
|
+
name: { nullable: true, type: 'string' },
|
|
52157
52178
|
primary_color: { type: 'string' },
|
|
52158
52179
|
secondary_color: { type: 'string' },
|
|
52159
52180
|
},
|
|
@@ -52240,6 +52261,10 @@ export default {
|
|
|
52240
52261
|
batch: {
|
|
52241
52262
|
description: 'A batch of workspace resources.',
|
|
52242
52263
|
properties: {
|
|
52264
|
+
access_grants: {
|
|
52265
|
+
items: { $ref: '#/components/schemas/access_grant' },
|
|
52266
|
+
type: 'array',
|
|
52267
|
+
},
|
|
52243
52268
|
access_methods: {
|
|
52244
52269
|
items: { $ref: '#/components/schemas/access_method' },
|
|
52245
52270
|
type: 'array',
|
|
@@ -52378,6 +52403,10 @@ export default {
|
|
|
52378
52403
|
batch: {
|
|
52379
52404
|
description: 'A batch of workspace resources.',
|
|
52380
52405
|
properties: {
|
|
52406
|
+
access_grants: {
|
|
52407
|
+
items: { $ref: '#/components/schemas/access_grant' },
|
|
52408
|
+
type: 'array',
|
|
52409
|
+
},
|
|
52381
52410
|
access_methods: {
|
|
52382
52411
|
items: { $ref: '#/components/schemas/access_method' },
|
|
52383
52412
|
type: 'array',
|