@seamapi/types 1.74.0 → 1.75.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 +3 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -816,6 +816,8 @@ export interface Routes {
|
|
|
816
816
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
817
817
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
818
818
|
is_override_key?: boolean | undefined;
|
|
819
|
+
starts_at?: string | undefined;
|
|
820
|
+
ends_at?: string | undefined;
|
|
819
821
|
};
|
|
820
822
|
formData: {};
|
|
821
823
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -5173,6 +5173,7 @@ export default {
|
|
|
5173
5173
|
},
|
|
5174
5174
|
card_format: { enum: ['TLCode', 'rfid48'], type: 'string' },
|
|
5175
5175
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
5176
|
+
ends_at: { format: 'date-time', type: 'string' },
|
|
5176
5177
|
external_type: {
|
|
5177
5178
|
enum: [
|
|
5178
5179
|
'pti_card',
|
|
@@ -5184,6 +5185,7 @@ export default {
|
|
|
5184
5185
|
},
|
|
5185
5186
|
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5186
5187
|
is_override_key: { type: 'boolean' },
|
|
5188
|
+
starts_at: { format: 'date-time', type: 'string' },
|
|
5187
5189
|
},
|
|
5188
5190
|
required: ['acs_user_id', 'access_method'],
|
|
5189
5191
|
type: 'object',
|