@wix/auto_sdk_subscription_subscriptions 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.
@@ -690,6 +690,12 @@ interface PaymentTaxData {
690
690
  * @maxSize 100
691
691
  */
692
692
  taxBreakdowns?: TaxBreakdown[];
693
+ /**
694
+ * Tax amount for all subscription items
695
+ * @format DECIMAL_VALUE
696
+ * @decimalValue options { gte:0.00, maxScale:2 }
697
+ */
698
+ taxAmount?: string | null;
693
699
  }
694
700
  interface TaxBreakdown {
695
701
  taxType?: string;
@@ -1877,6 +1883,11 @@ interface SortingClauses {
1877
1883
  interface SearchSubscriptionsResponse {
1878
1884
  subscriptions?: Subscription[];
1879
1885
  cursor?: CursorPaging;
1886
+ pagingMetadata?: CursorPagingMetadata;
1887
+ }
1888
+ interface CursorPagingMetadata {
1889
+ /** Total number of items matching the filter. Available only on the first page of *Search* */
1890
+ total?: number | null;
1880
1891
  }
1881
1892
  interface TurnOnSubscriptionAutoRenewalRequest {
1882
1893
  /** @format GUID */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_subscription_subscriptions",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -50,5 +50,5 @@
50
50
  "fqdn": "wix.billing.v1.subscription"
51
51
  }
52
52
  },
53
- "falconPackageHash": "0ca2086420b54630c62b010204790296a7554fd7c458bfd5c1fc2457"
53
+ "falconPackageHash": "3f059be435d378a47d77a4688833b72e360028f7ef7591eeb4ab0dcb"
54
54
  }