@seamapi/types 1.235.0 → 1.235.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 CHANGED
@@ -16,7 +16,6 @@ __export(schemas_exports, {
16
16
  acs_credential: () => acs_credential,
17
17
  acs_entrance: () => acs_entrance,
18
18
  acs_system: () => acs_system,
19
- acs_unmanaged_user: () => acs_unmanaged_user,
20
19
  acs_user: () => acs_user,
21
20
  action_attempt: () => action_attempt,
22
21
  client_session: () => client_session,
@@ -31,6 +30,7 @@ __export(schemas_exports, {
31
30
  unmanaged_access_code: () => unmanaged_access_code,
32
31
  unmanaged_acs_access_group: () => unmanaged_acs_access_group,
33
32
  unmanaged_acs_credential: () => unmanaged_acs_credential,
33
+ unmanaged_acs_user: () => unmanaged_acs_user,
34
34
  unmanaged_device: () => unmanaged_device,
35
35
  user_identity: () => user_identity,
36
36
  webhook: () => webhook,
@@ -1343,7 +1343,7 @@ var acs_user = common_acs_user.merge(
1343
1343
  is_managed: zod.z.literal(true)
1344
1344
  })
1345
1345
  );
1346
- var acs_unmanaged_user = common_acs_user.merge(
1346
+ var unmanaged_acs_user = common_acs_user.merge(
1347
1347
  zod.z.object({
1348
1348
  is_managed: zod.z.literal(false)
1349
1349
  })
@@ -7711,7 +7711,7 @@ var openapi_default = {
7711
7711
  tags: ["/acs"],
7712
7712
  "x-fern-sdk-group-name": ["acs", "access_groups", "unmanaged"],
7713
7713
  "x-fern-sdk-method-name": "get",
7714
- "x-fern-sdk-return-value": "acs_users"
7714
+ "x-fern-sdk-return-value": "acs_access_group"
7715
7715
  }
7716
7716
  },
7717
7717
  "/acs/access_groups/unmanaged/list": {
@@ -7814,7 +7814,7 @@ var openapi_default = {
7814
7814
  tags: ["/acs"],
7815
7815
  "x-fern-sdk-group-name": ["acs", "access_groups", "unmanaged"],
7816
7816
  "x-fern-sdk-method-name": "list",
7817
- "x-fern-sdk-return-value": "acs_users"
7817
+ "x-fern-sdk-return-value": "acs_access_groups"
7818
7818
  }
7819
7819
  },
7820
7820
  "/acs/credential_pools/list": {
@@ -9735,7 +9735,95 @@ var openapi_default = {
9735
9735
  "application/json": {
9736
9736
  schema: {
9737
9737
  properties: {
9738
- acs_user: { $ref: "#/components/schemas/acs_user" },
9738
+ acs_user: {
9739
+ properties: {
9740
+ access_schedule: {
9741
+ properties: {
9742
+ ends_at: { format: "date-time", type: "string" },
9743
+ starts_at: { format: "date-time", type: "string" }
9744
+ },
9745
+ required: ["starts_at", "ends_at"],
9746
+ type: "object"
9747
+ },
9748
+ acs_system_id: { format: "uuid", type: "string" },
9749
+ acs_user_id: { format: "uuid", type: "string" },
9750
+ created_at: { format: "date-time", type: "string" },
9751
+ display_name: { type: "string" },
9752
+ email: {
9753
+ deprecated: true,
9754
+ format: "email",
9755
+ type: "string",
9756
+ "x-deprecated": "use email_address."
9757
+ },
9758
+ email_address: { format: "email", type: "string" },
9759
+ external_type: {
9760
+ enum: [
9761
+ "pti_user",
9762
+ "brivo_user",
9763
+ "hid_credential_manager_user",
9764
+ "salto_site_user",
9765
+ "latch_user"
9766
+ ],
9767
+ type: "string"
9768
+ },
9769
+ external_type_display_name: { type: "string" },
9770
+ full_name: { type: "string" },
9771
+ hid_acs_system_id: { format: "uuid", type: "string" },
9772
+ is_latest_desired_state_synced_with_provider: {
9773
+ type: "boolean"
9774
+ },
9775
+ is_managed: { enum: [false], type: "boolean" },
9776
+ is_suspended: { type: "boolean" },
9777
+ latest_desired_state_synced_with_provider_at: {
9778
+ format: "date-time",
9779
+ type: "string"
9780
+ },
9781
+ phone_number: { type: "string" },
9782
+ user_identity_email_address: {
9783
+ nullable: true,
9784
+ type: "string"
9785
+ },
9786
+ user_identity_full_name: {
9787
+ nullable: true,
9788
+ type: "string"
9789
+ },
9790
+ user_identity_id: { type: "string" },
9791
+ user_identity_phone_number: {
9792
+ nullable: true,
9793
+ type: "string"
9794
+ },
9795
+ warnings: {
9796
+ items: {
9797
+ properties: {
9798
+ created_at: {
9799
+ format: "date-time",
9800
+ type: "string"
9801
+ },
9802
+ message: { type: "string" },
9803
+ warning_code: {
9804
+ enum: ["being_deleted"],
9805
+ type: "string"
9806
+ }
9807
+ },
9808
+ required: ["created_at", "message", "warning_code"],
9809
+ type: "object"
9810
+ },
9811
+ type: "array"
9812
+ },
9813
+ workspace_id: { format: "uuid", type: "string" }
9814
+ },
9815
+ required: [
9816
+ "acs_user_id",
9817
+ "acs_system_id",
9818
+ "workspace_id",
9819
+ "created_at",
9820
+ "display_name",
9821
+ "is_suspended",
9822
+ "warnings",
9823
+ "is_managed"
9824
+ ],
9825
+ type: "object"
9826
+ },
9739
9827
  ok: { type: "boolean" }
9740
9828
  },
9741
9829
  required: ["acs_user", "ok"],