@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
package/dist/connect.d.cts
CHANGED
|
@@ -14071,6 +14071,71 @@ declare const _default: {
|
|
|
14071
14071
|
'x-fern-sdk-method-name': string;
|
|
14072
14072
|
};
|
|
14073
14073
|
};
|
|
14074
|
+
'/user_identities/delete': {
|
|
14075
|
+
post: {
|
|
14076
|
+
operationId: string;
|
|
14077
|
+
requestBody: {
|
|
14078
|
+
content: {
|
|
14079
|
+
'application/json': {
|
|
14080
|
+
schema: {
|
|
14081
|
+
properties: {
|
|
14082
|
+
user_identity_id: {
|
|
14083
|
+
format: string;
|
|
14084
|
+
type: string;
|
|
14085
|
+
};
|
|
14086
|
+
};
|
|
14087
|
+
required: string[];
|
|
14088
|
+
type: string;
|
|
14089
|
+
};
|
|
14090
|
+
};
|
|
14091
|
+
};
|
|
14092
|
+
};
|
|
14093
|
+
responses: {
|
|
14094
|
+
200: {
|
|
14095
|
+
content: {
|
|
14096
|
+
'application/json': {
|
|
14097
|
+
schema: {
|
|
14098
|
+
properties: {
|
|
14099
|
+
ok: {
|
|
14100
|
+
type: string;
|
|
14101
|
+
};
|
|
14102
|
+
};
|
|
14103
|
+
required: string[];
|
|
14104
|
+
type: string;
|
|
14105
|
+
};
|
|
14106
|
+
};
|
|
14107
|
+
};
|
|
14108
|
+
description: string;
|
|
14109
|
+
};
|
|
14110
|
+
400: {
|
|
14111
|
+
description: string;
|
|
14112
|
+
};
|
|
14113
|
+
401: {
|
|
14114
|
+
description: string;
|
|
14115
|
+
};
|
|
14116
|
+
};
|
|
14117
|
+
security: ({
|
|
14118
|
+
access_token: never[];
|
|
14119
|
+
seam_workspace: never[];
|
|
14120
|
+
seam_client_session_token?: never;
|
|
14121
|
+
client_session_token?: never;
|
|
14122
|
+
} | {
|
|
14123
|
+
seam_client_session_token: never[];
|
|
14124
|
+
access_token?: never;
|
|
14125
|
+
seam_workspace?: never;
|
|
14126
|
+
client_session_token?: never;
|
|
14127
|
+
} | {
|
|
14128
|
+
client_session_token: never[];
|
|
14129
|
+
access_token?: never;
|
|
14130
|
+
seam_workspace?: never;
|
|
14131
|
+
seam_client_session_token?: never;
|
|
14132
|
+
})[];
|
|
14133
|
+
summary: string;
|
|
14134
|
+
tags: string[];
|
|
14135
|
+
'x-fern-sdk-group-name': string[];
|
|
14136
|
+
'x-fern-sdk-method-name': string;
|
|
14137
|
+
};
|
|
14138
|
+
};
|
|
14074
14139
|
'/user_identities/enrollment_automations/get': {
|
|
14075
14140
|
post: {
|
|
14076
14141
|
operationId: string;
|
|
@@ -22408,6 +22473,17 @@ interface Routes {
|
|
|
22408
22473
|
};
|
|
22409
22474
|
};
|
|
22410
22475
|
};
|
|
22476
|
+
'/user_identities/delete': {
|
|
22477
|
+
route: '/user_identities/delete';
|
|
22478
|
+
method: 'DELETE' | 'POST';
|
|
22479
|
+
queryParams: {};
|
|
22480
|
+
jsonBody: {};
|
|
22481
|
+
commonParams: {
|
|
22482
|
+
user_identity_id: string;
|
|
22483
|
+
};
|
|
22484
|
+
formData: {};
|
|
22485
|
+
jsonResponse: {};
|
|
22486
|
+
};
|
|
22411
22487
|
'/user_identities/enrollment_automations/get': {
|
|
22412
22488
|
route: '/user_identities/enrollment_automations/get';
|
|
22413
22489
|
method: 'GET' | 'POST';
|
|
@@ -13997,6 +13997,71 @@ declare const _default: {
|
|
|
13997
13997
|
'x-fern-sdk-method-name': string;
|
|
13998
13998
|
};
|
|
13999
13999
|
};
|
|
14000
|
+
'/user_identities/delete': {
|
|
14001
|
+
post: {
|
|
14002
|
+
operationId: string;
|
|
14003
|
+
requestBody: {
|
|
14004
|
+
content: {
|
|
14005
|
+
'application/json': {
|
|
14006
|
+
schema: {
|
|
14007
|
+
properties: {
|
|
14008
|
+
user_identity_id: {
|
|
14009
|
+
format: string;
|
|
14010
|
+
type: string;
|
|
14011
|
+
};
|
|
14012
|
+
};
|
|
14013
|
+
required: string[];
|
|
14014
|
+
type: string;
|
|
14015
|
+
};
|
|
14016
|
+
};
|
|
14017
|
+
};
|
|
14018
|
+
};
|
|
14019
|
+
responses: {
|
|
14020
|
+
200: {
|
|
14021
|
+
content: {
|
|
14022
|
+
'application/json': {
|
|
14023
|
+
schema: {
|
|
14024
|
+
properties: {
|
|
14025
|
+
ok: {
|
|
14026
|
+
type: string;
|
|
14027
|
+
};
|
|
14028
|
+
};
|
|
14029
|
+
required: string[];
|
|
14030
|
+
type: string;
|
|
14031
|
+
};
|
|
14032
|
+
};
|
|
14033
|
+
};
|
|
14034
|
+
description: string;
|
|
14035
|
+
};
|
|
14036
|
+
400: {
|
|
14037
|
+
description: string;
|
|
14038
|
+
};
|
|
14039
|
+
401: {
|
|
14040
|
+
description: string;
|
|
14041
|
+
};
|
|
14042
|
+
};
|
|
14043
|
+
security: ({
|
|
14044
|
+
access_token: never[];
|
|
14045
|
+
seam_workspace: never[];
|
|
14046
|
+
seam_client_session_token?: never;
|
|
14047
|
+
client_session_token?: never;
|
|
14048
|
+
} | {
|
|
14049
|
+
seam_client_session_token: never[];
|
|
14050
|
+
access_token?: never;
|
|
14051
|
+
seam_workspace?: never;
|
|
14052
|
+
client_session_token?: never;
|
|
14053
|
+
} | {
|
|
14054
|
+
client_session_token: never[];
|
|
14055
|
+
access_token?: never;
|
|
14056
|
+
seam_workspace?: never;
|
|
14057
|
+
seam_client_session_token?: never;
|
|
14058
|
+
})[];
|
|
14059
|
+
summary: string;
|
|
14060
|
+
tags: string[];
|
|
14061
|
+
'x-fern-sdk-group-name': string[];
|
|
14062
|
+
'x-fern-sdk-method-name': string;
|
|
14063
|
+
};
|
|
14064
|
+
};
|
|
14000
14065
|
'/user_identities/enrollment_automations/get': {
|
|
14001
14066
|
post: {
|
|
14002
14067
|
operationId: string;
|
|
@@ -10315,6 +10315,49 @@ export default {
|
|
|
10315
10315
|
'x-fern-sdk-method-name': 'create',
|
|
10316
10316
|
},
|
|
10317
10317
|
},
|
|
10318
|
+
'/user_identities/delete': {
|
|
10319
|
+
post: {
|
|
10320
|
+
operationId: 'userIdentitiesDeletePost',
|
|
10321
|
+
requestBody: {
|
|
10322
|
+
content: {
|
|
10323
|
+
'application/json': {
|
|
10324
|
+
schema: {
|
|
10325
|
+
properties: {
|
|
10326
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
10327
|
+
},
|
|
10328
|
+
required: ['user_identity_id'],
|
|
10329
|
+
type: 'object',
|
|
10330
|
+
},
|
|
10331
|
+
},
|
|
10332
|
+
},
|
|
10333
|
+
},
|
|
10334
|
+
responses: {
|
|
10335
|
+
200: {
|
|
10336
|
+
content: {
|
|
10337
|
+
'application/json': {
|
|
10338
|
+
schema: {
|
|
10339
|
+
properties: { ok: { type: 'boolean' } },
|
|
10340
|
+
required: ['ok'],
|
|
10341
|
+
type: 'object',
|
|
10342
|
+
},
|
|
10343
|
+
},
|
|
10344
|
+
},
|
|
10345
|
+
description: 'OK',
|
|
10346
|
+
},
|
|
10347
|
+
400: { description: 'Bad Request' },
|
|
10348
|
+
401: { description: 'Unauthorized' },
|
|
10349
|
+
},
|
|
10350
|
+
security: [
|
|
10351
|
+
{ access_token: [], seam_workspace: [] },
|
|
10352
|
+
{ seam_client_session_token: [] },
|
|
10353
|
+
{ client_session_token: [] },
|
|
10354
|
+
],
|
|
10355
|
+
summary: '/user_identities/delete',
|
|
10356
|
+
tags: ['/user_identities'],
|
|
10357
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
10358
|
+
'x-fern-sdk-method-name': 'delete',
|
|
10359
|
+
},
|
|
10360
|
+
},
|
|
10318
10361
|
'/user_identities/enrollment_automations/get': {
|
|
10319
10362
|
post: {
|
|
10320
10363
|
operationId: 'userIdentitiesEnrollmentAutomationsGetPost',
|