@seamapi/types 1.1059.0 → 1.1061.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.1059.0",
3
+ "version": "1.1061.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -38426,11 +38426,6 @@ const openapi: OpenAPISpec = {
38426
38426
  scheme: 'bearer',
38427
38427
  type: 'http',
38428
38428
  },
38429
- delegated_agent: {
38430
- bearerFormat: 'Delegated Agent Session Token',
38431
- scheme: 'bearer',
38432
- type: 'http',
38433
- },
38434
38429
  internal_service_agent: {
38435
38430
  bearerFormat: 'Internal Service Agent Key',
38436
38431
  scheme: 'bearer',
@@ -40789,6 +40784,16 @@ const openapi: OpenAPISpec = {
40789
40784
  type: 'string',
40790
40785
  },
40791
40786
  },
40787
+ {
40788
+ in: 'query',
40789
+ name: 'search',
40790
+ schema: {
40791
+ description:
40792
+ '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`.',
40793
+ minLength: 1,
40794
+ type: 'string',
40795
+ },
40796
+ },
40792
40797
  ],
40793
40798
  responses: {
40794
40799
  '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: {