@seamapi/types 1.779.0 → 1.780.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.
@@ -12840,8 +12840,8 @@ export type Routes = {
12840
12840
  location_id?: string | undefined;
12841
12841
  /** ID of the space by which you want to filter the list of Access Grants. */
12842
12842
  space_id?: string | undefined;
12843
- /** Filter Access Grants by access_grant_key. */
12844
- access_grant_key?: string | undefined;
12843
+ /** Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key. */
12844
+ access_grant_key?: (string | null) | undefined;
12845
12845
  /** Filter Access Grants by reservation_key. */
12846
12846
  reservation_key?: string | undefined;
12847
12847
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.779.0",
3
+ "version": "1.780.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -34920,7 +34920,9 @@ export default {
34920
34920
  in: 'query',
34921
34921
  name: 'access_grant_key',
34922
34922
  schema: {
34923
- description: 'Filter Access Grants by access_grant_key.',
34923
+ description:
34924
+ 'Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key.',
34925
+ nullable: true,
34924
34926
  type: 'string',
34925
34927
  },
34926
34928
  },
@@ -34985,7 +34987,9 @@ export default {
34985
34987
  type: 'array',
34986
34988
  },
34987
34989
  access_grant_key: {
34988
- description: 'Filter Access Grants by access_grant_key.',
34990
+ description:
34991
+ 'Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key.',
34992
+ nullable: true,
34989
34993
  type: 'string',
34990
34994
  },
34991
34995
  acs_entrance_id: {
@@ -14783,8 +14783,8 @@ export type Routes = {
14783
14783
  location_id?: string | undefined
14784
14784
  /** ID of the space by which you want to filter the list of Access Grants. */
14785
14785
  space_id?: string | undefined
14786
- /** Filter Access Grants by access_grant_key. */
14787
- access_grant_key?: string | undefined
14786
+ /** Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key. */
14787
+ access_grant_key?: (string | null) | undefined
14788
14788
  /** Filter Access Grants by reservation_key. */
14789
14789
  reservation_key?: string | undefined
14790
14790
  }