@seamapi/types 1.370.3 → 1.371.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 +15 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +28 -0
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +14 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/openapi.ts +16 -1
- package/src/lib/seam/connect/route-types.ts +13 -0
package/dist/connect.cjs
CHANGED
|
@@ -25026,6 +25026,18 @@ var openapi_default = {
|
|
|
25026
25026
|
description: "Returns accounts whose custom_metadata contains all of the provided key/value pairs.",
|
|
25027
25027
|
type: "object"
|
|
25028
25028
|
},
|
|
25029
|
+
limit: {
|
|
25030
|
+
default: 11e3,
|
|
25031
|
+
description: "Maximum number of records to return per page.",
|
|
25032
|
+
exclusiveMinimum: true,
|
|
25033
|
+
minimum: 0,
|
|
25034
|
+
type: "integer"
|
|
25035
|
+
},
|
|
25036
|
+
page_cursor: {
|
|
25037
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
25038
|
+
nullable: true,
|
|
25039
|
+
type: "string"
|
|
25040
|
+
},
|
|
25029
25041
|
user_identifier_key: {
|
|
25030
25042
|
description: "Returns accounts that can be accessed by the provided user_identifier_key.",
|
|
25031
25043
|
type: "string"
|
|
@@ -25046,9 +25058,10 @@ var openapi_default = {
|
|
|
25046
25058
|
items: { $ref: "#/components/schemas/connected_account" },
|
|
25047
25059
|
type: "array"
|
|
25048
25060
|
},
|
|
25049
|
-
ok: { type: "boolean" }
|
|
25061
|
+
ok: { type: "boolean" },
|
|
25062
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
25050
25063
|
},
|
|
25051
|
-
required: ["connected_accounts", "ok"],
|
|
25064
|
+
required: ["connected_accounts", "pagination", "ok"],
|
|
25052
25065
|
type: "object"
|
|
25053
25066
|
}
|
|
25054
25067
|
}
|