@bzbs/react-api-client 1.2.3 → 1.2.4

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.mjs CHANGED
@@ -841,7 +841,7 @@ var CampaignApi = class extends BaseService {
841
841
  * @param params.addressKey - The address key of a user's address.
842
842
  * @param params.contactNumber - The contact number of the user.
843
843
  * @param params.options - Additional options for the redemption.
844
- * @param params.spPoint - Point Per Unit x Quantity (Donate only).
844
+ * @param params.spPoints - Point Per Unit x Quantity (Donate only).
845
845
  * @param requestOptions - The options for the HTTP request.
846
846
  * @returns A promise that resolves to a service response containing the redeem response.
847
847
  */
@@ -853,7 +853,7 @@ var CampaignApi = class extends BaseService {
853
853
  address_key: params.addressKey,
854
854
  contact_number: params.contactNumber,
855
855
  pointUnit: params.pointUnit,
856
- sp_point: params.spPoint
856
+ sp_points: params.spPoints
857
857
  }, params.options),
858
858
  {
859
859
  headers: __spreadValues({
@@ -874,7 +874,7 @@ var CampaignApi = class extends BaseService {
874
874
  * @param params.addressKey - The address key of a user's address.
875
875
  * @param params.contactNumber - The contact number of the user.
876
876
  * @param params.pointUnit - The point unit of the campaign.
877
- * @param params.spPoint - Point Per Unit x Quantity (Donate only).
877
+ * @param params.spPoints - Point Per Unit x Quantity (Donate only).
878
878
  * @param params.options - Additional options for the redemption.
879
879
  * @param requestOptions - The options for the HTTP request.
880
880
  * @returns A promise that resolves to a service response containing the redeem response.
@@ -888,7 +888,7 @@ var CampaignApi = class extends BaseService {
888
888
  address_key: params.addressKey,
889
889
  contact_number: params.contactNumber,
890
890
  pointUnit: params.pointUnit,
891
- sp_point: params.spPoint
891
+ sp_points: params.spPoints
892
892
  }, params.options),
893
893
  requestOptions
894
894
  );