@seamapi/types 1.48.0 → 1.50.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.
Files changed (39) hide show
  1. package/dist/connect.cjs +333 -38
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +477 -17
  4. package/lib/seam/connect/openapi.d.ts +269 -3
  5. package/lib/seam/connect/openapi.js +332 -37
  6. package/lib/seam/connect/openapi.js.map +1 -1
  7. package/lib/seam/connect/route-types.d.ts +208 -14
  8. package/lib/seam/connect/unstable/model-types.d.ts +1 -1
  9. package/lib/seam/connect/unstable/models/access-codes/managed-access-code.js +81 -21
  10. package/lib/seam/connect/unstable/models/access-codes/managed-access-code.js.map +1 -1
  11. package/lib/seam/connect/unstable/models/acs/credential.d.ts +7 -4
  12. package/lib/seam/connect/unstable/models/acs/credential.js +2 -1
  13. package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
  14. package/lib/seam/connect/unstable/models/acs/credential_pool.d.ts +29 -0
  15. package/lib/seam/connect/unstable/models/acs/credential_pool.js +12 -0
  16. package/lib/seam/connect/unstable/models/acs/credential_pool.js.map +1 -0
  17. package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.d.ts +21 -0
  18. package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.js +9 -0
  19. package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.js.map +1 -0
  20. package/lib/seam/connect/unstable/models/acs/index.d.ts +2 -0
  21. package/lib/seam/connect/unstable/models/acs/index.js +2 -0
  22. package/lib/seam/connect/unstable/models/acs/index.js.map +1 -1
  23. package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +14 -14
  24. package/lib/seam/connect/unstable/models/devices/managed-device.js +1 -1
  25. package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
  26. package/lib/seam/connect/unstable/schemas.d.ts +1 -1
  27. package/lib/seam/connect/unstable/schemas.js +1 -1
  28. package/lib/seam/connect/unstable/schemas.js.map +1 -1
  29. package/package.json +1 -1
  30. package/src/lib/seam/connect/openapi.ts +357 -37
  31. package/src/lib/seam/connect/route-types.ts +208 -14
  32. package/src/lib/seam/connect/unstable/model-types.ts +2 -0
  33. package/src/lib/seam/connect/unstable/models/access-codes/managed-access-code.ts +113 -21
  34. package/src/lib/seam/connect/unstable/models/acs/credential.ts +2 -1
  35. package/src/lib/seam/connect/unstable/models/acs/credential_pool.ts +19 -0
  36. package/src/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.ts +13 -0
  37. package/src/lib/seam/connect/unstable/models/acs/index.ts +2 -0
  38. package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +1 -1
  39. package/src/lib/seam/connect/unstable/schemas.ts +3 -0
@@ -3,34 +3,122 @@ export default {
3
3
  schemas: {
4
4
  access_code: {
5
5
  properties: {
6
- access_code_id: { format: 'uuid', type: 'string' },
7
- code: { nullable: true, type: 'string' },
8
- common_code_key: { nullable: true, type: 'string' },
9
- created_at: { format: 'date-time', type: 'string' },
10
- device_id: { format: 'uuid', type: 'string' },
11
- ends_at: { format: 'date-time', nullable: true, type: 'string' },
12
- errors: { nullable: true },
13
- is_backup: { type: 'boolean' },
14
- is_backup_access_code_available: { type: 'boolean' },
15
- is_external_modification_allowed: { type: 'boolean' },
16
- is_managed: { enum: [true], type: 'boolean' },
17
- is_offline_access_code: { type: 'boolean' },
18
- is_one_time_use: { type: 'boolean' },
19
- is_scheduled_on_device: { type: 'boolean' },
20
- is_waiting_for_code_assignment: { type: 'boolean' },
21
- name: { nullable: true, type: 'string' },
6
+ access_code_id: {
7
+ description: 'Unique identifier for the access code.',
8
+ format: 'uuid',
9
+ type: 'string',
10
+ },
11
+ code: {
12
+ description:
13
+ 'Code used for access. Typically, a numeric or alphanumeric string.',
14
+ nullable: true,
15
+ type: 'string',
16
+ },
17
+ common_code_key: {
18
+ description:
19
+ 'Unique identifier for a group of access codes that share the same code.',
20
+ nullable: true,
21
+ type: 'string',
22
+ },
23
+ created_at: {
24
+ description: 'Date and time at which the access code was created.',
25
+ format: 'date-time',
26
+ type: 'string',
27
+ },
28
+ device_id: {
29
+ description:
30
+ 'Unique identifier for the device associated with the access code.',
31
+ format: 'uuid',
32
+ type: 'string',
33
+ },
34
+ ends_at: {
35
+ description:
36
+ 'Date and time after which the time-bound access code becomes inactive.',
37
+ format: 'date-time',
38
+ nullable: true,
39
+ type: 'string',
40
+ },
41
+ errors: {
42
+ description:
43
+ 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
44
+ nullable: true,
45
+ },
46
+ is_backup: {
47
+ description: 'Indicates whether the access code is a backup code.',
48
+ type: 'boolean',
49
+ },
50
+ is_backup_access_code_available: {
51
+ description:
52
+ 'Indicates whether a backup access code is available for use if the primary access code is lost or compromised.',
53
+ type: 'boolean',
54
+ },
55
+ is_external_modification_allowed: {
56
+ description:
57
+ 'Indicates whether changes to the access code from external sources are permitted.',
58
+ type: 'boolean',
59
+ },
60
+ is_managed: {
61
+ description: 'Indicates whether Seam manages the access code.',
62
+ enum: [true],
63
+ type: 'boolean',
64
+ },
65
+ is_offline_access_code: {
66
+ description:
67
+ 'Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection.',
68
+ type: 'boolean',
69
+ },
70
+ is_one_time_use: {
71
+ description:
72
+ 'Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use.',
73
+ type: 'boolean',
74
+ },
75
+ is_scheduled_on_device: {
76
+ description:
77
+ 'Indicates whether the code is set on the device according to a preconfigured schedule.',
78
+ type: 'boolean',
79
+ },
80
+ is_waiting_for_code_assignment: {
81
+ description:
82
+ 'Indicates whether the access code is waiting for a code assignment.',
83
+ type: 'boolean',
84
+ },
85
+ name: {
86
+ description:
87
+ 'Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.',
88
+ nullable: true,
89
+ type: 'string',
90
+ },
22
91
  pulled_backup_access_code_id: {
92
+ description:
93
+ 'Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code.',
23
94
  format: 'uuid',
24
95
  nullable: true,
25
96
  type: 'string',
26
97
  },
27
- starts_at: { format: 'date-time', nullable: true, type: 'string' },
98
+ starts_at: {
99
+ description:
100
+ 'Date and time at which the time-bound access code becomes active.',
101
+ format: 'date-time',
102
+ nullable: true,
103
+ type: 'string',
104
+ },
28
105
  status: {
106
+ description:
107
+ '\n Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.\n ',
29
108
  enum: ['setting', 'set', 'unset', 'removing', 'unknown'],
30
109
  type: 'string',
31
110
  },
32
- type: { enum: ['time_bound', 'ongoing'], type: 'string' },
33
- warnings: { nullable: true },
111
+ type: {
112
+ description:
113
+ 'Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration.',
114
+ enum: ['time_bound', 'ongoing'],
115
+ type: 'string',
116
+ },
117
+ warnings: {
118
+ description:
119
+ 'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.',
120
+ nullable: true,
121
+ },
34
122
  },
35
123
  required: [
36
124
  'common_code_key',
@@ -503,11 +591,11 @@ export default {
503
591
  manufacturer: { type: 'string' },
504
592
  model: {
505
593
  properties: {
506
- access_codes_supported: { type: 'boolean' },
507
594
  accessory_keypad_supported: { type: 'boolean' },
508
595
  display_name: { type: 'string' },
509
596
  manufacturer_display_name: { type: 'string' },
510
597
  offline_access_codes_supported: { type: 'boolean' },
598
+ online_access_codes_supported: { type: 'boolean' },
511
599
  },
512
600
  required: ['display_name', 'manufacturer_display_name'],
513
601
  type: 'object',
@@ -1441,18 +1529,66 @@ export default {
1441
1529
  },
1442
1530
  unmanaged_access_code: {
1443
1531
  properties: {
1444
- access_code_id: { format: 'uuid', type: 'string' },
1445
- code: { nullable: true, type: 'string' },
1446
- created_at: { format: 'date-time', type: 'string' },
1447
- device_id: { format: 'uuid', type: 'string' },
1448
- ends_at: { format: 'date-time', nullable: true, type: 'string' },
1449
- errors: { nullable: true },
1532
+ access_code_id: {
1533
+ description: 'Unique identifier for the access code.',
1534
+ format: 'uuid',
1535
+ type: 'string',
1536
+ },
1537
+ code: {
1538
+ description:
1539
+ 'Code used for access. Typically, a numeric or alphanumeric string.',
1540
+ nullable: true,
1541
+ type: 'string',
1542
+ },
1543
+ created_at: {
1544
+ description: 'Date and time at which the access code was created.',
1545
+ format: 'date-time',
1546
+ type: 'string',
1547
+ },
1548
+ device_id: {
1549
+ description:
1550
+ 'Unique identifier for the device associated with the access code.',
1551
+ format: 'uuid',
1552
+ type: 'string',
1553
+ },
1554
+ ends_at: {
1555
+ description:
1556
+ 'Date and time after which the time-bound access code becomes inactive.',
1557
+ format: 'date-time',
1558
+ nullable: true,
1559
+ type: 'string',
1560
+ },
1561
+ errors: {
1562
+ description:
1563
+ 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
1564
+ nullable: true,
1565
+ },
1450
1566
  is_managed: { enum: [false], type: 'boolean' },
1451
- name: { nullable: true, type: 'string' },
1452
- starts_at: { format: 'date-time', nullable: true, type: 'string' },
1567
+ name: {
1568
+ description:
1569
+ 'Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.',
1570
+ nullable: true,
1571
+ type: 'string',
1572
+ },
1573
+ starts_at: {
1574
+ description:
1575
+ 'Date and time at which the time-bound access code becomes active.',
1576
+ format: 'date-time',
1577
+ nullable: true,
1578
+ type: 'string',
1579
+ },
1453
1580
  status: { enum: ['set'], type: 'string' },
1454
- type: { enum: ['time_bound', 'ongoing'], type: 'string' },
1455
- warnings: { nullable: true },
1581
+ type: {
1582
+ description:
1583
+ 'Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration.',
1584
+ enum: ['time_bound', 'ongoing'],
1585
+ type: 'string',
1586
+ },
1587
+ warnings: {
1588
+ description:
1589
+ 'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.',
1590
+ nullable: true,
1591
+ },
1456
1592
  },
1457
1593
  required: [
1458
1594
  'type',
@@ -3018,6 +3154,162 @@ export default {
3018
3154
  'x-fern-sdk-method-name': 'remove_user',
3019
3155
  },
3020
3156
  },
3157
+ '/acs/credential_pools/list': {
3158
+ post: {
3159
+ operationId: 'acsCredentialPoolsListPost',
3160
+ requestBody: {
3161
+ content: {
3162
+ 'application/json': {
3163
+ schema: {
3164
+ properties: {
3165
+ acs_system_id: { format: 'uuid', type: 'string' },
3166
+ },
3167
+ required: ['acs_system_id'],
3168
+ type: 'object',
3169
+ },
3170
+ },
3171
+ },
3172
+ },
3173
+ responses: {
3174
+ 200: {
3175
+ content: {
3176
+ 'application/json': {
3177
+ schema: {
3178
+ properties: {
3179
+ acs_credential_pools: {
3180
+ items: {
3181
+ properties: {
3182
+ acs_credential_pool_id: {
3183
+ format: 'uuid',
3184
+ type: 'string',
3185
+ },
3186
+ acs_system_id: { format: 'uuid', type: 'string' },
3187
+ created_at: { format: 'date-time', type: 'string' },
3188
+ display_name: { minLength: 1, type: 'string' },
3189
+ external_type: {
3190
+ enum: ['hid_part_number'],
3191
+ type: 'string',
3192
+ },
3193
+ external_type_display_name: { type: 'string' },
3194
+ workspace_id: { format: 'uuid', type: 'string' },
3195
+ },
3196
+ required: [
3197
+ 'acs_credential_pool_id',
3198
+ 'acs_system_id',
3199
+ 'display_name',
3200
+ 'external_type',
3201
+ 'external_type_display_name',
3202
+ 'created_at',
3203
+ 'workspace_id',
3204
+ ],
3205
+ type: 'object',
3206
+ },
3207
+ type: 'array',
3208
+ },
3209
+ ok: { type: 'boolean' },
3210
+ },
3211
+ required: ['acs_credential_pools', 'ok'],
3212
+ type: 'object',
3213
+ },
3214
+ },
3215
+ },
3216
+ description: 'OK',
3217
+ },
3218
+ 400: { description: 'Bad Request' },
3219
+ 401: { description: 'Unauthorized' },
3220
+ },
3221
+ security: [
3222
+ { access_token: [], seam_workspace: [] },
3223
+ { seam_client_session_token: [] },
3224
+ { client_session_token: [] },
3225
+ ],
3226
+ summary: '/acs/credential_pools/list',
3227
+ tags: [],
3228
+ 'x-fern-sdk-group-name': ['acs', 'credential_pools'],
3229
+ 'x-fern-sdk-method-name': 'list',
3230
+ },
3231
+ },
3232
+ '/acs/credential_provisioning_automations/launch': {
3233
+ post: {
3234
+ operationId: 'acsCredentialProvisioningAutomationsLaunchPost',
3235
+ requestBody: {
3236
+ content: {
3237
+ 'application/json': {
3238
+ schema: {
3239
+ properties: {
3240
+ acs_credential_pool_id: { format: 'uuid', type: 'string' },
3241
+ create_credential_manager_user: { type: 'boolean' },
3242
+ credential_manager_acs_system_id: {
3243
+ format: 'uuid',
3244
+ type: 'string',
3245
+ },
3246
+ credential_manager_acs_user_id: {
3247
+ format: 'uuid',
3248
+ type: 'string',
3249
+ },
3250
+ user_identity_id: { format: 'uuid', type: 'string' },
3251
+ },
3252
+ required: [
3253
+ 'user_identity_id',
3254
+ 'credential_manager_acs_system_id',
3255
+ ],
3256
+ type: 'object',
3257
+ },
3258
+ },
3259
+ },
3260
+ },
3261
+ responses: {
3262
+ 200: {
3263
+ content: {
3264
+ 'application/json': {
3265
+ schema: {
3266
+ properties: {
3267
+ acs_credential_provisioning_automation: {
3268
+ properties: {
3269
+ acs_credential_provisioning_automation_id: {
3270
+ format: 'uuid',
3271
+ type: 'string',
3272
+ },
3273
+ created_at: { format: 'date-time', type: 'string' },
3274
+ credential_manager_acs_system_id: {
3275
+ format: 'uuid',
3276
+ type: 'string',
3277
+ },
3278
+ user_identity_id: { format: 'uuid', type: 'string' },
3279
+ workspace_id: { format: 'uuid', type: 'string' },
3280
+ },
3281
+ required: [
3282
+ 'acs_credential_provisioning_automation_id',
3283
+ 'credential_manager_acs_system_id',
3284
+ 'user_identity_id',
3285
+ 'created_at',
3286
+ 'workspace_id',
3287
+ ],
3288
+ type: 'object',
3289
+ },
3290
+ ok: { type: 'boolean' },
3291
+ },
3292
+ required: ['acs_credential_provisioning_automation', 'ok'],
3293
+ type: 'object',
3294
+ },
3295
+ },
3296
+ },
3297
+ description: 'OK',
3298
+ },
3299
+ 400: { description: 'Bad Request' },
3300
+ 401: { description: 'Unauthorized' },
3301
+ },
3302
+ security: [
3303
+ { access_token: [], seam_workspace: [] },
3304
+ { seam_client_session_token: [] },
3305
+ { client_session_token: [] },
3306
+ ],
3307
+ summary: '/acs/credential_provisioning_automations/launch',
3308
+ tags: [],
3309
+ 'x-fern-sdk-group-name': ['acs', 'credential_provisioning_automations'],
3310
+ 'x-fern-sdk-method-name': 'launch',
3311
+ },
3312
+ },
3021
3313
  '/acs/credentials/assign': {
3022
3314
  patch: {
3023
3315
  operationId: 'acsCredentialsAssignPatch',
@@ -3044,6 +3336,10 @@ export default {
3044
3336
  acs_credential: {
3045
3337
  properties: {
3046
3338
  acs_credential_id: { format: 'uuid', type: 'string' },
3339
+ acs_credential_pool_id: {
3340
+ format: 'uuid',
3341
+ type: 'string',
3342
+ },
3047
3343
  acs_system_id: { format: 'uuid', type: 'string' },
3048
3344
  acs_user_id: { format: 'uuid', type: 'string' },
3049
3345
  code: { nullable: true, type: 'string' },
@@ -3053,7 +3349,7 @@ export default {
3053
3349
  enum: [
3054
3350
  'pti_card',
3055
3351
  'brivo_credential',
3056
- 'hid_cm_credential',
3352
+ 'hid_credential',
3057
3353
  ],
3058
3354
  type: 'string',
3059
3355
  },
@@ -3118,6 +3414,10 @@ export default {
3118
3414
  acs_credential: {
3119
3415
  properties: {
3120
3416
  acs_credential_id: { format: 'uuid', type: 'string' },
3417
+ acs_credential_pool_id: {
3418
+ format: 'uuid',
3419
+ type: 'string',
3420
+ },
3121
3421
  acs_system_id: { format: 'uuid', type: 'string' },
3122
3422
  acs_user_id: { format: 'uuid', type: 'string' },
3123
3423
  code: { nullable: true, type: 'string' },
@@ -3127,7 +3427,7 @@ export default {
3127
3427
  enum: [
3128
3428
  'pti_card',
3129
3429
  'brivo_credential',
3130
- 'hid_cm_credential',
3430
+ 'hid_credential',
3131
3431
  ],
3132
3432
  type: 'string',
3133
3433
  },
@@ -3195,6 +3495,10 @@ export default {
3195
3495
  acs_credential: {
3196
3496
  properties: {
3197
3497
  acs_credential_id: { format: 'uuid', type: 'string' },
3498
+ acs_credential_pool_id: {
3499
+ format: 'uuid',
3500
+ type: 'string',
3501
+ },
3198
3502
  acs_system_id: { format: 'uuid', type: 'string' },
3199
3503
  acs_user_id: { format: 'uuid', type: 'string' },
3200
3504
  code: { nullable: true, type: 'string' },
@@ -3204,7 +3508,7 @@ export default {
3204
3508
  enum: [
3205
3509
  'pti_card',
3206
3510
  'brivo_credential',
3207
- 'hid_cm_credential',
3511
+ 'hid_credential',
3208
3512
  ],
3209
3513
  type: 'string',
3210
3514
  },
@@ -3314,6 +3618,10 @@ export default {
3314
3618
  acs_credential: {
3315
3619
  properties: {
3316
3620
  acs_credential_id: { format: 'uuid', type: 'string' },
3621
+ acs_credential_pool_id: {
3622
+ format: 'uuid',
3623
+ type: 'string',
3624
+ },
3317
3625
  acs_system_id: { format: 'uuid', type: 'string' },
3318
3626
  acs_user_id: { format: 'uuid', type: 'string' },
3319
3627
  code: { nullable: true, type: 'string' },
@@ -3323,7 +3631,7 @@ export default {
3323
3631
  enum: [
3324
3632
  'pti_card',
3325
3633
  'brivo_credential',
3326
- 'hid_cm_credential',
3634
+ 'hid_credential',
3327
3635
  ],
3328
3636
  type: 'string',
3329
3637
  },
@@ -3410,6 +3718,10 @@ export default {
3410
3718
  items: {
3411
3719
  properties: {
3412
3720
  acs_credential_id: { format: 'uuid', type: 'string' },
3721
+ acs_credential_pool_id: {
3722
+ format: 'uuid',
3723
+ type: 'string',
3724
+ },
3413
3725
  acs_system_id: { format: 'uuid', type: 'string' },
3414
3726
  acs_user_id: { format: 'uuid', type: 'string' },
3415
3727
  code: { nullable: true, type: 'string' },
@@ -3419,7 +3731,7 @@ export default {
3419
3731
  enum: [
3420
3732
  'pti_card',
3421
3733
  'brivo_credential',
3422
- 'hid_cm_credential',
3734
+ 'hid_credential',
3423
3735
  ],
3424
3736
  type: 'string',
3425
3737
  },
@@ -3489,6 +3801,10 @@ export default {
3489
3801
  acs_credential: {
3490
3802
  properties: {
3491
3803
  acs_credential_id: { format: 'uuid', type: 'string' },
3804
+ acs_credential_pool_id: {
3805
+ format: 'uuid',
3806
+ type: 'string',
3807
+ },
3492
3808
  acs_system_id: { format: 'uuid', type: 'string' },
3493
3809
  acs_user_id: { format: 'uuid', type: 'string' },
3494
3810
  code: { nullable: true, type: 'string' },
@@ -3498,7 +3814,7 @@ export default {
3498
3814
  enum: [
3499
3815
  'pti_card',
3500
3816
  'brivo_credential',
3501
- 'hid_cm_credential',
3817
+ 'hid_credential',
3502
3818
  ],
3503
3819
  type: 'string',
3504
3820
  },
@@ -3563,6 +3879,10 @@ export default {
3563
3879
  acs_credential: {
3564
3880
  properties: {
3565
3881
  acs_credential_id: { format: 'uuid', type: 'string' },
3882
+ acs_credential_pool_id: {
3883
+ format: 'uuid',
3884
+ type: 'string',
3885
+ },
3566
3886
  acs_system_id: { format: 'uuid', type: 'string' },
3567
3887
  acs_user_id: { format: 'uuid', type: 'string' },
3568
3888
  code: { nullable: true, type: 'string' },
@@ -3572,7 +3892,7 @@ export default {
3572
3892
  enum: [
3573
3893
  'pti_card',
3574
3894
  'brivo_credential',
3575
- 'hid_cm_credential',
3895
+ 'hid_credential',
3576
3896
  ],
3577
3897
  type: 'string',
3578
3898
  },