@seamapi/types 1.200.0 → 1.202.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
@@ -101,7 +101,9 @@ var access_code_code_constraint = zod.z.object({
101
101
  // Tedee
102
102
  "at_least_three_unique_digits",
103
103
  // Tedee
104
- "cannot_contain_089"
104
+ "cannot_contain_089",
105
+ // TTLock
106
+ "cannot_contain_0789"
105
107
  // TTLock (for some cylinder devices only)
106
108
  ])
107
109
  });
@@ -1286,7 +1288,9 @@ var acs_user = zod.z.object({
1286
1288
  user_identity_id: zod.z.string().optional(),
1287
1289
  user_identity_full_name: zod.z.string().nullable().optional(),
1288
1290
  user_identity_email_address: zod.z.string().nullable().optional(),
1289
- user_identity_phone_number: zod.z.string().nullable().optional()
1291
+ user_identity_phone_number: zod.z.string().nullable().optional(),
1292
+ latest_desired_state_synced_with_provider_at: zod.z.string().datetime().optional(),
1293
+ is_latest_desired_state_synced_with_provider: zod.z.boolean().optional()
1290
1294
  }).merge(user_fields);
1291
1295
  var common_action_attempt = zod.z.object({
1292
1296
  action_attempt_id: zod.z.string().uuid().describe(`
@@ -2763,7 +2767,12 @@ var openapi_default = {
2763
2767
  external_type_display_name: { type: "string" },
2764
2768
  full_name: { type: "string" },
2765
2769
  hid_acs_system_id: { format: "uuid", type: "string" },
2770
+ is_latest_desired_state_synced_with_provider: { type: "boolean" },
2766
2771
  is_suspended: { type: "boolean" },
2772
+ latest_desired_state_synced_with_provider_at: {
2773
+ format: "date-time",
2774
+ type: "string"
2775
+ },
2767
2776
  phone_number: { type: "string" },
2768
2777
  user_identity_email_address: { nullable: true, type: "string" },
2769
2778
  user_identity_full_name: { nullable: true, type: "string" },
@@ -4881,7 +4890,8 @@ var openapi_default = {
4881
4890
  "start_date_in_future",
4882
4891
  "no_ascending_or_descending_sequence",
4883
4892
  "at_least_three_unique_digits",
4884
- "cannot_contain_089"
4893
+ "cannot_contain_089",
4894
+ "cannot_contain_0789"
4885
4895
  ],
4886
4896
  type: "string"
4887
4897
  }