@seamapi/types 1.864.0 → 1.866.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 +36 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -0
- package/dist/index.cjs +36 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +36 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +42 -0
- package/src/lib/seam/connect/route-types.ts +16 -0
|
@@ -14073,6 +14073,8 @@ export type Routes = {
|
|
|
14073
14073
|
acs_system_id?: string | undefined;
|
|
14074
14074
|
/** ID of the entrance by which you want to filter the list of Access Grants. */
|
|
14075
14075
|
acs_entrance_id?: string | undefined;
|
|
14076
|
+
/** ID of the device by which you want to filter the list of Access Grants. */
|
|
14077
|
+
device_id?: string | undefined;
|
|
14076
14078
|
/**
|
|
14077
14079
|
* @deprecated Use `space_id`.*/
|
|
14078
14080
|
location_id?: string | undefined;
|
|
@@ -23551,6 +23553,11 @@ export type Routes = {
|
|
|
23551
23553
|
commonParams: {
|
|
23552
23554
|
/** ID of the encoder to use for the scan. */
|
|
23553
23555
|
acs_encoder_id: string;
|
|
23556
|
+
/** Salto KS-specific metadata for the scan action. */
|
|
23557
|
+
salto_ks_metadata?: {
|
|
23558
|
+
/** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
|
|
23559
|
+
detect_new_tags?: boolean;
|
|
23560
|
+
} | undefined;
|
|
23554
23561
|
};
|
|
23555
23562
|
formData: {};
|
|
23556
23563
|
jsonResponse: {
|
|
@@ -25069,6 +25076,11 @@ export type Routes = {
|
|
|
25069
25076
|
acs_user_id?: string | undefined;
|
|
25070
25077
|
/** ID of the `user_identity` to assign the scanned credential to. If the ACS system contains an ACS user linked to this user identity, it is used. Otherwise, one is created. */
|
|
25071
25078
|
user_identity_id?: string | undefined;
|
|
25079
|
+
/** Salto KS-specific metadata for the scan action. */
|
|
25080
|
+
salto_ks_metadata?: {
|
|
25081
|
+
/** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
|
|
25082
|
+
detect_new_tags?: boolean;
|
|
25083
|
+
} | undefined;
|
|
25072
25084
|
};
|
|
25073
25085
|
formData: {};
|
|
25074
25086
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -36557,6 +36557,16 @@ const openapi: OpenAPISpec = {
|
|
|
36557
36557
|
type: 'string',
|
|
36558
36558
|
},
|
|
36559
36559
|
},
|
|
36560
|
+
{
|
|
36561
|
+
in: 'query',
|
|
36562
|
+
name: 'device_id',
|
|
36563
|
+
schema: {
|
|
36564
|
+
description:
|
|
36565
|
+
'ID of the device by which you want to filter the list of Access Grants.',
|
|
36566
|
+
format: 'uuid',
|
|
36567
|
+
type: 'string',
|
|
36568
|
+
},
|
|
36569
|
+
},
|
|
36560
36570
|
{
|
|
36561
36571
|
in: 'query',
|
|
36562
36572
|
name: 'location_id',
|
|
@@ -36685,6 +36695,12 @@ const openapi: OpenAPISpec = {
|
|
|
36685
36695
|
'Customer key for which you want to list access grants.',
|
|
36686
36696
|
type: 'string',
|
|
36687
36697
|
},
|
|
36698
|
+
device_id: {
|
|
36699
|
+
description:
|
|
36700
|
+
'ID of the device by which you want to filter the list of Access Grants.',
|
|
36701
|
+
format: 'uuid',
|
|
36702
|
+
type: 'string',
|
|
36703
|
+
},
|
|
36688
36704
|
limit: {
|
|
36689
36705
|
default: 500,
|
|
36690
36706
|
description:
|
|
@@ -45738,6 +45754,19 @@ const openapi: OpenAPISpec = {
|
|
|
45738
45754
|
format: 'uuid',
|
|
45739
45755
|
type: 'string',
|
|
45740
45756
|
},
|
|
45757
|
+
salto_ks_metadata: {
|
|
45758
|
+
description:
|
|
45759
|
+
'Salto KS-specific metadata for the scan action.',
|
|
45760
|
+
properties: {
|
|
45761
|
+
detect_new_tags: {
|
|
45762
|
+
default: false,
|
|
45763
|
+
description:
|
|
45764
|
+
'When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false.',
|
|
45765
|
+
type: 'boolean',
|
|
45766
|
+
},
|
|
45767
|
+
},
|
|
45768
|
+
type: 'object',
|
|
45769
|
+
},
|
|
45741
45770
|
},
|
|
45742
45771
|
required: ['acs_encoder_id'],
|
|
45743
45772
|
type: 'object',
|
|
@@ -45803,6 +45832,19 @@ const openapi: OpenAPISpec = {
|
|
|
45803
45832
|
format: 'uuid',
|
|
45804
45833
|
type: 'string',
|
|
45805
45834
|
},
|
|
45835
|
+
salto_ks_metadata: {
|
|
45836
|
+
description:
|
|
45837
|
+
'Salto KS-specific metadata for the scan action.',
|
|
45838
|
+
properties: {
|
|
45839
|
+
detect_new_tags: {
|
|
45840
|
+
default: false,
|
|
45841
|
+
description:
|
|
45842
|
+
'When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false.',
|
|
45843
|
+
type: 'boolean',
|
|
45844
|
+
},
|
|
45845
|
+
},
|
|
45846
|
+
type: 'object',
|
|
45847
|
+
},
|
|
45806
45848
|
user_identity_id: {
|
|
45807
45849
|
description:
|
|
45808
45850
|
'ID of the `user_identity` to assign the scanned credential to. If the ACS system contains an ACS user linked to this user identity, it is used. Otherwise, one is created.',
|
|
@@ -16234,6 +16234,8 @@ export type Routes = {
|
|
|
16234
16234
|
acs_system_id?: string | undefined
|
|
16235
16235
|
/** ID of the entrance by which you want to filter the list of Access Grants. */
|
|
16236
16236
|
acs_entrance_id?: string | undefined
|
|
16237
|
+
/** ID of the device by which you want to filter the list of Access Grants. */
|
|
16238
|
+
device_id?: string | undefined
|
|
16237
16239
|
/**
|
|
16238
16240
|
* @deprecated Use `space_id`.*/
|
|
16239
16241
|
location_id?: string | undefined
|
|
@@ -27328,6 +27330,13 @@ export type Routes = {
|
|
|
27328
27330
|
commonParams: {
|
|
27329
27331
|
/** ID of the encoder to use for the scan. */
|
|
27330
27332
|
acs_encoder_id: string
|
|
27333
|
+
/** Salto KS-specific metadata for the scan action. */
|
|
27334
|
+
salto_ks_metadata?:
|
|
27335
|
+
| {
|
|
27336
|
+
/** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
|
|
27337
|
+
detect_new_tags?: boolean
|
|
27338
|
+
}
|
|
27339
|
+
| undefined
|
|
27331
27340
|
}
|
|
27332
27341
|
formData: {}
|
|
27333
27342
|
jsonResponse: {
|
|
@@ -29098,6 +29107,13 @@ export type Routes = {
|
|
|
29098
29107
|
acs_user_id?: string | undefined
|
|
29099
29108
|
/** ID of the `user_identity` to assign the scanned credential to. If the ACS system contains an ACS user linked to this user identity, it is used. Otherwise, one is created. */
|
|
29100
29109
|
user_identity_id?: string | undefined
|
|
29110
|
+
/** Salto KS-specific metadata for the scan action. */
|
|
29111
|
+
salto_ks_metadata?:
|
|
29112
|
+
| {
|
|
29113
|
+
/** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
|
|
29114
|
+
detect_new_tags?: boolean
|
|
29115
|
+
}
|
|
29116
|
+
| undefined
|
|
29101
29117
|
}
|
|
29102
29118
|
formData: {}
|
|
29103
29119
|
jsonResponse: {
|