@revxui/intellibid-client-ts 1.0.13 → 1.0.15

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.
@@ -923,7 +923,7 @@ class DpaEngagementControllerService {
923
923
  reportProgress: reportProgress
924
924
  });
925
925
  }
926
- getAllDpaEngagements(id, campaignId, facebookCampaignId, name, payoutType, status, isIntellibidEnabled, isMarketFeedbackEnabled, campaignStatus, isStatic, page, size, sort, observe = 'body', reportProgress = false) {
926
+ getAllDpaEngagements(id, campaignId, facebookCampaignId, name, payoutType, status, isIntellibidEnabled, isMarketFeedbackEnabled, campaignStatus, staticCampaign, page, size, sort, observe = 'body', reportProgress = false) {
927
927
  let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
928
928
  if (id !== undefined && id !== null) {
929
929
  queryParameters = queryParameters.set('id', id);
@@ -952,8 +952,8 @@ class DpaEngagementControllerService {
952
952
  if (campaignStatus !== undefined && campaignStatus !== null) {
953
953
  queryParameters = queryParameters.set('campaignStatus', campaignStatus);
954
954
  }
955
- if (isStatic !== undefined && isStatic !== null) {
956
- queryParameters = queryParameters.set('isStatic', isStatic);
955
+ if (staticCampaign !== undefined && staticCampaign !== null) {
956
+ queryParameters = queryParameters.set('staticCampaign', staticCampaign);
957
957
  }
958
958
  if (page !== undefined && page !== null) {
959
959
  queryParameters = queryParameters.set('page', page);