@seamapi/types 1.321.0 → 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 +49 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +443 -410
- package/lib/seam/connect/models/acs/acs-credential.d.ts +34 -34
- package/lib/seam/connect/models/acs/acs-credential.js +6 -4
- 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 +80 -80
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +34 -34
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +46 -46
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +41 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +301 -296
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -4
- package/src/lib/seam/connect/models/acs/acs-user.ts +5 -2
- package/src/lib/seam/connect/openapi.ts +42 -7
- package/src/lib/seam/connect/route-types.ts +371 -296
|
@@ -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: {
|
|
@@ -497,7 +499,7 @@ export default {
|
|
|
497
499
|
},
|
|
498
500
|
warning_code: {
|
|
499
501
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
500
|
-
enum: ['
|
|
502
|
+
enum: ['unknown_issue_with_acs_credential'],
|
|
501
503
|
type: 'string',
|
|
502
504
|
},
|
|
503
505
|
},
|
|
@@ -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: {
|
|
@@ -1850,7 +1856,9 @@ export default {
|
|
|
1850
1856
|
},
|
|
1851
1857
|
warning_code: {
|
|
1852
1858
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1853
|
-
enum: [
|
|
1859
|
+
enum: [
|
|
1860
|
+
'unknown_issue_with_acs_credential',
|
|
1861
|
+
],
|
|
1854
1862
|
type: 'string',
|
|
1855
1863
|
},
|
|
1856
1864
|
},
|
|
@@ -1961,6 +1969,7 @@ export default {
|
|
|
1961
1969
|
is_issued: { type: 'boolean' },
|
|
1962
1970
|
is_latest_desired_state_synced_with_provider: {
|
|
1963
1971
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
1972
|
+
nullable: true,
|
|
1964
1973
|
type: 'boolean',
|
|
1965
1974
|
},
|
|
1966
1975
|
is_managed: { enum: [false], type: 'boolean' },
|
|
@@ -1980,6 +1989,7 @@ export default {
|
|
|
1980
1989
|
latest_desired_state_synced_with_provider_at: {
|
|
1981
1990
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
1982
1991
|
format: 'date-time',
|
|
1992
|
+
nullable: true,
|
|
1983
1993
|
type: 'string',
|
|
1984
1994
|
},
|
|
1985
1995
|
parent_acs_credential_id: {
|
|
@@ -2137,7 +2147,9 @@ export default {
|
|
|
2137
2147
|
},
|
|
2138
2148
|
warning_code: {
|
|
2139
2149
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2140
|
-
enum: [
|
|
2150
|
+
enum: [
|
|
2151
|
+
'unknown_issue_with_acs_credential',
|
|
2152
|
+
],
|
|
2141
2153
|
type: 'string',
|
|
2142
2154
|
},
|
|
2143
2155
|
},
|
|
@@ -2379,6 +2391,7 @@ export default {
|
|
|
2379
2391
|
is_issued: { type: 'boolean' },
|
|
2380
2392
|
is_latest_desired_state_synced_with_provider: {
|
|
2381
2393
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
2394
|
+
nullable: true,
|
|
2382
2395
|
type: 'boolean',
|
|
2383
2396
|
},
|
|
2384
2397
|
is_managed: { enum: [true], type: 'boolean' },
|
|
@@ -2398,6 +2411,7 @@ export default {
|
|
|
2398
2411
|
latest_desired_state_synced_with_provider_at: {
|
|
2399
2412
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
2400
2413
|
format: 'date-time',
|
|
2414
|
+
nullable: true,
|
|
2401
2415
|
type: 'string',
|
|
2402
2416
|
},
|
|
2403
2417
|
parent_acs_credential_id: {
|
|
@@ -2555,7 +2569,7 @@ export default {
|
|
|
2555
2569
|
},
|
|
2556
2570
|
warning_code: {
|
|
2557
2571
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2558
|
-
enum: ['
|
|
2572
|
+
enum: ['unknown_issue_with_acs_credential'],
|
|
2559
2573
|
type: 'string',
|
|
2560
2574
|
},
|
|
2561
2575
|
},
|
|
@@ -2666,6 +2680,7 @@ export default {
|
|
|
2666
2680
|
is_issued: { type: 'boolean' },
|
|
2667
2681
|
is_latest_desired_state_synced_with_provider: {
|
|
2668
2682
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
2683
|
+
nullable: true,
|
|
2669
2684
|
type: 'boolean',
|
|
2670
2685
|
},
|
|
2671
2686
|
is_managed: { enum: [false], type: 'boolean' },
|
|
@@ -2685,6 +2700,7 @@ export default {
|
|
|
2685
2700
|
latest_desired_state_synced_with_provider_at: {
|
|
2686
2701
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
2687
2702
|
format: 'date-time',
|
|
2703
|
+
nullable: true,
|
|
2688
2704
|
type: 'string',
|
|
2689
2705
|
},
|
|
2690
2706
|
parent_acs_credential_id: {
|
|
@@ -2842,7 +2858,7 @@ export default {
|
|
|
2842
2858
|
},
|
|
2843
2859
|
warning_code: {
|
|
2844
2860
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2845
|
-
enum: ['
|
|
2861
|
+
enum: ['unknown_issue_with_acs_credential'],
|
|
2846
2862
|
type: 'string',
|
|
2847
2863
|
},
|
|
2848
2864
|
},
|
|
@@ -12420,6 +12436,14 @@ export default {
|
|
|
12420
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).',
|
|
12421
12437
|
type: 'boolean',
|
|
12422
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
|
+
},
|
|
12423
12447
|
starts_at: {
|
|
12424
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.',
|
|
12425
12449
|
format: 'date-time',
|
|
@@ -13086,6 +13110,7 @@ export default {
|
|
|
13086
13110
|
is_issued: { type: 'boolean' },
|
|
13087
13111
|
is_latest_desired_state_synced_with_provider: {
|
|
13088
13112
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
13113
|
+
nullable: true,
|
|
13089
13114
|
type: 'boolean',
|
|
13090
13115
|
},
|
|
13091
13116
|
is_managed: { enum: [false], type: 'boolean' },
|
|
@@ -13105,6 +13130,7 @@ export default {
|
|
|
13105
13130
|
latest_desired_state_synced_with_provider_at: {
|
|
13106
13131
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
13107
13132
|
format: 'date-time',
|
|
13133
|
+
nullable: true,
|
|
13108
13134
|
type: 'string',
|
|
13109
13135
|
},
|
|
13110
13136
|
parent_acs_credential_id: {
|
|
@@ -13262,7 +13288,7 @@ export default {
|
|
|
13262
13288
|
},
|
|
13263
13289
|
warning_code: {
|
|
13264
13290
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
13265
|
-
enum: ['
|
|
13291
|
+
enum: ['unknown_issue_with_acs_credential'],
|
|
13266
13292
|
type: 'string',
|
|
13267
13293
|
},
|
|
13268
13294
|
},
|
|
@@ -13470,6 +13496,7 @@ export default {
|
|
|
13470
13496
|
is_issued: { type: 'boolean' },
|
|
13471
13497
|
is_latest_desired_state_synced_with_provider: {
|
|
13472
13498
|
description: 'Indicates whether the latest state of the credential has been synced from Seam to the provider.',
|
|
13499
|
+
nullable: true,
|
|
13473
13500
|
type: 'boolean',
|
|
13474
13501
|
},
|
|
13475
13502
|
is_managed: { enum: [false], type: 'boolean' },
|
|
@@ -13489,6 +13516,7 @@ export default {
|
|
|
13489
13516
|
latest_desired_state_synced_with_provider_at: {
|
|
13490
13517
|
description: 'Date and time at which the state of the credential was most recently synced from Seam to the provider.',
|
|
13491
13518
|
format: 'date-time',
|
|
13519
|
+
nullable: true,
|
|
13492
13520
|
type: 'string',
|
|
13493
13521
|
},
|
|
13494
13522
|
parent_acs_credential_id: {
|
|
@@ -13646,7 +13674,9 @@ export default {
|
|
|
13646
13674
|
},
|
|
13647
13675
|
warning_code: {
|
|
13648
13676
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
13649
|
-
enum: [
|
|
13677
|
+
enum: [
|
|
13678
|
+
'unknown_issue_with_acs_credential',
|
|
13679
|
+
],
|
|
13650
13680
|
type: 'string',
|
|
13651
13681
|
},
|
|
13652
13682
|
},
|
|
@@ -15561,6 +15591,7 @@ export default {
|
|
|
15561
15591
|
},
|
|
15562
15592
|
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
15563
15593
|
is_latest_desired_state_synced_with_provider: {
|
|
15594
|
+
nullable: true,
|
|
15564
15595
|
type: 'boolean',
|
|
15565
15596
|
'x-undocumented': 'Only used internally.',
|
|
15566
15597
|
},
|
|
@@ -15571,6 +15602,7 @@ export default {
|
|
|
15571
15602
|
},
|
|
15572
15603
|
latest_desired_state_synced_with_provider_at: {
|
|
15573
15604
|
format: 'date-time',
|
|
15605
|
+
nullable: true,
|
|
15574
15606
|
type: 'string',
|
|
15575
15607
|
'x-undocumented': 'Only used internally.',
|
|
15576
15608
|
},
|
|
@@ -15920,6 +15952,7 @@ export default {
|
|
|
15920
15952
|
},
|
|
15921
15953
|
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
15922
15954
|
is_latest_desired_state_synced_with_provider: {
|
|
15955
|
+
nullable: true,
|
|
15923
15956
|
type: 'boolean',
|
|
15924
15957
|
'x-undocumented': 'Only used internally.',
|
|
15925
15958
|
},
|
|
@@ -15930,6 +15963,7 @@ export default {
|
|
|
15930
15963
|
},
|
|
15931
15964
|
latest_desired_state_synced_with_provider_at: {
|
|
15932
15965
|
format: 'date-time',
|
|
15966
|
+
nullable: true,
|
|
15933
15967
|
type: 'string',
|
|
15934
15968
|
'x-undocumented': 'Only used internally.',
|
|
15935
15969
|
},
|