@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.
- package/dist/connect.cjs +8 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -0
- package/dist/index.cjs +8 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -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
|
@@ -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
|
}
|