@seamapi/types 1.720.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 +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +18 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +14 -0
- 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 +14 -0
- package/src/lib/seam/connect/route-types.ts +2 -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;
|
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',
|
|
@@ -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
|