@seamapi/types 1.68.0 → 1.69.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 +132 -34
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +205 -38
- package/lib/seam/connect/openapi.d.ts +143 -11
- package/lib/seam/connect/openapi.js +120 -22
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +62 -27
- package/lib/seam/connect/unstable/models/access-codes/unmanaged-access-code.d.ts +6 -6
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/credential.js +3 -2
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/user.d.ts +18 -9
- package/lib/seam/connect/unstable/models/acs/user.js +2 -3
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/models/schedule.d.ts +21 -0
- package/lib/seam/connect/unstable/models/schedule.js +12 -0
- package/lib/seam/connect/unstable/models/schedule.js.map +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +120 -22
- package/src/lib/seam/connect/route-types.ts +121 -27
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +3 -2
- package/src/lib/seam/connect/unstable/models/acs/user.ts +3 -3
- package/src/lib/seam/connect/unstable/models/schedule.ts +13 -0
package/dist/connect.d.cts
CHANGED
|
@@ -266,6 +266,20 @@ declare const _default: {
|
|
|
266
266
|
};
|
|
267
267
|
acs_user: {
|
|
268
268
|
properties: {
|
|
269
|
+
access_schedule: {
|
|
270
|
+
properties: {
|
|
271
|
+
ends_at: {
|
|
272
|
+
format: string;
|
|
273
|
+
type: string;
|
|
274
|
+
};
|
|
275
|
+
starts_at: {
|
|
276
|
+
format: string;
|
|
277
|
+
type: string;
|
|
278
|
+
};
|
|
279
|
+
};
|
|
280
|
+
required: string[];
|
|
281
|
+
type: string;
|
|
282
|
+
};
|
|
269
283
|
acs_system_id: {
|
|
270
284
|
format: string;
|
|
271
285
|
type: string;
|
|
@@ -290,10 +304,6 @@ declare const _default: {
|
|
|
290
304
|
format: string;
|
|
291
305
|
type: string;
|
|
292
306
|
};
|
|
293
|
-
ends_at: {
|
|
294
|
-
format: string;
|
|
295
|
-
type: string;
|
|
296
|
-
};
|
|
297
307
|
external_type: {
|
|
298
308
|
enum: string[];
|
|
299
309
|
type: string;
|
|
@@ -311,17 +321,10 @@ declare const _default: {
|
|
|
311
321
|
is_suspended: {
|
|
312
322
|
type: string;
|
|
313
323
|
};
|
|
314
|
-
is_virtual: {
|
|
315
|
-
type: string;
|
|
316
|
-
};
|
|
317
324
|
phone_number: {
|
|
318
325
|
nullable: boolean;
|
|
319
326
|
type: string;
|
|
320
327
|
};
|
|
321
|
-
starts_at: {
|
|
322
|
-
format: string;
|
|
323
|
-
type: string;
|
|
324
|
-
};
|
|
325
328
|
workspace_id: {
|
|
326
329
|
format: string;
|
|
327
330
|
type: string;
|
|
@@ -5240,10 +5243,28 @@ declare const _default: {
|
|
|
5240
5243
|
format: string;
|
|
5241
5244
|
type: string;
|
|
5242
5245
|
};
|
|
5246
|
+
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
5247
|
+
format: string;
|
|
5248
|
+
type: string;
|
|
5249
|
+
};
|
|
5250
|
+
card_format: {
|
|
5251
|
+
enum: string[];
|
|
5252
|
+
type: string;
|
|
5253
|
+
};
|
|
5243
5254
|
code: {
|
|
5244
5255
|
pattern: string;
|
|
5245
5256
|
type: string;
|
|
5246
5257
|
};
|
|
5258
|
+
external_type: {
|
|
5259
|
+
enum: string[];
|
|
5260
|
+
type: string;
|
|
5261
|
+
};
|
|
5262
|
+
is_multi_phone_sync_credential: {
|
|
5263
|
+
type: string;
|
|
5264
|
+
};
|
|
5265
|
+
is_override_key: {
|
|
5266
|
+
type: string;
|
|
5267
|
+
};
|
|
5247
5268
|
};
|
|
5248
5269
|
required: string[];
|
|
5249
5270
|
type: string;
|
|
@@ -6667,6 +6688,10 @@ declare const _default: {
|
|
|
6667
6688
|
nullable: boolean;
|
|
6668
6689
|
type: string;
|
|
6669
6690
|
};
|
|
6691
|
+
user_identity_id: {
|
|
6692
|
+
format: string;
|
|
6693
|
+
type: string;
|
|
6694
|
+
};
|
|
6670
6695
|
};
|
|
6671
6696
|
required: string[];
|
|
6672
6697
|
type: string;
|
|
@@ -12764,6 +12789,113 @@ declare const _default: {
|
|
|
12764
12789
|
'x-fern-sdk-method-name': string;
|
|
12765
12790
|
};
|
|
12766
12791
|
};
|
|
12792
|
+
'/user_identities/enrollment_automations/launch': {
|
|
12793
|
+
post: {
|
|
12794
|
+
operationId: string;
|
|
12795
|
+
requestBody: {
|
|
12796
|
+
content: {
|
|
12797
|
+
'application/json': {
|
|
12798
|
+
schema: {
|
|
12799
|
+
properties: {
|
|
12800
|
+
acs_credential_pool_id: {
|
|
12801
|
+
format: string;
|
|
12802
|
+
type: string;
|
|
12803
|
+
};
|
|
12804
|
+
create_credential_manager_user: {
|
|
12805
|
+
type: string;
|
|
12806
|
+
};
|
|
12807
|
+
credential_manager_acs_system_id: {
|
|
12808
|
+
format: string;
|
|
12809
|
+
type: string;
|
|
12810
|
+
};
|
|
12811
|
+
credential_manager_acs_user_id: {
|
|
12812
|
+
format: string;
|
|
12813
|
+
type: string;
|
|
12814
|
+
};
|
|
12815
|
+
user_identity_id: {
|
|
12816
|
+
format: string;
|
|
12817
|
+
type: string;
|
|
12818
|
+
};
|
|
12819
|
+
};
|
|
12820
|
+
required: string[];
|
|
12821
|
+
type: string;
|
|
12822
|
+
};
|
|
12823
|
+
};
|
|
12824
|
+
};
|
|
12825
|
+
};
|
|
12826
|
+
responses: {
|
|
12827
|
+
200: {
|
|
12828
|
+
content: {
|
|
12829
|
+
'application/json': {
|
|
12830
|
+
schema: {
|
|
12831
|
+
properties: {
|
|
12832
|
+
enrollment_automation: {
|
|
12833
|
+
properties: {
|
|
12834
|
+
acs_credential_provisioning_automation_id: {
|
|
12835
|
+
format: string;
|
|
12836
|
+
type: string;
|
|
12837
|
+
};
|
|
12838
|
+
created_at: {
|
|
12839
|
+
format: string;
|
|
12840
|
+
type: string;
|
|
12841
|
+
};
|
|
12842
|
+
credential_manager_acs_system_id: {
|
|
12843
|
+
format: string;
|
|
12844
|
+
type: string;
|
|
12845
|
+
};
|
|
12846
|
+
enrollment_automation_id: {
|
|
12847
|
+
format: string;
|
|
12848
|
+
type: string;
|
|
12849
|
+
};
|
|
12850
|
+
user_identity_id: {
|
|
12851
|
+
format: string;
|
|
12852
|
+
type: string;
|
|
12853
|
+
};
|
|
12854
|
+
workspace_id: {
|
|
12855
|
+
format: string;
|
|
12856
|
+
type: string;
|
|
12857
|
+
};
|
|
12858
|
+
};
|
|
12859
|
+
required: string[];
|
|
12860
|
+
type: string;
|
|
12861
|
+
};
|
|
12862
|
+
ok: {
|
|
12863
|
+
type: string;
|
|
12864
|
+
};
|
|
12865
|
+
};
|
|
12866
|
+
required: string[];
|
|
12867
|
+
type: string;
|
|
12868
|
+
};
|
|
12869
|
+
};
|
|
12870
|
+
};
|
|
12871
|
+
description: string;
|
|
12872
|
+
};
|
|
12873
|
+
400: {
|
|
12874
|
+
description: string;
|
|
12875
|
+
};
|
|
12876
|
+
401: {
|
|
12877
|
+
description: string;
|
|
12878
|
+
};
|
|
12879
|
+
};
|
|
12880
|
+
security: ({
|
|
12881
|
+
pat_with_workspace: never[];
|
|
12882
|
+
console_session?: never;
|
|
12883
|
+
api_key?: never;
|
|
12884
|
+
} | {
|
|
12885
|
+
console_session: never[];
|
|
12886
|
+
pat_with_workspace?: never;
|
|
12887
|
+
api_key?: never;
|
|
12888
|
+
} | {
|
|
12889
|
+
api_key: never[];
|
|
12890
|
+
pat_with_workspace?: never;
|
|
12891
|
+
console_session?: never;
|
|
12892
|
+
})[];
|
|
12893
|
+
summary: string;
|
|
12894
|
+
tags: never[];
|
|
12895
|
+
'x-fern-sdk-group-name': string[];
|
|
12896
|
+
'x-fern-sdk-method-name': string;
|
|
12897
|
+
};
|
|
12898
|
+
};
|
|
12767
12899
|
'/user_identities/get': {
|
|
12768
12900
|
post: {
|
|
12769
12901
|
operationId: string;
|
|
@@ -14905,9 +15037,10 @@ interface Routes {
|
|
|
14905
15037
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_cm_user' | 'salto_site_user') | undefined;
|
|
14906
15038
|
external_type_display_name?: string | undefined;
|
|
14907
15039
|
is_suspended: boolean;
|
|
14908
|
-
|
|
14909
|
-
|
|
14910
|
-
|
|
15040
|
+
access_schedule?: {
|
|
15041
|
+
starts_at: string;
|
|
15042
|
+
ends_at: string;
|
|
15043
|
+
} | undefined;
|
|
14911
15044
|
full_name?: string | undefined;
|
|
14912
15045
|
/** Deprecated: use email_address. */
|
|
14913
15046
|
email?: string | undefined;
|
|
@@ -14991,8 +15124,8 @@ interface Routes {
|
|
|
14991
15124
|
display_name: string;
|
|
14992
15125
|
code?: (string | undefined) | null;
|
|
14993
15126
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
14994
|
-
external_type
|
|
14995
|
-
external_type_display_name
|
|
15127
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
15128
|
+
external_type_display_name?: string | undefined;
|
|
14996
15129
|
created_at: string;
|
|
14997
15130
|
workspace_id: string;
|
|
14998
15131
|
};
|
|
@@ -15007,6 +15140,11 @@ interface Routes {
|
|
|
15007
15140
|
acs_user_id: string;
|
|
15008
15141
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
15009
15142
|
code?: string | undefined;
|
|
15143
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
15144
|
+
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
15145
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
15146
|
+
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
15147
|
+
is_override_key?: boolean | undefined;
|
|
15010
15148
|
};
|
|
15011
15149
|
formData: {};
|
|
15012
15150
|
jsonResponse: {
|
|
@@ -15018,8 +15156,8 @@ interface Routes {
|
|
|
15018
15156
|
display_name: string;
|
|
15019
15157
|
code?: (string | undefined) | null;
|
|
15020
15158
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
15021
|
-
external_type
|
|
15022
|
-
external_type_display_name
|
|
15159
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
15160
|
+
external_type_display_name?: string | undefined;
|
|
15023
15161
|
created_at: string;
|
|
15024
15162
|
workspace_id: string;
|
|
15025
15163
|
};
|
|
@@ -15054,8 +15192,8 @@ interface Routes {
|
|
|
15054
15192
|
display_name: string;
|
|
15055
15193
|
code?: (string | undefined) | null;
|
|
15056
15194
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
15057
|
-
external_type
|
|
15058
|
-
external_type_display_name
|
|
15195
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
15196
|
+
external_type_display_name?: string | undefined;
|
|
15059
15197
|
created_at: string;
|
|
15060
15198
|
workspace_id: string;
|
|
15061
15199
|
};
|
|
@@ -15084,8 +15222,8 @@ interface Routes {
|
|
|
15084
15222
|
display_name: string;
|
|
15085
15223
|
code?: (string | undefined) | null;
|
|
15086
15224
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
15087
|
-
external_type
|
|
15088
|
-
external_type_display_name
|
|
15225
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
15226
|
+
external_type_display_name?: string | undefined;
|
|
15089
15227
|
created_at: string;
|
|
15090
15228
|
workspace_id: string;
|
|
15091
15229
|
}>;
|
|
@@ -15110,8 +15248,8 @@ interface Routes {
|
|
|
15110
15248
|
display_name: string;
|
|
15111
15249
|
code?: (string | undefined) | null;
|
|
15112
15250
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
15113
|
-
external_type
|
|
15114
|
-
external_type_display_name
|
|
15251
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
15252
|
+
external_type_display_name?: string | undefined;
|
|
15115
15253
|
created_at: string;
|
|
15116
15254
|
workspace_id: string;
|
|
15117
15255
|
};
|
|
@@ -15136,8 +15274,8 @@ interface Routes {
|
|
|
15136
15274
|
display_name: string;
|
|
15137
15275
|
code?: (string | undefined) | null;
|
|
15138
15276
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
15139
|
-
external_type
|
|
15140
|
-
external_type_display_name
|
|
15277
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
15278
|
+
external_type_display_name?: string | undefined;
|
|
15141
15279
|
created_at: string;
|
|
15142
15280
|
workspace_id: string;
|
|
15143
15281
|
};
|
|
@@ -15260,6 +15398,7 @@ interface Routes {
|
|
|
15260
15398
|
jsonBody: {
|
|
15261
15399
|
acs_system_id: string;
|
|
15262
15400
|
acs_access_group_ids?: string[];
|
|
15401
|
+
user_identity_id?: string | undefined;
|
|
15263
15402
|
access_schedule?: {
|
|
15264
15403
|
starts_at: string;
|
|
15265
15404
|
ends_at: string;
|
|
@@ -15283,9 +15422,10 @@ interface Routes {
|
|
|
15283
15422
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_cm_user' | 'salto_site_user') | undefined;
|
|
15284
15423
|
external_type_display_name?: string | undefined;
|
|
15285
15424
|
is_suspended: boolean;
|
|
15286
|
-
|
|
15287
|
-
|
|
15288
|
-
|
|
15425
|
+
access_schedule?: {
|
|
15426
|
+
starts_at: string;
|
|
15427
|
+
ends_at: string;
|
|
15428
|
+
} | undefined;
|
|
15289
15429
|
full_name?: string | undefined;
|
|
15290
15430
|
/** Deprecated: use email_address. */
|
|
15291
15431
|
email?: string | undefined;
|
|
@@ -15325,9 +15465,10 @@ interface Routes {
|
|
|
15325
15465
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_cm_user' | 'salto_site_user') | undefined;
|
|
15326
15466
|
external_type_display_name?: string | undefined;
|
|
15327
15467
|
is_suspended: boolean;
|
|
15328
|
-
|
|
15329
|
-
|
|
15330
|
-
|
|
15468
|
+
access_schedule?: {
|
|
15469
|
+
starts_at: string;
|
|
15470
|
+
ends_at: string;
|
|
15471
|
+
} | undefined;
|
|
15331
15472
|
full_name?: string | undefined;
|
|
15332
15473
|
/** Deprecated: use email_address. */
|
|
15333
15474
|
email?: string | undefined;
|
|
@@ -15356,9 +15497,10 @@ interface Routes {
|
|
|
15356
15497
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_cm_user' | 'salto_site_user') | undefined;
|
|
15357
15498
|
external_type_display_name?: string | undefined;
|
|
15358
15499
|
is_suspended: boolean;
|
|
15359
|
-
|
|
15360
|
-
|
|
15361
|
-
|
|
15500
|
+
access_schedule?: {
|
|
15501
|
+
starts_at: string;
|
|
15502
|
+
ends_at: string;
|
|
15503
|
+
} | undefined;
|
|
15362
15504
|
full_name?: string | undefined;
|
|
15363
15505
|
/** Deprecated: use email_address. */
|
|
15364
15506
|
email?: string | undefined;
|
|
@@ -20385,6 +20527,30 @@ interface Routes {
|
|
|
20385
20527
|
};
|
|
20386
20528
|
};
|
|
20387
20529
|
};
|
|
20530
|
+
'/user_identities/enrollment_automations/launch': {
|
|
20531
|
+
route: '/user_identities/enrollment_automations/launch';
|
|
20532
|
+
method: 'POST';
|
|
20533
|
+
queryParams: {};
|
|
20534
|
+
jsonBody: {};
|
|
20535
|
+
commonParams: {
|
|
20536
|
+
user_identity_id: string;
|
|
20537
|
+
credential_manager_acs_system_id: string;
|
|
20538
|
+
acs_credential_pool_id?: string | undefined;
|
|
20539
|
+
create_credential_manager_user?: boolean | undefined;
|
|
20540
|
+
credential_manager_acs_user_id?: string | undefined;
|
|
20541
|
+
};
|
|
20542
|
+
formData: {};
|
|
20543
|
+
jsonResponse: {
|
|
20544
|
+
enrollment_automation: {
|
|
20545
|
+
acs_credential_provisioning_automation_id: string;
|
|
20546
|
+
credential_manager_acs_system_id: string;
|
|
20547
|
+
user_identity_id: string;
|
|
20548
|
+
created_at: string;
|
|
20549
|
+
workspace_id: string;
|
|
20550
|
+
enrollment_automation_id: string;
|
|
20551
|
+
};
|
|
20552
|
+
};
|
|
20553
|
+
};
|
|
20388
20554
|
'/user_identities/get': {
|
|
20389
20555
|
route: '/user_identities/get';
|
|
20390
20556
|
method: 'GET' | 'POST';
|
|
@@ -20914,9 +21080,10 @@ interface Routes {
|
|
|
20914
21080
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_cm_user' | 'salto_site_user') | undefined;
|
|
20915
21081
|
external_type_display_name?: string | undefined;
|
|
20916
21082
|
is_suspended: boolean;
|
|
20917
|
-
|
|
20918
|
-
|
|
20919
|
-
|
|
21083
|
+
access_schedule?: {
|
|
21084
|
+
starts_at: string;
|
|
21085
|
+
ends_at: string;
|
|
21086
|
+
} | undefined;
|
|
20920
21087
|
full_name?: string | undefined;
|
|
20921
21088
|
/** Deprecated: use email_address. */
|
|
20922
21089
|
email?: string | undefined;
|
|
@@ -192,6 +192,20 @@ declare const _default: {
|
|
|
192
192
|
};
|
|
193
193
|
acs_user: {
|
|
194
194
|
properties: {
|
|
195
|
+
access_schedule: {
|
|
196
|
+
properties: {
|
|
197
|
+
ends_at: {
|
|
198
|
+
format: string;
|
|
199
|
+
type: string;
|
|
200
|
+
};
|
|
201
|
+
starts_at: {
|
|
202
|
+
format: string;
|
|
203
|
+
type: string;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
required: string[];
|
|
207
|
+
type: string;
|
|
208
|
+
};
|
|
195
209
|
acs_system_id: {
|
|
196
210
|
format: string;
|
|
197
211
|
type: string;
|
|
@@ -216,10 +230,6 @@ declare const _default: {
|
|
|
216
230
|
format: string;
|
|
217
231
|
type: string;
|
|
218
232
|
};
|
|
219
|
-
ends_at: {
|
|
220
|
-
format: string;
|
|
221
|
-
type: string;
|
|
222
|
-
};
|
|
223
233
|
external_type: {
|
|
224
234
|
enum: string[];
|
|
225
235
|
type: string;
|
|
@@ -237,17 +247,10 @@ declare const _default: {
|
|
|
237
247
|
is_suspended: {
|
|
238
248
|
type: string;
|
|
239
249
|
};
|
|
240
|
-
is_virtual: {
|
|
241
|
-
type: string;
|
|
242
|
-
};
|
|
243
250
|
phone_number: {
|
|
244
251
|
nullable: boolean;
|
|
245
252
|
type: string;
|
|
246
253
|
};
|
|
247
|
-
starts_at: {
|
|
248
|
-
format: string;
|
|
249
|
-
type: string;
|
|
250
|
-
};
|
|
251
254
|
workspace_id: {
|
|
252
255
|
format: string;
|
|
253
256
|
type: string;
|
|
@@ -5166,10 +5169,28 @@ declare const _default: {
|
|
|
5166
5169
|
format: string;
|
|
5167
5170
|
type: string;
|
|
5168
5171
|
};
|
|
5172
|
+
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
5173
|
+
format: string;
|
|
5174
|
+
type: string;
|
|
5175
|
+
};
|
|
5176
|
+
card_format: {
|
|
5177
|
+
enum: string[];
|
|
5178
|
+
type: string;
|
|
5179
|
+
};
|
|
5169
5180
|
code: {
|
|
5170
5181
|
pattern: string;
|
|
5171
5182
|
type: string;
|
|
5172
5183
|
};
|
|
5184
|
+
external_type: {
|
|
5185
|
+
enum: string[];
|
|
5186
|
+
type: string;
|
|
5187
|
+
};
|
|
5188
|
+
is_multi_phone_sync_credential: {
|
|
5189
|
+
type: string;
|
|
5190
|
+
};
|
|
5191
|
+
is_override_key: {
|
|
5192
|
+
type: string;
|
|
5193
|
+
};
|
|
5173
5194
|
};
|
|
5174
5195
|
required: string[];
|
|
5175
5196
|
type: string;
|
|
@@ -6593,6 +6614,10 @@ declare const _default: {
|
|
|
6593
6614
|
nullable: boolean;
|
|
6594
6615
|
type: string;
|
|
6595
6616
|
};
|
|
6617
|
+
user_identity_id: {
|
|
6618
|
+
format: string;
|
|
6619
|
+
type: string;
|
|
6620
|
+
};
|
|
6596
6621
|
};
|
|
6597
6622
|
required: string[];
|
|
6598
6623
|
type: string;
|
|
@@ -12690,6 +12715,113 @@ declare const _default: {
|
|
|
12690
12715
|
'x-fern-sdk-method-name': string;
|
|
12691
12716
|
};
|
|
12692
12717
|
};
|
|
12718
|
+
'/user_identities/enrollment_automations/launch': {
|
|
12719
|
+
post: {
|
|
12720
|
+
operationId: string;
|
|
12721
|
+
requestBody: {
|
|
12722
|
+
content: {
|
|
12723
|
+
'application/json': {
|
|
12724
|
+
schema: {
|
|
12725
|
+
properties: {
|
|
12726
|
+
acs_credential_pool_id: {
|
|
12727
|
+
format: string;
|
|
12728
|
+
type: string;
|
|
12729
|
+
};
|
|
12730
|
+
create_credential_manager_user: {
|
|
12731
|
+
type: string;
|
|
12732
|
+
};
|
|
12733
|
+
credential_manager_acs_system_id: {
|
|
12734
|
+
format: string;
|
|
12735
|
+
type: string;
|
|
12736
|
+
};
|
|
12737
|
+
credential_manager_acs_user_id: {
|
|
12738
|
+
format: string;
|
|
12739
|
+
type: string;
|
|
12740
|
+
};
|
|
12741
|
+
user_identity_id: {
|
|
12742
|
+
format: string;
|
|
12743
|
+
type: string;
|
|
12744
|
+
};
|
|
12745
|
+
};
|
|
12746
|
+
required: string[];
|
|
12747
|
+
type: string;
|
|
12748
|
+
};
|
|
12749
|
+
};
|
|
12750
|
+
};
|
|
12751
|
+
};
|
|
12752
|
+
responses: {
|
|
12753
|
+
200: {
|
|
12754
|
+
content: {
|
|
12755
|
+
'application/json': {
|
|
12756
|
+
schema: {
|
|
12757
|
+
properties: {
|
|
12758
|
+
enrollment_automation: {
|
|
12759
|
+
properties: {
|
|
12760
|
+
acs_credential_provisioning_automation_id: {
|
|
12761
|
+
format: string;
|
|
12762
|
+
type: string;
|
|
12763
|
+
};
|
|
12764
|
+
created_at: {
|
|
12765
|
+
format: string;
|
|
12766
|
+
type: string;
|
|
12767
|
+
};
|
|
12768
|
+
credential_manager_acs_system_id: {
|
|
12769
|
+
format: string;
|
|
12770
|
+
type: string;
|
|
12771
|
+
};
|
|
12772
|
+
enrollment_automation_id: {
|
|
12773
|
+
format: string;
|
|
12774
|
+
type: string;
|
|
12775
|
+
};
|
|
12776
|
+
user_identity_id: {
|
|
12777
|
+
format: string;
|
|
12778
|
+
type: string;
|
|
12779
|
+
};
|
|
12780
|
+
workspace_id: {
|
|
12781
|
+
format: string;
|
|
12782
|
+
type: string;
|
|
12783
|
+
};
|
|
12784
|
+
};
|
|
12785
|
+
required: string[];
|
|
12786
|
+
type: string;
|
|
12787
|
+
};
|
|
12788
|
+
ok: {
|
|
12789
|
+
type: string;
|
|
12790
|
+
};
|
|
12791
|
+
};
|
|
12792
|
+
required: string[];
|
|
12793
|
+
type: string;
|
|
12794
|
+
};
|
|
12795
|
+
};
|
|
12796
|
+
};
|
|
12797
|
+
description: string;
|
|
12798
|
+
};
|
|
12799
|
+
400: {
|
|
12800
|
+
description: string;
|
|
12801
|
+
};
|
|
12802
|
+
401: {
|
|
12803
|
+
description: string;
|
|
12804
|
+
};
|
|
12805
|
+
};
|
|
12806
|
+
security: ({
|
|
12807
|
+
pat_with_workspace: never[];
|
|
12808
|
+
console_session?: never;
|
|
12809
|
+
api_key?: never;
|
|
12810
|
+
} | {
|
|
12811
|
+
console_session: never[];
|
|
12812
|
+
pat_with_workspace?: never;
|
|
12813
|
+
api_key?: never;
|
|
12814
|
+
} | {
|
|
12815
|
+
api_key: never[];
|
|
12816
|
+
pat_with_workspace?: never;
|
|
12817
|
+
console_session?: never;
|
|
12818
|
+
})[];
|
|
12819
|
+
summary: string;
|
|
12820
|
+
tags: never[];
|
|
12821
|
+
'x-fern-sdk-group-name': string[];
|
|
12822
|
+
'x-fern-sdk-method-name': string;
|
|
12823
|
+
};
|
|
12824
|
+
};
|
|
12693
12825
|
'/user_identities/get': {
|
|
12694
12826
|
post: {
|
|
12695
12827
|
operationId: string;
|