@seamapi/types 1.328.0 → 1.329.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 +250 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1038 -59
- package/lib/seam/connect/models/acs/acs-credential.d.ts +66 -0
- package/lib/seam/connect/models/acs/acs-credential.js +9 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +132 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +58 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +74 -0
- package/lib/seam/connect/models/events/acs/credentials.d.ts +61 -0
- package/lib/seam/connect/models/events/acs/credentials.js +6 -0
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/index.d.ts +30 -0
- package/lib/seam/connect/models/events/devices.js +5 -4
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +30 -0
- package/lib/seam/connect/openapi.d.ts +88 -1
- package/lib/seam/connect/openapi.js +225 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +698 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +12 -0
- package/src/lib/seam/connect/models/events/acs/credentials.ts +9 -0
- package/src/lib/seam/connect/models/events/devices.ts +9 -4
- package/src/lib/seam/connect/openapi.ts +260 -4
- package/src/lib/seam/connect/route-types.ts +794 -8
package/dist/connect.cjs
CHANGED
|
@@ -1401,19 +1401,26 @@ var unknown_issue_with_acs_credential = common_acs_credential_warning.extend({
|
|
|
1401
1401
|
}).describe(
|
|
1402
1402
|
"An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential."
|
|
1403
1403
|
);
|
|
1404
|
+
var needs_to_be_reissued = common_acs_credential_warning.extend({
|
|
1405
|
+
warning_code: zod.z.literal("needs_to_be_reissued").describe(warning_code_description3)
|
|
1406
|
+
}).describe(
|
|
1407
|
+
"Access permissions for this [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) have changed. [Reissue](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners/creating-and-encoding-card-based-credentials) (re-encode) this credential. This issue may affect the proper functioning of the credential."
|
|
1408
|
+
);
|
|
1404
1409
|
var acs_credential_warning = zod.z.union([
|
|
1405
1410
|
waiting_to_be_issued,
|
|
1406
1411
|
schedule_externally_modified,
|
|
1407
1412
|
schedule_modified,
|
|
1408
1413
|
being_deleted,
|
|
1409
|
-
unknown_issue_with_acs_credential
|
|
1414
|
+
unknown_issue_with_acs_credential,
|
|
1415
|
+
needs_to_be_reissued
|
|
1410
1416
|
]).describe("Warning associated with the `acs_credential`.");
|
|
1411
1417
|
zod.z.object({
|
|
1412
1418
|
waiting_to_be_issued: waiting_to_be_issued.optional().nullable(),
|
|
1413
1419
|
schedule_externally_modified: schedule_externally_modified.optional().nullable(),
|
|
1414
1420
|
schedule_modified: schedule_modified.optional().nullable(),
|
|
1415
1421
|
being_deleted: being_deleted.optional().nullable(),
|
|
1416
|
-
unknown_issue_with_acs_credential: unknown_issue_with_acs_credential.optional().nullable()
|
|
1422
|
+
unknown_issue_with_acs_credential: unknown_issue_with_acs_credential.optional().nullable(),
|
|
1423
|
+
needs_to_be_reissued: needs_to_be_reissued.optional().nullable()
|
|
1417
1424
|
});
|
|
1418
1425
|
var common_acs_credential = zod.z.object({
|
|
1419
1426
|
acs_credential_id: zod.z.string().uuid().describe("ID of the credential."),
|
|
@@ -2527,9 +2534,15 @@ var acs_credential_issued = acs_credential_event.extend({
|
|
|
2527
2534
|
---
|
|
2528
2535
|
An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was issued.
|
|
2529
2536
|
`);
|
|
2537
|
+
var acs_credential_reissued = acs_credential_event.extend({
|
|
2538
|
+
event_type: zod.z.literal("acs_credential.reissued")
|
|
2539
|
+
}).describe(
|
|
2540
|
+
"An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was reissued."
|
|
2541
|
+
);
|
|
2530
2542
|
var acs_credential_events = [
|
|
2531
2543
|
acs_credential_deleted_event,
|
|
2532
|
-
acs_credential_issued
|
|
2544
|
+
acs_credential_issued,
|
|
2545
|
+
acs_credential_reissued
|
|
2533
2546
|
];
|
|
2534
2547
|
var acs_encoder_event = common_acs_event.extend({
|
|
2535
2548
|
acs_encoder_id: zod.z.string().uuid().describe(
|
|
@@ -3135,18 +3148,23 @@ var temperature_threshold_no_longer_exceeded_event = device_event.extend({
|
|
|
3135
3148
|
`);
|
|
3136
3149
|
var temperature_reached_set_point_event = device_event.extend({
|
|
3137
3150
|
event_type: zod.z.literal("thermostat.temperature_reached_set_point"),
|
|
3138
|
-
temperature_celsius: zod.z.number().describe(
|
|
3139
|
-
|
|
3151
|
+
temperature_celsius: zod.z.number().describe(
|
|
3152
|
+
"Temperature, in \xB0C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
|
|
3153
|
+
),
|
|
3154
|
+
temperature_fahrenheit: zod.z.number().describe(
|
|
3155
|
+
"Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
|
|
3156
|
+
),
|
|
3140
3157
|
desired_temperature_celsius: zod.z.number().optional().describe(
|
|
3141
|
-
"Desired temperature, in \xB0C,
|
|
3158
|
+
"Desired temperature, in \xB0C, defined by the [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points)."
|
|
3142
3159
|
),
|
|
3143
3160
|
desired_temperature_fahrenheit: zod.z.number().optional().describe(
|
|
3144
|
-
"Desired temperature, in \xB0F,
|
|
3161
|
+
"Desired temperature, in \xB0F, defined by the [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points)."
|
|
3145
3162
|
)
|
|
3146
3163
|
}).describe(`
|
|
3147
3164
|
---
|
|
3148
3165
|
route_path: /thermostats
|
|
3149
3166
|
---
|
|
3167
|
+
A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading is within 1 \xB0C of the configured cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
|
|
3150
3168
|
`);
|
|
3151
3169
|
var device_events = [
|
|
3152
3170
|
device_connected_event,
|
|
@@ -3978,6 +3996,27 @@ var openapi_default = {
|
|
|
3978
3996
|
},
|
|
3979
3997
|
required: ["created_at", "message", "warning_code"],
|
|
3980
3998
|
type: "object"
|
|
3999
|
+
},
|
|
4000
|
+
{
|
|
4001
|
+
description: "Access permissions for this [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) have changed. [Reissue](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners/creating-and-encoding-card-based-credentials) (re-encode) this credential. This issue may affect the proper functioning of the credential.",
|
|
4002
|
+
properties: {
|
|
4003
|
+
created_at: {
|
|
4004
|
+
description: "Date and time at which Seam created the warning.",
|
|
4005
|
+
format: "date-time",
|
|
4006
|
+
type: "string"
|
|
4007
|
+
},
|
|
4008
|
+
message: {
|
|
4009
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
4010
|
+
type: "string"
|
|
4011
|
+
},
|
|
4012
|
+
warning_code: {
|
|
4013
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
4014
|
+
enum: ["needs_to_be_reissued"],
|
|
4015
|
+
type: "string"
|
|
4016
|
+
}
|
|
4017
|
+
},
|
|
4018
|
+
required: ["created_at", "message", "warning_code"],
|
|
4019
|
+
type: "object"
|
|
3981
4020
|
}
|
|
3982
4021
|
]
|
|
3983
4022
|
},
|
|
@@ -5343,6 +5382,31 @@ var openapi_default = {
|
|
|
5343
5382
|
"warning_code"
|
|
5344
5383
|
],
|
|
5345
5384
|
type: "object"
|
|
5385
|
+
},
|
|
5386
|
+
{
|
|
5387
|
+
description: "Access permissions for this [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) have changed. [Reissue](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners/creating-and-encoding-card-based-credentials) (re-encode) this credential. This issue may affect the proper functioning of the credential.",
|
|
5388
|
+
properties: {
|
|
5389
|
+
created_at: {
|
|
5390
|
+
description: "Date and time at which Seam created the warning.",
|
|
5391
|
+
format: "date-time",
|
|
5392
|
+
type: "string"
|
|
5393
|
+
},
|
|
5394
|
+
message: {
|
|
5395
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
5396
|
+
type: "string"
|
|
5397
|
+
},
|
|
5398
|
+
warning_code: {
|
|
5399
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
5400
|
+
enum: ["needs_to_be_reissued"],
|
|
5401
|
+
type: "string"
|
|
5402
|
+
}
|
|
5403
|
+
},
|
|
5404
|
+
required: [
|
|
5405
|
+
"created_at",
|
|
5406
|
+
"message",
|
|
5407
|
+
"warning_code"
|
|
5408
|
+
],
|
|
5409
|
+
type: "object"
|
|
5346
5410
|
}
|
|
5347
5411
|
]
|
|
5348
5412
|
},
|
|
@@ -5634,6 +5698,31 @@ var openapi_default = {
|
|
|
5634
5698
|
"warning_code"
|
|
5635
5699
|
],
|
|
5636
5700
|
type: "object"
|
|
5701
|
+
},
|
|
5702
|
+
{
|
|
5703
|
+
description: "Access permissions for this [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) have changed. [Reissue](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners/creating-and-encoding-card-based-credentials) (re-encode) this credential. This issue may affect the proper functioning of the credential.",
|
|
5704
|
+
properties: {
|
|
5705
|
+
created_at: {
|
|
5706
|
+
description: "Date and time at which Seam created the warning.",
|
|
5707
|
+
format: "date-time",
|
|
5708
|
+
type: "string"
|
|
5709
|
+
},
|
|
5710
|
+
message: {
|
|
5711
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
5712
|
+
type: "string"
|
|
5713
|
+
},
|
|
5714
|
+
warning_code: {
|
|
5715
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
5716
|
+
enum: ["needs_to_be_reissued"],
|
|
5717
|
+
type: "string"
|
|
5718
|
+
}
|
|
5719
|
+
},
|
|
5720
|
+
required: [
|
|
5721
|
+
"created_at",
|
|
5722
|
+
"message",
|
|
5723
|
+
"warning_code"
|
|
5724
|
+
],
|
|
5725
|
+
type: "object"
|
|
5637
5726
|
}
|
|
5638
5727
|
]
|
|
5639
5728
|
},
|
|
@@ -6054,6 +6143,31 @@ var openapi_default = {
|
|
|
6054
6143
|
"warning_code"
|
|
6055
6144
|
],
|
|
6056
6145
|
type: "object"
|
|
6146
|
+
},
|
|
6147
|
+
{
|
|
6148
|
+
description: "Access permissions for this [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) have changed. [Reissue](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners/creating-and-encoding-card-based-credentials) (re-encode) this credential. This issue may affect the proper functioning of the credential.",
|
|
6149
|
+
properties: {
|
|
6150
|
+
created_at: {
|
|
6151
|
+
description: "Date and time at which Seam created the warning.",
|
|
6152
|
+
format: "date-time",
|
|
6153
|
+
type: "string"
|
|
6154
|
+
},
|
|
6155
|
+
message: {
|
|
6156
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
6157
|
+
type: "string"
|
|
6158
|
+
},
|
|
6159
|
+
warning_code: {
|
|
6160
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
6161
|
+
enum: ["needs_to_be_reissued"],
|
|
6162
|
+
type: "string"
|
|
6163
|
+
}
|
|
6164
|
+
},
|
|
6165
|
+
required: [
|
|
6166
|
+
"created_at",
|
|
6167
|
+
"message",
|
|
6168
|
+
"warning_code"
|
|
6169
|
+
],
|
|
6170
|
+
type: "object"
|
|
6057
6171
|
}
|
|
6058
6172
|
]
|
|
6059
6173
|
},
|
|
@@ -6343,6 +6457,31 @@ var openapi_default = {
|
|
|
6343
6457
|
"warning_code"
|
|
6344
6458
|
],
|
|
6345
6459
|
type: "object"
|
|
6460
|
+
},
|
|
6461
|
+
{
|
|
6462
|
+
description: "Access permissions for this [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) have changed. [Reissue](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners/creating-and-encoding-card-based-credentials) (re-encode) this credential. This issue may affect the proper functioning of the credential.",
|
|
6463
|
+
properties: {
|
|
6464
|
+
created_at: {
|
|
6465
|
+
description: "Date and time at which Seam created the warning.",
|
|
6466
|
+
format: "date-time",
|
|
6467
|
+
type: "string"
|
|
6468
|
+
},
|
|
6469
|
+
message: {
|
|
6470
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
6471
|
+
type: "string"
|
|
6472
|
+
},
|
|
6473
|
+
warning_code: {
|
|
6474
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
6475
|
+
enum: ["needs_to_be_reissued"],
|
|
6476
|
+
type: "string"
|
|
6477
|
+
}
|
|
6478
|
+
},
|
|
6479
|
+
required: [
|
|
6480
|
+
"created_at",
|
|
6481
|
+
"message",
|
|
6482
|
+
"warning_code"
|
|
6483
|
+
],
|
|
6484
|
+
type: "object"
|
|
6346
6485
|
}
|
|
6347
6486
|
]
|
|
6348
6487
|
},
|
|
@@ -10368,6 +10507,53 @@ var openapi_default = {
|
|
|
10368
10507
|
type: "object",
|
|
10369
10508
|
"x-route-path": "/acs/credentials"
|
|
10370
10509
|
},
|
|
10510
|
+
{
|
|
10511
|
+
description: "An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was reissued.",
|
|
10512
|
+
properties: {
|
|
10513
|
+
acs_credential_id: { format: "uuid", type: "string" },
|
|
10514
|
+
acs_system_id: {
|
|
10515
|
+
description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
|
|
10516
|
+
format: "uuid",
|
|
10517
|
+
type: "string"
|
|
10518
|
+
},
|
|
10519
|
+
connected_account_id: {
|
|
10520
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10521
|
+
format: "uuid",
|
|
10522
|
+
type: "string"
|
|
10523
|
+
},
|
|
10524
|
+
created_at: {
|
|
10525
|
+
description: "Date and time at which the event was created.",
|
|
10526
|
+
format: "date-time",
|
|
10527
|
+
type: "string"
|
|
10528
|
+
},
|
|
10529
|
+
event_id: {
|
|
10530
|
+
description: "ID of the event.",
|
|
10531
|
+
format: "uuid",
|
|
10532
|
+
type: "string"
|
|
10533
|
+
},
|
|
10534
|
+
event_type: { enum: ["acs_credential.reissued"], type: "string" },
|
|
10535
|
+
occurred_at: {
|
|
10536
|
+
description: "Date and time at which the event occurred.",
|
|
10537
|
+
format: "date-time",
|
|
10538
|
+
type: "string"
|
|
10539
|
+
},
|
|
10540
|
+
workspace_id: {
|
|
10541
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10542
|
+
format: "uuid",
|
|
10543
|
+
type: "string"
|
|
10544
|
+
}
|
|
10545
|
+
},
|
|
10546
|
+
required: [
|
|
10547
|
+
"event_id",
|
|
10548
|
+
"workspace_id",
|
|
10549
|
+
"created_at",
|
|
10550
|
+
"occurred_at",
|
|
10551
|
+
"acs_system_id",
|
|
10552
|
+
"acs_credential_id",
|
|
10553
|
+
"event_type"
|
|
10554
|
+
],
|
|
10555
|
+
type: "object"
|
|
10556
|
+
},
|
|
10371
10557
|
{
|
|
10372
10558
|
description: "An [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was deleted.",
|
|
10373
10559
|
properties: {
|
|
@@ -12940,6 +13126,7 @@ var openapi_default = {
|
|
|
12940
13126
|
"x-route-path": "/thermostats"
|
|
12941
13127
|
},
|
|
12942
13128
|
{
|
|
13129
|
+
description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading is within 1 \xB0C of the configured cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
|
|
12943
13130
|
properties: {
|
|
12944
13131
|
connected_account_id: {
|
|
12945
13132
|
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
@@ -12952,12 +13139,12 @@ var openapi_default = {
|
|
|
12952
13139
|
type: "string"
|
|
12953
13140
|
},
|
|
12954
13141
|
desired_temperature_celsius: {
|
|
12955
|
-
description: "Desired temperature, in \xB0C,
|
|
13142
|
+
description: "Desired temperature, in \xB0C, defined by the [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
|
|
12956
13143
|
format: "float",
|
|
12957
13144
|
type: "number"
|
|
12958
13145
|
},
|
|
12959
13146
|
desired_temperature_fahrenheit: {
|
|
12960
|
-
description: "Desired temperature, in \xB0F,
|
|
13147
|
+
description: "Desired temperature, in \xB0F, defined by the [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
|
|
12961
13148
|
format: "float",
|
|
12962
13149
|
type: "number"
|
|
12963
13150
|
},
|
|
@@ -12981,12 +13168,12 @@ var openapi_default = {
|
|
|
12981
13168
|
type: "string"
|
|
12982
13169
|
},
|
|
12983
13170
|
temperature_celsius: {
|
|
12984
|
-
description: "Temperature, in \xB0C, reported by the thermostat.",
|
|
13171
|
+
description: "Temperature, in \xB0C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).",
|
|
12985
13172
|
format: "float",
|
|
12986
13173
|
type: "number"
|
|
12987
13174
|
},
|
|
12988
13175
|
temperature_fahrenheit: {
|
|
12989
|
-
description: "Temperature, in \xB0F, reported by the thermostat.",
|
|
13176
|
+
description: "Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).",
|
|
12990
13177
|
format: "float",
|
|
12991
13178
|
type: "number"
|
|
12992
13179
|
},
|
|
@@ -17577,6 +17764,31 @@ var openapi_default = {
|
|
|
17577
17764
|
"warning_code"
|
|
17578
17765
|
],
|
|
17579
17766
|
type: "object"
|
|
17767
|
+
},
|
|
17768
|
+
{
|
|
17769
|
+
description: "Access permissions for this [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) have changed. [Reissue](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners/creating-and-encoding-card-based-credentials) (re-encode) this credential. This issue may affect the proper functioning of the credential.",
|
|
17770
|
+
properties: {
|
|
17771
|
+
created_at: {
|
|
17772
|
+
description: "Date and time at which Seam created the warning.",
|
|
17773
|
+
format: "date-time",
|
|
17774
|
+
type: "string"
|
|
17775
|
+
},
|
|
17776
|
+
message: {
|
|
17777
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
17778
|
+
type: "string"
|
|
17779
|
+
},
|
|
17780
|
+
warning_code: {
|
|
17781
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
17782
|
+
enum: ["needs_to_be_reissued"],
|
|
17783
|
+
type: "string"
|
|
17784
|
+
}
|
|
17785
|
+
},
|
|
17786
|
+
required: [
|
|
17787
|
+
"created_at",
|
|
17788
|
+
"message",
|
|
17789
|
+
"warning_code"
|
|
17790
|
+
],
|
|
17791
|
+
type: "object"
|
|
17580
17792
|
}
|
|
17581
17793
|
]
|
|
17582
17794
|
},
|
|
@@ -17965,6 +18177,31 @@ var openapi_default = {
|
|
|
17965
18177
|
"warning_code"
|
|
17966
18178
|
],
|
|
17967
18179
|
type: "object"
|
|
18180
|
+
},
|
|
18181
|
+
{
|
|
18182
|
+
description: "Access permissions for this [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) have changed. [Reissue](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners/creating-and-encoding-card-based-credentials) (re-encode) this credential. This issue may affect the proper functioning of the credential.",
|
|
18183
|
+
properties: {
|
|
18184
|
+
created_at: {
|
|
18185
|
+
description: "Date and time at which Seam created the warning.",
|
|
18186
|
+
format: "date-time",
|
|
18187
|
+
type: "string"
|
|
18188
|
+
},
|
|
18189
|
+
message: {
|
|
18190
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
18191
|
+
type: "string"
|
|
18192
|
+
},
|
|
18193
|
+
warning_code: {
|
|
18194
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
18195
|
+
enum: ["needs_to_be_reissued"],
|
|
18196
|
+
type: "string"
|
|
18197
|
+
}
|
|
18198
|
+
},
|
|
18199
|
+
required: [
|
|
18200
|
+
"created_at",
|
|
18201
|
+
"message",
|
|
18202
|
+
"warning_code"
|
|
18203
|
+
],
|
|
18204
|
+
type: "object"
|
|
17968
18205
|
}
|
|
17969
18206
|
]
|
|
17970
18207
|
},
|
|
@@ -23009,6 +23246,7 @@ var openapi_default = {
|
|
|
23009
23246
|
"acs_user.deleted",
|
|
23010
23247
|
"acs_credential.deleted",
|
|
23011
23248
|
"acs_credential.issued",
|
|
23249
|
+
"acs_credential.reissued",
|
|
23012
23250
|
"acs_encoder.added",
|
|
23013
23251
|
"acs_encoder.removed",
|
|
23014
23252
|
"enrollment_automation.deleted",
|
|
@@ -23088,6 +23326,7 @@ var openapi_default = {
|
|
|
23088
23326
|
"acs_user.deleted",
|
|
23089
23327
|
"acs_credential.deleted",
|
|
23090
23328
|
"acs_credential.issued",
|
|
23329
|
+
"acs_credential.reissued",
|
|
23091
23330
|
"acs_encoder.added",
|
|
23092
23331
|
"acs_encoder.removed",
|
|
23093
23332
|
"enrollment_automation.deleted",
|