@ayasofyazilim/saas 0.0.9 → 0.0.11
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/AccountService/AccountServiceClient.ts +65 -58
- package/AccountService/core/ApiError.ts +15 -19
- package/AccountService/core/ApiRequestOptions.ts +12 -16
- package/AccountService/core/ApiResult.ts +7 -11
- package/AccountService/core/BaseHttpRequest.ts +3 -7
- package/AccountService/core/CancelablePromise.ts +118 -123
- package/AccountService/core/FetchHttpRequest.ts +13 -17
- package/AccountService/core/OpenAPI.ts +48 -24
- package/AccountService/core/request.ts +280 -261
- package/AccountService/index.ts +9 -122
- package/AccountService/schemas.gen.ts +2331 -0
- package/AccountService/services.gen.ts +1453 -0
- package/AccountService/types.gen.ts +3176 -0
- package/AdministrationService/AdministrationServiceClient.ts +74 -67
- package/AdministrationService/core/ApiError.ts +15 -19
- package/AdministrationService/core/ApiRequestOptions.ts +12 -16
- package/AdministrationService/core/ApiResult.ts +7 -11
- package/AdministrationService/core/BaseHttpRequest.ts +3 -7
- package/AdministrationService/core/CancelablePromise.ts +118 -123
- package/AdministrationService/core/FetchHttpRequest.ts +13 -17
- package/AdministrationService/core/OpenAPI.ts +48 -24
- package/AdministrationService/core/request.ts +280 -261
- package/AdministrationService/index.ts +9 -118
- package/AdministrationService/schemas.gen.ts +2307 -0
- package/AdministrationService/services.gen.ts +1333 -0
- package/AdministrationService/types.gen.ts +2726 -0
- package/IdentityService/IdentityServiceClient.ts +77 -70
- package/IdentityService/core/ApiError.ts +15 -19
- package/IdentityService/core/ApiRequestOptions.ts +12 -16
- package/IdentityService/core/ApiResult.ts +7 -11
- package/IdentityService/core/BaseHttpRequest.ts +3 -7
- package/IdentityService/core/CancelablePromise.ts +118 -123
- package/IdentityService/core/FetchHttpRequest.ts +13 -17
- package/IdentityService/core/OpenAPI.ts +48 -24
- package/IdentityService/core/request.ts +280 -261
- package/IdentityService/index.ts +9 -133
- package/IdentityService/schemas.gen.ts +3170 -0
- package/IdentityService/services.gen.ts +2864 -0
- package/IdentityService/types.gen.ts +5342 -0
- package/ProjectService/ProjectServiceClient.ts +0 -3
- package/ProjectService/schemas.gen.ts +188 -109
- package/ProjectService/services.gen.ts +1 -48
- package/ProjectService/types.gen.ts +74 -187
- package/SaasService/SaasServiceClient.ts +65 -0
- package/SaasService/core/ApiError.ts +21 -0
- package/SaasService/core/ApiRequestOptions.ts +13 -0
- package/SaasService/core/ApiResult.ts +7 -0
- package/SaasService/core/BaseHttpRequest.ts +10 -0
- package/SaasService/core/CancelablePromise.ts +126 -0
- package/SaasService/core/FetchHttpRequest.ts +22 -0
- package/SaasService/core/OpenAPI.ts +56 -0
- package/SaasService/core/request.ts +341 -0
- package/SaasService/index.ts +9 -0
- package/SaasService/schemas.gen.ts +2148 -0
- package/SaasService/services.gen.ts +1326 -0
- package/SaasService/types.gen.ts +2735 -0
- package/package.json +9 -12
|
@@ -1,70 +1,77 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
export class IdentityServiceClient {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
1
|
+
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
2
|
+
import type { OpenAPIConfig } from './core/OpenAPI';
|
|
3
|
+
import { Interceptors } from './core/OpenAPI';
|
|
4
|
+
import { FetchHttpRequest } from './core/FetchHttpRequest';
|
|
5
|
+
|
|
6
|
+
import { AbpApiDefinitionService } from './services.gen';
|
|
7
|
+
import { AbpApplicationConfigurationService } from './services.gen';
|
|
8
|
+
import { AbpApplicationLocalizationService } from './services.gen';
|
|
9
|
+
import { AccountSettingsService } from './services.gen';
|
|
10
|
+
import { ApplicationsService } from './services.gen';
|
|
11
|
+
import { ClaimTypeService } from './services.gen';
|
|
12
|
+
import { ExternalLoginService } from './services.gen';
|
|
13
|
+
import { OrganizationUnitService } from './services.gen';
|
|
14
|
+
import { RoleService } from './services.gen';
|
|
15
|
+
import { ScopesService } from './services.gen';
|
|
16
|
+
import { SecurityLogService } from './services.gen';
|
|
17
|
+
import { SettingsService } from './services.gen';
|
|
18
|
+
import { UserService } from './services.gen';
|
|
19
|
+
import { UserIntegrationService } from './services.gen';
|
|
20
|
+
import { UserLookupService } from './services.gen';
|
|
21
|
+
|
|
22
|
+
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
23
|
+
|
|
24
|
+
export class IdentityServiceClient {
|
|
25
|
+
|
|
26
|
+
public readonly abpApiDefinition: AbpApiDefinitionService;
|
|
27
|
+
public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
|
|
28
|
+
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
29
|
+
public readonly accountSettings: AccountSettingsService;
|
|
30
|
+
public readonly applications: ApplicationsService;
|
|
31
|
+
public readonly claimType: ClaimTypeService;
|
|
32
|
+
public readonly externalLogin: ExternalLoginService;
|
|
33
|
+
public readonly organizationUnit: OrganizationUnitService;
|
|
34
|
+
public readonly role: RoleService;
|
|
35
|
+
public readonly scopes: ScopesService;
|
|
36
|
+
public readonly securityLog: SecurityLogService;
|
|
37
|
+
public readonly settings: SettingsService;
|
|
38
|
+
public readonly user: UserService;
|
|
39
|
+
public readonly userIntegration: UserIntegrationService;
|
|
40
|
+
public readonly userLookup: UserLookupService;
|
|
41
|
+
|
|
42
|
+
public readonly request: BaseHttpRequest;
|
|
43
|
+
|
|
44
|
+
constructor(config?: Partial<OpenAPIConfig>, HttpRequest: HttpRequestConstructor = FetchHttpRequest) {
|
|
45
|
+
this.request = new HttpRequest({
|
|
46
|
+
BASE: config?.BASE ?? '',
|
|
47
|
+
VERSION: config?.VERSION ?? '1',
|
|
48
|
+
WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
|
|
49
|
+
CREDENTIALS: config?.CREDENTIALS ?? 'include',
|
|
50
|
+
TOKEN: config?.TOKEN,
|
|
51
|
+
USERNAME: config?.USERNAME,
|
|
52
|
+
PASSWORD: config?.PASSWORD,
|
|
53
|
+
HEADERS: config?.HEADERS,
|
|
54
|
+
ENCODE_PATH: config?.ENCODE_PATH,
|
|
55
|
+
interceptors: {
|
|
56
|
+
request: config?.interceptors?.request ?? new Interceptors(),
|
|
57
|
+
response: config?.interceptors?.response ?? new Interceptors(),
|
|
58
|
+
},
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
this.abpApiDefinition = new AbpApiDefinitionService(this.request);
|
|
62
|
+
this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
|
|
63
|
+
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
64
|
+
this.accountSettings = new AccountSettingsService(this.request);
|
|
65
|
+
this.applications = new ApplicationsService(this.request);
|
|
66
|
+
this.claimType = new ClaimTypeService(this.request);
|
|
67
|
+
this.externalLogin = new ExternalLoginService(this.request);
|
|
68
|
+
this.organizationUnit = new OrganizationUnitService(this.request);
|
|
69
|
+
this.role = new RoleService(this.request);
|
|
70
|
+
this.scopes = new ScopesService(this.request);
|
|
71
|
+
this.securityLog = new SecurityLogService(this.request);
|
|
72
|
+
this.settings = new SettingsService(this.request);
|
|
73
|
+
this.user = new UserService(this.request);
|
|
74
|
+
this.userIntegration = new UserIntegrationService(this.request);
|
|
75
|
+
this.userLookup = new UserLookupService(this.request);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -1,25 +1,21 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
1
|
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
6
2
|
import type { ApiResult } from './ApiResult';
|
|
7
3
|
|
|
8
4
|
export class ApiError extends Error {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
5
|
+
public readonly url: string;
|
|
6
|
+
public readonly status: number;
|
|
7
|
+
public readonly statusText: string;
|
|
8
|
+
public readonly body: unknown;
|
|
9
|
+
public readonly request: ApiRequestOptions;
|
|
14
10
|
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
constructor(request: ApiRequestOptions, response: ApiResult, message: string) {
|
|
12
|
+
super(message);
|
|
17
13
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
14
|
+
this.name = 'ApiError';
|
|
15
|
+
this.url = response.url;
|
|
16
|
+
this.status = response.status;
|
|
17
|
+
this.statusText = response.statusText;
|
|
18
|
+
this.body = response.body;
|
|
19
|
+
this.request = request;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
1
|
export type ApiRequestOptions = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
};
|
|
2
|
+
readonly method: 'GET' | 'PUT' | 'POST' | 'DELETE' | 'OPTIONS' | 'HEAD' | 'PATCH';
|
|
3
|
+
readonly url: string;
|
|
4
|
+
readonly path?: Record<string, unknown>;
|
|
5
|
+
readonly cookies?: Record<string, unknown>;
|
|
6
|
+
readonly headers?: Record<string, unknown>;
|
|
7
|
+
readonly query?: Record<string, unknown>;
|
|
8
|
+
readonly formData?: Record<string, unknown>;
|
|
9
|
+
readonly body?: any;
|
|
10
|
+
readonly mediaType?: string;
|
|
11
|
+
readonly responseHeader?: string;
|
|
12
|
+
readonly errors?: Record<number, string>;
|
|
13
|
+
};
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
readonly status: number;
|
|
9
|
-
readonly statusText: string;
|
|
10
|
-
readonly body: any;
|
|
11
|
-
};
|
|
1
|
+
export type ApiResult<TData = any> = {
|
|
2
|
+
readonly body: TData;
|
|
3
|
+
readonly ok: boolean;
|
|
4
|
+
readonly status: number;
|
|
5
|
+
readonly statusText: string;
|
|
6
|
+
readonly url: string;
|
|
7
|
+
};
|
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
1
|
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
6
2
|
import type { CancelablePromise } from './CancelablePromise';
|
|
7
3
|
import type { OpenAPIConfig } from './OpenAPI';
|
|
8
4
|
|
|
9
5
|
export abstract class BaseHttpRequest {
|
|
10
6
|
|
|
11
|
-
|
|
7
|
+
constructor(public readonly config: OpenAPIConfig) {}
|
|
12
8
|
|
|
13
|
-
|
|
14
|
-
}
|
|
9
|
+
public abstract request<T>(options: ApiRequestOptions): CancelablePromise<T>;
|
|
10
|
+
}
|
|
@@ -1,131 +1,126 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
1
|
export class CancelError extends Error {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
2
|
+
constructor(message: string) {
|
|
3
|
+
super(message);
|
|
4
|
+
this.name = 'CancelError';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
public get isCancelled(): boolean {
|
|
8
|
+
return true;
|
|
9
|
+
}
|
|
15
10
|
}
|
|
16
11
|
|
|
17
12
|
export interface OnCancel {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
13
|
+
readonly isResolved: boolean;
|
|
14
|
+
readonly isRejected: boolean;
|
|
15
|
+
readonly isCancelled: boolean;
|
|
21
16
|
|
|
22
|
-
|
|
17
|
+
(cancelHandler: () => void): void;
|
|
23
18
|
}
|
|
24
19
|
|
|
25
20
|
export class CancelablePromise<T> implements Promise<T> {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
}
|
|
21
|
+
private _isResolved: boolean;
|
|
22
|
+
private _isRejected: boolean;
|
|
23
|
+
private _isCancelled: boolean;
|
|
24
|
+
readonly cancelHandlers: (() => void)[];
|
|
25
|
+
readonly promise: Promise<T>;
|
|
26
|
+
private _resolve?: (value: T | PromiseLike<T>) => void;
|
|
27
|
+
private _reject?: (reason?: unknown) => void;
|
|
28
|
+
|
|
29
|
+
constructor(
|
|
30
|
+
executor: (
|
|
31
|
+
resolve: (value: T | PromiseLike<T>) => void,
|
|
32
|
+
reject: (reason?: unknown) => void,
|
|
33
|
+
onCancel: OnCancel
|
|
34
|
+
) => void
|
|
35
|
+
) {
|
|
36
|
+
this._isResolved = false;
|
|
37
|
+
this._isRejected = false;
|
|
38
|
+
this._isCancelled = false;
|
|
39
|
+
this.cancelHandlers = [];
|
|
40
|
+
this.promise = new Promise<T>((resolve, reject) => {
|
|
41
|
+
this._resolve = resolve;
|
|
42
|
+
this._reject = reject;
|
|
43
|
+
|
|
44
|
+
const onResolve = (value: T | PromiseLike<T>): void => {
|
|
45
|
+
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
46
|
+
return;
|
|
47
|
+
}
|
|
48
|
+
this._isResolved = true;
|
|
49
|
+
if (this._resolve) this._resolve(value);
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const onReject = (reason?: unknown): void => {
|
|
53
|
+
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
this._isRejected = true;
|
|
57
|
+
if (this._reject) this._reject(reason);
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
const onCancel = (cancelHandler: () => void): void => {
|
|
61
|
+
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
62
|
+
return;
|
|
63
|
+
}
|
|
64
|
+
this.cancelHandlers.push(cancelHandler);
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
Object.defineProperty(onCancel, 'isResolved', {
|
|
68
|
+
get: (): boolean => this._isResolved,
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
Object.defineProperty(onCancel, 'isRejected', {
|
|
72
|
+
get: (): boolean => this._isRejected,
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
Object.defineProperty(onCancel, 'isCancelled', {
|
|
76
|
+
get: (): boolean => this._isCancelled,
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
return executor(onResolve, onReject, onCancel as OnCancel);
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
get [Symbol.toStringTag]() {
|
|
84
|
+
return "Cancellable Promise";
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
public then<TResult1 = T, TResult2 = never>(
|
|
88
|
+
onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null,
|
|
89
|
+
onRejected?: ((reason: unknown) => TResult2 | PromiseLike<TResult2>) | null
|
|
90
|
+
): Promise<TResult1 | TResult2> {
|
|
91
|
+
return this.promise.then(onFulfilled, onRejected);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
public catch<TResult = never>(
|
|
95
|
+
onRejected?: ((reason: unknown) => TResult | PromiseLike<TResult>) | null
|
|
96
|
+
): Promise<T | TResult> {
|
|
97
|
+
return this.promise.catch(onRejected);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
public finally(onFinally?: (() => void) | null): Promise<T> {
|
|
101
|
+
return this.promise.finally(onFinally);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
public cancel(): void {
|
|
105
|
+
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
106
|
+
return;
|
|
107
|
+
}
|
|
108
|
+
this._isCancelled = true;
|
|
109
|
+
if (this.cancelHandlers.length) {
|
|
110
|
+
try {
|
|
111
|
+
for (const cancelHandler of this.cancelHandlers) {
|
|
112
|
+
cancelHandler();
|
|
113
|
+
}
|
|
114
|
+
} catch (error) {
|
|
115
|
+
console.warn('Cancellation threw an error', error);
|
|
116
|
+
return;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
this.cancelHandlers.length = 0;
|
|
120
|
+
if (this._reject) this._reject(new CancelError('Request aborted'));
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
public get isCancelled(): boolean {
|
|
124
|
+
return this._isCancelled;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
1
|
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
6
2
|
import { BaseHttpRequest } from './BaseHttpRequest';
|
|
7
3
|
import type { CancelablePromise } from './CancelablePromise';
|
|
@@ -10,17 +6,17 @@ import { request as __request } from './request';
|
|
|
10
6
|
|
|
11
7
|
export class FetchHttpRequest extends BaseHttpRequest {
|
|
12
8
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
constructor(config: OpenAPIConfig) {
|
|
10
|
+
super(config);
|
|
11
|
+
}
|
|
16
12
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
13
|
+
/**
|
|
14
|
+
* Request method
|
|
15
|
+
* @param options The request options from the service
|
|
16
|
+
* @returns CancelablePromise<T>
|
|
17
|
+
* @throws ApiError
|
|
18
|
+
*/
|
|
19
|
+
public override request<T>(options: ApiRequestOptions): CancelablePromise<T> {
|
|
20
|
+
return __request(this.config, options);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -1,32 +1,56 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
1
|
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
6
2
|
|
|
7
|
-
type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
|
|
8
3
|
type Headers = Record<string, string>;
|
|
4
|
+
type Middleware<T> = (value: T) => T | Promise<T>;
|
|
5
|
+
type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
|
|
6
|
+
|
|
7
|
+
export class Interceptors<T> {
|
|
8
|
+
_fns: Middleware<T>[];
|
|
9
|
+
|
|
10
|
+
constructor() {
|
|
11
|
+
this._fns = [];
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
eject(fn: Middleware<T>) {
|
|
15
|
+
const index = this._fns.indexOf(fn);
|
|
16
|
+
if (index !== -1) {
|
|
17
|
+
this._fns = [...this._fns.slice(0, index), ...this._fns.slice(index + 1)];
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
use(fn: Middleware<T>) {
|
|
22
|
+
this._fns = [...this._fns, fn];
|
|
23
|
+
}
|
|
24
|
+
}
|
|
9
25
|
|
|
10
26
|
export type OpenAPIConfig = {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
27
|
+
BASE: string;
|
|
28
|
+
CREDENTIALS: 'include' | 'omit' | 'same-origin';
|
|
29
|
+
ENCODE_PATH?: ((path: string) => string) | undefined;
|
|
30
|
+
HEADERS?: Headers | Resolver<Headers> | undefined;
|
|
31
|
+
PASSWORD?: string | Resolver<string> | undefined;
|
|
32
|
+
TOKEN?: string | Resolver<string> | undefined;
|
|
33
|
+
USERNAME?: string | Resolver<string> | undefined;
|
|
34
|
+
VERSION: string;
|
|
35
|
+
WITH_CREDENTIALS: boolean;
|
|
36
|
+
interceptors: {
|
|
37
|
+
request: Interceptors<RequestInit>;
|
|
38
|
+
response: Interceptors<Response>;
|
|
39
|
+
};
|
|
20
40
|
};
|
|
21
41
|
|
|
22
42
|
export const OpenAPI: OpenAPIConfig = {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
43
|
+
BASE: '',
|
|
44
|
+
CREDENTIALS: 'include',
|
|
45
|
+
ENCODE_PATH: undefined,
|
|
46
|
+
HEADERS: undefined,
|
|
47
|
+
PASSWORD: undefined,
|
|
48
|
+
TOKEN: undefined,
|
|
49
|
+
USERNAME: undefined,
|
|
50
|
+
VERSION: '1',
|
|
51
|
+
WITH_CREDENTIALS: false,
|
|
52
|
+
interceptors: {
|
|
53
|
+
request: new Interceptors(),
|
|
54
|
+
response: new Interceptors(),
|
|
55
|
+
},
|
|
56
|
+
};
|