@seamapi/types 1.302.2 → 1.303.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 +32 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +239 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +4 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +29 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +189 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +36 -1
- package/src/lib/seam/connect/route-types.ts +189 -1
package/package.json
CHANGED
|
@@ -116,6 +116,12 @@ const common_acs_credential = z.object({
|
|
|
116
116
|
.optional()
|
|
117
117
|
.nullable()
|
|
118
118
|
.describe('Access (PIN) code for the credential.'),
|
|
119
|
+
is_one_time_use: z
|
|
120
|
+
.boolean()
|
|
121
|
+
.optional()
|
|
122
|
+
.describe(
|
|
123
|
+
'Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use.',
|
|
124
|
+
),
|
|
119
125
|
card_number: z.string().optional().nullable(),
|
|
120
126
|
is_issued: z.boolean().optional(),
|
|
121
127
|
issued_at: z.string().datetime().optional().nullable(),
|
|
@@ -352,6 +352,11 @@ export default {
|
|
|
352
352
|
'Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).',
|
|
353
353
|
type: 'boolean',
|
|
354
354
|
},
|
|
355
|
+
is_one_time_use: {
|
|
356
|
+
description:
|
|
357
|
+
'Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use.',
|
|
358
|
+
type: 'boolean',
|
|
359
|
+
},
|
|
355
360
|
issued_at: { format: 'date-time', nullable: true, type: 'string' },
|
|
356
361
|
latest_desired_state_synced_with_provider_at: {
|
|
357
362
|
description:
|
|
@@ -1717,6 +1722,11 @@ export default {
|
|
|
1717
1722
|
'Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).',
|
|
1718
1723
|
type: 'boolean',
|
|
1719
1724
|
},
|
|
1725
|
+
is_one_time_use: {
|
|
1726
|
+
description:
|
|
1727
|
+
'Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use.',
|
|
1728
|
+
type: 'boolean',
|
|
1729
|
+
},
|
|
1720
1730
|
issued_at: {
|
|
1721
1731
|
format: 'date-time',
|
|
1722
1732
|
nullable: true,
|
|
@@ -2010,6 +2020,11 @@ export default {
|
|
|
2010
2020
|
'Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).',
|
|
2011
2021
|
type: 'boolean',
|
|
2012
2022
|
},
|
|
2023
|
+
is_one_time_use: {
|
|
2024
|
+
description:
|
|
2025
|
+
'Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use.',
|
|
2026
|
+
type: 'boolean',
|
|
2027
|
+
},
|
|
2013
2028
|
issued_at: {
|
|
2014
2029
|
format: 'date-time',
|
|
2015
2030
|
nullable: true,
|
|
@@ -2430,6 +2445,11 @@ export default {
|
|
|
2430
2445
|
'Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).',
|
|
2431
2446
|
type: 'boolean',
|
|
2432
2447
|
},
|
|
2448
|
+
is_one_time_use: {
|
|
2449
|
+
description:
|
|
2450
|
+
'Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use.',
|
|
2451
|
+
type: 'boolean',
|
|
2452
|
+
},
|
|
2433
2453
|
issued_at: {
|
|
2434
2454
|
format: 'date-time',
|
|
2435
2455
|
nullable: true,
|
|
@@ -2722,6 +2742,11 @@ export default {
|
|
|
2722
2742
|
'Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).',
|
|
2723
2743
|
type: 'boolean',
|
|
2724
2744
|
},
|
|
2745
|
+
is_one_time_use: {
|
|
2746
|
+
description:
|
|
2747
|
+
'Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use.',
|
|
2748
|
+
type: 'boolean',
|
|
2749
|
+
},
|
|
2725
2750
|
issued_at: {
|
|
2726
2751
|
format: 'date-time',
|
|
2727
2752
|
nullable: true,
|
|
@@ -9052,7 +9077,7 @@ export default {
|
|
|
9052
9077
|
type: 'string',
|
|
9053
9078
|
},
|
|
9054
9079
|
},
|
|
9055
|
-
required: ['acs_user_id'],
|
|
9080
|
+
required: ['acs_user_id', 'allowed_acs_entrance_id'],
|
|
9056
9081
|
type: 'object',
|
|
9057
9082
|
},
|
|
9058
9083
|
},
|
|
@@ -9636,6 +9661,11 @@ export default {
|
|
|
9636
9661
|
'Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).',
|
|
9637
9662
|
type: 'boolean',
|
|
9638
9663
|
},
|
|
9664
|
+
is_one_time_use: {
|
|
9665
|
+
description:
|
|
9666
|
+
'Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use.',
|
|
9667
|
+
type: 'boolean',
|
|
9668
|
+
},
|
|
9639
9669
|
issued_at: {
|
|
9640
9670
|
format: 'date-time',
|
|
9641
9671
|
nullable: true,
|
|
@@ -10032,6 +10062,11 @@ export default {
|
|
|
10032
10062
|
'Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).',
|
|
10033
10063
|
type: 'boolean',
|
|
10034
10064
|
},
|
|
10065
|
+
is_one_time_use: {
|
|
10066
|
+
description:
|
|
10067
|
+
'Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use.',
|
|
10068
|
+
type: 'boolean',
|
|
10069
|
+
},
|
|
10035
10070
|
issued_at: {
|
|
10036
10071
|
format: 'date-time',
|
|
10037
10072
|
nullable: true,
|