@seamapi/types 1.113.2 → 1.114.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 +107 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +174 -0
- package/lib/seam/connect/openapi.d.ts +159 -0
- package/lib/seam/connect/openapi.js +107 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +15 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +107 -0
- package/src/lib/seam/connect/route-types.ts +15 -0
|
@@ -7488,6 +7488,21 @@ export interface Routes {
|
|
|
7488
7488
|
formData: {};
|
|
7489
7489
|
jsonResponse: {};
|
|
7490
7490
|
};
|
|
7491
|
+
'/user_identities/update': {
|
|
7492
|
+
route: '/user_identities/update';
|
|
7493
|
+
method: 'PATCH' | 'POST';
|
|
7494
|
+
queryParams: {};
|
|
7495
|
+
jsonBody: {
|
|
7496
|
+
user_identity_id: string;
|
|
7497
|
+
user_identity_key?: (string | null) | undefined;
|
|
7498
|
+
email_address?: (string | null) | undefined;
|
|
7499
|
+
phone_number?: (string | null) | undefined;
|
|
7500
|
+
full_name?: (string | null) | undefined;
|
|
7501
|
+
};
|
|
7502
|
+
commonParams: {};
|
|
7503
|
+
formData: {};
|
|
7504
|
+
jsonResponse: {};
|
|
7505
|
+
};
|
|
7491
7506
|
'/webhooks/create': {
|
|
7492
7507
|
route: '/webhooks/create';
|
|
7493
7508
|
method: 'POST';
|
package/package.json
CHANGED
|
@@ -11872,6 +11872,113 @@ export default {
|
|
|
11872
11872
|
'x-fern-sdk-method-name': 'revoke_access_to_device',
|
|
11873
11873
|
},
|
|
11874
11874
|
},
|
|
11875
|
+
'/user_identities/update': {
|
|
11876
|
+
patch: {
|
|
11877
|
+
operationId: 'userIdentitiesUpdatePatch',
|
|
11878
|
+
requestBody: {
|
|
11879
|
+
content: {
|
|
11880
|
+
'application/json': {
|
|
11881
|
+
schema: {
|
|
11882
|
+
properties: {
|
|
11883
|
+
email_address: {
|
|
11884
|
+
format: 'email',
|
|
11885
|
+
nullable: true,
|
|
11886
|
+
type: 'string',
|
|
11887
|
+
},
|
|
11888
|
+
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
11889
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11890
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11891
|
+
user_identity_key: {
|
|
11892
|
+
minLength: 1,
|
|
11893
|
+
nullable: true,
|
|
11894
|
+
type: 'string',
|
|
11895
|
+
},
|
|
11896
|
+
},
|
|
11897
|
+
required: ['user_identity_id'],
|
|
11898
|
+
type: 'object',
|
|
11899
|
+
},
|
|
11900
|
+
},
|
|
11901
|
+
},
|
|
11902
|
+
},
|
|
11903
|
+
responses: {
|
|
11904
|
+
200: {
|
|
11905
|
+
content: {
|
|
11906
|
+
'application/json': {
|
|
11907
|
+
schema: {
|
|
11908
|
+
properties: { ok: { type: 'boolean' } },
|
|
11909
|
+
required: ['ok'],
|
|
11910
|
+
type: 'object',
|
|
11911
|
+
},
|
|
11912
|
+
},
|
|
11913
|
+
},
|
|
11914
|
+
description: 'OK',
|
|
11915
|
+
},
|
|
11916
|
+
400: { description: 'Bad Request' },
|
|
11917
|
+
401: { description: 'Unauthorized' },
|
|
11918
|
+
},
|
|
11919
|
+
security: [
|
|
11920
|
+
{ pat_with_workspace: [] },
|
|
11921
|
+
{ console_session: [] },
|
|
11922
|
+
{ api_key: [] },
|
|
11923
|
+
],
|
|
11924
|
+
summary: '/user_identities/update',
|
|
11925
|
+
tags: ['/user_identities'],
|
|
11926
|
+
'x-fern-ignore': true,
|
|
11927
|
+
},
|
|
11928
|
+
post: {
|
|
11929
|
+
operationId: 'userIdentitiesUpdatePost',
|
|
11930
|
+
requestBody: {
|
|
11931
|
+
content: {
|
|
11932
|
+
'application/json': {
|
|
11933
|
+
schema: {
|
|
11934
|
+
properties: {
|
|
11935
|
+
email_address: {
|
|
11936
|
+
format: 'email',
|
|
11937
|
+
nullable: true,
|
|
11938
|
+
type: 'string',
|
|
11939
|
+
},
|
|
11940
|
+
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
11941
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11942
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11943
|
+
user_identity_key: {
|
|
11944
|
+
minLength: 1,
|
|
11945
|
+
nullable: true,
|
|
11946
|
+
type: 'string',
|
|
11947
|
+
},
|
|
11948
|
+
},
|
|
11949
|
+
required: ['user_identity_id'],
|
|
11950
|
+
type: 'object',
|
|
11951
|
+
},
|
|
11952
|
+
},
|
|
11953
|
+
},
|
|
11954
|
+
},
|
|
11955
|
+
responses: {
|
|
11956
|
+
200: {
|
|
11957
|
+
content: {
|
|
11958
|
+
'application/json': {
|
|
11959
|
+
schema: {
|
|
11960
|
+
properties: { ok: { type: 'boolean' } },
|
|
11961
|
+
required: ['ok'],
|
|
11962
|
+
type: 'object',
|
|
11963
|
+
},
|
|
11964
|
+
},
|
|
11965
|
+
},
|
|
11966
|
+
description: 'OK',
|
|
11967
|
+
},
|
|
11968
|
+
400: { description: 'Bad Request' },
|
|
11969
|
+
401: { description: 'Unauthorized' },
|
|
11970
|
+
},
|
|
11971
|
+
security: [
|
|
11972
|
+
{ pat_with_workspace: [] },
|
|
11973
|
+
{ console_session: [] },
|
|
11974
|
+
{ api_key: [] },
|
|
11975
|
+
],
|
|
11976
|
+
summary: '/user_identities/update',
|
|
11977
|
+
tags: ['/user_identities'],
|
|
11978
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
11979
|
+
'x-fern-sdk-method-name': 'update',
|
|
11980
|
+
},
|
|
11981
|
+
},
|
|
11875
11982
|
'/webhooks/create': {
|
|
11876
11983
|
post: {
|
|
11877
11984
|
operationId: 'webhooksCreatePost',
|
|
@@ -10296,6 +10296,21 @@ export interface Routes {
|
|
|
10296
10296
|
formData: {}
|
|
10297
10297
|
jsonResponse: {}
|
|
10298
10298
|
}
|
|
10299
|
+
'/user_identities/update': {
|
|
10300
|
+
route: '/user_identities/update'
|
|
10301
|
+
method: 'PATCH' | 'POST'
|
|
10302
|
+
queryParams: {}
|
|
10303
|
+
jsonBody: {
|
|
10304
|
+
user_identity_id: string
|
|
10305
|
+
user_identity_key?: (string | null) | undefined
|
|
10306
|
+
email_address?: (string | null) | undefined
|
|
10307
|
+
phone_number?: (string | null) | undefined
|
|
10308
|
+
full_name?: (string | null) | undefined
|
|
10309
|
+
}
|
|
10310
|
+
commonParams: {}
|
|
10311
|
+
formData: {}
|
|
10312
|
+
jsonResponse: {}
|
|
10313
|
+
}
|
|
10299
10314
|
'/webhooks/create': {
|
|
10300
10315
|
route: '/webhooks/create'
|
|
10301
10316
|
method: 'POST'
|