@seamapi/types 1.316.0 → 1.317.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
@@ -996,8 +996,7 @@ var PROVIDER_CATEGORY_MAP = {
996
996
  "honeywell_resideo",
997
997
  "visionline",
998
998
  "assa_abloy_credential_service",
999
- "latch",
1000
- "assa_abloy_vostio"
999
+ "latch"
1001
1000
  ],
1002
1001
  consumer_smartlocks: [
1003
1002
  "august",
@@ -1022,7 +1021,8 @@ var PROVIDER_CATEGORY_MAP = {
1022
1021
  "salto_ks",
1023
1022
  "assa_abloy_vostio",
1024
1023
  "assa_abloy_vostio_credential_service",
1025
- "salto_space"
1024
+ "salto_space",
1025
+ "assa_abloy_vostio"
1026
1026
  ],
1027
1027
  internal_beta: ALL_DEVICE_PROVIDERS
1028
1028
  };
@@ -1281,17 +1281,24 @@ var schedule_modified = common_acs_credential_warning.extend({
1281
1281
  var being_deleted = common_acs_credential_warning.extend({
1282
1282
  warning_code: zod.z.literal("being_deleted").describe(warning_code_description)
1283
1283
  }).describe("Indicates that this credential is being deleted.");
1284
+ var unknown_issue_with_credential = common_acs_credential_warning.extend({
1285
+ warning_code: zod.z.literal("unknown_issue_with_credential").describe(warning_code_description)
1286
+ }).describe(
1287
+ "An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential."
1288
+ );
1284
1289
  var acs_credential_warning = zod.z.union([
1285
1290
  waiting_to_be_issued,
1286
1291
  schedule_externally_modified,
1287
1292
  schedule_modified,
1288
- being_deleted
1293
+ being_deleted,
1294
+ unknown_issue_with_credential
1289
1295
  ]).describe("Warning associated with the `acs_credential`.");
1290
1296
  zod.z.object({
1291
1297
  waiting_to_be_issued: waiting_to_be_issued.optional().nullable(),
1292
1298
  schedule_externally_modified: schedule_externally_modified.optional().nullable(),
1293
1299
  schedule_modified: schedule_modified.optional().nullable(),
1294
- being_deleted: being_deleted.optional().nullable()
1300
+ being_deleted: being_deleted.optional().nullable(),
1301
+ unknown_issue_with_credential: unknown_issue_with_credential.optional().nullable()
1295
1302
  });
1296
1303
  var common_acs_credential = zod.z.object({
1297
1304
  acs_credential_id: zod.z.string().uuid().describe("ID of the credential."),
@@ -3291,6 +3298,27 @@ var openapi_default = {
3291
3298
  },
3292
3299
  required: ["created_at", "message", "warning_code"],
3293
3300
  type: "object"
3301
+ },
3302
+ {
3303
+ description: "An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.",
3304
+ properties: {
3305
+ created_at: {
3306
+ description: "Date and time at which Seam created the warning.",
3307
+ format: "date-time",
3308
+ type: "string"
3309
+ },
3310
+ message: {
3311
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
3312
+ type: "string"
3313
+ },
3314
+ warning_code: {
3315
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
3316
+ enum: ["unknown_issue_with_credential"],
3317
+ type: "string"
3318
+ }
3319
+ },
3320
+ required: ["created_at", "message", "warning_code"],
3321
+ type: "object"
3294
3322
  }
3295
3323
  ]
3296
3324
  },
@@ -4622,6 +4650,31 @@ var openapi_default = {
4622
4650
  "warning_code"
4623
4651
  ],
4624
4652
  type: "object"
4653
+ },
4654
+ {
4655
+ description: "An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.",
4656
+ properties: {
4657
+ created_at: {
4658
+ description: "Date and time at which Seam created the warning.",
4659
+ format: "date-time",
4660
+ type: "string"
4661
+ },
4662
+ message: {
4663
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
4664
+ type: "string"
4665
+ },
4666
+ warning_code: {
4667
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
4668
+ enum: ["unknown_issue_with_credential"],
4669
+ type: "string"
4670
+ }
4671
+ },
4672
+ required: [
4673
+ "created_at",
4674
+ "message",
4675
+ "warning_code"
4676
+ ],
4677
+ type: "object"
4625
4678
  }
4626
4679
  ]
4627
4680
  },
@@ -4884,6 +4937,31 @@ var openapi_default = {
4884
4937
  "warning_code"
4885
4938
  ],
4886
4939
  type: "object"
4940
+ },
4941
+ {
4942
+ description: "An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.",
4943
+ properties: {
4944
+ created_at: {
4945
+ description: "Date and time at which Seam created the warning.",
4946
+ format: "date-time",
4947
+ type: "string"
4948
+ },
4949
+ message: {
4950
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
4951
+ type: "string"
4952
+ },
4953
+ warning_code: {
4954
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
4955
+ enum: ["unknown_issue_with_credential"],
4956
+ type: "string"
4957
+ }
4958
+ },
4959
+ required: [
4960
+ "created_at",
4961
+ "message",
4962
+ "warning_code"
4963
+ ],
4964
+ type: "object"
4887
4965
  }
4888
4966
  ]
4889
4967
  },
@@ -5277,6 +5355,31 @@ var openapi_default = {
5277
5355
  "warning_code"
5278
5356
  ],
5279
5357
  type: "object"
5358
+ },
5359
+ {
5360
+ description: "An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.",
5361
+ properties: {
5362
+ created_at: {
5363
+ description: "Date and time at which Seam created the warning.",
5364
+ format: "date-time",
5365
+ type: "string"
5366
+ },
5367
+ message: {
5368
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
5369
+ type: "string"
5370
+ },
5371
+ warning_code: {
5372
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
5373
+ enum: ["unknown_issue_with_credential"],
5374
+ type: "string"
5375
+ }
5376
+ },
5377
+ required: [
5378
+ "created_at",
5379
+ "message",
5380
+ "warning_code"
5381
+ ],
5382
+ type: "object"
5280
5383
  }
5281
5384
  ]
5282
5385
  },
@@ -5539,6 +5642,31 @@ var openapi_default = {
5539
5642
  "warning_code"
5540
5643
  ],
5541
5644
  type: "object"
5645
+ },
5646
+ {
5647
+ description: "An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.",
5648
+ properties: {
5649
+ created_at: {
5650
+ description: "Date and time at which Seam created the warning.",
5651
+ format: "date-time",
5652
+ type: "string"
5653
+ },
5654
+ message: {
5655
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
5656
+ type: "string"
5657
+ },
5658
+ warning_code: {
5659
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
5660
+ enum: ["unknown_issue_with_credential"],
5661
+ type: "string"
5662
+ }
5663
+ },
5664
+ required: [
5665
+ "created_at",
5666
+ "message",
5667
+ "warning_code"
5668
+ ],
5669
+ type: "object"
5542
5670
  }
5543
5671
  ]
5544
5672
  },
@@ -15851,6 +15979,31 @@ var openapi_default = {
15851
15979
  "warning_code"
15852
15980
  ],
15853
15981
  type: "object"
15982
+ },
15983
+ {
15984
+ description: "An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.",
15985
+ properties: {
15986
+ created_at: {
15987
+ description: "Date and time at which Seam created the warning.",
15988
+ format: "date-time",
15989
+ type: "string"
15990
+ },
15991
+ message: {
15992
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
15993
+ type: "string"
15994
+ },
15995
+ warning_code: {
15996
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
15997
+ enum: ["unknown_issue_with_credential"],
15998
+ type: "string"
15999
+ }
16000
+ },
16001
+ required: [
16002
+ "created_at",
16003
+ "message",
16004
+ "warning_code"
16005
+ ],
16006
+ type: "object"
15854
16007
  }
15855
16008
  ]
15856
16009
  },
@@ -16210,6 +16363,31 @@ var openapi_default = {
16210
16363
  "warning_code"
16211
16364
  ],
16212
16365
  type: "object"
16366
+ },
16367
+ {
16368
+ description: "An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.",
16369
+ properties: {
16370
+ created_at: {
16371
+ description: "Date and time at which Seam created the warning.",
16372
+ format: "date-time",
16373
+ type: "string"
16374
+ },
16375
+ message: {
16376
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
16377
+ type: "string"
16378
+ },
16379
+ warning_code: {
16380
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
16381
+ enum: ["unknown_issue_with_credential"],
16382
+ type: "string"
16383
+ }
16384
+ },
16385
+ required: [
16386
+ "created_at",
16387
+ "message",
16388
+ "warning_code"
16389
+ ],
16390
+ type: "object"
16213
16391
  }
16214
16392
  ]
16215
16393
  },