@seamapi/types 1.783.0 → 1.784.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.
@@ -12851,6 +12851,8 @@ export type Routes = {
12851
12851
  location_id?: string | undefined;
12852
12852
  /** ID of the space by which you want to filter the list of Access Grants. */
12853
12853
  space_id?: string | undefined;
12854
+ /** ID of the access code by which you want to filter the list of Access Grants. */
12855
+ access_code_id?: string | undefined;
12854
12856
  /** Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key. */
12855
12857
  access_grant_key?: (string | null) | undefined;
12856
12858
  /** Filter Access Grants by reservation_key. */
@@ -17035,6 +17037,8 @@ export type Routes = {
17035
17037
  acs_entrance_id?: string | undefined;
17036
17038
  /** ID of the space for which you want to retrieve all access methods. */
17037
17039
  space_id?: string | undefined;
17040
+ /** ID of the access code for which you want to retrieve all access methods. */
17041
+ access_code_id?: string | undefined;
17038
17042
  };
17039
17043
  formData: {};
17040
17044
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.783.0",
3
+ "version": "1.784.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -34992,6 +34992,16 @@ export default {
34992
34992
  type: 'string',
34993
34993
  },
34994
34994
  },
34995
+ {
34996
+ in: 'query',
34997
+ name: 'access_code_id',
34998
+ schema: {
34999
+ description:
35000
+ 'ID of the access code by which you want to filter the list of Access Grants.',
35001
+ format: 'uuid',
35002
+ type: 'string',
35003
+ },
35004
+ },
34995
35005
  {
34996
35006
  in: 'query',
34997
35007
  name: 'access_grant_key',
@@ -35057,6 +35067,12 @@ export default {
35057
35067
  'application/json': {
35058
35068
  schema: {
35059
35069
  properties: {
35070
+ access_code_id: {
35071
+ description:
35072
+ 'ID of the access code by which you want to filter the list of Access Grants.',
35073
+ format: 'uuid',
35074
+ type: 'string',
35075
+ },
35060
35076
  access_grant_ids: {
35061
35077
  description: 'IDs of the access grants to retrieve.',
35062
35078
  items: { format: 'uuid', type: 'string' },
@@ -38733,6 +38749,16 @@ export default {
38733
38749
  type: 'string',
38734
38750
  },
38735
38751
  },
38752
+ {
38753
+ in: 'query',
38754
+ name: 'access_code_id',
38755
+ schema: {
38756
+ description:
38757
+ 'ID of the access code for which you want to retrieve all access methods.',
38758
+ format: 'uuid',
38759
+ type: 'string',
38760
+ },
38761
+ },
38736
38762
  ],
38737
38763
  responses: {
38738
38764
  200: {
@@ -38780,6 +38806,12 @@ export default {
38780
38806
  'application/json': {
38781
38807
  schema: {
38782
38808
  properties: {
38809
+ access_code_id: {
38810
+ description:
38811
+ 'ID of the access code for which you want to retrieve all access methods.',
38812
+ format: 'uuid',
38813
+ type: 'string',
38814
+ },
38783
38815
  access_grant_id: {
38784
38816
  description:
38785
38817
  'ID of Access Grant to list access methods for.',
@@ -14794,6 +14794,8 @@ export type Routes = {
14794
14794
  location_id?: string | undefined
14795
14795
  /** ID of the space by which you want to filter the list of Access Grants. */
14796
14796
  space_id?: string | undefined
14797
+ /** ID of the access code by which you want to filter the list of Access Grants. */
14798
+ access_code_id?: string | undefined
14797
14799
  /** Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key. */
14798
14800
  access_grant_key?: (string | null) | undefined
14799
14801
  /** Filter Access Grants by reservation_key. */
@@ -19708,6 +19710,8 @@ export type Routes = {
19708
19710
  acs_entrance_id?: string | undefined
19709
19711
  /** ID of the space for which you want to retrieve all access methods. */
19710
19712
  space_id?: string | undefined
19713
+ /** ID of the access code for which you want to retrieve all access methods. */
19714
+ access_code_id?: string | undefined
19711
19715
  }
19712
19716
  formData: {}
19713
19717
  jsonResponse: {