Skip to content

Commit

Permalink
Merge pull request #296 from BingAds/v13.0.21.2
Browse files Browse the repository at this point in the history
v13.0.21.2
  • Loading branch information
xinyuwen2 authored Aug 19, 2024
2 parents 0ae124b + cba6db7 commit d5dde35
Show file tree
Hide file tree
Showing 9 changed files with 89 additions and 5 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Release History

13.0.21.2(2024-08-19)
+++++++++++++++++++++++++
* Fix Issue #295: https://github.com/BingAds/BingAds-Python-SDK/issues/295
* Change 'ImpreesionBasedRemarketingList' to 'ImpressionBasedRemarketingList' in AudienceAdditionalField

13.0.21.1(2024-07-24)
+++++++++++++++++++++++++
* Fix Issue #291: https://github.com/BingAds/BingAds-Python-SDK/issues/291
Expand Down
2 changes: 1 addition & 1 deletion bingads/manifest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sys
VERSION = '13.0.21.1'
VERSION = '13.0.21.2'
BULK_FORMAT_VERSION_6 = '6.0'
WORKING_NAME = 'BingAdsSDKPython'
USER_AGENT = '{0} {1} {2}'.format(WORKING_NAME, VERSION, sys.version_info[0:3])
2 changes: 1 addition & 1 deletion bingads/v13/internal/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def entity_biddingscheme_to_csv(entity, row_values):
elif bid_strategy_type == 'TargetImpressionShare':
row_values[_StringTable.BidStrategyMaxCpc] = bid_bulk_str(entity.BiddingScheme.MaxCpc, entity.Id)
row_values[_StringTable.BidStrategyTargetAdPosition] = bulk_optional_str(entity.BiddingScheme.TargetAdPosition, entity.Id)
row_values[_StringTable.BidStrategyTargetImpressionShare] = TargetImpressionShare(entity.BiddingScheme.TargetImpressionShare)
row_values[_StringTable.BidStrategyTargetImpressionShare] = bulk_str(entity.BiddingScheme.TargetImpressionShare)
elif bid_strategy_type == 'PercentCpc':
row_values[_StringTable.BidStrategyPercentMaxCpc] = bulk_str(entity.BiddingScheme.MaxPercentCpc)
elif bid_strategy_type == 'Commission':
Expand Down
17 changes: 16 additions & 1 deletion bingads/v13/proxies/production/campaignmanagement_service.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1121,6 +1121,13 @@
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="Id" nillable="true" type="xs:long" />
<xs:element minOccurs="0" name="IsDealCampaign" nillable="true" type="xs:boolean">
<xs:annotation>
<xs:appinfo>
<DefaultValue EmitDefaultValue="false" xmlns="http://schemas.microsoft.com/2003/10/Serialization/" />
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="MultimediaAdsBidAdjustment" nillable="true" type="xs:int">
<xs:annotation>
<xs:appinfo>
Expand Down Expand Up @@ -1512,6 +1519,7 @@
<xs:enumeration value="CostPerSaleOptOutInPerformanceMaxSettings" />
<xs:enumeration value="VanityPharmaSetting" />
<xs:enumeration value="ManualCpi" />
<xs:enumeration value="IsDealCampaign" />
</xs:restriction>
</xs:simpleType>
</xs:list>
Expand Down Expand Up @@ -2637,6 +2645,13 @@
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="BlockedContentSegments">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">32768</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:element name="AccountPropertyName" nillable="true" type="tns:AccountPropertyName" />
Expand Down Expand Up @@ -6601,7 +6616,7 @@
<xs:restriction base="xs:string">
<xs:enumeration value="NormalForm" />
<xs:enumeration value="NumberRuleItem" />
<xs:enumeration value="ImpreesionBasedRemarketingList" />
<xs:enumeration value="ImpressionBasedRemarketingList" />
</xs:restriction>
</xs:simpleType>
</xs:list>
Expand Down
1 change: 1 addition & 0 deletions bingads/v13/proxies/production/customerbilling_service.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
<xs:element xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="AccountIds" nillable="true" type="q1:ArrayOflong" />
<xs:element minOccurs="0" name="StartDate" type="xs:dateTime" />
<xs:element minOccurs="0" name="EndDate" nillable="true" type="xs:dateTime" />
<xs:element minOccurs="0" name="ReturnInvoiceNumber" nillable="true" type="xs:boolean" />
</xs:sequence>
</xs:complexType>
</xs:element>
Expand Down
24 changes: 24 additions & 0 deletions bingads/v13/proxies/production/reporting_service.xml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,18 @@
<xs:enumeration value="Installs" />
<xs:enumeration value="CostPerInstall" />
<xs:enumeration value="RevenuePerInstall" />
<xs:enumeration value="Downloads" />
<xs:enumeration value="PostClickDownloadRate" />
<xs:enumeration value="CostPerDownload" />
<xs:enumeration value="AppInstalls" />
<xs:enumeration value="PostClickInstallRate" />
<xs:enumeration value="CPI" />
<xs:enumeration value="Purchases" />
<xs:enumeration value="PostInstallPurchaseRate" />
<xs:enumeration value="CPP" />
<xs:enumeration value="Subscriptions" />
<xs:enumeration value="PostInstallSubscriptionRate" />
<xs:enumeration value="CPS" />
</xs:restriction>
</xs:simpleType>
<xs:element name="AccountPerformanceReportColumn" nillable="true" type="tns:AccountPerformanceReportColumn" />
Expand Down Expand Up @@ -957,6 +969,18 @@
<xs:enumeration value="Installs" />
<xs:enumeration value="CostPerInstall" />
<xs:enumeration value="RevenuePerInstall" />
<xs:enumeration value="Downloads" />
<xs:enumeration value="PostClickDownloadRate" />
<xs:enumeration value="CostPerDownload" />
<xs:enumeration value="AppInstalls" />
<xs:enumeration value="PostClickInstallRate" />
<xs:enumeration value="CPI" />
<xs:enumeration value="Purchases" />
<xs:enumeration value="PostInstallPurchaseRate" />
<xs:enumeration value="CPP" />
<xs:enumeration value="Subscriptions" />
<xs:enumeration value="PostInstallSubscriptionRate" />
<xs:enumeration value="CPS" />
</xs:restriction>
</xs:simpleType>
<xs:element name="CampaignPerformanceReportColumn" nillable="true" type="tns:CampaignPerformanceReportColumn" />
Expand Down
17 changes: 16 additions & 1 deletion bingads/v13/proxies/sandbox/campaignmanagement_service.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1121,6 +1121,13 @@
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="Id" nillable="true" type="xs:long" />
<xs:element minOccurs="0" name="IsDealCampaign" nillable="true" type="xs:boolean">
<xs:annotation>
<xs:appinfo>
<DefaultValue EmitDefaultValue="false" xmlns="http://schemas.microsoft.com/2003/10/Serialization/" />
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="MultimediaAdsBidAdjustment" nillable="true" type="xs:int">
<xs:annotation>
<xs:appinfo>
Expand Down Expand Up @@ -1512,6 +1519,7 @@
<xs:enumeration value="CostPerSaleOptOutInPerformanceMaxSettings" />
<xs:enumeration value="VanityPharmaSetting" />
<xs:enumeration value="ManualCpi" />
<xs:enumeration value="IsDealCampaign" />
</xs:restriction>
</xs:simpleType>
</xs:list>
Expand Down Expand Up @@ -2637,6 +2645,13 @@
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="BlockedContentSegments">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">32768</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:element name="AccountPropertyName" nillable="true" type="tns:AccountPropertyName" />
Expand Down Expand Up @@ -6601,7 +6616,7 @@
<xs:restriction base="xs:string">
<xs:enumeration value="NormalForm" />
<xs:enumeration value="NumberRuleItem" />
<xs:enumeration value="ImpreesionBasedRemarketingList" />
<xs:enumeration value="ImpressionBasedRemarketingList" />
</xs:restriction>
</xs:simpleType>
</xs:list>
Expand Down
24 changes: 24 additions & 0 deletions bingads/v13/proxies/sandbox/reporting_service.xml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,18 @@
<xs:enumeration value="Installs" />
<xs:enumeration value="CostPerInstall" />
<xs:enumeration value="RevenuePerInstall" />
<xs:enumeration value="Downloads" />
<xs:enumeration value="PostClickDownloadRate" />
<xs:enumeration value="CostPerDownload" />
<xs:enumeration value="AppInstalls" />
<xs:enumeration value="PostClickInstallRate" />
<xs:enumeration value="CPI" />
<xs:enumeration value="Purchases" />
<xs:enumeration value="PostInstallPurchaseRate" />
<xs:enumeration value="CPP" />
<xs:enumeration value="Subscriptions" />
<xs:enumeration value="PostInstallSubscriptionRate" />
<xs:enumeration value="CPS" />
</xs:restriction>
</xs:simpleType>
<xs:element name="AccountPerformanceReportColumn" nillable="true" type="tns:AccountPerformanceReportColumn" />
Expand Down Expand Up @@ -957,6 +969,18 @@
<xs:enumeration value="Installs" />
<xs:enumeration value="CostPerInstall" />
<xs:enumeration value="RevenuePerInstall" />
<xs:enumeration value="Downloads" />
<xs:enumeration value="PostClickDownloadRate" />
<xs:enumeration value="CostPerDownload" />
<xs:enumeration value="AppInstalls" />
<xs:enumeration value="PostClickInstallRate" />
<xs:enumeration value="CPI" />
<xs:enumeration value="Purchases" />
<xs:enumeration value="PostInstallPurchaseRate" />
<xs:enumeration value="CPP" />
<xs:enumeration value="Subscriptions" />
<xs:enumeration value="PostInstallSubscriptionRate" />
<xs:enumeration value="CPS" />
</xs:restriction>
</xs:simpleType>
<xs:element name="CampaignPerformanceReportColumn" nillable="true" type="tns:CampaignPerformanceReportColumn" />
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
except ImportError:
from distutils.core import setup

VERSION = '13.0.21.1'
VERSION = '13.0.21.2'

with open('README.rst', 'r') as f:
readme = f.read()
Expand Down

0 comments on commit d5dde35

Please sign in to comment.