@seamapi/types 1.712.0 → 1.713.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 +1 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -8
- package/dist/index.cjs +1 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +0 -4
- package/lib/seam/connect/openapi.js +1 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -5
- package/src/lib/seam/connect/route-types.ts +2 -4
|
@@ -53082,11 +53082,9 @@ export type Routes = {
|
|
|
53082
53082
|
/** ID of the connector to sync */
|
|
53083
53083
|
connector_id: string;
|
|
53084
53084
|
/** Type of the connector to sync */
|
|
53085
|
-
connector_type
|
|
53086
|
-
/** ID of the customer to sync */
|
|
53087
|
-
customer_id?: string | undefined;
|
|
53085
|
+
connector_type: string;
|
|
53088
53086
|
/** Key of the customer to sync */
|
|
53089
|
-
customer_key
|
|
53087
|
+
customer_key: string;
|
|
53090
53088
|
/** ID of the connector customer to sync */
|
|
53091
53089
|
connector_customer_id?: (string | null) | undefined;
|
|
53092
53090
|
/** Unique provider resource key of the connector to sync */
|
package/package.json
CHANGED
|
@@ -55381,10 +55381,6 @@ export default {
|
|
|
55381
55381
|
description: 'Type of the connector to sync',
|
|
55382
55382
|
type: 'string',
|
|
55383
55383
|
},
|
|
55384
|
-
customer_id: {
|
|
55385
|
-
description: 'ID of the customer to sync',
|
|
55386
|
-
type: 'string',
|
|
55387
|
-
},
|
|
55388
55384
|
customer_key: {
|
|
55389
55385
|
description: 'Key of the customer to sync',
|
|
55390
55386
|
type: 'string',
|
|
@@ -55396,7 +55392,7 @@ export default {
|
|
|
55396
55392
|
type: 'string',
|
|
55397
55393
|
},
|
|
55398
55394
|
},
|
|
55399
|
-
required: ['connector_id'],
|
|
55395
|
+
required: ['connector_id', 'connector_type', 'customer_key'],
|
|
55400
55396
|
type: 'object',
|
|
55401
55397
|
},
|
|
55402
55398
|
},
|
|
@@ -63454,11 +63454,9 @@ export type Routes = {
|
|
|
63454
63454
|
/** ID of the connector to sync */
|
|
63455
63455
|
connector_id: string
|
|
63456
63456
|
/** Type of the connector to sync */
|
|
63457
|
-
connector_type
|
|
63458
|
-
/** ID of the customer to sync */
|
|
63459
|
-
customer_id?: string | undefined
|
|
63457
|
+
connector_type: string
|
|
63460
63458
|
/** Key of the customer to sync */
|
|
63461
|
-
customer_key
|
|
63459
|
+
customer_key: string
|
|
63462
63460
|
/** ID of the connector customer to sync */
|
|
63463
63461
|
connector_customer_id?: (string | null) | undefined
|
|
63464
63462
|
/** Unique provider resource key of the connector to sync */
|