@seamapi/types 1.521.0 → 1.522.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 +5 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7 -0
- package/dist/index.cjs +5 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +5 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +6 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.d.cts
CHANGED
|
@@ -71475,6 +71475,11 @@ declare const _default: {
|
|
|
71475
71475
|
nullable: boolean;
|
|
71476
71476
|
type: string;
|
|
71477
71477
|
};
|
|
71478
|
+
search: {
|
|
71479
|
+
description: string;
|
|
71480
|
+
minLength: number;
|
|
71481
|
+
type: string;
|
|
71482
|
+
};
|
|
71478
71483
|
};
|
|
71479
71484
|
type: string;
|
|
71480
71485
|
oneOf?: never;
|
|
@@ -122418,6 +122423,8 @@ type Routes = {
|
|
|
122418
122423
|
created_before?: Date | undefined;
|
|
122419
122424
|
/** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
|
|
122420
122425
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
122426
|
+
/** String for which to search. Filters returned credentials to include all records that satisfy a partial match using `code`, `card_number`, `acs_user_id` or `acs_credential_id`. */
|
|
122427
|
+
search?: string | undefined;
|
|
122421
122428
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
122422
122429
|
page_cursor?: (string | undefined) | null;
|
|
122423
122430
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -34201,6 +34201,11 @@ var openapi_default = {
|
|
|
34201
34201
|
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
34202
34202
|
nullable: true,
|
|
34203
34203
|
type: "string"
|
|
34204
|
+
},
|
|
34205
|
+
search: {
|
|
34206
|
+
description: "String for which to search. Filters returned credentials to include all records that satisfy a partial match using `code`, `card_number`, `acs_user_id` or `acs_credential_id`.",
|
|
34207
|
+
minLength: 1,
|
|
34208
|
+
type: "string"
|
|
34204
34209
|
}
|
|
34205
34210
|
},
|
|
34206
34211
|
type: "object"
|