@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
|
@@ -686,6 +686,27 @@ export default {
|
|
|
686
686
|
required: ['created_at', 'message', 'warning_code'],
|
|
687
687
|
type: 'object',
|
|
688
688
|
},
|
|
689
|
+
{
|
|
690
|
+
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.',
|
|
691
|
+
properties: {
|
|
692
|
+
created_at: {
|
|
693
|
+
description: 'Date and time at which Seam created the warning.',
|
|
694
|
+
format: 'date-time',
|
|
695
|
+
type: 'string',
|
|
696
|
+
},
|
|
697
|
+
message: {
|
|
698
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
699
|
+
type: 'string',
|
|
700
|
+
},
|
|
701
|
+
warning_code: {
|
|
702
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
703
|
+
enum: ['needs_to_be_reissued'],
|
|
704
|
+
type: 'string',
|
|
705
|
+
},
|
|
706
|
+
},
|
|
707
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
708
|
+
type: 'object',
|
|
709
|
+
},
|
|
689
710
|
],
|
|
690
711
|
},
|
|
691
712
|
type: 'array',
|
|
@@ -2051,6 +2072,31 @@ export default {
|
|
|
2051
2072
|
],
|
|
2052
2073
|
type: 'object',
|
|
2053
2074
|
},
|
|
2075
|
+
{
|
|
2076
|
+
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.',
|
|
2077
|
+
properties: {
|
|
2078
|
+
created_at: {
|
|
2079
|
+
description: 'Date and time at which Seam created the warning.',
|
|
2080
|
+
format: 'date-time',
|
|
2081
|
+
type: 'string',
|
|
2082
|
+
},
|
|
2083
|
+
message: {
|
|
2084
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2085
|
+
type: 'string',
|
|
2086
|
+
},
|
|
2087
|
+
warning_code: {
|
|
2088
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2089
|
+
enum: ['needs_to_be_reissued'],
|
|
2090
|
+
type: 'string',
|
|
2091
|
+
},
|
|
2092
|
+
},
|
|
2093
|
+
required: [
|
|
2094
|
+
'created_at',
|
|
2095
|
+
'message',
|
|
2096
|
+
'warning_code',
|
|
2097
|
+
],
|
|
2098
|
+
type: 'object',
|
|
2099
|
+
},
|
|
2054
2100
|
],
|
|
2055
2101
|
},
|
|
2056
2102
|
type: 'array',
|
|
@@ -2342,6 +2388,31 @@ export default {
|
|
|
2342
2388
|
],
|
|
2343
2389
|
type: 'object',
|
|
2344
2390
|
},
|
|
2391
|
+
{
|
|
2392
|
+
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.',
|
|
2393
|
+
properties: {
|
|
2394
|
+
created_at: {
|
|
2395
|
+
description: 'Date and time at which Seam created the warning.',
|
|
2396
|
+
format: 'date-time',
|
|
2397
|
+
type: 'string',
|
|
2398
|
+
},
|
|
2399
|
+
message: {
|
|
2400
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2401
|
+
type: 'string',
|
|
2402
|
+
},
|
|
2403
|
+
warning_code: {
|
|
2404
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2405
|
+
enum: ['needs_to_be_reissued'],
|
|
2406
|
+
type: 'string',
|
|
2407
|
+
},
|
|
2408
|
+
},
|
|
2409
|
+
required: [
|
|
2410
|
+
'created_at',
|
|
2411
|
+
'message',
|
|
2412
|
+
'warning_code',
|
|
2413
|
+
],
|
|
2414
|
+
type: 'object',
|
|
2415
|
+
},
|
|
2345
2416
|
],
|
|
2346
2417
|
},
|
|
2347
2418
|
type: 'array',
|
|
@@ -2762,6 +2833,31 @@ export default {
|
|
|
2762
2833
|
],
|
|
2763
2834
|
type: 'object',
|
|
2764
2835
|
},
|
|
2836
|
+
{
|
|
2837
|
+
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.',
|
|
2838
|
+
properties: {
|
|
2839
|
+
created_at: {
|
|
2840
|
+
description: 'Date and time at which Seam created the warning.',
|
|
2841
|
+
format: 'date-time',
|
|
2842
|
+
type: 'string',
|
|
2843
|
+
},
|
|
2844
|
+
message: {
|
|
2845
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2846
|
+
type: 'string',
|
|
2847
|
+
},
|
|
2848
|
+
warning_code: {
|
|
2849
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2850
|
+
enum: ['needs_to_be_reissued'],
|
|
2851
|
+
type: 'string',
|
|
2852
|
+
},
|
|
2853
|
+
},
|
|
2854
|
+
required: [
|
|
2855
|
+
'created_at',
|
|
2856
|
+
'message',
|
|
2857
|
+
'warning_code',
|
|
2858
|
+
],
|
|
2859
|
+
type: 'object',
|
|
2860
|
+
},
|
|
2765
2861
|
],
|
|
2766
2862
|
},
|
|
2767
2863
|
type: 'array',
|
|
@@ -3051,6 +3147,31 @@ export default {
|
|
|
3051
3147
|
],
|
|
3052
3148
|
type: 'object',
|
|
3053
3149
|
},
|
|
3150
|
+
{
|
|
3151
|
+
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.',
|
|
3152
|
+
properties: {
|
|
3153
|
+
created_at: {
|
|
3154
|
+
description: 'Date and time at which Seam created the warning.',
|
|
3155
|
+
format: 'date-time',
|
|
3156
|
+
type: 'string',
|
|
3157
|
+
},
|
|
3158
|
+
message: {
|
|
3159
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
3160
|
+
type: 'string',
|
|
3161
|
+
},
|
|
3162
|
+
warning_code: {
|
|
3163
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
3164
|
+
enum: ['needs_to_be_reissued'],
|
|
3165
|
+
type: 'string',
|
|
3166
|
+
},
|
|
3167
|
+
},
|
|
3168
|
+
required: [
|
|
3169
|
+
'created_at',
|
|
3170
|
+
'message',
|
|
3171
|
+
'warning_code',
|
|
3172
|
+
],
|
|
3173
|
+
type: 'object',
|
|
3174
|
+
},
|
|
3054
3175
|
],
|
|
3055
3176
|
},
|
|
3056
3177
|
type: 'array',
|
|
@@ -7075,6 +7196,53 @@ export default {
|
|
|
7075
7196
|
type: 'object',
|
|
7076
7197
|
'x-route-path': '/acs/credentials',
|
|
7077
7198
|
},
|
|
7199
|
+
{
|
|
7200
|
+
description: 'An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was reissued.',
|
|
7201
|
+
properties: {
|
|
7202
|
+
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
7203
|
+
acs_system_id: {
|
|
7204
|
+
description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
7205
|
+
format: 'uuid',
|
|
7206
|
+
type: 'string',
|
|
7207
|
+
},
|
|
7208
|
+
connected_account_id: {
|
|
7209
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7210
|
+
format: 'uuid',
|
|
7211
|
+
type: 'string',
|
|
7212
|
+
},
|
|
7213
|
+
created_at: {
|
|
7214
|
+
description: 'Date and time at which the event was created.',
|
|
7215
|
+
format: 'date-time',
|
|
7216
|
+
type: 'string',
|
|
7217
|
+
},
|
|
7218
|
+
event_id: {
|
|
7219
|
+
description: 'ID of the event.',
|
|
7220
|
+
format: 'uuid',
|
|
7221
|
+
type: 'string',
|
|
7222
|
+
},
|
|
7223
|
+
event_type: { enum: ['acs_credential.reissued'], type: 'string' },
|
|
7224
|
+
occurred_at: {
|
|
7225
|
+
description: 'Date and time at which the event occurred.',
|
|
7226
|
+
format: 'date-time',
|
|
7227
|
+
type: 'string',
|
|
7228
|
+
},
|
|
7229
|
+
workspace_id: {
|
|
7230
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7231
|
+
format: 'uuid',
|
|
7232
|
+
type: 'string',
|
|
7233
|
+
},
|
|
7234
|
+
},
|
|
7235
|
+
required: [
|
|
7236
|
+
'event_id',
|
|
7237
|
+
'workspace_id',
|
|
7238
|
+
'created_at',
|
|
7239
|
+
'occurred_at',
|
|
7240
|
+
'acs_system_id',
|
|
7241
|
+
'acs_credential_id',
|
|
7242
|
+
'event_type',
|
|
7243
|
+
],
|
|
7244
|
+
type: 'object',
|
|
7245
|
+
},
|
|
7078
7246
|
{
|
|
7079
7247
|
description: 'An [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was deleted.',
|
|
7080
7248
|
properties: {
|
|
@@ -9647,6 +9815,7 @@ export default {
|
|
|
9647
9815
|
'x-route-path': '/thermostats',
|
|
9648
9816
|
},
|
|
9649
9817
|
{
|
|
9818
|
+
description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading is within 1 °C of the configured cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
|
|
9650
9819
|
properties: {
|
|
9651
9820
|
connected_account_id: {
|
|
9652
9821
|
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
@@ -9659,12 +9828,12 @@ export default {
|
|
|
9659
9828
|
type: 'string',
|
|
9660
9829
|
},
|
|
9661
9830
|
desired_temperature_celsius: {
|
|
9662
|
-
description: "Desired temperature, in °C,
|
|
9831
|
+
description: "Desired temperature, in °C, 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).",
|
|
9663
9832
|
format: 'float',
|
|
9664
9833
|
type: 'number',
|
|
9665
9834
|
},
|
|
9666
9835
|
desired_temperature_fahrenheit: {
|
|
9667
|
-
description: "Desired temperature, in °F,
|
|
9836
|
+
description: "Desired temperature, in °F, 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).",
|
|
9668
9837
|
format: 'float',
|
|
9669
9838
|
type: 'number',
|
|
9670
9839
|
},
|
|
@@ -9688,12 +9857,12 @@ export default {
|
|
|
9688
9857
|
type: 'string',
|
|
9689
9858
|
},
|
|
9690
9859
|
temperature_celsius: {
|
|
9691
|
-
description: 'Temperature, in °C, reported by the thermostat.',
|
|
9860
|
+
description: 'Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
|
|
9692
9861
|
format: 'float',
|
|
9693
9862
|
type: 'number',
|
|
9694
9863
|
},
|
|
9695
9864
|
temperature_fahrenheit: {
|
|
9696
|
-
description: 'Temperature, in °F, reported by the thermostat.',
|
|
9865
|
+
description: 'Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
|
|
9697
9866
|
format: 'float',
|
|
9698
9867
|
type: 'number',
|
|
9699
9868
|
},
|
|
@@ -14285,6 +14454,31 @@ export default {
|
|
|
14285
14454
|
],
|
|
14286
14455
|
type: 'object',
|
|
14287
14456
|
},
|
|
14457
|
+
{
|
|
14458
|
+
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.',
|
|
14459
|
+
properties: {
|
|
14460
|
+
created_at: {
|
|
14461
|
+
description: 'Date and time at which Seam created the warning.',
|
|
14462
|
+
format: 'date-time',
|
|
14463
|
+
type: 'string',
|
|
14464
|
+
},
|
|
14465
|
+
message: {
|
|
14466
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
14467
|
+
type: 'string',
|
|
14468
|
+
},
|
|
14469
|
+
warning_code: {
|
|
14470
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
14471
|
+
enum: ['needs_to_be_reissued'],
|
|
14472
|
+
type: 'string',
|
|
14473
|
+
},
|
|
14474
|
+
},
|
|
14475
|
+
required: [
|
|
14476
|
+
'created_at',
|
|
14477
|
+
'message',
|
|
14478
|
+
'warning_code',
|
|
14479
|
+
],
|
|
14480
|
+
type: 'object',
|
|
14481
|
+
},
|
|
14288
14482
|
],
|
|
14289
14483
|
},
|
|
14290
14484
|
type: 'array',
|
|
@@ -14673,6 +14867,31 @@ export default {
|
|
|
14673
14867
|
],
|
|
14674
14868
|
type: 'object',
|
|
14675
14869
|
},
|
|
14870
|
+
{
|
|
14871
|
+
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.',
|
|
14872
|
+
properties: {
|
|
14873
|
+
created_at: {
|
|
14874
|
+
description: 'Date and time at which Seam created the warning.',
|
|
14875
|
+
format: 'date-time',
|
|
14876
|
+
type: 'string',
|
|
14877
|
+
},
|
|
14878
|
+
message: {
|
|
14879
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
14880
|
+
type: 'string',
|
|
14881
|
+
},
|
|
14882
|
+
warning_code: {
|
|
14883
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
14884
|
+
enum: ['needs_to_be_reissued'],
|
|
14885
|
+
type: 'string',
|
|
14886
|
+
},
|
|
14887
|
+
},
|
|
14888
|
+
required: [
|
|
14889
|
+
'created_at',
|
|
14890
|
+
'message',
|
|
14891
|
+
'warning_code',
|
|
14892
|
+
],
|
|
14893
|
+
type: 'object',
|
|
14894
|
+
},
|
|
14676
14895
|
],
|
|
14677
14896
|
},
|
|
14678
14897
|
type: 'array',
|
|
@@ -19716,6 +19935,7 @@ export default {
|
|
|
19716
19935
|
'acs_user.deleted',
|
|
19717
19936
|
'acs_credential.deleted',
|
|
19718
19937
|
'acs_credential.issued',
|
|
19938
|
+
'acs_credential.reissued',
|
|
19719
19939
|
'acs_encoder.added',
|
|
19720
19940
|
'acs_encoder.removed',
|
|
19721
19941
|
'enrollment_automation.deleted',
|
|
@@ -19795,6 +20015,7 @@ export default {
|
|
|
19795
20015
|
'acs_user.deleted',
|
|
19796
20016
|
'acs_credential.deleted',
|
|
19797
20017
|
'acs_credential.issued',
|
|
20018
|
+
'acs_credential.reissued',
|
|
19798
20019
|
'acs_encoder.added',
|
|
19799
20020
|
'acs_encoder.removed',
|
|
19800
20021
|
'enrollment_automation.deleted',
|