@seamapi/types 1.462.0 → 1.464.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.
Files changed (73) hide show
  1. package/dist/connect.cjs +179 -146
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +354 -316
  4. package/dist/index.cjs +179 -146
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +4 -4
  7. package/lib/seam/connect/models/access-codes/managed-access-code.js +2 -2
  8. package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
  9. package/lib/seam/connect/models/access-grants/access-grant.d.ts +6 -6
  10. package/lib/seam/connect/models/access-grants/access-grant.js +1 -2
  11. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
  12. package/lib/seam/connect/models/acs/acs-access-group.d.ts +2 -2
  13. package/lib/seam/connect/models/acs/acs-access-group.js +1 -1
  14. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  15. package/lib/seam/connect/models/acs/acs-credential.d.ts +2 -2
  16. package/lib/seam/connect/models/acs/acs-credential.js +1 -1
  17. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  18. package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -2
  19. package/lib/seam/connect/models/acs/acs-encoder.js +1 -1
  20. package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
  21. package/lib/seam/connect/models/acs/acs-system.d.ts +12 -11
  22. package/lib/seam/connect/models/acs/acs-system.js +3 -2
  23. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  24. package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +5 -4
  25. package/lib/seam/connect/models/acs/acs-users/acs-user.js +2 -2
  26. package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
  27. package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +3 -2
  28. package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +1 -1
  29. package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
  30. package/lib/seam/connect/models/batch.d.ts +266 -243
  31. package/lib/seam/connect/models/batch.js +3 -0
  32. package/lib/seam/connect/models/batch.js.map +1 -1
  33. package/lib/seam/connect/models/bridges/bridge-client-session.d.ts +2 -2
  34. package/lib/seam/connect/models/bridges/bridge-client-session.js +1 -1
  35. package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
  36. package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +4 -4
  37. package/lib/seam/connect/models/connected-accounts/connected-account.js +2 -2
  38. package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
  39. package/lib/seam/connect/models/customer/customer-portal.d.ts +34 -0
  40. package/lib/seam/connect/models/customer/customer-portal.js +18 -0
  41. package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
  42. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  43. package/lib/seam/connect/models/devices/device-provider.js +2 -0
  44. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  45. package/lib/seam/connect/models/devices/device.d.ts +4 -62
  46. package/lib/seam/connect/models/devices/device.js +2 -16
  47. package/lib/seam/connect/models/devices/device.js.map +1 -1
  48. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -21
  49. package/lib/seam/connect/models/user-identities/user-identity.d.ts +5 -4
  50. package/lib/seam/connect/models/user-identities/user-identity.js +2 -2
  51. package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
  52. package/lib/seam/connect/openapi.d.ts +82 -2
  53. package/lib/seam/connect/openapi.js +84 -46
  54. package/lib/seam/connect/openapi.js.map +1 -1
  55. package/lib/seam/connect/route-types.d.ts +136 -179
  56. package/package.json +1 -1
  57. package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +4 -4
  58. package/src/lib/seam/connect/models/access-grants/access-grant.ts +1 -2
  59. package/src/lib/seam/connect/models/acs/acs-access-group.ts +2 -2
  60. package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -2
  61. package/src/lib/seam/connect/models/acs/acs-encoder.ts +2 -2
  62. package/src/lib/seam/connect/models/acs/acs-system.ts +5 -4
  63. package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +4 -4
  64. package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +2 -2
  65. package/src/lib/seam/connect/models/batch.ts +3 -0
  66. package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +2 -2
  67. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +4 -4
  68. package/src/lib/seam/connect/models/customer/customer-portal.ts +23 -0
  69. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
  70. package/src/lib/seam/connect/models/devices/device.ts +4 -19
  71. package/src/lib/seam/connect/models/user-identities/user-identity.ts +4 -4
  72. package/src/lib/seam/connect/openapi.ts +88 -54
  73. package/src/lib/seam/connect/route-types.ts +148 -182
@@ -2663,19 +2663,6 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
2663
2663
  }>, z.ZodObject<{
2664
2664
  message: z.ZodString;
2665
2665
  created_at: z.ZodString;
2666
- } & {
2667
- warning_code: z.ZodLiteral<"nest_thermostat_in_manual_eco_mode">;
2668
- }, "strip", z.ZodTypeAny, {
2669
- message: string;
2670
- created_at: string;
2671
- warning_code: "nest_thermostat_in_manual_eco_mode";
2672
- }, {
2673
- message: string;
2674
- created_at: string;
2675
- warning_code: "nest_thermostat_in_manual_eco_mode";
2676
- }>, z.ZodObject<{
2677
- message: z.ZodString;
2678
- created_at: z.ZodString;
2679
2666
  } & {
2680
2667
  warning_code: z.ZodLiteral<"ttlock_lock_gateway_unlocking_not_enabled">;
2681
2668
  }, "strip", z.ZodTypeAny, {
@@ -3141,10 +3128,6 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
3141
3128
  message: string;
3142
3129
  created_at: string;
3143
3130
  warning_code: "third_party_integration_detected";
3144
- } | {
3145
- message: string;
3146
- created_at: string;
3147
- warning_code: "nest_thermostat_in_manual_eco_mode";
3148
3131
  } | {
3149
3132
  message: string;
3150
3133
  created_at: string;
@@ -3372,10 +3355,6 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
3372
3355
  message: string;
3373
3356
  created_at: string;
3374
3357
  warning_code: "third_party_integration_detected";
3375
- } | {
3376
- message: string;
3377
- created_at: string;
3378
- warning_code: "nest_thermostat_in_manual_eco_mode";
3379
3358
  } | {
3380
3359
  message: string;
3381
3360
  created_at: string;
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- export declare const user_identity_error_map: z.ZodObject<{
2
+ declare const _user_identity_error_map: z.ZodObject<{
3
3
  issue_with_acs_user: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
4
4
  created_at: z.ZodString;
5
5
  message: z.ZodString;
@@ -37,8 +37,8 @@ export declare const user_identity_error_map: z.ZodObject<{
37
37
  acs_user_id: string;
38
38
  }> | null | undefined;
39
39
  }>;
40
- export type UserIdentityErrorMap = z.infer<typeof user_identity_error_map>;
41
- export declare const user_identity_warning_map: z.ZodObject<{
40
+ export type UserIdentityErrorMap = z.infer<typeof _user_identity_error_map>;
41
+ declare const _user_identity_warning_map: z.ZodObject<{
42
42
  user_identity_being_deleted: z.ZodNullable<z.ZodOptional<z.ZodObject<{
43
43
  created_at: z.ZodString;
44
44
  message: z.ZodString;
@@ -90,7 +90,7 @@ export declare const user_identity_warning_map: z.ZodObject<{
90
90
  warning_code: "being_deleted";
91
91
  } | null | undefined;
92
92
  }>;
93
- export type UserIdentityWarningMap = z.infer<typeof user_identity_warning_map>;
93
+ export type UserIdentityWarningMap = z.infer<typeof _user_identity_warning_map>;
94
94
  export declare const user_identity: z.ZodObject<{
95
95
  user_identity_id: z.ZodString;
96
96
  user_identity_key: z.ZodNullable<z.ZodString>;
@@ -202,3 +202,4 @@ export declare const user_identity: z.ZodObject<{
202
202
  acs_user_ids: string[];
203
203
  }>;
204
204
  export type UserIdentity = z.output<typeof user_identity>;
205
+ export {};
@@ -47,7 +47,7 @@ const user_identity_issue_with_acs_user = common_user_identity_error
47
47
  .describe('ID of the access system that the user identity is associated with.'),
48
48
  })
49
49
  .describe('Indicates that there is an issue with an access system user associated with this user identity.');
50
- export const user_identity_error_map = z.object({
50
+ const _user_identity_error_map = z.object({
51
51
  issue_with_acs_user: z
52
52
  .record(z.string().uuid(), user_identity_issue_with_acs_user)
53
53
  .optional()
@@ -60,7 +60,7 @@ const user_identity_warnings = z
60
60
  acs_user_profile_does_not_match_user_identity,
61
61
  ])
62
62
  .describe('Warnings associated with the user identity.');
63
- export const user_identity_warning_map = z.object({
63
+ const _user_identity_warning_map = z.object({
64
64
  user_identity_being_deleted: user_identity_being_deleted
65
65
  .optional()
66
66
  .nullable(),
@@ -1 +1 @@
1
- {"version":3,"file":"user-identity.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/user-identities/user-identity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAEjD,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC,CAAA;AAEF,MAAM,2BAA2B,GAAG,4BAA4B;KAC7D,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,OAAO,CAAC,eAAe,CAAC;SACxB,QAAQ,CACP,sGAAsG,CACvG;CACJ,CAAC;KACD,QAAQ,CAAC,8DAA8D,CAAC,CAAA;AAE3E,MAAM,6CAA6C,GACjD,4BAA4B;KACzB,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,OAAO,CAAC,+CAA+C,CAAC;SACxD,QAAQ,CACP,sGAAsG,CACvG;CACJ,CAAC;KACD,QAAQ,CACP,kFAAkF,CACnF,CAAA;AAEL,MAAM,iCAAiC,GAAG,0BAA0B;KACjE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,qBAAqB,CAAC;SAC9B,QAAQ,CACP,oGAAoG,CACrG;IACH,WAAW,EAAE,CAAC;SACX,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,oEAAoE,CACrE;CACJ,CAAC;KACD,QAAQ,CACP,iGAAiG,CAClG,CAAA;AAEH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,mBAAmB,EAAE,CAAC;SACnB,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,EAAE,iCAAiC,CAAC;SAC5D,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,oKAAoK,CACrK;CACJ,CAAC,CAAA;AAIF,MAAM,sBAAsB,GAAG,CAAC;KAC7B,kBAAkB,CAAC,cAAc,EAAE;IAClC,2BAA2B;IAC3B,6CAA6C;CAC9C,CAAC;KACD,QAAQ,CAAC,6CAA6C,CAAC,CAAA;AAE1D,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,2BAA2B,EAAE,2BAA2B;SACrD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,6CAA6C,EAC3C,6CAA6C,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACtE,CAAC,CAAA;AAIF,MAAM,oBAAoB,GAAG,CAAC;KAC3B,kBAAkB,CAAC,YAAY,EAAE,CAAC,iCAAiC,CAAC,CAAC;KACrE,QAAQ,CAAC,2CAA2C,CAAC,CAAA;AAExD,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACxE,iBAAiB,EAAE,CAAC;SACjB,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,mCAAmC,CAAC;IAChD,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CAAC,6CAA6C,CAAC;IAC1D,YAAY,EAAE,YAAY;SACvB,QAAQ,EAAE;SACV,QAAQ,CACP,kIAAkI,CACnI;IACH,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACvC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,8GAA8G,CAC/G;IACH,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,oBAAoB,CAAC;SAC3B,QAAQ,CACP,0YAA0Y,CAC3Y;IACH,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,sBAAsB,CAAC;SAC7B,QAAQ,CACP,sZAAsZ,CACvZ;IACH,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CACP,oEAAoE,CACrE;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
1
+ {"version":3,"file":"user-identity.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/user-identities/user-identity.ts"],"names":[],"mappings":"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"}
@@ -408,6 +408,7 @@ declare const _default: {
408
408
  ends_at: {
409
409
  description: string;
410
410
  format: string;
411
+ nullable: boolean;
411
412
  type: string;
412
413
  };
413
414
  instant_key_url: {
@@ -16658,7 +16659,9 @@ declare const _default: {
16658
16659
  type: string;
16659
16660
  };
16660
16661
  ends_at: {
16662
+ default: null;
16661
16663
  description: string;
16664
+ nullable: boolean;
16662
16665
  type: string;
16663
16666
  };
16664
16667
  location: {
@@ -17581,7 +17584,6 @@ declare const _default: {
17581
17584
  starts_at: {
17582
17585
  description: string;
17583
17586
  format: string;
17584
- nullable: boolean;
17585
17587
  type: string;
17586
17588
  };
17587
17589
  };
@@ -17671,7 +17673,6 @@ declare const _default: {
17671
17673
  starts_at: {
17672
17674
  description: string;
17673
17675
  format: string;
17674
- nullable: boolean;
17675
17676
  type: string;
17676
17677
  };
17677
17678
  };
@@ -18155,6 +18156,12 @@ declare const _default: {
18155
18156
  };
18156
18157
  type: string;
18157
18158
  };
18159
+ connect_webviews: {
18160
+ items: {
18161
+ $ref: string;
18162
+ };
18163
+ type: string;
18164
+ };
18158
18165
  devices: {
18159
18166
  items: {
18160
18167
  $ref: string;
@@ -18334,6 +18341,12 @@ declare const _default: {
18334
18341
  };
18335
18342
  type: string;
18336
18343
  };
18344
+ connect_webviews: {
18345
+ items: {
18346
+ $ref: string;
18347
+ };
18348
+ type: string;
18349
+ };
18337
18350
  devices: {
18338
18351
  items: {
18339
18352
  $ref: string;
@@ -28419,6 +28432,11 @@ declare const _default: {
28419
28432
  allOf: ({
28420
28433
  default: {
28421
28434
  features: {
28435
+ configure: {
28436
+ allow_access_automation_rule_customization: boolean;
28437
+ allow_instant_key_customization: boolean;
28438
+ exclude: boolean;
28439
+ };
28422
28440
  connect: {
28423
28441
  exclude: boolean;
28424
28442
  };
@@ -28436,6 +28454,28 @@ declare const _default: {
28436
28454
  features: {
28437
28455
  default: {};
28438
28456
  properties: {
28457
+ configure: {
28458
+ default: {};
28459
+ description: string;
28460
+ properties: {
28461
+ allow_access_automation_rule_customization: {
28462
+ default: boolean;
28463
+ description: string;
28464
+ type: string;
28465
+ };
28466
+ allow_instant_key_customization: {
28467
+ default: boolean;
28468
+ description: string;
28469
+ type: string;
28470
+ };
28471
+ exclude: {
28472
+ default: boolean;
28473
+ description: string;
28474
+ type: string;
28475
+ };
28476
+ };
28477
+ type: string;
28478
+ };
28439
28479
  connect: {
28440
28480
  default: {};
28441
28481
  description: string;
@@ -37562,6 +37602,20 @@ declare const _default: {
37562
37602
  };
37563
37603
  features: {
37564
37604
  properties: {
37605
+ configure: {
37606
+ properties: {
37607
+ allow_access_automation_rule_customization: {
37608
+ type: string;
37609
+ };
37610
+ allow_instant_key_customization: {
37611
+ type: string;
37612
+ };
37613
+ exclude: {
37614
+ type: string;
37615
+ };
37616
+ };
37617
+ type: string;
37618
+ };
37565
37619
  connect: {
37566
37620
  properties: {
37567
37621
  exclude: {
@@ -37659,6 +37713,20 @@ declare const _default: {
37659
37713
  };
37660
37714
  features: {
37661
37715
  properties: {
37716
+ configure: {
37717
+ properties: {
37718
+ allow_access_automation_rule_customization: {
37719
+ type: string;
37720
+ };
37721
+ allow_instant_key_customization: {
37722
+ type: string;
37723
+ };
37724
+ exclude: {
37725
+ type: string;
37726
+ };
37727
+ };
37728
+ type: string;
37729
+ };
37662
37730
  connect: {
37663
37731
  properties: {
37664
37732
  exclude: {
@@ -49573,6 +49641,12 @@ declare const _default: {
49573
49641
  };
49574
49642
  type: string;
49575
49643
  };
49644
+ connect_webviews: {
49645
+ items: {
49646
+ $ref: string;
49647
+ };
49648
+ type: string;
49649
+ };
49576
49650
  devices: {
49577
49651
  items: {
49578
49652
  $ref: string;
@@ -49727,6 +49801,12 @@ declare const _default: {
49727
49801
  };
49728
49802
  type: string;
49729
49803
  };
49804
+ connect_webviews: {
49805
+ items: {
49806
+ $ref: string;
49807
+ };
49808
+ type: string;
49809
+ };
49730
49810
  devices: {
49731
49811
  items: {
49732
49812
  $ref: string;
@@ -1601,6 +1601,7 @@ export default {
1601
1601
  ends_at: {
1602
1602
  description: 'Date and time at which the Access Grant ends.',
1603
1603
  format: 'date-time',
1604
+ nullable: true,
1604
1605
  type: 'string',
1605
1606
  },
1606
1607
  instant_key_url: {
@@ -1685,6 +1686,8 @@ export default {
1685
1686
  'name',
1686
1687
  'display_name',
1687
1688
  'created_at',
1689
+ 'starts_at',
1690
+ 'ends_at',
1688
1691
  ],
1689
1692
  type: 'object',
1690
1693
  'x-draft': 'Early access.',
@@ -2805,6 +2808,7 @@ export default {
2805
2808
  'assa_abloy_credential_service',
2806
2809
  'latch_building',
2807
2810
  'dormakaba_community_site',
2811
+ 'dormakaba_ambiance_site',
2808
2812
  'legic_connect_credential_service',
2809
2813
  'assa_abloy_vostio',
2810
2814
  'assa_abloy_vostio_credential_service',
@@ -2855,6 +2859,7 @@ export default {
2855
2859
  'assa_abloy_credential_service',
2856
2860
  'latch_building',
2857
2861
  'dormakaba_community_site',
2862
+ 'dormakaba_ambiance_site',
2858
2863
  'legic_connect_credential_service',
2859
2864
  'assa_abloy_vostio',
2860
2865
  'assa_abloy_vostio_credential_service',
@@ -11145,28 +11150,6 @@ export default {
11145
11150
  required: ['message', 'created_at', 'warning_code'],
11146
11151
  type: 'object',
11147
11152
  },
11148
- {
11149
- description: 'Indicates that the Nest thermostat is in manual eco mode.',
11150
- properties: {
11151
- created_at: {
11152
- description: 'Date and time at which Seam created the warning.',
11153
- format: 'date-time',
11154
- type: 'string',
11155
- },
11156
- message: {
11157
- description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
11158
- type: 'string',
11159
- },
11160
- warning_code: {
11161
- description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
11162
- enum: ['nest_thermostat_in_manual_eco_mode'],
11163
- type: 'string',
11164
- },
11165
- },
11166
- required: ['message', 'created_at', 'warning_code'],
11167
- type: 'object',
11168
- 'x-variant-group-key': 'thermostats',
11169
- },
11170
11153
  {
11171
11154
  description: 'Indicates that the Remote Unlock feature is not enabled in the settings."',
11172
11155
  properties: {
@@ -11534,6 +11517,7 @@ export default {
11534
11517
  'sensi',
11535
11518
  'kwikset2',
11536
11519
  'keynest',
11520
+ 'dormakaba_ambiance',
11537
11521
  ],
11538
11522
  type: 'string',
11539
11523
  },
@@ -22070,28 +22054,6 @@ export default {
22070
22054
  required: ['message', 'created_at', 'warning_code'],
22071
22055
  type: 'object',
22072
22056
  },
22073
- {
22074
- description: 'Indicates that the Nest thermostat is in manual eco mode.',
22075
- properties: {
22076
- created_at: {
22077
- description: 'Date and time at which Seam created the warning.',
22078
- format: 'date-time',
22079
- type: 'string',
22080
- },
22081
- message: {
22082
- description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
22083
- type: 'string',
22084
- },
22085
- warning_code: {
22086
- description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
22087
- enum: ['nest_thermostat_in_manual_eco_mode'],
22088
- type: 'string',
22089
- },
22090
- },
22091
- required: ['message', 'created_at', 'warning_code'],
22092
- type: 'object',
22093
- 'x-variant-group-key': 'thermostats',
22094
- },
22095
22057
  {
22096
22058
  description: 'Indicates that the Remote Unlock feature is not enabled in the settings."',
22097
22059
  properties: {
@@ -25138,7 +25100,9 @@ export default {
25138
25100
  type: 'array',
25139
25101
  },
25140
25102
  ends_at: {
25103
+ default: null,
25141
25104
  description: 'Date and time at which the validity of the new grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`.',
25105
+ nullable: true,
25142
25106
  type: 'string',
25143
25107
  },
25144
25108
  location: {
@@ -25894,7 +25858,6 @@ export default {
25894
25858
  starts_at: {
25895
25859
  description: 'Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
25896
25860
  format: 'date-time',
25897
- nullable: true,
25898
25861
  type: 'string',
25899
25862
  },
25900
25863
  },
@@ -25961,7 +25924,6 @@ export default {
25961
25924
  starts_at: {
25962
25925
  description: 'Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
25963
25926
  format: 'date-time',
25964
- nullable: true,
25965
25927
  type: 'string',
25966
25928
  },
25967
25929
  },
@@ -26358,6 +26320,12 @@ export default {
26358
26320
  },
26359
26321
  type: 'array',
26360
26322
  },
26323
+ connect_webviews: {
26324
+ items: {
26325
+ $ref: '#/components/schemas/connect_webview',
26326
+ },
26327
+ type: 'array',
26328
+ },
26361
26329
  devices: {
26362
26330
  items: { $ref: '#/components/schemas/device' },
26363
26331
  type: 'array',
@@ -26509,6 +26477,12 @@ export default {
26509
26477
  },
26510
26478
  type: 'array',
26511
26479
  },
26480
+ connect_webviews: {
26481
+ items: {
26482
+ $ref: '#/components/schemas/connect_webview',
26483
+ },
26484
+ type: 'array',
26485
+ },
26512
26486
  devices: {
26513
26487
  items: { $ref: '#/components/schemas/device' },
26514
26488
  type: 'array',
@@ -33677,6 +33651,7 @@ export default {
33677
33651
  'sensi',
33678
33652
  'kwikset2',
33679
33653
  'keynest',
33654
+ 'dormakaba_ambiance',
33680
33655
  'yale_access',
33681
33656
  'hid_cm',
33682
33657
  'google_nest',
@@ -34693,6 +34668,11 @@ export default {
34693
34668
  {
34694
34669
  default: {
34695
34670
  features: {
34671
+ configure: {
34672
+ allow_access_automation_rule_customization: false,
34673
+ allow_instant_key_customization: false,
34674
+ exclude: false,
34675
+ },
34696
34676
  connect: { exclude: false },
34697
34677
  manage_devices: { exclude: false },
34698
34678
  organize: { exclude: false },
@@ -34704,6 +34684,28 @@ export default {
34704
34684
  features: {
34705
34685
  default: {},
34706
34686
  properties: {
34687
+ configure: {
34688
+ default: {},
34689
+ description: 'Configuration for the configure feature.',
34690
+ properties: {
34691
+ allow_access_automation_rule_customization: {
34692
+ default: false,
34693
+ description: 'Indicates whether the customer can customize the access automation rules for their properties.',
34694
+ type: 'boolean',
34695
+ },
34696
+ allow_instant_key_customization: {
34697
+ default: false,
34698
+ description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
34699
+ type: 'boolean',
34700
+ },
34701
+ exclude: {
34702
+ default: false,
34703
+ description: 'Whether to exclude this feature from the portal.',
34704
+ type: 'boolean',
34705
+ },
34706
+ },
34707
+ type: 'object',
34708
+ },
34707
34709
  connect: {
34708
34710
  default: {},
34709
34711
  description: 'Configuration for the connect accounts feature.',
@@ -43385,6 +43387,18 @@ export default {
43385
43387
  },
43386
43388
  features: {
43387
43389
  properties: {
43390
+ configure: {
43391
+ properties: {
43392
+ allow_access_automation_rule_customization: {
43393
+ type: 'boolean',
43394
+ },
43395
+ allow_instant_key_customization: {
43396
+ type: 'boolean',
43397
+ },
43398
+ exclude: { type: 'boolean' },
43399
+ },
43400
+ type: 'object',
43401
+ },
43388
43402
  connect: {
43389
43403
  properties: { exclude: { type: 'boolean' } },
43390
43404
  type: 'object',
@@ -43466,6 +43480,18 @@ export default {
43466
43480
  },
43467
43481
  features: {
43468
43482
  properties: {
43483
+ configure: {
43484
+ properties: {
43485
+ allow_access_automation_rule_customization: {
43486
+ type: 'boolean',
43487
+ },
43488
+ allow_instant_key_customization: {
43489
+ type: 'boolean',
43490
+ },
43491
+ exclude: { type: 'boolean' },
43492
+ },
43493
+ type: 'object',
43494
+ },
43469
43495
  connect: {
43470
43496
  properties: { exclude: { type: 'boolean' } },
43471
43497
  type: 'object',
@@ -52861,6 +52887,12 @@ export default {
52861
52887
  },
52862
52888
  type: 'array',
52863
52889
  },
52890
+ connect_webviews: {
52891
+ items: {
52892
+ $ref: '#/components/schemas/connect_webview',
52893
+ },
52894
+ type: 'array',
52895
+ },
52864
52896
  devices: {
52865
52897
  items: { $ref: '#/components/schemas/device' },
52866
52898
  type: 'array',
@@ -52989,6 +53021,12 @@ export default {
52989
53021
  },
52990
53022
  type: 'array',
52991
53023
  },
53024
+ connect_webviews: {
53025
+ items: {
53026
+ $ref: '#/components/schemas/connect_webview',
53027
+ },
53028
+ type: 'array',
53029
+ },
52992
53030
  devices: {
52993
53031
  items: { $ref: '#/components/schemas/device' },
52994
53032
  type: 'array',