@seamapi/types 1.116.0 → 1.118.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 +16 -68
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -91
- package/lib/seam/connect/openapi.d.ts +13 -90
- package/lib/seam/connect/openapi.js +12 -64
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -64
- package/src/lib/seam/connect/route-types.ts +4 -1
package/dist/connect.d.cts
CHANGED
|
@@ -9517,6 +9517,9 @@ declare const _default: {
|
|
|
9517
9517
|
user_identifier_key: {
|
|
9518
9518
|
type: string;
|
|
9519
9519
|
};
|
|
9520
|
+
user_identity_id: {
|
|
9521
|
+
type: string;
|
|
9522
|
+
};
|
|
9520
9523
|
without_user_identifier_key: {
|
|
9521
9524
|
type: string;
|
|
9522
9525
|
};
|
|
@@ -15555,103 +15558,23 @@ declare const _default: {
|
|
|
15555
15558
|
};
|
|
15556
15559
|
};
|
|
15557
15560
|
'/user_identities/list': {
|
|
15558
|
-
|
|
15561
|
+
post: {
|
|
15559
15562
|
operationId: string;
|
|
15560
|
-
|
|
15561
|
-
|
|
15562
|
-
|
|
15563
|
-
|
|
15564
|
-
|
|
15565
|
-
|
|
15566
|
-
|
|
15567
|
-
|
|
15568
|
-
};
|
|
15569
|
-
user_identities: {
|
|
15570
|
-
items: {
|
|
15571
|
-
properties: {
|
|
15572
|
-
created_at: {
|
|
15573
|
-
format: string;
|
|
15574
|
-
type: string;
|
|
15575
|
-
};
|
|
15576
|
-
display_name: {
|
|
15577
|
-
minLength: number;
|
|
15578
|
-
type: string;
|
|
15579
|
-
};
|
|
15580
|
-
email_address: {
|
|
15581
|
-
format: string;
|
|
15582
|
-
nullable: boolean;
|
|
15583
|
-
type: string;
|
|
15584
|
-
};
|
|
15585
|
-
full_name: {
|
|
15586
|
-
minLength: number;
|
|
15587
|
-
nullable: boolean;
|
|
15588
|
-
type: string;
|
|
15589
|
-
};
|
|
15590
|
-
phone_number: {
|
|
15591
|
-
nullable: boolean;
|
|
15592
|
-
type: string;
|
|
15593
|
-
};
|
|
15594
|
-
user_identity_id: {
|
|
15595
|
-
format: string;
|
|
15596
|
-
type: string;
|
|
15597
|
-
};
|
|
15598
|
-
user_identity_key: {
|
|
15599
|
-
minLength: number;
|
|
15600
|
-
nullable: boolean;
|
|
15601
|
-
type: string;
|
|
15602
|
-
};
|
|
15603
|
-
workspace_id: {
|
|
15604
|
-
format: string;
|
|
15605
|
-
type: string;
|
|
15606
|
-
};
|
|
15607
|
-
};
|
|
15608
|
-
required: string[];
|
|
15609
|
-
type: string;
|
|
15610
|
-
};
|
|
15611
|
-
type: string;
|
|
15612
|
-
};
|
|
15563
|
+
requestBody: {
|
|
15564
|
+
content: {
|
|
15565
|
+
'application/json': {
|
|
15566
|
+
schema: {
|
|
15567
|
+
properties: {
|
|
15568
|
+
credential_manager_acs_system_id: {
|
|
15569
|
+
format: string;
|
|
15570
|
+
type: string;
|
|
15613
15571
|
};
|
|
15614
|
-
required: string[];
|
|
15615
|
-
type: string;
|
|
15616
15572
|
};
|
|
15573
|
+
type: string;
|
|
15617
15574
|
};
|
|
15618
15575
|
};
|
|
15619
|
-
description: string;
|
|
15620
|
-
};
|
|
15621
|
-
400: {
|
|
15622
|
-
description: string;
|
|
15623
|
-
};
|
|
15624
|
-
401: {
|
|
15625
|
-
description: string;
|
|
15626
15576
|
};
|
|
15627
15577
|
};
|
|
15628
|
-
security: ({
|
|
15629
|
-
api_key: never[];
|
|
15630
|
-
client_session?: never;
|
|
15631
|
-
pat_with_workspace?: never;
|
|
15632
|
-
console_session?: never;
|
|
15633
|
-
} | {
|
|
15634
|
-
client_session: never[];
|
|
15635
|
-
api_key?: never;
|
|
15636
|
-
pat_with_workspace?: never;
|
|
15637
|
-
console_session?: never;
|
|
15638
|
-
} | {
|
|
15639
|
-
pat_with_workspace: never[];
|
|
15640
|
-
api_key?: never;
|
|
15641
|
-
client_session?: never;
|
|
15642
|
-
console_session?: never;
|
|
15643
|
-
} | {
|
|
15644
|
-
console_session: never[];
|
|
15645
|
-
api_key?: never;
|
|
15646
|
-
client_session?: never;
|
|
15647
|
-
pat_with_workspace?: never;
|
|
15648
|
-
})[];
|
|
15649
|
-
summary: string;
|
|
15650
|
-
tags: string[];
|
|
15651
|
-
'x-fern-ignore': boolean;
|
|
15652
|
-
};
|
|
15653
|
-
post: {
|
|
15654
|
-
operationId: string;
|
|
15655
15578
|
responses: {
|
|
15656
15579
|
200: {
|
|
15657
15580
|
content: {
|
|
@@ -18767,6 +18690,7 @@ interface Routes {
|
|
|
18767
18690
|
user_identifier_key?: string | undefined;
|
|
18768
18691
|
connect_webview_id?: string | undefined;
|
|
18769
18692
|
without_user_identifier_key?: boolean | undefined;
|
|
18693
|
+
user_identity_id?: string | undefined;
|
|
18770
18694
|
};
|
|
18771
18695
|
formData: {};
|
|
18772
18696
|
jsonResponse: {
|
|
@@ -24049,7 +23973,9 @@ interface Routes {
|
|
|
24049
23973
|
method: 'GET' | 'POST';
|
|
24050
23974
|
queryParams: {};
|
|
24051
23975
|
jsonBody: {};
|
|
24052
|
-
commonParams: {
|
|
23976
|
+
commonParams: {
|
|
23977
|
+
credential_manager_acs_system_id?: string | undefined;
|
|
23978
|
+
};
|
|
24053
23979
|
formData: {};
|
|
24054
23980
|
jsonResponse: {
|
|
24055
23981
|
user_identities: Array<{
|
|
@@ -9443,6 +9443,9 @@ declare const _default: {
|
|
|
9443
9443
|
user_identifier_key: {
|
|
9444
9444
|
type: string;
|
|
9445
9445
|
};
|
|
9446
|
+
user_identity_id: {
|
|
9447
|
+
type: string;
|
|
9448
|
+
};
|
|
9446
9449
|
without_user_identifier_key: {
|
|
9447
9450
|
type: string;
|
|
9448
9451
|
};
|
|
@@ -15481,103 +15484,23 @@ declare const _default: {
|
|
|
15481
15484
|
};
|
|
15482
15485
|
};
|
|
15483
15486
|
'/user_identities/list': {
|
|
15484
|
-
|
|
15487
|
+
post: {
|
|
15485
15488
|
operationId: string;
|
|
15486
|
-
|
|
15487
|
-
|
|
15488
|
-
|
|
15489
|
-
|
|
15490
|
-
|
|
15491
|
-
|
|
15492
|
-
|
|
15493
|
-
|
|
15494
|
-
};
|
|
15495
|
-
user_identities: {
|
|
15496
|
-
items: {
|
|
15497
|
-
properties: {
|
|
15498
|
-
created_at: {
|
|
15499
|
-
format: string;
|
|
15500
|
-
type: string;
|
|
15501
|
-
};
|
|
15502
|
-
display_name: {
|
|
15503
|
-
minLength: number;
|
|
15504
|
-
type: string;
|
|
15505
|
-
};
|
|
15506
|
-
email_address: {
|
|
15507
|
-
format: string;
|
|
15508
|
-
nullable: boolean;
|
|
15509
|
-
type: string;
|
|
15510
|
-
};
|
|
15511
|
-
full_name: {
|
|
15512
|
-
minLength: number;
|
|
15513
|
-
nullable: boolean;
|
|
15514
|
-
type: string;
|
|
15515
|
-
};
|
|
15516
|
-
phone_number: {
|
|
15517
|
-
nullable: boolean;
|
|
15518
|
-
type: string;
|
|
15519
|
-
};
|
|
15520
|
-
user_identity_id: {
|
|
15521
|
-
format: string;
|
|
15522
|
-
type: string;
|
|
15523
|
-
};
|
|
15524
|
-
user_identity_key: {
|
|
15525
|
-
minLength: number;
|
|
15526
|
-
nullable: boolean;
|
|
15527
|
-
type: string;
|
|
15528
|
-
};
|
|
15529
|
-
workspace_id: {
|
|
15530
|
-
format: string;
|
|
15531
|
-
type: string;
|
|
15532
|
-
};
|
|
15533
|
-
};
|
|
15534
|
-
required: string[];
|
|
15535
|
-
type: string;
|
|
15536
|
-
};
|
|
15537
|
-
type: string;
|
|
15538
|
-
};
|
|
15489
|
+
requestBody: {
|
|
15490
|
+
content: {
|
|
15491
|
+
'application/json': {
|
|
15492
|
+
schema: {
|
|
15493
|
+
properties: {
|
|
15494
|
+
credential_manager_acs_system_id: {
|
|
15495
|
+
format: string;
|
|
15496
|
+
type: string;
|
|
15539
15497
|
};
|
|
15540
|
-
required: string[];
|
|
15541
|
-
type: string;
|
|
15542
15498
|
};
|
|
15499
|
+
type: string;
|
|
15543
15500
|
};
|
|
15544
15501
|
};
|
|
15545
|
-
description: string;
|
|
15546
|
-
};
|
|
15547
|
-
400: {
|
|
15548
|
-
description: string;
|
|
15549
|
-
};
|
|
15550
|
-
401: {
|
|
15551
|
-
description: string;
|
|
15552
15502
|
};
|
|
15553
15503
|
};
|
|
15554
|
-
security: ({
|
|
15555
|
-
api_key: never[];
|
|
15556
|
-
client_session?: never;
|
|
15557
|
-
pat_with_workspace?: never;
|
|
15558
|
-
console_session?: never;
|
|
15559
|
-
} | {
|
|
15560
|
-
client_session: never[];
|
|
15561
|
-
api_key?: never;
|
|
15562
|
-
pat_with_workspace?: never;
|
|
15563
|
-
console_session?: never;
|
|
15564
|
-
} | {
|
|
15565
|
-
pat_with_workspace: never[];
|
|
15566
|
-
api_key?: never;
|
|
15567
|
-
client_session?: never;
|
|
15568
|
-
console_session?: never;
|
|
15569
|
-
} | {
|
|
15570
|
-
console_session: never[];
|
|
15571
|
-
api_key?: never;
|
|
15572
|
-
client_session?: never;
|
|
15573
|
-
pat_with_workspace?: never;
|
|
15574
|
-
})[];
|
|
15575
|
-
summary: string;
|
|
15576
|
-
tags: string[];
|
|
15577
|
-
'x-fern-ignore': boolean;
|
|
15578
|
-
};
|
|
15579
|
-
post: {
|
|
15580
|
-
operationId: string;
|
|
15581
15504
|
responses: {
|
|
15582
15505
|
200: {
|
|
15583
15506
|
content: {
|
|
@@ -6795,6 +6795,7 @@ export default {
|
|
|
6795
6795
|
client_session_id: { type: 'string' },
|
|
6796
6796
|
connect_webview_id: { type: 'string' },
|
|
6797
6797
|
user_identifier_key: { type: 'string' },
|
|
6798
|
+
user_identity_id: { type: 'string' },
|
|
6798
6799
|
without_user_identifier_key: { type: 'boolean' },
|
|
6799
6800
|
},
|
|
6800
6801
|
type: 'object',
|
|
@@ -11467,76 +11468,23 @@ export default {
|
|
|
11467
11468
|
},
|
|
11468
11469
|
},
|
|
11469
11470
|
'/user_identities/list': {
|
|
11470
|
-
|
|
11471
|
-
operationId: '
|
|
11472
|
-
|
|
11473
|
-
|
|
11474
|
-
|
|
11475
|
-
|
|
11476
|
-
|
|
11477
|
-
|
|
11478
|
-
|
|
11479
|
-
|
|
11480
|
-
items: {
|
|
11481
|
-
properties: {
|
|
11482
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
11483
|
-
display_name: { minLength: 1, type: 'string' },
|
|
11484
|
-
email_address: {
|
|
11485
|
-
format: 'email',
|
|
11486
|
-
nullable: true,
|
|
11487
|
-
type: 'string',
|
|
11488
|
-
},
|
|
11489
|
-
full_name: {
|
|
11490
|
-
minLength: 1,
|
|
11491
|
-
nullable: true,
|
|
11492
|
-
type: 'string',
|
|
11493
|
-
},
|
|
11494
|
-
phone_number: { nullable: true, type: 'string' },
|
|
11495
|
-
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11496
|
-
user_identity_key: {
|
|
11497
|
-
minLength: 1,
|
|
11498
|
-
nullable: true,
|
|
11499
|
-
type: 'string',
|
|
11500
|
-
},
|
|
11501
|
-
workspace_id: { format: 'uuid', type: 'string' },
|
|
11502
|
-
},
|
|
11503
|
-
required: [
|
|
11504
|
-
'user_identity_id',
|
|
11505
|
-
'user_identity_key',
|
|
11506
|
-
'email_address',
|
|
11507
|
-
'phone_number',
|
|
11508
|
-
'display_name',
|
|
11509
|
-
'full_name',
|
|
11510
|
-
'created_at',
|
|
11511
|
-
'workspace_id',
|
|
11512
|
-
],
|
|
11513
|
-
type: 'object',
|
|
11514
|
-
},
|
|
11515
|
-
type: 'array',
|
|
11516
|
-
},
|
|
11471
|
+
post: {
|
|
11472
|
+
operationId: 'userIdentitiesListPost',
|
|
11473
|
+
requestBody: {
|
|
11474
|
+
content: {
|
|
11475
|
+
'application/json': {
|
|
11476
|
+
schema: {
|
|
11477
|
+
properties: {
|
|
11478
|
+
credential_manager_acs_system_id: {
|
|
11479
|
+
format: 'uuid',
|
|
11480
|
+
type: 'string',
|
|
11517
11481
|
},
|
|
11518
|
-
required: ['user_identities', 'ok'],
|
|
11519
|
-
type: 'object',
|
|
11520
11482
|
},
|
|
11483
|
+
type: 'object',
|
|
11521
11484
|
},
|
|
11522
11485
|
},
|
|
11523
|
-
description: 'OK',
|
|
11524
11486
|
},
|
|
11525
|
-
400: { description: 'Bad Request' },
|
|
11526
|
-
401: { description: 'Unauthorized' },
|
|
11527
11487
|
},
|
|
11528
|
-
security: [
|
|
11529
|
-
{ api_key: [] },
|
|
11530
|
-
{ client_session: [] },
|
|
11531
|
-
{ pat_with_workspace: [] },
|
|
11532
|
-
{ console_session: [] },
|
|
11533
|
-
],
|
|
11534
|
-
summary: '/user_identities/list',
|
|
11535
|
-
tags: ['/user_identities'],
|
|
11536
|
-
'x-fern-ignore': true,
|
|
11537
|
-
},
|
|
11538
|
-
post: {
|
|
11539
|
-
operationId: 'userIdentitiesListPost',
|
|
11540
11488
|
responses: {
|
|
11541
11489
|
200: {
|
|
11542
11490
|
content: {
|