@seamapi/types 1.119.0 → 1.120.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 +33 -23
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +52 -38
- package/lib/seam/connect/openapi.d.ts +49 -37
- package/lib/seam/connect/openapi.js +33 -23
- 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 +33 -23
- package/src/lib/seam/connect/route-types.ts +4 -1
|
@@ -935,7 +935,7 @@ export interface Routes {
|
|
|
935
935
|
method: 'GET' | 'POST';
|
|
936
936
|
queryParams: {};
|
|
937
937
|
jsonBody: {};
|
|
938
|
-
commonParams: {
|
|
938
|
+
commonParams: ({
|
|
939
939
|
acs_user_id: string;
|
|
940
940
|
} | {
|
|
941
941
|
acs_system_id: string;
|
|
@@ -944,6 +944,8 @@ export interface Routes {
|
|
|
944
944
|
acs_system_id: string;
|
|
945
945
|
} | {
|
|
946
946
|
user_identity_id: string;
|
|
947
|
+
}) & {
|
|
948
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
947
949
|
};
|
|
948
950
|
formData: {};
|
|
949
951
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -4481,34 +4481,44 @@ export default {
|
|
|
4481
4481
|
content: {
|
|
4482
4482
|
'application/json': {
|
|
4483
4483
|
schema: {
|
|
4484
|
-
|
|
4485
|
-
{
|
|
4486
|
-
properties: {
|
|
4487
|
-
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4488
|
-
},
|
|
4489
|
-
required: ['acs_user_id'],
|
|
4490
|
-
type: 'object',
|
|
4491
|
-
},
|
|
4492
|
-
{
|
|
4493
|
-
properties: {
|
|
4494
|
-
acs_system_id: { format: 'uuid', type: 'string' },
|
|
4495
|
-
},
|
|
4496
|
-
required: ['acs_system_id'],
|
|
4497
|
-
type: 'object',
|
|
4498
|
-
},
|
|
4484
|
+
allOf: [
|
|
4499
4485
|
{
|
|
4500
|
-
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4486
|
+
oneOf: [
|
|
4487
|
+
{
|
|
4488
|
+
properties: {
|
|
4489
|
+
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4490
|
+
},
|
|
4491
|
+
required: ['acs_user_id'],
|
|
4492
|
+
type: 'object',
|
|
4493
|
+
},
|
|
4494
|
+
{
|
|
4495
|
+
properties: {
|
|
4496
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
4497
|
+
},
|
|
4498
|
+
required: ['acs_system_id'],
|
|
4499
|
+
type: 'object',
|
|
4500
|
+
},
|
|
4501
|
+
{
|
|
4502
|
+
properties: {
|
|
4503
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
4504
|
+
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4505
|
+
},
|
|
4506
|
+
required: ['acs_user_id', 'acs_system_id'],
|
|
4507
|
+
type: 'object',
|
|
4508
|
+
},
|
|
4509
|
+
{
|
|
4510
|
+
properties: {
|
|
4511
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
4512
|
+
},
|
|
4513
|
+
required: ['user_identity_id'],
|
|
4514
|
+
type: 'object',
|
|
4515
|
+
},
|
|
4516
|
+
],
|
|
4506
4517
|
},
|
|
4507
4518
|
{
|
|
4508
4519
|
properties: {
|
|
4509
|
-
|
|
4520
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
4510
4521
|
},
|
|
4511
|
-
required: ['user_identity_id'],
|
|
4512
4522
|
type: 'object',
|
|
4513
4523
|
},
|
|
4514
4524
|
],
|
|
@@ -1003,7 +1003,7 @@ export interface Routes {
|
|
|
1003
1003
|
method: 'GET' | 'POST'
|
|
1004
1004
|
queryParams: {}
|
|
1005
1005
|
jsonBody: {}
|
|
1006
|
-
commonParams:
|
|
1006
|
+
commonParams: (
|
|
1007
1007
|
| {
|
|
1008
1008
|
acs_user_id: string
|
|
1009
1009
|
}
|
|
@@ -1017,6 +1017,9 @@ export interface Routes {
|
|
|
1017
1017
|
| {
|
|
1018
1018
|
user_identity_id: string
|
|
1019
1019
|
}
|
|
1020
|
+
) & {
|
|
1021
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
1022
|
+
}
|
|
1020
1023
|
formData: {}
|
|
1021
1024
|
jsonResponse: {
|
|
1022
1025
|
acs_credentials: Array<{
|