@bzbs/react-api-client 1.4.10 → 1.4.12
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/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -321,6 +321,7 @@ interface CampaignDetail {
|
|
|
321
321
|
IsFavourite?: boolean;
|
|
322
322
|
SubCampaigns?: SubCampaign[];
|
|
323
323
|
Remark?: string;
|
|
324
|
+
IsRequireUniqueSerial?: boolean;
|
|
324
325
|
PointServices?: {
|
|
325
326
|
[unit: string]: PointUnit;
|
|
326
327
|
};
|
|
@@ -488,6 +489,7 @@ interface RedeemResponse {
|
|
|
488
489
|
IsConditionPass?: boolean;
|
|
489
490
|
ConditionAlert?: any;
|
|
490
491
|
IsNotAutoUse?: boolean;
|
|
492
|
+
IsUsed?: boolean;
|
|
491
493
|
PointType?: string;
|
|
492
494
|
InterfaceDisplay?: string;
|
|
493
495
|
RedeemKey?: string;
|
|
@@ -2844,7 +2846,7 @@ declare class AddressApi extends BaseService {
|
|
|
2844
2846
|
provinceName?: string;
|
|
2845
2847
|
subDistrictCode?: string;
|
|
2846
2848
|
subDistrictName?: string;
|
|
2847
|
-
|
|
2849
|
+
zipcode?: string;
|
|
2848
2850
|
options?: {
|
|
2849
2851
|
[key: string]: unknown;
|
|
2850
2852
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -321,6 +321,7 @@ interface CampaignDetail {
|
|
|
321
321
|
IsFavourite?: boolean;
|
|
322
322
|
SubCampaigns?: SubCampaign[];
|
|
323
323
|
Remark?: string;
|
|
324
|
+
IsRequireUniqueSerial?: boolean;
|
|
324
325
|
PointServices?: {
|
|
325
326
|
[unit: string]: PointUnit;
|
|
326
327
|
};
|
|
@@ -488,6 +489,7 @@ interface RedeemResponse {
|
|
|
488
489
|
IsConditionPass?: boolean;
|
|
489
490
|
ConditionAlert?: any;
|
|
490
491
|
IsNotAutoUse?: boolean;
|
|
492
|
+
IsUsed?: boolean;
|
|
491
493
|
PointType?: string;
|
|
492
494
|
InterfaceDisplay?: string;
|
|
493
495
|
RedeemKey?: string;
|
|
@@ -2844,7 +2846,7 @@ declare class AddressApi extends BaseService {
|
|
|
2844
2846
|
provinceName?: string;
|
|
2845
2847
|
subDistrictCode?: string;
|
|
2846
2848
|
subDistrictName?: string;
|
|
2847
|
-
|
|
2849
|
+
zipcode?: string;
|
|
2848
2850
|
options?: {
|
|
2849
2851
|
[key: string]: unknown;
|
|
2850
2852
|
};
|
package/dist/index.js
CHANGED
|
@@ -2420,7 +2420,7 @@ var AddressApi = class extends BaseService {
|
|
|
2420
2420
|
province_name: params.provinceName,
|
|
2421
2421
|
subdistrict_code: params.subDistrictCode,
|
|
2422
2422
|
subdistrict_name: params.subDistrictName,
|
|
2423
|
-
zipcode: params.
|
|
2423
|
+
zipcode: params.zipcode
|
|
2424
2424
|
}, params.options),
|
|
2425
2425
|
{
|
|
2426
2426
|
headers: __spreadValues({
|