@seamapi/types 1.300.1 → 1.300.2
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 +6 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +13 -20
- package/lib/seam/connect/openapi.d.ts +10 -16
- package/lib/seam/connect/openapi.js +6 -13
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +6 -13
- package/src/lib/seam/connect/route-types.ts +3 -4
package/dist/connect.cjs
CHANGED
|
@@ -12674,39 +12674,32 @@ var openapi_default = {
|
|
|
12674
12674
|
oneOf: [
|
|
12675
12675
|
{
|
|
12676
12676
|
properties: {
|
|
12677
|
-
|
|
12678
|
-
items: { format: "uuid", type: "string" },
|
|
12679
|
-
type: "array"
|
|
12680
|
-
},
|
|
12681
|
-
acs_system_ids: {
|
|
12682
|
-
items: { format: "uuid", type: "string" },
|
|
12683
|
-
type: "array"
|
|
12684
|
-
},
|
|
12677
|
+
acs_system_id: { format: "uuid", type: "string" },
|
|
12685
12678
|
limit: { default: 500, format: "float", type: "number" }
|
|
12686
12679
|
},
|
|
12687
|
-
required: ["
|
|
12680
|
+
required: ["acs_system_id"],
|
|
12688
12681
|
type: "object"
|
|
12689
12682
|
},
|
|
12690
12683
|
{
|
|
12691
12684
|
properties: {
|
|
12692
|
-
|
|
12685
|
+
acs_system_ids: {
|
|
12693
12686
|
items: { format: "uuid", type: "string" },
|
|
12694
12687
|
type: "array"
|
|
12695
12688
|
},
|
|
12696
12689
|
limit: { default: 500, format: "float", type: "number" }
|
|
12697
12690
|
},
|
|
12698
|
-
required: ["
|
|
12691
|
+
required: ["acs_system_ids"],
|
|
12699
12692
|
type: "object"
|
|
12700
12693
|
},
|
|
12701
12694
|
{
|
|
12702
12695
|
properties: {
|
|
12703
|
-
|
|
12696
|
+
acs_encoder_ids: {
|
|
12704
12697
|
items: { format: "uuid", type: "string" },
|
|
12705
12698
|
type: "array"
|
|
12706
12699
|
},
|
|
12707
12700
|
limit: { default: 500, format: "float", type: "number" }
|
|
12708
12701
|
},
|
|
12709
|
-
required: ["
|
|
12702
|
+
required: ["acs_encoder_ids"],
|
|
12710
12703
|
type: "object"
|
|
12711
12704
|
}
|
|
12712
12705
|
]
|