@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.cjs
CHANGED
|
@@ -11107,6 +11107,49 @@ var openapi_default = {
|
|
|
11107
11107
|
"x-fern-sdk-method-name": "delete"
|
|
11108
11108
|
}
|
|
11109
11109
|
},
|
|
11110
|
+
"/user_identities/enrollment_automations/delete": {
|
|
11111
|
+
post: {
|
|
11112
|
+
operationId: "userIdentitiesEnrollmentAutomationsDeletePost",
|
|
11113
|
+
requestBody: {
|
|
11114
|
+
content: {
|
|
11115
|
+
"application/json": {
|
|
11116
|
+
schema: {
|
|
11117
|
+
properties: {
|
|
11118
|
+
enrollment_automation_id: { format: "uuid", type: "string" }
|
|
11119
|
+
},
|
|
11120
|
+
required: ["enrollment_automation_id"],
|
|
11121
|
+
type: "object"
|
|
11122
|
+
}
|
|
11123
|
+
}
|
|
11124
|
+
}
|
|
11125
|
+
},
|
|
11126
|
+
responses: {
|
|
11127
|
+
200: {
|
|
11128
|
+
content: {
|
|
11129
|
+
"application/json": {
|
|
11130
|
+
schema: {
|
|
11131
|
+
properties: { ok: { type: "boolean" } },
|
|
11132
|
+
required: ["ok"],
|
|
11133
|
+
type: "object"
|
|
11134
|
+
}
|
|
11135
|
+
}
|
|
11136
|
+
},
|
|
11137
|
+
description: "OK"
|
|
11138
|
+
},
|
|
11139
|
+
400: { description: "Bad Request" },
|
|
11140
|
+
401: { description: "Unauthorized" }
|
|
11141
|
+
},
|
|
11142
|
+
security: [
|
|
11143
|
+
{ pat_with_workspace: [] },
|
|
11144
|
+
{ console_session: [] },
|
|
11145
|
+
{ api_key: [] }
|
|
11146
|
+
],
|
|
11147
|
+
summary: "/user_identities/enrollment_automations/delete",
|
|
11148
|
+
tags: ["/user_identities"],
|
|
11149
|
+
"x-fern-sdk-group-name": ["user_identities", "enrollment_automations"],
|
|
11150
|
+
"x-fern-sdk-method-name": "delete"
|
|
11151
|
+
}
|
|
11152
|
+
},
|
|
11110
11153
|
"/user_identities/enrollment_automations/get": {
|
|
11111
11154
|
post: {
|
|
11112
11155
|
operationId: "userIdentitiesEnrollmentAutomationsGetPost",
|
|
@@ -11844,6 +11887,113 @@ var openapi_default = {
|
|
|
11844
11887
|
"x-fern-sdk-method-name": "revoke_access_to_device"
|
|
11845
11888
|
}
|
|
11846
11889
|
},
|
|
11890
|
+
"/user_identities/update": {
|
|
11891
|
+
patch: {
|
|
11892
|
+
operationId: "userIdentitiesUpdatePatch",
|
|
11893
|
+
requestBody: {
|
|
11894
|
+
content: {
|
|
11895
|
+
"application/json": {
|
|
11896
|
+
schema: {
|
|
11897
|
+
properties: {
|
|
11898
|
+
email_address: {
|
|
11899
|
+
format: "email",
|
|
11900
|
+
nullable: true,
|
|
11901
|
+
type: "string"
|
|
11902
|
+
},
|
|
11903
|
+
full_name: { minLength: 1, nullable: true, type: "string" },
|
|
11904
|
+
phone_number: { nullable: true, type: "string" },
|
|
11905
|
+
user_identity_id: { format: "uuid", type: "string" },
|
|
11906
|
+
user_identity_key: {
|
|
11907
|
+
minLength: 1,
|
|
11908
|
+
nullable: true,
|
|
11909
|
+
type: "string"
|
|
11910
|
+
}
|
|
11911
|
+
},
|
|
11912
|
+
required: ["user_identity_id"],
|
|
11913
|
+
type: "object"
|
|
11914
|
+
}
|
|
11915
|
+
}
|
|
11916
|
+
}
|
|
11917
|
+
},
|
|
11918
|
+
responses: {
|
|
11919
|
+
200: {
|
|
11920
|
+
content: {
|
|
11921
|
+
"application/json": {
|
|
11922
|
+
schema: {
|
|
11923
|
+
properties: { ok: { type: "boolean" } },
|
|
11924
|
+
required: ["ok"],
|
|
11925
|
+
type: "object"
|
|
11926
|
+
}
|
|
11927
|
+
}
|
|
11928
|
+
},
|
|
11929
|
+
description: "OK"
|
|
11930
|
+
},
|
|
11931
|
+
400: { description: "Bad Request" },
|
|
11932
|
+
401: { description: "Unauthorized" }
|
|
11933
|
+
},
|
|
11934
|
+
security: [
|
|
11935
|
+
{ pat_with_workspace: [] },
|
|
11936
|
+
{ console_session: [] },
|
|
11937
|
+
{ api_key: [] }
|
|
11938
|
+
],
|
|
11939
|
+
summary: "/user_identities/update",
|
|
11940
|
+
tags: ["/user_identities"],
|
|
11941
|
+
"x-fern-ignore": true
|
|
11942
|
+
},
|
|
11943
|
+
post: {
|
|
11944
|
+
operationId: "userIdentitiesUpdatePost",
|
|
11945
|
+
requestBody: {
|
|
11946
|
+
content: {
|
|
11947
|
+
"application/json": {
|
|
11948
|
+
schema: {
|
|
11949
|
+
properties: {
|
|
11950
|
+
email_address: {
|
|
11951
|
+
format: "email",
|
|
11952
|
+
nullable: true,
|
|
11953
|
+
type: "string"
|
|
11954
|
+
},
|
|
11955
|
+
full_name: { minLength: 1, nullable: true, type: "string" },
|
|
11956
|
+
phone_number: { nullable: true, type: "string" },
|
|
11957
|
+
user_identity_id: { format: "uuid", type: "string" },
|
|
11958
|
+
user_identity_key: {
|
|
11959
|
+
minLength: 1,
|
|
11960
|
+
nullable: true,
|
|
11961
|
+
type: "string"
|
|
11962
|
+
}
|
|
11963
|
+
},
|
|
11964
|
+
required: ["user_identity_id"],
|
|
11965
|
+
type: "object"
|
|
11966
|
+
}
|
|
11967
|
+
}
|
|
11968
|
+
}
|
|
11969
|
+
},
|
|
11970
|
+
responses: {
|
|
11971
|
+
200: {
|
|
11972
|
+
content: {
|
|
11973
|
+
"application/json": {
|
|
11974
|
+
schema: {
|
|
11975
|
+
properties: { ok: { type: "boolean" } },
|
|
11976
|
+
required: ["ok"],
|
|
11977
|
+
type: "object"
|
|
11978
|
+
}
|
|
11979
|
+
}
|
|
11980
|
+
},
|
|
11981
|
+
description: "OK"
|
|
11982
|
+
},
|
|
11983
|
+
400: { description: "Bad Request" },
|
|
11984
|
+
401: { description: "Unauthorized" }
|
|
11985
|
+
},
|
|
11986
|
+
security: [
|
|
11987
|
+
{ pat_with_workspace: [] },
|
|
11988
|
+
{ console_session: [] },
|
|
11989
|
+
{ api_key: [] }
|
|
11990
|
+
],
|
|
11991
|
+
summary: "/user_identities/update",
|
|
11992
|
+
tags: ["/user_identities"],
|
|
11993
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
11994
|
+
"x-fern-sdk-method-name": "update"
|
|
11995
|
+
}
|
|
11996
|
+
},
|
|
11847
11997
|
"/webhooks/create": {
|
|
11848
11998
|
post: {
|
|
11849
11999
|
operationId: "webhooksCreatePost",
|