@seamapi/types 1.289.1 → 1.291.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 +53 -16
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +134 -43
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +52 -7
- package/lib/seam/connect/models/acs/acs-encoder.js +28 -4
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +20 -0
- package/lib/seam/connect/models/acs/acs-system.js +22 -9
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/events/acs/encoders.d.ts +126 -0
- package/lib/seam/connect/models/events/acs/encoders.js +20 -0
- package/lib/seam/connect/models/events/acs/encoders.js.map +1 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +60 -0
- package/lib/seam/connect/models/events/acs/index.js +2 -0
- package/lib/seam/connect/models/events/acs/index.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +60 -0
- package/lib/seam/connect/openapi.d.ts +13 -22
- package/lib/seam/connect/openapi.js +22 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +30 -14
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +40 -6
- package/src/lib/seam/connect/models/acs/acs-system.ts +37 -21
- package/src/lib/seam/connect/models/events/acs/encoders.ts +28 -0
- package/src/lib/seam/connect/models/events/acs/index.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +25 -3
- package/src/lib/seam/connect/route-types.ts +32 -12
|
@@ -8109,6 +8109,10 @@ export interface Routes {
|
|
|
8109
8109
|
/**
|
|
8110
8110
|
* @deprecated Use `external_type_display_name`. */
|
|
8111
8111
|
system_type_display_name?: string | undefined
|
|
8112
|
+
location: {
|
|
8113
|
+
/** Time zone in which the `acs_system` is located. */
|
|
8114
|
+
time_zone: string | null
|
|
8115
|
+
}
|
|
8112
8116
|
/** Name of the `acs_system`. */
|
|
8113
8117
|
name: string
|
|
8114
8118
|
/** Date and time at which the `acs_system` was created. */
|
|
@@ -8144,7 +8148,7 @@ export interface Routes {
|
|
|
8144
8148
|
created_at: string
|
|
8145
8149
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8146
8150
|
message: string
|
|
8147
|
-
/**
|
|
8151
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8148
8152
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
8149
8153
|
}
|
|
8150
8154
|
| {
|
|
@@ -8152,7 +8156,7 @@ export interface Routes {
|
|
|
8152
8156
|
created_at: string
|
|
8153
8157
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8154
8158
|
message: string
|
|
8155
|
-
/**
|
|
8159
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8156
8160
|
error_code: 'acs_system_disconnected'
|
|
8157
8161
|
}
|
|
8158
8162
|
| {
|
|
@@ -8160,7 +8164,7 @@ export interface Routes {
|
|
|
8160
8164
|
created_at: string
|
|
8161
8165
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8162
8166
|
message: string
|
|
8163
|
-
/**
|
|
8167
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8164
8168
|
error_code: 'account_disconnected'
|
|
8165
8169
|
}
|
|
8166
8170
|
>
|
|
@@ -8252,6 +8256,10 @@ export interface Routes {
|
|
|
8252
8256
|
/**
|
|
8253
8257
|
* @deprecated Use `external_type_display_name`. */
|
|
8254
8258
|
system_type_display_name?: string | undefined
|
|
8259
|
+
location: {
|
|
8260
|
+
/** Time zone in which the `acs_system` is located. */
|
|
8261
|
+
time_zone: string | null
|
|
8262
|
+
}
|
|
8255
8263
|
/** Name of the `acs_system`. */
|
|
8256
8264
|
name: string
|
|
8257
8265
|
/** Date and time at which the `acs_system` was created. */
|
|
@@ -8287,7 +8295,7 @@ export interface Routes {
|
|
|
8287
8295
|
created_at: string
|
|
8288
8296
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8289
8297
|
message: string
|
|
8290
|
-
/**
|
|
8298
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8291
8299
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
8292
8300
|
}
|
|
8293
8301
|
| {
|
|
@@ -8295,7 +8303,7 @@ export interface Routes {
|
|
|
8295
8303
|
created_at: string
|
|
8296
8304
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8297
8305
|
message: string
|
|
8298
|
-
/**
|
|
8306
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8299
8307
|
error_code: 'acs_system_disconnected'
|
|
8300
8308
|
}
|
|
8301
8309
|
| {
|
|
@@ -8303,7 +8311,7 @@ export interface Routes {
|
|
|
8303
8311
|
created_at: string
|
|
8304
8312
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8305
8313
|
message: string
|
|
8306
|
-
/**
|
|
8314
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8307
8315
|
error_code: 'account_disconnected'
|
|
8308
8316
|
}
|
|
8309
8317
|
>
|
|
@@ -8395,6 +8403,10 @@ export interface Routes {
|
|
|
8395
8403
|
/**
|
|
8396
8404
|
* @deprecated Use `external_type_display_name`. */
|
|
8397
8405
|
system_type_display_name?: string | undefined
|
|
8406
|
+
location: {
|
|
8407
|
+
/** Time zone in which the `acs_system` is located. */
|
|
8408
|
+
time_zone: string | null
|
|
8409
|
+
}
|
|
8398
8410
|
/** Name of the `acs_system`. */
|
|
8399
8411
|
name: string
|
|
8400
8412
|
/** Date and time at which the `acs_system` was created. */
|
|
@@ -8430,7 +8442,7 @@ export interface Routes {
|
|
|
8430
8442
|
created_at: string
|
|
8431
8443
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8432
8444
|
message: string
|
|
8433
|
-
/**
|
|
8445
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8434
8446
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
8435
8447
|
}
|
|
8436
8448
|
| {
|
|
@@ -8438,7 +8450,7 @@ export interface Routes {
|
|
|
8438
8450
|
created_at: string
|
|
8439
8451
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8440
8452
|
message: string
|
|
8441
|
-
/**
|
|
8453
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8442
8454
|
error_code: 'acs_system_disconnected'
|
|
8443
8455
|
}
|
|
8444
8456
|
| {
|
|
@@ -8446,7 +8458,7 @@ export interface Routes {
|
|
|
8446
8458
|
created_at: string
|
|
8447
8459
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8448
8460
|
message: string
|
|
8449
|
-
/**
|
|
8461
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8450
8462
|
error_code: 'account_disconnected'
|
|
8451
8463
|
}
|
|
8452
8464
|
>
|
|
@@ -13737,6 +13749,8 @@ export interface Routes {
|
|
|
13737
13749
|
| 'acs_user.deleted'
|
|
13738
13750
|
| 'acs_credential.deleted'
|
|
13739
13751
|
| 'acs_credential.issued'
|
|
13752
|
+
| 'acs_encoder.added'
|
|
13753
|
+
| 'acs_encoder.removed'
|
|
13740
13754
|
| 'enrollment_automation.deleted'
|
|
13741
13755
|
| 'client_session.deleted'
|
|
13742
13756
|
| 'action_attempt.lock_door.succeeded'
|
|
@@ -13809,6 +13823,8 @@ export interface Routes {
|
|
|
13809
13823
|
| 'acs_user.deleted'
|
|
13810
13824
|
| 'acs_credential.deleted'
|
|
13811
13825
|
| 'acs_credential.issued'
|
|
13826
|
+
| 'acs_encoder.added'
|
|
13827
|
+
| 'acs_encoder.removed'
|
|
13812
13828
|
| 'enrollment_automation.deleted'
|
|
13813
13829
|
| 'client_session.deleted'
|
|
13814
13830
|
| 'action_attempt.lock_door.succeeded'
|
|
@@ -31726,6 +31742,10 @@ export interface Routes {
|
|
|
31726
31742
|
/**
|
|
31727
31743
|
* @deprecated Use `external_type_display_name`. */
|
|
31728
31744
|
system_type_display_name?: string | undefined
|
|
31745
|
+
location: {
|
|
31746
|
+
/** Time zone in which the `acs_system` is located. */
|
|
31747
|
+
time_zone: string | null
|
|
31748
|
+
}
|
|
31729
31749
|
/** Name of the `acs_system`. */
|
|
31730
31750
|
name: string
|
|
31731
31751
|
/** Date and time at which the `acs_system` was created. */
|
|
@@ -31761,7 +31781,7 @@ export interface Routes {
|
|
|
31761
31781
|
created_at: string
|
|
31762
31782
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31763
31783
|
message: string
|
|
31764
|
-
/**
|
|
31784
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31765
31785
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
31766
31786
|
}
|
|
31767
31787
|
| {
|
|
@@ -31769,7 +31789,7 @@ export interface Routes {
|
|
|
31769
31789
|
created_at: string
|
|
31770
31790
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31771
31791
|
message: string
|
|
31772
|
-
/**
|
|
31792
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31773
31793
|
error_code: 'acs_system_disconnected'
|
|
31774
31794
|
}
|
|
31775
31795
|
| {
|
|
@@ -31777,7 +31797,7 @@ export interface Routes {
|
|
|
31777
31797
|
created_at: string
|
|
31778
31798
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31779
31799
|
message: string
|
|
31780
|
-
/**
|
|
31800
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31781
31801
|
error_code: 'account_disconnected'
|
|
31782
31802
|
}
|
|
31783
31803
|
>
|