@seamapi/types 1.477.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 +67 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +226 -0
- package/dist/index.cjs +67 -2
- 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/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 +84 -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 +88 -0
|
@@ -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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"}
|
|
@@ -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;
|
|
@@ -48294,6 +48306,12 @@ declare const _default: {
|
|
|
48294
48306
|
batch: {
|
|
48295
48307
|
description: string;
|
|
48296
48308
|
properties: {
|
|
48309
|
+
access_grants: {
|
|
48310
|
+
items: {
|
|
48311
|
+
$ref: string;
|
|
48312
|
+
};
|
|
48313
|
+
type: string;
|
|
48314
|
+
};
|
|
48297
48315
|
access_methods: {
|
|
48298
48316
|
items: {
|
|
48299
48317
|
$ref: string;
|
|
@@ -48460,6 +48478,12 @@ declare const _default: {
|
|
|
48460
48478
|
batch: {
|
|
48461
48479
|
description: string;
|
|
48462
48480
|
properties: {
|
|
48481
|
+
access_grants: {
|
|
48482
|
+
items: {
|
|
48483
|
+
$ref: string;
|
|
48484
|
+
};
|
|
48485
|
+
type: string;
|
|
48486
|
+
};
|
|
48463
48487
|
access_methods: {
|
|
48464
48488
|
items: {
|
|
48465
48489
|
$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',
|
|
@@ -52240,6 +52248,10 @@ export default {
|
|
|
52240
52248
|
batch: {
|
|
52241
52249
|
description: 'A batch of workspace resources.',
|
|
52242
52250
|
properties: {
|
|
52251
|
+
access_grants: {
|
|
52252
|
+
items: { $ref: '#/components/schemas/access_grant' },
|
|
52253
|
+
type: 'array',
|
|
52254
|
+
},
|
|
52243
52255
|
access_methods: {
|
|
52244
52256
|
items: { $ref: '#/components/schemas/access_method' },
|
|
52245
52257
|
type: 'array',
|
|
@@ -52378,6 +52390,10 @@ export default {
|
|
|
52378
52390
|
batch: {
|
|
52379
52391
|
description: 'A batch of workspace resources.',
|
|
52380
52392
|
properties: {
|
|
52393
|
+
access_grants: {
|
|
52394
|
+
items: { $ref: '#/components/schemas/access_grant' },
|
|
52395
|
+
type: 'array',
|
|
52396
|
+
},
|
|
52381
52397
|
access_methods: {
|
|
52382
52398
|
items: { $ref: '#/components/schemas/access_method' },
|
|
52383
52399
|
type: 'array',
|