@seamapi/types 1.392.0 → 1.392.1
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 +2 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +1 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -9856,7 +9856,7 @@ export interface Routes {
|
|
|
9856
9856
|
} | {
|
|
9857
9857
|
/** ID of the user identity for which you want to retrieve all credentials. */
|
|
9858
9858
|
user_identity_id: string;
|
|
9859
|
-
}) & {
|
|
9859
|
+
} | {}) & {
|
|
9860
9860
|
/** Number of credentials to return. */
|
|
9861
9861
|
limit?: number;
|
|
9862
9862
|
/** Date and time, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format, before which events to return were created. */
|
package/package.json
CHANGED
|
@@ -21829,6 +21829,7 @@ export default {
|
|
|
21829
21829
|
required: ['user_identity_id'],
|
|
21830
21830
|
type: 'object',
|
|
21831
21831
|
},
|
|
21832
|
+
{ properties: {}, type: 'object' },
|
|
21832
21833
|
],
|
|
21833
21834
|
},
|
|
21834
21835
|
{
|
|
@@ -11309,6 +11309,7 @@ export interface Routes {
|
|
|
11309
11309
|
/** ID of the user identity for which you want to retrieve all credentials. */
|
|
11310
11310
|
user_identity_id: string
|
|
11311
11311
|
}
|
|
11312
|
+
| {}
|
|
11312
11313
|
) & {
|
|
11313
11314
|
/** Number of credentials to return. */
|
|
11314
11315
|
limit?: number
|