@seamapi/types 1.586.0 → 1.587.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 +12 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -0
- package/dist/index.cjs +12 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +15 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
package/dist/connect.d.cts
CHANGED
|
@@ -95699,6 +95699,10 @@ declare const _default: {
|
|
|
95699
95699
|
};
|
|
95700
95700
|
type: string;
|
|
95701
95701
|
};
|
|
95702
|
+
customer_key: {
|
|
95703
|
+
description: string;
|
|
95704
|
+
type: string;
|
|
95705
|
+
};
|
|
95702
95706
|
device_ids: {
|
|
95703
95707
|
description: string;
|
|
95704
95708
|
items: {
|
|
@@ -96893,6 +96897,10 @@ declare const _default: {
|
|
|
96893
96897
|
};
|
|
96894
96898
|
type: string;
|
|
96895
96899
|
};
|
|
96900
|
+
customer_key: {
|
|
96901
|
+
description: string;
|
|
96902
|
+
type: string;
|
|
96903
|
+
};
|
|
96896
96904
|
device_ids: {
|
|
96897
96905
|
description: string;
|
|
96898
96906
|
items: {
|
|
@@ -96993,6 +97001,10 @@ declare const _default: {
|
|
|
96993
97001
|
};
|
|
96994
97002
|
type: string;
|
|
96995
97003
|
};
|
|
97004
|
+
customer_key: {
|
|
97005
|
+
description: string;
|
|
97006
|
+
type: string;
|
|
97007
|
+
};
|
|
96996
97008
|
device_ids: {
|
|
96997
97009
|
description: string;
|
|
96998
97010
|
items: {
|
|
@@ -165851,6 +165863,8 @@ type Routes = {
|
|
|
165851
165863
|
device_ids?: string[] | undefined;
|
|
165852
165864
|
/** IDs of the entrances that you want to add to the new space. */
|
|
165853
165865
|
acs_entrance_ids?: string[] | undefined;
|
|
165866
|
+
/** Customer key for which you want to create the space. */
|
|
165867
|
+
customer_key?: string | undefined;
|
|
165854
165868
|
};
|
|
165855
165869
|
commonParams: {};
|
|
165856
165870
|
formData: {};
|
|
@@ -167611,6 +167625,8 @@ type Routes = {
|
|
|
167611
167625
|
device_ids?: string[] | undefined;
|
|
167612
167626
|
/** IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances. */
|
|
167613
167627
|
acs_entrance_ids?: string[] | undefined;
|
|
167628
|
+
/** Customer key for which you want to update the space. */
|
|
167629
|
+
customer_key?: string | undefined;
|
|
167614
167630
|
};
|
|
167615
167631
|
commonParams: {};
|
|
167616
167632
|
formData: {};
|
package/dist/index.cjs
CHANGED
|
@@ -55128,6 +55128,10 @@ var openapi_default = {
|
|
|
55128
55128
|
items: { format: "uuid", type: "string" },
|
|
55129
55129
|
type: "array"
|
|
55130
55130
|
},
|
|
55131
|
+
customer_key: {
|
|
55132
|
+
description: "Customer key for which you want to create the space.",
|
|
55133
|
+
type: "string"
|
|
55134
|
+
},
|
|
55131
55135
|
device_ids: {
|
|
55132
55136
|
description: "IDs of the devices that you want to add to the new space.",
|
|
55133
55137
|
items: { format: "uuid", type: "string" },
|
|
@@ -56018,6 +56022,10 @@ var openapi_default = {
|
|
|
56018
56022
|
items: { format: "uuid", type: "string" },
|
|
56019
56023
|
type: "array"
|
|
56020
56024
|
},
|
|
56025
|
+
customer_key: {
|
|
56026
|
+
description: "Customer key for which you want to update the space.",
|
|
56027
|
+
type: "string"
|
|
56028
|
+
},
|
|
56021
56029
|
device_ids: {
|
|
56022
56030
|
description: "IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.",
|
|
56023
56031
|
items: { format: "uuid", type: "string" },
|
|
@@ -56086,6 +56094,10 @@ var openapi_default = {
|
|
|
56086
56094
|
items: { format: "uuid", type: "string" },
|
|
56087
56095
|
type: "array"
|
|
56088
56096
|
},
|
|
56097
|
+
customer_key: {
|
|
56098
|
+
description: "Customer key for which you want to update the space.",
|
|
56099
|
+
type: "string"
|
|
56100
|
+
},
|
|
56089
56101
|
device_ids: {
|
|
56090
56102
|
description: "IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.",
|
|
56091
56103
|
items: { format: "uuid", type: "string" },
|