@seamapi/types 1.721.1 → 1.722.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.
@@ -55575,6 +55575,7 @@ export type Routes = {
55575
55575
  }[];
55576
55576
  access_methods: {
55577
55577
  access_method_id: string;
55578
+ access_grant_id: string;
55578
55579
  mode: string;
55579
55580
  is_issued: boolean;
55580
55581
  is_card_encoding_required?: boolean | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.721.1",
3
+ "version": "1.722.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -93,7 +93,7 @@
93
93
  "devDependencies": {
94
94
  "@seamapi/blueprint": "^0.53.0",
95
95
  "@swc/core": "^1.11.29",
96
- "@types/node": "^25.0.9",
96
+ "@types/node": "^24.10.9",
97
97
  "del-cli": "^7.0.0",
98
98
  "concurrently": "^9.2.0",
99
99
  "eslint": "^9.31.0",
@@ -57153,6 +57153,10 @@ export default {
57153
57153
  access_methods: {
57154
57154
  items: {
57155
57155
  properties: {
57156
+ access_grant_id: {
57157
+ format: 'uuid',
57158
+ type: 'string',
57159
+ },
57156
57160
  access_method_id: {
57157
57161
  format: 'uuid',
57158
57162
  type: 'string',
@@ -57166,7 +57170,12 @@ export default {
57166
57170
  is_issued: { type: 'boolean' },
57167
57171
  mode: { type: 'string' },
57168
57172
  },
57169
- required: ['access_method_id', 'mode', 'is_issued'],
57173
+ required: [
57174
+ 'access_method_id',
57175
+ 'access_grant_id',
57176
+ 'mode',
57177
+ 'is_issued',
57178
+ ],
57170
57179
  type: 'object',
57171
57180
  },
57172
57181
  type: 'array',
@@ -57273,6 +57282,10 @@ export default {
57273
57282
  access_methods: {
57274
57283
  items: {
57275
57284
  properties: {
57285
+ access_grant_id: {
57286
+ format: 'uuid',
57287
+ type: 'string',
57288
+ },
57276
57289
  access_method_id: {
57277
57290
  format: 'uuid',
57278
57291
  type: 'string',
@@ -57286,7 +57299,12 @@ export default {
57286
57299
  is_issued: { type: 'boolean' },
57287
57300
  mode: { type: 'string' },
57288
57301
  },
57289
- required: ['access_method_id', 'mode', 'is_issued'],
57302
+ required: [
57303
+ 'access_method_id',
57304
+ 'access_grant_id',
57305
+ 'mode',
57306
+ 'is_issued',
57307
+ ],
57290
57308
  type: 'object',
57291
57309
  },
57292
57310
  type: 'array',
@@ -66579,6 +66579,7 @@ export type Routes = {
66579
66579
  }[]
66580
66580
  access_methods: {
66581
66581
  access_method_id: string
66582
+ access_grant_id: string
66582
66583
  mode: string
66583
66584
  is_issued: boolean
66584
66585
  is_card_encoding_required?: boolean | undefined