@seamapi/types 1.707.0 → 1.708.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.
@@ -11805,8 +11805,8 @@ export type Routes = {
11805
11805
  queryParams: {};
11806
11806
  jsonBody: {};
11807
11807
  commonParams: {
11808
- /** ID of the access grant to retrieve. */
11809
- access_grant_id?: string | undefined;
11808
+ /** IDs of the access grants to retrieve. */
11809
+ access_grant_ids?: string[] | undefined;
11810
11810
  /** Customer key for which you want to list access grants. */
11811
11811
  customer_key?: string | undefined;
11812
11812
  /** Numerical limit on the number of access grants to return. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.707.0",
3
+ "version": "1.708.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -29902,11 +29902,11 @@ export default {
29902
29902
  parameters: [
29903
29903
  {
29904
29904
  in: 'query',
29905
- name: 'access_grant_id',
29905
+ name: 'access_grant_ids',
29906
29906
  schema: {
29907
- description: 'ID of the access grant to retrieve.',
29908
- format: 'uuid',
29909
- type: 'string',
29907
+ description: 'IDs of the access grants to retrieve.',
29908
+ items: { format: 'uuid', type: 'string' },
29909
+ type: 'array',
29910
29910
  },
29911
29911
  },
29912
29912
  {
@@ -30052,10 +30052,10 @@ export default {
30052
30052
  'application/json': {
30053
30053
  schema: {
30054
30054
  properties: {
30055
- access_grant_id: {
30056
- description: 'ID of the access grant to retrieve.',
30057
- format: 'uuid',
30058
- type: 'string',
30055
+ access_grant_ids: {
30056
+ description: 'IDs of the access grants to retrieve.',
30057
+ items: { format: 'uuid', type: 'string' },
30058
+ type: 'array',
30059
30059
  },
30060
30060
  access_grant_key: {
30061
30061
  description: 'Filter Access Grants by access_grant_key.',
@@ -13545,8 +13545,8 @@ export type Routes = {
13545
13545
  queryParams: {}
13546
13546
  jsonBody: {}
13547
13547
  commonParams: {
13548
- /** ID of the access grant to retrieve. */
13549
- access_grant_id?: string | undefined
13548
+ /** IDs of the access grants to retrieve. */
13549
+ access_grant_ids?: string[] | undefined
13550
13550
  /** Customer key for which you want to list access grants. */
13551
13551
  customer_key?: string | undefined
13552
13552
  /** Numerical limit on the number of access grants to return. */