@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
package/dist/connect.d.cts
CHANGED
|
@@ -100060,10 +100060,6 @@ declare const _default: {
|
|
|
100060
100060
|
description: string;
|
|
100061
100061
|
type: string;
|
|
100062
100062
|
};
|
|
100063
|
-
customer_id: {
|
|
100064
|
-
description: string;
|
|
100065
|
-
type: string;
|
|
100066
|
-
};
|
|
100067
100063
|
customer_key: {
|
|
100068
100064
|
description: string;
|
|
100069
100065
|
type: string;
|
|
@@ -170050,11 +170046,9 @@ type Routes = {
|
|
|
170050
170046
|
/** ID of the connector to sync */
|
|
170051
170047
|
connector_id: string;
|
|
170052
170048
|
/** Type of the connector to sync */
|
|
170053
|
-
connector_type
|
|
170054
|
-
/** ID of the customer to sync */
|
|
170055
|
-
customer_id?: string | undefined;
|
|
170049
|
+
connector_type: string;
|
|
170056
170050
|
/** Key of the customer to sync */
|
|
170057
|
-
customer_key
|
|
170051
|
+
customer_key: string;
|
|
170058
170052
|
/** ID of the connector customer to sync */
|
|
170059
170053
|
connector_customer_id?: (string | null) | undefined;
|
|
170060
170054
|
/** Unique provider resource key of the connector to sync */
|
package/dist/index.cjs
CHANGED
|
@@ -57051,10 +57051,6 @@ var openapi_default = {
|
|
|
57051
57051
|
description: "Type of the connector to sync",
|
|
57052
57052
|
type: "string"
|
|
57053
57053
|
},
|
|
57054
|
-
customer_id: {
|
|
57055
|
-
description: "ID of the customer to sync",
|
|
57056
|
-
type: "string"
|
|
57057
|
-
},
|
|
57058
57054
|
customer_key: {
|
|
57059
57055
|
description: "Key of the customer to sync",
|
|
57060
57056
|
type: "string"
|
|
@@ -57065,7 +57061,7 @@ var openapi_default = {
|
|
|
57065
57061
|
type: "string"
|
|
57066
57062
|
}
|
|
57067
57063
|
},
|
|
57068
|
-
required: ["connector_id"],
|
|
57064
|
+
required: ["connector_id", "connector_type", "customer_key"],
|
|
57069
57065
|
type: "object"
|
|
57070
57066
|
}
|
|
57071
57067
|
}
|