@seamapi/types 1.18.7 → 1.19.1
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 +82 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +152 -0
- package/dist/devicedb.d.cts +4 -1
- package/lib/seam/connect/openapi.d.ts +130 -0
- package/lib/seam/connect/openapi.js +82 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -0
- package/lib/seam/devicedb/route-types.d.ts +4 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +82 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
- package/src/lib/seam/devicedb/route-types.ts +6 -1
package/dist/connect.cjs
CHANGED
|
@@ -3711,6 +3711,88 @@ var openapi_default = {
|
|
|
3711
3711
|
"x-fern-sdk-method-name": "remove_from_access_group"
|
|
3712
3712
|
}
|
|
3713
3713
|
},
|
|
3714
|
+
"/acs/users/suspend": {
|
|
3715
|
+
post: {
|
|
3716
|
+
operationId: "acsUsersSuspendPost",
|
|
3717
|
+
requestBody: {
|
|
3718
|
+
content: {
|
|
3719
|
+
"application/json": {
|
|
3720
|
+
schema: {
|
|
3721
|
+
properties: { acs_user_id: { format: "uuid", type: "string" } },
|
|
3722
|
+
required: ["acs_user_id"],
|
|
3723
|
+
type: "object"
|
|
3724
|
+
}
|
|
3725
|
+
}
|
|
3726
|
+
}
|
|
3727
|
+
},
|
|
3728
|
+
responses: {
|
|
3729
|
+
200: {
|
|
3730
|
+
content: {
|
|
3731
|
+
"application/json": {
|
|
3732
|
+
schema: {
|
|
3733
|
+
properties: { ok: { type: "boolean" } },
|
|
3734
|
+
required: ["ok"],
|
|
3735
|
+
type: "object"
|
|
3736
|
+
}
|
|
3737
|
+
}
|
|
3738
|
+
},
|
|
3739
|
+
description: "OK"
|
|
3740
|
+
},
|
|
3741
|
+
400: { description: "Bad Request" },
|
|
3742
|
+
401: { description: "Unauthorized" }
|
|
3743
|
+
},
|
|
3744
|
+
security: [
|
|
3745
|
+
{ access_token: [], seam_workspace: [] },
|
|
3746
|
+
{ seam_client_session_token: [] },
|
|
3747
|
+
{ client_session_token: [] }
|
|
3748
|
+
],
|
|
3749
|
+
summary: "/acs/users/suspend",
|
|
3750
|
+
tags: [],
|
|
3751
|
+
"x-fern-sdk-group-name": ["acs", "users"],
|
|
3752
|
+
"x-fern-sdk-method-name": "suspend"
|
|
3753
|
+
}
|
|
3754
|
+
},
|
|
3755
|
+
"/acs/users/unsuspend": {
|
|
3756
|
+
post: {
|
|
3757
|
+
operationId: "acsUsersUnsuspendPost",
|
|
3758
|
+
requestBody: {
|
|
3759
|
+
content: {
|
|
3760
|
+
"application/json": {
|
|
3761
|
+
schema: {
|
|
3762
|
+
properties: { acs_user_id: { format: "uuid", type: "string" } },
|
|
3763
|
+
required: ["acs_user_id"],
|
|
3764
|
+
type: "object"
|
|
3765
|
+
}
|
|
3766
|
+
}
|
|
3767
|
+
}
|
|
3768
|
+
},
|
|
3769
|
+
responses: {
|
|
3770
|
+
200: {
|
|
3771
|
+
content: {
|
|
3772
|
+
"application/json": {
|
|
3773
|
+
schema: {
|
|
3774
|
+
properties: { ok: { type: "boolean" } },
|
|
3775
|
+
required: ["ok"],
|
|
3776
|
+
type: "object"
|
|
3777
|
+
}
|
|
3778
|
+
}
|
|
3779
|
+
},
|
|
3780
|
+
description: "OK"
|
|
3781
|
+
},
|
|
3782
|
+
400: { description: "Bad Request" },
|
|
3783
|
+
401: { description: "Unauthorized" }
|
|
3784
|
+
},
|
|
3785
|
+
security: [
|
|
3786
|
+
{ access_token: [], seam_workspace: [] },
|
|
3787
|
+
{ seam_client_session_token: [] },
|
|
3788
|
+
{ client_session_token: [] }
|
|
3789
|
+
],
|
|
3790
|
+
summary: "/acs/users/unsuspend",
|
|
3791
|
+
tags: [],
|
|
3792
|
+
"x-fern-sdk-group-name": ["acs", "users"],
|
|
3793
|
+
"x-fern-sdk-method-name": "unsuspend"
|
|
3794
|
+
}
|
|
3795
|
+
},
|
|
3714
3796
|
"/acs/users/update": {
|
|
3715
3797
|
patch: {
|
|
3716
3798
|
operationId: "acsUsersUpdatePatch",
|