@seamapi/types 1.1059.0 → 1.1060.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.
|
@@ -14837,6 +14837,8 @@ export type Routes = {
|
|
|
14837
14837
|
access_grant_key?: (string | null) | undefined;
|
|
14838
14838
|
/** Filter Access Grants by reservation_key. */
|
|
14839
14839
|
reservation_key?: string | undefined;
|
|
14840
|
+
/** String for which to search. Filters returned Access Grants to include all records that satisfy a partial match using `name`, `access_grant_key`, `reservation_key`, `access_grant_id`, `user_identity_id`, `user_identity_full_name`, `user_identity_email_address` or `user_identity_phone_number`. */
|
|
14841
|
+
search?: string | undefined;
|
|
14840
14842
|
};
|
|
14841
14843
|
formData: {};
|
|
14842
14844
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -40789,6 +40789,16 @@ const openapi: OpenAPISpec = {
|
|
|
40789
40789
|
type: 'string',
|
|
40790
40790
|
},
|
|
40791
40791
|
},
|
|
40792
|
+
{
|
|
40793
|
+
in: 'query',
|
|
40794
|
+
name: 'search',
|
|
40795
|
+
schema: {
|
|
40796
|
+
description:
|
|
40797
|
+
'String for which to search. Filters returned Access Grants to include all records that satisfy a partial match using `name`, `access_grant_key`, `reservation_key`, `access_grant_id`, `user_identity_id`, `user_identity_full_name`, `user_identity_email_address` or `user_identity_phone_number`.',
|
|
40798
|
+
minLength: 1,
|
|
40799
|
+
type: 'string',
|
|
40800
|
+
},
|
|
40801
|
+
},
|
|
40792
40802
|
],
|
|
40793
40803
|
responses: {
|
|
40794
40804
|
'200': {
|
|
@@ -17287,6 +17287,8 @@ export type Routes = {
|
|
|
17287
17287
|
access_grant_key?: (string | null) | undefined
|
|
17288
17288
|
/** Filter Access Grants by reservation_key. */
|
|
17289
17289
|
reservation_key?: string | undefined
|
|
17290
|
+
/** String for which to search. Filters returned Access Grants to include all records that satisfy a partial match using `name`, `access_grant_key`, `reservation_key`, `access_grant_id`, `user_identity_id`, `user_identity_full_name`, `user_identity_email_address` or `user_identity_phone_number`. */
|
|
17291
|
+
search?: string | undefined
|
|
17290
17292
|
}
|
|
17291
17293
|
formData: {}
|
|
17292
17294
|
jsonResponse: {
|