@seamapi/types 1.328.0 → 1.329.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 +236 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +981 -2
- 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/seam-event.d.ts +30 -0
- package/lib/seam/connect/openapi.d.ts +87 -0
- package/lib/seam/connect/openapi.js +220 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +690 -2
- 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/openapi.ts +252 -0
- package/src/lib/seam/connect/route-types.ts +786 -0
|
@@ -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: {
|
|
@@ -14285,6 +14453,31 @@ export default {
|
|
|
14285
14453
|
],
|
|
14286
14454
|
type: 'object',
|
|
14287
14455
|
},
|
|
14456
|
+
{
|
|
14457
|
+
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.',
|
|
14458
|
+
properties: {
|
|
14459
|
+
created_at: {
|
|
14460
|
+
description: 'Date and time at which Seam created the warning.',
|
|
14461
|
+
format: 'date-time',
|
|
14462
|
+
type: 'string',
|
|
14463
|
+
},
|
|
14464
|
+
message: {
|
|
14465
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
14466
|
+
type: 'string',
|
|
14467
|
+
},
|
|
14468
|
+
warning_code: {
|
|
14469
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
14470
|
+
enum: ['needs_to_be_reissued'],
|
|
14471
|
+
type: 'string',
|
|
14472
|
+
},
|
|
14473
|
+
},
|
|
14474
|
+
required: [
|
|
14475
|
+
'created_at',
|
|
14476
|
+
'message',
|
|
14477
|
+
'warning_code',
|
|
14478
|
+
],
|
|
14479
|
+
type: 'object',
|
|
14480
|
+
},
|
|
14288
14481
|
],
|
|
14289
14482
|
},
|
|
14290
14483
|
type: 'array',
|
|
@@ -14673,6 +14866,31 @@ export default {
|
|
|
14673
14866
|
],
|
|
14674
14867
|
type: 'object',
|
|
14675
14868
|
},
|
|
14869
|
+
{
|
|
14870
|
+
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.',
|
|
14871
|
+
properties: {
|
|
14872
|
+
created_at: {
|
|
14873
|
+
description: 'Date and time at which Seam created the warning.',
|
|
14874
|
+
format: 'date-time',
|
|
14875
|
+
type: 'string',
|
|
14876
|
+
},
|
|
14877
|
+
message: {
|
|
14878
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
14879
|
+
type: 'string',
|
|
14880
|
+
},
|
|
14881
|
+
warning_code: {
|
|
14882
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
14883
|
+
enum: ['needs_to_be_reissued'],
|
|
14884
|
+
type: 'string',
|
|
14885
|
+
},
|
|
14886
|
+
},
|
|
14887
|
+
required: [
|
|
14888
|
+
'created_at',
|
|
14889
|
+
'message',
|
|
14890
|
+
'warning_code',
|
|
14891
|
+
],
|
|
14892
|
+
type: 'object',
|
|
14893
|
+
},
|
|
14676
14894
|
],
|
|
14677
14895
|
},
|
|
14678
14896
|
type: 'array',
|
|
@@ -19716,6 +19934,7 @@ export default {
|
|
|
19716
19934
|
'acs_user.deleted',
|
|
19717
19935
|
'acs_credential.deleted',
|
|
19718
19936
|
'acs_credential.issued',
|
|
19937
|
+
'acs_credential.reissued',
|
|
19719
19938
|
'acs_encoder.added',
|
|
19720
19939
|
'acs_encoder.removed',
|
|
19721
19940
|
'enrollment_automation.deleted',
|
|
@@ -19795,6 +20014,7 @@ export default {
|
|
|
19795
20014
|
'acs_user.deleted',
|
|
19796
20015
|
'acs_credential.deleted',
|
|
19797
20016
|
'acs_credential.issued',
|
|
20017
|
+
'acs_credential.reissued',
|
|
19798
20018
|
'acs_encoder.added',
|
|
19799
20019
|
'acs_encoder.removed',
|
|
19800
20020
|
'enrollment_automation.deleted',
|