@seamapi/types 1.93.0 → 1.94.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 +43 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +76 -0
- package/lib/seam/connect/openapi.d.ts +65 -0
- package/lib/seam/connect/openapi.js +43 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +43 -0
- package/src/lib/seam/connect/route-types.ts +11 -0
|
@@ -6554,6 +6554,17 @@ export interface Routes {
|
|
|
6554
6554
|
};
|
|
6555
6555
|
};
|
|
6556
6556
|
};
|
|
6557
|
+
'/user_identities/delete': {
|
|
6558
|
+
route: '/user_identities/delete';
|
|
6559
|
+
method: 'DELETE' | 'POST';
|
|
6560
|
+
queryParams: {};
|
|
6561
|
+
jsonBody: {};
|
|
6562
|
+
commonParams: {
|
|
6563
|
+
user_identity_id: string;
|
|
6564
|
+
};
|
|
6565
|
+
formData: {};
|
|
6566
|
+
jsonResponse: {};
|
|
6567
|
+
};
|
|
6557
6568
|
'/user_identities/enrollment_automations/get': {
|
|
6558
6569
|
route: '/user_identities/enrollment_automations/get';
|
|
6559
6570
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -10390,6 +10390,49 @@ export default {
|
|
|
10390
10390
|
'x-fern-sdk-method-name': 'create',
|
|
10391
10391
|
},
|
|
10392
10392
|
},
|
|
10393
|
+
'/user_identities/delete': {
|
|
10394
|
+
post: {
|
|
10395
|
+
operationId: 'userIdentitiesDeletePost',
|
|
10396
|
+
requestBody: {
|
|
10397
|
+
content: {
|
|
10398
|
+
'application/json': {
|
|
10399
|
+
schema: {
|
|
10400
|
+
properties: {
|
|
10401
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
10402
|
+
},
|
|
10403
|
+
required: ['user_identity_id'],
|
|
10404
|
+
type: 'object',
|
|
10405
|
+
},
|
|
10406
|
+
},
|
|
10407
|
+
},
|
|
10408
|
+
},
|
|
10409
|
+
responses: {
|
|
10410
|
+
200: {
|
|
10411
|
+
content: {
|
|
10412
|
+
'application/json': {
|
|
10413
|
+
schema: {
|
|
10414
|
+
properties: { ok: { type: 'boolean' } },
|
|
10415
|
+
required: ['ok'],
|
|
10416
|
+
type: 'object',
|
|
10417
|
+
},
|
|
10418
|
+
},
|
|
10419
|
+
},
|
|
10420
|
+
description: 'OK',
|
|
10421
|
+
},
|
|
10422
|
+
400: { description: 'Bad Request' },
|
|
10423
|
+
401: { description: 'Unauthorized' },
|
|
10424
|
+
},
|
|
10425
|
+
security: [
|
|
10426
|
+
{ access_token: [], seam_workspace: [] },
|
|
10427
|
+
{ seam_client_session_token: [] },
|
|
10428
|
+
{ client_session_token: [] },
|
|
10429
|
+
],
|
|
10430
|
+
summary: '/user_identities/delete',
|
|
10431
|
+
tags: ['/user_identities'],
|
|
10432
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
10433
|
+
'x-fern-sdk-method-name': 'delete',
|
|
10434
|
+
},
|
|
10435
|
+
},
|
|
10393
10436
|
'/user_identities/enrollment_automations/get': {
|
|
10394
10437
|
post: {
|
|
10395
10438
|
operationId: 'userIdentitiesEnrollmentAutomationsGetPost',
|
|
@@ -9020,6 +9020,17 @@ export interface Routes {
|
|
|
9020
9020
|
}
|
|
9021
9021
|
}
|
|
9022
9022
|
}
|
|
9023
|
+
'/user_identities/delete': {
|
|
9024
|
+
route: '/user_identities/delete'
|
|
9025
|
+
method: 'DELETE' | 'POST'
|
|
9026
|
+
queryParams: {}
|
|
9027
|
+
jsonBody: {}
|
|
9028
|
+
commonParams: {
|
|
9029
|
+
user_identity_id: string
|
|
9030
|
+
}
|
|
9031
|
+
formData: {}
|
|
9032
|
+
jsonResponse: {}
|
|
9033
|
+
}
|
|
9023
9034
|
'/user_identities/enrollment_automations/get': {
|
|
9024
9035
|
route: '/user_identities/enrollment_automations/get'
|
|
9025
9036
|
method: 'GET' | 'POST'
|