gotrip-fx-transaction-form 1.0.250-dev → 1.0.251-dev

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gotrip-fx-transaction-form",
3
- "version": "1.0.250-dev",
3
+ "version": "1.0.251-dev",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -80,7 +80,7 @@ export declare const useCoupon: (id?: string, isEdit?: boolean) => {
80
80
  error: unknown;
81
81
  data?: undefined;
82
82
  }>;
83
- exportCampaignCouponsCsv: (campaignName: string, params: TCouponListParams) => Promise<{
83
+ exportCampaignCouponsXlsx: (campaignName: string, params: TCouponListParams) => Promise<{
84
84
  ok: true;
85
85
  data: {
86
86
  blob: Blob;
@@ -21,7 +21,7 @@ export type TCouponConditions = {
21
21
  export type TCouponRow = {
22
22
  id: number;
23
23
  code: string;
24
- name: string;
24
+ name: string | null;
25
25
  campaignId?: number | null;
26
26
  campaign?: TCampaignRef | null;
27
27
  status: string;
@@ -53,7 +53,7 @@ export type TCouponAdminSummary = {
53
53
  export type TCouponDetail = {
54
54
  campaignId?: number | null;
55
55
  code: string;
56
- name: string;
56
+ name: string | null;
57
57
  description?: string | null;
58
58
  status?: TCouponStatus;
59
59
  startAt: string;