@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
|
@@ -21518,6 +21518,8 @@ export type Routes = {
|
|
|
21518
21518
|
created_before?: Date | undefined;
|
|
21519
21519
|
/** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
|
|
21520
21520
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
21521
|
+
/** 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`. */
|
|
21522
|
+
search?: string | undefined;
|
|
21521
21523
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
21522
21524
|
page_cursor?: (string | undefined) | null;
|
|
21523
21525
|
};
|
package/package.json
CHANGED
|
@@ -31657,6 +31657,12 @@ export default {
|
|
|
31657
31657
|
nullable: true,
|
|
31658
31658
|
type: 'string',
|
|
31659
31659
|
},
|
|
31660
|
+
search: {
|
|
31661
|
+
description:
|
|
31662
|
+
'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`.',
|
|
31663
|
+
minLength: 1,
|
|
31664
|
+
type: 'string',
|
|
31665
|
+
},
|
|
31660
31666
|
},
|
|
31661
31667
|
type: 'object',
|
|
31662
31668
|
},
|
|
@@ -25003,6 +25003,8 @@ export type Routes = {
|
|
|
25003
25003
|
created_before?: Date | undefined
|
|
25004
25004
|
/** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
|
|
25005
25005
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
25006
|
+
/** 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`. */
|
|
25007
|
+
search?: string | undefined
|
|
25006
25008
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
25007
25009
|
page_cursor?: (string | undefined) | null
|
|
25008
25010
|
}
|