@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
|
@@ -212,8 +212,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
212
212
|
created_at: string;
|
|
213
213
|
}>]>, "many">;
|
|
214
214
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
215
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
216
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
215
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
216
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
217
217
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
218
218
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
219
219
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -300,8 +300,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
300
300
|
is_issued?: boolean | undefined;
|
|
301
301
|
issued_at?: string | null | undefined;
|
|
302
302
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
303
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
304
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
303
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
304
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
305
305
|
}, {
|
|
306
306
|
created_at: string;
|
|
307
307
|
errors: {
|
|
@@ -358,8 +358,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
358
358
|
is_issued?: boolean | undefined;
|
|
359
359
|
issued_at?: string | null | undefined;
|
|
360
360
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
361
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
362
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
361
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
362
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
363
363
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
364
364
|
acs_credential_id: z.ZodString;
|
|
365
365
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -456,8 +456,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
456
456
|
created_at: string;
|
|
457
457
|
}>]>, "many">;
|
|
458
458
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
459
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
460
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
459
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
460
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
461
461
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
462
462
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
463
463
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -544,8 +544,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
544
544
|
is_issued?: boolean | undefined;
|
|
545
545
|
issued_at?: string | null | undefined;
|
|
546
546
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
547
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
548
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
547
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
548
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
549
549
|
}, {
|
|
550
550
|
created_at: string;
|
|
551
551
|
errors: {
|
|
@@ -602,8 +602,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
602
602
|
is_issued?: boolean | undefined;
|
|
603
603
|
issued_at?: string | null | undefined;
|
|
604
604
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
605
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
606
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
605
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
606
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
607
607
|
}>]>>;
|
|
608
608
|
warnings: z.ZodArray<z.ZodObject<{
|
|
609
609
|
warning_code: z.ZodUnion<[z.ZodLiteral<"acs_credential_on_encoder_out_of_sync">, z.ZodLiteral<"acs_credential_on_seam_not_found">]>;
|
|
@@ -697,8 +697,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
697
697
|
is_issued?: boolean | undefined;
|
|
698
698
|
issued_at?: string | null | undefined;
|
|
699
699
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
700
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
701
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
700
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
701
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
702
702
|
} | {
|
|
703
703
|
created_at: string;
|
|
704
704
|
errors: {
|
|
@@ -755,8 +755,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
755
755
|
is_issued?: boolean | undefined;
|
|
756
756
|
issued_at?: string | null | undefined;
|
|
757
757
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
758
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
759
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
758
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
759
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
760
760
|
} | null;
|
|
761
761
|
}, {
|
|
762
762
|
warnings: {
|
|
@@ -840,8 +840,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
840
840
|
is_issued?: boolean | undefined;
|
|
841
841
|
issued_at?: string | null | undefined;
|
|
842
842
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
843
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
844
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
843
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
844
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
845
845
|
} | {
|
|
846
846
|
created_at: string;
|
|
847
847
|
errors: {
|
|
@@ -898,8 +898,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
898
898
|
is_issued?: boolean | undefined;
|
|
899
899
|
issued_at?: string | null | undefined;
|
|
900
900
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
901
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
902
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
901
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
902
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
903
903
|
} | null;
|
|
904
904
|
}>;
|
|
905
905
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -988,8 +988,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
988
988
|
is_issued?: boolean | undefined;
|
|
989
989
|
issued_at?: string | null | undefined;
|
|
990
990
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
991
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
992
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
991
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
992
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
993
993
|
} | {
|
|
994
994
|
created_at: string;
|
|
995
995
|
errors: {
|
|
@@ -1046,8 +1046,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1046
1046
|
is_issued?: boolean | undefined;
|
|
1047
1047
|
issued_at?: string | null | undefined;
|
|
1048
1048
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1049
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1050
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1049
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1050
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1051
1051
|
} | null;
|
|
1052
1052
|
};
|
|
1053
1053
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -1137,8 +1137,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1137
1137
|
is_issued?: boolean | undefined;
|
|
1138
1138
|
issued_at?: string | null | undefined;
|
|
1139
1139
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1140
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1141
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1140
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1141
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1142
1142
|
} | {
|
|
1143
1143
|
created_at: string;
|
|
1144
1144
|
errors: {
|
|
@@ -1195,8 +1195,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1195
1195
|
is_issued?: boolean | undefined;
|
|
1196
1196
|
issued_at?: string | null | undefined;
|
|
1197
1197
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1198
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1199
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1198
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1199
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1200
1200
|
} | null;
|
|
1201
1201
|
};
|
|
1202
1202
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -335,6 +335,7 @@ declare const _default: {
|
|
|
335
335
|
};
|
|
336
336
|
is_latest_desired_state_synced_with_provider: {
|
|
337
337
|
description: string;
|
|
338
|
+
nullable: boolean;
|
|
338
339
|
type: string;
|
|
339
340
|
};
|
|
340
341
|
is_managed: {
|
|
@@ -357,6 +358,7 @@ declare const _default: {
|
|
|
357
358
|
latest_desired_state_synced_with_provider_at: {
|
|
358
359
|
description: string;
|
|
359
360
|
format: string;
|
|
361
|
+
nullable: boolean;
|
|
360
362
|
type: string;
|
|
361
363
|
};
|
|
362
364
|
parent_acs_credential_id: {
|
|
@@ -1000,6 +1002,7 @@ declare const _default: {
|
|
|
1000
1002
|
type: string;
|
|
1001
1003
|
};
|
|
1002
1004
|
is_latest_desired_state_synced_with_provider: {
|
|
1005
|
+
nullable: boolean;
|
|
1003
1006
|
type: string;
|
|
1004
1007
|
'x-undocumented': string;
|
|
1005
1008
|
};
|
|
@@ -1013,6 +1016,7 @@ declare const _default: {
|
|
|
1013
1016
|
};
|
|
1014
1017
|
latest_desired_state_synced_with_provider_at: {
|
|
1015
1018
|
format: string;
|
|
1019
|
+
nullable: boolean;
|
|
1016
1020
|
type: string;
|
|
1017
1021
|
'x-undocumented': string;
|
|
1018
1022
|
};
|
|
@@ -1385,6 +1389,7 @@ declare const _default: {
|
|
|
1385
1389
|
};
|
|
1386
1390
|
is_latest_desired_state_synced_with_provider: {
|
|
1387
1391
|
description: string;
|
|
1392
|
+
nullable: boolean;
|
|
1388
1393
|
type: string;
|
|
1389
1394
|
};
|
|
1390
1395
|
is_managed: {
|
|
@@ -1407,6 +1412,7 @@ declare const _default: {
|
|
|
1407
1412
|
latest_desired_state_synced_with_provider_at: {
|
|
1408
1413
|
description: string;
|
|
1409
1414
|
format: string;
|
|
1415
|
+
nullable: boolean;
|
|
1410
1416
|
type: string;
|
|
1411
1417
|
};
|
|
1412
1418
|
parent_acs_credential_id: {
|
|
@@ -1681,6 +1687,7 @@ declare const _default: {
|
|
|
1681
1687
|
};
|
|
1682
1688
|
is_latest_desired_state_synced_with_provider: {
|
|
1683
1689
|
description: string;
|
|
1690
|
+
nullable: boolean;
|
|
1684
1691
|
type: string;
|
|
1685
1692
|
};
|
|
1686
1693
|
is_managed: {
|
|
@@ -1703,6 +1710,7 @@ declare const _default: {
|
|
|
1703
1710
|
latest_desired_state_synced_with_provider_at: {
|
|
1704
1711
|
description: string;
|
|
1705
1712
|
format: string;
|
|
1713
|
+
nullable: boolean;
|
|
1706
1714
|
type: string;
|
|
1707
1715
|
};
|
|
1708
1716
|
parent_acs_credential_id: {
|
|
@@ -10336,6 +10344,18 @@ declare const _default: {
|
|
|
10336
10344
|
description: string;
|
|
10337
10345
|
type: string;
|
|
10338
10346
|
};
|
|
10347
|
+
salto_space_metadata: {
|
|
10348
|
+
description: string;
|
|
10349
|
+
properties: {
|
|
10350
|
+
assign_new_key: {
|
|
10351
|
+
type: string;
|
|
10352
|
+
};
|
|
10353
|
+
update_current_key: {
|
|
10354
|
+
type: string;
|
|
10355
|
+
};
|
|
10356
|
+
};
|
|
10357
|
+
type: string;
|
|
10358
|
+
};
|
|
10339
10359
|
starts_at: {
|
|
10340
10360
|
description: string;
|
|
10341
10361
|
format: string;
|
|
@@ -11139,6 +11159,7 @@ declare const _default: {
|
|
|
11139
11159
|
};
|
|
11140
11160
|
is_latest_desired_state_synced_with_provider: {
|
|
11141
11161
|
description: string;
|
|
11162
|
+
nullable: boolean;
|
|
11142
11163
|
type: string;
|
|
11143
11164
|
};
|
|
11144
11165
|
is_managed: {
|
|
@@ -11161,6 +11182,7 @@ declare const _default: {
|
|
|
11161
11182
|
latest_desired_state_synced_with_provider_at: {
|
|
11162
11183
|
description: string;
|
|
11163
11184
|
format: string;
|
|
11185
|
+
nullable: boolean;
|
|
11164
11186
|
type: string;
|
|
11165
11187
|
};
|
|
11166
11188
|
parent_acs_credential_id: {
|
|
@@ -11446,6 +11468,7 @@ declare const _default: {
|
|
|
11446
11468
|
};
|
|
11447
11469
|
is_latest_desired_state_synced_with_provider: {
|
|
11448
11470
|
description: string;
|
|
11471
|
+
nullable: boolean;
|
|
11449
11472
|
type: string;
|
|
11450
11473
|
};
|
|
11451
11474
|
is_managed: {
|
|
@@ -11468,6 +11491,7 @@ declare const _default: {
|
|
|
11468
11491
|
latest_desired_state_synced_with_provider_at: {
|
|
11469
11492
|
description: string;
|
|
11470
11493
|
format: string;
|
|
11494
|
+
nullable: boolean;
|
|
11471
11495
|
type: string;
|
|
11472
11496
|
};
|
|
11473
11497
|
parent_acs_credential_id: {
|
|
@@ -13853,6 +13877,7 @@ declare const _default: {
|
|
|
13853
13877
|
type: string;
|
|
13854
13878
|
};
|
|
13855
13879
|
is_latest_desired_state_synced_with_provider: {
|
|
13880
|
+
nullable: boolean;
|
|
13856
13881
|
type: string;
|
|
13857
13882
|
'x-undocumented': string;
|
|
13858
13883
|
};
|
|
@@ -13866,6 +13891,7 @@ declare const _default: {
|
|
|
13866
13891
|
};
|
|
13867
13892
|
latest_desired_state_synced_with_provider_at: {
|
|
13868
13893
|
format: string;
|
|
13894
|
+
nullable: boolean;
|
|
13869
13895
|
type: string;
|
|
13870
13896
|
'x-undocumented': string;
|
|
13871
13897
|
};
|
|
@@ -14102,6 +14128,7 @@ declare const _default: {
|
|
|
14102
14128
|
type: string;
|
|
14103
14129
|
};
|
|
14104
14130
|
is_latest_desired_state_synced_with_provider: {
|
|
14131
|
+
nullable: boolean;
|
|
14105
14132
|
type: string;
|
|
14106
14133
|
'x-undocumented': string;
|
|
14107
14134
|
};
|
|
@@ -14115,6 +14142,7 @@ declare const _default: {
|
|
|
14115
14142
|
};
|
|
14116
14143
|
latest_desired_state_synced_with_provider_at: {
|
|
14117
14144
|
format: string;
|
|
14145
|
+
nullable: boolean;
|
|
14118
14146
|
type: string;
|
|
14119
14147
|
'x-undocumented': string;
|
|
14120
14148
|
};
|
|
@@ -344,6 +344,7 @@ export default {
|
|
|
344
344
|
is_issued: { type: 'boolean' },
|
|
345
345
|
is_latest_desired_state_synced_with_provider: {
|
|
346
346
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
347
|
+
nullable: true,
|
|
347
348
|
type: 'boolean',
|
|
348
349
|
},
|
|
349
350
|
is_managed: { enum: [true], type: 'boolean' },
|
|
@@ -359,6 +360,7 @@ export default {
|
|
|
359
360
|
latest_desired_state_synced_with_provider_at: {
|
|
360
361
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
361
362
|
format: 'date-time',
|
|
363
|
+
nullable: true,
|
|
362
364
|
type: 'string',
|
|
363
365
|
},
|
|
364
366
|
parent_acs_credential_id: {
|
|
@@ -1239,6 +1241,7 @@ export default {
|
|
|
1239
1241
|
},
|
|
1240
1242
|
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
1241
1243
|
is_latest_desired_state_synced_with_provider: {
|
|
1244
|
+
nullable: true,
|
|
1242
1245
|
type: 'boolean',
|
|
1243
1246
|
'x-undocumented': 'Only used internally.',
|
|
1244
1247
|
},
|
|
@@ -1249,6 +1252,7 @@ export default {
|
|
|
1249
1252
|
},
|
|
1250
1253
|
latest_desired_state_synced_with_provider_at: {
|
|
1251
1254
|
format: 'date-time',
|
|
1255
|
+
nullable: true,
|
|
1252
1256
|
type: 'string',
|
|
1253
1257
|
'x-undocumented': 'Only used internally.',
|
|
1254
1258
|
},
|
|
@@ -1674,6 +1678,7 @@ export default {
|
|
|
1674
1678
|
is_issued: { type: 'boolean' },
|
|
1675
1679
|
is_latest_desired_state_synced_with_provider: {
|
|
1676
1680
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
1681
|
+
nullable: true,
|
|
1677
1682
|
type: 'boolean',
|
|
1678
1683
|
},
|
|
1679
1684
|
is_managed: { enum: [true], type: 'boolean' },
|
|
@@ -1693,6 +1698,7 @@ export default {
|
|
|
1693
1698
|
latest_desired_state_synced_with_provider_at: {
|
|
1694
1699
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
1695
1700
|
format: 'date-time',
|
|
1701
|
+
nullable: true,
|
|
1696
1702
|
type: 'string',
|
|
1697
1703
|
},
|
|
1698
1704
|
parent_acs_credential_id: {
|
|
@@ -1963,6 +1969,7 @@ export default {
|
|
|
1963
1969
|
is_issued: { type: 'boolean' },
|
|
1964
1970
|
is_latest_desired_state_synced_with_provider: {
|
|
1965
1971
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
1972
|
+
nullable: true,
|
|
1966
1973
|
type: 'boolean',
|
|
1967
1974
|
},
|
|
1968
1975
|
is_managed: { enum: [false], type: 'boolean' },
|
|
@@ -1982,6 +1989,7 @@ export default {
|
|
|
1982
1989
|
latest_desired_state_synced_with_provider_at: {
|
|
1983
1990
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
1984
1991
|
format: 'date-time',
|
|
1992
|
+
nullable: true,
|
|
1985
1993
|
type: 'string',
|
|
1986
1994
|
},
|
|
1987
1995
|
parent_acs_credential_id: {
|
|
@@ -2383,6 +2391,7 @@ export default {
|
|
|
2383
2391
|
is_issued: { type: 'boolean' },
|
|
2384
2392
|
is_latest_desired_state_synced_with_provider: {
|
|
2385
2393
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
2394
|
+
nullable: true,
|
|
2386
2395
|
type: 'boolean',
|
|
2387
2396
|
},
|
|
2388
2397
|
is_managed: { enum: [true], type: 'boolean' },
|
|
@@ -2402,6 +2411,7 @@ export default {
|
|
|
2402
2411
|
latest_desired_state_synced_with_provider_at: {
|
|
2403
2412
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
2404
2413
|
format: 'date-time',
|
|
2414
|
+
nullable: true,
|
|
2405
2415
|
type: 'string',
|
|
2406
2416
|
},
|
|
2407
2417
|
parent_acs_credential_id: {
|
|
@@ -2670,6 +2680,7 @@ export default {
|
|
|
2670
2680
|
is_issued: { type: 'boolean' },
|
|
2671
2681
|
is_latest_desired_state_synced_with_provider: {
|
|
2672
2682
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
2683
|
+
nullable: true,
|
|
2673
2684
|
type: 'boolean',
|
|
2674
2685
|
},
|
|
2675
2686
|
is_managed: { enum: [false], type: 'boolean' },
|
|
@@ -2689,6 +2700,7 @@ export default {
|
|
|
2689
2700
|
latest_desired_state_synced_with_provider_at: {
|
|
2690
2701
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
2691
2702
|
format: 'date-time',
|
|
2703
|
+
nullable: true,
|
|
2692
2704
|
type: 'string',
|
|
2693
2705
|
},
|
|
2694
2706
|
parent_acs_credential_id: {
|
|
@@ -12424,6 +12436,14 @@ export default {
|
|
|
12424
12436
|
description: 'Indicates whether the new 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).',
|
|
12425
12437
|
type: 'boolean',
|
|
12426
12438
|
},
|
|
12439
|
+
salto_space_metadata: {
|
|
12440
|
+
description: 'Salto Space-specific metadata for the new credential.',
|
|
12441
|
+
properties: {
|
|
12442
|
+
assign_new_key: { type: 'boolean' },
|
|
12443
|
+
update_current_key: { type: 'boolean' },
|
|
12444
|
+
},
|
|
12445
|
+
type: 'object',
|
|
12446
|
+
},
|
|
12427
12447
|
starts_at: {
|
|
12428
12448
|
description: '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.',
|
|
12429
12449
|
format: 'date-time',
|
|
@@ -13090,6 +13110,7 @@ export default {
|
|
|
13090
13110
|
is_issued: { type: 'boolean' },
|
|
13091
13111
|
is_latest_desired_state_synced_with_provider: {
|
|
13092
13112
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
13113
|
+
nullable: true,
|
|
13093
13114
|
type: 'boolean',
|
|
13094
13115
|
},
|
|
13095
13116
|
is_managed: { enum: [false], type: 'boolean' },
|
|
@@ -13109,6 +13130,7 @@ export default {
|
|
|
13109
13130
|
latest_desired_state_synced_with_provider_at: {
|
|
13110
13131
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
13111
13132
|
format: 'date-time',
|
|
13133
|
+
nullable: true,
|
|
13112
13134
|
type: 'string',
|
|
13113
13135
|
},
|
|
13114
13136
|
parent_acs_credential_id: {
|
|
@@ -13474,6 +13496,7 @@ export default {
|
|
|
13474
13496
|
is_issued: { type: 'boolean' },
|
|
13475
13497
|
is_latest_desired_state_synced_with_provider: {
|
|
13476
13498
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
13499
|
+
nullable: true,
|
|
13477
13500
|
type: 'boolean',
|
|
13478
13501
|
},
|
|
13479
13502
|
is_managed: { enum: [false], type: 'boolean' },
|
|
@@ -13493,6 +13516,7 @@ export default {
|
|
|
13493
13516
|
latest_desired_state_synced_with_provider_at: {
|
|
13494
13517
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
13495
13518
|
format: 'date-time',
|
|
13519
|
+
nullable: true,
|
|
13496
13520
|
type: 'string',
|
|
13497
13521
|
},
|
|
13498
13522
|
parent_acs_credential_id: {
|
|
@@ -15567,6 +15591,7 @@ export default {
|
|
|
15567
15591
|
},
|
|
15568
15592
|
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
15569
15593
|
is_latest_desired_state_synced_with_provider: {
|
|
15594
|
+
nullable: true,
|
|
15570
15595
|
type: 'boolean',
|
|
15571
15596
|
'x-undocumented': 'Only used internally.',
|
|
15572
15597
|
},
|
|
@@ -15577,6 +15602,7 @@ export default {
|
|
|
15577
15602
|
},
|
|
15578
15603
|
latest_desired_state_synced_with_provider_at: {
|
|
15579
15604
|
format: 'date-time',
|
|
15605
|
+
nullable: true,
|
|
15580
15606
|
type: 'string',
|
|
15581
15607
|
'x-undocumented': 'Only used internally.',
|
|
15582
15608
|
},
|
|
@@ -15926,6 +15952,7 @@ export default {
|
|
|
15926
15952
|
},
|
|
15927
15953
|
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
15928
15954
|
is_latest_desired_state_synced_with_provider: {
|
|
15955
|
+
nullable: true,
|
|
15929
15956
|
type: 'boolean',
|
|
15930
15957
|
'x-undocumented': 'Only used internally.',
|
|
15931
15958
|
},
|
|
@@ -15936,6 +15963,7 @@ export default {
|
|
|
15936
15963
|
},
|
|
15937
15964
|
latest_desired_state_synced_with_provider_at: {
|
|
15938
15965
|
format: 'date-time',
|
|
15966
|
+
nullable: true,
|
|
15939
15967
|
type: 'string',
|
|
15940
15968
|
'x-undocumented': 'Only used internally.',
|
|
15941
15969
|
},
|