@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
|
@@ -53202,6 +53202,8 @@ export type Routes = {
|
|
|
53202
53202
|
connectors: {
|
|
53203
53203
|
connector_id: string;
|
|
53204
53204
|
connector_type: string;
|
|
53205
|
+
customer_key: string | null;
|
|
53206
|
+
unique_provider_resource_key: string | null;
|
|
53205
53207
|
status: 'active' | 'inactive' | 'error';
|
|
53206
53208
|
config: {
|
|
53207
53209
|
[x: string]: any;
|
|
@@ -56548,10 +56550,12 @@ export type Routes = {
|
|
|
56548
56550
|
device_id: string;
|
|
56549
56551
|
device_type: string;
|
|
56550
56552
|
name: string;
|
|
56553
|
+
connected_account_id: string;
|
|
56551
56554
|
}[];
|
|
56552
56555
|
acs_entrances: {
|
|
56553
56556
|
acs_entrance_id: string;
|
|
56554
56557
|
name: string;
|
|
56558
|
+
connected_account_id: string;
|
|
56555
56559
|
}[];
|
|
56556
56560
|
needs_review?: boolean | undefined;
|
|
56557
56561
|
is_draft?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -55257,15 +55257,22 @@ export default {
|
|
|
55257
55257
|
connector_id: { type: 'string' },
|
|
55258
55258
|
connector_type: { type: 'string' },
|
|
55259
55259
|
created_at: { type: 'string' },
|
|
55260
|
+
customer_key: { nullable: true, type: 'string' },
|
|
55260
55261
|
status: {
|
|
55261
55262
|
enum: ['active', 'inactive', 'error'],
|
|
55262
55263
|
type: 'string',
|
|
55263
55264
|
},
|
|
55265
|
+
unique_provider_resource_key: {
|
|
55266
|
+
nullable: true,
|
|
55267
|
+
type: 'string',
|
|
55268
|
+
},
|
|
55264
55269
|
updated_at: { type: 'string' },
|
|
55265
55270
|
},
|
|
55266
55271
|
required: [
|
|
55267
55272
|
'connector_id',
|
|
55268
55273
|
'connector_type',
|
|
55274
|
+
'customer_key',
|
|
55275
|
+
'unique_provider_resource_key',
|
|
55269
55276
|
'status',
|
|
55270
55277
|
'config',
|
|
55271
55278
|
'created_at',
|
|
@@ -55323,15 +55330,22 @@ export default {
|
|
|
55323
55330
|
connector_id: { type: 'string' },
|
|
55324
55331
|
connector_type: { type: 'string' },
|
|
55325
55332
|
created_at: { type: 'string' },
|
|
55333
|
+
customer_key: { nullable: true, type: 'string' },
|
|
55326
55334
|
status: {
|
|
55327
55335
|
enum: ['active', 'inactive', 'error'],
|
|
55328
55336
|
type: 'string',
|
|
55329
55337
|
},
|
|
55338
|
+
unique_provider_resource_key: {
|
|
55339
|
+
nullable: true,
|
|
55340
|
+
type: 'string',
|
|
55341
|
+
},
|
|
55330
55342
|
updated_at: { type: 'string' },
|
|
55331
55343
|
},
|
|
55332
55344
|
required: [
|
|
55333
55345
|
'connector_id',
|
|
55334
55346
|
'connector_type',
|
|
55347
|
+
'customer_key',
|
|
55348
|
+
'unique_provider_resource_key',
|
|
55335
55349
|
'status',
|
|
55336
55350
|
'config',
|
|
55337
55351
|
'created_at',
|
|
@@ -59233,9 +59247,17 @@ export default {
|
|
|
59233
59247
|
format: 'uuid',
|
|
59234
59248
|
type: 'string',
|
|
59235
59249
|
},
|
|
59250
|
+
connected_account_id: {
|
|
59251
|
+
format: 'uuid',
|
|
59252
|
+
type: 'string',
|
|
59253
|
+
},
|
|
59236
59254
|
name: { type: 'string' },
|
|
59237
59255
|
},
|
|
59238
|
-
required: [
|
|
59256
|
+
required: [
|
|
59257
|
+
'acs_entrance_id',
|
|
59258
|
+
'name',
|
|
59259
|
+
'connected_account_id',
|
|
59260
|
+
],
|
|
59239
59261
|
type: 'object',
|
|
59240
59262
|
},
|
|
59241
59263
|
type: 'array',
|
|
@@ -59243,11 +59265,20 @@ export default {
|
|
|
59243
59265
|
devices: {
|
|
59244
59266
|
items: {
|
|
59245
59267
|
properties: {
|
|
59268
|
+
connected_account_id: {
|
|
59269
|
+
format: 'uuid',
|
|
59270
|
+
type: 'string',
|
|
59271
|
+
},
|
|
59246
59272
|
device_id: { format: 'uuid', type: 'string' },
|
|
59247
59273
|
device_type: { type: 'string' },
|
|
59248
59274
|
name: { type: 'string' },
|
|
59249
59275
|
},
|
|
59250
|
-
required: [
|
|
59276
|
+
required: [
|
|
59277
|
+
'device_id',
|
|
59278
|
+
'device_type',
|
|
59279
|
+
'name',
|
|
59280
|
+
'connected_account_id',
|
|
59281
|
+
],
|
|
59251
59282
|
type: 'object',
|
|
59252
59283
|
},
|
|
59253
59284
|
type: 'array',
|
|
@@ -59332,9 +59363,17 @@ export default {
|
|
|
59332
59363
|
format: 'uuid',
|
|
59333
59364
|
type: 'string',
|
|
59334
59365
|
},
|
|
59366
|
+
connected_account_id: {
|
|
59367
|
+
format: 'uuid',
|
|
59368
|
+
type: 'string',
|
|
59369
|
+
},
|
|
59335
59370
|
name: { type: 'string' },
|
|
59336
59371
|
},
|
|
59337
|
-
required: [
|
|
59372
|
+
required: [
|
|
59373
|
+
'acs_entrance_id',
|
|
59374
|
+
'name',
|
|
59375
|
+
'connected_account_id',
|
|
59376
|
+
],
|
|
59338
59377
|
type: 'object',
|
|
59339
59378
|
},
|
|
59340
59379
|
type: 'array',
|
|
@@ -59342,11 +59381,20 @@ export default {
|
|
|
59342
59381
|
devices: {
|
|
59343
59382
|
items: {
|
|
59344
59383
|
properties: {
|
|
59384
|
+
connected_account_id: {
|
|
59385
|
+
format: 'uuid',
|
|
59386
|
+
type: 'string',
|
|
59387
|
+
},
|
|
59345
59388
|
device_id: { format: 'uuid', type: 'string' },
|
|
59346
59389
|
device_type: { type: 'string' },
|
|
59347
59390
|
name: { type: 'string' },
|
|
59348
59391
|
},
|
|
59349
|
-
required: [
|
|
59392
|
+
required: [
|
|
59393
|
+
'device_id',
|
|
59394
|
+
'device_type',
|
|
59395
|
+
'name',
|
|
59396
|
+
'connected_account_id',
|
|
59397
|
+
],
|
|
59350
59398
|
type: 'object',
|
|
59351
59399
|
},
|
|
59352
59400
|
type: 'array',
|
|
@@ -63633,6 +63633,8 @@ export type Routes = {
|
|
|
63633
63633
|
connectors: {
|
|
63634
63634
|
connector_id: string
|
|
63635
63635
|
connector_type: string
|
|
63636
|
+
customer_key: string | null
|
|
63637
|
+
unique_provider_resource_key: string | null
|
|
63636
63638
|
status: 'active' | 'inactive' | 'error'
|
|
63637
63639
|
config: {
|
|
63638
63640
|
[x: string]: any
|
|
@@ -67659,10 +67661,12 @@ export type Routes = {
|
|
|
67659
67661
|
device_id: string
|
|
67660
67662
|
device_type: string
|
|
67661
67663
|
name: string
|
|
67664
|
+
connected_account_id: string
|
|
67662
67665
|
}[]
|
|
67663
67666
|
acs_entrances: {
|
|
67664
67667
|
acs_entrance_id: string
|
|
67665
67668
|
name: string
|
|
67669
|
+
connected_account_id: string
|
|
67666
67670
|
}[]
|
|
67667
67671
|
needs_review?: boolean | undefined
|
|
67668
67672
|
is_draft?: boolean | undefined
|