@seamapi/types 1.705.0 → 1.707.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,6 +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
11810
  /** Customer key for which you want to list access grants. */
11809
11811
  customer_key?: string | undefined;
11810
11812
  /** Numerical limit on the number of access grants to return. */
@@ -55264,6 +55266,7 @@ export type Routes = {
55264
55266
  is_issued: boolean;
55265
55267
  is_card_encoding_required?: boolean | undefined;
55266
55268
  code?: (string | null) | undefined;
55269
+ instant_key_url?: string | undefined;
55267
55270
  }[];
55268
55271
  };
55269
55272
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.705.0",
3
+ "version": "1.707.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -29900,6 +29900,15 @@ export default {
29900
29900
  description: 'Gets an Access Grant.',
29901
29901
  operationId: 'accessGrantsListGet',
29902
29902
  parameters: [
29903
+ {
29904
+ in: 'query',
29905
+ name: 'access_grant_id',
29906
+ schema: {
29907
+ description: 'ID of the access grant to retrieve.',
29908
+ format: 'uuid',
29909
+ type: 'string',
29910
+ },
29911
+ },
29903
29912
  {
29904
29913
  in: 'query',
29905
29914
  name: 'customer_key',
@@ -30043,6 +30052,11 @@ export default {
30043
30052
  'application/json': {
30044
30053
  schema: {
30045
30054
  properties: {
30055
+ access_grant_id: {
30056
+ description: 'ID of the access grant to retrieve.',
30057
+ format: 'uuid',
30058
+ type: 'string',
30059
+ },
30046
30060
  access_grant_key: {
30047
30061
  description: 'Filter Access Grants by access_grant_key.',
30048
30062
  type: 'string',
@@ -56768,6 +56782,10 @@ export default {
56768
56782
  type: 'string',
56769
56783
  },
56770
56784
  code: { nullable: true, type: 'string' },
56785
+ instant_key_url: {
56786
+ format: 'uri',
56787
+ type: 'string',
56788
+ },
56771
56789
  is_card_encoding_required: { type: 'boolean' },
56772
56790
  is_issued: { type: 'boolean' },
56773
56791
  mode: { type: 'string' },
@@ -56884,6 +56902,10 @@ export default {
56884
56902
  type: 'string',
56885
56903
  },
56886
56904
  code: { nullable: true, type: 'string' },
56905
+ instant_key_url: {
56906
+ format: 'uri',
56907
+ type: 'string',
56908
+ },
56887
56909
  is_card_encoding_required: { type: 'boolean' },
56888
56910
  is_issued: { type: 'boolean' },
56889
56911
  mode: { type: 'string' },
@@ -13545,6 +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
13550
  /** Customer key for which you want to list access grants. */
13549
13551
  customer_key?: string | undefined
13550
13552
  /** Numerical limit on the number of access grants to return. */
@@ -66197,6 +66199,7 @@ export type Routes = {
66197
66199
  is_issued: boolean
66198
66200
  is_card_encoding_required?: boolean | undefined
66199
66201
  code?: (string | null) | undefined
66202
+ instant_key_url?: string | undefined
66200
66203
  }[]
66201
66204
  }
66202
66205
  }