@seamapi/types 1.102.1 → 1.103.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 +41 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +73 -0
- package/lib/seam/connect/openapi.d.ts +62 -0
- package/lib/seam/connect/openapi.js +41 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +41 -0
- package/src/lib/seam/connect/route-types.ts +11 -0
package/dist/connect.cjs
CHANGED
|
@@ -5644,6 +5644,47 @@ var openapi_default = {
|
|
|
5644
5644
|
"x-fern-sdk-method-name": "remove_from_access_group"
|
|
5645
5645
|
}
|
|
5646
5646
|
},
|
|
5647
|
+
"/acs/users/revoke_access_to_all_entrances": {
|
|
5648
|
+
post: {
|
|
5649
|
+
operationId: "acsUsersRevokeAccessToAllEntrancesPost",
|
|
5650
|
+
requestBody: {
|
|
5651
|
+
content: {
|
|
5652
|
+
"application/json": {
|
|
5653
|
+
schema: {
|
|
5654
|
+
properties: { acs_user_id: { format: "uuid", type: "string" } },
|
|
5655
|
+
required: ["acs_user_id"],
|
|
5656
|
+
type: "object"
|
|
5657
|
+
}
|
|
5658
|
+
}
|
|
5659
|
+
}
|
|
5660
|
+
},
|
|
5661
|
+
responses: {
|
|
5662
|
+
200: {
|
|
5663
|
+
content: {
|
|
5664
|
+
"application/json": {
|
|
5665
|
+
schema: {
|
|
5666
|
+
properties: { ok: { type: "boolean" } },
|
|
5667
|
+
required: ["ok"],
|
|
5668
|
+
type: "object"
|
|
5669
|
+
}
|
|
5670
|
+
}
|
|
5671
|
+
},
|
|
5672
|
+
description: "OK"
|
|
5673
|
+
},
|
|
5674
|
+
400: { description: "Bad Request" },
|
|
5675
|
+
401: { description: "Unauthorized" }
|
|
5676
|
+
},
|
|
5677
|
+
security: [
|
|
5678
|
+
{ api_key: [] },
|
|
5679
|
+
{ pat_with_workspace: [] },
|
|
5680
|
+
{ console_session: [] }
|
|
5681
|
+
],
|
|
5682
|
+
summary: "/acs/users/revoke_access_to_all_entrances",
|
|
5683
|
+
tags: ["/acs"],
|
|
5684
|
+
"x-fern-sdk-group-name": ["acs", "users"],
|
|
5685
|
+
"x-fern-sdk-method-name": "revoke_access_to_all_entrances"
|
|
5686
|
+
}
|
|
5687
|
+
},
|
|
5647
5688
|
"/acs/users/suspend": {
|
|
5648
5689
|
post: {
|
|
5649
5690
|
operationId: "acsUsersSuspendPost",
|