@seamapi/types 1.32.0 → 1.33.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 +497 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3602 -2340
- package/lib/seam/connect/openapi.d.ts +750 -0
- package/lib/seam/connect/openapi.js +497 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +512 -0
- package/lib/seam/connect/unstable/models/index.d.ts +1 -0
- package/lib/seam/connect/unstable/models/index.js +1 -0
- package/lib/seam/connect/unstable/models/index.js.map +1 -1
- package/lib/seam/connect/unstable/models/user-identity.d.ts +21 -0
- package/lib/seam/connect/unstable/models/user-identity.js +9 -0
- package/lib/seam/connect/unstable/models/user-identity.js.map +1 -0
- package/lib/seam/connect/unstable/schemas.d.ts +1 -1
- package/lib/seam/connect/unstable/schemas.js +1 -1
- package/lib/seam/connect/unstable/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +497 -0
- package/src/lib/seam/connect/route-types.ts +703 -0
- package/src/lib/seam/connect/unstable/models/index.ts +1 -0
- package/src/lib/seam/connect/unstable/models/user-identity.ts +11 -0
- package/src/lib/seam/connect/unstable/schemas.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -7921,6 +7921,503 @@ var openapi_default = {
|
|
|
7921
7921
|
"x-fern-sdk-method-name": "update"
|
|
7922
7922
|
}
|
|
7923
7923
|
},
|
|
7924
|
+
"/user_identities/add_acs_user": {
|
|
7925
|
+
post: {
|
|
7926
|
+
operationId: "userIdentitiesAddAcsUserPost",
|
|
7927
|
+
requestBody: {
|
|
7928
|
+
content: {
|
|
7929
|
+
"application/json": {
|
|
7930
|
+
schema: {
|
|
7931
|
+
properties: {
|
|
7932
|
+
acs_user_id: { format: "uuid", type: "string" },
|
|
7933
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
7934
|
+
},
|
|
7935
|
+
required: ["user_identity_id", "acs_user_id"],
|
|
7936
|
+
type: "object"
|
|
7937
|
+
}
|
|
7938
|
+
}
|
|
7939
|
+
}
|
|
7940
|
+
},
|
|
7941
|
+
responses: {
|
|
7942
|
+
200: {
|
|
7943
|
+
content: {
|
|
7944
|
+
"application/json": {
|
|
7945
|
+
schema: {
|
|
7946
|
+
properties: { ok: { type: "boolean" } },
|
|
7947
|
+
required: ["ok"],
|
|
7948
|
+
type: "object"
|
|
7949
|
+
}
|
|
7950
|
+
}
|
|
7951
|
+
},
|
|
7952
|
+
description: "OK"
|
|
7953
|
+
},
|
|
7954
|
+
400: { description: "Bad Request" },
|
|
7955
|
+
401: { description: "Unauthorized" }
|
|
7956
|
+
},
|
|
7957
|
+
security: [
|
|
7958
|
+
{ access_token: [], seam_workspace: [] },
|
|
7959
|
+
{ seam_client_session_token: [] },
|
|
7960
|
+
{ client_session_token: [] }
|
|
7961
|
+
],
|
|
7962
|
+
summary: "/user_identities/add_acs_user",
|
|
7963
|
+
tags: [],
|
|
7964
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
7965
|
+
"x-fern-sdk-method-name": "add_acs_user"
|
|
7966
|
+
},
|
|
7967
|
+
put: {
|
|
7968
|
+
operationId: "userIdentitiesAddAcsUserPut",
|
|
7969
|
+
requestBody: {
|
|
7970
|
+
content: {
|
|
7971
|
+
"application/json": {
|
|
7972
|
+
schema: {
|
|
7973
|
+
properties: {
|
|
7974
|
+
acs_user_id: { format: "uuid", type: "string" },
|
|
7975
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
7976
|
+
},
|
|
7977
|
+
required: ["user_identity_id", "acs_user_id"],
|
|
7978
|
+
type: "object"
|
|
7979
|
+
}
|
|
7980
|
+
}
|
|
7981
|
+
}
|
|
7982
|
+
},
|
|
7983
|
+
responses: {
|
|
7984
|
+
200: {
|
|
7985
|
+
content: {
|
|
7986
|
+
"application/json": {
|
|
7987
|
+
schema: {
|
|
7988
|
+
properties: { ok: { type: "boolean" } },
|
|
7989
|
+
required: ["ok"],
|
|
7990
|
+
type: "object"
|
|
7991
|
+
}
|
|
7992
|
+
}
|
|
7993
|
+
},
|
|
7994
|
+
description: "OK"
|
|
7995
|
+
},
|
|
7996
|
+
400: { description: "Bad Request" },
|
|
7997
|
+
401: { description: "Unauthorized" }
|
|
7998
|
+
},
|
|
7999
|
+
security: [
|
|
8000
|
+
{ access_token: [], seam_workspace: [] },
|
|
8001
|
+
{ seam_client_session_token: [] },
|
|
8002
|
+
{ client_session_token: [] }
|
|
8003
|
+
],
|
|
8004
|
+
summary: "/user_identities/add_acs_user",
|
|
8005
|
+
tags: [],
|
|
8006
|
+
"x-fern-ignore": true
|
|
8007
|
+
}
|
|
8008
|
+
},
|
|
8009
|
+
"/user_identities/create": {
|
|
8010
|
+
post: {
|
|
8011
|
+
operationId: "userIdentitiesCreatePost",
|
|
8012
|
+
requestBody: {
|
|
8013
|
+
content: {
|
|
8014
|
+
"application/json": {
|
|
8015
|
+
schema: {
|
|
8016
|
+
properties: {
|
|
8017
|
+
email_address: {
|
|
8018
|
+
format: "email",
|
|
8019
|
+
nullable: true,
|
|
8020
|
+
type: "string"
|
|
8021
|
+
},
|
|
8022
|
+
user_identity_key: { nullable: true, type: "string" }
|
|
8023
|
+
},
|
|
8024
|
+
type: "object"
|
|
8025
|
+
}
|
|
8026
|
+
}
|
|
8027
|
+
}
|
|
8028
|
+
},
|
|
8029
|
+
responses: {
|
|
8030
|
+
200: {
|
|
8031
|
+
content: {
|
|
8032
|
+
"application/json": {
|
|
8033
|
+
schema: {
|
|
8034
|
+
properties: {
|
|
8035
|
+
ok: { type: "boolean" },
|
|
8036
|
+
user_identity: {
|
|
8037
|
+
properties: {
|
|
8038
|
+
created_at: { format: "date-time", type: "string" },
|
|
8039
|
+
email_address: {
|
|
8040
|
+
format: "email",
|
|
8041
|
+
nullable: true,
|
|
8042
|
+
type: "string"
|
|
8043
|
+
},
|
|
8044
|
+
user_identity_id: { format: "uuid", type: "string" },
|
|
8045
|
+
user_identity_key: { nullable: true, type: "string" },
|
|
8046
|
+
workspace_id: { format: "uuid", type: "string" }
|
|
8047
|
+
},
|
|
8048
|
+
required: [
|
|
8049
|
+
"user_identity_id",
|
|
8050
|
+
"created_at",
|
|
8051
|
+
"workspace_id"
|
|
8052
|
+
],
|
|
8053
|
+
type: "object"
|
|
8054
|
+
}
|
|
8055
|
+
},
|
|
8056
|
+
required: ["user_identity", "ok"],
|
|
8057
|
+
type: "object"
|
|
8058
|
+
}
|
|
8059
|
+
}
|
|
8060
|
+
},
|
|
8061
|
+
description: "OK"
|
|
8062
|
+
},
|
|
8063
|
+
400: { description: "Bad Request" },
|
|
8064
|
+
401: { description: "Unauthorized" }
|
|
8065
|
+
},
|
|
8066
|
+
security: [
|
|
8067
|
+
{ access_token: [], seam_workspace: [] },
|
|
8068
|
+
{ seam_client_session_token: [] },
|
|
8069
|
+
{ client_session_token: [] }
|
|
8070
|
+
],
|
|
8071
|
+
summary: "/user_identities/create",
|
|
8072
|
+
tags: [],
|
|
8073
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
8074
|
+
"x-fern-sdk-method-name": "create"
|
|
8075
|
+
}
|
|
8076
|
+
},
|
|
8077
|
+
"/user_identities/get": {
|
|
8078
|
+
post: {
|
|
8079
|
+
operationId: "userIdentitiesGetPost",
|
|
8080
|
+
requestBody: {
|
|
8081
|
+
content: {
|
|
8082
|
+
"application/json": {
|
|
8083
|
+
schema: {
|
|
8084
|
+
oneOf: [
|
|
8085
|
+
{
|
|
8086
|
+
properties: {
|
|
8087
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
8088
|
+
},
|
|
8089
|
+
required: ["user_identity_id"],
|
|
8090
|
+
type: "object"
|
|
8091
|
+
},
|
|
8092
|
+
{
|
|
8093
|
+
properties: { user_identity_key: { type: "string" } },
|
|
8094
|
+
required: ["user_identity_key"],
|
|
8095
|
+
type: "object"
|
|
8096
|
+
}
|
|
8097
|
+
]
|
|
8098
|
+
}
|
|
8099
|
+
}
|
|
8100
|
+
}
|
|
8101
|
+
},
|
|
8102
|
+
responses: {
|
|
8103
|
+
200: {
|
|
8104
|
+
content: {
|
|
8105
|
+
"application/json": {
|
|
8106
|
+
schema: {
|
|
8107
|
+
properties: {
|
|
8108
|
+
ok: { type: "boolean" },
|
|
8109
|
+
user_identity: {
|
|
8110
|
+
properties: {
|
|
8111
|
+
created_at: { format: "date-time", type: "string" },
|
|
8112
|
+
email_address: {
|
|
8113
|
+
format: "email",
|
|
8114
|
+
nullable: true,
|
|
8115
|
+
type: "string"
|
|
8116
|
+
},
|
|
8117
|
+
user_identity_id: { format: "uuid", type: "string" },
|
|
8118
|
+
user_identity_key: { nullable: true, type: "string" },
|
|
8119
|
+
workspace_id: { format: "uuid", type: "string" }
|
|
8120
|
+
},
|
|
8121
|
+
required: [
|
|
8122
|
+
"user_identity_id",
|
|
8123
|
+
"created_at",
|
|
8124
|
+
"workspace_id"
|
|
8125
|
+
],
|
|
8126
|
+
type: "object"
|
|
8127
|
+
}
|
|
8128
|
+
},
|
|
8129
|
+
required: ["user_identity", "ok"],
|
|
8130
|
+
type: "object"
|
|
8131
|
+
}
|
|
8132
|
+
}
|
|
8133
|
+
},
|
|
8134
|
+
description: "OK"
|
|
8135
|
+
},
|
|
8136
|
+
400: { description: "Bad Request" },
|
|
8137
|
+
401: { description: "Unauthorized" }
|
|
8138
|
+
},
|
|
8139
|
+
security: [
|
|
8140
|
+
{ access_token: [], seam_workspace: [] },
|
|
8141
|
+
{ seam_client_session_token: [] },
|
|
8142
|
+
{ client_session_token: [] }
|
|
8143
|
+
],
|
|
8144
|
+
summary: "/user_identities/get",
|
|
8145
|
+
tags: [],
|
|
8146
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
8147
|
+
"x-fern-sdk-method-name": "get"
|
|
8148
|
+
}
|
|
8149
|
+
},
|
|
8150
|
+
"/user_identities/grant_access_to_device": {
|
|
8151
|
+
post: {
|
|
8152
|
+
operationId: "userIdentitiesGrantAccessToDevicePost",
|
|
8153
|
+
requestBody: {
|
|
8154
|
+
content: {
|
|
8155
|
+
"application/json": {
|
|
8156
|
+
schema: {
|
|
8157
|
+
properties: {
|
|
8158
|
+
device_id: { format: "uuid", type: "string" },
|
|
8159
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
8160
|
+
},
|
|
8161
|
+
required: ["user_identity_id", "device_id"],
|
|
8162
|
+
type: "object"
|
|
8163
|
+
}
|
|
8164
|
+
}
|
|
8165
|
+
}
|
|
8166
|
+
},
|
|
8167
|
+
responses: {
|
|
8168
|
+
200: {
|
|
8169
|
+
content: {
|
|
8170
|
+
"application/json": {
|
|
8171
|
+
schema: {
|
|
8172
|
+
properties: { ok: { type: "boolean" } },
|
|
8173
|
+
required: ["ok"],
|
|
8174
|
+
type: "object"
|
|
8175
|
+
}
|
|
8176
|
+
}
|
|
8177
|
+
},
|
|
8178
|
+
description: "OK"
|
|
8179
|
+
},
|
|
8180
|
+
400: { description: "Bad Request" },
|
|
8181
|
+
401: { description: "Unauthorized" }
|
|
8182
|
+
},
|
|
8183
|
+
security: [
|
|
8184
|
+
{ access_token: [], seam_workspace: [] },
|
|
8185
|
+
{ seam_client_session_token: [] },
|
|
8186
|
+
{ client_session_token: [] }
|
|
8187
|
+
],
|
|
8188
|
+
summary: "/user_identities/grant_access_to_device",
|
|
8189
|
+
tags: [],
|
|
8190
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
8191
|
+
"x-fern-sdk-method-name": "grant_access_to_device"
|
|
8192
|
+
},
|
|
8193
|
+
put: {
|
|
8194
|
+
operationId: "userIdentitiesGrantAccessToDevicePut",
|
|
8195
|
+
requestBody: {
|
|
8196
|
+
content: {
|
|
8197
|
+
"application/json": {
|
|
8198
|
+
schema: {
|
|
8199
|
+
properties: {
|
|
8200
|
+
device_id: { format: "uuid", type: "string" },
|
|
8201
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
8202
|
+
},
|
|
8203
|
+
required: ["user_identity_id", "device_id"],
|
|
8204
|
+
type: "object"
|
|
8205
|
+
}
|
|
8206
|
+
}
|
|
8207
|
+
}
|
|
8208
|
+
},
|
|
8209
|
+
responses: {
|
|
8210
|
+
200: {
|
|
8211
|
+
content: {
|
|
8212
|
+
"application/json": {
|
|
8213
|
+
schema: {
|
|
8214
|
+
properties: { ok: { type: "boolean" } },
|
|
8215
|
+
required: ["ok"],
|
|
8216
|
+
type: "object"
|
|
8217
|
+
}
|
|
8218
|
+
}
|
|
8219
|
+
},
|
|
8220
|
+
description: "OK"
|
|
8221
|
+
},
|
|
8222
|
+
400: { description: "Bad Request" },
|
|
8223
|
+
401: { description: "Unauthorized" }
|
|
8224
|
+
},
|
|
8225
|
+
security: [
|
|
8226
|
+
{ access_token: [], seam_workspace: [] },
|
|
8227
|
+
{ seam_client_session_token: [] },
|
|
8228
|
+
{ client_session_token: [] }
|
|
8229
|
+
],
|
|
8230
|
+
summary: "/user_identities/grant_access_to_device",
|
|
8231
|
+
tags: [],
|
|
8232
|
+
"x-fern-ignore": true
|
|
8233
|
+
}
|
|
8234
|
+
},
|
|
8235
|
+
"/user_identities/list_accessible_devices": {
|
|
8236
|
+
post: {
|
|
8237
|
+
operationId: "userIdentitiesListAccessibleDevicesPost",
|
|
8238
|
+
requestBody: {
|
|
8239
|
+
content: {
|
|
8240
|
+
"application/json": {
|
|
8241
|
+
schema: {
|
|
8242
|
+
properties: {
|
|
8243
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
8244
|
+
},
|
|
8245
|
+
required: ["user_identity_id"],
|
|
8246
|
+
type: "object"
|
|
8247
|
+
}
|
|
8248
|
+
}
|
|
8249
|
+
}
|
|
8250
|
+
},
|
|
8251
|
+
responses: {
|
|
8252
|
+
200: {
|
|
8253
|
+
content: {
|
|
8254
|
+
"application/json": {
|
|
8255
|
+
schema: {
|
|
8256
|
+
properties: {
|
|
8257
|
+
accessible_devices: {
|
|
8258
|
+
items: { $ref: "#/components/schemas/device" },
|
|
8259
|
+
type: "array"
|
|
8260
|
+
},
|
|
8261
|
+
ok: { type: "boolean" }
|
|
8262
|
+
},
|
|
8263
|
+
required: ["accessible_devices", "ok"],
|
|
8264
|
+
type: "object"
|
|
8265
|
+
}
|
|
8266
|
+
}
|
|
8267
|
+
},
|
|
8268
|
+
description: "OK"
|
|
8269
|
+
},
|
|
8270
|
+
400: { description: "Bad Request" },
|
|
8271
|
+
401: { description: "Unauthorized" }
|
|
8272
|
+
},
|
|
8273
|
+
security: [
|
|
8274
|
+
{ access_token: [], seam_workspace: [] },
|
|
8275
|
+
{ seam_client_session_token: [] },
|
|
8276
|
+
{ client_session_token: [] }
|
|
8277
|
+
],
|
|
8278
|
+
summary: "/user_identities/list_accessible_devices",
|
|
8279
|
+
tags: [],
|
|
8280
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
8281
|
+
"x-fern-sdk-method-name": "list_accessible_devices"
|
|
8282
|
+
}
|
|
8283
|
+
},
|
|
8284
|
+
"/user_identities/list_acs_users": {
|
|
8285
|
+
post: {
|
|
8286
|
+
operationId: "userIdentitiesListAcsUsersPost",
|
|
8287
|
+
requestBody: {
|
|
8288
|
+
content: {
|
|
8289
|
+
"application/json": {
|
|
8290
|
+
schema: {
|
|
8291
|
+
properties: {
|
|
8292
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
8293
|
+
},
|
|
8294
|
+
required: ["user_identity_id"],
|
|
8295
|
+
type: "object"
|
|
8296
|
+
}
|
|
8297
|
+
}
|
|
8298
|
+
}
|
|
8299
|
+
},
|
|
8300
|
+
responses: {
|
|
8301
|
+
200: {
|
|
8302
|
+
content: {
|
|
8303
|
+
"application/json": {
|
|
8304
|
+
schema: {
|
|
8305
|
+
properties: {
|
|
8306
|
+
acs_users: {
|
|
8307
|
+
items: { $ref: "#/components/schemas/acs_user" },
|
|
8308
|
+
type: "array"
|
|
8309
|
+
},
|
|
8310
|
+
ok: { type: "boolean" }
|
|
8311
|
+
},
|
|
8312
|
+
required: ["acs_users", "ok"],
|
|
8313
|
+
type: "object"
|
|
8314
|
+
}
|
|
8315
|
+
}
|
|
8316
|
+
},
|
|
8317
|
+
description: "OK"
|
|
8318
|
+
},
|
|
8319
|
+
400: { description: "Bad Request" },
|
|
8320
|
+
401: { description: "Unauthorized" }
|
|
8321
|
+
},
|
|
8322
|
+
security: [
|
|
8323
|
+
{ access_token: [], seam_workspace: [] },
|
|
8324
|
+
{ seam_client_session_token: [] },
|
|
8325
|
+
{ client_session_token: [] }
|
|
8326
|
+
],
|
|
8327
|
+
summary: "/user_identities/list_acs_users",
|
|
8328
|
+
tags: [],
|
|
8329
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
8330
|
+
"x-fern-sdk-method-name": "list_acs_users"
|
|
8331
|
+
}
|
|
8332
|
+
},
|
|
8333
|
+
"/user_identities/remove_acs_user": {
|
|
8334
|
+
post: {
|
|
8335
|
+
operationId: "userIdentitiesRemoveAcsUserPost",
|
|
8336
|
+
requestBody: {
|
|
8337
|
+
content: {
|
|
8338
|
+
"application/json": {
|
|
8339
|
+
schema: {
|
|
8340
|
+
properties: {
|
|
8341
|
+
acs_user_id: { format: "uuid", type: "string" },
|
|
8342
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
8343
|
+
},
|
|
8344
|
+
required: ["user_identity_id", "acs_user_id"],
|
|
8345
|
+
type: "object"
|
|
8346
|
+
}
|
|
8347
|
+
}
|
|
8348
|
+
}
|
|
8349
|
+
},
|
|
8350
|
+
responses: {
|
|
8351
|
+
200: {
|
|
8352
|
+
content: {
|
|
8353
|
+
"application/json": {
|
|
8354
|
+
schema: {
|
|
8355
|
+
properties: { ok: { type: "boolean" } },
|
|
8356
|
+
required: ["ok"],
|
|
8357
|
+
type: "object"
|
|
8358
|
+
}
|
|
8359
|
+
}
|
|
8360
|
+
},
|
|
8361
|
+
description: "OK"
|
|
8362
|
+
},
|
|
8363
|
+
400: { description: "Bad Request" },
|
|
8364
|
+
401: { description: "Unauthorized" }
|
|
8365
|
+
},
|
|
8366
|
+
security: [
|
|
8367
|
+
{ access_token: [], seam_workspace: [] },
|
|
8368
|
+
{ seam_client_session_token: [] },
|
|
8369
|
+
{ client_session_token: [] }
|
|
8370
|
+
],
|
|
8371
|
+
summary: "/user_identities/remove_acs_user",
|
|
8372
|
+
tags: [],
|
|
8373
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
8374
|
+
"x-fern-sdk-method-name": "remove_acs_user"
|
|
8375
|
+
}
|
|
8376
|
+
},
|
|
8377
|
+
"/user_identities/revoke_access_to_device": {
|
|
8378
|
+
post: {
|
|
8379
|
+
operationId: "userIdentitiesRevokeAccessToDevicePost",
|
|
8380
|
+
requestBody: {
|
|
8381
|
+
content: {
|
|
8382
|
+
"application/json": {
|
|
8383
|
+
schema: {
|
|
8384
|
+
properties: {
|
|
8385
|
+
device_id: { format: "uuid", type: "string" },
|
|
8386
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
8387
|
+
},
|
|
8388
|
+
required: ["user_identity_id", "device_id"],
|
|
8389
|
+
type: "object"
|
|
8390
|
+
}
|
|
8391
|
+
}
|
|
8392
|
+
}
|
|
8393
|
+
},
|
|
8394
|
+
responses: {
|
|
8395
|
+
200: {
|
|
8396
|
+
content: {
|
|
8397
|
+
"application/json": {
|
|
8398
|
+
schema: {
|
|
8399
|
+
properties: { ok: { type: "boolean" } },
|
|
8400
|
+
required: ["ok"],
|
|
8401
|
+
type: "object"
|
|
8402
|
+
}
|
|
8403
|
+
}
|
|
8404
|
+
},
|
|
8405
|
+
description: "OK"
|
|
8406
|
+
},
|
|
8407
|
+
400: { description: "Bad Request" },
|
|
8408
|
+
401: { description: "Unauthorized" }
|
|
8409
|
+
},
|
|
8410
|
+
security: [
|
|
8411
|
+
{ access_token: [], seam_workspace: [] },
|
|
8412
|
+
{ seam_client_session_token: [] },
|
|
8413
|
+
{ client_session_token: [] }
|
|
8414
|
+
],
|
|
8415
|
+
summary: "/user_identities/revoke_access_to_device",
|
|
8416
|
+
tags: [],
|
|
8417
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
8418
|
+
"x-fern-sdk-method-name": "revoke_access_to_device"
|
|
8419
|
+
}
|
|
8420
|
+
},
|
|
7924
8421
|
"/webhooks/create": {
|
|
7925
8422
|
post: {
|
|
7926
8423
|
operationId: "webhooksCreatePost",
|