@seamapi/types 1.229.0 → 1.230.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 CHANGED
@@ -1180,7 +1180,7 @@ var visionline_instance_unreachable = common_acs_system_error.extend({
1180
1180
  See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.visionline_instance_unreachable).`);
1181
1181
  var salto_site_user_limit_reached = common_acs_system_error.extend({
1182
1182
  error_code: zod.z.literal("salto_site_user_limit_reached").describe(
1183
- "You have reached the maximum number of users allowed for your site; Please contact Salto support to increase your user limit."
1183
+ "Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit."
1184
1184
  )
1185
1185
  });
1186
1186
  var acs_system_error = zod.z.union([
@@ -2715,7 +2715,7 @@ var openapi_default = {
2715
2715
  type: "string"
2716
2716
  },
2717
2717
  error_code: {
2718
- description: "You have reached the maximum number of users allowed for your site; Please contact Salto support to increase your user limit.",
2718
+ description: "Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit.",
2719
2719
  enum: ["salto_site_user_limit_reached"],
2720
2720
  type: "string"
2721
2721
  },
@@ -9127,6 +9127,51 @@ var openapi_default = {
9127
9127
  "x-fern-sdk-method-name": "suspend"
9128
9128
  }
9129
9129
  },
9130
+ "/acs/users/unmanaged/get": {
9131
+ post: {
9132
+ operationId: "acsUsersUnmanagedGetPost",
9133
+ requestBody: {
9134
+ content: {
9135
+ "application/json": {
9136
+ schema: {
9137
+ properties: { acs_user_id: { format: "uuid", type: "string" } },
9138
+ required: ["acs_user_id"],
9139
+ type: "object"
9140
+ }
9141
+ }
9142
+ }
9143
+ },
9144
+ responses: {
9145
+ 200: {
9146
+ content: {
9147
+ "application/json": {
9148
+ schema: {
9149
+ properties: {
9150
+ acs_user: { $ref: "#/components/schemas/acs_user" },
9151
+ ok: { type: "boolean" }
9152
+ },
9153
+ required: ["acs_user", "ok"],
9154
+ type: "object"
9155
+ }
9156
+ }
9157
+ },
9158
+ description: "OK"
9159
+ },
9160
+ 400: { description: "Bad Request" },
9161
+ 401: { description: "Unauthorized" }
9162
+ },
9163
+ security: [
9164
+ { pat_with_workspace: [] },
9165
+ { console_session: [] },
9166
+ { api_key: [] }
9167
+ ],
9168
+ summary: "/acs/users/unmanaged/get",
9169
+ tags: ["/acs"],
9170
+ "x-fern-sdk-group-name": ["acs", "users", "unmanaged"],
9171
+ "x-fern-sdk-method-name": "get",
9172
+ "x-fern-sdk-return-value": "acs_user"
9173
+ }
9174
+ },
9130
9175
  "/acs/users/unsuspend": {
9131
9176
  post: {
9132
9177
  operationId: "acsUsersUnsuspendPost",
@@ -9177,6 +9222,7 @@ var openapi_default = {
9177
9222
  schema: {
9178
9223
  properties: {
9179
9224
  access_schedule: {
9225
+ nullable: true,
9180
9226
  properties: {
9181
9227
  ends_at: { format: "date-time", type: "string" },
9182
9228
  starts_at: { format: "date-time", type: "string" }
@@ -9235,6 +9281,7 @@ var openapi_default = {
9235
9281
  schema: {
9236
9282
  properties: {
9237
9283
  access_schedule: {
9284
+ nullable: true,
9238
9285
  properties: {
9239
9286
  ends_at: { format: "date-time", type: "string" },
9240
9287
  starts_at: { format: "date-time", type: "string" }