@seamapi/types 1.184.0 → 1.185.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.
@@ -3094,6 +3094,8 @@ export interface Routes {
3094
3094
  message: string;
3095
3095
  }>;
3096
3096
  is_multi_phone_sync_credential?: boolean | undefined;
3097
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
3098
+ latest_desired_state_synced_with_provider_at?: string | undefined;
3097
3099
  visionline_metadata?: {
3098
3100
  card_function_type: 'guest' | 'staff';
3099
3101
  joiner_acs_credential_ids?: string[] | undefined;
@@ -3157,6 +3159,8 @@ export interface Routes {
3157
3159
  message: string;
3158
3160
  }>;
3159
3161
  is_multi_phone_sync_credential?: boolean | undefined;
3162
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
3163
+ latest_desired_state_synced_with_provider_at?: string | undefined;
3160
3164
  visionline_metadata?: {
3161
3165
  card_function_type: 'guest' | 'staff';
3162
3166
  joiner_acs_credential_ids?: string[] | undefined;
@@ -3211,6 +3215,8 @@ export interface Routes {
3211
3215
  message: string;
3212
3216
  }>;
3213
3217
  is_multi_phone_sync_credential?: boolean | undefined;
3218
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
3219
+ latest_desired_state_synced_with_provider_at?: string | undefined;
3214
3220
  visionline_metadata?: {
3215
3221
  card_function_type: 'guest' | 'staff';
3216
3222
  joiner_acs_credential_ids?: string[] | undefined;
@@ -3263,6 +3269,8 @@ export interface Routes {
3263
3269
  message: string;
3264
3270
  }>;
3265
3271
  is_multi_phone_sync_credential?: boolean | undefined;
3272
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
3273
+ latest_desired_state_synced_with_provider_at?: string | undefined;
3266
3274
  visionline_metadata?: {
3267
3275
  card_function_type: 'guest' | 'staff';
3268
3276
  joiner_acs_credential_ids?: string[] | undefined;
@@ -3343,6 +3351,8 @@ export interface Routes {
3343
3351
  message: string;
3344
3352
  }>;
3345
3353
  is_multi_phone_sync_credential?: boolean | undefined;
3354
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
3355
+ latest_desired_state_synced_with_provider_at?: string | undefined;
3346
3356
  visionline_metadata?: {
3347
3357
  card_function_type: 'guest' | 'staff';
3348
3358
  joiner_acs_credential_ids?: string[] | undefined;
@@ -3388,6 +3398,8 @@ export interface Routes {
3388
3398
  message: string;
3389
3399
  }>;
3390
3400
  is_multi_phone_sync_credential?: boolean | undefined;
3401
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
3402
+ latest_desired_state_synced_with_provider_at?: string | undefined;
3391
3403
  visionline_metadata?: {
3392
3404
  card_function_type: 'guest' | 'staff';
3393
3405
  joiner_acs_credential_ids?: string[] | undefined;
@@ -3517,6 +3529,8 @@ export interface Routes {
3517
3529
  message: string;
3518
3530
  }>;
3519
3531
  is_multi_phone_sync_credential?: boolean | undefined;
3532
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
3533
+ latest_desired_state_synced_with_provider_at?: string | undefined;
3520
3534
  visionline_metadata?: {
3521
3535
  card_function_type: 'guest' | 'staff';
3522
3536
  joiner_acs_credential_ids?: string[] | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.184.0",
3
+ "version": "1.185.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -57,6 +57,11 @@ export const acs_credential = z.object({
57
57
  }),
58
58
  ),
59
59
  is_multi_phone_sync_credential: z.boolean().optional(),
60
+ is_latest_desired_state_synced_with_provider: z.boolean().optional(),
61
+ latest_desired_state_synced_with_provider_at: z
62
+ .string()
63
+ .datetime()
64
+ .optional(),
60
65
  visionline_metadata: acs_credential_visionline_metadata.optional(),
61
66
  })
62
67
 
@@ -221,7 +221,12 @@ export default {
221
221
  type: 'string',
222
222
  },
223
223
  external_type_display_name: { type: 'string' },
224
+ is_latest_desired_state_synced_with_provider: { type: 'boolean' },
224
225
  is_multi_phone_sync_credential: { type: 'boolean' },
226
+ latest_desired_state_synced_with_provider_at: {
227
+ format: 'date-time',
228
+ type: 'string',
229
+ },
225
230
  parent_acs_credential_id: { format: 'uuid', type: 'string' },
226
231
  starts_at: { type: 'string' },
227
232
  visionline_metadata: {
@@ -3307,6 +3307,8 @@ export interface Routes {
3307
3307
  message: string
3308
3308
  }>
3309
3309
  is_multi_phone_sync_credential?: boolean | undefined
3310
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3311
+ latest_desired_state_synced_with_provider_at?: string | undefined
3310
3312
  visionline_metadata?:
3311
3313
  | {
3312
3314
  card_function_type: 'guest' | 'staff'
@@ -3383,6 +3385,8 @@ export interface Routes {
3383
3385
  message: string
3384
3386
  }>
3385
3387
  is_multi_phone_sync_credential?: boolean | undefined
3388
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3389
+ latest_desired_state_synced_with_provider_at?: string | undefined
3386
3390
  visionline_metadata?:
3387
3391
  | {
3388
3392
  card_function_type: 'guest' | 'staff'
@@ -3446,6 +3450,8 @@ export interface Routes {
3446
3450
  message: string
3447
3451
  }>
3448
3452
  is_multi_phone_sync_credential?: boolean | undefined
3453
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3454
+ latest_desired_state_synced_with_provider_at?: string | undefined
3449
3455
  visionline_metadata?:
3450
3456
  | {
3451
3457
  card_function_type: 'guest' | 'staff'
@@ -3512,6 +3518,8 @@ export interface Routes {
3512
3518
  message: string
3513
3519
  }>
3514
3520
  is_multi_phone_sync_credential?: boolean | undefined
3521
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3522
+ latest_desired_state_synced_with_provider_at?: string | undefined
3515
3523
  visionline_metadata?:
3516
3524
  | {
3517
3525
  card_function_type: 'guest' | 'staff'
@@ -3608,6 +3616,8 @@ export interface Routes {
3608
3616
  message: string
3609
3617
  }>
3610
3618
  is_multi_phone_sync_credential?: boolean | undefined
3619
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3620
+ latest_desired_state_synced_with_provider_at?: string | undefined
3611
3621
  visionline_metadata?:
3612
3622
  | {
3613
3623
  card_function_type: 'guest' | 'staff'
@@ -3662,6 +3672,8 @@ export interface Routes {
3662
3672
  message: string
3663
3673
  }>
3664
3674
  is_multi_phone_sync_credential?: boolean | undefined
3675
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3676
+ latest_desired_state_synced_with_provider_at?: string | undefined
3665
3677
  visionline_metadata?:
3666
3678
  | {
3667
3679
  card_function_type: 'guest' | 'staff'
@@ -3814,6 +3826,8 @@ export interface Routes {
3814
3826
  message: string
3815
3827
  }>
3816
3828
  is_multi_phone_sync_credential?: boolean | undefined
3829
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3830
+ latest_desired_state_synced_with_provider_at?: string | undefined
3817
3831
  visionline_metadata?:
3818
3832
  | {
3819
3833
  card_function_type: 'guest' | 'staff'