squarefi-bff-api-module 1.17.20 → 1.17.22
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/api/types.d.ts +6 -1
- package/package.json +1 -1
- package/src/api/types.ts +6 -1
package/dist/api/types.d.ts
CHANGED
|
@@ -97,6 +97,11 @@ export declare namespace API {
|
|
|
97
97
|
}
|
|
98
98
|
namespace Cards {
|
|
99
99
|
namespace Config {
|
|
100
|
+
type IssuingProgramOrderType = {
|
|
101
|
+
id: string;
|
|
102
|
+
order_types_id: OrderType | string;
|
|
103
|
+
issuing_programs_id: string;
|
|
104
|
+
};
|
|
100
105
|
interface Program {
|
|
101
106
|
id: string;
|
|
102
107
|
account_currency: string;
|
|
@@ -109,7 +114,7 @@ export declare namespace API {
|
|
|
109
114
|
vendor_id: string;
|
|
110
115
|
purposes: string[] | null;
|
|
111
116
|
type: CardType | string;
|
|
112
|
-
order_types:
|
|
117
|
+
order_types: IssuingProgramOrderType[];
|
|
113
118
|
sub_account_type: SubAccountType | string;
|
|
114
119
|
description: string | null;
|
|
115
120
|
icon: string | null;
|
package/package.json
CHANGED
package/src/api/types.ts
CHANGED
|
@@ -126,6 +126,11 @@ export namespace API {
|
|
|
126
126
|
|
|
127
127
|
export namespace Cards {
|
|
128
128
|
export namespace Config {
|
|
129
|
+
export type IssuingProgramOrderType = {
|
|
130
|
+
id: string;
|
|
131
|
+
order_types_id: OrderType | string;
|
|
132
|
+
issuing_programs_id: string;
|
|
133
|
+
};
|
|
129
134
|
export interface Program {
|
|
130
135
|
id: string;
|
|
131
136
|
account_currency: string;
|
|
@@ -138,7 +143,7 @@ export namespace API {
|
|
|
138
143
|
vendor_id: string;
|
|
139
144
|
purposes: string[] | null;
|
|
140
145
|
type: CardType | string; // MOCK
|
|
141
|
-
order_types:
|
|
146
|
+
order_types: IssuingProgramOrderType[];
|
|
142
147
|
sub_account_type: SubAccountType | string;
|
|
143
148
|
description: string | null;
|
|
144
149
|
icon: string | null;
|