@wix/subscription 1.0.19 → 1.0.21
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/context.js +1 -0
- package/build/cjs/context.js.map +1 -0
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -0
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -0
- package/package.json +3 -3
- package/type-bundles/context.bundle.d.ts +476 -35
- package/type-bundles/index.bundle.d.ts +476 -35
- package/type-bundles/meta.bundle.d.ts +8 -8
|
@@ -1472,11 +1472,11 @@ interface InvoiceApplicationFeeValueOneOf$1 {
|
|
|
1472
1472
|
}
|
|
1473
1473
|
interface ItemTaxData$1 {
|
|
1474
1474
|
/** Aggregated tax from tax_breakdowns */
|
|
1475
|
-
|
|
1475
|
+
lineItemTaxSummary?: LineItemTaxSummary$1;
|
|
1476
1476
|
/** A detailed description of all the tax authorities applied on this item. */
|
|
1477
1477
|
taxBreakdowns?: TaxBreakdown$1[];
|
|
1478
1478
|
}
|
|
1479
|
-
interface
|
|
1479
|
+
interface LineItemTaxSummary$1 {
|
|
1480
1480
|
/** Aggregated from tax_breakdowns with exemptions excluded from amount */
|
|
1481
1481
|
aggregatedTaxAmount?: string;
|
|
1482
1482
|
/** Aggregated from tax_breakdowns */
|
|
@@ -2198,7 +2198,7 @@ interface AggregatedTaxBreakdownNonNullableFields$1 {
|
|
|
2198
2198
|
aggregatedTaxAmount: string;
|
|
2199
2199
|
aggregatedTaxableAmount: string;
|
|
2200
2200
|
}
|
|
2201
|
-
interface
|
|
2201
|
+
interface LineItemTaxSummaryNonNullableFields$1 {
|
|
2202
2202
|
aggregatedTaxAmount: string;
|
|
2203
2203
|
aggregatedTaxRate: string;
|
|
2204
2204
|
aggregatedTaxBreakdowns: AggregatedTaxBreakdownNonNullableFields$1[];
|
|
@@ -2209,7 +2209,7 @@ interface TaxBreakdownNonNullableFields$1 {
|
|
|
2209
2209
|
jurisdictionType: string;
|
|
2210
2210
|
}
|
|
2211
2211
|
interface ItemTaxDataNonNullableFields$1 {
|
|
2212
|
-
|
|
2212
|
+
lineItemTaxSummary?: LineItemTaxSummaryNonNullableFields$1;
|
|
2213
2213
|
taxBreakdowns: TaxBreakdownNonNullableFields$1[];
|
|
2214
2214
|
}
|
|
2215
2215
|
interface InvoiceItemNonNullableFields$1 {
|
|
@@ -3778,11 +3778,11 @@ interface InvoiceApplicationFeeValueOneOf {
|
|
|
3778
3778
|
}
|
|
3779
3779
|
interface ItemTaxData {
|
|
3780
3780
|
/** Aggregated tax from tax_breakdowns */
|
|
3781
|
-
|
|
3781
|
+
lineItemTaxSummary?: LineItemTaxSummary;
|
|
3782
3782
|
/** A detailed description of all the tax authorities applied on this item. */
|
|
3783
3783
|
taxBreakdowns?: TaxBreakdown[];
|
|
3784
3784
|
}
|
|
3785
|
-
interface
|
|
3785
|
+
interface LineItemTaxSummary {
|
|
3786
3786
|
/** Aggregated from tax_breakdowns with exemptions excluded from amount */
|
|
3787
3787
|
aggregatedTaxAmount?: string;
|
|
3788
3788
|
/** Aggregated from tax_breakdowns */
|
|
@@ -4504,7 +4504,7 @@ interface AggregatedTaxBreakdownNonNullableFields {
|
|
|
4504
4504
|
aggregatedTaxAmount: string;
|
|
4505
4505
|
aggregatedTaxableAmount: string;
|
|
4506
4506
|
}
|
|
4507
|
-
interface
|
|
4507
|
+
interface LineItemTaxSummaryNonNullableFields {
|
|
4508
4508
|
aggregatedTaxAmount: string;
|
|
4509
4509
|
aggregatedTaxRate: string;
|
|
4510
4510
|
aggregatedTaxBreakdowns: AggregatedTaxBreakdownNonNullableFields[];
|
|
@@ -4515,7 +4515,7 @@ interface TaxBreakdownNonNullableFields {
|
|
|
4515
4515
|
jurisdictionType: string;
|
|
4516
4516
|
}
|
|
4517
4517
|
interface ItemTaxDataNonNullableFields {
|
|
4518
|
-
|
|
4518
|
+
lineItemTaxSummary?: LineItemTaxSummaryNonNullableFields;
|
|
4519
4519
|
taxBreakdowns: TaxBreakdownNonNullableFields[];
|
|
4520
4520
|
}
|
|
4521
4521
|
interface InvoiceItemNonNullableFields {
|