@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
package/dist/connect.d.cts
CHANGED
|
@@ -14977,6 +14977,68 @@ declare const _default: {
|
|
|
14977
14977
|
'x-fern-sdk-method-name': string;
|
|
14978
14978
|
};
|
|
14979
14979
|
};
|
|
14980
|
+
'/user_identities/enrollment_automations/delete': {
|
|
14981
|
+
post: {
|
|
14982
|
+
operationId: string;
|
|
14983
|
+
requestBody: {
|
|
14984
|
+
content: {
|
|
14985
|
+
'application/json': {
|
|
14986
|
+
schema: {
|
|
14987
|
+
properties: {
|
|
14988
|
+
enrollment_automation_id: {
|
|
14989
|
+
format: string;
|
|
14990
|
+
type: string;
|
|
14991
|
+
};
|
|
14992
|
+
};
|
|
14993
|
+
required: string[];
|
|
14994
|
+
type: string;
|
|
14995
|
+
};
|
|
14996
|
+
};
|
|
14997
|
+
};
|
|
14998
|
+
};
|
|
14999
|
+
responses: {
|
|
15000
|
+
200: {
|
|
15001
|
+
content: {
|
|
15002
|
+
'application/json': {
|
|
15003
|
+
schema: {
|
|
15004
|
+
properties: {
|
|
15005
|
+
ok: {
|
|
15006
|
+
type: string;
|
|
15007
|
+
};
|
|
15008
|
+
};
|
|
15009
|
+
required: string[];
|
|
15010
|
+
type: string;
|
|
15011
|
+
};
|
|
15012
|
+
};
|
|
15013
|
+
};
|
|
15014
|
+
description: string;
|
|
15015
|
+
};
|
|
15016
|
+
400: {
|
|
15017
|
+
description: string;
|
|
15018
|
+
};
|
|
15019
|
+
401: {
|
|
15020
|
+
description: string;
|
|
15021
|
+
};
|
|
15022
|
+
};
|
|
15023
|
+
security: ({
|
|
15024
|
+
pat_with_workspace: never[];
|
|
15025
|
+
console_session?: never;
|
|
15026
|
+
api_key?: never;
|
|
15027
|
+
} | {
|
|
15028
|
+
console_session: never[];
|
|
15029
|
+
pat_with_workspace?: never;
|
|
15030
|
+
api_key?: never;
|
|
15031
|
+
} | {
|
|
15032
|
+
api_key: never[];
|
|
15033
|
+
pat_with_workspace?: never;
|
|
15034
|
+
console_session?: never;
|
|
15035
|
+
})[];
|
|
15036
|
+
summary: string;
|
|
15037
|
+
tags: string[];
|
|
15038
|
+
'x-fern-sdk-group-name': string[];
|
|
15039
|
+
'x-fern-sdk-method-name': string;
|
|
15040
|
+
};
|
|
15041
|
+
};
|
|
14980
15042
|
'/user_identities/enrollment_automations/get': {
|
|
14981
15043
|
post: {
|
|
14982
15044
|
operationId: string;
|
|
@@ -16036,6 +16098,165 @@ declare const _default: {
|
|
|
16036
16098
|
'x-fern-sdk-method-name': string;
|
|
16037
16099
|
};
|
|
16038
16100
|
};
|
|
16101
|
+
'/user_identities/update': {
|
|
16102
|
+
patch: {
|
|
16103
|
+
operationId: string;
|
|
16104
|
+
requestBody: {
|
|
16105
|
+
content: {
|
|
16106
|
+
'application/json': {
|
|
16107
|
+
schema: {
|
|
16108
|
+
properties: {
|
|
16109
|
+
email_address: {
|
|
16110
|
+
format: string;
|
|
16111
|
+
nullable: boolean;
|
|
16112
|
+
type: string;
|
|
16113
|
+
};
|
|
16114
|
+
full_name: {
|
|
16115
|
+
minLength: number;
|
|
16116
|
+
nullable: boolean;
|
|
16117
|
+
type: string;
|
|
16118
|
+
};
|
|
16119
|
+
phone_number: {
|
|
16120
|
+
nullable: boolean;
|
|
16121
|
+
type: string;
|
|
16122
|
+
};
|
|
16123
|
+
user_identity_id: {
|
|
16124
|
+
format: string;
|
|
16125
|
+
type: string;
|
|
16126
|
+
};
|
|
16127
|
+
user_identity_key: {
|
|
16128
|
+
minLength: number;
|
|
16129
|
+
nullable: boolean;
|
|
16130
|
+
type: string;
|
|
16131
|
+
};
|
|
16132
|
+
};
|
|
16133
|
+
required: string[];
|
|
16134
|
+
type: string;
|
|
16135
|
+
};
|
|
16136
|
+
};
|
|
16137
|
+
};
|
|
16138
|
+
};
|
|
16139
|
+
responses: {
|
|
16140
|
+
200: {
|
|
16141
|
+
content: {
|
|
16142
|
+
'application/json': {
|
|
16143
|
+
schema: {
|
|
16144
|
+
properties: {
|
|
16145
|
+
ok: {
|
|
16146
|
+
type: string;
|
|
16147
|
+
};
|
|
16148
|
+
};
|
|
16149
|
+
required: string[];
|
|
16150
|
+
type: string;
|
|
16151
|
+
};
|
|
16152
|
+
};
|
|
16153
|
+
};
|
|
16154
|
+
description: string;
|
|
16155
|
+
};
|
|
16156
|
+
400: {
|
|
16157
|
+
description: string;
|
|
16158
|
+
};
|
|
16159
|
+
401: {
|
|
16160
|
+
description: string;
|
|
16161
|
+
};
|
|
16162
|
+
};
|
|
16163
|
+
security: ({
|
|
16164
|
+
pat_with_workspace: never[];
|
|
16165
|
+
console_session?: never;
|
|
16166
|
+
api_key?: never;
|
|
16167
|
+
} | {
|
|
16168
|
+
console_session: never[];
|
|
16169
|
+
pat_with_workspace?: never;
|
|
16170
|
+
api_key?: never;
|
|
16171
|
+
} | {
|
|
16172
|
+
api_key: never[];
|
|
16173
|
+
pat_with_workspace?: never;
|
|
16174
|
+
console_session?: never;
|
|
16175
|
+
})[];
|
|
16176
|
+
summary: string;
|
|
16177
|
+
tags: string[];
|
|
16178
|
+
'x-fern-ignore': boolean;
|
|
16179
|
+
};
|
|
16180
|
+
post: {
|
|
16181
|
+
operationId: string;
|
|
16182
|
+
requestBody: {
|
|
16183
|
+
content: {
|
|
16184
|
+
'application/json': {
|
|
16185
|
+
schema: {
|
|
16186
|
+
properties: {
|
|
16187
|
+
email_address: {
|
|
16188
|
+
format: string;
|
|
16189
|
+
nullable: boolean;
|
|
16190
|
+
type: string;
|
|
16191
|
+
};
|
|
16192
|
+
full_name: {
|
|
16193
|
+
minLength: number;
|
|
16194
|
+
nullable: boolean;
|
|
16195
|
+
type: string;
|
|
16196
|
+
};
|
|
16197
|
+
phone_number: {
|
|
16198
|
+
nullable: boolean;
|
|
16199
|
+
type: string;
|
|
16200
|
+
};
|
|
16201
|
+
user_identity_id: {
|
|
16202
|
+
format: string;
|
|
16203
|
+
type: string;
|
|
16204
|
+
};
|
|
16205
|
+
user_identity_key: {
|
|
16206
|
+
minLength: number;
|
|
16207
|
+
nullable: boolean;
|
|
16208
|
+
type: string;
|
|
16209
|
+
};
|
|
16210
|
+
};
|
|
16211
|
+
required: string[];
|
|
16212
|
+
type: string;
|
|
16213
|
+
};
|
|
16214
|
+
};
|
|
16215
|
+
};
|
|
16216
|
+
};
|
|
16217
|
+
responses: {
|
|
16218
|
+
200: {
|
|
16219
|
+
content: {
|
|
16220
|
+
'application/json': {
|
|
16221
|
+
schema: {
|
|
16222
|
+
properties: {
|
|
16223
|
+
ok: {
|
|
16224
|
+
type: string;
|
|
16225
|
+
};
|
|
16226
|
+
};
|
|
16227
|
+
required: string[];
|
|
16228
|
+
type: string;
|
|
16229
|
+
};
|
|
16230
|
+
};
|
|
16231
|
+
};
|
|
16232
|
+
description: string;
|
|
16233
|
+
};
|
|
16234
|
+
400: {
|
|
16235
|
+
description: string;
|
|
16236
|
+
};
|
|
16237
|
+
401: {
|
|
16238
|
+
description: string;
|
|
16239
|
+
};
|
|
16240
|
+
};
|
|
16241
|
+
security: ({
|
|
16242
|
+
pat_with_workspace: never[];
|
|
16243
|
+
console_session?: never;
|
|
16244
|
+
api_key?: never;
|
|
16245
|
+
} | {
|
|
16246
|
+
console_session: never[];
|
|
16247
|
+
pat_with_workspace?: never;
|
|
16248
|
+
api_key?: never;
|
|
16249
|
+
} | {
|
|
16250
|
+
api_key: never[];
|
|
16251
|
+
pat_with_workspace?: never;
|
|
16252
|
+
console_session?: never;
|
|
16253
|
+
})[];
|
|
16254
|
+
summary: string;
|
|
16255
|
+
tags: string[];
|
|
16256
|
+
'x-fern-sdk-group-name': string[];
|
|
16257
|
+
'x-fern-sdk-method-name': string;
|
|
16258
|
+
};
|
|
16259
|
+
};
|
|
16039
16260
|
'/webhooks/create': {
|
|
16040
16261
|
post: {
|
|
16041
16262
|
operationId: string;
|
|
@@ -23704,6 +23925,17 @@ interface Routes {
|
|
|
23704
23925
|
formData: {};
|
|
23705
23926
|
jsonResponse: {};
|
|
23706
23927
|
};
|
|
23928
|
+
'/user_identities/enrollment_automations/delete': {
|
|
23929
|
+
route: '/user_identities/enrollment_automations/delete';
|
|
23930
|
+
method: 'DELETE' | 'POST';
|
|
23931
|
+
queryParams: {};
|
|
23932
|
+
jsonBody: {};
|
|
23933
|
+
commonParams: {
|
|
23934
|
+
enrollment_automation_id: string;
|
|
23935
|
+
};
|
|
23936
|
+
formData: {};
|
|
23937
|
+
jsonResponse: {};
|
|
23938
|
+
};
|
|
23707
23939
|
'/user_identities/enrollment_automations/get': {
|
|
23708
23940
|
route: '/user_identities/enrollment_automations/get';
|
|
23709
23941
|
method: 'GET' | 'POST';
|
|
@@ -24385,6 +24617,21 @@ interface Routes {
|
|
|
24385
24617
|
formData: {};
|
|
24386
24618
|
jsonResponse: {};
|
|
24387
24619
|
};
|
|
24620
|
+
'/user_identities/update': {
|
|
24621
|
+
route: '/user_identities/update';
|
|
24622
|
+
method: 'PATCH' | 'POST';
|
|
24623
|
+
queryParams: {};
|
|
24624
|
+
jsonBody: {
|
|
24625
|
+
user_identity_id: string;
|
|
24626
|
+
user_identity_key?: (string | null) | undefined;
|
|
24627
|
+
email_address?: (string | null) | undefined;
|
|
24628
|
+
phone_number?: (string | null) | undefined;
|
|
24629
|
+
full_name?: (string | null) | undefined;
|
|
24630
|
+
};
|
|
24631
|
+
commonParams: {};
|
|
24632
|
+
formData: {};
|
|
24633
|
+
jsonResponse: {};
|
|
24634
|
+
};
|
|
24388
24635
|
'/webhooks/create': {
|
|
24389
24636
|
route: '/webhooks/create';
|
|
24390
24637
|
method: 'POST';
|
|
@@ -14903,6 +14903,68 @@ declare const _default: {
|
|
|
14903
14903
|
'x-fern-sdk-method-name': string;
|
|
14904
14904
|
};
|
|
14905
14905
|
};
|
|
14906
|
+
'/user_identities/enrollment_automations/delete': {
|
|
14907
|
+
post: {
|
|
14908
|
+
operationId: string;
|
|
14909
|
+
requestBody: {
|
|
14910
|
+
content: {
|
|
14911
|
+
'application/json': {
|
|
14912
|
+
schema: {
|
|
14913
|
+
properties: {
|
|
14914
|
+
enrollment_automation_id: {
|
|
14915
|
+
format: string;
|
|
14916
|
+
type: string;
|
|
14917
|
+
};
|
|
14918
|
+
};
|
|
14919
|
+
required: string[];
|
|
14920
|
+
type: string;
|
|
14921
|
+
};
|
|
14922
|
+
};
|
|
14923
|
+
};
|
|
14924
|
+
};
|
|
14925
|
+
responses: {
|
|
14926
|
+
200: {
|
|
14927
|
+
content: {
|
|
14928
|
+
'application/json': {
|
|
14929
|
+
schema: {
|
|
14930
|
+
properties: {
|
|
14931
|
+
ok: {
|
|
14932
|
+
type: string;
|
|
14933
|
+
};
|
|
14934
|
+
};
|
|
14935
|
+
required: string[];
|
|
14936
|
+
type: string;
|
|
14937
|
+
};
|
|
14938
|
+
};
|
|
14939
|
+
};
|
|
14940
|
+
description: string;
|
|
14941
|
+
};
|
|
14942
|
+
400: {
|
|
14943
|
+
description: string;
|
|
14944
|
+
};
|
|
14945
|
+
401: {
|
|
14946
|
+
description: string;
|
|
14947
|
+
};
|
|
14948
|
+
};
|
|
14949
|
+
security: ({
|
|
14950
|
+
pat_with_workspace: never[];
|
|
14951
|
+
console_session?: never;
|
|
14952
|
+
api_key?: never;
|
|
14953
|
+
} | {
|
|
14954
|
+
console_session: never[];
|
|
14955
|
+
pat_with_workspace?: never;
|
|
14956
|
+
api_key?: never;
|
|
14957
|
+
} | {
|
|
14958
|
+
api_key: never[];
|
|
14959
|
+
pat_with_workspace?: never;
|
|
14960
|
+
console_session?: never;
|
|
14961
|
+
})[];
|
|
14962
|
+
summary: string;
|
|
14963
|
+
tags: string[];
|
|
14964
|
+
'x-fern-sdk-group-name': string[];
|
|
14965
|
+
'x-fern-sdk-method-name': string;
|
|
14966
|
+
};
|
|
14967
|
+
};
|
|
14906
14968
|
'/user_identities/enrollment_automations/get': {
|
|
14907
14969
|
post: {
|
|
14908
14970
|
operationId: string;
|
|
@@ -15962,6 +16024,165 @@ declare const _default: {
|
|
|
15962
16024
|
'x-fern-sdk-method-name': string;
|
|
15963
16025
|
};
|
|
15964
16026
|
};
|
|
16027
|
+
'/user_identities/update': {
|
|
16028
|
+
patch: {
|
|
16029
|
+
operationId: string;
|
|
16030
|
+
requestBody: {
|
|
16031
|
+
content: {
|
|
16032
|
+
'application/json': {
|
|
16033
|
+
schema: {
|
|
16034
|
+
properties: {
|
|
16035
|
+
email_address: {
|
|
16036
|
+
format: string;
|
|
16037
|
+
nullable: boolean;
|
|
16038
|
+
type: string;
|
|
16039
|
+
};
|
|
16040
|
+
full_name: {
|
|
16041
|
+
minLength: number;
|
|
16042
|
+
nullable: boolean;
|
|
16043
|
+
type: string;
|
|
16044
|
+
};
|
|
16045
|
+
phone_number: {
|
|
16046
|
+
nullable: boolean;
|
|
16047
|
+
type: string;
|
|
16048
|
+
};
|
|
16049
|
+
user_identity_id: {
|
|
16050
|
+
format: string;
|
|
16051
|
+
type: string;
|
|
16052
|
+
};
|
|
16053
|
+
user_identity_key: {
|
|
16054
|
+
minLength: number;
|
|
16055
|
+
nullable: boolean;
|
|
16056
|
+
type: string;
|
|
16057
|
+
};
|
|
16058
|
+
};
|
|
16059
|
+
required: string[];
|
|
16060
|
+
type: string;
|
|
16061
|
+
};
|
|
16062
|
+
};
|
|
16063
|
+
};
|
|
16064
|
+
};
|
|
16065
|
+
responses: {
|
|
16066
|
+
200: {
|
|
16067
|
+
content: {
|
|
16068
|
+
'application/json': {
|
|
16069
|
+
schema: {
|
|
16070
|
+
properties: {
|
|
16071
|
+
ok: {
|
|
16072
|
+
type: string;
|
|
16073
|
+
};
|
|
16074
|
+
};
|
|
16075
|
+
required: string[];
|
|
16076
|
+
type: string;
|
|
16077
|
+
};
|
|
16078
|
+
};
|
|
16079
|
+
};
|
|
16080
|
+
description: string;
|
|
16081
|
+
};
|
|
16082
|
+
400: {
|
|
16083
|
+
description: string;
|
|
16084
|
+
};
|
|
16085
|
+
401: {
|
|
16086
|
+
description: string;
|
|
16087
|
+
};
|
|
16088
|
+
};
|
|
16089
|
+
security: ({
|
|
16090
|
+
pat_with_workspace: never[];
|
|
16091
|
+
console_session?: never;
|
|
16092
|
+
api_key?: never;
|
|
16093
|
+
} | {
|
|
16094
|
+
console_session: never[];
|
|
16095
|
+
pat_with_workspace?: never;
|
|
16096
|
+
api_key?: never;
|
|
16097
|
+
} | {
|
|
16098
|
+
api_key: never[];
|
|
16099
|
+
pat_with_workspace?: never;
|
|
16100
|
+
console_session?: never;
|
|
16101
|
+
})[];
|
|
16102
|
+
summary: string;
|
|
16103
|
+
tags: string[];
|
|
16104
|
+
'x-fern-ignore': boolean;
|
|
16105
|
+
};
|
|
16106
|
+
post: {
|
|
16107
|
+
operationId: string;
|
|
16108
|
+
requestBody: {
|
|
16109
|
+
content: {
|
|
16110
|
+
'application/json': {
|
|
16111
|
+
schema: {
|
|
16112
|
+
properties: {
|
|
16113
|
+
email_address: {
|
|
16114
|
+
format: string;
|
|
16115
|
+
nullable: boolean;
|
|
16116
|
+
type: string;
|
|
16117
|
+
};
|
|
16118
|
+
full_name: {
|
|
16119
|
+
minLength: number;
|
|
16120
|
+
nullable: boolean;
|
|
16121
|
+
type: string;
|
|
16122
|
+
};
|
|
16123
|
+
phone_number: {
|
|
16124
|
+
nullable: boolean;
|
|
16125
|
+
type: string;
|
|
16126
|
+
};
|
|
16127
|
+
user_identity_id: {
|
|
16128
|
+
format: string;
|
|
16129
|
+
type: string;
|
|
16130
|
+
};
|
|
16131
|
+
user_identity_key: {
|
|
16132
|
+
minLength: number;
|
|
16133
|
+
nullable: boolean;
|
|
16134
|
+
type: string;
|
|
16135
|
+
};
|
|
16136
|
+
};
|
|
16137
|
+
required: string[];
|
|
16138
|
+
type: string;
|
|
16139
|
+
};
|
|
16140
|
+
};
|
|
16141
|
+
};
|
|
16142
|
+
};
|
|
16143
|
+
responses: {
|
|
16144
|
+
200: {
|
|
16145
|
+
content: {
|
|
16146
|
+
'application/json': {
|
|
16147
|
+
schema: {
|
|
16148
|
+
properties: {
|
|
16149
|
+
ok: {
|
|
16150
|
+
type: string;
|
|
16151
|
+
};
|
|
16152
|
+
};
|
|
16153
|
+
required: string[];
|
|
16154
|
+
type: string;
|
|
16155
|
+
};
|
|
16156
|
+
};
|
|
16157
|
+
};
|
|
16158
|
+
description: string;
|
|
16159
|
+
};
|
|
16160
|
+
400: {
|
|
16161
|
+
description: string;
|
|
16162
|
+
};
|
|
16163
|
+
401: {
|
|
16164
|
+
description: string;
|
|
16165
|
+
};
|
|
16166
|
+
};
|
|
16167
|
+
security: ({
|
|
16168
|
+
pat_with_workspace: never[];
|
|
16169
|
+
console_session?: never;
|
|
16170
|
+
api_key?: never;
|
|
16171
|
+
} | {
|
|
16172
|
+
console_session: never[];
|
|
16173
|
+
pat_with_workspace?: never;
|
|
16174
|
+
api_key?: never;
|
|
16175
|
+
} | {
|
|
16176
|
+
api_key: never[];
|
|
16177
|
+
pat_with_workspace?: never;
|
|
16178
|
+
console_session?: never;
|
|
16179
|
+
})[];
|
|
16180
|
+
summary: string;
|
|
16181
|
+
tags: string[];
|
|
16182
|
+
'x-fern-sdk-group-name': string[];
|
|
16183
|
+
'x-fern-sdk-method-name': string;
|
|
16184
|
+
};
|
|
16185
|
+
};
|
|
15965
16186
|
'/webhooks/create': {
|
|
15966
16187
|
post: {
|
|
15967
16188
|
operationId: string;
|
|
@@ -11060,6 +11060,49 @@ export default {
|
|
|
11060
11060
|
'x-fern-sdk-method-name': 'delete',
|
|
11061
11061
|
},
|
|
11062
11062
|
},
|
|
11063
|
+
'/user_identities/enrollment_automations/delete': {
|
|
11064
|
+
post: {
|
|
11065
|
+
operationId: 'userIdentitiesEnrollmentAutomationsDeletePost',
|
|
11066
|
+
requestBody: {
|
|
11067
|
+
content: {
|
|
11068
|
+
'application/json': {
|
|
11069
|
+
schema: {
|
|
11070
|
+
properties: {
|
|
11071
|
+
enrollment_automation_id: { format: 'uuid', type: 'string' },
|
|
11072
|
+
},
|
|
11073
|
+
required: ['enrollment_automation_id'],
|
|
11074
|
+
type: 'object',
|
|
11075
|
+
},
|
|
11076
|
+
},
|
|
11077
|
+
},
|
|
11078
|
+
},
|
|
11079
|
+
responses: {
|
|
11080
|
+
200: {
|
|
11081
|
+
content: {
|
|
11082
|
+
'application/json': {
|
|
11083
|
+
schema: {
|
|
11084
|
+
properties: { ok: { type: 'boolean' } },
|
|
11085
|
+
required: ['ok'],
|
|
11086
|
+
type: 'object',
|
|
11087
|
+
},
|
|
11088
|
+
},
|
|
11089
|
+
},
|
|
11090
|
+
description: 'OK',
|
|
11091
|
+
},
|
|
11092
|
+
400: { description: 'Bad Request' },
|
|
11093
|
+
401: { description: 'Unauthorized' },
|
|
11094
|
+
},
|
|
11095
|
+
security: [
|
|
11096
|
+
{ pat_with_workspace: [] },
|
|
11097
|
+
{ console_session: [] },
|
|
11098
|
+
{ api_key: [] },
|
|
11099
|
+
],
|
|
11100
|
+
summary: '/user_identities/enrollment_automations/delete',
|
|
11101
|
+
tags: ['/user_identities'],
|
|
11102
|
+
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
11103
|
+
'x-fern-sdk-method-name': 'delete',
|
|
11104
|
+
},
|
|
11105
|
+
},
|
|
11063
11106
|
'/user_identities/enrollment_automations/get': {
|
|
11064
11107
|
post: {
|
|
11065
11108
|
operationId: 'userIdentitiesEnrollmentAutomationsGetPost',
|
|
@@ -11797,6 +11840,113 @@ export default {
|
|
|
11797
11840
|
'x-fern-sdk-method-name': 'revoke_access_to_device',
|
|
11798
11841
|
},
|
|
11799
11842
|
},
|
|
11843
|
+
'/user_identities/update': {
|
|
11844
|
+
patch: {
|
|
11845
|
+
operationId: 'userIdentitiesUpdatePatch',
|
|
11846
|
+
requestBody: {
|
|
11847
|
+
content: {
|
|
11848
|
+
'application/json': {
|
|
11849
|
+
schema: {
|
|
11850
|
+
properties: {
|
|
11851
|
+
email_address: {
|
|
11852
|
+
format: 'email',
|
|
11853
|
+
nullable: true,
|
|
11854
|
+
type: 'string',
|
|
11855
|
+
},
|
|
11856
|
+
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
11857
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11858
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11859
|
+
user_identity_key: {
|
|
11860
|
+
minLength: 1,
|
|
11861
|
+
nullable: true,
|
|
11862
|
+
type: 'string',
|
|
11863
|
+
},
|
|
11864
|
+
},
|
|
11865
|
+
required: ['user_identity_id'],
|
|
11866
|
+
type: 'object',
|
|
11867
|
+
},
|
|
11868
|
+
},
|
|
11869
|
+
},
|
|
11870
|
+
},
|
|
11871
|
+
responses: {
|
|
11872
|
+
200: {
|
|
11873
|
+
content: {
|
|
11874
|
+
'application/json': {
|
|
11875
|
+
schema: {
|
|
11876
|
+
properties: { ok: { type: 'boolean' } },
|
|
11877
|
+
required: ['ok'],
|
|
11878
|
+
type: 'object',
|
|
11879
|
+
},
|
|
11880
|
+
},
|
|
11881
|
+
},
|
|
11882
|
+
description: 'OK',
|
|
11883
|
+
},
|
|
11884
|
+
400: { description: 'Bad Request' },
|
|
11885
|
+
401: { description: 'Unauthorized' },
|
|
11886
|
+
},
|
|
11887
|
+
security: [
|
|
11888
|
+
{ pat_with_workspace: [] },
|
|
11889
|
+
{ console_session: [] },
|
|
11890
|
+
{ api_key: [] },
|
|
11891
|
+
],
|
|
11892
|
+
summary: '/user_identities/update',
|
|
11893
|
+
tags: ['/user_identities'],
|
|
11894
|
+
'x-fern-ignore': true,
|
|
11895
|
+
},
|
|
11896
|
+
post: {
|
|
11897
|
+
operationId: 'userIdentitiesUpdatePost',
|
|
11898
|
+
requestBody: {
|
|
11899
|
+
content: {
|
|
11900
|
+
'application/json': {
|
|
11901
|
+
schema: {
|
|
11902
|
+
properties: {
|
|
11903
|
+
email_address: {
|
|
11904
|
+
format: 'email',
|
|
11905
|
+
nullable: true,
|
|
11906
|
+
type: 'string',
|
|
11907
|
+
},
|
|
11908
|
+
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
11909
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11910
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11911
|
+
user_identity_key: {
|
|
11912
|
+
minLength: 1,
|
|
11913
|
+
nullable: true,
|
|
11914
|
+
type: 'string',
|
|
11915
|
+
},
|
|
11916
|
+
},
|
|
11917
|
+
required: ['user_identity_id'],
|
|
11918
|
+
type: 'object',
|
|
11919
|
+
},
|
|
11920
|
+
},
|
|
11921
|
+
},
|
|
11922
|
+
},
|
|
11923
|
+
responses: {
|
|
11924
|
+
200: {
|
|
11925
|
+
content: {
|
|
11926
|
+
'application/json': {
|
|
11927
|
+
schema: {
|
|
11928
|
+
properties: { ok: { type: 'boolean' } },
|
|
11929
|
+
required: ['ok'],
|
|
11930
|
+
type: 'object',
|
|
11931
|
+
},
|
|
11932
|
+
},
|
|
11933
|
+
},
|
|
11934
|
+
description: 'OK',
|
|
11935
|
+
},
|
|
11936
|
+
400: { description: 'Bad Request' },
|
|
11937
|
+
401: { description: 'Unauthorized' },
|
|
11938
|
+
},
|
|
11939
|
+
security: [
|
|
11940
|
+
{ pat_with_workspace: [] },
|
|
11941
|
+
{ console_session: [] },
|
|
11942
|
+
{ api_key: [] },
|
|
11943
|
+
],
|
|
11944
|
+
summary: '/user_identities/update',
|
|
11945
|
+
tags: ['/user_identities'],
|
|
11946
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
11947
|
+
'x-fern-sdk-method-name': 'update',
|
|
11948
|
+
},
|
|
11949
|
+
},
|
|
11800
11950
|
'/webhooks/create': {
|
|
11801
11951
|
post: {
|
|
11802
11952
|
operationId: 'webhooksCreatePost',
|