@vendasta/billing 10.10.3 → 11.0.0
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/esm2020/lib/_generated/host.service.mjs +3 -3
- package/esm2020/lib/_internal/bank-reconciliation.api.service.mjs +3 -3
- package/esm2020/lib/_internal/billing.api.service.mjs +3 -3
- package/esm2020/lib/_internal/bundle.api.service.mjs +3 -3
- package/esm2020/lib/_internal/contract-document.api.service.mjs +3 -3
- package/esm2020/lib/_internal/contract.api.service.mjs +3 -3
- package/esm2020/lib/_internal/credit.api.service.mjs +3 -3
- package/esm2020/lib/_internal/discount.api.service.mjs +3 -3
- package/esm2020/lib/_internal/interfaces/billable-item.interface.mjs +1 -1
- package/esm2020/lib/_internal/invoice-template.api.service.mjs +3 -3
- package/esm2020/lib/_internal/invoice.api.service.mjs +3 -3
- package/esm2020/lib/_internal/merchant.api.service.mjs +3 -3
- package/esm2020/lib/_internal/objects/billable-item.mjs +7 -1
- package/esm2020/lib/_internal/payment-method.api.service.mjs +3 -3
- package/esm2020/lib/_internal/payment.api.service.mjs +3 -3
- package/esm2020/lib/_internal/pricing.api.service.mjs +3 -3
- package/esm2020/lib/_internal/product-summary.api.service.mjs +3 -3
- package/esm2020/lib/_internal/product.api.service.mjs +3 -3
- package/esm2020/lib/_internal/purchase.api.service.mjs +3 -3
- package/esm2020/lib/_internal/recurring-invoice.api.service.mjs +3 -3
- package/esm2020/lib/_internal/refund.api.service.mjs +3 -3
- package/esm2020/lib/_internal/retail-customer-configuration.api.service.mjs +3 -3
- package/esm2020/lib/_internal/sales-credit-note.api.service.mjs +3 -3
- package/esm2020/lib/_internal/sales-invoice.api.service.mjs +3 -3
- package/esm2020/lib/_internal/tax.api.service.mjs +3 -3
- package/esm2020/lib/_internal/vendor.api.service.mjs +3 -3
- package/fesm2015/vendasta-billing.mjs +78 -72
- package/fesm2015/vendasta-billing.mjs.map +1 -1
- package/fesm2020/vendasta-billing.mjs +78 -72
- package/fesm2020/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/billable-item.interface.d.ts +1 -0
- package/lib/_internal/objects/billable-item.d.ts +1 -0
- package/package.json +3 -3
- package/src/README.md +0 -1
|
@@ -1040,6 +1040,9 @@ class ListSubscriptionsRequestFilters {
|
|
|
1040
1040
|
if (proto.expiredDateLte) {
|
|
1041
1041
|
m.expiredDateLte = new Date(proto.expiredDateLte);
|
|
1042
1042
|
}
|
|
1043
|
+
if (proto.frequencies) {
|
|
1044
|
+
m.frequencies = proto.frequencies.map((v) => enumStringToValue$E(Frequency, v));
|
|
1045
|
+
}
|
|
1043
1046
|
return m;
|
|
1044
1047
|
}
|
|
1045
1048
|
toApiJson() {
|
|
@@ -1065,6 +1068,9 @@ class ListSubscriptionsRequestFilters {
|
|
|
1065
1068
|
if (typeof this.expiredDateLte !== 'undefined' && this.expiredDateLte !== null) {
|
|
1066
1069
|
toReturn['expiredDateLte'] = 'toApiJson' in this.expiredDateLte ? this.expiredDateLte.toApiJson() : this.expiredDateLte;
|
|
1067
1070
|
}
|
|
1071
|
+
if (typeof this.frequencies !== 'undefined') {
|
|
1072
|
+
toReturn['frequencies'] = this.frequencies;
|
|
1073
|
+
}
|
|
1068
1074
|
return toReturn;
|
|
1069
1075
|
}
|
|
1070
1076
|
}
|
|
@@ -14301,9 +14307,9 @@ class HostService {
|
|
|
14301
14307
|
return 'https://' + this.host;
|
|
14302
14308
|
}
|
|
14303
14309
|
}
|
|
14304
|
-
HostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14305
|
-
HostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14306
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14310
|
+
HostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: HostService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14311
|
+
HostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: HostService, providedIn: 'root' });
|
|
14312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: HostService, decorators: [{
|
|
14307
14313
|
type: Injectable,
|
|
14308
14314
|
args: [{ providedIn: 'root' }]
|
|
14309
14315
|
}] });
|
|
@@ -14334,9 +14340,9 @@ class BankReconciliationApiService {
|
|
|
14334
14340
|
.pipe(map(resp => ReconcilePayoutResponse.fromProto(resp)));
|
|
14335
14341
|
}
|
|
14336
14342
|
}
|
|
14337
|
-
BankReconciliationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14338
|
-
BankReconciliationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14339
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14343
|
+
BankReconciliationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: BankReconciliationApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14344
|
+
BankReconciliationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: BankReconciliationApiService, providedIn: 'root' });
|
|
14345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: BankReconciliationApiService, decorators: [{
|
|
14340
14346
|
type: Injectable,
|
|
14341
14347
|
args: [{ providedIn: 'root' }]
|
|
14342
14348
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14546,9 +14552,9 @@ class BillingApiService {
|
|
|
14546
14552
|
return this.http.post(this._host + "/billing.v1.Billing/StartRevRecTemplateBackfill", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14547
14553
|
}
|
|
14548
14554
|
}
|
|
14549
|
-
BillingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14550
|
-
BillingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14551
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14555
|
+
BillingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: BillingApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14556
|
+
BillingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: BillingApiService, providedIn: 'root' });
|
|
14557
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: BillingApiService, decorators: [{
|
|
14552
14558
|
type: Injectable,
|
|
14553
14559
|
args: [{ providedIn: 'root' }]
|
|
14554
14560
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14583,9 +14589,9 @@ class BundleApiService {
|
|
|
14583
14589
|
.pipe(map(resp => ListBundlesResponse.fromProto(resp)));
|
|
14584
14590
|
}
|
|
14585
14591
|
}
|
|
14586
|
-
BundleApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14587
|
-
BundleApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14592
|
+
BundleApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: BundleApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14593
|
+
BundleApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: BundleApiService, providedIn: 'root' });
|
|
14594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: BundleApiService, decorators: [{
|
|
14589
14595
|
type: Injectable,
|
|
14590
14596
|
args: [{ providedIn: 'root' }]
|
|
14591
14597
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14615,9 +14621,9 @@ class ContractDocumentApiService {
|
|
|
14615
14621
|
return this.http.post(this._host + "/billing.v1.ContractDocumentService/Delete", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14616
14622
|
}
|
|
14617
14623
|
}
|
|
14618
|
-
ContractDocumentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14619
|
-
ContractDocumentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14620
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14624
|
+
ContractDocumentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ContractDocumentApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14625
|
+
ContractDocumentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ContractDocumentApiService, providedIn: 'root' });
|
|
14626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ContractDocumentApiService, decorators: [{
|
|
14621
14627
|
type: Injectable,
|
|
14622
14628
|
args: [{ providedIn: 'root' }]
|
|
14623
14629
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14657,9 +14663,9 @@ class ContractApiService {
|
|
|
14657
14663
|
.pipe(map(resp => UpdateContractResponse.fromProto(resp)));
|
|
14658
14664
|
}
|
|
14659
14665
|
}
|
|
14660
|
-
ContractApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14661
|
-
ContractApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14662
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14666
|
+
ContractApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ContractApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14667
|
+
ContractApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ContractApiService, providedIn: 'root' });
|
|
14668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ContractApiService, decorators: [{
|
|
14663
14669
|
type: Injectable,
|
|
14664
14670
|
args: [{ providedIn: 'root' }]
|
|
14665
14671
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14689,9 +14695,9 @@ class CreditApiService {
|
|
|
14689
14695
|
.pipe(map(resp => GetBalanceResponse.fromProto(resp)));
|
|
14690
14696
|
}
|
|
14691
14697
|
}
|
|
14692
|
-
CreditApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14693
|
-
CreditApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14694
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14698
|
+
CreditApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: CreditApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14699
|
+
CreditApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: CreditApiService, providedIn: 'root' });
|
|
14700
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: CreditApiService, decorators: [{
|
|
14695
14701
|
type: Injectable,
|
|
14696
14702
|
args: [{ providedIn: 'root' }]
|
|
14697
14703
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14729,9 +14735,9 @@ class DiscountApiService {
|
|
|
14729
14735
|
return this.http.post(this._host + "/billing.v1.DiscountService/Expire", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14730
14736
|
}
|
|
14731
14737
|
}
|
|
14732
|
-
DiscountApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14733
|
-
DiscountApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14734
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14738
|
+
DiscountApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: DiscountApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14739
|
+
DiscountApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: DiscountApiService, providedIn: 'root' });
|
|
14740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: DiscountApiService, decorators: [{
|
|
14735
14741
|
type: Injectable,
|
|
14736
14742
|
args: [{ providedIn: 'root' }]
|
|
14737
14743
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14837,9 +14843,9 @@ class InvoiceApiService {
|
|
|
14837
14843
|
.pipe(map(resp => CreatePaymentLinkResponse.fromProto(resp)));
|
|
14838
14844
|
}
|
|
14839
14845
|
}
|
|
14840
|
-
InvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14841
|
-
InvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14846
|
+
InvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: InvoiceApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14847
|
+
InvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: InvoiceApiService, providedIn: 'root' });
|
|
14848
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: InvoiceApiService, decorators: [{
|
|
14843
14849
|
type: Injectable,
|
|
14844
14850
|
args: [{ providedIn: 'root' }]
|
|
14845
14851
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14909,9 +14915,9 @@ class InvoiceTemplateApiService {
|
|
|
14909
14915
|
.pipe(map(resp => UpdateTemplateDefaultTaxRatesResponse.fromProto(resp)));
|
|
14910
14916
|
}
|
|
14911
14917
|
}
|
|
14912
|
-
InvoiceTemplateApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14913
|
-
InvoiceTemplateApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14914
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14918
|
+
InvoiceTemplateApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: InvoiceTemplateApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14919
|
+
InvoiceTemplateApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: InvoiceTemplateApiService, providedIn: 'root' });
|
|
14920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: InvoiceTemplateApiService, decorators: [{
|
|
14915
14921
|
type: Injectable,
|
|
14916
14922
|
args: [{ providedIn: 'root' }]
|
|
14917
14923
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15070,9 +15076,9 @@ class MerchantApiService {
|
|
|
15070
15076
|
.pipe(map(resp => GetRetailAccountBalanceResponse.fromProto(resp)));
|
|
15071
15077
|
}
|
|
15072
15078
|
}
|
|
15073
|
-
MerchantApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15074
|
-
MerchantApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15075
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15079
|
+
MerchantApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: MerchantApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15080
|
+
MerchantApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: MerchantApiService, providedIn: 'root' });
|
|
15081
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: MerchantApiService, decorators: [{
|
|
15076
15082
|
type: Injectable,
|
|
15077
15083
|
args: [{ providedIn: 'root' }]
|
|
15078
15084
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15106,9 +15112,9 @@ class PaymentMethodApiService {
|
|
|
15106
15112
|
return this.http.post(this._host + "/billing.v1.PaymentMethodService/SetDefaultPaymentMethod", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
15107
15113
|
}
|
|
15108
15114
|
}
|
|
15109
|
-
PaymentMethodApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15110
|
-
PaymentMethodApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15111
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15115
|
+
PaymentMethodApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PaymentMethodApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15116
|
+
PaymentMethodApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PaymentMethodApiService, providedIn: 'root' });
|
|
15117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PaymentMethodApiService, decorators: [{
|
|
15112
15118
|
type: Injectable,
|
|
15113
15119
|
args: [{ providedIn: 'root' }]
|
|
15114
15120
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15210,9 +15216,9 @@ class PaymentApiService {
|
|
|
15210
15216
|
.pipe(map(resp => RefundRetailPaymentResponse.fromProto(resp)));
|
|
15211
15217
|
}
|
|
15212
15218
|
}
|
|
15213
|
-
PaymentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15214
|
-
PaymentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15215
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15219
|
+
PaymentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PaymentApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15220
|
+
PaymentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PaymentApiService, providedIn: 'root' });
|
|
15221
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PaymentApiService, decorators: [{
|
|
15216
15222
|
type: Injectable,
|
|
15217
15223
|
args: [{ providedIn: 'root' }]
|
|
15218
15224
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15278,9 +15284,9 @@ class PricingApiService {
|
|
|
15278
15284
|
return this.http.post(this._host + "/billing.v1.PricingService/UpsertWholesale", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
15279
15285
|
}
|
|
15280
15286
|
}
|
|
15281
|
-
PricingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15282
|
-
PricingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15283
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15287
|
+
PricingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PricingApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15288
|
+
PricingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PricingApiService, providedIn: 'root' });
|
|
15289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PricingApiService, decorators: [{
|
|
15284
15290
|
type: Injectable,
|
|
15285
15291
|
args: [{ providedIn: 'root' }]
|
|
15286
15292
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15313,9 +15319,9 @@ class ProductApiService {
|
|
|
15313
15319
|
return this.http.post(this._host + "/billing.v1.ProductService/Delete", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
15314
15320
|
}
|
|
15315
15321
|
}
|
|
15316
|
-
ProductApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15317
|
-
ProductApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15318
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15322
|
+
ProductApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ProductApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15323
|
+
ProductApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ProductApiService, providedIn: 'root' });
|
|
15324
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ProductApiService, decorators: [{
|
|
15319
15325
|
type: Injectable,
|
|
15320
15326
|
args: [{ providedIn: 'root' }]
|
|
15321
15327
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15346,9 +15352,9 @@ class ProductSummaryApiService {
|
|
|
15346
15352
|
.pipe(map(resp => ListSubscriptionRetentionBySKUResponse.fromProto(resp)));
|
|
15347
15353
|
}
|
|
15348
15354
|
}
|
|
15349
|
-
ProductSummaryApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15350
|
-
ProductSummaryApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15351
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15355
|
+
ProductSummaryApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ProductSummaryApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15356
|
+
ProductSummaryApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ProductSummaryApiService, providedIn: 'root' });
|
|
15357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ProductSummaryApiService, decorators: [{
|
|
15352
15358
|
type: Injectable,
|
|
15353
15359
|
args: [{ providedIn: 'root' }]
|
|
15354
15360
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15392,9 +15398,9 @@ class PurchaseApiService {
|
|
|
15392
15398
|
return this.http.post(this._host + "/billing.v1.PurchaseService/Void", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
15393
15399
|
}
|
|
15394
15400
|
}
|
|
15395
|
-
PurchaseApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15396
|
-
PurchaseApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15397
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15401
|
+
PurchaseApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PurchaseApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15402
|
+
PurchaseApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PurchaseApiService, providedIn: 'root' });
|
|
15403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: PurchaseApiService, decorators: [{
|
|
15398
15404
|
type: Injectable,
|
|
15399
15405
|
args: [{ providedIn: 'root' }]
|
|
15400
15406
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15439,9 +15445,9 @@ class RecurringInvoiceApiService {
|
|
|
15439
15445
|
return this.http.post(this._host + "/billing.v1.RecurringInvoiceService/DeleteRecurringInvoice", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
15440
15446
|
}
|
|
15441
15447
|
}
|
|
15442
|
-
RecurringInvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15443
|
-
RecurringInvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15444
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15448
|
+
RecurringInvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: RecurringInvoiceApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15449
|
+
RecurringInvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: RecurringInvoiceApiService, providedIn: 'root' });
|
|
15450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: RecurringInvoiceApiService, decorators: [{
|
|
15445
15451
|
type: Injectable,
|
|
15446
15452
|
args: [{ providedIn: 'root' }]
|
|
15447
15453
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15471,9 +15477,9 @@ class RefundApiService {
|
|
|
15471
15477
|
.pipe(map(resp => ListRefundsResponse.fromProto(resp)));
|
|
15472
15478
|
}
|
|
15473
15479
|
}
|
|
15474
|
-
RefundApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15475
|
-
RefundApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15476
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15480
|
+
RefundApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: RefundApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15481
|
+
RefundApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: RefundApiService, providedIn: 'root' });
|
|
15482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: RefundApiService, decorators: [{
|
|
15477
15483
|
type: Injectable,
|
|
15478
15484
|
args: [{ providedIn: 'root' }]
|
|
15479
15485
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15503,9 +15509,9 @@ class RetailCustomerConfigurationApiService {
|
|
|
15503
15509
|
return this.http.post(this._host + "/billing.v1.RetailCustomerConfigurationService/Upsert", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
15504
15510
|
}
|
|
15505
15511
|
}
|
|
15506
|
-
RetailCustomerConfigurationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15507
|
-
RetailCustomerConfigurationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15508
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15512
|
+
RetailCustomerConfigurationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: RetailCustomerConfigurationApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15513
|
+
RetailCustomerConfigurationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: RetailCustomerConfigurationApiService, providedIn: 'root' });
|
|
15514
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: RetailCustomerConfigurationApiService, decorators: [{
|
|
15509
15515
|
type: Injectable,
|
|
15510
15516
|
args: [{ providedIn: 'root' }]
|
|
15511
15517
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15535,9 +15541,9 @@ class SalesCreditNoteApiService {
|
|
|
15535
15541
|
.pipe(map(resp => ListSalesCreditNoteResponse.fromProto(resp)));
|
|
15536
15542
|
}
|
|
15537
15543
|
}
|
|
15538
|
-
SalesCreditNoteApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15539
|
-
SalesCreditNoteApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15540
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15544
|
+
SalesCreditNoteApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: SalesCreditNoteApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15545
|
+
SalesCreditNoteApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: SalesCreditNoteApiService, providedIn: 'root' });
|
|
15546
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: SalesCreditNoteApiService, decorators: [{
|
|
15541
15547
|
type: Injectable,
|
|
15542
15548
|
args: [{ providedIn: 'root' }]
|
|
15543
15549
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15572,9 +15578,9 @@ class SalesInvoiceApiService {
|
|
|
15572
15578
|
.pipe(map(resp => GetSalesInvoiceResponse.fromProto(resp)));
|
|
15573
15579
|
}
|
|
15574
15580
|
}
|
|
15575
|
-
SalesInvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15576
|
-
SalesInvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15581
|
+
SalesInvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: SalesInvoiceApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15582
|
+
SalesInvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: SalesInvoiceApiService, providedIn: 'root' });
|
|
15583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: SalesInvoiceApiService, decorators: [{
|
|
15578
15584
|
type: Injectable,
|
|
15579
15585
|
args: [{ providedIn: 'root' }]
|
|
15580
15586
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15622,9 +15628,9 @@ class TaxApiService {
|
|
|
15622
15628
|
return this.http.post(this._host + "/billing.v1.TaxService/Archive", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
15623
15629
|
}
|
|
15624
15630
|
}
|
|
15625
|
-
TaxApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15626
|
-
TaxApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15631
|
+
TaxApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: TaxApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15632
|
+
TaxApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: TaxApiService, providedIn: 'root' });
|
|
15633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: TaxApiService, decorators: [{
|
|
15628
15634
|
type: Injectable,
|
|
15629
15635
|
args: [{ providedIn: 'root' }]
|
|
15630
15636
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -15655,9 +15661,9 @@ class VendorApiService {
|
|
|
15655
15661
|
.pipe(map(resp => GetRevenueStatsResponse.fromProto(resp)));
|
|
15656
15662
|
}
|
|
15657
15663
|
}
|
|
15658
|
-
VendorApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15659
|
-
VendorApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15660
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15664
|
+
VendorApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: VendorApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15665
|
+
VendorApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: VendorApiService, providedIn: 'root' });
|
|
15666
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: VendorApiService, decorators: [{
|
|
15661
15667
|
type: Injectable,
|
|
15662
15668
|
args: [{ providedIn: 'root' }]
|
|
15663
15669
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|