@seamapi/types 1.443.0 → 1.444.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.
@@ -45468,6 +45468,21 @@ declare const _default: {
45468
45468
  format: string;
45469
45469
  type: string;
45470
45470
  };
45471
+ acs_entrance_id: {
45472
+ description: string;
45473
+ format: string;
45474
+ type: string;
45475
+ };
45476
+ device_id: {
45477
+ description: string;
45478
+ format: string;
45479
+ type: string;
45480
+ };
45481
+ space_id: {
45482
+ description: string;
45483
+ format: string;
45484
+ type: string;
45485
+ };
45471
45486
  };
45472
45487
  required: string[];
45473
45488
  type: string;
@@ -88139,6 +88154,12 @@ interface Routes {
88139
88154
  commonParams: {
88140
88155
  /** ID of access grant to list access methods for. */
88141
88156
  access_grant_id: string;
88157
+ /** ID of the device for which you want to retrieve all access methods. */
88158
+ device_id?: string | undefined;
88159
+ /** ID of the entrance for which you want to retrieve all access methods. */
88160
+ acs_entrance_id?: string | undefined;
88161
+ /** ID of the space for which you want to retrieve all access methods. */
88162
+ space_id?: string | undefined;
88142
88163
  };
88143
88164
  formData: {};
88144
88165
  jsonResponse: {
package/dist/index.cjs CHANGED
@@ -31152,6 +31152,36 @@ var openapi_default = {
31152
31152
  format: "uuid",
31153
31153
  type: "string"
31154
31154
  }
31155
+ },
31156
+ {
31157
+ in: "query",
31158
+ name: "device_id",
31159
+ required: false,
31160
+ schema: {
31161
+ description: "ID of the device for which you want to retrieve all access methods.",
31162
+ format: "uuid",
31163
+ type: "string"
31164
+ }
31165
+ },
31166
+ {
31167
+ in: "query",
31168
+ name: "acs_entrance_id",
31169
+ required: false,
31170
+ schema: {
31171
+ description: "ID of the entrance for which you want to retrieve all access methods.",
31172
+ format: "uuid",
31173
+ type: "string"
31174
+ }
31175
+ },
31176
+ {
31177
+ in: "query",
31178
+ name: "space_id",
31179
+ required: false,
31180
+ schema: {
31181
+ description: "ID of the space for which you want to retrieve all access methods.",
31182
+ format: "uuid",
31183
+ type: "string"
31184
+ }
31155
31185
  }
31156
31186
  ],
31157
31187
  responses: {
@@ -31202,6 +31232,21 @@ var openapi_default = {
31202
31232
  description: "ID of access grant to list access methods for.",
31203
31233
  format: "uuid",
31204
31234
  type: "string"
31235
+ },
31236
+ acs_entrance_id: {
31237
+ description: "ID of the entrance for which you want to retrieve all access methods.",
31238
+ format: "uuid",
31239
+ type: "string"
31240
+ },
31241
+ device_id: {
31242
+ description: "ID of the device for which you want to retrieve all access methods.",
31243
+ format: "uuid",
31244
+ type: "string"
31245
+ },
31246
+ space_id: {
31247
+ description: "ID of the space for which you want to retrieve all access methods.",
31248
+ format: "uuid",
31249
+ type: "string"
31205
31250
  }
31206
31251
  },
31207
31252
  required: ["access_grant_id"],