@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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +12 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +11 -0
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +12 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +11 -0
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +12 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +11 -0
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +12 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +11 -0
- package/package.json +2 -2
|
@@ -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.
|
|
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": "
|
|
53
|
+
"falconPackageHash": "3f059be435d378a47d77a4688833b72e360028f7ef7591eeb4ab0dcb"
|
|
54
54
|
}
|