@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
package/dist/connect.cjs
CHANGED
|
@@ -11844,6 +11844,113 @@ var openapi_default = {
|
|
|
11844
11844
|
"x-fern-sdk-method-name": "revoke_access_to_device"
|
|
11845
11845
|
}
|
|
11846
11846
|
},
|
|
11847
|
+
"/user_identities/update": {
|
|
11848
|
+
patch: {
|
|
11849
|
+
operationId: "userIdentitiesUpdatePatch",
|
|
11850
|
+
requestBody: {
|
|
11851
|
+
content: {
|
|
11852
|
+
"application/json": {
|
|
11853
|
+
schema: {
|
|
11854
|
+
properties: {
|
|
11855
|
+
email_address: {
|
|
11856
|
+
format: "email",
|
|
11857
|
+
nullable: true,
|
|
11858
|
+
type: "string"
|
|
11859
|
+
},
|
|
11860
|
+
full_name: { minLength: 1, nullable: true, type: "string" },
|
|
11861
|
+
phone_number: { nullable: true, type: "string" },
|
|
11862
|
+
user_identity_id: { format: "uuid", type: "string" },
|
|
11863
|
+
user_identity_key: {
|
|
11864
|
+
minLength: 1,
|
|
11865
|
+
nullable: true,
|
|
11866
|
+
type: "string"
|
|
11867
|
+
}
|
|
11868
|
+
},
|
|
11869
|
+
required: ["user_identity_id"],
|
|
11870
|
+
type: "object"
|
|
11871
|
+
}
|
|
11872
|
+
}
|
|
11873
|
+
}
|
|
11874
|
+
},
|
|
11875
|
+
responses: {
|
|
11876
|
+
200: {
|
|
11877
|
+
content: {
|
|
11878
|
+
"application/json": {
|
|
11879
|
+
schema: {
|
|
11880
|
+
properties: { ok: { type: "boolean" } },
|
|
11881
|
+
required: ["ok"],
|
|
11882
|
+
type: "object"
|
|
11883
|
+
}
|
|
11884
|
+
}
|
|
11885
|
+
},
|
|
11886
|
+
description: "OK"
|
|
11887
|
+
},
|
|
11888
|
+
400: { description: "Bad Request" },
|
|
11889
|
+
401: { description: "Unauthorized" }
|
|
11890
|
+
},
|
|
11891
|
+
security: [
|
|
11892
|
+
{ pat_with_workspace: [] },
|
|
11893
|
+
{ console_session: [] },
|
|
11894
|
+
{ api_key: [] }
|
|
11895
|
+
],
|
|
11896
|
+
summary: "/user_identities/update",
|
|
11897
|
+
tags: ["/user_identities"],
|
|
11898
|
+
"x-fern-ignore": true
|
|
11899
|
+
},
|
|
11900
|
+
post: {
|
|
11901
|
+
operationId: "userIdentitiesUpdatePost",
|
|
11902
|
+
requestBody: {
|
|
11903
|
+
content: {
|
|
11904
|
+
"application/json": {
|
|
11905
|
+
schema: {
|
|
11906
|
+
properties: {
|
|
11907
|
+
email_address: {
|
|
11908
|
+
format: "email",
|
|
11909
|
+
nullable: true,
|
|
11910
|
+
type: "string"
|
|
11911
|
+
},
|
|
11912
|
+
full_name: { minLength: 1, nullable: true, type: "string" },
|
|
11913
|
+
phone_number: { nullable: true, type: "string" },
|
|
11914
|
+
user_identity_id: { format: "uuid", type: "string" },
|
|
11915
|
+
user_identity_key: {
|
|
11916
|
+
minLength: 1,
|
|
11917
|
+
nullable: true,
|
|
11918
|
+
type: "string"
|
|
11919
|
+
}
|
|
11920
|
+
},
|
|
11921
|
+
required: ["user_identity_id"],
|
|
11922
|
+
type: "object"
|
|
11923
|
+
}
|
|
11924
|
+
}
|
|
11925
|
+
}
|
|
11926
|
+
},
|
|
11927
|
+
responses: {
|
|
11928
|
+
200: {
|
|
11929
|
+
content: {
|
|
11930
|
+
"application/json": {
|
|
11931
|
+
schema: {
|
|
11932
|
+
properties: { ok: { type: "boolean" } },
|
|
11933
|
+
required: ["ok"],
|
|
11934
|
+
type: "object"
|
|
11935
|
+
}
|
|
11936
|
+
}
|
|
11937
|
+
},
|
|
11938
|
+
description: "OK"
|
|
11939
|
+
},
|
|
11940
|
+
400: { description: "Bad Request" },
|
|
11941
|
+
401: { description: "Unauthorized" }
|
|
11942
|
+
},
|
|
11943
|
+
security: [
|
|
11944
|
+
{ pat_with_workspace: [] },
|
|
11945
|
+
{ console_session: [] },
|
|
11946
|
+
{ api_key: [] }
|
|
11947
|
+
],
|
|
11948
|
+
summary: "/user_identities/update",
|
|
11949
|
+
tags: ["/user_identities"],
|
|
11950
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
11951
|
+
"x-fern-sdk-method-name": "update"
|
|
11952
|
+
}
|
|
11953
|
+
},
|
|
11847
11954
|
"/webhooks/create": {
|
|
11848
11955
|
post: {
|
|
11849
11956
|
operationId: "webhooksCreatePost",
|