@seamapi/types 1.116.0 → 1.117.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 +15 -68
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +13 -91
- package/lib/seam/connect/openapi.d.ts +10 -90
- package/lib/seam/connect/openapi.js +11 -64
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +11 -64
- package/src/lib/seam/connect/route-types.ts +3 -1
package/dist/connect.d.cts
CHANGED
|
@@ -15555,103 +15555,23 @@ declare const _default: {
|
|
|
15555
15555
|
};
|
|
15556
15556
|
};
|
|
15557
15557
|
'/user_identities/list': {
|
|
15558
|
-
|
|
15558
|
+
post: {
|
|
15559
15559
|
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
|
-
};
|
|
15560
|
+
requestBody: {
|
|
15561
|
+
content: {
|
|
15562
|
+
'application/json': {
|
|
15563
|
+
schema: {
|
|
15564
|
+
properties: {
|
|
15565
|
+
credential_manager_acs_system_id: {
|
|
15566
|
+
format: string;
|
|
15567
|
+
type: string;
|
|
15613
15568
|
};
|
|
15614
|
-
required: string[];
|
|
15615
|
-
type: string;
|
|
15616
15569
|
};
|
|
15570
|
+
type: string;
|
|
15617
15571
|
};
|
|
15618
15572
|
};
|
|
15619
|
-
description: string;
|
|
15620
|
-
};
|
|
15621
|
-
400: {
|
|
15622
|
-
description: string;
|
|
15623
|
-
};
|
|
15624
|
-
401: {
|
|
15625
|
-
description: string;
|
|
15626
15573
|
};
|
|
15627
15574
|
};
|
|
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
15575
|
responses: {
|
|
15656
15576
|
200: {
|
|
15657
15577
|
content: {
|
|
@@ -24049,7 +23969,9 @@ interface Routes {
|
|
|
24049
23969
|
method: 'GET' | 'POST';
|
|
24050
23970
|
queryParams: {};
|
|
24051
23971
|
jsonBody: {};
|
|
24052
|
-
commonParams: {
|
|
23972
|
+
commonParams: {
|
|
23973
|
+
credential_manager_acs_system_id?: string | undefined;
|
|
23974
|
+
};
|
|
24053
23975
|
formData: {};
|
|
24054
23976
|
jsonResponse: {
|
|
24055
23977
|
user_identities: Array<{
|
|
@@ -15481,103 +15481,23 @@ declare const _default: {
|
|
|
15481
15481
|
};
|
|
15482
15482
|
};
|
|
15483
15483
|
'/user_identities/list': {
|
|
15484
|
-
|
|
15484
|
+
post: {
|
|
15485
15485
|
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
|
-
};
|
|
15486
|
+
requestBody: {
|
|
15487
|
+
content: {
|
|
15488
|
+
'application/json': {
|
|
15489
|
+
schema: {
|
|
15490
|
+
properties: {
|
|
15491
|
+
credential_manager_acs_system_id: {
|
|
15492
|
+
format: string;
|
|
15493
|
+
type: string;
|
|
15539
15494
|
};
|
|
15540
|
-
required: string[];
|
|
15541
|
-
type: string;
|
|
15542
15495
|
};
|
|
15496
|
+
type: string;
|
|
15543
15497
|
};
|
|
15544
15498
|
};
|
|
15545
|
-
description: string;
|
|
15546
|
-
};
|
|
15547
|
-
400: {
|
|
15548
|
-
description: string;
|
|
15549
|
-
};
|
|
15550
|
-
401: {
|
|
15551
|
-
description: string;
|
|
15552
15499
|
};
|
|
15553
15500
|
};
|
|
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
15501
|
responses: {
|
|
15582
15502
|
200: {
|
|
15583
15503
|
content: {
|
|
@@ -11467,76 +11467,23 @@ export default {
|
|
|
11467
11467
|
},
|
|
11468
11468
|
},
|
|
11469
11469
|
'/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
|
-
},
|
|
11470
|
+
post: {
|
|
11471
|
+
operationId: 'userIdentitiesListPost',
|
|
11472
|
+
requestBody: {
|
|
11473
|
+
content: {
|
|
11474
|
+
'application/json': {
|
|
11475
|
+
schema: {
|
|
11476
|
+
properties: {
|
|
11477
|
+
credential_manager_acs_system_id: {
|
|
11478
|
+
format: 'uuid',
|
|
11479
|
+
type: 'string',
|
|
11517
11480
|
},
|
|
11518
|
-
required: ['user_identities', 'ok'],
|
|
11519
|
-
type: 'object',
|
|
11520
11481
|
},
|
|
11482
|
+
type: 'object',
|
|
11521
11483
|
},
|
|
11522
11484
|
},
|
|
11523
|
-
description: 'OK',
|
|
11524
11485
|
},
|
|
11525
|
-
400: { description: 'Bad Request' },
|
|
11526
|
-
401: { description: 'Unauthorized' },
|
|
11527
11486
|
},
|
|
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
11487
|
responses: {
|
|
11541
11488
|
200: {
|
|
11542
11489
|
content: {
|