@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.74.0",
3
+ "version": "1.75.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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',
@@ -862,6 +862,8 @@ export interface Routes {
862
862
  | undefined
863
863
  card_format?: ('TLCode' | 'rfid48') | undefined
864
864
  is_override_key?: boolean | undefined
865
+ starts_at?: string | undefined
866
+ ends_at?: string | undefined
865
867
  }
866
868
  formData: {}
867
869
  jsonResponse: {