@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
package/dist/connect.d.cts
CHANGED
|
@@ -100941,6 +100941,10 @@ declare const _default: {
|
|
|
100941
100941
|
nullable: boolean;
|
|
100942
100942
|
type: string;
|
|
100943
100943
|
};
|
|
100944
|
+
instant_key_url: {
|
|
100945
|
+
format: string;
|
|
100946
|
+
type: string;
|
|
100947
|
+
};
|
|
100944
100948
|
is_card_encoding_required: {
|
|
100945
100949
|
type: string;
|
|
100946
100950
|
};
|
|
@@ -101082,6 +101086,10 @@ declare const _default: {
|
|
|
101082
101086
|
nullable: boolean;
|
|
101083
101087
|
type: string;
|
|
101084
101088
|
};
|
|
101089
|
+
instant_key_url: {
|
|
101090
|
+
format: string;
|
|
101091
|
+
type: string;
|
|
101092
|
+
};
|
|
101085
101093
|
is_card_encoding_required: {
|
|
101086
101094
|
type: string;
|
|
101087
101095
|
};
|
|
@@ -170508,6 +170516,7 @@ type Routes = {
|
|
|
170508
170516
|
is_issued: boolean;
|
|
170509
170517
|
is_card_encoding_required?: boolean | undefined;
|
|
170510
170518
|
code?: (string | null) | undefined;
|
|
170519
|
+
instant_key_url?: string | undefined;
|
|
170511
170520
|
}[];
|
|
170512
170521
|
};
|
|
170513
170522
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -58389,6 +58389,10 @@ var openapi_default = {
|
|
|
58389
58389
|
type: "string"
|
|
58390
58390
|
},
|
|
58391
58391
|
code: { nullable: true, type: "string" },
|
|
58392
|
+
instant_key_url: {
|
|
58393
|
+
format: "uri",
|
|
58394
|
+
type: "string"
|
|
58395
|
+
},
|
|
58392
58396
|
is_card_encoding_required: { type: "boolean" },
|
|
58393
58397
|
is_issued: { type: "boolean" },
|
|
58394
58398
|
mode: { type: "string" }
|
|
@@ -58504,6 +58508,10 @@ var openapi_default = {
|
|
|
58504
58508
|
type: "string"
|
|
58505
58509
|
},
|
|
58506
58510
|
code: { nullable: true, type: "string" },
|
|
58511
|
+
instant_key_url: {
|
|
58512
|
+
format: "uri",
|
|
58513
|
+
type: "string"
|
|
58514
|
+
},
|
|
58507
58515
|
is_card_encoding_required: { type: "boolean" },
|
|
58508
58516
|
is_issued: { type: "boolean" },
|
|
58509
58517
|
mode: { type: "string" }
|