@seamapi/types 1.719.0 → 1.721.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 +52 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +36 -0
- package/dist/index.cjs +52 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +32 -0
- package/lib/seam/connect/openapi.js +52 -4
- 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 +52 -4
- package/src/lib/seam/connect/route-types.ts +4 -0
|
@@ -46153,10 +46153,18 @@ declare const _default: {
|
|
|
46153
46153
|
created_at: {
|
|
46154
46154
|
type: string;
|
|
46155
46155
|
};
|
|
46156
|
+
customer_key: {
|
|
46157
|
+
nullable: boolean;
|
|
46158
|
+
type: string;
|
|
46159
|
+
};
|
|
46156
46160
|
status: {
|
|
46157
46161
|
enum: string[];
|
|
46158
46162
|
type: string;
|
|
46159
46163
|
};
|
|
46164
|
+
unique_provider_resource_key: {
|
|
46165
|
+
nullable: boolean;
|
|
46166
|
+
type: string;
|
|
46167
|
+
};
|
|
46160
46168
|
updated_at: {
|
|
46161
46169
|
type: string;
|
|
46162
46170
|
};
|
|
@@ -46233,10 +46241,18 @@ declare const _default: {
|
|
|
46233
46241
|
created_at: {
|
|
46234
46242
|
type: string;
|
|
46235
46243
|
};
|
|
46244
|
+
customer_key: {
|
|
46245
|
+
nullable: boolean;
|
|
46246
|
+
type: string;
|
|
46247
|
+
};
|
|
46236
46248
|
status: {
|
|
46237
46249
|
enum: string[];
|
|
46238
46250
|
type: string;
|
|
46239
46251
|
};
|
|
46252
|
+
unique_provider_resource_key: {
|
|
46253
|
+
nullable: boolean;
|
|
46254
|
+
type: string;
|
|
46255
|
+
};
|
|
46240
46256
|
updated_at: {
|
|
46241
46257
|
type: string;
|
|
46242
46258
|
};
|
|
@@ -50484,6 +50500,10 @@ declare const _default: {
|
|
|
50484
50500
|
format: string;
|
|
50485
50501
|
type: string;
|
|
50486
50502
|
};
|
|
50503
|
+
connected_account_id: {
|
|
50504
|
+
format: string;
|
|
50505
|
+
type: string;
|
|
50506
|
+
};
|
|
50487
50507
|
name: {
|
|
50488
50508
|
type: string;
|
|
50489
50509
|
};
|
|
@@ -50496,6 +50516,10 @@ declare const _default: {
|
|
|
50496
50516
|
devices: {
|
|
50497
50517
|
items: {
|
|
50498
50518
|
properties: {
|
|
50519
|
+
connected_account_id: {
|
|
50520
|
+
format: string;
|
|
50521
|
+
type: string;
|
|
50522
|
+
};
|
|
50499
50523
|
device_id: {
|
|
50500
50524
|
format: string;
|
|
50501
50525
|
type: string;
|
|
@@ -50600,6 +50624,10 @@ declare const _default: {
|
|
|
50600
50624
|
format: string;
|
|
50601
50625
|
type: string;
|
|
50602
50626
|
};
|
|
50627
|
+
connected_account_id: {
|
|
50628
|
+
format: string;
|
|
50629
|
+
type: string;
|
|
50630
|
+
};
|
|
50603
50631
|
name: {
|
|
50604
50632
|
type: string;
|
|
50605
50633
|
};
|
|
@@ -50612,6 +50640,10 @@ declare const _default: {
|
|
|
50612
50640
|
devices: {
|
|
50613
50641
|
items: {
|
|
50614
50642
|
properties: {
|
|
50643
|
+
connected_account_id: {
|
|
50644
|
+
format: string;
|
|
50645
|
+
type: string;
|
|
50646
|
+
};
|
|
50615
50647
|
device_id: {
|
|
50616
50648
|
format: string;
|
|
50617
50649
|
type: string;
|
|
@@ -50925,15 +50925,22 @@ export default {
|
|
|
50925
50925
|
connector_id: { type: 'string' },
|
|
50926
50926
|
connector_type: { type: 'string' },
|
|
50927
50927
|
created_at: { type: 'string' },
|
|
50928
|
+
customer_key: { nullable: true, type: 'string' },
|
|
50928
50929
|
status: {
|
|
50929
50930
|
enum: ['active', 'inactive', 'error'],
|
|
50930
50931
|
type: 'string',
|
|
50931
50932
|
},
|
|
50933
|
+
unique_provider_resource_key: {
|
|
50934
|
+
nullable: true,
|
|
50935
|
+
type: 'string',
|
|
50936
|
+
},
|
|
50932
50937
|
updated_at: { type: 'string' },
|
|
50933
50938
|
},
|
|
50934
50939
|
required: [
|
|
50935
50940
|
'connector_id',
|
|
50936
50941
|
'connector_type',
|
|
50942
|
+
'customer_key',
|
|
50943
|
+
'unique_provider_resource_key',
|
|
50937
50944
|
'status',
|
|
50938
50945
|
'config',
|
|
50939
50946
|
'created_at',
|
|
@@ -50990,15 +50997,22 @@ export default {
|
|
|
50990
50997
|
connector_id: { type: 'string' },
|
|
50991
50998
|
connector_type: { type: 'string' },
|
|
50992
50999
|
created_at: { type: 'string' },
|
|
51000
|
+
customer_key: { nullable: true, type: 'string' },
|
|
50993
51001
|
status: {
|
|
50994
51002
|
enum: ['active', 'inactive', 'error'],
|
|
50995
51003
|
type: 'string',
|
|
50996
51004
|
},
|
|
51005
|
+
unique_provider_resource_key: {
|
|
51006
|
+
nullable: true,
|
|
51007
|
+
type: 'string',
|
|
51008
|
+
},
|
|
50997
51009
|
updated_at: { type: 'string' },
|
|
50998
51010
|
},
|
|
50999
51011
|
required: [
|
|
51000
51012
|
'connector_id',
|
|
51001
51013
|
'connector_type',
|
|
51014
|
+
'customer_key',
|
|
51015
|
+
'unique_provider_resource_key',
|
|
51002
51016
|
'status',
|
|
51003
51017
|
'config',
|
|
51004
51018
|
'created_at',
|
|
@@ -54765,9 +54779,17 @@ export default {
|
|
|
54765
54779
|
format: 'uuid',
|
|
54766
54780
|
type: 'string',
|
|
54767
54781
|
},
|
|
54782
|
+
connected_account_id: {
|
|
54783
|
+
format: 'uuid',
|
|
54784
|
+
type: 'string',
|
|
54785
|
+
},
|
|
54768
54786
|
name: { type: 'string' },
|
|
54769
54787
|
},
|
|
54770
|
-
required: [
|
|
54788
|
+
required: [
|
|
54789
|
+
'acs_entrance_id',
|
|
54790
|
+
'name',
|
|
54791
|
+
'connected_account_id',
|
|
54792
|
+
],
|
|
54771
54793
|
type: 'object',
|
|
54772
54794
|
},
|
|
54773
54795
|
type: 'array',
|
|
@@ -54775,11 +54797,20 @@ export default {
|
|
|
54775
54797
|
devices: {
|
|
54776
54798
|
items: {
|
|
54777
54799
|
properties: {
|
|
54800
|
+
connected_account_id: {
|
|
54801
|
+
format: 'uuid',
|
|
54802
|
+
type: 'string',
|
|
54803
|
+
},
|
|
54778
54804
|
device_id: { format: 'uuid', type: 'string' },
|
|
54779
54805
|
device_type: { type: 'string' },
|
|
54780
54806
|
name: { type: 'string' },
|
|
54781
54807
|
},
|
|
54782
|
-
required: [
|
|
54808
|
+
required: [
|
|
54809
|
+
'device_id',
|
|
54810
|
+
'device_type',
|
|
54811
|
+
'name',
|
|
54812
|
+
'connected_account_id',
|
|
54813
|
+
],
|
|
54783
54814
|
type: 'object',
|
|
54784
54815
|
},
|
|
54785
54816
|
type: 'array',
|
|
@@ -54863,9 +54894,17 @@ export default {
|
|
|
54863
54894
|
format: 'uuid',
|
|
54864
54895
|
type: 'string',
|
|
54865
54896
|
},
|
|
54897
|
+
connected_account_id: {
|
|
54898
|
+
format: 'uuid',
|
|
54899
|
+
type: 'string',
|
|
54900
|
+
},
|
|
54866
54901
|
name: { type: 'string' },
|
|
54867
54902
|
},
|
|
54868
|
-
required: [
|
|
54903
|
+
required: [
|
|
54904
|
+
'acs_entrance_id',
|
|
54905
|
+
'name',
|
|
54906
|
+
'connected_account_id',
|
|
54907
|
+
],
|
|
54869
54908
|
type: 'object',
|
|
54870
54909
|
},
|
|
54871
54910
|
type: 'array',
|
|
@@ -54873,11 +54912,20 @@ export default {
|
|
|
54873
54912
|
devices: {
|
|
54874
54913
|
items: {
|
|
54875
54914
|
properties: {
|
|
54915
|
+
connected_account_id: {
|
|
54916
|
+
format: 'uuid',
|
|
54917
|
+
type: 'string',
|
|
54918
|
+
},
|
|
54876
54919
|
device_id: { format: 'uuid', type: 'string' },
|
|
54877
54920
|
device_type: { type: 'string' },
|
|
54878
54921
|
name: { type: 'string' },
|
|
54879
54922
|
},
|
|
54880
|
-
required: [
|
|
54923
|
+
required: [
|
|
54924
|
+
'device_id',
|
|
54925
|
+
'device_type',
|
|
54926
|
+
'name',
|
|
54927
|
+
'connected_account_id',
|
|
54928
|
+
],
|
|
54881
54929
|
type: 'object',
|
|
54882
54930
|
},
|
|
54883
54931
|
type: 'array',
|