@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
package/dist/connect.cjs
CHANGED
|
@@ -56948,15 +56948,22 @@ var openapi_default = {
|
|
|
56948
56948
|
connector_id: { type: "string" },
|
|
56949
56949
|
connector_type: { type: "string" },
|
|
56950
56950
|
created_at: { type: "string" },
|
|
56951
|
+
customer_key: { nullable: true, type: "string" },
|
|
56951
56952
|
status: {
|
|
56952
56953
|
enum: ["active", "inactive", "error"],
|
|
56953
56954
|
type: "string"
|
|
56954
56955
|
},
|
|
56956
|
+
unique_provider_resource_key: {
|
|
56957
|
+
nullable: true,
|
|
56958
|
+
type: "string"
|
|
56959
|
+
},
|
|
56955
56960
|
updated_at: { type: "string" }
|
|
56956
56961
|
},
|
|
56957
56962
|
required: [
|
|
56958
56963
|
"connector_id",
|
|
56959
56964
|
"connector_type",
|
|
56965
|
+
"customer_key",
|
|
56966
|
+
"unique_provider_resource_key",
|
|
56960
56967
|
"status",
|
|
56961
56968
|
"config",
|
|
56962
56969
|
"created_at",
|
|
@@ -57013,15 +57020,22 @@ var openapi_default = {
|
|
|
57013
57020
|
connector_id: { type: "string" },
|
|
57014
57021
|
connector_type: { type: "string" },
|
|
57015
57022
|
created_at: { type: "string" },
|
|
57023
|
+
customer_key: { nullable: true, type: "string" },
|
|
57016
57024
|
status: {
|
|
57017
57025
|
enum: ["active", "inactive", "error"],
|
|
57018
57026
|
type: "string"
|
|
57019
57027
|
},
|
|
57028
|
+
unique_provider_resource_key: {
|
|
57029
|
+
nullable: true,
|
|
57030
|
+
type: "string"
|
|
57031
|
+
},
|
|
57020
57032
|
updated_at: { type: "string" }
|
|
57021
57033
|
},
|
|
57022
57034
|
required: [
|
|
57023
57035
|
"connector_id",
|
|
57024
57036
|
"connector_type",
|
|
57037
|
+
"customer_key",
|
|
57038
|
+
"unique_provider_resource_key",
|
|
57025
57039
|
"status",
|
|
57026
57040
|
"config",
|
|
57027
57041
|
"created_at",
|