@seamapi/types 1.483.0 → 1.484.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 +11 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +22 -0
- package/dist/index.cjs +11 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +11 -0
- package/lib/seam/connect/openapi.js +9 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +10 -2
- package/src/lib/seam/connect/route-types.ts +11 -0
package/dist/connect.cjs
CHANGED
|
@@ -33924,9 +33924,10 @@ var openapi_default = {
|
|
|
33924
33924
|
items: { $ref: "#/components/schemas/acs_credential" },
|
|
33925
33925
|
type: "array"
|
|
33926
33926
|
},
|
|
33927
|
-
ok: { type: "boolean" }
|
|
33927
|
+
ok: { type: "boolean" },
|
|
33928
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
33928
33929
|
},
|
|
33929
|
-
required: ["acs_credentials", "ok"],
|
|
33930
|
+
required: ["acs_credentials", "pagination", "ok"],
|
|
33930
33931
|
type: "object"
|
|
33931
33932
|
}
|
|
33932
33933
|
}
|
|
@@ -34028,6 +34029,11 @@ var openapi_default = {
|
|
|
34028
34029
|
description: "Number of credentials to return.",
|
|
34029
34030
|
format: "float",
|
|
34030
34031
|
type: "number"
|
|
34032
|
+
},
|
|
34033
|
+
page_cursor: {
|
|
34034
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
34035
|
+
nullable: true,
|
|
34036
|
+
type: "string"
|
|
34031
34037
|
}
|
|
34032
34038
|
},
|
|
34033
34039
|
type: "object"
|
|
@@ -34047,9 +34053,10 @@ var openapi_default = {
|
|
|
34047
34053
|
items: { $ref: "#/components/schemas/acs_credential" },
|
|
34048
34054
|
type: "array"
|
|
34049
34055
|
},
|
|
34050
|
-
ok: { type: "boolean" }
|
|
34056
|
+
ok: { type: "boolean" },
|
|
34057
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
34051
34058
|
},
|
|
34052
|
-
required: ["acs_credentials", "ok"],
|
|
34059
|
+
required: ["acs_credentials", "pagination", "ok"],
|
|
34053
34060
|
type: "object"
|
|
34054
34061
|
}
|
|
34055
34062
|
}
|