@vendasta/billing 9.7.0 → 10.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/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/payment.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/index.mjs +2 -2
- package/esm2020/lib/_internal/objects/payment.mjs +88 -45
- package/esm2020/lib/_internal/payment-method.api.service.mjs +3 -3
- package/esm2020/lib/_internal/payment.api.service.mjs +10 -5
- 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 +165 -117
- package/fesm2015/vendasta-billing.mjs.map +1 -1
- package/fesm2020/vendasta-billing.mjs +165 -117
- package/fesm2020/vendasta-billing.mjs.map +1 -1
- package/{vendasta-billing.d.ts → index.d.ts} +0 -0
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/interfaces/payment.interface.d.ts +18 -11
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/objects/payment.d.ts +27 -14
- package/lib/_internal/payment.api.service.d.ts +3 -2
- package/package.json +5 -5
|
@@ -6626,6 +6626,50 @@ class Dispute {
|
|
|
6626
6626
|
return toReturn;
|
|
6627
6627
|
}
|
|
6628
6628
|
}
|
|
6629
|
+
class SubmitEvidenceRequestDisputeEvidence {
|
|
6630
|
+
constructor(kwargs) {
|
|
6631
|
+
if (!kwargs) {
|
|
6632
|
+
return;
|
|
6633
|
+
}
|
|
6634
|
+
Object.assign(this, kwargs);
|
|
6635
|
+
}
|
|
6636
|
+
static fromProto(proto) {
|
|
6637
|
+
let m = new SubmitEvidenceRequestDisputeEvidence();
|
|
6638
|
+
m = Object.assign(m, proto);
|
|
6639
|
+
return m;
|
|
6640
|
+
}
|
|
6641
|
+
toApiJson() {
|
|
6642
|
+
const toReturn = {};
|
|
6643
|
+
if (typeof this.billingAddress !== 'undefined') {
|
|
6644
|
+
toReturn['billingAddress'] = this.billingAddress;
|
|
6645
|
+
}
|
|
6646
|
+
if (typeof this.customerEmailAddress !== 'undefined') {
|
|
6647
|
+
toReturn['customerEmailAddress'] = this.customerEmailAddress;
|
|
6648
|
+
}
|
|
6649
|
+
if (typeof this.customerName !== 'undefined') {
|
|
6650
|
+
toReturn['customerName'] = this.customerName;
|
|
6651
|
+
}
|
|
6652
|
+
if (typeof this.productDescription !== 'undefined') {
|
|
6653
|
+
toReturn['productDescription'] = this.productDescription;
|
|
6654
|
+
}
|
|
6655
|
+
if (typeof this.customerSignatureFileId !== 'undefined') {
|
|
6656
|
+
toReturn['customerSignatureFileId'] = this.customerSignatureFileId;
|
|
6657
|
+
}
|
|
6658
|
+
if (typeof this.customerCommunicationFileId !== 'undefined') {
|
|
6659
|
+
toReturn['customerCommunicationFileId'] = this.customerCommunicationFileId;
|
|
6660
|
+
}
|
|
6661
|
+
if (typeof this.receiptFileId !== 'undefined') {
|
|
6662
|
+
toReturn['receiptFileId'] = this.receiptFileId;
|
|
6663
|
+
}
|
|
6664
|
+
if (typeof this.shippingDocumentationFileId !== 'undefined') {
|
|
6665
|
+
toReturn['shippingDocumentationFileId'] = this.shippingDocumentationFileId;
|
|
6666
|
+
}
|
|
6667
|
+
if (typeof this.uncategorizedFileId !== 'undefined') {
|
|
6668
|
+
toReturn['uncategorizedFileId'] = this.uncategorizedFileId;
|
|
6669
|
+
}
|
|
6670
|
+
return toReturn;
|
|
6671
|
+
}
|
|
6672
|
+
}
|
|
6629
6673
|
class DisputeEvidence {
|
|
6630
6674
|
constructor(kwargs) {
|
|
6631
6675
|
if (!kwargs) {
|
|
@@ -6685,50 +6729,6 @@ class DisputeEvidence {
|
|
|
6685
6729
|
return toReturn;
|
|
6686
6730
|
}
|
|
6687
6731
|
}
|
|
6688
|
-
class SubmitEvidenceRequestDisputeEvidence {
|
|
6689
|
-
constructor(kwargs) {
|
|
6690
|
-
if (!kwargs) {
|
|
6691
|
-
return;
|
|
6692
|
-
}
|
|
6693
|
-
Object.assign(this, kwargs);
|
|
6694
|
-
}
|
|
6695
|
-
static fromProto(proto) {
|
|
6696
|
-
let m = new SubmitEvidenceRequestDisputeEvidence();
|
|
6697
|
-
m = Object.assign(m, proto);
|
|
6698
|
-
return m;
|
|
6699
|
-
}
|
|
6700
|
-
toApiJson() {
|
|
6701
|
-
const toReturn = {};
|
|
6702
|
-
if (typeof this.billingAddress !== 'undefined') {
|
|
6703
|
-
toReturn['billingAddress'] = this.billingAddress;
|
|
6704
|
-
}
|
|
6705
|
-
if (typeof this.customerEmailAddress !== 'undefined') {
|
|
6706
|
-
toReturn['customerEmailAddress'] = this.customerEmailAddress;
|
|
6707
|
-
}
|
|
6708
|
-
if (typeof this.customerName !== 'undefined') {
|
|
6709
|
-
toReturn['customerName'] = this.customerName;
|
|
6710
|
-
}
|
|
6711
|
-
if (typeof this.productDescription !== 'undefined') {
|
|
6712
|
-
toReturn['productDescription'] = this.productDescription;
|
|
6713
|
-
}
|
|
6714
|
-
if (typeof this.customerSignatureFileId !== 'undefined') {
|
|
6715
|
-
toReturn['customerSignatureFileId'] = this.customerSignatureFileId;
|
|
6716
|
-
}
|
|
6717
|
-
if (typeof this.customerCommunicationFileId !== 'undefined') {
|
|
6718
|
-
toReturn['customerCommunicationFileId'] = this.customerCommunicationFileId;
|
|
6719
|
-
}
|
|
6720
|
-
if (typeof this.receiptFileId !== 'undefined') {
|
|
6721
|
-
toReturn['receiptFileId'] = this.receiptFileId;
|
|
6722
|
-
}
|
|
6723
|
-
if (typeof this.shippingDocumentationFileId !== 'undefined') {
|
|
6724
|
-
toReturn['shippingDocumentationFileId'] = this.shippingDocumentationFileId;
|
|
6725
|
-
}
|
|
6726
|
-
if (typeof this.uncategorizedFileId !== 'undefined') {
|
|
6727
|
-
toReturn['uncategorizedFileId'] = this.uncategorizedFileId;
|
|
6728
|
-
}
|
|
6729
|
-
return toReturn;
|
|
6730
|
-
}
|
|
6731
|
-
}
|
|
6732
6732
|
class DisputeEvidenceDetails {
|
|
6733
6733
|
constructor(kwargs) {
|
|
6734
6734
|
if (!kwargs) {
|
|
@@ -6931,6 +6931,49 @@ class GetRetailPaymentResponse {
|
|
|
6931
6931
|
return toReturn;
|
|
6932
6932
|
}
|
|
6933
6933
|
}
|
|
6934
|
+
class GetWholesaleProviderPublicKeyRequest {
|
|
6935
|
+
constructor(kwargs) {
|
|
6936
|
+
if (!kwargs) {
|
|
6937
|
+
return;
|
|
6938
|
+
}
|
|
6939
|
+
Object.assign(this, kwargs);
|
|
6940
|
+
}
|
|
6941
|
+
static fromProto(proto) {
|
|
6942
|
+
let m = new GetWholesaleProviderPublicKeyRequest();
|
|
6943
|
+
m = Object.assign(m, proto);
|
|
6944
|
+
return m;
|
|
6945
|
+
}
|
|
6946
|
+
toApiJson() {
|
|
6947
|
+
const toReturn = {};
|
|
6948
|
+
if (typeof this.merchantId !== 'undefined') {
|
|
6949
|
+
toReturn['merchantId'] = this.merchantId;
|
|
6950
|
+
}
|
|
6951
|
+
if (typeof this.countryCode !== 'undefined') {
|
|
6952
|
+
toReturn['countryCode'] = this.countryCode;
|
|
6953
|
+
}
|
|
6954
|
+
return toReturn;
|
|
6955
|
+
}
|
|
6956
|
+
}
|
|
6957
|
+
class GetWholesaleProviderPublicKeyResponse {
|
|
6958
|
+
constructor(kwargs) {
|
|
6959
|
+
if (!kwargs) {
|
|
6960
|
+
return;
|
|
6961
|
+
}
|
|
6962
|
+
Object.assign(this, kwargs);
|
|
6963
|
+
}
|
|
6964
|
+
static fromProto(proto) {
|
|
6965
|
+
let m = new GetWholesaleProviderPublicKeyResponse();
|
|
6966
|
+
m = Object.assign(m, proto);
|
|
6967
|
+
return m;
|
|
6968
|
+
}
|
|
6969
|
+
toApiJson() {
|
|
6970
|
+
const toReturn = {};
|
|
6971
|
+
if (typeof this.publcApiKey !== 'undefined') {
|
|
6972
|
+
toReturn['publcApiKey'] = this.publcApiKey;
|
|
6973
|
+
}
|
|
6974
|
+
return toReturn;
|
|
6975
|
+
}
|
|
6976
|
+
}
|
|
6934
6977
|
class ListPaymentRequestListPaymentFilters {
|
|
6935
6978
|
constructor(kwargs) {
|
|
6936
6979
|
if (!kwargs) {
|
|
@@ -13560,9 +13603,9 @@ class HostService {
|
|
|
13560
13603
|
return 'https://' + this.host;
|
|
13561
13604
|
}
|
|
13562
13605
|
}
|
|
13563
|
-
HostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13564
|
-
HostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13565
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13606
|
+
HostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: HostService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13607
|
+
HostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: HostService, providedIn: 'root' });
|
|
13608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: HostService, decorators: [{
|
|
13566
13609
|
type: Injectable,
|
|
13567
13610
|
args: [{ providedIn: 'root' }]
|
|
13568
13611
|
}] });
|
|
@@ -13593,9 +13636,9 @@ class BankReconciliationApiService {
|
|
|
13593
13636
|
.pipe(map(resp => ReconcilePayoutResponse.fromProto(resp)));
|
|
13594
13637
|
}
|
|
13595
13638
|
}
|
|
13596
|
-
BankReconciliationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13597
|
-
BankReconciliationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13598
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13639
|
+
BankReconciliationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BankReconciliationApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13640
|
+
BankReconciliationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BankReconciliationApiService, providedIn: 'root' });
|
|
13641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BankReconciliationApiService, decorators: [{
|
|
13599
13642
|
type: Injectable,
|
|
13600
13643
|
args: [{ providedIn: 'root' }]
|
|
13601
13644
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -13796,9 +13839,9 @@ class BillingApiService {
|
|
|
13796
13839
|
return this.http.post(this._host + "/billing.v1.Billing/StartRevRecTemplateBackfill", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
13797
13840
|
}
|
|
13798
13841
|
}
|
|
13799
|
-
BillingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13800
|
-
BillingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13842
|
+
BillingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BillingApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13843
|
+
BillingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BillingApiService, providedIn: 'root' });
|
|
13844
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BillingApiService, decorators: [{
|
|
13802
13845
|
type: Injectable,
|
|
13803
13846
|
args: [{ providedIn: 'root' }]
|
|
13804
13847
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -13833,9 +13876,9 @@ class BundleApiService {
|
|
|
13833
13876
|
.pipe(map(resp => ListBundlesResponse.fromProto(resp)));
|
|
13834
13877
|
}
|
|
13835
13878
|
}
|
|
13836
|
-
BundleApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13837
|
-
BundleApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13838
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13879
|
+
BundleApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BundleApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13880
|
+
BundleApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BundleApiService, providedIn: 'root' });
|
|
13881
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BundleApiService, decorators: [{
|
|
13839
13882
|
type: Injectable,
|
|
13840
13883
|
args: [{ providedIn: 'root' }]
|
|
13841
13884
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -13865,9 +13908,9 @@ class ContractDocumentApiService {
|
|
|
13865
13908
|
return this.http.post(this._host + "/billing.v1.ContractDocumentService/Delete", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
13866
13909
|
}
|
|
13867
13910
|
}
|
|
13868
|
-
ContractDocumentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13869
|
-
ContractDocumentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13870
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13911
|
+
ContractDocumentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ContractDocumentApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13912
|
+
ContractDocumentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ContractDocumentApiService, providedIn: 'root' });
|
|
13913
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ContractDocumentApiService, decorators: [{
|
|
13871
13914
|
type: Injectable,
|
|
13872
13915
|
args: [{ providedIn: 'root' }]
|
|
13873
13916
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -13907,9 +13950,9 @@ class ContractApiService {
|
|
|
13907
13950
|
.pipe(map(resp => UpdateContractResponse.fromProto(resp)));
|
|
13908
13951
|
}
|
|
13909
13952
|
}
|
|
13910
|
-
ContractApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13911
|
-
ContractApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13912
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13953
|
+
ContractApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ContractApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13954
|
+
ContractApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ContractApiService, providedIn: 'root' });
|
|
13955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ContractApiService, decorators: [{
|
|
13913
13956
|
type: Injectable,
|
|
13914
13957
|
args: [{ providedIn: 'root' }]
|
|
13915
13958
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -13939,9 +13982,9 @@ class CreditApiService {
|
|
|
13939
13982
|
.pipe(map(resp => GetBalanceResponse.fromProto(resp)));
|
|
13940
13983
|
}
|
|
13941
13984
|
}
|
|
13942
|
-
CreditApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13943
|
-
CreditApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13944
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13985
|
+
CreditApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: CreditApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13986
|
+
CreditApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: CreditApiService, providedIn: 'root' });
|
|
13987
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: CreditApiService, decorators: [{
|
|
13945
13988
|
type: Injectable,
|
|
13946
13989
|
args: [{ providedIn: 'root' }]
|
|
13947
13990
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -13979,9 +14022,9 @@ class DiscountApiService {
|
|
|
13979
14022
|
return this.http.post(this._host + "/billing.v1.DiscountService/Expire", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
13980
14023
|
}
|
|
13981
14024
|
}
|
|
13982
|
-
DiscountApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13983
|
-
DiscountApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13984
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14025
|
+
DiscountApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DiscountApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14026
|
+
DiscountApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DiscountApiService, providedIn: 'root' });
|
|
14027
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DiscountApiService, decorators: [{
|
|
13985
14028
|
type: Injectable,
|
|
13986
14029
|
args: [{ providedIn: 'root' }]
|
|
13987
14030
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14087,9 +14130,9 @@ class InvoiceApiService {
|
|
|
14087
14130
|
.pipe(map(resp => CreatePaymentLinkResponse.fromProto(resp)));
|
|
14088
14131
|
}
|
|
14089
14132
|
}
|
|
14090
|
-
InvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14091
|
-
InvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14092
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14133
|
+
InvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: InvoiceApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14134
|
+
InvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: InvoiceApiService, providedIn: 'root' });
|
|
14135
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: InvoiceApiService, decorators: [{
|
|
14093
14136
|
type: Injectable,
|
|
14094
14137
|
args: [{ providedIn: 'root' }]
|
|
14095
14138
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14159,9 +14202,9 @@ class InvoiceTemplateApiService {
|
|
|
14159
14202
|
.pipe(map(resp => UpdateTemplateDefaultTaxRatesResponse.fromProto(resp)));
|
|
14160
14203
|
}
|
|
14161
14204
|
}
|
|
14162
|
-
InvoiceTemplateApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14163
|
-
InvoiceTemplateApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14164
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14205
|
+
InvoiceTemplateApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: InvoiceTemplateApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14206
|
+
InvoiceTemplateApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: InvoiceTemplateApiService, providedIn: 'root' });
|
|
14207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: InvoiceTemplateApiService, decorators: [{
|
|
14165
14208
|
type: Injectable,
|
|
14166
14209
|
args: [{ providedIn: 'root' }]
|
|
14167
14210
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14315,9 +14358,9 @@ class MerchantApiService {
|
|
|
14315
14358
|
.pipe(map(resp => MerchantServicesReportRun.fromProto(resp)));
|
|
14316
14359
|
}
|
|
14317
14360
|
}
|
|
14318
|
-
MerchantApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14319
|
-
MerchantApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14320
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14361
|
+
MerchantApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: MerchantApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14362
|
+
MerchantApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: MerchantApiService, providedIn: 'root' });
|
|
14363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: MerchantApiService, decorators: [{
|
|
14321
14364
|
type: Injectable,
|
|
14322
14365
|
args: [{ providedIn: 'root' }]
|
|
14323
14366
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14351,9 +14394,9 @@ class PaymentMethodApiService {
|
|
|
14351
14394
|
return this.http.post(this._host + "/billing.v1.PaymentMethodService/SetDefaultPaymentMethod", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14352
14395
|
}
|
|
14353
14396
|
}
|
|
14354
|
-
PaymentMethodApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14355
|
-
PaymentMethodApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14356
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14397
|
+
PaymentMethodApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PaymentMethodApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14398
|
+
PaymentMethodApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PaymentMethodApiService, providedIn: 'root' });
|
|
14399
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PaymentMethodApiService, decorators: [{
|
|
14357
14400
|
type: Injectable,
|
|
14358
14401
|
args: [{ providedIn: 'root' }]
|
|
14359
14402
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14439,10 +14482,15 @@ class PaymentApiService {
|
|
|
14439
14482
|
const request = (r.toApiJson) ? r : new SubmitEvidenceRequest(r);
|
|
14440
14483
|
return this.http.post(this._host + "/billing.v1.PaymentService/SubmitEvidence", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14441
14484
|
}
|
|
14485
|
+
getWholesaleProviderPublicKey(r) {
|
|
14486
|
+
const request = (r.toApiJson) ? r : new GetWholesaleProviderPublicKeyRequest(r);
|
|
14487
|
+
return this.http.post(this._host + "/billing.v1.PaymentService/GetWholesaleProviderPublicKey", request.toApiJson(), this.apiOptions())
|
|
14488
|
+
.pipe(map(resp => GetWholesaleProviderPublicKeyResponse.fromProto(resp)));
|
|
14489
|
+
}
|
|
14442
14490
|
}
|
|
14443
|
-
PaymentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14444
|
-
PaymentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14491
|
+
PaymentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PaymentApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14492
|
+
PaymentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PaymentApiService, providedIn: 'root' });
|
|
14493
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PaymentApiService, decorators: [{
|
|
14446
14494
|
type: Injectable,
|
|
14447
14495
|
args: [{ providedIn: 'root' }]
|
|
14448
14496
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14508,9 +14556,9 @@ class PricingApiService {
|
|
|
14508
14556
|
return this.http.post(this._host + "/billing.v1.PricingService/UpsertWholesale", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14509
14557
|
}
|
|
14510
14558
|
}
|
|
14511
|
-
PricingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14512
|
-
PricingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14513
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14559
|
+
PricingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PricingApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14560
|
+
PricingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PricingApiService, providedIn: 'root' });
|
|
14561
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PricingApiService, decorators: [{
|
|
14514
14562
|
type: Injectable,
|
|
14515
14563
|
args: [{ providedIn: 'root' }]
|
|
14516
14564
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14543,9 +14591,9 @@ class ProductApiService {
|
|
|
14543
14591
|
return this.http.post(this._host + "/billing.v1.ProductService/Delete", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14544
14592
|
}
|
|
14545
14593
|
}
|
|
14546
|
-
ProductApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14547
|
-
ProductApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14548
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14594
|
+
ProductApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ProductApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14595
|
+
ProductApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ProductApiService, providedIn: 'root' });
|
|
14596
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ProductApiService, decorators: [{
|
|
14549
14597
|
type: Injectable,
|
|
14550
14598
|
args: [{ providedIn: 'root' }]
|
|
14551
14599
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14576,9 +14624,9 @@ class ProductSummaryApiService {
|
|
|
14576
14624
|
.pipe(map(resp => ListSubscriptionRetentionBySKUResponse.fromProto(resp)));
|
|
14577
14625
|
}
|
|
14578
14626
|
}
|
|
14579
|
-
ProductSummaryApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14580
|
-
ProductSummaryApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14581
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14627
|
+
ProductSummaryApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ProductSummaryApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14628
|
+
ProductSummaryApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ProductSummaryApiService, providedIn: 'root' });
|
|
14629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ProductSummaryApiService, decorators: [{
|
|
14582
14630
|
type: Injectable,
|
|
14583
14631
|
args: [{ providedIn: 'root' }]
|
|
14584
14632
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14622,9 +14670,9 @@ class PurchaseApiService {
|
|
|
14622
14670
|
return this.http.post(this._host + "/billing.v1.PurchaseService/Void", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14623
14671
|
}
|
|
14624
14672
|
}
|
|
14625
|
-
PurchaseApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14626
|
-
PurchaseApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14673
|
+
PurchaseApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PurchaseApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14674
|
+
PurchaseApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PurchaseApiService, providedIn: 'root' });
|
|
14675
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: PurchaseApiService, decorators: [{
|
|
14628
14676
|
type: Injectable,
|
|
14629
14677
|
args: [{ providedIn: 'root' }]
|
|
14630
14678
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14669,9 +14717,9 @@ class RecurringInvoiceApiService {
|
|
|
14669
14717
|
return this.http.post(this._host + "/billing.v1.RecurringInvoiceService/DeleteRecurringInvoice", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14670
14718
|
}
|
|
14671
14719
|
}
|
|
14672
|
-
RecurringInvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14673
|
-
RecurringInvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14674
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14720
|
+
RecurringInvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: RecurringInvoiceApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14721
|
+
RecurringInvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: RecurringInvoiceApiService, providedIn: 'root' });
|
|
14722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: RecurringInvoiceApiService, decorators: [{
|
|
14675
14723
|
type: Injectable,
|
|
14676
14724
|
args: [{ providedIn: 'root' }]
|
|
14677
14725
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14701,9 +14749,9 @@ class RefundApiService {
|
|
|
14701
14749
|
.pipe(map(resp => ListRefundsResponse.fromProto(resp)));
|
|
14702
14750
|
}
|
|
14703
14751
|
}
|
|
14704
|
-
RefundApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14705
|
-
RefundApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14706
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14752
|
+
RefundApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: RefundApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14753
|
+
RefundApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: RefundApiService, providedIn: 'root' });
|
|
14754
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: RefundApiService, decorators: [{
|
|
14707
14755
|
type: Injectable,
|
|
14708
14756
|
args: [{ providedIn: 'root' }]
|
|
14709
14757
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14733,9 +14781,9 @@ class RetailCustomerConfigurationApiService {
|
|
|
14733
14781
|
return this.http.post(this._host + "/billing.v1.RetailCustomerConfigurationService/Upsert", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14734
14782
|
}
|
|
14735
14783
|
}
|
|
14736
|
-
RetailCustomerConfigurationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14737
|
-
RetailCustomerConfigurationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14738
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14784
|
+
RetailCustomerConfigurationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: RetailCustomerConfigurationApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14785
|
+
RetailCustomerConfigurationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: RetailCustomerConfigurationApiService, providedIn: 'root' });
|
|
14786
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: RetailCustomerConfigurationApiService, decorators: [{
|
|
14739
14787
|
type: Injectable,
|
|
14740
14788
|
args: [{ providedIn: 'root' }]
|
|
14741
14789
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14765,9 +14813,9 @@ class SalesCreditNoteApiService {
|
|
|
14765
14813
|
.pipe(map(resp => ListSalesCreditNoteResponse.fromProto(resp)));
|
|
14766
14814
|
}
|
|
14767
14815
|
}
|
|
14768
|
-
SalesCreditNoteApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14769
|
-
SalesCreditNoteApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14816
|
+
SalesCreditNoteApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SalesCreditNoteApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14817
|
+
SalesCreditNoteApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SalesCreditNoteApiService, providedIn: 'root' });
|
|
14818
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SalesCreditNoteApiService, decorators: [{
|
|
14771
14819
|
type: Injectable,
|
|
14772
14820
|
args: [{ providedIn: 'root' }]
|
|
14773
14821
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14802,9 +14850,9 @@ class SalesInvoiceApiService {
|
|
|
14802
14850
|
.pipe(map(resp => GetSalesInvoiceResponse.fromProto(resp)));
|
|
14803
14851
|
}
|
|
14804
14852
|
}
|
|
14805
|
-
SalesInvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14806
|
-
SalesInvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14807
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14853
|
+
SalesInvoiceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SalesInvoiceApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14854
|
+
SalesInvoiceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SalesInvoiceApiService, providedIn: 'root' });
|
|
14855
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SalesInvoiceApiService, decorators: [{
|
|
14808
14856
|
type: Injectable,
|
|
14809
14857
|
args: [{ providedIn: 'root' }]
|
|
14810
14858
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14852,9 +14900,9 @@ class TaxApiService {
|
|
|
14852
14900
|
return this.http.post(this._host + "/billing.v1.TaxService/Archive", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
14853
14901
|
}
|
|
14854
14902
|
}
|
|
14855
|
-
TaxApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14856
|
-
TaxApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14903
|
+
TaxApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: TaxApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14904
|
+
TaxApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: TaxApiService, providedIn: 'root' });
|
|
14905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: TaxApiService, decorators: [{
|
|
14858
14906
|
type: Injectable,
|
|
14859
14907
|
args: [{ providedIn: 'root' }]
|
|
14860
14908
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14885,9 +14933,9 @@ class VendorApiService {
|
|
|
14885
14933
|
.pipe(map(resp => GetRevenueStatsResponse.fromProto(resp)));
|
|
14886
14934
|
}
|
|
14887
14935
|
}
|
|
14888
|
-
VendorApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14889
|
-
VendorApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14890
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14936
|
+
VendorApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: VendorApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14937
|
+
VendorApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: VendorApiService, providedIn: 'root' });
|
|
14938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: VendorApiService, decorators: [{
|
|
14891
14939
|
type: Injectable,
|
|
14892
14940
|
args: [{ providedIn: 'root' }]
|
|
14893
14941
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -14898,5 +14946,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.0", ngImpor
|
|
|
14898
14946
|
* Generated bundle index. Do not edit.
|
|
14899
14947
|
*/
|
|
14900
14948
|
|
|
14901
|
-
export { Access, AddBundleRequest, AddBundleResponse, AddCreditRequest, AddLineItemRequest, AddLineItemResponse, AddTemplateBundleRequest, AddTemplateBundleResponse, AddTemplateLineItemRequest, AddTemplateLineItemResponse, AlignmentSubscription, AppliedBundle, AppliedBundleItem, AppliedCredit, AppliedDiscount, AppliedTaxRate, ArchiveTaxRequest, Balance, BankAccount, BankReconciliationApiService, BillItemRequest, BillMultipleItemsRequest, BillMultipleItemsResponse, BillableItem, BillableItemCustomerAddress, BillingApiService, BillingStrategy, Bundle, BundleApiService, BundleItem, BundleItemPrice, BundlePricing, BundlePricingPriceAndFrequency, CalculateTaxRequest, CalculateTaxResponse, CanBillItemRequest, CanCreateSubscriptionsRequest, CanCreateSubscriptionsRequestSkusEntry, CanCreateSubscriptionsRequestSubscriptionItem, CanCreateSubscriptionsResponse, CardType, ChangeCustomUnitPriceRequest, ChangeFrequencyRequest, ChangeRenewalDateRequest, ChargeInvoiceRequest, ChargeSalesInvoiceRequest, CloseRetailDisputeRequest, CollectionMethod, Commitment, ComponentPricing, ConfigureRetailPaymentProviderRequest, ConfigureRetailPaymentProviderResponse, ConfirmRetailPaymentRequest, ConnectStripeAccountRequest, ConnectStripeAccountResponse, Contract, ContractApiService, ContractDocument, ContractDocumentApiService, ContractSubscriptionStatus, CreateContractRequest, CreateContractResponse, CreateDiscountRequest, CreateInvoiceRequest, CreateInvoiceResponse, CreateMerchantRequest, CreateMerchantRequestIncludeInFinancialRecords, CreateMerchantServicesReportRun, CreateMeteredComponentRequest, CreatePaymentCardRequest, CreatePaymentLinkRequest, CreatePaymentLinkResponse, CreatePricingPlanProductRequest, CreatePricingPlanProductRequestPricingEntry, CreatePricingPlanProductResponse, CreatePricingPlanRequest, CreatePricingPlanResponse, CreateProductRequest, CreateRefundRequest, CreateSalesCreditNoteRequest, CreateStripeExternalAccountRequest, CreateSubscriptionRequest, CreateSubscriptionsRequest, CreateSubscriptionsResponse, CreateTaxRequest, CreateTemplateRequest, CreateTemplateResponse, CreditApiService, CreditBalance, CreditType, Currency, CustomerSummary, DateRange, DefaultCustomerConfiguration, DeleteBankAccountRequest, DeleteBillableItemRequest, DeleteContractDocumentRequest, DeleteInvoiceRequest, DeleteInvoiceTemplateRequest, DeleteLineItemRequest, DeleteLineItemResponse, DeletePaymentCardRequest, DeletePricingPlanProductRequest, DeleteProductRequest, DeleteRecurringInvoiceRequest, DeleteRetailPricingRequest, DeleteTemplateLineItemRequest, DeleteTemplateLineItemResponse, Discount, DiscountApiService, DiscountType, Dispute, DisputeEvidence, DisputeEvidenceDetails, DisputeStatus, DuplicateInvoiceRequest, DuplicateInvoiceResponse, ExpireBillableItemRequest, ExpireDiscountRequest, Fee, FeeAmountType, FeeType, FieldMask, File, Frequency, GenerateBillableItemsCSVRequest, GenerateBillableItemsCSVResponse, GenerateVendorReportRequest, GenerateVendorReportResponse, GetBalanceRequest, GetBalanceResponse, GetBillableItemRequest, GetBillableItemResponse, GetContractRequest, GetContractResponse, GetInvoiceRequest, GetInvoiceResponse, GetInvoiceTemplateRequest, GetInvoiceTemplateResponse, GetMerchantRequest, GetMerchantResponse, GetMerchantServicesReportRun, GetMultiBundleRequest, GetMultiBundleResponse, GetMultiBundleResponseBundlesEntry, GetMultiBundleRetailPricingRequest, GetMultiBundleRetailPricingResponse, GetMultiBundleRetailPricingResponsePricesEntry, GetMultiContractsRequest, GetMultiContractsResponse, GetMultiContractsResponseContractsEntry, GetMultiCustomerSummariesRequest, GetMultiCustomerSummariesResponse, GetMultiPricingPlanProductRequest, GetMultiPricingPlanProductResponse, GetMultiPricingPlanRequest, GetMultiPricingPlanResponse, GetMultiProductPricingRequest, GetMultiProductPricingResponse, GetMultiProductPricingResponseProductPricesEntry, GetMultiProductRequest, GetMultiProductResponse, GetMultiProductResponseProductsEntry, GetMultiRetailConfigurationsRequest, GetMultiRetailConfigurationsResponse, GetMultiRetailConfigurationsResponseRetailConfigurationsEntry, GetMultiRetailPricingRequest, GetMultiRetailPricingResponse, GetMultiRetailPricingResponseProductPricesEntry, GetMultiSubscriptionsRequest, GetMultiSubscriptionsRequestKey, GetMultiSubscriptionsResponse, GetMultiTaxRequest, GetMultiTaxResponse, GetMultiWholesaleCostRequest, GetMultiWholesaleCostResponse, GetOutstandingBalanceRequest, GetOutstandingBalanceResponse, GetPayoutSummaryRequest, GetPayoutSummaryResponse, GetPricingPlanProductRequest, GetPricingPlanProductResponse, GetProductSummariesTotalRequest, GetProductSummariesTotalResponse, GetPurchaseCostRequest, GetPurchaseCostResponse, GetRecurringInvoiceRequest, GetRetailBalanceRequest, GetRetailBalanceResponse, GetRetailCustomerConfigurationRequest, GetRetailCustomerConfigurationResponse, GetRetailDisputeRequest, GetRetailDisputeResponse, GetRetailPaymentProviderRequest, GetRetailPaymentProviderResponse, GetRetailPaymentRequest, GetRetailPaymentResponse, GetRetailPayoutRequest, GetRetailPayoutResponse, GetRevenueStatsRequest, GetRevenueStatsResponse, GetSalesInvoiceRequest, GetSalesInvoiceResponse, GetStatisticsRequest, GetStatisticsResponse, GetWholesaleComparisonRequest, GetWholesaleComparisonRequestGetWholesaleComparisonFilters, GetWholesaleComparisonResponse, GetWholesaleComparisonResponseGetWholesaleComparisonResult, HostService, Interval, Invoice, InvoiceApiService, InvoiceCustomerAddress, InvoiceItem, InvoiceStatus, InvoiceTemplate, InvoiceTemplateApiService, InvoiceTemplateItem, Item, ListBankAccountsRequest, ListBankAccountsResponse, ListBillableItemsRequest, ListBillableItemsRequestFilters, ListBillableItemsResponse, ListBundlesRequest, ListBundlesRequestFilters, ListBundlesResponse, ListContractDocumentsRequest, ListContractDocumentsRequestFilters, ListContractDocumentsResponse, ListContractsRequest, ListContractsResponse, ListDiscountsRequest, ListDiscountsRequestFilters, ListDiscountsResponse, ListInvoicesRequest, ListInvoicesRequestFilters, ListInvoicesRequestFiltersDateFilter, ListInvoicesRequestFiltersDateFilterDateField, ListInvoicesResponse, ListMerchantBillingReportsRequest, ListMerchantBillingReportsResponse, ListPaymentCardsRequest, ListPaymentCardsResponse, ListPaymentRequest, ListPaymentRequestListPaymentFilters, ListPaymentResponse, ListPayoutsRequest, ListPayoutsRequestFilters, ListPayoutsResponse, ListPricingPlanProductsRequest, ListPricingPlanProductsRequestListPricingPlanProductsFilters, ListPricingPlanProductsResponse, ListProductSummariesRequest, ListProductSummariesResponse, ListProductsRequest, ListProductsRequestListProductsFilters, ListProductsResponse, ListPurchaseItemsRequest, ListPurchaseItemsRequestListPurchaseItemsFilters, ListPurchaseItemsResponse, ListPurchaseRequest, ListPurchaseRequestListPurchaseBillingStrategyFilter, ListPurchaseRequestListPurchaseFilters, ListPurchaseRequestState, ListPurchaseResponse, ListRecurringInvoicesFilters, ListRecurringInvoicesRequest, ListRecurringInvoicesResponse, ListRefundsRequest, ListRefundsResponse, ListRetailDisputesRequest, ListRetailDisputesResponse, ListRetailPaymentsRequest, ListRetailPaymentsRequestListRetailPaymentsFilters, ListRetailPaymentsResponse, ListRetailPayoutsRequest, ListRetailPayoutsResponse, ListSalesCreditNoteRequest, ListSalesCreditNoteRequestListSalesCreditNoteFilters, ListSalesCreditNoteResponse, ListSalesInvoiceRequest, ListSalesInvoiceRequestListSalesInvoiceFilters, ListSalesInvoiceResponse, ListSubscriptionRetentionByGroupResponse, ListSubscriptionRetentionByGroupResponseSubscriptionRetentionByGroup, ListSubscriptionRetentionBySKUResponse, ListSubscriptionRetentionRequest, ListSubscriptionRetentionRequestFilters, ListTaxRequest, ListTaxRequestFilters, ListTaxResponse, Merchant, MerchantApiService, MerchantReport, MerchantReportStatus, MerchantServicesReportRun, MerchantServicesReportRunStatus, MerchantServicesReportRunType, MerchantType, MeteredComponent, Month, PagedRequestOptions, PagedResponseMetadata, PayInvoiceRequest, Payment, PaymentAllocationType, PaymentApiService, PaymentCard, PaymentCardCARD_TYPE, PaymentCardFUNDING_TYPE, PaymentLinkItem, PaymentMethodApiService, PaymentPaymentAllocation, PaymentProcessor, PaymentSource, PaymentStatus, PaymentStatuses, Payout, PayoutStatus, PayoutType, PostSalesInvoiceRequest, PrepareRetailPaymentRequest, PrepareRetailPaymentRequestOrder, PrepareRetailPaymentResponse, Pricing, PricingApiService, PricingPlan, PricingPlanProduct, PricingPlanProductPricing, PricingPlanProductPricingEntry, PricingRule, PricingRuleType, Product, ProductApiService, ProductPrices, ProductPricing, ProductPricingRule, ProductPricingType, ProductSummary, ProductSummaryApiService, ProductSummaryBillingStrategy, ProductSummaryDiscount, ProductSummaryDiscountDiscountType, ProductSummaryProductType, ProductType, Purchase, PurchaseApiService, PurchaseItem, PurchaseStatus, ReconcilePayoutRequest, ReconcilePayoutResponse, RecurringInvoice, RecurringInvoiceApiService, RecurringInvoiceBundle, RecurringInvoiceItem, RecurringInvoiceLineItem, RecurringInvoiceStatus, ReferenceType, Refund, RefundApiService, RefundReason, RefundStatus, RemoveBundleRequest, RemoveBundleResponse, RenewalState, ResetContractPricingRequest, RetailConfiguration, RetailCustomerConfiguration, RetailCustomerConfigurationApiService, RetailPayment, RetailPaymentCardDetails, RetailPaymentReferenceType, RetailPaymentsEnabledRequest, RetailPaymentsEnabledResponse, RetailPayout, RetailStatusRequest, RetailStatusResponse, RetailStatusResponseVerificationError, RetailStatusResponseVerificationRequirements, RetentionMetrics, RetryPurchaseRequest, ReverseSubscriptionRequest, SalesCreditNote, SalesCreditNoteApiService, SalesCreditNoteStatus, SalesInvoice, SalesInvoiceApiService, SalesInvoiceStatus, SalesInvoiceType, SearchMerchantsRequest, SearchMerchantsRequestSortBy, SearchMerchantsResponse, SendInvoiceRequest, SendSalesInvoiceEmailRequest, SendSalesInvoiceReceiptEmailRequest, SetAutoChargeInvoicesRequest, SetAutoPostInvoicesRequest, SetDefaultBankAccountRequest, SetDefaultPaymentCardRequest, SetDefaultPaymentMethodRequest, SetHasAlternativePaymentMethodRequest, SetIncludeInFinancialRecordsRequest, SetRenewalStartRequest, SetWholesaleProductStrategyRequest, SetWholesaleProductVolumeCommitmentRequest, SortDirection, StartRevRecTemplateBackfillRequest, SubmitEvidenceRequest, SubmitEvidenceRequestDisputeEvidence, SubscribeValidation, SubscribeValidationStatus, Subscription, TaxApiService, TaxRate, TickComponentUsageRequest, UpdateBundleRequest, UpdateBundleResponse, UpdateContractRequest, UpdateContractRequestMutation, UpdateContractResponse, UpdateContractSubscriptionRequest, UpdateDefaultTaxRatesRequest, UpdateDefaultTaxRatesResponse, UpdateDiscountRequest, UpdateInvoiceRequest, UpdateInvoiceResponse, UpdateLineItemRequest, UpdateLineItemResponse, UpdateMerchantRequest, UpdateMerchantRequestIncludeInFinancialRecords, UpdatePaymentCardRequest, UpdatePricingPlanProductRequest, UpdatePricingPlanProductRequestPricingEntry, UpdatePricingPlanProductResponse, UpdatePricingPlanRequest, UpdatePricingPlanResponse, UpdateProductRequest, UpdateRecurringInvoiceRequest, UpdateRetailPaymentProviderRequest, UpdateTaxRequest, UpdateTemplateBundleRequest, UpdateTemplateBundleResponse, UpdateTemplateDefaultTaxRatesRequest, UpdateTemplateDefaultTaxRatesResponse, UpdateTemplateLineItemRequest, UpdateTemplateLineItemResponse, UpsertBundleRequest, UpsertDefaultRetailCustomerConfigurationRequest, UpsertInvoiceTemplateRequest, UpsertInvoiceTemplateRequestInvoiceTemplateItemRequest, UpsertInvoiceTemplateResponse, UpsertRetailConfigurationRequest, UpsertRetailCustomerConfigurationRequest, UpsertRetailPricingRequest, UpsertRetailPricingRequestPricingEntry, UpsertWholesalePricingRequest, ValidateResponse, VendorApiService, VoidInvoiceRequest, VoidPurchaseRequest, WholesaleCostItemRequest };
|
|
14949
|
+
export { Access, AddBundleRequest, AddBundleResponse, AddCreditRequest, AddLineItemRequest, AddLineItemResponse, AddTemplateBundleRequest, AddTemplateBundleResponse, AddTemplateLineItemRequest, AddTemplateLineItemResponse, AlignmentSubscription, AppliedBundle, AppliedBundleItem, AppliedCredit, AppliedDiscount, AppliedTaxRate, ArchiveTaxRequest, Balance, BankAccount, BankReconciliationApiService, BillItemRequest, BillMultipleItemsRequest, BillMultipleItemsResponse, BillableItem, BillableItemCustomerAddress, BillingApiService, BillingStrategy, Bundle, BundleApiService, BundleItem, BundleItemPrice, BundlePricing, BundlePricingPriceAndFrequency, CalculateTaxRequest, CalculateTaxResponse, CanBillItemRequest, CanCreateSubscriptionsRequest, CanCreateSubscriptionsRequestSkusEntry, CanCreateSubscriptionsRequestSubscriptionItem, CanCreateSubscriptionsResponse, CardType, ChangeCustomUnitPriceRequest, ChangeFrequencyRequest, ChangeRenewalDateRequest, ChargeInvoiceRequest, ChargeSalesInvoiceRequest, CloseRetailDisputeRequest, CollectionMethod, Commitment, ComponentPricing, ConfigureRetailPaymentProviderRequest, ConfigureRetailPaymentProviderResponse, ConfirmRetailPaymentRequest, ConnectStripeAccountRequest, ConnectStripeAccountResponse, Contract, ContractApiService, ContractDocument, ContractDocumentApiService, ContractSubscriptionStatus, CreateContractRequest, CreateContractResponse, CreateDiscountRequest, CreateInvoiceRequest, CreateInvoiceResponse, CreateMerchantRequest, CreateMerchantRequestIncludeInFinancialRecords, CreateMerchantServicesReportRun, CreateMeteredComponentRequest, CreatePaymentCardRequest, CreatePaymentLinkRequest, CreatePaymentLinkResponse, CreatePricingPlanProductRequest, CreatePricingPlanProductRequestPricingEntry, CreatePricingPlanProductResponse, CreatePricingPlanRequest, CreatePricingPlanResponse, CreateProductRequest, CreateRefundRequest, CreateSalesCreditNoteRequest, CreateStripeExternalAccountRequest, CreateSubscriptionRequest, CreateSubscriptionsRequest, CreateSubscriptionsResponse, CreateTaxRequest, CreateTemplateRequest, CreateTemplateResponse, CreditApiService, CreditBalance, CreditType, Currency, CustomerSummary, DateRange, DefaultCustomerConfiguration, DeleteBankAccountRequest, DeleteBillableItemRequest, DeleteContractDocumentRequest, DeleteInvoiceRequest, DeleteInvoiceTemplateRequest, DeleteLineItemRequest, DeleteLineItemResponse, DeletePaymentCardRequest, DeletePricingPlanProductRequest, DeleteProductRequest, DeleteRecurringInvoiceRequest, DeleteRetailPricingRequest, DeleteTemplateLineItemRequest, DeleteTemplateLineItemResponse, Discount, DiscountApiService, DiscountType, Dispute, DisputeEvidence, DisputeEvidenceDetails, DisputeStatus, DuplicateInvoiceRequest, DuplicateInvoiceResponse, ExpireBillableItemRequest, ExpireDiscountRequest, Fee, FeeAmountType, FeeType, FieldMask, File, Frequency, GenerateBillableItemsCSVRequest, GenerateBillableItemsCSVResponse, GenerateVendorReportRequest, GenerateVendorReportResponse, GetBalanceRequest, GetBalanceResponse, GetBillableItemRequest, GetBillableItemResponse, GetContractRequest, GetContractResponse, GetInvoiceRequest, GetInvoiceResponse, GetInvoiceTemplateRequest, GetInvoiceTemplateResponse, GetMerchantRequest, GetMerchantResponse, GetMerchantServicesReportRun, GetMultiBundleRequest, GetMultiBundleResponse, GetMultiBundleResponseBundlesEntry, GetMultiBundleRetailPricingRequest, GetMultiBundleRetailPricingResponse, GetMultiBundleRetailPricingResponsePricesEntry, GetMultiContractsRequest, GetMultiContractsResponse, GetMultiContractsResponseContractsEntry, GetMultiCustomerSummariesRequest, GetMultiCustomerSummariesResponse, GetMultiPricingPlanProductRequest, GetMultiPricingPlanProductResponse, GetMultiPricingPlanRequest, GetMultiPricingPlanResponse, GetMultiProductPricingRequest, GetMultiProductPricingResponse, GetMultiProductPricingResponseProductPricesEntry, GetMultiProductRequest, GetMultiProductResponse, GetMultiProductResponseProductsEntry, GetMultiRetailConfigurationsRequest, GetMultiRetailConfigurationsResponse, GetMultiRetailConfigurationsResponseRetailConfigurationsEntry, GetMultiRetailPricingRequest, GetMultiRetailPricingResponse, GetMultiRetailPricingResponseProductPricesEntry, GetMultiSubscriptionsRequest, GetMultiSubscriptionsRequestKey, GetMultiSubscriptionsResponse, GetMultiTaxRequest, GetMultiTaxResponse, GetMultiWholesaleCostRequest, GetMultiWholesaleCostResponse, GetOutstandingBalanceRequest, GetOutstandingBalanceResponse, GetPayoutSummaryRequest, GetPayoutSummaryResponse, GetPricingPlanProductRequest, GetPricingPlanProductResponse, GetProductSummariesTotalRequest, GetProductSummariesTotalResponse, GetPurchaseCostRequest, GetPurchaseCostResponse, GetRecurringInvoiceRequest, GetRetailBalanceRequest, GetRetailBalanceResponse, GetRetailCustomerConfigurationRequest, GetRetailCustomerConfigurationResponse, GetRetailDisputeRequest, GetRetailDisputeResponse, GetRetailPaymentProviderRequest, GetRetailPaymentProviderResponse, GetRetailPaymentRequest, GetRetailPaymentResponse, GetRetailPayoutRequest, GetRetailPayoutResponse, GetRevenueStatsRequest, GetRevenueStatsResponse, GetSalesInvoiceRequest, GetSalesInvoiceResponse, GetStatisticsRequest, GetStatisticsResponse, GetWholesaleComparisonRequest, GetWholesaleComparisonRequestGetWholesaleComparisonFilters, GetWholesaleComparisonResponse, GetWholesaleComparisonResponseGetWholesaleComparisonResult, GetWholesaleProviderPublicKeyRequest, GetWholesaleProviderPublicKeyResponse, HostService, Interval, Invoice, InvoiceApiService, InvoiceCustomerAddress, InvoiceItem, InvoiceStatus, InvoiceTemplate, InvoiceTemplateApiService, InvoiceTemplateItem, Item, ListBankAccountsRequest, ListBankAccountsResponse, ListBillableItemsRequest, ListBillableItemsRequestFilters, ListBillableItemsResponse, ListBundlesRequest, ListBundlesRequestFilters, ListBundlesResponse, ListContractDocumentsRequest, ListContractDocumentsRequestFilters, ListContractDocumentsResponse, ListContractsRequest, ListContractsResponse, ListDiscountsRequest, ListDiscountsRequestFilters, ListDiscountsResponse, ListInvoicesRequest, ListInvoicesRequestFilters, ListInvoicesRequestFiltersDateFilter, ListInvoicesRequestFiltersDateFilterDateField, ListInvoicesResponse, ListMerchantBillingReportsRequest, ListMerchantBillingReportsResponse, ListPaymentCardsRequest, ListPaymentCardsResponse, ListPaymentRequest, ListPaymentRequestListPaymentFilters, ListPaymentResponse, ListPayoutsRequest, ListPayoutsRequestFilters, ListPayoutsResponse, ListPricingPlanProductsRequest, ListPricingPlanProductsRequestListPricingPlanProductsFilters, ListPricingPlanProductsResponse, ListProductSummariesRequest, ListProductSummariesResponse, ListProductsRequest, ListProductsRequestListProductsFilters, ListProductsResponse, ListPurchaseItemsRequest, ListPurchaseItemsRequestListPurchaseItemsFilters, ListPurchaseItemsResponse, ListPurchaseRequest, ListPurchaseRequestListPurchaseBillingStrategyFilter, ListPurchaseRequestListPurchaseFilters, ListPurchaseRequestState, ListPurchaseResponse, ListRecurringInvoicesFilters, ListRecurringInvoicesRequest, ListRecurringInvoicesResponse, ListRefundsRequest, ListRefundsResponse, ListRetailDisputesRequest, ListRetailDisputesResponse, ListRetailPaymentsRequest, ListRetailPaymentsRequestListRetailPaymentsFilters, ListRetailPaymentsResponse, ListRetailPayoutsRequest, ListRetailPayoutsResponse, ListSalesCreditNoteRequest, ListSalesCreditNoteRequestListSalesCreditNoteFilters, ListSalesCreditNoteResponse, ListSalesInvoiceRequest, ListSalesInvoiceRequestListSalesInvoiceFilters, ListSalesInvoiceResponse, ListSubscriptionRetentionByGroupResponse, ListSubscriptionRetentionByGroupResponseSubscriptionRetentionByGroup, ListSubscriptionRetentionBySKUResponse, ListSubscriptionRetentionRequest, ListSubscriptionRetentionRequestFilters, ListTaxRequest, ListTaxRequestFilters, ListTaxResponse, Merchant, MerchantApiService, MerchantReport, MerchantReportStatus, MerchantServicesReportRun, MerchantServicesReportRunStatus, MerchantServicesReportRunType, MerchantType, MeteredComponent, Month, PagedRequestOptions, PagedResponseMetadata, PayInvoiceRequest, Payment, PaymentAllocationType, PaymentApiService, PaymentCard, PaymentCardCARD_TYPE, PaymentCardFUNDING_TYPE, PaymentLinkItem, PaymentMethodApiService, PaymentPaymentAllocation, PaymentProcessor, PaymentSource, PaymentStatus, PaymentStatuses, Payout, PayoutStatus, PayoutType, PostSalesInvoiceRequest, PrepareRetailPaymentRequest, PrepareRetailPaymentRequestOrder, PrepareRetailPaymentResponse, Pricing, PricingApiService, PricingPlan, PricingPlanProduct, PricingPlanProductPricing, PricingPlanProductPricingEntry, PricingRule, PricingRuleType, Product, ProductApiService, ProductPrices, ProductPricing, ProductPricingRule, ProductPricingType, ProductSummary, ProductSummaryApiService, ProductSummaryBillingStrategy, ProductSummaryDiscount, ProductSummaryDiscountDiscountType, ProductSummaryProductType, ProductType, Purchase, PurchaseApiService, PurchaseItem, PurchaseStatus, ReconcilePayoutRequest, ReconcilePayoutResponse, RecurringInvoice, RecurringInvoiceApiService, RecurringInvoiceBundle, RecurringInvoiceItem, RecurringInvoiceLineItem, RecurringInvoiceStatus, ReferenceType, Refund, RefundApiService, RefundReason, RefundStatus, RemoveBundleRequest, RemoveBundleResponse, RenewalState, ResetContractPricingRequest, RetailConfiguration, RetailCustomerConfiguration, RetailCustomerConfigurationApiService, RetailPayment, RetailPaymentCardDetails, RetailPaymentReferenceType, RetailPaymentsEnabledRequest, RetailPaymentsEnabledResponse, RetailPayout, RetailStatusRequest, RetailStatusResponse, RetailStatusResponseVerificationError, RetailStatusResponseVerificationRequirements, RetentionMetrics, RetryPurchaseRequest, ReverseSubscriptionRequest, SalesCreditNote, SalesCreditNoteApiService, SalesCreditNoteStatus, SalesInvoice, SalesInvoiceApiService, SalesInvoiceStatus, SalesInvoiceType, SearchMerchantsRequest, SearchMerchantsRequestSortBy, SearchMerchantsResponse, SendInvoiceRequest, SendSalesInvoiceEmailRequest, SendSalesInvoiceReceiptEmailRequest, SetAutoChargeInvoicesRequest, SetAutoPostInvoicesRequest, SetDefaultBankAccountRequest, SetDefaultPaymentCardRequest, SetDefaultPaymentMethodRequest, SetHasAlternativePaymentMethodRequest, SetIncludeInFinancialRecordsRequest, SetRenewalStartRequest, SetWholesaleProductStrategyRequest, SetWholesaleProductVolumeCommitmentRequest, SortDirection, StartRevRecTemplateBackfillRequest, SubmitEvidenceRequest, SubmitEvidenceRequestDisputeEvidence, SubscribeValidation, SubscribeValidationStatus, Subscription, TaxApiService, TaxRate, TickComponentUsageRequest, UpdateBundleRequest, UpdateBundleResponse, UpdateContractRequest, UpdateContractRequestMutation, UpdateContractResponse, UpdateContractSubscriptionRequest, UpdateDefaultTaxRatesRequest, UpdateDefaultTaxRatesResponse, UpdateDiscountRequest, UpdateInvoiceRequest, UpdateInvoiceResponse, UpdateLineItemRequest, UpdateLineItemResponse, UpdateMerchantRequest, UpdateMerchantRequestIncludeInFinancialRecords, UpdatePaymentCardRequest, UpdatePricingPlanProductRequest, UpdatePricingPlanProductRequestPricingEntry, UpdatePricingPlanProductResponse, UpdatePricingPlanRequest, UpdatePricingPlanResponse, UpdateProductRequest, UpdateRecurringInvoiceRequest, UpdateRetailPaymentProviderRequest, UpdateTaxRequest, UpdateTemplateBundleRequest, UpdateTemplateBundleResponse, UpdateTemplateDefaultTaxRatesRequest, UpdateTemplateDefaultTaxRatesResponse, UpdateTemplateLineItemRequest, UpdateTemplateLineItemResponse, UpsertBundleRequest, UpsertDefaultRetailCustomerConfigurationRequest, UpsertInvoiceTemplateRequest, UpsertInvoiceTemplateRequestInvoiceTemplateItemRequest, UpsertInvoiceTemplateResponse, UpsertRetailConfigurationRequest, UpsertRetailCustomerConfigurationRequest, UpsertRetailPricingRequest, UpsertRetailPricingRequestPricingEntry, UpsertWholesalePricingRequest, ValidateResponse, VendorApiService, VoidInvoiceRequest, VoidPurchaseRequest, WholesaleCostItemRequest };
|
|
14902
14950
|
//# sourceMappingURL=vendasta-billing.mjs.map
|