@seamapi/types 1.476.0 → 1.478.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 +153 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +290 -4
- package/dist/index.cjs +153 -28
- 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 +11 -3
- package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +76 -0
- package/lib/seam/connect/openapi.js +79 -11
- 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 +11 -3
- package/src/lib/seam/connect/openapi.ts +80 -11
- 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":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAA;AAChE,OAAO,EACL,gBAAgB,EAChB,0BAA0B,GAC3B,MAAM,2BAA2B,CAAA;AAClC,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAClD,OAAO,EAAE,QAAQ,EAAE,kBAAkB,EAAE,MAAM,6BAA6B,CAAA;AAC1E,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAA;AACpE,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAA;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAA;AACvE,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAA;AACjE,OAAO,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAA;AAC3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAA;AAChE,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAA;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA;AAEjD,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC;KAC1B,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC;IAC/B,MAAM,EAAE,KAAK,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,MAAM,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAClC,aAAa,EAAE,YAAY,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC9C,kBAAkB,EAAE,iBAAiB,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACxD,WAAW,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;CAC3C,CAAC;KACD,QAAQ,CAAC,wCAAwC,CAAC,CAAA;AAErD,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC;IACtC,MAAM,EAAE,KAAK,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,MAAM,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAClC,aAAa,EAAE,YAAY,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC9C,eAAe,EAAE,aAAa,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACjD,kBAAkB,EAAE,iBAAiB,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACxD,WAAW,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;CAC3C,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,gBAAgB,CAAC;IACvC,MAAM,EAAE,KAAK,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,MAAM,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAClC,aAAa,EAAE,YAAY,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;CAC/C,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC;KAC9B,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC;IACnC,eAAe,EAAE,aAAa,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACjD,UAAU,EAAE,SAAS,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACxC,MAAM,EAAE,KAAK,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,MAAM,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAClC,aAAa,EAAE,YAAY,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC9C,WAAW,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC1C,SAAS,EAAE,QAAQ,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACtC,iBAAiB,EAAE,gBAAgB,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACtD,YAAY,EAAE,WAAW,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC5C,eAAe,EAAE,cAAc,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAClD,eAAe,EAAE,cAAc,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAClD,mBAAmB,EAAE,kBAAkB,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC1D,2BAA2B,EAAE,0BAA0B,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC1E,iBAAiB,EAAE,gBAAgB,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACtD,gBAAgB,EAAE,eAAe,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACpD,cAAc,EAAE,aAAa,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"batch.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/batch.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const customization_profile: z.ZodObject<{
|
|
3
|
-
workspace_id: z.ZodString;
|
|
4
3
|
customization_profile_id: z.ZodString;
|
|
4
|
+
workspace_id: z.ZodString;
|
|
5
|
+
created_at: z.ZodString;
|
|
5
6
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
6
7
|
primary_color: z.ZodOptional<z.ZodString>;
|
|
7
8
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
8
9
|
}, "strip", z.ZodTypeAny, {
|
|
9
10
|
workspace_id: string;
|
|
11
|
+
created_at: string;
|
|
10
12
|
customization_profile_id: string;
|
|
11
13
|
logo_url?: string | undefined;
|
|
12
14
|
primary_color?: string | undefined;
|
|
13
15
|
secondary_color?: string | undefined;
|
|
14
16
|
}, {
|
|
15
17
|
workspace_id: string;
|
|
18
|
+
created_at: string;
|
|
16
19
|
customization_profile_id: string;
|
|
17
20
|
logo_url?: string | undefined;
|
|
18
21
|
primary_color?: string | undefined;
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export const customization_profile = z.object({
|
|
3
|
-
workspace_id: z.string().uuid(),
|
|
4
3
|
customization_profile_id: z.string().uuid(),
|
|
5
|
-
|
|
4
|
+
workspace_id: z.string().uuid(),
|
|
5
|
+
created_at: z.string().datetime(),
|
|
6
|
+
logo_url: z.string().url().optional(),
|
|
6
7
|
primary_color: z.string().optional(),
|
|
7
8
|
secondary_color: z.string().optional(),
|
|
8
|
-
})
|
|
9
|
+
}).describe(`
|
|
10
|
+
---
|
|
11
|
+
title: Customization Profile
|
|
12
|
+
undocumented: Unreleased.
|
|
13
|
+
route_path: /workspaces/customization_profiles
|
|
14
|
+
---
|
|
15
|
+
A customization profile.
|
|
16
|
+
`);
|
|
9
17
|
//# sourceMappingURL=customization_profile.js.map
|
|
@@ -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,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,
|
|
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,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,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;
|
|
@@ -47729,12 +47741,18 @@ declare const _default: {
|
|
|
47729
47741
|
schema: {
|
|
47730
47742
|
properties: {
|
|
47731
47743
|
customization_profile: {
|
|
47744
|
+
description: string;
|
|
47732
47745
|
properties: {
|
|
47746
|
+
created_at: {
|
|
47747
|
+
format: string;
|
|
47748
|
+
type: string;
|
|
47749
|
+
};
|
|
47733
47750
|
customization_profile_id: {
|
|
47734
47751
|
format: string;
|
|
47735
47752
|
type: string;
|
|
47736
47753
|
};
|
|
47737
47754
|
logo_url: {
|
|
47755
|
+
format: string;
|
|
47738
47756
|
type: string;
|
|
47739
47757
|
};
|
|
47740
47758
|
primary_color: {
|
|
@@ -47750,6 +47768,9 @@ declare const _default: {
|
|
|
47750
47768
|
};
|
|
47751
47769
|
required: string[];
|
|
47752
47770
|
type: string;
|
|
47771
|
+
'x-route-path': string;
|
|
47772
|
+
'x-title': string;
|
|
47773
|
+
'x-undocumented': string;
|
|
47753
47774
|
};
|
|
47754
47775
|
ok: {
|
|
47755
47776
|
type: string;
|
|
@@ -47779,6 +47800,7 @@ declare const _default: {
|
|
|
47779
47800
|
'x-fern-sdk-return-value': string;
|
|
47780
47801
|
'x-response-key': string;
|
|
47781
47802
|
'x-title': string;
|
|
47803
|
+
'x-undocumented': string;
|
|
47782
47804
|
};
|
|
47783
47805
|
};
|
|
47784
47806
|
'/workspaces/customization_profiles/get': {
|
|
@@ -47801,12 +47823,18 @@ declare const _default: {
|
|
|
47801
47823
|
schema: {
|
|
47802
47824
|
properties: {
|
|
47803
47825
|
customization_profile: {
|
|
47826
|
+
description: string;
|
|
47804
47827
|
properties: {
|
|
47828
|
+
created_at: {
|
|
47829
|
+
format: string;
|
|
47830
|
+
type: string;
|
|
47831
|
+
};
|
|
47805
47832
|
customization_profile_id: {
|
|
47806
47833
|
format: string;
|
|
47807
47834
|
type: string;
|
|
47808
47835
|
};
|
|
47809
47836
|
logo_url: {
|
|
47837
|
+
format: string;
|
|
47810
47838
|
type: string;
|
|
47811
47839
|
};
|
|
47812
47840
|
primary_color: {
|
|
@@ -47822,6 +47850,9 @@ declare const _default: {
|
|
|
47822
47850
|
};
|
|
47823
47851
|
required: string[];
|
|
47824
47852
|
type: string;
|
|
47853
|
+
'x-route-path': string;
|
|
47854
|
+
'x-title': string;
|
|
47855
|
+
'x-undocumented': string;
|
|
47825
47856
|
};
|
|
47826
47857
|
ok: {
|
|
47827
47858
|
type: string;
|
|
@@ -47851,6 +47882,7 @@ declare const _default: {
|
|
|
47851
47882
|
'x-fern-sdk-return-value': string;
|
|
47852
47883
|
'x-response-key': string;
|
|
47853
47884
|
'x-title': string;
|
|
47885
|
+
'x-undocumented': string;
|
|
47854
47886
|
};
|
|
47855
47887
|
post: {
|
|
47856
47888
|
description: string;
|
|
@@ -47878,12 +47910,18 @@ declare const _default: {
|
|
|
47878
47910
|
schema: {
|
|
47879
47911
|
properties: {
|
|
47880
47912
|
customization_profile: {
|
|
47913
|
+
description: string;
|
|
47881
47914
|
properties: {
|
|
47915
|
+
created_at: {
|
|
47916
|
+
format: string;
|
|
47917
|
+
type: string;
|
|
47918
|
+
};
|
|
47882
47919
|
customization_profile_id: {
|
|
47883
47920
|
format: string;
|
|
47884
47921
|
type: string;
|
|
47885
47922
|
};
|
|
47886
47923
|
logo_url: {
|
|
47924
|
+
format: string;
|
|
47887
47925
|
type: string;
|
|
47888
47926
|
};
|
|
47889
47927
|
primary_color: {
|
|
@@ -47899,6 +47937,9 @@ declare const _default: {
|
|
|
47899
47937
|
};
|
|
47900
47938
|
required: string[];
|
|
47901
47939
|
type: string;
|
|
47940
|
+
'x-route-path': string;
|
|
47941
|
+
'x-title': string;
|
|
47942
|
+
'x-undocumented': string;
|
|
47902
47943
|
};
|
|
47903
47944
|
ok: {
|
|
47904
47945
|
type: string;
|
|
@@ -47928,6 +47969,7 @@ declare const _default: {
|
|
|
47928
47969
|
'x-fern-sdk-return-value': string;
|
|
47929
47970
|
'x-response-key': string;
|
|
47930
47971
|
'x-title': string;
|
|
47972
|
+
'x-undocumented': string;
|
|
47931
47973
|
};
|
|
47932
47974
|
};
|
|
47933
47975
|
'/workspaces/customization_profiles/list': {
|
|
@@ -47942,12 +47984,18 @@ declare const _default: {
|
|
|
47942
47984
|
properties: {
|
|
47943
47985
|
customization_profiles: {
|
|
47944
47986
|
items: {
|
|
47987
|
+
description: string;
|
|
47945
47988
|
properties: {
|
|
47989
|
+
created_at: {
|
|
47990
|
+
format: string;
|
|
47991
|
+
type: string;
|
|
47992
|
+
};
|
|
47946
47993
|
customization_profile_id: {
|
|
47947
47994
|
format: string;
|
|
47948
47995
|
type: string;
|
|
47949
47996
|
};
|
|
47950
47997
|
logo_url: {
|
|
47998
|
+
format: string;
|
|
47951
47999
|
type: string;
|
|
47952
48000
|
};
|
|
47953
48001
|
primary_color: {
|
|
@@ -47963,6 +48011,9 @@ declare const _default: {
|
|
|
47963
48011
|
};
|
|
47964
48012
|
required: string[];
|
|
47965
48013
|
type: string;
|
|
48014
|
+
'x-route-path': string;
|
|
48015
|
+
'x-title': string;
|
|
48016
|
+
'x-undocumented': string;
|
|
47966
48017
|
};
|
|
47967
48018
|
type: string;
|
|
47968
48019
|
};
|
|
@@ -47994,6 +48045,7 @@ declare const _default: {
|
|
|
47994
48045
|
'x-fern-sdk-return-value': string;
|
|
47995
48046
|
'x-response-key': string;
|
|
47996
48047
|
'x-title': string;
|
|
48048
|
+
'x-undocumented': string;
|
|
47997
48049
|
};
|
|
47998
48050
|
post: {
|
|
47999
48051
|
description: string;
|
|
@@ -48006,12 +48058,18 @@ declare const _default: {
|
|
|
48006
48058
|
properties: {
|
|
48007
48059
|
customization_profiles: {
|
|
48008
48060
|
items: {
|
|
48061
|
+
description: string;
|
|
48009
48062
|
properties: {
|
|
48063
|
+
created_at: {
|
|
48064
|
+
format: string;
|
|
48065
|
+
type: string;
|
|
48066
|
+
};
|
|
48010
48067
|
customization_profile_id: {
|
|
48011
48068
|
format: string;
|
|
48012
48069
|
type: string;
|
|
48013
48070
|
};
|
|
48014
48071
|
logo_url: {
|
|
48072
|
+
format: string;
|
|
48015
48073
|
type: string;
|
|
48016
48074
|
};
|
|
48017
48075
|
primary_color: {
|
|
@@ -48027,6 +48085,9 @@ declare const _default: {
|
|
|
48027
48085
|
};
|
|
48028
48086
|
required: string[];
|
|
48029
48087
|
type: string;
|
|
48088
|
+
'x-route-path': string;
|
|
48089
|
+
'x-title': string;
|
|
48090
|
+
'x-undocumented': string;
|
|
48030
48091
|
};
|
|
48031
48092
|
type: string;
|
|
48032
48093
|
};
|
|
@@ -48058,6 +48119,7 @@ declare const _default: {
|
|
|
48058
48119
|
'x-fern-sdk-return-value': string;
|
|
48059
48120
|
'x-response-key': string;
|
|
48060
48121
|
'x-title': string;
|
|
48122
|
+
'x-undocumented': string;
|
|
48061
48123
|
};
|
|
48062
48124
|
};
|
|
48063
48125
|
'/workspaces/customization_profiles/update': {
|
|
@@ -48119,6 +48181,7 @@ declare const _default: {
|
|
|
48119
48181
|
'x-fern-sdk-method-name': string;
|
|
48120
48182
|
'x-response-key': null;
|
|
48121
48183
|
'x-title': string;
|
|
48184
|
+
'x-undocumented': string;
|
|
48122
48185
|
};
|
|
48123
48186
|
post: {
|
|
48124
48187
|
description: string;
|
|
@@ -48178,6 +48241,7 @@ declare const _default: {
|
|
|
48178
48241
|
'x-fern-sdk-method-name': string;
|
|
48179
48242
|
'x-response-key': null;
|
|
48180
48243
|
'x-title': string;
|
|
48244
|
+
'x-undocumented': string;
|
|
48181
48245
|
};
|
|
48182
48246
|
};
|
|
48183
48247
|
'/workspaces/customization_profiles/upload_images': {
|
|
@@ -48242,6 +48306,12 @@ declare const _default: {
|
|
|
48242
48306
|
batch: {
|
|
48243
48307
|
description: string;
|
|
48244
48308
|
properties: {
|
|
48309
|
+
access_grants: {
|
|
48310
|
+
items: {
|
|
48311
|
+
$ref: string;
|
|
48312
|
+
};
|
|
48313
|
+
type: string;
|
|
48314
|
+
};
|
|
48245
48315
|
access_methods: {
|
|
48246
48316
|
items: {
|
|
48247
48317
|
$ref: string;
|
|
@@ -48408,6 +48478,12 @@ declare const _default: {
|
|
|
48408
48478
|
batch: {
|
|
48409
48479
|
description: string;
|
|
48410
48480
|
properties: {
|
|
48481
|
+
access_grants: {
|
|
48482
|
+
items: {
|
|
48483
|
+
$ref: string;
|
|
48484
|
+
};
|
|
48485
|
+
type: string;
|
|
48486
|
+
};
|
|
48411
48487
|
access_methods: {
|
|
48412
48488
|
items: {
|
|
48413
48489
|
$ref: string;
|