@emilgroup/partner-portal-sdk-node 1.0.1-beta.2 → 1.1.1-beta.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.
@@ -3,7 +3,6 @@
3
3
  .openapi-generator-ignore
4
4
  README.md
5
5
  api.ts
6
- api/health-check-api.ts
7
6
  api/intermediary-api.ts
8
7
  base.ts
9
8
  common.ts
@@ -15,8 +14,6 @@ models/account-policy-class.ts
15
14
  models/create-payment-method-request-dto.ts
16
15
  models/create-policy-request-dto.ts
17
16
  models/index.ts
18
- models/inline-response200.ts
19
- models/inline-response503.ts
20
17
  models/insured-object-type-class.ts
21
18
  models/invoice-class.ts
22
19
  models/invoice-item-class.ts
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/partner-portal-sdk-node@1.0.1-beta.2 --save
20
+ npm install @emilgroup/partner-portal-sdk-node@1.1.1-beta.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/partner-portal-sdk-node@1.0.1-beta.2
24
+ yarn add @emilgroup/partner-portal-sdk-node@1.1.1-beta.0
25
25
  ```
26
26
 
27
27
  And then you can import `IntermediaryApi`.
package/api.ts CHANGED
@@ -24,10 +24,8 @@ import FormData from 'form-data'
24
24
  import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
25
25
  // @ts-ignore
26
26
  import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base';
27
- import { HealthCheckApi } from './api';
28
27
  import { IntermediaryApi } from './api';
29
28
 
30
29
 
31
- export * from './api/health-check-api';
32
30
  export * from './api/intermediary-api';
33
31
 
package/base.ts CHANGED
@@ -44,6 +44,16 @@ export interface LoginClass {
44
44
  permissions: string;
45
45
  }
46
46
 
47
+ export interface SwitchWorkspaceRequest {
48
+ username: string;
49
+ targetWorkspace: string;
50
+ }
51
+
52
+ export interface SwitchWorkspaceResponseClass {
53
+ accessToken: string;
54
+ permissions: string;
55
+ }
56
+
47
57
  export enum Environment {
48
58
  Production = 'https://apiv2.emil.de',
49
59
  Test = 'https://apiv2-test.emil.de',
@@ -94,13 +104,13 @@ export class BaseAPI {
94
104
  this.attachInterceptor(axios);
95
105
  }
96
106
 
97
- async initialize(env: Environment = Environment.Production) {
107
+ async initialize(env: Environment = Environment.Production, targetWorkspace?: string) {
98
108
  this.configuration.basePath = env;
99
109
 
100
110
  await this.loadCredentials();
101
111
 
102
112
  if (this.username) {
103
- await this.authorize(this.username, this.password);
113
+ await this.authorize(this.username, this.password, targetWorkspace);
104
114
  this.password = null; // to avoid keeping password loaded in memory.
105
115
  }
106
116
  }
@@ -150,7 +160,7 @@ export class BaseAPI {
150
160
  this.configuration.basePath = env;
151
161
  }
152
162
 
153
- async authorize(username: string, password: string): Promise<void> {
163
+ async authorize(username: string, password: string, targetWorkspace?: string): Promise<void> {
154
164
  const options: AxiosRequestConfig = {
155
165
  method: 'POST',
156
166
  url: `${this.configuration.basePath}/authservice/v1/login`,
@@ -170,6 +180,38 @@ export class BaseAPI {
170
180
 
171
181
  const refreshToken = this.extractRefreshToken(response)
172
182
  this.configuration.refreshToken = refreshToken;
183
+
184
+ // Switch workspace if provided
185
+ if (targetWorkspace) {
186
+ await this.switchWorkspace(targetWorkspace);
187
+ }
188
+ }
189
+
190
+ async switchWorkspace(targetWorkspace: string): Promise<void> {
191
+ const options: AxiosRequestConfig = {
192
+ method: 'POST',
193
+ url: `${this.configuration.basePath}/authservice/v1/workspaces/switch`,
194
+ headers: {
195
+ 'Content-Type': 'application/json',
196
+ 'Authorization': `Bearer ${this.configuration.accessToken}`,
197
+ 'Cookie': this.configuration.refreshToken,
198
+ },
199
+ data: {
200
+ username: this.configuration.username,
201
+ targetWorkspace,
202
+ } as SwitchWorkspaceRequest,
203
+ withCredentials: true,
204
+ };
205
+
206
+ const response = await globalAxios.request<SwitchWorkspaceResponseClass>(options);
207
+
208
+ const { data: { accessToken } } = response;
209
+ this.configuration.accessToken = `Bearer ${accessToken}`;
210
+
211
+ const refreshToken = this.extractRefreshToken(response);
212
+ if (refreshToken) {
213
+ this.configuration.refreshToken = refreshToken;
214
+ }
173
215
  }
174
216
 
175
217
  async refreshTokenInternal(): Promise<string> {
@@ -278,7 +320,7 @@ export class BaseAPI {
278
320
  * @extends {Error}
279
321
  */
280
322
  export class RequiredError extends Error {
281
- name: "RequiredError" = "RequiredError";
323
+ override name: "RequiredError" = "RequiredError";
282
324
  constructor(public field: string, msg?: string) {
283
325
  super(msg);
284
326
  }
package/dist/api.d.ts CHANGED
@@ -9,5 +9,4 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- export * from './api/health-check-api';
13
12
  export * from './api/intermediary-api';
package/dist/api.js CHANGED
@@ -27,5 +27,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
27
27
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
28
28
  };
29
29
  Object.defineProperty(exports, "__esModule", { value: true });
30
- __exportStar(require("./api/health-check-api"), exports);
31
30
  __exportStar(require("./api/intermediary-api"), exports);
package/dist/base.d.ts CHANGED
@@ -26,6 +26,14 @@ export interface LoginClass {
26
26
  accessToken: string;
27
27
  permissions: string;
28
28
  }
29
+ export interface SwitchWorkspaceRequest {
30
+ username: string;
31
+ targetWorkspace: string;
32
+ }
33
+ export interface SwitchWorkspaceResponseClass {
34
+ accessToken: string;
35
+ permissions: string;
36
+ }
29
37
  export declare enum Environment {
30
38
  Production = "https://apiv2.emil.de",
31
39
  Test = "https://apiv2-test.emil.de",
@@ -55,12 +63,13 @@ export declare class BaseAPI {
55
63
  private username?;
56
64
  private password?;
57
65
  constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
58
- initialize(env?: Environment): Promise<void>;
66
+ initialize(env?: Environment, targetWorkspace?: string): Promise<void>;
59
67
  private loadCredentials;
60
68
  private readConfigFile;
61
69
  private readEnvVariables;
62
70
  selectEnvironment(env: Environment): void;
63
- authorize(username: string, password: string): Promise<void>;
71
+ authorize(username: string, password: string, targetWorkspace?: string): Promise<void>;
72
+ switchWorkspace(targetWorkspace: string): Promise<void>;
64
73
  refreshTokenInternal(): Promise<string>;
65
74
  private extractRefreshToken;
66
75
  getConfiguration(): Configuration;
package/dist/base.js CHANGED
@@ -162,7 +162,7 @@ var BaseAPI = /** @class */ (function () {
162
162
  }
163
163
  this.attachInterceptor(axios);
164
164
  }
165
- BaseAPI.prototype.initialize = function (env) {
165
+ BaseAPI.prototype.initialize = function (env, targetWorkspace) {
166
166
  if (env === void 0) { env = Environment.Production; }
167
167
  return __awaiter(this, void 0, void 0, function () {
168
168
  return __generator(this, function (_a) {
@@ -173,7 +173,7 @@ var BaseAPI = /** @class */ (function () {
173
173
  case 1:
174
174
  _a.sent();
175
175
  if (!this.username) return [3 /*break*/, 3];
176
- return [4 /*yield*/, this.authorize(this.username, this.password)];
176
+ return [4 /*yield*/, this.authorize(this.username, this.password, targetWorkspace)];
177
177
  case 2:
178
178
  _a.sent();
179
179
  this.password = null; // to avoid keeping password loaded in memory.
@@ -243,7 +243,7 @@ var BaseAPI = /** @class */ (function () {
243
243
  BaseAPI.prototype.selectEnvironment = function (env) {
244
244
  this.configuration.basePath = env;
245
245
  };
246
- BaseAPI.prototype.authorize = function (username, password) {
246
+ BaseAPI.prototype.authorize = function (username, password, targetWorkspace) {
247
247
  return __awaiter(this, void 0, void 0, function () {
248
248
  var options, response, accessToken, refreshToken;
249
249
  return __generator(this, function (_a) {
@@ -267,6 +267,45 @@ var BaseAPI = /** @class */ (function () {
267
267
  this.configuration.accessToken = "Bearer ".concat(accessToken);
268
268
  refreshToken = this.extractRefreshToken(response);
269
269
  this.configuration.refreshToken = refreshToken;
270
+ if (!targetWorkspace) return [3 /*break*/, 3];
271
+ return [4 /*yield*/, this.switchWorkspace(targetWorkspace)];
272
+ case 2:
273
+ _a.sent();
274
+ _a.label = 3;
275
+ case 3: return [2 /*return*/];
276
+ }
277
+ });
278
+ });
279
+ };
280
+ BaseAPI.prototype.switchWorkspace = function (targetWorkspace) {
281
+ return __awaiter(this, void 0, void 0, function () {
282
+ var options, response, accessToken, refreshToken;
283
+ return __generator(this, function (_a) {
284
+ switch (_a.label) {
285
+ case 0:
286
+ options = {
287
+ method: 'POST',
288
+ url: "".concat(this.configuration.basePath, "/authservice/v1/workspaces/switch"),
289
+ headers: {
290
+ 'Content-Type': 'application/json',
291
+ 'Authorization': "Bearer ".concat(this.configuration.accessToken),
292
+ 'Cookie': this.configuration.refreshToken,
293
+ },
294
+ data: {
295
+ username: this.configuration.username,
296
+ targetWorkspace: targetWorkspace,
297
+ },
298
+ withCredentials: true,
299
+ };
300
+ return [4 /*yield*/, axios_1.default.request(options)];
301
+ case 1:
302
+ response = _a.sent();
303
+ accessToken = response.data.accessToken;
304
+ this.configuration.accessToken = "Bearer ".concat(accessToken);
305
+ refreshToken = this.extractRefreshToken(response);
306
+ if (refreshToken) {
307
+ this.configuration.refreshToken = refreshToken;
308
+ }
270
309
  return [2 /*return*/];
271
310
  }
272
311
  });
@@ -2,8 +2,6 @@ export * from './account-class';
2
2
  export * from './account-policy-class';
3
3
  export * from './create-payment-method-request-dto';
4
4
  export * from './create-policy-request-dto';
5
- export * from './inline-response200';
6
- export * from './inline-response503';
7
5
  export * from './insured-object-type-class';
8
6
  export * from './invoice-class';
9
7
  export * from './invoice-item-class';
@@ -18,8 +18,6 @@ __exportStar(require("./account-class"), exports);
18
18
  __exportStar(require("./account-policy-class"), exports);
19
19
  __exportStar(require("./create-payment-method-request-dto"), exports);
20
20
  __exportStar(require("./create-policy-request-dto"), exports);
21
- __exportStar(require("./inline-response200"), exports);
22
- __exportStar(require("./inline-response503"), exports);
23
21
  __exportStar(require("./insured-object-type-class"), exports);
24
22
  __exportStar(require("./invoice-class"), exports);
25
23
  __exportStar(require("./invoice-item-class"), exports);
@@ -146,5 +146,7 @@ export type InvoiceClassTypeEnum = typeof InvoiceClassTypeEnum[keyof typeof Invo
146
146
  export declare const InvoiceClassStatusEnum: {
147
147
  readonly Open: "open";
148
148
  readonly Paid: "paid";
149
+ readonly PartiallyPaid: "partially-paid";
150
+ readonly Refunded: "refunded";
149
151
  };
150
152
  export type InvoiceClassStatusEnum = typeof InvoiceClassStatusEnum[keyof typeof InvoiceClassStatusEnum];
@@ -26,5 +26,7 @@ exports.InvoiceClassTypeEnum = {
26
26
  };
27
27
  exports.InvoiceClassStatusEnum = {
28
28
  Open: 'open',
29
- Paid: 'paid'
29
+ Paid: 'paid',
30
+ PartiallyPaid: 'partially-paid',
31
+ Refunded: 'refunded'
30
32
  };
@@ -43,5 +43,7 @@ export interface InvoiceStatusClass {
43
43
  export declare const InvoiceStatusClassStatusEnum: {
44
44
  readonly Open: "open";
45
45
  readonly Paid: "paid";
46
+ readonly PartiallyPaid: "partially-paid";
47
+ readonly Refunded: "refunded";
46
48
  };
47
49
  export type InvoiceStatusClassStatusEnum = typeof InvoiceStatusClassStatusEnum[keyof typeof InvoiceStatusClassStatusEnum];
@@ -16,5 +16,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.InvoiceStatusClassStatusEnum = void 0;
17
17
  exports.InvoiceStatusClassStatusEnum = {
18
18
  Open: 'open',
19
- Paid: 'paid'
19
+ Paid: 'paid',
20
+ PartiallyPaid: 'partially-paid',
21
+ Refunded: 'refunded'
20
22
  };
package/models/index.ts CHANGED
@@ -2,8 +2,6 @@ export * from './account-class';
2
2
  export * from './account-policy-class';
3
3
  export * from './create-payment-method-request-dto';
4
4
  export * from './create-policy-request-dto';
5
- export * from './inline-response200';
6
- export * from './inline-response503';
7
5
  export * from './insured-object-type-class';
8
6
  export * from './invoice-class';
9
7
  export * from './invoice-item-class';
@@ -152,7 +152,9 @@ export const InvoiceClassTypeEnum = {
152
152
  export type InvoiceClassTypeEnum = typeof InvoiceClassTypeEnum[keyof typeof InvoiceClassTypeEnum];
153
153
  export const InvoiceClassStatusEnum = {
154
154
  Open: 'open',
155
- Paid: 'paid'
155
+ Paid: 'paid',
156
+ PartiallyPaid: 'partially-paid',
157
+ Refunded: 'refunded'
156
158
  } as const;
157
159
 
158
160
  export type InvoiceClassStatusEnum = typeof InvoiceClassStatusEnum[keyof typeof InvoiceClassStatusEnum];
@@ -48,7 +48,9 @@ export interface InvoiceStatusClass {
48
48
 
49
49
  export const InvoiceStatusClassStatusEnum = {
50
50
  Open: 'open',
51
- Paid: 'paid'
51
+ Paid: 'paid',
52
+ PartiallyPaid: 'partially-paid',
53
+ Refunded: 'refunded'
52
54
  } as const;
53
55
 
54
56
  export type InvoiceStatusClassStatusEnum = typeof InvoiceStatusClassStatusEnum[keyof typeof InvoiceStatusClassStatusEnum];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/partner-portal-sdk-node",
3
- "version": "1.0.1-beta.2",
3
+ "version": "1.1.1-beta.0",
4
4
  "description": "OpenAPI client for @emilgroup/partner-portal-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
package/tsconfig.json CHANGED
@@ -5,6 +5,7 @@
5
5
  "module": "CommonJS",
6
6
  "noImplicitAny": true,
7
7
  "esModuleInterop": true,
8
+ "noImplicitOverride": true,
8
9
  "outDir": "dist",
9
10
  "rootDir": ".",
10
11
  "lib": [
@@ -1,128 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL PartnerPortal
5
- * The EMIL PartnerPortal API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
-
16
- import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
17
- import { Configuration } from '../configuration';
18
- // Some imports not used depending on template conditions
19
- // @ts-ignore
20
- import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
21
- // @ts-ignore
22
- import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
23
- // @ts-ignore
24
- import { InlineResponse200 } from '../models';
25
- // @ts-ignore
26
- import { InlineResponse503 } from '../models';
27
- // URLSearchParams not necessarily used
28
- // @ts-ignore
29
- import { URL, URLSearchParams } from 'url';
30
- const FormData = require('form-data');
31
- /**
32
- * HealthCheckApi - axios parameter creator
33
- * @export
34
- */
35
- export const HealthCheckApiAxiosParamCreator = function (configuration?: Configuration) {
36
- return {
37
- /**
38
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
39
- * @summary Health Check
40
- * @param {*} [options] Override http request option.
41
- * @throws {RequiredError}
42
- */
43
- check: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
44
- const localVarPath = `/partner-portal/health`;
45
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
46
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
47
- let baseOptions;
48
- let baseAccessToken;
49
- if (configuration) {
50
- baseOptions = configuration.baseOptions;
51
- baseAccessToken = configuration.accessToken;
52
- }
53
-
54
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
55
- const localVarHeaderParameter = {} as any;
56
- const localVarQueryParameter = {} as any;
57
-
58
-
59
-
60
- setSearchParams(localVarUrlObj, localVarQueryParameter);
61
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
62
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
63
-
64
- return {
65
- url: toPathString(localVarUrlObj),
66
- options: localVarRequestOptions,
67
- };
68
- },
69
- }
70
- };
71
-
72
- /**
73
- * HealthCheckApi - functional programming interface
74
- * @export
75
- */
76
- export const HealthCheckApiFp = function(configuration?: Configuration) {
77
- const localVarAxiosParamCreator = HealthCheckApiAxiosParamCreator(configuration)
78
- return {
79
- /**
80
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
81
- * @summary Health Check
82
- * @param {*} [options] Override http request option.
83
- * @throws {RequiredError}
84
- */
85
- async check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>> {
86
- const localVarAxiosArgs = await localVarAxiosParamCreator.check(options);
87
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
88
- },
89
- }
90
- };
91
-
92
- /**
93
- * HealthCheckApi - factory interface
94
- * @export
95
- */
96
- export const HealthCheckApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
97
- const localVarFp = HealthCheckApiFp(configuration)
98
- return {
99
- /**
100
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
101
- * @summary Health Check
102
- * @param {*} [options] Override http request option.
103
- * @throws {RequiredError}
104
- */
105
- check(options?: any): AxiosPromise<InlineResponse200> {
106
- return localVarFp.check(options).then((request) => request(axios, basePath));
107
- },
108
- };
109
- };
110
-
111
- /**
112
- * HealthCheckApi - object-oriented interface
113
- * @export
114
- * @class HealthCheckApi
115
- * @extends {BaseAPI}
116
- */
117
- export class HealthCheckApi extends BaseAPI {
118
- /**
119
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
120
- * @summary Health Check
121
- * @param {*} [options] Override http request option.
122
- * @throws {RequiredError}
123
- * @memberof HealthCheckApi
124
- */
125
- public check(options?: AxiosRequestConfig) {
126
- return HealthCheckApiFp(this.configuration).check(options).then((request) => request(this.axios, this.basePath));
127
- }
128
- }
@@ -1,70 +0,0 @@
1
- /**
2
- * EMIL PartnerPortal
3
- * The EMIL PartnerPortal 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 { InlineResponse200 } from '../models';
16
- /**
17
- * HealthCheckApi - axios parameter creator
18
- * @export
19
- */
20
- export declare const HealthCheckApiAxiosParamCreator: (configuration?: Configuration) => {
21
- /**
22
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
23
- * @summary Health Check
24
- * @param {*} [options] Override http request option.
25
- * @throws {RequiredError}
26
- */
27
- check: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
28
- };
29
- /**
30
- * HealthCheckApi - functional programming interface
31
- * @export
32
- */
33
- export declare const HealthCheckApiFp: (configuration?: Configuration) => {
34
- /**
35
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
36
- * @summary Health Check
37
- * @param {*} [options] Override http request option.
38
- * @throws {RequiredError}
39
- */
40
- check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
41
- };
42
- /**
43
- * HealthCheckApi - factory interface
44
- * @export
45
- */
46
- export declare const HealthCheckApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
47
- /**
48
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
49
- * @summary Health Check
50
- * @param {*} [options] Override http request option.
51
- * @throws {RequiredError}
52
- */
53
- check(options?: any): AxiosPromise<InlineResponse200>;
54
- };
55
- /**
56
- * HealthCheckApi - object-oriented interface
57
- * @export
58
- * @class HealthCheckApi
59
- * @extends {BaseAPI}
60
- */
61
- export declare class HealthCheckApi extends BaseAPI {
62
- /**
63
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
64
- * @summary Health Check
65
- * @param {*} [options] Override http request option.
66
- * @throws {RequiredError}
67
- * @memberof HealthCheckApi
68
- */
69
- check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any>>;
70
- }
@@ -1,204 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * EMIL PartnerPortal
6
- * The EMIL PartnerPortal 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.HealthCheckApi = exports.HealthCheckApiFactory = exports.HealthCheckApiFp = exports.HealthCheckApiAxiosParamCreator = 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
- * HealthCheckApi - axios parameter creator
94
- * @export
95
- */
96
- var HealthCheckApiAxiosParamCreator = function (configuration) {
97
- var _this = this;
98
- return {
99
- /**
100
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
101
- * @summary Health Check
102
- * @param {*} [options] Override http request option.
103
- * @throws {RequiredError}
104
- */
105
- check: function (options) {
106
- if (options === void 0) { options = {}; }
107
- return __awaiter(_this, void 0, void 0, function () {
108
- var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
109
- return __generator(this, function (_a) {
110
- localVarPath = "/partner-portal/health";
111
- localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
112
- if (configuration) {
113
- baseOptions = configuration.baseOptions;
114
- baseAccessToken = configuration.accessToken;
115
- }
116
- localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
117
- localVarHeaderParameter = {};
118
- localVarQueryParameter = {};
119
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
120
- headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
121
- localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
122
- return [2 /*return*/, {
123
- url: (0, common_1.toPathString)(localVarUrlObj),
124
- options: localVarRequestOptions,
125
- }];
126
- });
127
- });
128
- },
129
- };
130
- };
131
- exports.HealthCheckApiAxiosParamCreator = HealthCheckApiAxiosParamCreator;
132
- /**
133
- * HealthCheckApi - functional programming interface
134
- * @export
135
- */
136
- var HealthCheckApiFp = function (configuration) {
137
- var localVarAxiosParamCreator = (0, exports.HealthCheckApiAxiosParamCreator)(configuration);
138
- return {
139
- /**
140
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
141
- * @summary Health Check
142
- * @param {*} [options] Override http request option.
143
- * @throws {RequiredError}
144
- */
145
- check: function (options) {
146
- return __awaiter(this, void 0, void 0, function () {
147
- var localVarAxiosArgs;
148
- return __generator(this, function (_a) {
149
- switch (_a.label) {
150
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.check(options)];
151
- case 1:
152
- localVarAxiosArgs = _a.sent();
153
- return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
154
- }
155
- });
156
- });
157
- },
158
- };
159
- };
160
- exports.HealthCheckApiFp = HealthCheckApiFp;
161
- /**
162
- * HealthCheckApi - factory interface
163
- * @export
164
- */
165
- var HealthCheckApiFactory = function (configuration, basePath, axios) {
166
- var localVarFp = (0, exports.HealthCheckApiFp)(configuration);
167
- return {
168
- /**
169
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
170
- * @summary Health Check
171
- * @param {*} [options] Override http request option.
172
- * @throws {RequiredError}
173
- */
174
- check: function (options) {
175
- return localVarFp.check(options).then(function (request) { return request(axios, basePath); });
176
- },
177
- };
178
- };
179
- exports.HealthCheckApiFactory = HealthCheckApiFactory;
180
- /**
181
- * HealthCheckApi - object-oriented interface
182
- * @export
183
- * @class HealthCheckApi
184
- * @extends {BaseAPI}
185
- */
186
- var HealthCheckApi = /** @class */ (function (_super) {
187
- __extends(HealthCheckApi, _super);
188
- function HealthCheckApi() {
189
- return _super !== null && _super.apply(this, arguments) || this;
190
- }
191
- /**
192
- * Returns the health status of the partner portal service. This endpoint is used to monitor the operational status of the partner portal service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
193
- * @summary Health Check
194
- * @param {*} [options] Override http request option.
195
- * @throws {RequiredError}
196
- * @memberof HealthCheckApi
197
- */
198
- HealthCheckApi.prototype.check = function (options) {
199
- var _this = this;
200
- return (0, exports.HealthCheckApiFp)(this.configuration).check(options).then(function (request) { return request(_this.axios, _this.basePath); });
201
- };
202
- return HealthCheckApi;
203
- }(base_1.BaseAPI));
204
- exports.HealthCheckApi = HealthCheckApi;
@@ -1,54 +0,0 @@
1
- /**
2
- * EMIL PartnerPortal
3
- * The EMIL PartnerPortal 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
- /**
13
- *
14
- * @export
15
- * @interface InlineResponse200
16
- */
17
- export interface InlineResponse200 {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof InlineResponse200
22
- */
23
- 'status'?: string;
24
- /**
25
- *
26
- * @type {{ [key: string]: { [key: string]: object; }; }}
27
- * @memberof InlineResponse200
28
- */
29
- 'info'?: {
30
- [key: string]: {
31
- [key: string]: object;
32
- };
33
- } | null;
34
- /**
35
- *
36
- * @type {{ [key: string]: { [key: string]: object; }; }}
37
- * @memberof InlineResponse200
38
- */
39
- 'error'?: {
40
- [key: string]: {
41
- [key: string]: object;
42
- };
43
- } | null;
44
- /**
45
- *
46
- * @type {{ [key: string]: { [key: string]: object; }; }}
47
- * @memberof InlineResponse200
48
- */
49
- 'details'?: {
50
- [key: string]: {
51
- [key: string]: object;
52
- };
53
- };
54
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * EMIL PartnerPortal
6
- * The EMIL PartnerPortal 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
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,54 +0,0 @@
1
- /**
2
- * EMIL PartnerPortal
3
- * The EMIL PartnerPortal 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
- /**
13
- *
14
- * @export
15
- * @interface InlineResponse503
16
- */
17
- export interface InlineResponse503 {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof InlineResponse503
22
- */
23
- 'status'?: string;
24
- /**
25
- *
26
- * @type {{ [key: string]: { [key: string]: object; }; }}
27
- * @memberof InlineResponse503
28
- */
29
- 'info'?: {
30
- [key: string]: {
31
- [key: string]: object;
32
- };
33
- } | null;
34
- /**
35
- *
36
- * @type {{ [key: string]: { [key: string]: object; }; }}
37
- * @memberof InlineResponse503
38
- */
39
- 'error'?: {
40
- [key: string]: {
41
- [key: string]: object;
42
- };
43
- } | null;
44
- /**
45
- *
46
- * @type {{ [key: string]: { [key: string]: object; }; }}
47
- * @memberof InlineResponse503
48
- */
49
- 'details'?: {
50
- [key: string]: {
51
- [key: string]: object;
52
- };
53
- };
54
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * EMIL PartnerPortal
6
- * The EMIL PartnerPortal 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
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,48 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL PartnerPortal
5
- * The EMIL PartnerPortal API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
-
16
-
17
- /**
18
- *
19
- * @export
20
- * @interface InlineResponse200
21
- */
22
- export interface InlineResponse200 {
23
- /**
24
- *
25
- * @type {string}
26
- * @memberof InlineResponse200
27
- */
28
- 'status'?: string;
29
- /**
30
- *
31
- * @type {{ [key: string]: { [key: string]: object; }; }}
32
- * @memberof InlineResponse200
33
- */
34
- 'info'?: { [key: string]: { [key: string]: object; }; } | null;
35
- /**
36
- *
37
- * @type {{ [key: string]: { [key: string]: object; }; }}
38
- * @memberof InlineResponse200
39
- */
40
- 'error'?: { [key: string]: { [key: string]: object; }; } | null;
41
- /**
42
- *
43
- * @type {{ [key: string]: { [key: string]: object; }; }}
44
- * @memberof InlineResponse200
45
- */
46
- 'details'?: { [key: string]: { [key: string]: object; }; };
47
- }
48
-
@@ -1,48 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL PartnerPortal
5
- * The EMIL PartnerPortal API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
-
16
-
17
- /**
18
- *
19
- * @export
20
- * @interface InlineResponse503
21
- */
22
- export interface InlineResponse503 {
23
- /**
24
- *
25
- * @type {string}
26
- * @memberof InlineResponse503
27
- */
28
- 'status'?: string;
29
- /**
30
- *
31
- * @type {{ [key: string]: { [key: string]: object; }; }}
32
- * @memberof InlineResponse503
33
- */
34
- 'info'?: { [key: string]: { [key: string]: object; }; } | null;
35
- /**
36
- *
37
- * @type {{ [key: string]: { [key: string]: object; }; }}
38
- * @memberof InlineResponse503
39
- */
40
- 'error'?: { [key: string]: { [key: string]: object; }; } | null;
41
- /**
42
- *
43
- * @type {{ [key: string]: { [key: string]: object; }; }}
44
- * @memberof InlineResponse503
45
- */
46
- 'details'?: { [key: string]: { [key: string]: object; }; };
47
- }
48
-