@ayasofyazilim/saas 0.0.9 → 0.0.10

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