@seamapi/types 1.114.0 → 1.115.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 +73 -0
- package/lib/seam/connect/openapi.d.ts +62 -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
|
@@ -6807,6 +6807,17 @@ export interface Routes {
|
|
|
6807
6807
|
formData: {};
|
|
6808
6808
|
jsonResponse: {};
|
|
6809
6809
|
};
|
|
6810
|
+
'/user_identities/enrollment_automations/delete': {
|
|
6811
|
+
route: '/user_identities/enrollment_automations/delete';
|
|
6812
|
+
method: 'DELETE' | 'POST';
|
|
6813
|
+
queryParams: {};
|
|
6814
|
+
jsonBody: {};
|
|
6815
|
+
commonParams: {
|
|
6816
|
+
enrollment_automation_id: string;
|
|
6817
|
+
};
|
|
6818
|
+
formData: {};
|
|
6819
|
+
jsonResponse: {};
|
|
6820
|
+
};
|
|
6810
6821
|
'/user_identities/enrollment_automations/get': {
|
|
6811
6822
|
route: '/user_identities/enrollment_automations/get';
|
|
6812
6823
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -11135,6 +11135,49 @@ export default {
|
|
|
11135
11135
|
'x-fern-sdk-method-name': 'delete',
|
|
11136
11136
|
},
|
|
11137
11137
|
},
|
|
11138
|
+
'/user_identities/enrollment_automations/delete': {
|
|
11139
|
+
post: {
|
|
11140
|
+
operationId: 'userIdentitiesEnrollmentAutomationsDeletePost',
|
|
11141
|
+
requestBody: {
|
|
11142
|
+
content: {
|
|
11143
|
+
'application/json': {
|
|
11144
|
+
schema: {
|
|
11145
|
+
properties: {
|
|
11146
|
+
enrollment_automation_id: { format: 'uuid', type: 'string' },
|
|
11147
|
+
},
|
|
11148
|
+
required: ['enrollment_automation_id'],
|
|
11149
|
+
type: 'object',
|
|
11150
|
+
},
|
|
11151
|
+
},
|
|
11152
|
+
},
|
|
11153
|
+
},
|
|
11154
|
+
responses: {
|
|
11155
|
+
200: {
|
|
11156
|
+
content: {
|
|
11157
|
+
'application/json': {
|
|
11158
|
+
schema: {
|
|
11159
|
+
properties: { ok: { type: 'boolean' } },
|
|
11160
|
+
required: ['ok'],
|
|
11161
|
+
type: 'object',
|
|
11162
|
+
},
|
|
11163
|
+
},
|
|
11164
|
+
},
|
|
11165
|
+
description: 'OK',
|
|
11166
|
+
},
|
|
11167
|
+
400: { description: 'Bad Request' },
|
|
11168
|
+
401: { description: 'Unauthorized' },
|
|
11169
|
+
},
|
|
11170
|
+
security: [
|
|
11171
|
+
{ pat_with_workspace: [] },
|
|
11172
|
+
{ console_session: [] },
|
|
11173
|
+
{ api_key: [] },
|
|
11174
|
+
],
|
|
11175
|
+
summary: '/user_identities/enrollment_automations/delete',
|
|
11176
|
+
tags: ['/user_identities'],
|
|
11177
|
+
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
11178
|
+
'x-fern-sdk-method-name': 'delete',
|
|
11179
|
+
},
|
|
11180
|
+
},
|
|
11138
11181
|
'/user_identities/enrollment_automations/get': {
|
|
11139
11182
|
post: {
|
|
11140
11183
|
operationId: 'userIdentitiesEnrollmentAutomationsGetPost',
|
|
@@ -9379,6 +9379,17 @@ export interface Routes {
|
|
|
9379
9379
|
formData: {}
|
|
9380
9380
|
jsonResponse: {}
|
|
9381
9381
|
}
|
|
9382
|
+
'/user_identities/enrollment_automations/delete': {
|
|
9383
|
+
route: '/user_identities/enrollment_automations/delete'
|
|
9384
|
+
method: 'DELETE' | 'POST'
|
|
9385
|
+
queryParams: {}
|
|
9386
|
+
jsonBody: {}
|
|
9387
|
+
commonParams: {
|
|
9388
|
+
enrollment_automation_id: string
|
|
9389
|
+
}
|
|
9390
|
+
formData: {}
|
|
9391
|
+
jsonResponse: {}
|
|
9392
|
+
}
|
|
9382
9393
|
'/user_identities/enrollment_automations/get': {
|
|
9383
9394
|
route: '/user_identities/enrollment_automations/get'
|
|
9384
9395
|
method: 'GET' | 'POST'
|