@seamapi/types 1.113.2 → 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 +150 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +247 -0
- package/lib/seam/connect/openapi.d.ts +221 -0
- package/lib/seam/connect/openapi.js +150 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +26 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +150 -0
- package/src/lib/seam/connect/route-types.ts +26 -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';
|
|
@@ -7488,6 +7499,21 @@ export interface Routes {
|
|
|
7488
7499
|
formData: {};
|
|
7489
7500
|
jsonResponse: {};
|
|
7490
7501
|
};
|
|
7502
|
+
'/user_identities/update': {
|
|
7503
|
+
route: '/user_identities/update';
|
|
7504
|
+
method: 'PATCH' | 'POST';
|
|
7505
|
+
queryParams: {};
|
|
7506
|
+
jsonBody: {
|
|
7507
|
+
user_identity_id: string;
|
|
7508
|
+
user_identity_key?: (string | null) | undefined;
|
|
7509
|
+
email_address?: (string | null) | undefined;
|
|
7510
|
+
phone_number?: (string | null) | undefined;
|
|
7511
|
+
full_name?: (string | null) | undefined;
|
|
7512
|
+
};
|
|
7513
|
+
commonParams: {};
|
|
7514
|
+
formData: {};
|
|
7515
|
+
jsonResponse: {};
|
|
7516
|
+
};
|
|
7491
7517
|
'/webhooks/create': {
|
|
7492
7518
|
route: '/webhooks/create';
|
|
7493
7519
|
method: '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',
|
|
@@ -11872,6 +11915,113 @@ export default {
|
|
|
11872
11915
|
'x-fern-sdk-method-name': 'revoke_access_to_device',
|
|
11873
11916
|
},
|
|
11874
11917
|
},
|
|
11918
|
+
'/user_identities/update': {
|
|
11919
|
+
patch: {
|
|
11920
|
+
operationId: 'userIdentitiesUpdatePatch',
|
|
11921
|
+
requestBody: {
|
|
11922
|
+
content: {
|
|
11923
|
+
'application/json': {
|
|
11924
|
+
schema: {
|
|
11925
|
+
properties: {
|
|
11926
|
+
email_address: {
|
|
11927
|
+
format: 'email',
|
|
11928
|
+
nullable: true,
|
|
11929
|
+
type: 'string',
|
|
11930
|
+
},
|
|
11931
|
+
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
11932
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11933
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11934
|
+
user_identity_key: {
|
|
11935
|
+
minLength: 1,
|
|
11936
|
+
nullable: true,
|
|
11937
|
+
type: 'string',
|
|
11938
|
+
},
|
|
11939
|
+
},
|
|
11940
|
+
required: ['user_identity_id'],
|
|
11941
|
+
type: 'object',
|
|
11942
|
+
},
|
|
11943
|
+
},
|
|
11944
|
+
},
|
|
11945
|
+
},
|
|
11946
|
+
responses: {
|
|
11947
|
+
200: {
|
|
11948
|
+
content: {
|
|
11949
|
+
'application/json': {
|
|
11950
|
+
schema: {
|
|
11951
|
+
properties: { ok: { type: 'boolean' } },
|
|
11952
|
+
required: ['ok'],
|
|
11953
|
+
type: 'object',
|
|
11954
|
+
},
|
|
11955
|
+
},
|
|
11956
|
+
},
|
|
11957
|
+
description: 'OK',
|
|
11958
|
+
},
|
|
11959
|
+
400: { description: 'Bad Request' },
|
|
11960
|
+
401: { description: 'Unauthorized' },
|
|
11961
|
+
},
|
|
11962
|
+
security: [
|
|
11963
|
+
{ pat_with_workspace: [] },
|
|
11964
|
+
{ console_session: [] },
|
|
11965
|
+
{ api_key: [] },
|
|
11966
|
+
],
|
|
11967
|
+
summary: '/user_identities/update',
|
|
11968
|
+
tags: ['/user_identities'],
|
|
11969
|
+
'x-fern-ignore': true,
|
|
11970
|
+
},
|
|
11971
|
+
post: {
|
|
11972
|
+
operationId: 'userIdentitiesUpdatePost',
|
|
11973
|
+
requestBody: {
|
|
11974
|
+
content: {
|
|
11975
|
+
'application/json': {
|
|
11976
|
+
schema: {
|
|
11977
|
+
properties: {
|
|
11978
|
+
email_address: {
|
|
11979
|
+
format: 'email',
|
|
11980
|
+
nullable: true,
|
|
11981
|
+
type: 'string',
|
|
11982
|
+
},
|
|
11983
|
+
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
11984
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11985
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11986
|
+
user_identity_key: {
|
|
11987
|
+
minLength: 1,
|
|
11988
|
+
nullable: true,
|
|
11989
|
+
type: 'string',
|
|
11990
|
+
},
|
|
11991
|
+
},
|
|
11992
|
+
required: ['user_identity_id'],
|
|
11993
|
+
type: 'object',
|
|
11994
|
+
},
|
|
11995
|
+
},
|
|
11996
|
+
},
|
|
11997
|
+
},
|
|
11998
|
+
responses: {
|
|
11999
|
+
200: {
|
|
12000
|
+
content: {
|
|
12001
|
+
'application/json': {
|
|
12002
|
+
schema: {
|
|
12003
|
+
properties: { ok: { type: 'boolean' } },
|
|
12004
|
+
required: ['ok'],
|
|
12005
|
+
type: 'object',
|
|
12006
|
+
},
|
|
12007
|
+
},
|
|
12008
|
+
},
|
|
12009
|
+
description: 'OK',
|
|
12010
|
+
},
|
|
12011
|
+
400: { description: 'Bad Request' },
|
|
12012
|
+
401: { description: 'Unauthorized' },
|
|
12013
|
+
},
|
|
12014
|
+
security: [
|
|
12015
|
+
{ pat_with_workspace: [] },
|
|
12016
|
+
{ console_session: [] },
|
|
12017
|
+
{ api_key: [] },
|
|
12018
|
+
],
|
|
12019
|
+
summary: '/user_identities/update',
|
|
12020
|
+
tags: ['/user_identities'],
|
|
12021
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
12022
|
+
'x-fern-sdk-method-name': 'update',
|
|
12023
|
+
},
|
|
12024
|
+
},
|
|
11875
12025
|
'/webhooks/create': {
|
|
11876
12026
|
post: {
|
|
11877
12027
|
operationId: 'webhooksCreatePost',
|
|
@@ -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'
|
|
@@ -10296,6 +10307,21 @@ export interface Routes {
|
|
|
10296
10307
|
formData: {}
|
|
10297
10308
|
jsonResponse: {}
|
|
10298
10309
|
}
|
|
10310
|
+
'/user_identities/update': {
|
|
10311
|
+
route: '/user_identities/update'
|
|
10312
|
+
method: 'PATCH' | 'POST'
|
|
10313
|
+
queryParams: {}
|
|
10314
|
+
jsonBody: {
|
|
10315
|
+
user_identity_id: string
|
|
10316
|
+
user_identity_key?: (string | null) | undefined
|
|
10317
|
+
email_address?: (string | null) | undefined
|
|
10318
|
+
phone_number?: (string | null) | undefined
|
|
10319
|
+
full_name?: (string | null) | undefined
|
|
10320
|
+
}
|
|
10321
|
+
commonParams: {}
|
|
10322
|
+
formData: {}
|
|
10323
|
+
jsonResponse: {}
|
|
10324
|
+
}
|
|
10299
10325
|
'/webhooks/create': {
|
|
10300
10326
|
route: '/webhooks/create'
|
|
10301
10327
|
method: 'POST'
|