@seamapi/types 1.321.1 → 1.322.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 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +307 -274
- package/lib/seam/connect/models/acs/acs-credential.d.ts +12 -12
- package/lib/seam/connect/models/acs/acs-credential.js +2 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +12 -12
- package/lib/seam/connect/models/acs/acs-user.js +5 -2
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -48
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +20 -20
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +28 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +207 -202
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-user.ts +5 -2
- package/src/lib/seam/connect/openapi.ts +29 -0
- package/src/lib/seam/connect/route-types.ts +277 -202
|
@@ -220,11 +220,11 @@ export interface Routes {
|
|
|
220
220
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
221
221
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
222
222
|
is_latest_desired_state_synced_with_provider?:
|
|
223
|
-
| boolean
|
|
223
|
+
| (boolean | null)
|
|
224
224
|
| undefined
|
|
225
225
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
226
226
|
latest_desired_state_synced_with_provider_at?:
|
|
227
|
-
| string
|
|
227
|
+
| (string | null)
|
|
228
228
|
| undefined
|
|
229
229
|
/** Visionline-specific metadata for the credential. */
|
|
230
230
|
visionline_metadata?:
|
|
@@ -334,11 +334,11 @@ export interface Routes {
|
|
|
334
334
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
335
335
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
336
336
|
is_latest_desired_state_synced_with_provider?:
|
|
337
|
-
| boolean
|
|
337
|
+
| (boolean | null)
|
|
338
338
|
| undefined
|
|
339
339
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
340
340
|
latest_desired_state_synced_with_provider_at?:
|
|
341
|
-
| string
|
|
341
|
+
| (string | null)
|
|
342
342
|
| undefined
|
|
343
343
|
/** Visionline-specific metadata for the credential. */
|
|
344
344
|
visionline_metadata?:
|
|
@@ -495,11 +495,11 @@ export interface Routes {
|
|
|
495
495
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
496
496
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
497
497
|
is_latest_desired_state_synced_with_provider?:
|
|
498
|
-
| boolean
|
|
498
|
+
| (boolean | null)
|
|
499
499
|
| undefined
|
|
500
500
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
501
501
|
latest_desired_state_synced_with_provider_at?:
|
|
502
|
-
| string
|
|
502
|
+
| (string | null)
|
|
503
503
|
| undefined
|
|
504
504
|
/** Visionline-specific metadata for the credential. */
|
|
505
505
|
visionline_metadata?:
|
|
@@ -609,11 +609,11 @@ export interface Routes {
|
|
|
609
609
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
610
610
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
611
611
|
is_latest_desired_state_synced_with_provider?:
|
|
612
|
-
| boolean
|
|
612
|
+
| (boolean | null)
|
|
613
613
|
| undefined
|
|
614
614
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
615
615
|
latest_desired_state_synced_with_provider_at?:
|
|
616
|
-
| string
|
|
616
|
+
| (string | null)
|
|
617
617
|
| undefined
|
|
618
618
|
/** Visionline-specific metadata for the credential. */
|
|
619
619
|
visionline_metadata?:
|
|
@@ -1326,11 +1326,11 @@ export interface Routes {
|
|
|
1326
1326
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
1327
1327
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1328
1328
|
is_latest_desired_state_synced_with_provider?:
|
|
1329
|
-
| boolean
|
|
1329
|
+
| (boolean | null)
|
|
1330
1330
|
| undefined
|
|
1331
1331
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1332
1332
|
latest_desired_state_synced_with_provider_at?:
|
|
1333
|
-
| string
|
|
1333
|
+
| (string | null)
|
|
1334
1334
|
| undefined
|
|
1335
1335
|
/** Visionline-specific metadata for the credential. */
|
|
1336
1336
|
visionline_metadata?:
|
|
@@ -1440,11 +1440,11 @@ export interface Routes {
|
|
|
1440
1440
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
1441
1441
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1442
1442
|
is_latest_desired_state_synced_with_provider?:
|
|
1443
|
-
| boolean
|
|
1443
|
+
| (boolean | null)
|
|
1444
1444
|
| undefined
|
|
1445
1445
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1446
1446
|
latest_desired_state_synced_with_provider_at?:
|
|
1447
|
-
| string
|
|
1447
|
+
| (string | null)
|
|
1448
1448
|
| undefined
|
|
1449
1449
|
/** Visionline-specific metadata for the credential. */
|
|
1450
1450
|
visionline_metadata?:
|
|
@@ -1601,11 +1601,11 @@ export interface Routes {
|
|
|
1601
1601
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
1602
1602
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1603
1603
|
is_latest_desired_state_synced_with_provider?:
|
|
1604
|
-
| boolean
|
|
1604
|
+
| (boolean | null)
|
|
1605
1605
|
| undefined
|
|
1606
1606
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1607
1607
|
latest_desired_state_synced_with_provider_at?:
|
|
1608
|
-
| string
|
|
1608
|
+
| (string | null)
|
|
1609
1609
|
| undefined
|
|
1610
1610
|
/** Visionline-specific metadata for the credential. */
|
|
1611
1611
|
visionline_metadata?:
|
|
@@ -1715,11 +1715,11 @@ export interface Routes {
|
|
|
1715
1715
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
1716
1716
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1717
1717
|
is_latest_desired_state_synced_with_provider?:
|
|
1718
|
-
| boolean
|
|
1718
|
+
| (boolean | null)
|
|
1719
1719
|
| undefined
|
|
1720
1720
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1721
1721
|
latest_desired_state_synced_with_provider_at?:
|
|
1722
|
-
| string
|
|
1722
|
+
| (string | null)
|
|
1723
1723
|
| undefined
|
|
1724
1724
|
/** Visionline-specific metadata for the credential. */
|
|
1725
1725
|
visionline_metadata?:
|
|
@@ -2662,11 +2662,11 @@ export interface Routes {
|
|
|
2662
2662
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
2663
2663
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
2664
2664
|
is_latest_desired_state_synced_with_provider?:
|
|
2665
|
-
| boolean
|
|
2665
|
+
| (boolean | null)
|
|
2666
2666
|
| undefined
|
|
2667
2667
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
2668
2668
|
latest_desired_state_synced_with_provider_at?:
|
|
2669
|
-
| string
|
|
2669
|
+
| (string | null)
|
|
2670
2670
|
| undefined
|
|
2671
2671
|
/** Visionline-specific metadata for the credential. */
|
|
2672
2672
|
visionline_metadata?:
|
|
@@ -2776,11 +2776,11 @@ export interface Routes {
|
|
|
2776
2776
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
2777
2777
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
2778
2778
|
is_latest_desired_state_synced_with_provider?:
|
|
2779
|
-
| boolean
|
|
2779
|
+
| (boolean | null)
|
|
2780
2780
|
| undefined
|
|
2781
2781
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
2782
2782
|
latest_desired_state_synced_with_provider_at?:
|
|
2783
|
-
| string
|
|
2783
|
+
| (string | null)
|
|
2784
2784
|
| undefined
|
|
2785
2785
|
/** Visionline-specific metadata for the credential. */
|
|
2786
2786
|
visionline_metadata?:
|
|
@@ -2937,11 +2937,11 @@ export interface Routes {
|
|
|
2937
2937
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
2938
2938
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
2939
2939
|
is_latest_desired_state_synced_with_provider?:
|
|
2940
|
-
| boolean
|
|
2940
|
+
| (boolean | null)
|
|
2941
2941
|
| undefined
|
|
2942
2942
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
2943
2943
|
latest_desired_state_synced_with_provider_at?:
|
|
2944
|
-
| string
|
|
2944
|
+
| (string | null)
|
|
2945
2945
|
| undefined
|
|
2946
2946
|
/** Visionline-specific metadata for the credential. */
|
|
2947
2947
|
visionline_metadata?:
|
|
@@ -3051,11 +3051,11 @@ export interface Routes {
|
|
|
3051
3051
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
3052
3052
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
3053
3053
|
is_latest_desired_state_synced_with_provider?:
|
|
3054
|
-
| boolean
|
|
3054
|
+
| (boolean | null)
|
|
3055
3055
|
| undefined
|
|
3056
3056
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
3057
3057
|
latest_desired_state_synced_with_provider_at?:
|
|
3058
|
-
| string
|
|
3058
|
+
| (string | null)
|
|
3059
3059
|
| undefined
|
|
3060
3060
|
/** Visionline-specific metadata for the credential. */
|
|
3061
3061
|
visionline_metadata?:
|
|
@@ -3755,11 +3755,11 @@ export interface Routes {
|
|
|
3755
3755
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
3756
3756
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
3757
3757
|
is_latest_desired_state_synced_with_provider?:
|
|
3758
|
-
| boolean
|
|
3758
|
+
| (boolean | null)
|
|
3759
3759
|
| undefined
|
|
3760
3760
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
3761
3761
|
latest_desired_state_synced_with_provider_at?:
|
|
3762
|
-
| string
|
|
3762
|
+
| (string | null)
|
|
3763
3763
|
| undefined
|
|
3764
3764
|
/** Visionline-specific metadata for the credential. */
|
|
3765
3765
|
visionline_metadata?:
|
|
@@ -3869,11 +3869,11 @@ export interface Routes {
|
|
|
3869
3869
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
3870
3870
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
3871
3871
|
is_latest_desired_state_synced_with_provider?:
|
|
3872
|
-
| boolean
|
|
3872
|
+
| (boolean | null)
|
|
3873
3873
|
| undefined
|
|
3874
3874
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
3875
3875
|
latest_desired_state_synced_with_provider_at?:
|
|
3876
|
-
| string
|
|
3876
|
+
| (string | null)
|
|
3877
3877
|
| undefined
|
|
3878
3878
|
/** Visionline-specific metadata for the credential. */
|
|
3879
3879
|
visionline_metadata?:
|
|
@@ -4030,11 +4030,11 @@ export interface Routes {
|
|
|
4030
4030
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
4031
4031
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
4032
4032
|
is_latest_desired_state_synced_with_provider?:
|
|
4033
|
-
| boolean
|
|
4033
|
+
| (boolean | null)
|
|
4034
4034
|
| undefined
|
|
4035
4035
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
4036
4036
|
latest_desired_state_synced_with_provider_at?:
|
|
4037
|
-
| string
|
|
4037
|
+
| (string | null)
|
|
4038
4038
|
| undefined
|
|
4039
4039
|
/** Visionline-specific metadata for the credential. */
|
|
4040
4040
|
visionline_metadata?:
|
|
@@ -4144,11 +4144,11 @@ export interface Routes {
|
|
|
4144
4144
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
4145
4145
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
4146
4146
|
is_latest_desired_state_synced_with_provider?:
|
|
4147
|
-
| boolean
|
|
4147
|
+
| (boolean | null)
|
|
4148
4148
|
| undefined
|
|
4149
4149
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
4150
4150
|
latest_desired_state_synced_with_provider_at?:
|
|
4151
|
-
| string
|
|
4151
|
+
| (string | null)
|
|
4152
4152
|
| undefined
|
|
4153
4153
|
/** Visionline-specific metadata for the credential. */
|
|
4154
4154
|
visionline_metadata?:
|
|
@@ -4791,9 +4791,13 @@ export interface Routes {
|
|
|
4791
4791
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4792
4792
|
user_identity_phone_number?: (string | null) | undefined
|
|
4793
4793
|
/** */
|
|
4794
|
-
latest_desired_state_synced_with_provider_at?:
|
|
4794
|
+
latest_desired_state_synced_with_provider_at?:
|
|
4795
|
+
| (string | null)
|
|
4796
|
+
| undefined
|
|
4795
4797
|
/** */
|
|
4796
|
-
is_latest_desired_state_synced_with_provider?:
|
|
4798
|
+
is_latest_desired_state_synced_with_provider?:
|
|
4799
|
+
| (boolean | null)
|
|
4800
|
+
| undefined
|
|
4797
4801
|
/** Warnings associated with the `acs_user`. */
|
|
4798
4802
|
warnings: Array<
|
|
4799
4803
|
| {
|
|
@@ -5141,9 +5145,13 @@ export interface Routes {
|
|
|
5141
5145
|
/** 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). */
|
|
5142
5146
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5143
5147
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5144
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5148
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5149
|
+
| (boolean | null)
|
|
5150
|
+
| undefined
|
|
5145
5151
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5146
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5152
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5153
|
+
| (string | null)
|
|
5154
|
+
| undefined
|
|
5147
5155
|
/** Visionline-specific metadata for the credential. */
|
|
5148
5156
|
visionline_metadata?:
|
|
5149
5157
|
| {
|
|
@@ -5205,6 +5213,13 @@ export interface Routes {
|
|
|
5205
5213
|
override_guest_acs_entrance_ids?: string[] | undefined
|
|
5206
5214
|
}
|
|
5207
5215
|
| undefined
|
|
5216
|
+
/** Salto Space-specific metadata for the new credential. */
|
|
5217
|
+
salto_space_metadata?:
|
|
5218
|
+
| {
|
|
5219
|
+
assign_new_key?: boolean | undefined
|
|
5220
|
+
update_current_key?: boolean | undefined
|
|
5221
|
+
}
|
|
5222
|
+
| undefined
|
|
5208
5223
|
/** Date and time at which the validity of the new credential starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
5209
5224
|
starts_at?: string | undefined
|
|
5210
5225
|
/** Date and time at which the validity of the new credential ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
@@ -5306,9 +5321,13 @@ export interface Routes {
|
|
|
5306
5321
|
/** 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). */
|
|
5307
5322
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5308
5323
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5309
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5324
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5325
|
+
| (boolean | null)
|
|
5326
|
+
| undefined
|
|
5310
5327
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5311
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5328
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5329
|
+
| (string | null)
|
|
5330
|
+
| undefined
|
|
5312
5331
|
/** Visionline-specific metadata for the credential. */
|
|
5313
5332
|
visionline_metadata?:
|
|
5314
5333
|
| {
|
|
@@ -5439,9 +5458,13 @@ export interface Routes {
|
|
|
5439
5458
|
/** 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). */
|
|
5440
5459
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5441
5460
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5442
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5461
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5462
|
+
| (boolean | null)
|
|
5463
|
+
| undefined
|
|
5443
5464
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5444
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5465
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5466
|
+
| (string | null)
|
|
5467
|
+
| undefined
|
|
5445
5468
|
/** Visionline-specific metadata for the credential. */
|
|
5446
5469
|
visionline_metadata?:
|
|
5447
5470
|
| {
|
|
@@ -5576,9 +5599,13 @@ export interface Routes {
|
|
|
5576
5599
|
/** 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). */
|
|
5577
5600
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5578
5601
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5579
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5602
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5603
|
+
| (boolean | null)
|
|
5604
|
+
| undefined
|
|
5580
5605
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5581
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5606
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5607
|
+
| (string | null)
|
|
5608
|
+
| undefined
|
|
5582
5609
|
/** Visionline-specific metadata for the credential. */
|
|
5583
5610
|
visionline_metadata?:
|
|
5584
5611
|
| {
|
|
@@ -5722,9 +5749,13 @@ export interface Routes {
|
|
|
5722
5749
|
/** 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). */
|
|
5723
5750
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5724
5751
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5725
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5752
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5753
|
+
| (boolean | null)
|
|
5754
|
+
| undefined
|
|
5726
5755
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5727
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5756
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5757
|
+
| (string | null)
|
|
5758
|
+
| undefined
|
|
5728
5759
|
/** Visionline-specific metadata for the credential. */
|
|
5729
5760
|
visionline_metadata?:
|
|
5730
5761
|
| {
|
|
@@ -5939,9 +5970,13 @@ export interface Routes {
|
|
|
5939
5970
|
/** 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). */
|
|
5940
5971
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5941
5972
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5942
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5973
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5974
|
+
| (boolean | null)
|
|
5975
|
+
| undefined
|
|
5943
5976
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5944
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5977
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5978
|
+
| (string | null)
|
|
5979
|
+
| undefined
|
|
5945
5980
|
/** Visionline-specific metadata for the credential. */
|
|
5946
5981
|
visionline_metadata?:
|
|
5947
5982
|
| {
|
|
@@ -6064,9 +6099,13 @@ export interface Routes {
|
|
|
6064
6099
|
/** 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). */
|
|
6065
6100
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6066
6101
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6067
|
-
is_latest_desired_state_synced_with_provider?:
|
|
6102
|
+
is_latest_desired_state_synced_with_provider?:
|
|
6103
|
+
| (boolean | null)
|
|
6104
|
+
| undefined
|
|
6068
6105
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6069
|
-
latest_desired_state_synced_with_provider_at?:
|
|
6106
|
+
latest_desired_state_synced_with_provider_at?:
|
|
6107
|
+
| (string | null)
|
|
6108
|
+
| undefined
|
|
6070
6109
|
/** Visionline-specific metadata for the credential. */
|
|
6071
6110
|
visionline_metadata?:
|
|
6072
6111
|
| {
|
|
@@ -6202,9 +6241,13 @@ export interface Routes {
|
|
|
6202
6241
|
/** 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). */
|
|
6203
6242
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6204
6243
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6205
|
-
is_latest_desired_state_synced_with_provider?:
|
|
6244
|
+
is_latest_desired_state_synced_with_provider?:
|
|
6245
|
+
| (boolean | null)
|
|
6246
|
+
| undefined
|
|
6206
6247
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6207
|
-
latest_desired_state_synced_with_provider_at?:
|
|
6248
|
+
latest_desired_state_synced_with_provider_at?:
|
|
6249
|
+
| (string | null)
|
|
6250
|
+
| undefined
|
|
6208
6251
|
/** Visionline-specific metadata for the credential. */
|
|
6209
6252
|
visionline_metadata?:
|
|
6210
6253
|
| {
|
|
@@ -6331,9 +6374,13 @@ export interface Routes {
|
|
|
6331
6374
|
/** 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). */
|
|
6332
6375
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6333
6376
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6334
|
-
is_latest_desired_state_synced_with_provider?:
|
|
6377
|
+
is_latest_desired_state_synced_with_provider?:
|
|
6378
|
+
| (boolean | null)
|
|
6379
|
+
| undefined
|
|
6335
6380
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6336
|
-
latest_desired_state_synced_with_provider_at?:
|
|
6381
|
+
latest_desired_state_synced_with_provider_at?:
|
|
6382
|
+
| (string | null)
|
|
6383
|
+
| undefined
|
|
6337
6384
|
/** Visionline-specific metadata for the credential. */
|
|
6338
6385
|
visionline_metadata?:
|
|
6339
6386
|
| {
|
|
@@ -6559,11 +6606,11 @@ export interface Routes {
|
|
|
6559
6606
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6560
6607
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6561
6608
|
is_latest_desired_state_synced_with_provider?:
|
|
6562
|
-
| boolean
|
|
6609
|
+
| (boolean | null)
|
|
6563
6610
|
| undefined
|
|
6564
6611
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6565
6612
|
latest_desired_state_synced_with_provider_at?:
|
|
6566
|
-
| string
|
|
6613
|
+
| (string | null)
|
|
6567
6614
|
| undefined
|
|
6568
6615
|
/** Visionline-specific metadata for the credential. */
|
|
6569
6616
|
visionline_metadata?:
|
|
@@ -6673,11 +6720,11 @@ export interface Routes {
|
|
|
6673
6720
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6674
6721
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6675
6722
|
is_latest_desired_state_synced_with_provider?:
|
|
6676
|
-
| boolean
|
|
6723
|
+
| (boolean | null)
|
|
6677
6724
|
| undefined
|
|
6678
6725
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6679
6726
|
latest_desired_state_synced_with_provider_at?:
|
|
6680
|
-
| string
|
|
6727
|
+
| (string | null)
|
|
6681
6728
|
| undefined
|
|
6682
6729
|
/** Visionline-specific metadata for the credential. */
|
|
6683
6730
|
visionline_metadata?:
|
|
@@ -6834,11 +6881,11 @@ export interface Routes {
|
|
|
6834
6881
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6835
6882
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6836
6883
|
is_latest_desired_state_synced_with_provider?:
|
|
6837
|
-
| boolean
|
|
6884
|
+
| (boolean | null)
|
|
6838
6885
|
| undefined
|
|
6839
6886
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6840
6887
|
latest_desired_state_synced_with_provider_at?:
|
|
6841
|
-
| string
|
|
6888
|
+
| (string | null)
|
|
6842
6889
|
| undefined
|
|
6843
6890
|
/** Visionline-specific metadata for the credential. */
|
|
6844
6891
|
visionline_metadata?:
|
|
@@ -6948,11 +6995,11 @@ export interface Routes {
|
|
|
6948
6995
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6949
6996
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6950
6997
|
is_latest_desired_state_synced_with_provider?:
|
|
6951
|
-
| boolean
|
|
6998
|
+
| (boolean | null)
|
|
6952
6999
|
| undefined
|
|
6953
7000
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6954
7001
|
latest_desired_state_synced_with_provider_at?:
|
|
6955
|
-
| string
|
|
7002
|
+
| (string | null)
|
|
6956
7003
|
| undefined
|
|
6957
7004
|
/** Visionline-specific metadata for the credential. */
|
|
6958
7005
|
visionline_metadata?:
|
|
@@ -7550,11 +7597,11 @@ export interface Routes {
|
|
|
7550
7597
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7551
7598
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
7552
7599
|
is_latest_desired_state_synced_with_provider?:
|
|
7553
|
-
| boolean
|
|
7600
|
+
| (boolean | null)
|
|
7554
7601
|
| undefined
|
|
7555
7602
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
7556
7603
|
latest_desired_state_synced_with_provider_at?:
|
|
7557
|
-
| string
|
|
7604
|
+
| (string | null)
|
|
7558
7605
|
| undefined
|
|
7559
7606
|
/** Visionline-specific metadata for the credential. */
|
|
7560
7607
|
visionline_metadata?:
|
|
@@ -7664,11 +7711,11 @@ export interface Routes {
|
|
|
7664
7711
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7665
7712
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
7666
7713
|
is_latest_desired_state_synced_with_provider?:
|
|
7667
|
-
| boolean
|
|
7714
|
+
| (boolean | null)
|
|
7668
7715
|
| undefined
|
|
7669
7716
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
7670
7717
|
latest_desired_state_synced_with_provider_at?:
|
|
7671
|
-
| string
|
|
7718
|
+
| (string | null)
|
|
7672
7719
|
| undefined
|
|
7673
7720
|
/** Visionline-specific metadata for the credential. */
|
|
7674
7721
|
visionline_metadata?:
|
|
@@ -7825,11 +7872,11 @@ export interface Routes {
|
|
|
7825
7872
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7826
7873
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
7827
7874
|
is_latest_desired_state_synced_with_provider?:
|
|
7828
|
-
| boolean
|
|
7875
|
+
| (boolean | null)
|
|
7829
7876
|
| undefined
|
|
7830
7877
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
7831
7878
|
latest_desired_state_synced_with_provider_at?:
|
|
7832
|
-
| string
|
|
7879
|
+
| (string | null)
|
|
7833
7880
|
| undefined
|
|
7834
7881
|
/** Visionline-specific metadata for the credential. */
|
|
7835
7882
|
visionline_metadata?:
|
|
@@ -7939,11 +7986,11 @@ export interface Routes {
|
|
|
7939
7986
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7940
7987
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
7941
7988
|
is_latest_desired_state_synced_with_provider?:
|
|
7942
|
-
| boolean
|
|
7989
|
+
| (boolean | null)
|
|
7943
7990
|
| undefined
|
|
7944
7991
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
7945
7992
|
latest_desired_state_synced_with_provider_at?:
|
|
7946
|
-
| string
|
|
7993
|
+
| (string | null)
|
|
7947
7994
|
| undefined
|
|
7948
7995
|
/** Visionline-specific metadata for the credential. */
|
|
7949
7996
|
visionline_metadata?:
|
|
@@ -8659,9 +8706,13 @@ export interface Routes {
|
|
|
8659
8706
|
/** 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). */
|
|
8660
8707
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
8661
8708
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
8662
|
-
is_latest_desired_state_synced_with_provider?:
|
|
8709
|
+
is_latest_desired_state_synced_with_provider?:
|
|
8710
|
+
| (boolean | null)
|
|
8711
|
+
| undefined
|
|
8663
8712
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
8664
|
-
latest_desired_state_synced_with_provider_at?:
|
|
8713
|
+
latest_desired_state_synced_with_provider_at?:
|
|
8714
|
+
| (string | null)
|
|
8715
|
+
| undefined
|
|
8665
8716
|
/** Visionline-specific metadata for the credential. */
|
|
8666
8717
|
visionline_metadata?:
|
|
8667
8718
|
| {
|
|
@@ -9284,9 +9335,13 @@ export interface Routes {
|
|
|
9284
9335
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
9285
9336
|
user_identity_phone_number?: (string | null) | undefined
|
|
9286
9337
|
/** */
|
|
9287
|
-
latest_desired_state_synced_with_provider_at?:
|
|
9338
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9339
|
+
| (string | null)
|
|
9340
|
+
| undefined
|
|
9288
9341
|
/** */
|
|
9289
|
-
is_latest_desired_state_synced_with_provider?:
|
|
9342
|
+
is_latest_desired_state_synced_with_provider?:
|
|
9343
|
+
| (boolean | null)
|
|
9344
|
+
| undefined
|
|
9290
9345
|
/** Warnings associated with the `acs_user`. */
|
|
9291
9346
|
warnings: Array<
|
|
9292
9347
|
| {
|
|
@@ -9420,9 +9475,13 @@ export interface Routes {
|
|
|
9420
9475
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
9421
9476
|
user_identity_phone_number?: (string | null) | undefined
|
|
9422
9477
|
/** */
|
|
9423
|
-
latest_desired_state_synced_with_provider_at?:
|
|
9478
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9479
|
+
| (string | null)
|
|
9480
|
+
| undefined
|
|
9424
9481
|
/** */
|
|
9425
|
-
is_latest_desired_state_synced_with_provider?:
|
|
9482
|
+
is_latest_desired_state_synced_with_provider?:
|
|
9483
|
+
| (boolean | null)
|
|
9484
|
+
| undefined
|
|
9426
9485
|
/** Warnings associated with the `acs_user`. */
|
|
9427
9486
|
warnings: Array<
|
|
9428
9487
|
| {
|
|
@@ -9551,9 +9610,13 @@ export interface Routes {
|
|
|
9551
9610
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
9552
9611
|
user_identity_phone_number?: (string | null) | undefined
|
|
9553
9612
|
/** */
|
|
9554
|
-
latest_desired_state_synced_with_provider_at?:
|
|
9613
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9614
|
+
| (string | null)
|
|
9615
|
+
| undefined
|
|
9555
9616
|
/** */
|
|
9556
|
-
is_latest_desired_state_synced_with_provider?:
|
|
9617
|
+
is_latest_desired_state_synced_with_provider?:
|
|
9618
|
+
| (boolean | null)
|
|
9619
|
+
| undefined
|
|
9557
9620
|
/** Warnings associated with the `acs_user`. */
|
|
9558
9621
|
warnings: Array<
|
|
9559
9622
|
| {
|
|
@@ -9802,9 +9865,13 @@ export interface Routes {
|
|
|
9802
9865
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
9803
9866
|
user_identity_phone_number?: (string | null) | undefined
|
|
9804
9867
|
/** */
|
|
9805
|
-
latest_desired_state_synced_with_provider_at?:
|
|
9868
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9869
|
+
| (string | null)
|
|
9870
|
+
| undefined
|
|
9806
9871
|
/** */
|
|
9807
|
-
is_latest_desired_state_synced_with_provider?:
|
|
9872
|
+
is_latest_desired_state_synced_with_provider?:
|
|
9873
|
+
| (boolean | null)
|
|
9874
|
+
| undefined
|
|
9808
9875
|
/** Warnings associated with the `acs_user`. */
|
|
9809
9876
|
warnings: Array<
|
|
9810
9877
|
| {
|
|
@@ -9928,9 +9995,13 @@ export interface Routes {
|
|
|
9928
9995
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
9929
9996
|
user_identity_phone_number?: (string | null) | undefined
|
|
9930
9997
|
/** */
|
|
9931
|
-
latest_desired_state_synced_with_provider_at?:
|
|
9998
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9999
|
+
| (string | null)
|
|
10000
|
+
| undefined
|
|
9932
10001
|
/** */
|
|
9933
|
-
is_latest_desired_state_synced_with_provider?:
|
|
10002
|
+
is_latest_desired_state_synced_with_provider?:
|
|
10003
|
+
| (boolean | null)
|
|
10004
|
+
| undefined
|
|
9934
10005
|
/** Warnings associated with the `acs_user`. */
|
|
9935
10006
|
warnings: Array<
|
|
9936
10007
|
| {
|
|
@@ -10241,11 +10312,11 @@ export interface Routes {
|
|
|
10241
10312
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10242
10313
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
10243
10314
|
is_latest_desired_state_synced_with_provider?:
|
|
10244
|
-
| boolean
|
|
10315
|
+
| (boolean | null)
|
|
10245
10316
|
| undefined
|
|
10246
10317
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
10247
10318
|
latest_desired_state_synced_with_provider_at?:
|
|
10248
|
-
| string
|
|
10319
|
+
| (string | null)
|
|
10249
10320
|
| undefined
|
|
10250
10321
|
/** Visionline-specific metadata for the credential. */
|
|
10251
10322
|
visionline_metadata?:
|
|
@@ -10355,11 +10426,11 @@ export interface Routes {
|
|
|
10355
10426
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10356
10427
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
10357
10428
|
is_latest_desired_state_synced_with_provider?:
|
|
10358
|
-
| boolean
|
|
10429
|
+
| (boolean | null)
|
|
10359
10430
|
| undefined
|
|
10360
10431
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
10361
10432
|
latest_desired_state_synced_with_provider_at?:
|
|
10362
|
-
| string
|
|
10433
|
+
| (string | null)
|
|
10363
10434
|
| undefined
|
|
10364
10435
|
/** Visionline-specific metadata for the credential. */
|
|
10365
10436
|
visionline_metadata?:
|
|
@@ -10516,11 +10587,11 @@ export interface Routes {
|
|
|
10516
10587
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10517
10588
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
10518
10589
|
is_latest_desired_state_synced_with_provider?:
|
|
10519
|
-
| boolean
|
|
10590
|
+
| (boolean | null)
|
|
10520
10591
|
| undefined
|
|
10521
10592
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
10522
10593
|
latest_desired_state_synced_with_provider_at?:
|
|
10523
|
-
| string
|
|
10594
|
+
| (string | null)
|
|
10524
10595
|
| undefined
|
|
10525
10596
|
/** Visionline-specific metadata for the credential. */
|
|
10526
10597
|
visionline_metadata?:
|
|
@@ -10630,11 +10701,11 @@ export interface Routes {
|
|
|
10630
10701
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10631
10702
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
10632
10703
|
is_latest_desired_state_synced_with_provider?:
|
|
10633
|
-
| boolean
|
|
10704
|
+
| (boolean | null)
|
|
10634
10705
|
| undefined
|
|
10635
10706
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
10636
10707
|
latest_desired_state_synced_with_provider_at?:
|
|
10637
|
-
| string
|
|
10708
|
+
| (string | null)
|
|
10638
10709
|
| undefined
|
|
10639
10710
|
/** Visionline-specific metadata for the credential. */
|
|
10640
10711
|
visionline_metadata?:
|
|
@@ -11188,11 +11259,11 @@ export interface Routes {
|
|
|
11188
11259
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11189
11260
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
11190
11261
|
is_latest_desired_state_synced_with_provider?:
|
|
11191
|
-
| boolean
|
|
11262
|
+
| (boolean | null)
|
|
11192
11263
|
| undefined
|
|
11193
11264
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
11194
11265
|
latest_desired_state_synced_with_provider_at?:
|
|
11195
|
-
| string
|
|
11266
|
+
| (string | null)
|
|
11196
11267
|
| undefined
|
|
11197
11268
|
/** Visionline-specific metadata for the credential. */
|
|
11198
11269
|
visionline_metadata?:
|
|
@@ -11302,11 +11373,11 @@ export interface Routes {
|
|
|
11302
11373
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11303
11374
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
11304
11375
|
is_latest_desired_state_synced_with_provider?:
|
|
11305
|
-
| boolean
|
|
11376
|
+
| (boolean | null)
|
|
11306
11377
|
| undefined
|
|
11307
11378
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
11308
11379
|
latest_desired_state_synced_with_provider_at?:
|
|
11309
|
-
| string
|
|
11380
|
+
| (string | null)
|
|
11310
11381
|
| undefined
|
|
11311
11382
|
/** Visionline-specific metadata for the credential. */
|
|
11312
11383
|
visionline_metadata?:
|
|
@@ -11463,11 +11534,11 @@ export interface Routes {
|
|
|
11463
11534
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11464
11535
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
11465
11536
|
is_latest_desired_state_synced_with_provider?:
|
|
11466
|
-
| boolean
|
|
11537
|
+
| (boolean | null)
|
|
11467
11538
|
| undefined
|
|
11468
11539
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
11469
11540
|
latest_desired_state_synced_with_provider_at?:
|
|
11470
|
-
| string
|
|
11541
|
+
| (string | null)
|
|
11471
11542
|
| undefined
|
|
11472
11543
|
/** Visionline-specific metadata for the credential. */
|
|
11473
11544
|
visionline_metadata?:
|
|
@@ -11577,11 +11648,11 @@ export interface Routes {
|
|
|
11577
11648
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11578
11649
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
11579
11650
|
is_latest_desired_state_synced_with_provider?:
|
|
11580
|
-
| boolean
|
|
11651
|
+
| (boolean | null)
|
|
11581
11652
|
| undefined
|
|
11582
11653
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
11583
11654
|
latest_desired_state_synced_with_provider_at?:
|
|
11584
|
-
| string
|
|
11655
|
+
| (string | null)
|
|
11585
11656
|
| undefined
|
|
11586
11657
|
/** Visionline-specific metadata for the credential. */
|
|
11587
11658
|
visionline_metadata?:
|
|
@@ -20523,11 +20594,11 @@ export interface Routes {
|
|
|
20523
20594
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
20524
20595
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20525
20596
|
is_latest_desired_state_synced_with_provider?:
|
|
20526
|
-
| boolean
|
|
20597
|
+
| (boolean | null)
|
|
20527
20598
|
| undefined
|
|
20528
20599
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20529
20600
|
latest_desired_state_synced_with_provider_at?:
|
|
20530
|
-
| string
|
|
20601
|
+
| (string | null)
|
|
20531
20602
|
| undefined
|
|
20532
20603
|
/** Visionline-specific metadata for the credential. */
|
|
20533
20604
|
visionline_metadata?:
|
|
@@ -20637,11 +20708,11 @@ export interface Routes {
|
|
|
20637
20708
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
20638
20709
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20639
20710
|
is_latest_desired_state_synced_with_provider?:
|
|
20640
|
-
| boolean
|
|
20711
|
+
| (boolean | null)
|
|
20641
20712
|
| undefined
|
|
20642
20713
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20643
20714
|
latest_desired_state_synced_with_provider_at?:
|
|
20644
|
-
| string
|
|
20715
|
+
| (string | null)
|
|
20645
20716
|
| undefined
|
|
20646
20717
|
/** Visionline-specific metadata for the credential. */
|
|
20647
20718
|
visionline_metadata?:
|
|
@@ -20798,11 +20869,11 @@ export interface Routes {
|
|
|
20798
20869
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
20799
20870
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20800
20871
|
is_latest_desired_state_synced_with_provider?:
|
|
20801
|
-
| boolean
|
|
20872
|
+
| (boolean | null)
|
|
20802
20873
|
| undefined
|
|
20803
20874
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20804
20875
|
latest_desired_state_synced_with_provider_at?:
|
|
20805
|
-
| string
|
|
20876
|
+
| (string | null)
|
|
20806
20877
|
| undefined
|
|
20807
20878
|
/** Visionline-specific metadata for the credential. */
|
|
20808
20879
|
visionline_metadata?:
|
|
@@ -20912,11 +20983,11 @@ export interface Routes {
|
|
|
20912
20983
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
20913
20984
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20914
20985
|
is_latest_desired_state_synced_with_provider?:
|
|
20915
|
-
| boolean
|
|
20986
|
+
| (boolean | null)
|
|
20916
20987
|
| undefined
|
|
20917
20988
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20918
20989
|
latest_desired_state_synced_with_provider_at?:
|
|
20919
|
-
| string
|
|
20990
|
+
| (string | null)
|
|
20920
20991
|
| undefined
|
|
20921
20992
|
/** Visionline-specific metadata for the credential. */
|
|
20922
20993
|
visionline_metadata?:
|
|
@@ -21471,11 +21542,11 @@ export interface Routes {
|
|
|
21471
21542
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21472
21543
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21473
21544
|
is_latest_desired_state_synced_with_provider?:
|
|
21474
|
-
| boolean
|
|
21545
|
+
| (boolean | null)
|
|
21475
21546
|
| undefined
|
|
21476
21547
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21477
21548
|
latest_desired_state_synced_with_provider_at?:
|
|
21478
|
-
| string
|
|
21549
|
+
| (string | null)
|
|
21479
21550
|
| undefined
|
|
21480
21551
|
/** Visionline-specific metadata for the credential. */
|
|
21481
21552
|
visionline_metadata?:
|
|
@@ -21585,11 +21656,11 @@ export interface Routes {
|
|
|
21585
21656
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21586
21657
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21587
21658
|
is_latest_desired_state_synced_with_provider?:
|
|
21588
|
-
| boolean
|
|
21659
|
+
| (boolean | null)
|
|
21589
21660
|
| undefined
|
|
21590
21661
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21591
21662
|
latest_desired_state_synced_with_provider_at?:
|
|
21592
|
-
| string
|
|
21663
|
+
| (string | null)
|
|
21593
21664
|
| undefined
|
|
21594
21665
|
/** Visionline-specific metadata for the credential. */
|
|
21595
21666
|
visionline_metadata?:
|
|
@@ -21746,11 +21817,11 @@ export interface Routes {
|
|
|
21746
21817
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21747
21818
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21748
21819
|
is_latest_desired_state_synced_with_provider?:
|
|
21749
|
-
| boolean
|
|
21820
|
+
| (boolean | null)
|
|
21750
21821
|
| undefined
|
|
21751
21822
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21752
21823
|
latest_desired_state_synced_with_provider_at?:
|
|
21753
|
-
| string
|
|
21824
|
+
| (string | null)
|
|
21754
21825
|
| undefined
|
|
21755
21826
|
/** Visionline-specific metadata for the credential. */
|
|
21756
21827
|
visionline_metadata?:
|
|
@@ -21860,11 +21931,11 @@ export interface Routes {
|
|
|
21860
21931
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21861
21932
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21862
21933
|
is_latest_desired_state_synced_with_provider?:
|
|
21863
|
-
| boolean
|
|
21934
|
+
| (boolean | null)
|
|
21864
21935
|
| undefined
|
|
21865
21936
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21866
21937
|
latest_desired_state_synced_with_provider_at?:
|
|
21867
|
-
| string
|
|
21938
|
+
| (string | null)
|
|
21868
21939
|
| undefined
|
|
21869
21940
|
/** Visionline-specific metadata for the credential. */
|
|
21870
21941
|
visionline_metadata?:
|
|
@@ -24046,11 +24117,11 @@ export interface Routes {
|
|
|
24046
24117
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
24047
24118
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24048
24119
|
is_latest_desired_state_synced_with_provider?:
|
|
24049
|
-
| boolean
|
|
24120
|
+
| (boolean | null)
|
|
24050
24121
|
| undefined
|
|
24051
24122
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24052
24123
|
latest_desired_state_synced_with_provider_at?:
|
|
24053
|
-
| string
|
|
24124
|
+
| (string | null)
|
|
24054
24125
|
| undefined
|
|
24055
24126
|
/** Visionline-specific metadata for the credential. */
|
|
24056
24127
|
visionline_metadata?:
|
|
@@ -24160,11 +24231,11 @@ export interface Routes {
|
|
|
24160
24231
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
24161
24232
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24162
24233
|
is_latest_desired_state_synced_with_provider?:
|
|
24163
|
-
| boolean
|
|
24234
|
+
| (boolean | null)
|
|
24164
24235
|
| undefined
|
|
24165
24236
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24166
24237
|
latest_desired_state_synced_with_provider_at?:
|
|
24167
|
-
| string
|
|
24238
|
+
| (string | null)
|
|
24168
24239
|
| undefined
|
|
24169
24240
|
/** Visionline-specific metadata for the credential. */
|
|
24170
24241
|
visionline_metadata?:
|
|
@@ -24321,11 +24392,11 @@ export interface Routes {
|
|
|
24321
24392
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
24322
24393
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24323
24394
|
is_latest_desired_state_synced_with_provider?:
|
|
24324
|
-
| boolean
|
|
24395
|
+
| (boolean | null)
|
|
24325
24396
|
| undefined
|
|
24326
24397
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24327
24398
|
latest_desired_state_synced_with_provider_at?:
|
|
24328
|
-
| string
|
|
24399
|
+
| (string | null)
|
|
24329
24400
|
| undefined
|
|
24330
24401
|
/** Visionline-specific metadata for the credential. */
|
|
24331
24402
|
visionline_metadata?:
|
|
@@ -24435,11 +24506,11 @@ export interface Routes {
|
|
|
24435
24506
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
24436
24507
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24437
24508
|
is_latest_desired_state_synced_with_provider?:
|
|
24438
|
-
| boolean
|
|
24509
|
+
| (boolean | null)
|
|
24439
24510
|
| undefined
|
|
24440
24511
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24441
24512
|
latest_desired_state_synced_with_provider_at?:
|
|
24442
|
-
| string
|
|
24513
|
+
| (string | null)
|
|
24443
24514
|
| undefined
|
|
24444
24515
|
/** Visionline-specific metadata for the credential. */
|
|
24445
24516
|
visionline_metadata?:
|
|
@@ -25004,11 +25075,11 @@ export interface Routes {
|
|
|
25004
25075
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
25005
25076
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25006
25077
|
is_latest_desired_state_synced_with_provider?:
|
|
25007
|
-
| boolean
|
|
25078
|
+
| (boolean | null)
|
|
25008
25079
|
| undefined
|
|
25009
25080
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25010
25081
|
latest_desired_state_synced_with_provider_at?:
|
|
25011
|
-
| string
|
|
25082
|
+
| (string | null)
|
|
25012
25083
|
| undefined
|
|
25013
25084
|
/** Visionline-specific metadata for the credential. */
|
|
25014
25085
|
visionline_metadata?:
|
|
@@ -25118,11 +25189,11 @@ export interface Routes {
|
|
|
25118
25189
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
25119
25190
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25120
25191
|
is_latest_desired_state_synced_with_provider?:
|
|
25121
|
-
| boolean
|
|
25192
|
+
| (boolean | null)
|
|
25122
25193
|
| undefined
|
|
25123
25194
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25124
25195
|
latest_desired_state_synced_with_provider_at?:
|
|
25125
|
-
| string
|
|
25196
|
+
| (string | null)
|
|
25126
25197
|
| undefined
|
|
25127
25198
|
/** Visionline-specific metadata for the credential. */
|
|
25128
25199
|
visionline_metadata?:
|
|
@@ -25279,11 +25350,11 @@ export interface Routes {
|
|
|
25279
25350
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
25280
25351
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25281
25352
|
is_latest_desired_state_synced_with_provider?:
|
|
25282
|
-
| boolean
|
|
25353
|
+
| (boolean | null)
|
|
25283
25354
|
| undefined
|
|
25284
25355
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25285
25356
|
latest_desired_state_synced_with_provider_at?:
|
|
25286
|
-
| string
|
|
25357
|
+
| (string | null)
|
|
25287
25358
|
| undefined
|
|
25288
25359
|
/** Visionline-specific metadata for the credential. */
|
|
25289
25360
|
visionline_metadata?:
|
|
@@ -25393,11 +25464,11 @@ export interface Routes {
|
|
|
25393
25464
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
25394
25465
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25395
25466
|
is_latest_desired_state_synced_with_provider?:
|
|
25396
|
-
| boolean
|
|
25467
|
+
| (boolean | null)
|
|
25397
25468
|
| undefined
|
|
25398
25469
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25399
25470
|
latest_desired_state_synced_with_provider_at?:
|
|
25400
|
-
| string
|
|
25471
|
+
| (string | null)
|
|
25401
25472
|
| undefined
|
|
25402
25473
|
/** Visionline-specific metadata for the credential. */
|
|
25403
25474
|
visionline_metadata?:
|
|
@@ -26001,11 +26072,11 @@ export interface Routes {
|
|
|
26001
26072
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
26002
26073
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
26003
26074
|
is_latest_desired_state_synced_with_provider?:
|
|
26004
|
-
| boolean
|
|
26075
|
+
| (boolean | null)
|
|
26005
26076
|
| undefined
|
|
26006
26077
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
26007
26078
|
latest_desired_state_synced_with_provider_at?:
|
|
26008
|
-
| string
|
|
26079
|
+
| (string | null)
|
|
26009
26080
|
| undefined
|
|
26010
26081
|
/** Visionline-specific metadata for the credential. */
|
|
26011
26082
|
visionline_metadata?:
|
|
@@ -26115,11 +26186,11 @@ export interface Routes {
|
|
|
26115
26186
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
26116
26187
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
26117
26188
|
is_latest_desired_state_synced_with_provider?:
|
|
26118
|
-
| boolean
|
|
26189
|
+
| (boolean | null)
|
|
26119
26190
|
| undefined
|
|
26120
26191
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
26121
26192
|
latest_desired_state_synced_with_provider_at?:
|
|
26122
|
-
| string
|
|
26193
|
+
| (string | null)
|
|
26123
26194
|
| undefined
|
|
26124
26195
|
/** Visionline-specific metadata for the credential. */
|
|
26125
26196
|
visionline_metadata?:
|
|
@@ -26276,11 +26347,11 @@ export interface Routes {
|
|
|
26276
26347
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
26277
26348
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
26278
26349
|
is_latest_desired_state_synced_with_provider?:
|
|
26279
|
-
| boolean
|
|
26350
|
+
| (boolean | null)
|
|
26280
26351
|
| undefined
|
|
26281
26352
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
26282
26353
|
latest_desired_state_synced_with_provider_at?:
|
|
26283
|
-
| string
|
|
26354
|
+
| (string | null)
|
|
26284
26355
|
| undefined
|
|
26285
26356
|
/** Visionline-specific metadata for the credential. */
|
|
26286
26357
|
visionline_metadata?:
|
|
@@ -26390,11 +26461,11 @@ export interface Routes {
|
|
|
26390
26461
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
26391
26462
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
26392
26463
|
is_latest_desired_state_synced_with_provider?:
|
|
26393
|
-
| boolean
|
|
26464
|
+
| (boolean | null)
|
|
26394
26465
|
| undefined
|
|
26395
26466
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
26396
26467
|
latest_desired_state_synced_with_provider_at?:
|
|
26397
|
-
| string
|
|
26468
|
+
| (string | null)
|
|
26398
26469
|
| undefined
|
|
26399
26470
|
/** Visionline-specific metadata for the credential. */
|
|
26400
26471
|
visionline_metadata?:
|
|
@@ -27157,11 +27228,11 @@ export interface Routes {
|
|
|
27157
27228
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
27158
27229
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27159
27230
|
is_latest_desired_state_synced_with_provider?:
|
|
27160
|
-
| boolean
|
|
27231
|
+
| (boolean | null)
|
|
27161
27232
|
| undefined
|
|
27162
27233
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27163
27234
|
latest_desired_state_synced_with_provider_at?:
|
|
27164
|
-
| string
|
|
27235
|
+
| (string | null)
|
|
27165
27236
|
| undefined
|
|
27166
27237
|
/** Visionline-specific metadata for the credential. */
|
|
27167
27238
|
visionline_metadata?:
|
|
@@ -27271,11 +27342,11 @@ export interface Routes {
|
|
|
27271
27342
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
27272
27343
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27273
27344
|
is_latest_desired_state_synced_with_provider?:
|
|
27274
|
-
| boolean
|
|
27345
|
+
| (boolean | null)
|
|
27275
27346
|
| undefined
|
|
27276
27347
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27277
27348
|
latest_desired_state_synced_with_provider_at?:
|
|
27278
|
-
| string
|
|
27349
|
+
| (string | null)
|
|
27279
27350
|
| undefined
|
|
27280
27351
|
/** Visionline-specific metadata for the credential. */
|
|
27281
27352
|
visionline_metadata?:
|
|
@@ -27432,11 +27503,11 @@ export interface Routes {
|
|
|
27432
27503
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
27433
27504
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27434
27505
|
is_latest_desired_state_synced_with_provider?:
|
|
27435
|
-
| boolean
|
|
27506
|
+
| (boolean | null)
|
|
27436
27507
|
| undefined
|
|
27437
27508
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27438
27509
|
latest_desired_state_synced_with_provider_at?:
|
|
27439
|
-
| string
|
|
27510
|
+
| (string | null)
|
|
27440
27511
|
| undefined
|
|
27441
27512
|
/** Visionline-specific metadata for the credential. */
|
|
27442
27513
|
visionline_metadata?:
|
|
@@ -27546,11 +27617,11 @@ export interface Routes {
|
|
|
27546
27617
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
27547
27618
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27548
27619
|
is_latest_desired_state_synced_with_provider?:
|
|
27549
|
-
| boolean
|
|
27620
|
+
| (boolean | null)
|
|
27550
27621
|
| undefined
|
|
27551
27622
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27552
27623
|
latest_desired_state_synced_with_provider_at?:
|
|
27553
|
-
| string
|
|
27624
|
+
| (string | null)
|
|
27554
27625
|
| undefined
|
|
27555
27626
|
/** Visionline-specific metadata for the credential. */
|
|
27556
27627
|
visionline_metadata?:
|
|
@@ -28111,11 +28182,11 @@ export interface Routes {
|
|
|
28111
28182
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
28112
28183
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28113
28184
|
is_latest_desired_state_synced_with_provider?:
|
|
28114
|
-
| boolean
|
|
28185
|
+
| (boolean | null)
|
|
28115
28186
|
| undefined
|
|
28116
28187
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28117
28188
|
latest_desired_state_synced_with_provider_at?:
|
|
28118
|
-
| string
|
|
28189
|
+
| (string | null)
|
|
28119
28190
|
| undefined
|
|
28120
28191
|
/** Visionline-specific metadata for the credential. */
|
|
28121
28192
|
visionline_metadata?:
|
|
@@ -28225,11 +28296,11 @@ export interface Routes {
|
|
|
28225
28296
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
28226
28297
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28227
28298
|
is_latest_desired_state_synced_with_provider?:
|
|
28228
|
-
| boolean
|
|
28299
|
+
| (boolean | null)
|
|
28229
28300
|
| undefined
|
|
28230
28301
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28231
28302
|
latest_desired_state_synced_with_provider_at?:
|
|
28232
|
-
| string
|
|
28303
|
+
| (string | null)
|
|
28233
28304
|
| undefined
|
|
28234
28305
|
/** Visionline-specific metadata for the credential. */
|
|
28235
28306
|
visionline_metadata?:
|
|
@@ -28386,11 +28457,11 @@ export interface Routes {
|
|
|
28386
28457
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
28387
28458
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28388
28459
|
is_latest_desired_state_synced_with_provider?:
|
|
28389
|
-
| boolean
|
|
28460
|
+
| (boolean | null)
|
|
28390
28461
|
| undefined
|
|
28391
28462
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28392
28463
|
latest_desired_state_synced_with_provider_at?:
|
|
28393
|
-
| string
|
|
28464
|
+
| (string | null)
|
|
28394
28465
|
| undefined
|
|
28395
28466
|
/** Visionline-specific metadata for the credential. */
|
|
28396
28467
|
visionline_metadata?:
|
|
@@ -28500,11 +28571,11 @@ export interface Routes {
|
|
|
28500
28571
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
28501
28572
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28502
28573
|
is_latest_desired_state_synced_with_provider?:
|
|
28503
|
-
| boolean
|
|
28574
|
+
| (boolean | null)
|
|
28504
28575
|
| undefined
|
|
28505
28576
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28506
28577
|
latest_desired_state_synced_with_provider_at?:
|
|
28507
|
-
| string
|
|
28578
|
+
| (string | null)
|
|
28508
28579
|
| undefined
|
|
28509
28580
|
/** Visionline-specific metadata for the credential. */
|
|
28510
28581
|
visionline_metadata?:
|
|
@@ -29827,11 +29898,11 @@ export interface Routes {
|
|
|
29827
29898
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
29828
29899
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
29829
29900
|
is_latest_desired_state_synced_with_provider?:
|
|
29830
|
-
| boolean
|
|
29901
|
+
| (boolean | null)
|
|
29831
29902
|
| undefined
|
|
29832
29903
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
29833
29904
|
latest_desired_state_synced_with_provider_at?:
|
|
29834
|
-
| string
|
|
29905
|
+
| (string | null)
|
|
29835
29906
|
| undefined
|
|
29836
29907
|
/** Visionline-specific metadata for the credential. */
|
|
29837
29908
|
visionline_metadata?:
|
|
@@ -29941,11 +30012,11 @@ export interface Routes {
|
|
|
29941
30012
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
29942
30013
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
29943
30014
|
is_latest_desired_state_synced_with_provider?:
|
|
29944
|
-
| boolean
|
|
30015
|
+
| (boolean | null)
|
|
29945
30016
|
| undefined
|
|
29946
30017
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
29947
30018
|
latest_desired_state_synced_with_provider_at?:
|
|
29948
|
-
| string
|
|
30019
|
+
| (string | null)
|
|
29949
30020
|
| undefined
|
|
29950
30021
|
/** Visionline-specific metadata for the credential. */
|
|
29951
30022
|
visionline_metadata?:
|
|
@@ -30102,11 +30173,11 @@ export interface Routes {
|
|
|
30102
30173
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
30103
30174
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
30104
30175
|
is_latest_desired_state_synced_with_provider?:
|
|
30105
|
-
| boolean
|
|
30176
|
+
| (boolean | null)
|
|
30106
30177
|
| undefined
|
|
30107
30178
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
30108
30179
|
latest_desired_state_synced_with_provider_at?:
|
|
30109
|
-
| string
|
|
30180
|
+
| (string | null)
|
|
30110
30181
|
| undefined
|
|
30111
30182
|
/** Visionline-specific metadata for the credential. */
|
|
30112
30183
|
visionline_metadata?:
|
|
@@ -30216,11 +30287,11 @@ export interface Routes {
|
|
|
30216
30287
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
30217
30288
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
30218
30289
|
is_latest_desired_state_synced_with_provider?:
|
|
30219
|
-
| boolean
|
|
30290
|
+
| (boolean | null)
|
|
30220
30291
|
| undefined
|
|
30221
30292
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
30222
30293
|
latest_desired_state_synced_with_provider_at?:
|
|
30223
|
-
| string
|
|
30294
|
+
| (string | null)
|
|
30224
30295
|
| undefined
|
|
30225
30296
|
/** Visionline-specific metadata for the credential. */
|
|
30226
30297
|
visionline_metadata?:
|
|
@@ -30785,11 +30856,11 @@ export interface Routes {
|
|
|
30785
30856
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
30786
30857
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
30787
30858
|
is_latest_desired_state_synced_with_provider?:
|
|
30788
|
-
| boolean
|
|
30859
|
+
| (boolean | null)
|
|
30789
30860
|
| undefined
|
|
30790
30861
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
30791
30862
|
latest_desired_state_synced_with_provider_at?:
|
|
30792
|
-
| string
|
|
30863
|
+
| (string | null)
|
|
30793
30864
|
| undefined
|
|
30794
30865
|
/** Visionline-specific metadata for the credential. */
|
|
30795
30866
|
visionline_metadata?:
|
|
@@ -30899,11 +30970,11 @@ export interface Routes {
|
|
|
30899
30970
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
30900
30971
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
30901
30972
|
is_latest_desired_state_synced_with_provider?:
|
|
30902
|
-
| boolean
|
|
30973
|
+
| (boolean | null)
|
|
30903
30974
|
| undefined
|
|
30904
30975
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
30905
30976
|
latest_desired_state_synced_with_provider_at?:
|
|
30906
|
-
| string
|
|
30977
|
+
| (string | null)
|
|
30907
30978
|
| undefined
|
|
30908
30979
|
/** Visionline-specific metadata for the credential. */
|
|
30909
30980
|
visionline_metadata?:
|
|
@@ -31060,11 +31131,11 @@ export interface Routes {
|
|
|
31060
31131
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
31061
31132
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
31062
31133
|
is_latest_desired_state_synced_with_provider?:
|
|
31063
|
-
| boolean
|
|
31134
|
+
| (boolean | null)
|
|
31064
31135
|
| undefined
|
|
31065
31136
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
31066
31137
|
latest_desired_state_synced_with_provider_at?:
|
|
31067
|
-
| string
|
|
31138
|
+
| (string | null)
|
|
31068
31139
|
| undefined
|
|
31069
31140
|
/** Visionline-specific metadata for the credential. */
|
|
31070
31141
|
visionline_metadata?:
|
|
@@ -31174,11 +31245,11 @@ export interface Routes {
|
|
|
31174
31245
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
31175
31246
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
31176
31247
|
is_latest_desired_state_synced_with_provider?:
|
|
31177
|
-
| boolean
|
|
31248
|
+
| (boolean | null)
|
|
31178
31249
|
| undefined
|
|
31179
31250
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
31180
31251
|
latest_desired_state_synced_with_provider_at?:
|
|
31181
|
-
| string
|
|
31252
|
+
| (string | null)
|
|
31182
31253
|
| undefined
|
|
31183
31254
|
/** Visionline-specific metadata for the credential. */
|
|
31184
31255
|
visionline_metadata?:
|
|
@@ -33323,11 +33394,11 @@ export interface Routes {
|
|
|
33323
33394
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
33324
33395
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
33325
33396
|
is_latest_desired_state_synced_with_provider?:
|
|
33326
|
-
| boolean
|
|
33397
|
+
| (boolean | null)
|
|
33327
33398
|
| undefined
|
|
33328
33399
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
33329
33400
|
latest_desired_state_synced_with_provider_at?:
|
|
33330
|
-
| string
|
|
33401
|
+
| (string | null)
|
|
33331
33402
|
| undefined
|
|
33332
33403
|
/** Visionline-specific metadata for the credential. */
|
|
33333
33404
|
visionline_metadata?:
|
|
@@ -33437,11 +33508,11 @@ export interface Routes {
|
|
|
33437
33508
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
33438
33509
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
33439
33510
|
is_latest_desired_state_synced_with_provider?:
|
|
33440
|
-
| boolean
|
|
33511
|
+
| (boolean | null)
|
|
33441
33512
|
| undefined
|
|
33442
33513
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
33443
33514
|
latest_desired_state_synced_with_provider_at?:
|
|
33444
|
-
| string
|
|
33515
|
+
| (string | null)
|
|
33445
33516
|
| undefined
|
|
33446
33517
|
/** Visionline-specific metadata for the credential. */
|
|
33447
33518
|
visionline_metadata?:
|
|
@@ -33598,11 +33669,11 @@ export interface Routes {
|
|
|
33598
33669
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
33599
33670
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
33600
33671
|
is_latest_desired_state_synced_with_provider?:
|
|
33601
|
-
| boolean
|
|
33672
|
+
| (boolean | null)
|
|
33602
33673
|
| undefined
|
|
33603
33674
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
33604
33675
|
latest_desired_state_synced_with_provider_at?:
|
|
33605
|
-
| string
|
|
33676
|
+
| (string | null)
|
|
33606
33677
|
| undefined
|
|
33607
33678
|
/** Visionline-specific metadata for the credential. */
|
|
33608
33679
|
visionline_metadata?:
|
|
@@ -33712,11 +33783,11 @@ export interface Routes {
|
|
|
33712
33783
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
33713
33784
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
33714
33785
|
is_latest_desired_state_synced_with_provider?:
|
|
33715
|
-
| boolean
|
|
33786
|
+
| (boolean | null)
|
|
33716
33787
|
| undefined
|
|
33717
33788
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
33718
33789
|
latest_desired_state_synced_with_provider_at?:
|
|
33719
|
-
| string
|
|
33790
|
+
| (string | null)
|
|
33720
33791
|
| undefined
|
|
33721
33792
|
/** Visionline-specific metadata for the credential. */
|
|
33722
33793
|
visionline_metadata?:
|
|
@@ -34448,11 +34519,11 @@ export interface Routes {
|
|
|
34448
34519
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
34449
34520
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
34450
34521
|
is_latest_desired_state_synced_with_provider?:
|
|
34451
|
-
| boolean
|
|
34522
|
+
| (boolean | null)
|
|
34452
34523
|
| undefined
|
|
34453
34524
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
34454
34525
|
latest_desired_state_synced_with_provider_at?:
|
|
34455
|
-
| string
|
|
34526
|
+
| (string | null)
|
|
34456
34527
|
| undefined
|
|
34457
34528
|
/** Visionline-specific metadata for the credential. */
|
|
34458
34529
|
visionline_metadata?:
|
|
@@ -34562,11 +34633,11 @@ export interface Routes {
|
|
|
34562
34633
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
34563
34634
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
34564
34635
|
is_latest_desired_state_synced_with_provider?:
|
|
34565
|
-
| boolean
|
|
34636
|
+
| (boolean | null)
|
|
34566
34637
|
| undefined
|
|
34567
34638
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
34568
34639
|
latest_desired_state_synced_with_provider_at?:
|
|
34569
|
-
| string
|
|
34640
|
+
| (string | null)
|
|
34570
34641
|
| undefined
|
|
34571
34642
|
/** Visionline-specific metadata for the credential. */
|
|
34572
34643
|
visionline_metadata?:
|
|
@@ -34723,11 +34794,11 @@ export interface Routes {
|
|
|
34723
34794
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
34724
34795
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
34725
34796
|
is_latest_desired_state_synced_with_provider?:
|
|
34726
|
-
| boolean
|
|
34797
|
+
| (boolean | null)
|
|
34727
34798
|
| undefined
|
|
34728
34799
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
34729
34800
|
latest_desired_state_synced_with_provider_at?:
|
|
34730
|
-
| string
|
|
34801
|
+
| (string | null)
|
|
34731
34802
|
| undefined
|
|
34732
34803
|
/** Visionline-specific metadata for the credential. */
|
|
34733
34804
|
visionline_metadata?:
|
|
@@ -34837,11 +34908,11 @@ export interface Routes {
|
|
|
34837
34908
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
34838
34909
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
34839
34910
|
is_latest_desired_state_synced_with_provider?:
|
|
34840
|
-
| boolean
|
|
34911
|
+
| (boolean | null)
|
|
34841
34912
|
| undefined
|
|
34842
34913
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
34843
34914
|
latest_desired_state_synced_with_provider_at?:
|
|
34844
|
-
| string
|
|
34915
|
+
| (string | null)
|
|
34845
34916
|
| undefined
|
|
34846
34917
|
/** Visionline-specific metadata for the credential. */
|
|
34847
34918
|
visionline_metadata?:
|
|
@@ -35429,11 +35500,11 @@ export interface Routes {
|
|
|
35429
35500
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
35430
35501
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
35431
35502
|
is_latest_desired_state_synced_with_provider?:
|
|
35432
|
-
| boolean
|
|
35503
|
+
| (boolean | null)
|
|
35433
35504
|
| undefined
|
|
35434
35505
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
35435
35506
|
latest_desired_state_synced_with_provider_at?:
|
|
35436
|
-
| string
|
|
35507
|
+
| (string | null)
|
|
35437
35508
|
| undefined
|
|
35438
35509
|
/** Visionline-specific metadata for the credential. */
|
|
35439
35510
|
visionline_metadata?:
|
|
@@ -35543,11 +35614,11 @@ export interface Routes {
|
|
|
35543
35614
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
35544
35615
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
35545
35616
|
is_latest_desired_state_synced_with_provider?:
|
|
35546
|
-
| boolean
|
|
35617
|
+
| (boolean | null)
|
|
35547
35618
|
| undefined
|
|
35548
35619
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
35549
35620
|
latest_desired_state_synced_with_provider_at?:
|
|
35550
|
-
| string
|
|
35621
|
+
| (string | null)
|
|
35551
35622
|
| undefined
|
|
35552
35623
|
/** Visionline-specific metadata for the credential. */
|
|
35553
35624
|
visionline_metadata?:
|
|
@@ -35704,11 +35775,11 @@ export interface Routes {
|
|
|
35704
35775
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
35705
35776
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
35706
35777
|
is_latest_desired_state_synced_with_provider?:
|
|
35707
|
-
| boolean
|
|
35778
|
+
| (boolean | null)
|
|
35708
35779
|
| undefined
|
|
35709
35780
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
35710
35781
|
latest_desired_state_synced_with_provider_at?:
|
|
35711
|
-
| string
|
|
35782
|
+
| (string | null)
|
|
35712
35783
|
| undefined
|
|
35713
35784
|
/** Visionline-specific metadata for the credential. */
|
|
35714
35785
|
visionline_metadata?:
|
|
@@ -35818,11 +35889,11 @@ export interface Routes {
|
|
|
35818
35889
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
35819
35890
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
35820
35891
|
is_latest_desired_state_synced_with_provider?:
|
|
35821
|
-
| boolean
|
|
35892
|
+
| (boolean | null)
|
|
35822
35893
|
| undefined
|
|
35823
35894
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
35824
35895
|
latest_desired_state_synced_with_provider_at?:
|
|
35825
|
-
| string
|
|
35896
|
+
| (string | null)
|
|
35826
35897
|
| undefined
|
|
35827
35898
|
/** Visionline-specific metadata for the credential. */
|
|
35828
35899
|
visionline_metadata?:
|
|
@@ -38098,9 +38169,13 @@ export interface Routes {
|
|
|
38098
38169
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
38099
38170
|
user_identity_phone_number?: (string | null) | undefined
|
|
38100
38171
|
/** */
|
|
38101
|
-
latest_desired_state_synced_with_provider_at?:
|
|
38172
|
+
latest_desired_state_synced_with_provider_at?:
|
|
38173
|
+
| (string | null)
|
|
38174
|
+
| undefined
|
|
38102
38175
|
/** */
|
|
38103
|
-
is_latest_desired_state_synced_with_provider?:
|
|
38176
|
+
is_latest_desired_state_synced_with_provider?:
|
|
38177
|
+
| (boolean | null)
|
|
38178
|
+
| undefined
|
|
38104
38179
|
/** Warnings associated with the `acs_user`. */
|
|
38105
38180
|
warnings: Array<
|
|
38106
38181
|
| {
|
|
@@ -38558,11 +38633,11 @@ export interface Routes {
|
|
|
38558
38633
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
38559
38634
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38560
38635
|
is_latest_desired_state_synced_with_provider?:
|
|
38561
|
-
| boolean
|
|
38636
|
+
| (boolean | null)
|
|
38562
38637
|
| undefined
|
|
38563
38638
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38564
38639
|
latest_desired_state_synced_with_provider_at?:
|
|
38565
|
-
| string
|
|
38640
|
+
| (string | null)
|
|
38566
38641
|
| undefined
|
|
38567
38642
|
/** Visionline-specific metadata for the credential. */
|
|
38568
38643
|
visionline_metadata?:
|
|
@@ -38672,11 +38747,11 @@ export interface Routes {
|
|
|
38672
38747
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
38673
38748
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38674
38749
|
is_latest_desired_state_synced_with_provider?:
|
|
38675
|
-
| boolean
|
|
38750
|
+
| (boolean | null)
|
|
38676
38751
|
| undefined
|
|
38677
38752
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38678
38753
|
latest_desired_state_synced_with_provider_at?:
|
|
38679
|
-
| string
|
|
38754
|
+
| (string | null)
|
|
38680
38755
|
| undefined
|
|
38681
38756
|
/** Visionline-specific metadata for the credential. */
|
|
38682
38757
|
visionline_metadata?:
|
|
@@ -38833,11 +38908,11 @@ export interface Routes {
|
|
|
38833
38908
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
38834
38909
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38835
38910
|
is_latest_desired_state_synced_with_provider?:
|
|
38836
|
-
| boolean
|
|
38911
|
+
| (boolean | null)
|
|
38837
38912
|
| undefined
|
|
38838
38913
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38839
38914
|
latest_desired_state_synced_with_provider_at?:
|
|
38840
|
-
| string
|
|
38915
|
+
| (string | null)
|
|
38841
38916
|
| undefined
|
|
38842
38917
|
/** Visionline-specific metadata for the credential. */
|
|
38843
38918
|
visionline_metadata?:
|
|
@@ -38947,11 +39022,11 @@ export interface Routes {
|
|
|
38947
39022
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
38948
39023
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38949
39024
|
is_latest_desired_state_synced_with_provider?:
|
|
38950
|
-
| boolean
|
|
39025
|
+
| (boolean | null)
|
|
38951
39026
|
| undefined
|
|
38952
39027
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38953
39028
|
latest_desired_state_synced_with_provider_at?:
|
|
38954
|
-
| string
|
|
39029
|
+
| (string | null)
|
|
38955
39030
|
| undefined
|
|
38956
39031
|
/** Visionline-specific metadata for the credential. */
|
|
38957
39032
|
visionline_metadata?:
|