@seamapi/types 1.691.0 → 1.692.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 +0 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -3
- package/dist/index.cjs +0 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +0 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +0 -3
- package/src/lib/seam/connect/route-types.ts +3 -3
|
@@ -52775,11 +52775,11 @@ export type Routes = {
|
|
|
52775
52775
|
/** ID of the connector to sync */
|
|
52776
52776
|
connector_id: string;
|
|
52777
52777
|
/** Type of the connector to sync */
|
|
52778
|
-
connector_type
|
|
52778
|
+
connector_type?: string | undefined;
|
|
52779
52779
|
/** ID of the customer to sync */
|
|
52780
|
-
customer_id
|
|
52780
|
+
customer_id?: string | undefined;
|
|
52781
52781
|
/** Key of the customer to sync */
|
|
52782
|
-
customer_key
|
|
52782
|
+
customer_key?: string | undefined;
|
|
52783
52783
|
/** ID of the connector customer to sync */
|
|
52784
52784
|
connector_customer_id: string | null;
|
|
52785
52785
|
/** Unique provider resource key of the connector to sync */
|
package/package.json
CHANGED
|
@@ -54573,9 +54573,6 @@ export default {
|
|
|
54573
54573
|
},
|
|
54574
54574
|
required: [
|
|
54575
54575
|
'connector_id',
|
|
54576
|
-
'connector_type',
|
|
54577
|
-
'customer_id',
|
|
54578
|
-
'customer_key',
|
|
54579
54576
|
'connector_customer_id',
|
|
54580
54577
|
'unique_provider_resource_key',
|
|
54581
54578
|
],
|
|
@@ -63114,11 +63114,11 @@ export type Routes = {
|
|
|
63114
63114
|
/** ID of the connector to sync */
|
|
63115
63115
|
connector_id: string
|
|
63116
63116
|
/** Type of the connector to sync */
|
|
63117
|
-
connector_type
|
|
63117
|
+
connector_type?: string | undefined
|
|
63118
63118
|
/** ID of the customer to sync */
|
|
63119
|
-
customer_id
|
|
63119
|
+
customer_id?: string | undefined
|
|
63120
63120
|
/** Key of the customer to sync */
|
|
63121
|
-
customer_key
|
|
63121
|
+
customer_key?: string | undefined
|
|
63122
63122
|
/** ID of the connector customer to sync */
|
|
63123
63123
|
connector_customer_id: string | null
|
|
63124
63124
|
/** Unique provider resource key of the connector to sync */
|