@seamapi/types 1.289.1 → 1.290.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
@@ -1346,6 +1346,9 @@ var acs_system_capability_flags = zod.z.object({
1346
1346
  "Indicates whether the `acs_system` supports [adding users to access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#add-an-acs-user-to-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems)."
1347
1347
  )
1348
1348
  });
1349
+ var location = zod.z.object({
1350
+ time_zone: zod.z.string().nullable().describe("Time zone in which the `acs_system` is located.")
1351
+ });
1349
1352
  var acs_system_external_type = zod.z.enum([
1350
1353
  "pti_site",
1351
1354
  "alta_org",
@@ -1462,6 +1465,7 @@ var acs_system = zod.z.object({
1462
1465
  deprecated: Use \`external_type_display_name\`.
1463
1466
  ---
1464
1467
  `),
1468
+ location,
1465
1469
  name: zod.z.string().describe("Name of the `acs_system`."),
1466
1470
  created_at: zod.z.string().datetime().describe("Date and time at which the `acs_system` was created."),
1467
1471
  workspace_id: zod.z.string().uuid().describe(
@@ -3472,6 +3476,17 @@ var openapi_default = {
3472
3476
  description: "Indicates if the `acs_system` is a credential manager.",
3473
3477
  type: "boolean"
3474
3478
  },
3479
+ location: {
3480
+ properties: {
3481
+ time_zone: {
3482
+ description: "Time zone in which the `acs_system` is located.",
3483
+ nullable: true,
3484
+ type: "string"
3485
+ }
3486
+ },
3487
+ required: ["time_zone"],
3488
+ type: "object"
3489
+ },
3475
3490
  name: { description: "Name of the `acs_system`.", type: "string" },
3476
3491
  system_type: {
3477
3492
  deprecated: true,
@@ -3549,6 +3564,7 @@ var openapi_default = {
3549
3564
  required: [
3550
3565
  "acs_system_id",
3551
3566
  "is_credential_manager",
3567
+ "location",
3552
3568
  "name",
3553
3569
  "created_at",
3554
3570
  "workspace_id",