@seamapi/types 1.351.1 → 1.352.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 +28 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +31 -0
- package/lib/seam/connect/openapi.d.ts +21 -0
- package/lib/seam/connect/openapi.js +27 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +32 -2
- package/src/lib/seam/connect/route-types.ts +10 -0
package/dist/connect.cjs
CHANGED
|
@@ -21142,7 +21142,16 @@ var openapi_default = {
|
|
|
21142
21142
|
type: "string"
|
|
21143
21143
|
},
|
|
21144
21144
|
created_before: { format: "date-time", type: "string" },
|
|
21145
|
-
limit: {
|
|
21145
|
+
limit: {
|
|
21146
|
+
default: 500,
|
|
21147
|
+
description: "Maximum number of records to return per page.",
|
|
21148
|
+
format: "float",
|
|
21149
|
+
type: "number"
|
|
21150
|
+
},
|
|
21151
|
+
page_cursor: {
|
|
21152
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
21153
|
+
type: "string"
|
|
21154
|
+
},
|
|
21146
21155
|
user_identity_email_address: {
|
|
21147
21156
|
description: "Email address of the user identity for which you want to retrieve all `acs_user`s.",
|
|
21148
21157
|
type: "string"
|
|
@@ -21172,9 +21181,25 @@ var openapi_default = {
|
|
|
21172
21181
|
items: { $ref: "#/components/schemas/acs_user" },
|
|
21173
21182
|
type: "array"
|
|
21174
21183
|
},
|
|
21175
|
-
ok: { type: "boolean" }
|
|
21184
|
+
ok: { type: "boolean" },
|
|
21185
|
+
pagination: {
|
|
21186
|
+
description: "Information about the current page of results.",
|
|
21187
|
+
properties: {
|
|
21188
|
+
has_next_page: {
|
|
21189
|
+
description: "Indicates whether there is another page of results after this one.",
|
|
21190
|
+
type: "boolean"
|
|
21191
|
+
},
|
|
21192
|
+
next_page_cursor: {
|
|
21193
|
+
description: "Opaque value that can be used to select the next page of results via the `page_cursor` parameter.",
|
|
21194
|
+
nullable: true,
|
|
21195
|
+
type: "string"
|
|
21196
|
+
}
|
|
21197
|
+
},
|
|
21198
|
+
required: ["next_page_cursor", "has_next_page"],
|
|
21199
|
+
type: "object"
|
|
21200
|
+
}
|
|
21176
21201
|
},
|
|
21177
|
-
required: ["acs_users", "ok"],
|
|
21202
|
+
required: ["acs_users", "pagination", "ok"],
|
|
21178
21203
|
type: "object"
|
|
21179
21204
|
}
|
|
21180
21205
|
}
|