@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
|
@@ -50484,6 +50484,10 @@ declare const _default: {
|
|
|
50484
50484
|
format: string;
|
|
50485
50485
|
type: string;
|
|
50486
50486
|
};
|
|
50487
|
+
connected_account_id: {
|
|
50488
|
+
format: string;
|
|
50489
|
+
type: string;
|
|
50490
|
+
};
|
|
50487
50491
|
name: {
|
|
50488
50492
|
type: string;
|
|
50489
50493
|
};
|
|
@@ -50496,6 +50500,10 @@ declare const _default: {
|
|
|
50496
50500
|
devices: {
|
|
50497
50501
|
items: {
|
|
50498
50502
|
properties: {
|
|
50503
|
+
connected_account_id: {
|
|
50504
|
+
format: string;
|
|
50505
|
+
type: string;
|
|
50506
|
+
};
|
|
50499
50507
|
device_id: {
|
|
50500
50508
|
format: string;
|
|
50501
50509
|
type: string;
|
|
@@ -50600,6 +50608,10 @@ declare const _default: {
|
|
|
50600
50608
|
format: string;
|
|
50601
50609
|
type: string;
|
|
50602
50610
|
};
|
|
50611
|
+
connected_account_id: {
|
|
50612
|
+
format: string;
|
|
50613
|
+
type: string;
|
|
50614
|
+
};
|
|
50603
50615
|
name: {
|
|
50604
50616
|
type: string;
|
|
50605
50617
|
};
|
|
@@ -50612,6 +50624,10 @@ declare const _default: {
|
|
|
50612
50624
|
devices: {
|
|
50613
50625
|
items: {
|
|
50614
50626
|
properties: {
|
|
50627
|
+
connected_account_id: {
|
|
50628
|
+
format: string;
|
|
50629
|
+
type: string;
|
|
50630
|
+
};
|
|
50615
50631
|
device_id: {
|
|
50616
50632
|
format: string;
|
|
50617
50633
|
type: string;
|
|
@@ -54765,9 +54765,17 @@ export default {
|
|
|
54765
54765
|
format: 'uuid',
|
|
54766
54766
|
type: 'string',
|
|
54767
54767
|
},
|
|
54768
|
+
connected_account_id: {
|
|
54769
|
+
format: 'uuid',
|
|
54770
|
+
type: 'string',
|
|
54771
|
+
},
|
|
54768
54772
|
name: { type: 'string' },
|
|
54769
54773
|
},
|
|
54770
|
-
required: [
|
|
54774
|
+
required: [
|
|
54775
|
+
'acs_entrance_id',
|
|
54776
|
+
'name',
|
|
54777
|
+
'connected_account_id',
|
|
54778
|
+
],
|
|
54771
54779
|
type: 'object',
|
|
54772
54780
|
},
|
|
54773
54781
|
type: 'array',
|
|
@@ -54775,11 +54783,20 @@ export default {
|
|
|
54775
54783
|
devices: {
|
|
54776
54784
|
items: {
|
|
54777
54785
|
properties: {
|
|
54786
|
+
connected_account_id: {
|
|
54787
|
+
format: 'uuid',
|
|
54788
|
+
type: 'string',
|
|
54789
|
+
},
|
|
54778
54790
|
device_id: { format: 'uuid', type: 'string' },
|
|
54779
54791
|
device_type: { type: 'string' },
|
|
54780
54792
|
name: { type: 'string' },
|
|
54781
54793
|
},
|
|
54782
|
-
required: [
|
|
54794
|
+
required: [
|
|
54795
|
+
'device_id',
|
|
54796
|
+
'device_type',
|
|
54797
|
+
'name',
|
|
54798
|
+
'connected_account_id',
|
|
54799
|
+
],
|
|
54783
54800
|
type: 'object',
|
|
54784
54801
|
},
|
|
54785
54802
|
type: 'array',
|
|
@@ -54863,9 +54880,17 @@ export default {
|
|
|
54863
54880
|
format: 'uuid',
|
|
54864
54881
|
type: 'string',
|
|
54865
54882
|
},
|
|
54883
|
+
connected_account_id: {
|
|
54884
|
+
format: 'uuid',
|
|
54885
|
+
type: 'string',
|
|
54886
|
+
},
|
|
54866
54887
|
name: { type: 'string' },
|
|
54867
54888
|
},
|
|
54868
|
-
required: [
|
|
54889
|
+
required: [
|
|
54890
|
+
'acs_entrance_id',
|
|
54891
|
+
'name',
|
|
54892
|
+
'connected_account_id',
|
|
54893
|
+
],
|
|
54869
54894
|
type: 'object',
|
|
54870
54895
|
},
|
|
54871
54896
|
type: 'array',
|
|
@@ -54873,11 +54898,20 @@ export default {
|
|
|
54873
54898
|
devices: {
|
|
54874
54899
|
items: {
|
|
54875
54900
|
properties: {
|
|
54901
|
+
connected_account_id: {
|
|
54902
|
+
format: 'uuid',
|
|
54903
|
+
type: 'string',
|
|
54904
|
+
},
|
|
54876
54905
|
device_id: { format: 'uuid', type: 'string' },
|
|
54877
54906
|
device_type: { type: 'string' },
|
|
54878
54907
|
name: { type: 'string' },
|
|
54879
54908
|
},
|
|
54880
|
-
required: [
|
|
54909
|
+
required: [
|
|
54910
|
+
'device_id',
|
|
54911
|
+
'device_type',
|
|
54912
|
+
'name',
|
|
54913
|
+
'connected_account_id',
|
|
54914
|
+
],
|
|
54881
54915
|
type: 'object',
|
|
54882
54916
|
},
|
|
54883
54917
|
type: 'array',
|