@seamapi/types 1.705.0 → 1.706.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.
@@ -55264,6 +55264,7 @@ export type Routes = {
55264
55264
  is_issued: boolean;
55265
55265
  is_card_encoding_required?: boolean | undefined;
55266
55266
  code?: (string | null) | undefined;
55267
+ instant_key_url?: string | undefined;
55267
55268
  }[];
55268
55269
  };
55269
55270
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.705.0",
3
+ "version": "1.706.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -56768,6 +56768,10 @@ export default {
56768
56768
  type: 'string',
56769
56769
  },
56770
56770
  code: { nullable: true, type: 'string' },
56771
+ instant_key_url: {
56772
+ format: 'uri',
56773
+ type: 'string',
56774
+ },
56771
56775
  is_card_encoding_required: { type: 'boolean' },
56772
56776
  is_issued: { type: 'boolean' },
56773
56777
  mode: { type: 'string' },
@@ -56884,6 +56888,10 @@ export default {
56884
56888
  type: 'string',
56885
56889
  },
56886
56890
  code: { nullable: true, type: 'string' },
56891
+ instant_key_url: {
56892
+ format: 'uri',
56893
+ type: 'string',
56894
+ },
56887
56895
  is_card_encoding_required: { type: 'boolean' },
56888
56896
  is_issued: { type: 'boolean' },
56889
56897
  mode: { type: 'string' },
@@ -66197,6 +66197,7 @@ export type Routes = {
66197
66197
  is_issued: boolean
66198
66198
  is_card_encoding_required?: boolean | undefined
66199
66199
  code?: (string | null) | undefined
66200
+ instant_key_url?: string | undefined
66200
66201
  }[]
66201
66202
  }
66202
66203
  }