@seamapi/types 1.720.0 → 1.721.1
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 +5 -5
- package/src/lib/seam/connect/openapi.ts +14 -0
- package/src/lib/seam/connect/route-types.ts +2 -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
|
};
|
|
@@ -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',
|