@seamapi/types 1.755.0 → 1.756.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 +14 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -5
- package/dist/index.cjs +14 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +17 -4
- package/lib/seam/connect/openapi.js +14 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +15 -5
- package/src/lib/seam/connect/route-types.ts +3 -1
package/dist/connect.d.cts
CHANGED
|
@@ -88537,16 +88537,25 @@ declare const _default: {
|
|
|
88537
88537
|
get: {
|
|
88538
88538
|
description: string;
|
|
88539
88539
|
operationId: string;
|
|
88540
|
-
parameters: {
|
|
88540
|
+
parameters: ({
|
|
88541
88541
|
in: string;
|
|
88542
88542
|
name: string;
|
|
88543
|
-
required: boolean;
|
|
88544
88543
|
schema: {
|
|
88545
88544
|
description: string;
|
|
88546
88545
|
format: string;
|
|
88547
88546
|
type: string;
|
|
88547
|
+
minLength?: never;
|
|
88548
88548
|
};
|
|
88549
|
-
}
|
|
88549
|
+
} | {
|
|
88550
|
+
in: string;
|
|
88551
|
+
name: string;
|
|
88552
|
+
schema: {
|
|
88553
|
+
description: string;
|
|
88554
|
+
minLength: number;
|
|
88555
|
+
type: string;
|
|
88556
|
+
format?: never;
|
|
88557
|
+
};
|
|
88558
|
+
})[];
|
|
88550
88559
|
responses: {
|
|
88551
88560
|
200: {
|
|
88552
88561
|
content: {
|
|
@@ -88620,6 +88629,11 @@ declare const _default: {
|
|
|
88620
88629
|
format: string;
|
|
88621
88630
|
type: string;
|
|
88622
88631
|
};
|
|
88632
|
+
access_grant_key: {
|
|
88633
|
+
description: string;
|
|
88634
|
+
minLength: number;
|
|
88635
|
+
type: string;
|
|
88636
|
+
};
|
|
88623
88637
|
acs_entrance_id: {
|
|
88624
88638
|
description: string;
|
|
88625
88639
|
format: string;
|
|
@@ -88636,7 +88650,6 @@ declare const _default: {
|
|
|
88636
88650
|
type: string;
|
|
88637
88651
|
};
|
|
88638
88652
|
};
|
|
88639
|
-
required: string[];
|
|
88640
88653
|
type: string;
|
|
88641
88654
|
};
|
|
88642
88655
|
};
|
|
@@ -149421,7 +149434,9 @@ type Routes = {
|
|
|
149421
149434
|
jsonBody: {};
|
|
149422
149435
|
commonParams: {
|
|
149423
149436
|
/** ID of Access Grant to list access methods for. */
|
|
149424
|
-
access_grant_id
|
|
149437
|
+
access_grant_id?: string | undefined;
|
|
149438
|
+
/** Key of Access Grant to list access methods for. */
|
|
149439
|
+
access_grant_key?: string | undefined;
|
|
149425
149440
|
/** ID of the device for which you want to retrieve all access methods. */
|
|
149426
149441
|
device_id?: string | undefined;
|
|
149427
149442
|
/** ID of the entrance for which you want to retrieve all access methods. */
|
package/dist/index.cjs
CHANGED
|
@@ -40956,17 +40956,24 @@ var openapi_default = {
|
|
|
40956
40956
|
{
|
|
40957
40957
|
in: "query",
|
|
40958
40958
|
name: "access_grant_id",
|
|
40959
|
-
required: true,
|
|
40960
40959
|
schema: {
|
|
40961
40960
|
description: "ID of Access Grant to list access methods for.",
|
|
40962
40961
|
format: "uuid",
|
|
40963
40962
|
type: "string"
|
|
40964
40963
|
}
|
|
40965
40964
|
},
|
|
40965
|
+
{
|
|
40966
|
+
in: "query",
|
|
40967
|
+
name: "access_grant_key",
|
|
40968
|
+
schema: {
|
|
40969
|
+
description: "Key of Access Grant to list access methods for.",
|
|
40970
|
+
minLength: 1,
|
|
40971
|
+
type: "string"
|
|
40972
|
+
}
|
|
40973
|
+
},
|
|
40966
40974
|
{
|
|
40967
40975
|
in: "query",
|
|
40968
40976
|
name: "device_id",
|
|
40969
|
-
required: false,
|
|
40970
40977
|
schema: {
|
|
40971
40978
|
description: "ID of the device for which you want to retrieve all access methods.",
|
|
40972
40979
|
format: "uuid",
|
|
@@ -40976,7 +40983,6 @@ var openapi_default = {
|
|
|
40976
40983
|
{
|
|
40977
40984
|
in: "query",
|
|
40978
40985
|
name: "acs_entrance_id",
|
|
40979
|
-
required: false,
|
|
40980
40986
|
schema: {
|
|
40981
40987
|
description: "ID of the entrance for which you want to retrieve all access methods.",
|
|
40982
40988
|
format: "uuid",
|
|
@@ -40986,7 +40992,6 @@ var openapi_default = {
|
|
|
40986
40992
|
{
|
|
40987
40993
|
in: "query",
|
|
40988
40994
|
name: "space_id",
|
|
40989
|
-
required: false,
|
|
40990
40995
|
schema: {
|
|
40991
40996
|
description: "ID of the space for which you want to retrieve all access methods.",
|
|
40992
40997
|
format: "uuid",
|
|
@@ -41044,6 +41049,11 @@ var openapi_default = {
|
|
|
41044
41049
|
format: "uuid",
|
|
41045
41050
|
type: "string"
|
|
41046
41051
|
},
|
|
41052
|
+
access_grant_key: {
|
|
41053
|
+
description: "Key of Access Grant to list access methods for.",
|
|
41054
|
+
minLength: 1,
|
|
41055
|
+
type: "string"
|
|
41056
|
+
},
|
|
41047
41057
|
acs_entrance_id: {
|
|
41048
41058
|
description: "ID of the entrance for which you want to retrieve all access methods.",
|
|
41049
41059
|
format: "uuid",
|
|
@@ -41060,7 +41070,6 @@ var openapi_default = {
|
|
|
41060
41070
|
type: "string"
|
|
41061
41071
|
}
|
|
41062
41072
|
},
|
|
41063
|
-
required: ["access_grant_id"],
|
|
41064
41073
|
type: "object"
|
|
41065
41074
|
}
|
|
41066
41075
|
}
|