@emilgroup/billing-sdk-node 1.4.0 → 1.4.1
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/.openapi-generator/FILES +26 -52
- package/README.md +2 -2
- package/api/correction-invoices-api.ts +183 -0
- package/api/estimated-invoices-api.ts +276 -0
- package/api/initial-invoices-api.ts +183 -0
- package/api/invoices-api.ts +410 -0
- package/api/recurring-invoices-api.ts +183 -0
- package/api.ts +12 -12
- package/base.ts +2 -2
- package/common.ts +4 -4
- package/configuration.ts +2 -2
- package/dist/api/correction-invoices-api.d.ts +106 -0
- package/dist/api/correction-invoices-api.js +234 -0
- package/dist/api/estimated-invoices-api.d.ts +154 -0
- package/dist/api/estimated-invoices-api.js +321 -0
- package/dist/api/initial-invoices-api.d.ts +106 -0
- package/dist/api/initial-invoices-api.js +234 -0
- package/dist/api/invoices-api.d.ts +242 -0
- package/dist/api/{documents-api.js → invoices-api.js} +105 -167
- package/dist/api/recurring-invoices-api.d.ts +106 -0
- package/dist/api/{notifications-api.js → recurring-invoices-api.js} +51 -45
- package/dist/api.d.ts +7 -7
- package/dist/api.js +7 -7
- package/dist/base.d.ts +2 -2
- package/dist/base.js +2 -2
- package/dist/common.d.ts +4 -4
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +2 -2
- package/dist/configuration.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/models/create-correction-invoices-response-class.d.ts +25 -0
- package/dist/models/{complete-braintree-payment-setup-request-dto.js → create-correction-invoices-response-class.js} +2 -2
- package/dist/models/create-custom-estimated-invoice-request-dto.d.ts +35 -0
- package/dist/models/{create-custom-application-request-dto.js → create-custom-estimated-invoice-request-dto.js} +4 -4
- package/dist/models/create-custom-estimated-invoice-response-class.d.ts +24 -0
- package/dist/models/{complete-payment-setup-request-dto.js → create-custom-estimated-invoice-response-class.js} +2 -2
- package/dist/models/create-estimated-invoice-request-dto.d.ts +8 -32
- package/dist/models/create-estimated-invoice-request-dto.js +2 -7
- package/dist/models/create-estimated-invoice-response-class.d.ts +6 -6
- package/dist/models/create-estimated-invoice-response-class.js +2 -2
- package/dist/models/create-invoice-request-dto.d.ts +77 -0
- package/dist/models/{premium-override-dto.js → create-invoice-request-dto.js} +12 -12
- package/dist/models/create-invoice-response-class.d.ts +25 -0
- package/dist/models/{complete-stripe-payment-setup-request-dto.js → create-invoice-response-class.js} +2 -2
- package/dist/models/create-invoice-status-request-dto.d.ts +35 -0
- package/dist/models/create-invoice-status-request-dto.js +20 -0
- package/dist/models/create-termination-invoice-request-dto.d.ts +48 -0
- package/dist/models/{complete-payment-setup-response-class.js → create-termination-invoice-request-dto.js} +2 -2
- package/dist/models/currency-class.d.ts +48 -0
- package/dist/models/currency-class.js +15 -0
- package/dist/models/index.d.ts +21 -47
- package/dist/models/index.js +21 -47
- package/dist/models/invoice-class.d.ts +38 -15
- package/dist/models/invoice-class.js +17 -2
- package/dist/models/invoice-item-class.d.ts +18 -9
- package/dist/models/invoice-item-class.js +11 -2
- package/dist/models/invoice-status-class.d.ts +9 -4
- package/dist/models/invoice-status-class.js +7 -2
- package/dist/models/list-invoices-response-class.d.ts +31 -0
- package/dist/models/list-invoices-response-class.js +15 -0
- package/dist/models/list-policies-billing-dates-response-class.d.ts +31 -0
- package/dist/models/list-policies-billing-dates-response-class.js +15 -0
- package/dist/models/list-request-dto.d.ts +54 -0
- package/dist/models/list-request-dto.js +15 -0
- package/dist/models/omit-type-class.d.ts +144 -0
- package/dist/models/omit-type-class.js +30 -0
- package/dist/models/policy-billing-date-class.d.ts +42 -0
- package/dist/models/policy-billing-date-class.js +15 -0
- package/dist/models/policy-dto.d.ts +122 -0
- package/dist/models/{lead-account-class.js → policy-dto.js} +8 -8
- package/dist/models/{lead-policy-object-class.d.ts → policy-object-dto.d.ts} +18 -6
- package/dist/models/policy-object-dto.js +15 -0
- package/dist/models/policy-premium-dto.d.ts +43 -0
- package/dist/models/policy-premium-dto.js +15 -0
- package/dist/models/policy-premium-item-dto.d.ts +55 -0
- package/dist/models/policy-premium-item-dto.js +15 -0
- package/dist/models/policy-version-dto.d.ts +55 -0
- package/dist/models/policy-version-dto.js +15 -0
- package/dist/models/{premium-formula-class.d.ts → premium-formula-dto.d.ts} +17 -17
- package/dist/models/premium-formula-dto.js +15 -0
- package/dist/models/{send-notification-response-class.d.ts → revert-invoice-request-dto.d.ts} +6 -6
- package/dist/models/revert-invoice-request-dto.js +15 -0
- package/dist/models/{product-factor-class.d.ts → timeslice-dto.d.ts} +23 -21
- package/dist/models/timeslice-dto.js +15 -0
- package/index.ts +2 -2
- package/models/create-correction-invoices-response-class.ts +31 -0
- package/models/create-custom-estimated-invoice-request-dto.ts +44 -0
- package/models/{create-custom-application-response-class.ts → create-custom-estimated-invoice-response-class.ts} +7 -7
- package/models/create-estimated-invoice-request-dto.ts +8 -35
- package/models/create-estimated-invoice-response-class.ts +6 -6
- package/models/create-invoice-request-dto.ts +86 -0
- package/models/{get-lead-response-class.ts → create-invoice-response-class.ts} +9 -9
- package/models/create-invoice-status-request-dto.ts +44 -0
- package/models/create-termination-invoice-request-dto.ts +54 -0
- package/models/currency-class.ts +54 -0
- package/models/index.ts +21 -47
- package/models/invoice-class.ts +42 -15
- package/models/invoice-item-class.ts +21 -9
- package/models/invoice-status-class.ts +12 -4
- package/models/{list-products-response-class.ts → list-invoices-response-class.ts} +10 -10
- package/models/list-policies-billing-dates-response-class.ts +37 -0
- package/models/list-request-dto.ts +60 -0
- package/models/omit-type-class.ts +154 -0
- package/models/policy-billing-date-class.ts +48 -0
- package/models/policy-dto.ts +131 -0
- package/models/{lead-policy-object-class.ts → policy-object-dto.ts} +18 -6
- package/models/policy-premium-dto.ts +49 -0
- package/models/policy-premium-item-dto.ts +61 -0
- package/models/policy-version-dto.ts +61 -0
- package/models/{premium-formula-class.ts → premium-formula-dto.ts} +17 -17
- package/models/{send-notification-response-class.ts → revert-invoice-request-dto.ts} +6 -6
- package/models/{product-factor-class.ts → timeslice-dto.ts} +23 -21
- package/package.json +1 -1
- package/api/documents-api.ts +0 -442
- package/api/leads-api.ts +0 -482
- package/api/notifications-api.ts +0 -169
- package/api/payments-setup-api.ts +0 -408
- package/api/products-api.ts +0 -891
- package/dist/api/documents-api.d.ts +0 -252
- package/dist/api/leads-api.d.ts +0 -266
- package/dist/api/leads-api.js +0 -506
- package/dist/api/notifications-api.d.ts +0 -97
- package/dist/api/payments-setup-api.d.ts +0 -228
- package/dist/api/payments-setup-api.js +0 -426
- package/dist/api/products-api.d.ts +0 -497
- package/dist/api/products-api.js +0 -827
- package/dist/models/complete-braintree-payment-setup-request-dto.d.ts +0 -48
- package/dist/models/complete-payment-setup-request-dto.d.ts +0 -32
- package/dist/models/complete-payment-setup-response-class.d.ts +0 -25
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +0 -60
- package/dist/models/create-account-request-dto.d.ts +0 -132
- package/dist/models/create-account-request-dto.js +0 -31
- package/dist/models/create-bank-account-request-dto.d.ts +0 -30
- package/dist/models/create-bank-account-request-dto.js +0 -15
- package/dist/models/create-custom-application-request-dto.d.ts +0 -35
- package/dist/models/create-custom-application-response-class.d.ts +0 -24
- package/dist/models/create-custom-application-response-class.js +0 -15
- package/dist/models/create-document-request-dto.d.ts +0 -101
- package/dist/models/create-document-request-dto.js +0 -31
- package/dist/models/create-lead-request-dto.d.ts +0 -83
- package/dist/models/create-lead-request-dto.js +0 -15
- package/dist/models/create-lead-response-class.d.ts +0 -25
- package/dist/models/create-lead-response-class.js +0 -15
- package/dist/models/document-class.d.ts +0 -130
- package/dist/models/document-class.js +0 -41
- package/dist/models/get-custom-css-response-class.d.ts +0 -24
- package/dist/models/get-custom-css-response-class.js +0 -15
- package/dist/models/get-lead-response-class.d.ts +0 -25
- package/dist/models/get-lead-response-class.js +0 -15
- package/dist/models/get-public-psp-settings-response-class.d.ts +0 -30
- package/dist/models/get-public-psp-settings-response-class.js +0 -15
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +0 -30
- package/dist/models/initiate-braintree-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-braintree-payment-setup-response-class.d.ts +0 -24
- package/dist/models/initiate-braintree-payment-setup-response-class.js +0 -15
- package/dist/models/initiate-lead-response-class.d.ts +0 -24
- package/dist/models/initiate-lead-response-class.js +0 -15
- package/dist/models/initiate-payment-setup-request-dto.d.ts +0 -32
- package/dist/models/initiate-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-payment-setup-response-class.d.ts +0 -32
- package/dist/models/initiate-payment-setup-response-class.js +0 -15
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +0 -30
- package/dist/models/initiate-stripe-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-stripe-payment-setup-response-class.d.ts +0 -30
- package/dist/models/initiate-stripe-payment-setup-response-class.js +0 -15
- package/dist/models/insured-object-class.d.ts +0 -67
- package/dist/models/insured-object-class.js +0 -15
- package/dist/models/insured-object-type-class.d.ts +0 -48
- package/dist/models/insured-object-type-class.js +0 -15
- package/dist/models/lead-account-class.d.ts +0 -109
- package/dist/models/lead-bank-account-class.d.ts +0 -30
- package/dist/models/lead-bank-account-class.js +0 -15
- package/dist/models/lead-class.d.ts +0 -96
- package/dist/models/lead-class.js +0 -15
- package/dist/models/lead-policy-class.d.ts +0 -43
- package/dist/models/lead-policy-class.js +0 -15
- package/dist/models/lead-policy-object-class.js +0 -15
- package/dist/models/list-documents-response-class.d.ts +0 -31
- package/dist/models/list-documents-response-class.js +0 -15
- package/dist/models/list-products-response-class.d.ts +0 -31
- package/dist/models/list-products-response-class.js +0 -15
- package/dist/models/payment-method-class.d.ts +0 -60
- package/dist/models/payment-method-class.js +0 -15
- package/dist/models/policy-object-request-dto.d.ts +0 -30
- package/dist/models/policy-object-request-dto.js +0 -15
- package/dist/models/policy-premium-class.d.ts +0 -55
- package/dist/models/policy-premium-class.js +0 -15
- package/dist/models/policy-premium-item-class.d.ts +0 -73
- package/dist/models/policy-premium-item-class.js +0 -15
- package/dist/models/premium-formula-class.js +0 -15
- package/dist/models/premium-override-dto.d.ts +0 -54
- package/dist/models/premium-override-request-dto.d.ts +0 -25
- package/dist/models/premium-override-request-dto.js +0 -15
- package/dist/models/product-class.d.ts +0 -74
- package/dist/models/product-class.js +0 -15
- package/dist/models/product-factor-class.js +0 -15
- package/dist/models/product-field-class.d.ts +0 -132
- package/dist/models/product-field-class.js +0 -15
- package/dist/models/product-version-class.d.ts +0 -61
- package/dist/models/product-version-class.js +0 -22
- package/dist/models/send-notification-request-dto.d.ts +0 -36
- package/dist/models/send-notification-request-dto.js +0 -15
- package/dist/models/send-notification-response-class.js +0 -15
- package/dist/models/update-lead-request-dto.d.ts +0 -83
- package/dist/models/update-lead-request-dto.js +0 -15
- package/dist/models/update-lead-response-class.d.ts +0 -25
- package/dist/models/update-lead-response-class.js +0 -15
- package/dist/models/uploaded-document-dto.d.ts +0 -24
- package/dist/models/uploaded-document-dto.js +0 -15
- package/models/complete-braintree-payment-setup-request-dto.ts +0 -54
- package/models/complete-payment-setup-request-dto.ts +0 -38
- package/models/complete-payment-setup-response-class.ts +0 -31
- package/models/complete-stripe-payment-setup-request-dto.ts +0 -66
- package/models/create-account-request-dto.ts +0 -143
- package/models/create-bank-account-request-dto.ts +0 -36
- package/models/create-custom-application-request-dto.ts +0 -44
- package/models/create-document-request-dto.ts +0 -111
- package/models/create-lead-request-dto.ts +0 -89
- package/models/create-lead-response-class.ts +0 -31
- package/models/document-class.ts +0 -141
- package/models/get-custom-css-response-class.ts +0 -30
- package/models/get-public-psp-settings-response-class.ts +0 -36
- package/models/initiate-braintree-payment-setup-request-dto.ts +0 -36
- package/models/initiate-braintree-payment-setup-response-class.ts +0 -30
- package/models/initiate-lead-response-class.ts +0 -30
- package/models/initiate-payment-setup-request-dto.ts +0 -38
- package/models/initiate-payment-setup-response-class.ts +0 -38
- package/models/initiate-stripe-payment-setup-request-dto.ts +0 -36
- package/models/initiate-stripe-payment-setup-response-class.ts +0 -36
- package/models/insured-object-class.ts +0 -73
- package/models/insured-object-type-class.ts +0 -54
- package/models/lead-account-class.ts +0 -118
- package/models/lead-bank-account-class.ts +0 -36
- package/models/lead-class.ts +0 -102
- package/models/lead-policy-class.ts +0 -49
- package/models/list-documents-response-class.ts +0 -37
- package/models/payment-method-class.ts +0 -66
- package/models/policy-object-request-dto.ts +0 -36
- package/models/policy-premium-class.ts +0 -61
- package/models/policy-premium-item-class.ts +0 -79
- package/models/premium-override-dto.ts +0 -64
- package/models/premium-override-request-dto.ts +0 -31
- package/models/product-class.ts +0 -80
- package/models/product-field-class.ts +0 -138
- package/models/product-version-class.ts +0 -70
- package/models/send-notification-request-dto.ts +0 -42
- package/models/update-lead-request-dto.ts +0 -89
- package/models/update-lead-response-class.ts +0 -31
- package/models/uploaded-document-dto.ts +0 -30
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL BillingService
|
|
6
|
+
* The EMIL BillingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
var __extends = (this && this.__extends) || (function () {
|
|
16
|
+
var extendStatics = function (d, b) {
|
|
17
|
+
extendStatics = Object.setPrototypeOf ||
|
|
18
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
19
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
20
|
+
return extendStatics(d, b);
|
|
21
|
+
};
|
|
22
|
+
return function (d, b) {
|
|
23
|
+
if (typeof b !== "function" && b !== null)
|
|
24
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
25
|
+
extendStatics(d, b);
|
|
26
|
+
function __() { this.constructor = d; }
|
|
27
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
28
|
+
};
|
|
29
|
+
})();
|
|
30
|
+
var __assign = (this && this.__assign) || function () {
|
|
31
|
+
__assign = Object.assign || function(t) {
|
|
32
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
33
|
+
s = arguments[i];
|
|
34
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
35
|
+
t[p] = s[p];
|
|
36
|
+
}
|
|
37
|
+
return t;
|
|
38
|
+
};
|
|
39
|
+
return __assign.apply(this, arguments);
|
|
40
|
+
};
|
|
41
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
42
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
43
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
44
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
45
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
46
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
47
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
51
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
52
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
53
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
54
|
+
function step(op) {
|
|
55
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
56
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
57
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
58
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
59
|
+
switch (op[0]) {
|
|
60
|
+
case 0: case 1: t = op; break;
|
|
61
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
62
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
63
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
64
|
+
default:
|
|
65
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
66
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
67
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
68
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
69
|
+
if (t[2]) _.ops.pop();
|
|
70
|
+
_.trys.pop(); continue;
|
|
71
|
+
}
|
|
72
|
+
op = body.call(thisArg, _);
|
|
73
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
74
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
78
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
79
|
+
};
|
|
80
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81
|
+
exports.InitialInvoicesApi = exports.InitialInvoicesApiFactory = exports.InitialInvoicesApiFp = exports.InitialInvoicesApiAxiosParamCreator = void 0;
|
|
82
|
+
var axios_1 = __importDefault(require("axios"));
|
|
83
|
+
// Some imports not used depending on template conditions
|
|
84
|
+
// @ts-ignore
|
|
85
|
+
var common_1 = require("../common");
|
|
86
|
+
// @ts-ignore
|
|
87
|
+
var base_1 = require("../base");
|
|
88
|
+
// URLSearchParams not necessarily used
|
|
89
|
+
// @ts-ignore
|
|
90
|
+
var url_1 = require("url");
|
|
91
|
+
var FormData = require('form-data');
|
|
92
|
+
/**
|
|
93
|
+
* InitialInvoicesApi - axios parameter creator
|
|
94
|
+
* @export
|
|
95
|
+
*/
|
|
96
|
+
var InitialInvoicesApiAxiosParamCreator = function (configuration) {
|
|
97
|
+
var _this = this;
|
|
98
|
+
return {
|
|
99
|
+
/**
|
|
100
|
+
* This will create an initial invoice. It will be created once a policy is approved and it will cover a partial until the issuing of the regular invoice.
|
|
101
|
+
* @summary Create the initial invoice
|
|
102
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
103
|
+
* @param {string} [authorization] Bearer Token
|
|
104
|
+
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
105
|
+
* @param {*} [options] Override http request option.
|
|
106
|
+
* @throws {RequiredError}
|
|
107
|
+
*/
|
|
108
|
+
createInitialInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
109
|
+
if (options === void 0) { options = {}; }
|
|
110
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
111
|
+
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
112
|
+
return __generator(this, function (_a) {
|
|
113
|
+
switch (_a.label) {
|
|
114
|
+
case 0:
|
|
115
|
+
// verify required parameter 'createInvoiceRequestDto' is not null or undefined
|
|
116
|
+
(0, common_1.assertParamExists)('createInitialInvoice', 'createInvoiceRequestDto', createInvoiceRequestDto);
|
|
117
|
+
localVarPath = "/billingservice/v1/initial-invoices";
|
|
118
|
+
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
119
|
+
if (configuration) {
|
|
120
|
+
baseOptions = configuration.baseOptions;
|
|
121
|
+
baseAccessToken = configuration.accessToken;
|
|
122
|
+
}
|
|
123
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
124
|
+
localVarHeaderParameter = {};
|
|
125
|
+
localVarQueryParameter = {};
|
|
126
|
+
// authentication bearer required
|
|
127
|
+
// http bearer authentication required
|
|
128
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
129
|
+
case 1:
|
|
130
|
+
// authentication bearer required
|
|
131
|
+
// http bearer authentication required
|
|
132
|
+
_a.sent();
|
|
133
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
134
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
135
|
+
}
|
|
136
|
+
if (idempotencyKey !== undefined && idempotencyKey !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
137
|
+
localVarHeaderParameter['Idempotency-Key'] = String(idempotencyKey ? idempotencyKey : baseAccessToken);
|
|
138
|
+
}
|
|
139
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
140
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
141
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
142
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
143
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createInvoiceRequestDto, localVarRequestOptions, configuration);
|
|
144
|
+
return [2 /*return*/, {
|
|
145
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
146
|
+
options: localVarRequestOptions,
|
|
147
|
+
}];
|
|
148
|
+
}
|
|
149
|
+
});
|
|
150
|
+
});
|
|
151
|
+
},
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
exports.InitialInvoicesApiAxiosParamCreator = InitialInvoicesApiAxiosParamCreator;
|
|
155
|
+
/**
|
|
156
|
+
* InitialInvoicesApi - functional programming interface
|
|
157
|
+
* @export
|
|
158
|
+
*/
|
|
159
|
+
var InitialInvoicesApiFp = function (configuration) {
|
|
160
|
+
var localVarAxiosParamCreator = (0, exports.InitialInvoicesApiAxiosParamCreator)(configuration);
|
|
161
|
+
return {
|
|
162
|
+
/**
|
|
163
|
+
* This will create an initial invoice. It will be created once a policy is approved and it will cover a partial until the issuing of the regular invoice.
|
|
164
|
+
* @summary Create the initial invoice
|
|
165
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
166
|
+
* @param {string} [authorization] Bearer Token
|
|
167
|
+
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
createInitialInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
172
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
173
|
+
var localVarAxiosArgs;
|
|
174
|
+
return __generator(this, function (_a) {
|
|
175
|
+
switch (_a.label) {
|
|
176
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.createInitialInvoice(createInvoiceRequestDto, authorization, idempotencyKey, options)];
|
|
177
|
+
case 1:
|
|
178
|
+
localVarAxiosArgs = _a.sent();
|
|
179
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
180
|
+
}
|
|
181
|
+
});
|
|
182
|
+
});
|
|
183
|
+
},
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
exports.InitialInvoicesApiFp = InitialInvoicesApiFp;
|
|
187
|
+
/**
|
|
188
|
+
* InitialInvoicesApi - factory interface
|
|
189
|
+
* @export
|
|
190
|
+
*/
|
|
191
|
+
var InitialInvoicesApiFactory = function (configuration, basePath, axios) {
|
|
192
|
+
var localVarFp = (0, exports.InitialInvoicesApiFp)(configuration);
|
|
193
|
+
return {
|
|
194
|
+
/**
|
|
195
|
+
* This will create an initial invoice. It will be created once a policy is approved and it will cover a partial until the issuing of the regular invoice.
|
|
196
|
+
* @summary Create the initial invoice
|
|
197
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
198
|
+
* @param {string} [authorization] Bearer Token
|
|
199
|
+
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
200
|
+
* @param {*} [options] Override http request option.
|
|
201
|
+
* @throws {RequiredError}
|
|
202
|
+
*/
|
|
203
|
+
createInitialInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
204
|
+
return localVarFp.createInitialInvoice(createInvoiceRequestDto, authorization, idempotencyKey, options).then(function (request) { return request(axios, basePath); });
|
|
205
|
+
},
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
exports.InitialInvoicesApiFactory = InitialInvoicesApiFactory;
|
|
209
|
+
/**
|
|
210
|
+
* InitialInvoicesApi - object-oriented interface
|
|
211
|
+
* @export
|
|
212
|
+
* @class InitialInvoicesApi
|
|
213
|
+
* @extends {BaseAPI}
|
|
214
|
+
*/
|
|
215
|
+
var InitialInvoicesApi = /** @class */ (function (_super) {
|
|
216
|
+
__extends(InitialInvoicesApi, _super);
|
|
217
|
+
function InitialInvoicesApi() {
|
|
218
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* This will create an initial invoice. It will be created once a policy is approved and it will cover a partial until the issuing of the regular invoice.
|
|
222
|
+
* @summary Create the initial invoice
|
|
223
|
+
* @param {InitialInvoicesApiCreateInitialInvoiceRequest} requestParameters Request parameters.
|
|
224
|
+
* @param {*} [options] Override http request option.
|
|
225
|
+
* @throws {RequiredError}
|
|
226
|
+
* @memberof InitialInvoicesApi
|
|
227
|
+
*/
|
|
228
|
+
InitialInvoicesApi.prototype.createInitialInvoice = function (requestParameters, options) {
|
|
229
|
+
var _this = this;
|
|
230
|
+
return (0, exports.InitialInvoicesApiFp)(this.configuration).createInitialInvoice(requestParameters.createInvoiceRequestDto, requestParameters.authorization, requestParameters.idempotencyKey, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
231
|
+
};
|
|
232
|
+
return InitialInvoicesApi;
|
|
233
|
+
}(base_1.BaseAPI));
|
|
234
|
+
exports.InitialInvoicesApi = InitialInvoicesApi;
|
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL BillingService
|
|
3
|
+
* The EMIL BillingService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { ListInvoicesResponseClass } from '../models';
|
|
16
|
+
import { ListPoliciesBillingDatesResponseClass } from '../models';
|
|
17
|
+
/**
|
|
18
|
+
* InvoicesApi - axios parameter creator
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
24
|
+
* @summary List invoices
|
|
25
|
+
* @param {string} [authorization] Bearer Token
|
|
26
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
27
|
+
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
28
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
29
|
+
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
30
|
+
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
31
|
+
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
32
|
+
* @param {*} [options] Override http request option.
|
|
33
|
+
* @throws {RequiredError}
|
|
34
|
+
*/
|
|
35
|
+
listInvoices: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
36
|
+
/**
|
|
37
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
38
|
+
* @summary List policies billing dates
|
|
39
|
+
* @param {string} [authorization] Bearer Token
|
|
40
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
41
|
+
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
42
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
43
|
+
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
44
|
+
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
45
|
+
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
46
|
+
* @param {*} [options] Override http request option.
|
|
47
|
+
* @throws {RequiredError}
|
|
48
|
+
*/
|
|
49
|
+
listPoliciesBillingDates: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* InvoicesApi - functional programming interface
|
|
53
|
+
* @export
|
|
54
|
+
*/
|
|
55
|
+
export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
56
|
+
/**
|
|
57
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
58
|
+
* @summary List invoices
|
|
59
|
+
* @param {string} [authorization] Bearer Token
|
|
60
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
61
|
+
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
62
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
63
|
+
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
64
|
+
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
65
|
+
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
66
|
+
* @param {*} [options] Override http request option.
|
|
67
|
+
* @throws {RequiredError}
|
|
68
|
+
*/
|
|
69
|
+
listInvoices(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListInvoicesResponseClass>>;
|
|
70
|
+
/**
|
|
71
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
72
|
+
* @summary List policies billing dates
|
|
73
|
+
* @param {string} [authorization] Bearer Token
|
|
74
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
75
|
+
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
76
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
77
|
+
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
78
|
+
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
79
|
+
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
80
|
+
* @param {*} [options] Override http request option.
|
|
81
|
+
* @throws {RequiredError}
|
|
82
|
+
*/
|
|
83
|
+
listPoliciesBillingDates(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPoliciesBillingDatesResponseClass>>;
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* InvoicesApi - factory interface
|
|
87
|
+
* @export
|
|
88
|
+
*/
|
|
89
|
+
export declare const InvoicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
90
|
+
/**
|
|
91
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
92
|
+
* @summary List invoices
|
|
93
|
+
* @param {string} [authorization] Bearer Token
|
|
94
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
95
|
+
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
96
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
97
|
+
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
98
|
+
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
99
|
+
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
100
|
+
* @param {*} [options] Override http request option.
|
|
101
|
+
* @throws {RequiredError}
|
|
102
|
+
*/
|
|
103
|
+
listInvoices(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListInvoicesResponseClass>;
|
|
104
|
+
/**
|
|
105
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
106
|
+
* @summary List policies billing dates
|
|
107
|
+
* @param {string} [authorization] Bearer Token
|
|
108
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
109
|
+
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
110
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
111
|
+
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
112
|
+
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
113
|
+
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
114
|
+
* @param {*} [options] Override http request option.
|
|
115
|
+
* @throws {RequiredError}
|
|
116
|
+
*/
|
|
117
|
+
listPoliciesBillingDates(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListPoliciesBillingDatesResponseClass>;
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Request parameters for listInvoices operation in InvoicesApi.
|
|
121
|
+
* @export
|
|
122
|
+
* @interface InvoicesApiListInvoicesRequest
|
|
123
|
+
*/
|
|
124
|
+
export interface InvoicesApiListInvoicesRequest {
|
|
125
|
+
/**
|
|
126
|
+
* Bearer Token
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof InvoicesApiListInvoices
|
|
129
|
+
*/
|
|
130
|
+
readonly authorization?: string;
|
|
131
|
+
/**
|
|
132
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
133
|
+
* @type {any}
|
|
134
|
+
* @memberof InvoicesApiListInvoices
|
|
135
|
+
*/
|
|
136
|
+
readonly pageSize?: any;
|
|
137
|
+
/**
|
|
138
|
+
* A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
139
|
+
* @type {any}
|
|
140
|
+
* @memberof InvoicesApiListInvoices
|
|
141
|
+
*/
|
|
142
|
+
readonly pageToken?: any;
|
|
143
|
+
/**
|
|
144
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
145
|
+
* @type {any}
|
|
146
|
+
* @memberof InvoicesApiListInvoices
|
|
147
|
+
*/
|
|
148
|
+
readonly filter?: any;
|
|
149
|
+
/**
|
|
150
|
+
* Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
151
|
+
* @type {any}
|
|
152
|
+
* @memberof InvoicesApiListInvoices
|
|
153
|
+
*/
|
|
154
|
+
readonly search?: any;
|
|
155
|
+
/**
|
|
156
|
+
* The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
157
|
+
* @type {any}
|
|
158
|
+
* @memberof InvoicesApiListInvoices
|
|
159
|
+
*/
|
|
160
|
+
readonly order?: any;
|
|
161
|
+
/**
|
|
162
|
+
* Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
163
|
+
* @type {any}
|
|
164
|
+
* @memberof InvoicesApiListInvoices
|
|
165
|
+
*/
|
|
166
|
+
readonly expand?: any;
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* Request parameters for listPoliciesBillingDates operation in InvoicesApi.
|
|
170
|
+
* @export
|
|
171
|
+
* @interface InvoicesApiListPoliciesBillingDatesRequest
|
|
172
|
+
*/
|
|
173
|
+
export interface InvoicesApiListPoliciesBillingDatesRequest {
|
|
174
|
+
/**
|
|
175
|
+
* Bearer Token
|
|
176
|
+
* @type {string}
|
|
177
|
+
* @memberof InvoicesApiListPoliciesBillingDates
|
|
178
|
+
*/
|
|
179
|
+
readonly authorization?: string;
|
|
180
|
+
/**
|
|
181
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
182
|
+
* @type {any}
|
|
183
|
+
* @memberof InvoicesApiListPoliciesBillingDates
|
|
184
|
+
*/
|
|
185
|
+
readonly pageSize?: any;
|
|
186
|
+
/**
|
|
187
|
+
* A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
188
|
+
* @type {any}
|
|
189
|
+
* @memberof InvoicesApiListPoliciesBillingDates
|
|
190
|
+
*/
|
|
191
|
+
readonly pageToken?: any;
|
|
192
|
+
/**
|
|
193
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
194
|
+
* @type {any}
|
|
195
|
+
* @memberof InvoicesApiListPoliciesBillingDates
|
|
196
|
+
*/
|
|
197
|
+
readonly filter?: any;
|
|
198
|
+
/**
|
|
199
|
+
* Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
200
|
+
* @type {any}
|
|
201
|
+
* @memberof InvoicesApiListPoliciesBillingDates
|
|
202
|
+
*/
|
|
203
|
+
readonly search?: any;
|
|
204
|
+
/**
|
|
205
|
+
* The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
206
|
+
* @type {any}
|
|
207
|
+
* @memberof InvoicesApiListPoliciesBillingDates
|
|
208
|
+
*/
|
|
209
|
+
readonly order?: any;
|
|
210
|
+
/**
|
|
211
|
+
* Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
212
|
+
* @type {any}
|
|
213
|
+
* @memberof InvoicesApiListPoliciesBillingDates
|
|
214
|
+
*/
|
|
215
|
+
readonly expand?: any;
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* InvoicesApi - object-oriented interface
|
|
219
|
+
* @export
|
|
220
|
+
* @class InvoicesApi
|
|
221
|
+
* @extends {BaseAPI}
|
|
222
|
+
*/
|
|
223
|
+
export declare class InvoicesApi extends BaseAPI {
|
|
224
|
+
/**
|
|
225
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
226
|
+
* @summary List invoices
|
|
227
|
+
* @param {InvoicesApiListInvoicesRequest} requestParameters Request parameters.
|
|
228
|
+
* @param {*} [options] Override http request option.
|
|
229
|
+
* @throws {RequiredError}
|
|
230
|
+
* @memberof InvoicesApi
|
|
231
|
+
*/
|
|
232
|
+
listInvoices(requestParameters?: InvoicesApiListInvoicesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListInvoicesResponseClass, any>>;
|
|
233
|
+
/**
|
|
234
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
235
|
+
* @summary List policies billing dates
|
|
236
|
+
* @param {InvoicesApiListPoliciesBillingDatesRequest} requestParameters Request parameters.
|
|
237
|
+
* @param {*} [options] Override http request option.
|
|
238
|
+
* @throws {RequiredError}
|
|
239
|
+
* @memberof InvoicesApi
|
|
240
|
+
*/
|
|
241
|
+
listPoliciesBillingDates(requestParameters?: InvoicesApiListPoliciesBillingDatesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPoliciesBillingDatesResponseClass, any>>;
|
|
242
|
+
}
|