@yuno-payments/dashboard-api-mfe 0.36.32 → 0.36.33
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/build/cjs/index.js +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/types/checkout/styling/styling.d.ts +7 -1
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/types/checkout/styling/styling.d.ts +7 -1
- package/build/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -109,6 +109,12 @@ export declare namespace StylingSettings {
|
|
|
109
109
|
hide_pay_button?: boolean;
|
|
110
110
|
render_mode?: RenderMode;
|
|
111
111
|
};
|
|
112
|
+
payment_method_list?: {
|
|
113
|
+
unfolded_display?: boolean;
|
|
114
|
+
preselected_payment_method?: boolean;
|
|
115
|
+
condensed_checkout_view?: boolean;
|
|
116
|
+
edit_payment_method_list?: boolean;
|
|
117
|
+
};
|
|
112
118
|
};
|
|
113
119
|
}
|
|
114
120
|
interface UpdateSettingsResponse extends UpdateSettings {
|
|
@@ -123,7 +129,7 @@ export declare namespace StylingSettings {
|
|
|
123
129
|
}
|
|
124
130
|
export declare enum RenderMode {
|
|
125
131
|
MODAL = "MODAL",
|
|
126
|
-
|
|
132
|
+
RENDER = "RENDER"
|
|
127
133
|
}
|
|
128
134
|
export declare enum VisualizationMode {
|
|
129
135
|
ONE_STEP = "ONE_STEP",
|
package/build/index.d.ts
CHANGED
|
@@ -4347,6 +4347,12 @@ declare namespace StylingSettings {
|
|
|
4347
4347
|
hide_pay_button?: boolean;
|
|
4348
4348
|
render_mode?: RenderMode;
|
|
4349
4349
|
};
|
|
4350
|
+
payment_method_list?: {
|
|
4351
|
+
unfolded_display?: boolean;
|
|
4352
|
+
preselected_payment_method?: boolean;
|
|
4353
|
+
condensed_checkout_view?: boolean;
|
|
4354
|
+
edit_payment_method_list?: boolean;
|
|
4355
|
+
};
|
|
4350
4356
|
};
|
|
4351
4357
|
}
|
|
4352
4358
|
interface UpdateSettingsResponse extends UpdateSettings {
|
|
@@ -4361,7 +4367,7 @@ declare namespace StylingSettings {
|
|
|
4361
4367
|
}
|
|
4362
4368
|
declare enum RenderMode {
|
|
4363
4369
|
MODAL = "MODAL",
|
|
4364
|
-
|
|
4370
|
+
RENDER = "RENDER"
|
|
4365
4371
|
}
|
|
4366
4372
|
declare enum VisualizationMode {
|
|
4367
4373
|
ONE_STEP = "ONE_STEP",
|