@seamapi/types 1.719.0 → 1.720.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 +38 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +18 -0
- package/dist/index.cjs +38 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +38 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +38 -4
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.d.cts
CHANGED
|
@@ -104419,6 +104419,10 @@ declare const _default: {
|
|
|
104419
104419
|
format: string;
|
|
104420
104420
|
type: string;
|
|
104421
104421
|
};
|
|
104422
|
+
connected_account_id: {
|
|
104423
|
+
format: string;
|
|
104424
|
+
type: string;
|
|
104425
|
+
};
|
|
104422
104426
|
name: {
|
|
104423
104427
|
type: string;
|
|
104424
104428
|
};
|
|
@@ -104431,6 +104435,10 @@ declare const _default: {
|
|
|
104431
104435
|
devices: {
|
|
104432
104436
|
items: {
|
|
104433
104437
|
properties: {
|
|
104438
|
+
connected_account_id: {
|
|
104439
|
+
format: string;
|
|
104440
|
+
type: string;
|
|
104441
|
+
};
|
|
104434
104442
|
device_id: {
|
|
104435
104443
|
format: string;
|
|
104436
104444
|
type: string;
|
|
@@ -104535,6 +104543,10 @@ declare const _default: {
|
|
|
104535
104543
|
format: string;
|
|
104536
104544
|
type: string;
|
|
104537
104545
|
};
|
|
104546
|
+
connected_account_id: {
|
|
104547
|
+
format: string;
|
|
104548
|
+
type: string;
|
|
104549
|
+
};
|
|
104538
104550
|
name: {
|
|
104539
104551
|
type: string;
|
|
104540
104552
|
};
|
|
@@ -104547,6 +104559,10 @@ declare const _default: {
|
|
|
104547
104559
|
devices: {
|
|
104548
104560
|
items: {
|
|
104549
104561
|
properties: {
|
|
104562
|
+
connected_account_id: {
|
|
104563
|
+
format: string;
|
|
104564
|
+
type: string;
|
|
104565
|
+
};
|
|
104550
104566
|
device_id: {
|
|
104551
104567
|
format: string;
|
|
104552
104568
|
type: string;
|
|
@@ -173727,10 +173743,12 @@ type Routes = {
|
|
|
173727
173743
|
device_id: string;
|
|
173728
173744
|
device_type: string;
|
|
173729
173745
|
name: string;
|
|
173746
|
+
connected_account_id: string;
|
|
173730
173747
|
}[];
|
|
173731
173748
|
acs_entrances: {
|
|
173732
173749
|
acs_entrance_id: string;
|
|
173733
173750
|
name: string;
|
|
173751
|
+
connected_account_id: string;
|
|
173734
173752
|
}[];
|
|
173735
173753
|
needs_review?: boolean | undefined;
|
|
173736
173754
|
is_draft?: boolean | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -60788,9 +60788,17 @@ var openapi_default = {
|
|
|
60788
60788
|
format: "uuid",
|
|
60789
60789
|
type: "string"
|
|
60790
60790
|
},
|
|
60791
|
+
connected_account_id: {
|
|
60792
|
+
format: "uuid",
|
|
60793
|
+
type: "string"
|
|
60794
|
+
},
|
|
60791
60795
|
name: { type: "string" }
|
|
60792
60796
|
},
|
|
60793
|
-
required: [
|
|
60797
|
+
required: [
|
|
60798
|
+
"acs_entrance_id",
|
|
60799
|
+
"name",
|
|
60800
|
+
"connected_account_id"
|
|
60801
|
+
],
|
|
60794
60802
|
type: "object"
|
|
60795
60803
|
},
|
|
60796
60804
|
type: "array"
|
|
@@ -60798,11 +60806,20 @@ var openapi_default = {
|
|
|
60798
60806
|
devices: {
|
|
60799
60807
|
items: {
|
|
60800
60808
|
properties: {
|
|
60809
|
+
connected_account_id: {
|
|
60810
|
+
format: "uuid",
|
|
60811
|
+
type: "string"
|
|
60812
|
+
},
|
|
60801
60813
|
device_id: { format: "uuid", type: "string" },
|
|
60802
60814
|
device_type: { type: "string" },
|
|
60803
60815
|
name: { type: "string" }
|
|
60804
60816
|
},
|
|
60805
|
-
required: [
|
|
60817
|
+
required: [
|
|
60818
|
+
"device_id",
|
|
60819
|
+
"device_type",
|
|
60820
|
+
"name",
|
|
60821
|
+
"connected_account_id"
|
|
60822
|
+
],
|
|
60806
60823
|
type: "object"
|
|
60807
60824
|
},
|
|
60808
60825
|
type: "array"
|
|
@@ -60886,9 +60903,17 @@ var openapi_default = {
|
|
|
60886
60903
|
format: "uuid",
|
|
60887
60904
|
type: "string"
|
|
60888
60905
|
},
|
|
60906
|
+
connected_account_id: {
|
|
60907
|
+
format: "uuid",
|
|
60908
|
+
type: "string"
|
|
60909
|
+
},
|
|
60889
60910
|
name: { type: "string" }
|
|
60890
60911
|
},
|
|
60891
|
-
required: [
|
|
60912
|
+
required: [
|
|
60913
|
+
"acs_entrance_id",
|
|
60914
|
+
"name",
|
|
60915
|
+
"connected_account_id"
|
|
60916
|
+
],
|
|
60892
60917
|
type: "object"
|
|
60893
60918
|
},
|
|
60894
60919
|
type: "array"
|
|
@@ -60896,11 +60921,20 @@ var openapi_default = {
|
|
|
60896
60921
|
devices: {
|
|
60897
60922
|
items: {
|
|
60898
60923
|
properties: {
|
|
60924
|
+
connected_account_id: {
|
|
60925
|
+
format: "uuid",
|
|
60926
|
+
type: "string"
|
|
60927
|
+
},
|
|
60899
60928
|
device_id: { format: "uuid", type: "string" },
|
|
60900
60929
|
device_type: { type: "string" },
|
|
60901
60930
|
name: { type: "string" }
|
|
60902
60931
|
},
|
|
60903
|
-
required: [
|
|
60932
|
+
required: [
|
|
60933
|
+
"device_id",
|
|
60934
|
+
"device_type",
|
|
60935
|
+
"name",
|
|
60936
|
+
"connected_account_id"
|
|
60937
|
+
],
|
|
60904
60938
|
type: "object"
|
|
60905
60939
|
},
|
|
60906
60940
|
type: "array"
|