@seamapi/types 1.609.0 → 1.611.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.
@@ -11818,6 +11818,8 @@ export type Routes = {
11818
11818
  space_id?: string | undefined;
11819
11819
  /** Filter Access Grants by access_grant_key. */
11820
11820
  access_grant_key?: string | undefined;
11821
+ /** Filter Access Grants by reservation_key. */
11822
+ reservation_key?: string | undefined;
11821
11823
  };
11822
11824
  formData: {};
11823
11825
  jsonResponse: {
@@ -12033,6 +12035,8 @@ export type Routes = {
12033
12035
  acs_system_id?: string | undefined;
12034
12036
  /** ID of the entrance by which you want to filter the list of unmanaged Access Grants. */
12035
12037
  acs_entrance_id?: string | undefined;
12038
+ /** Filter unmanaged Access Grants by reservation_key. */
12039
+ reservation_key?: string | undefined;
12036
12040
  };
12037
12041
  formData: {};
12038
12042
  jsonResponse: {
@@ -80783,7 +80787,7 @@ export type Routes = {
80783
80787
  queryParams: {};
80784
80788
  jsonBody: {};
80785
80789
  commonParams: {
80786
- /** String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
80790
+ /** String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address`, `user_identity_id` or `acs_system_id`. */
80787
80791
  search?: string | undefined;
80788
80792
  /** Maximum number of records to return per page. */
80789
80793
  limit?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.609.0",
3
+ "version": "1.611.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -29082,6 +29082,14 @@ export default {
29082
29082
  type: 'string',
29083
29083
  },
29084
29084
  },
29085
+ {
29086
+ in: 'query',
29087
+ name: 'reservation_key',
29088
+ schema: {
29089
+ description: 'Filter Access Grants by reservation_key.',
29090
+ type: 'string',
29091
+ },
29092
+ },
29085
29093
  ],
29086
29094
  responses: {
29087
29095
  200: {
@@ -29155,6 +29163,10 @@ export default {
29155
29163
  type: 'string',
29156
29164
  'x-deprecated': 'Use `space_id`.',
29157
29165
  },
29166
+ reservation_key: {
29167
+ description: 'Filter Access Grants by reservation_key.',
29168
+ type: 'string',
29169
+ },
29158
29170
  space_id: {
29159
29171
  description:
29160
29172
  'ID of the space by which you want to filter the list of Access Grants.',
@@ -29795,6 +29807,14 @@ export default {
29795
29807
  type: 'string',
29796
29808
  },
29797
29809
  },
29810
+ {
29811
+ in: 'query',
29812
+ name: 'reservation_key',
29813
+ schema: {
29814
+ description: 'Filter unmanaged Access Grants by reservation_key.',
29815
+ type: 'string',
29816
+ },
29817
+ },
29798
29818
  ],
29799
29819
  responses: {
29800
29820
  200: {
@@ -30033,6 +30053,11 @@ export default {
30033
30053
  format: 'uuid',
30034
30054
  type: 'string',
30035
30055
  },
30056
+ reservation_key: {
30057
+ description:
30058
+ 'Filter unmanaged Access Grants by reservation_key.',
30059
+ type: 'string',
30060
+ },
30036
30061
  user_identity_id: {
30037
30062
  description:
30038
30063
  'ID of user identity by which you want to filter the list of unmanaged Access Grants.',
@@ -62098,7 +62123,7 @@ export default {
62098
62123
  name: 'search',
62099
62124
  schema: {
62100
62125
  description:
62101
- 'String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
62126
+ 'String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address`, `user_identity_id` or `acs_system_id`.',
62102
62127
  type: 'string',
62103
62128
  },
62104
62129
  },
@@ -62391,7 +62416,7 @@ export default {
62391
62416
  },
62392
62417
  search: {
62393
62418
  description:
62394
- 'String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
62419
+ 'String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address`, `user_identity_id` or `acs_system_id`.',
62395
62420
  type: 'string',
62396
62421
  },
62397
62422
  },
@@ -13557,6 +13557,8 @@ export type Routes = {
13557
13557
  space_id?: string | undefined
13558
13558
  /** Filter Access Grants by access_grant_key. */
13559
13559
  access_grant_key?: string | undefined
13560
+ /** Filter Access Grants by reservation_key. */
13561
+ reservation_key?: string | undefined
13560
13562
  }
13561
13563
  formData: {}
13562
13564
  jsonResponse: {
@@ -13772,6 +13774,8 @@ export type Routes = {
13772
13774
  acs_system_id?: string | undefined
13773
13775
  /** ID of the entrance by which you want to filter the list of unmanaged Access Grants. */
13774
13776
  acs_entrance_id?: string | undefined
13777
+ /** Filter unmanaged Access Grants by reservation_key. */
13778
+ reservation_key?: string | undefined
13775
13779
  }
13776
13780
  formData: {}
13777
13781
  jsonResponse: {
@@ -96145,7 +96149,7 @@ export type Routes = {
96145
96149
  queryParams: {}
96146
96150
  jsonBody: {}
96147
96151
  commonParams: {
96148
- /** String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
96152
+ /** String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address`, `user_identity_id` or `acs_system_id`. */
96149
96153
  search?: string | undefined
96150
96154
  /** Maximum number of records to return per page. */
96151
96155
  limit?: number