@ayasofyazilim/saas 0.0.3 → 0.0.4
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/index.ts +117 -115
- package/AccountService/services/AccountService.ts +2 -2
- package/AccountService/services/UserService.ts +8 -8
- package/AdministrationService/AdministrationServiceClient.ts +67 -0
- package/AdministrationService/core/ApiError.ts +25 -0
- package/AdministrationService/core/ApiRequestOptions.ts +17 -0
- package/AdministrationService/core/ApiResult.ts +11 -0
- package/AdministrationService/core/BaseHttpRequest.ts +14 -0
- package/AdministrationService/core/CancelablePromise.ts +131 -0
- package/AdministrationService/core/FetchHttpRequest.ts +26 -0
- package/AdministrationService/core/OpenAPI.ts +32 -0
- package/AdministrationService/core/request.ts +322 -0
- package/AdministrationService/index.ts +123 -0
- package/AdministrationService/models/System_Net_HttpStatusCode.ts +67 -0
- package/AdministrationService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
- package/AdministrationService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogActionDto.ts +16 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogDto.ts +33 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeDto.ts +18 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_EntityPropertyChangeDto.ts +14 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_GetErrorRateOutput.ts +8 -0
- package/AdministrationService/models/Volo_Abp_Auditing_EntityChangeType.ts +9 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureDto.ts +17 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureGroupDto.ts +11 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureProviderDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_GetFeatureListResultDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeatureDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeaturesDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_Gdpr_DownloadTokenResultDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_Gdpr_GdprRequestDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
- package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
- package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
- package/AdministrationService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto.ts +13 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageDto.ts +18 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto.ts +13 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto.ts +12 -0
- package/AdministrationService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
- package/AdministrationService/models/Volo_Abp_NameValue.ts +9 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto.ts +14 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGroupDto.ts +13 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_ProviderInfoDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionsDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_SettingManagement_EmailSettingsDto.ts +16 -0
- package/AdministrationService/models/Volo_Abp_SettingManagement_SendTestEmailInput.ts +11 -0
- package/AdministrationService/models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto.ts +16 -0
- package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput.ts +9 -0
- package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto.ts +13 -0
- package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput.ts +10 -0
- package/AdministrationService/models/Volo_Abp_Validation_StringValues_IStringValueType.ts +11 -0
- package/AdministrationService/models/Volo_Abp_Validation_StringValues_IValueValidator.ts +9 -0
- package/AdministrationService/services/AbpApiDefinitionService.ts +34 -0
- package/AdministrationService/services/AbpApplicationConfigurationService.ts +34 -0
- package/AdministrationService/services/AbpApplicationLocalizationService.ts +37 -0
- package/AdministrationService/services/AbpTenantService.ts +58 -0
- package/AdministrationService/services/AuditLogsService.ts +286 -0
- package/AdministrationService/services/EmailSettingsService.ts +76 -0
- package/AdministrationService/services/FeaturesService.ts +96 -0
- package/AdministrationService/services/GdprRequestService.ts +152 -0
- package/AdministrationService/services/LanguageTextsService.ts +157 -0
- package/AdministrationService/services/LanguagesService.ts +257 -0
- package/AdministrationService/services/PermissionsService.ts +69 -0
- package/AdministrationService/services/TextTemplateContentsService.ts +85 -0
- package/AdministrationService/services/TextTemplateDefinitionsService.ts +69 -0
- package/AdministrationService/services/TimeZoneSettingsService.ts +70 -0
- package/ProjectService/ProjectServiceClient.ts +6 -0
- package/ProjectService/index.ts +11 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSectionRelations_CreateProjectSectionRelationDto.ts +10 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto.ts +11 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSectionRelations_UpdateProjectSectionRelationDto.ts +10 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_CreateProjectSectionDto.ts +10 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_ProjectSectionDetailDto.ts +9 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_ProjectSectionDto.ts +11 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_UpdateProjectSectionDto.ts +10 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_Projects_ProjectDto.ts +2 -0
- package/ProjectService/services/ProjectSectionRelationServiceService.ts +143 -0
- package/ProjectService/services/ProjectSectionServiceService.ts +143 -0
- package/package.json +9 -6
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
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
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface OnCancel {
|
|
18
|
+
readonly isResolved: boolean;
|
|
19
|
+
readonly isRejected: boolean;
|
|
20
|
+
readonly isCancelled: boolean;
|
|
21
|
+
|
|
22
|
+
(cancelHandler: () => void): void;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
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
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
6
|
+
import { BaseHttpRequest } from './BaseHttpRequest';
|
|
7
|
+
import type { CancelablePromise } from './CancelablePromise';
|
|
8
|
+
import type { OpenAPIConfig } from './OpenAPI';
|
|
9
|
+
import { request as __request } from './request';
|
|
10
|
+
|
|
11
|
+
export class FetchHttpRequest extends BaseHttpRequest {
|
|
12
|
+
|
|
13
|
+
constructor(config: OpenAPIConfig) {
|
|
14
|
+
super(config);
|
|
15
|
+
}
|
|
16
|
+
|
|
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
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
6
|
+
|
|
7
|
+
type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
|
|
8
|
+
type Headers = Record<string, string>;
|
|
9
|
+
|
|
10
|
+
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;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
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
|
+
};
|
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import { ApiError } from './ApiError';
|
|
6
|
+
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
7
|
+
import type { ApiResult } from './ApiResult';
|
|
8
|
+
import { CancelablePromise } from './CancelablePromise';
|
|
9
|
+
import type { OnCancel } from './CancelablePromise';
|
|
10
|
+
import type { OpenAPIConfig } from './OpenAPI';
|
|
11
|
+
|
|
12
|
+
export const isDefined = <T>(value: T | null | undefined): value is Exclude<T, null | undefined> => {
|
|
13
|
+
return value !== undefined && value !== null;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const isString = (value: any): value is string => {
|
|
17
|
+
return typeof value === 'string';
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export const isStringWithValue = (value: any): value is string => {
|
|
21
|
+
return isString(value) && value !== '';
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export const isBlob = (value: any): value is Blob => {
|
|
25
|
+
return (
|
|
26
|
+
typeof value === 'object' &&
|
|
27
|
+
typeof value.type === 'string' &&
|
|
28
|
+
typeof value.stream === 'function' &&
|
|
29
|
+
typeof value.arrayBuffer === 'function' &&
|
|
30
|
+
typeof value.constructor === 'function' &&
|
|
31
|
+
typeof value.constructor.name === 'string' &&
|
|
32
|
+
/^(Blob|File)$/.test(value.constructor.name) &&
|
|
33
|
+
/^(Blob|File)$/.test(value[Symbol.toStringTag])
|
|
34
|
+
);
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export const isFormData = (value: any): value is FormData => {
|
|
38
|
+
return value instanceof FormData;
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
export const base64 = (str: string): string => {
|
|
42
|
+
try {
|
|
43
|
+
return btoa(str);
|
|
44
|
+
} catch (err) {
|
|
45
|
+
// @ts-ignore
|
|
46
|
+
return Buffer.from(str).toString('base64');
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export const getQueryString = (params: Record<string, any>): string => {
|
|
51
|
+
const qs: string[] = [];
|
|
52
|
+
|
|
53
|
+
const append = (key: string, value: any) => {
|
|
54
|
+
qs.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(value))}`);
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
const process = (key: string, value: any) => {
|
|
58
|
+
if (isDefined(value)) {
|
|
59
|
+
if (Array.isArray(value)) {
|
|
60
|
+
value.forEach(v => {
|
|
61
|
+
process(key, v);
|
|
62
|
+
});
|
|
63
|
+
} else if (typeof value === 'object') {
|
|
64
|
+
Object.entries(value).forEach(([k, v]) => {
|
|
65
|
+
process(`${key}[${k}]`, v);
|
|
66
|
+
});
|
|
67
|
+
} else {
|
|
68
|
+
append(key, value);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
Object.entries(params).forEach(([key, value]) => {
|
|
74
|
+
process(key, value);
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
if (qs.length > 0) {
|
|
78
|
+
return `?${qs.join('&')}`;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
return '';
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
const getUrl = (config: OpenAPIConfig, options: ApiRequestOptions): string => {
|
|
85
|
+
const encoder = config.ENCODE_PATH || encodeURI;
|
|
86
|
+
|
|
87
|
+
const path = options.url
|
|
88
|
+
.replace('{api-version}', config.VERSION)
|
|
89
|
+
.replace(/{(.*?)}/g, (substring: string, group: string) => {
|
|
90
|
+
if (options.path?.hasOwnProperty(group)) {
|
|
91
|
+
return encoder(String(options.path[group]));
|
|
92
|
+
}
|
|
93
|
+
return substring;
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
const url = `${config.BASE}${path}`;
|
|
97
|
+
if (options.query) {
|
|
98
|
+
return `${url}${getQueryString(options.query)}`;
|
|
99
|
+
}
|
|
100
|
+
return url;
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
export const getFormData = (options: ApiRequestOptions): FormData | undefined => {
|
|
104
|
+
if (options.formData) {
|
|
105
|
+
const formData = new FormData();
|
|
106
|
+
|
|
107
|
+
const process = (key: string, value: any) => {
|
|
108
|
+
if (isString(value) || isBlob(value)) {
|
|
109
|
+
formData.append(key, value);
|
|
110
|
+
} else {
|
|
111
|
+
formData.append(key, JSON.stringify(value));
|
|
112
|
+
}
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
Object.entries(options.formData)
|
|
116
|
+
.filter(([_, value]) => isDefined(value))
|
|
117
|
+
.forEach(([key, value]) => {
|
|
118
|
+
if (Array.isArray(value)) {
|
|
119
|
+
value.forEach(v => process(key, v));
|
|
120
|
+
} else {
|
|
121
|
+
process(key, value);
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
return formData;
|
|
126
|
+
}
|
|
127
|
+
return undefined;
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
|
|
131
|
+
|
|
132
|
+
export const resolve = async <T>(options: ApiRequestOptions, resolver?: T | Resolver<T>): Promise<T | undefined> => {
|
|
133
|
+
if (typeof resolver === 'function') {
|
|
134
|
+
return (resolver as Resolver<T>)(options);
|
|
135
|
+
}
|
|
136
|
+
return resolver;
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
export const getHeaders = async (config: OpenAPIConfig, options: ApiRequestOptions): Promise<Headers> => {
|
|
140
|
+
const [token, username, password, additionalHeaders] = await Promise.all([
|
|
141
|
+
resolve(options, config.TOKEN),
|
|
142
|
+
resolve(options, config.USERNAME),
|
|
143
|
+
resolve(options, config.PASSWORD),
|
|
144
|
+
resolve(options, config.HEADERS),
|
|
145
|
+
]);
|
|
146
|
+
|
|
147
|
+
const headers = Object.entries({
|
|
148
|
+
Accept: 'application/json',
|
|
149
|
+
...additionalHeaders,
|
|
150
|
+
...options.headers,
|
|
151
|
+
})
|
|
152
|
+
.filter(([_, value]) => isDefined(value))
|
|
153
|
+
.reduce((headers, [key, value]) => ({
|
|
154
|
+
...headers,
|
|
155
|
+
[key]: String(value),
|
|
156
|
+
}), {} as Record<string, string>);
|
|
157
|
+
|
|
158
|
+
if (isStringWithValue(token)) {
|
|
159
|
+
headers['Authorization'] = `Bearer ${token}`;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
if (isStringWithValue(username) && isStringWithValue(password)) {
|
|
163
|
+
const credentials = base64(`${username}:${password}`);
|
|
164
|
+
headers['Authorization'] = `Basic ${credentials}`;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
if (options.body) {
|
|
168
|
+
if (options.mediaType) {
|
|
169
|
+
headers['Content-Type'] = options.mediaType;
|
|
170
|
+
} else if (isBlob(options.body)) {
|
|
171
|
+
headers['Content-Type'] = options.body.type || 'application/octet-stream';
|
|
172
|
+
} else if (isString(options.body)) {
|
|
173
|
+
headers['Content-Type'] = 'text/plain';
|
|
174
|
+
} else if (!isFormData(options.body)) {
|
|
175
|
+
headers['Content-Type'] = 'application/json';
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
return new Headers(headers);
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
export const getRequestBody = (options: ApiRequestOptions): any => {
|
|
183
|
+
if (options.body !== undefined) {
|
|
184
|
+
if (options.mediaType?.includes('/json')) {
|
|
185
|
+
return JSON.stringify(options.body)
|
|
186
|
+
} else if (isString(options.body) || isBlob(options.body) || isFormData(options.body)) {
|
|
187
|
+
return options.body;
|
|
188
|
+
} else {
|
|
189
|
+
return JSON.stringify(options.body);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
return undefined;
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
export const sendRequest = async (
|
|
196
|
+
config: OpenAPIConfig,
|
|
197
|
+
options: ApiRequestOptions,
|
|
198
|
+
url: string,
|
|
199
|
+
body: any,
|
|
200
|
+
formData: FormData | undefined,
|
|
201
|
+
headers: Headers,
|
|
202
|
+
onCancel: OnCancel
|
|
203
|
+
): Promise<Response> => {
|
|
204
|
+
const controller = new AbortController();
|
|
205
|
+
|
|
206
|
+
const request: RequestInit = {
|
|
207
|
+
headers,
|
|
208
|
+
body: body ?? formData,
|
|
209
|
+
method: options.method,
|
|
210
|
+
signal: controller.signal,
|
|
211
|
+
};
|
|
212
|
+
|
|
213
|
+
if (config.WITH_CREDENTIALS) {
|
|
214
|
+
request.credentials = config.CREDENTIALS;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
onCancel(() => controller.abort());
|
|
218
|
+
|
|
219
|
+
return await fetch(url, request);
|
|
220
|
+
};
|
|
221
|
+
|
|
222
|
+
export const getResponseHeader = (response: Response, responseHeader?: string): string | undefined => {
|
|
223
|
+
if (responseHeader) {
|
|
224
|
+
const content = response.headers.get(responseHeader);
|
|
225
|
+
if (isString(content)) {
|
|
226
|
+
return content;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
return undefined;
|
|
230
|
+
};
|
|
231
|
+
|
|
232
|
+
export const getResponseBody = async (response: Response): Promise<any> => {
|
|
233
|
+
if (response.status !== 204) {
|
|
234
|
+
try {
|
|
235
|
+
const contentType = response.headers.get('Content-Type');
|
|
236
|
+
if (contentType) {
|
|
237
|
+
const jsonTypes = ['application/json', 'application/problem+json']
|
|
238
|
+
const isJSON = jsonTypes.some(type => contentType.toLowerCase().startsWith(type));
|
|
239
|
+
if (isJSON) {
|
|
240
|
+
return await response.json();
|
|
241
|
+
} else {
|
|
242
|
+
return await response.text();
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
} catch (error) {
|
|
246
|
+
console.error(error);
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
return undefined;
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
export const catchErrorCodes = (options: ApiRequestOptions, result: ApiResult): void => {
|
|
253
|
+
const errors: Record<number, string> = {
|
|
254
|
+
400: 'Bad Request',
|
|
255
|
+
401: 'Unauthorized',
|
|
256
|
+
403: 'Forbidden',
|
|
257
|
+
404: 'Not Found',
|
|
258
|
+
500: 'Internal Server Error',
|
|
259
|
+
502: 'Bad Gateway',
|
|
260
|
+
503: 'Service Unavailable',
|
|
261
|
+
...options.errors,
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
const error = errors[result.status];
|
|
265
|
+
if (error) {
|
|
266
|
+
throw new ApiError(options, result, error);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
if (!result.ok) {
|
|
270
|
+
const errorStatus = result.status ?? 'unknown';
|
|
271
|
+
const errorStatusText = result.statusText ?? 'unknown';
|
|
272
|
+
const errorBody = (() => {
|
|
273
|
+
try {
|
|
274
|
+
return JSON.stringify(result.body, null, 2);
|
|
275
|
+
} catch (e) {
|
|
276
|
+
return undefined;
|
|
277
|
+
}
|
|
278
|
+
})();
|
|
279
|
+
|
|
280
|
+
throw new ApiError(options, result,
|
|
281
|
+
`Generic Error: status: ${errorStatus}; status text: ${errorStatusText}; body: ${errorBody}`
|
|
282
|
+
);
|
|
283
|
+
}
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* Request method
|
|
288
|
+
* @param config The OpenAPI configuration object
|
|
289
|
+
* @param options The request options from the service
|
|
290
|
+
* @returns CancelablePromise<T>
|
|
291
|
+
* @throws ApiError
|
|
292
|
+
*/
|
|
293
|
+
export const request = <T>(config: OpenAPIConfig, options: ApiRequestOptions): CancelablePromise<T> => {
|
|
294
|
+
return new CancelablePromise(async (resolve, reject, onCancel) => {
|
|
295
|
+
try {
|
|
296
|
+
const url = getUrl(config, options);
|
|
297
|
+
const formData = getFormData(options);
|
|
298
|
+
const body = getRequestBody(options);
|
|
299
|
+
const headers = await getHeaders(config, options);
|
|
300
|
+
|
|
301
|
+
if (!onCancel.isCancelled) {
|
|
302
|
+
const response = await sendRequest(config, options, url, body, formData, headers, onCancel);
|
|
303
|
+
const responseBody = await getResponseBody(response);
|
|
304
|
+
const responseHeader = getResponseHeader(response, options.responseHeader);
|
|
305
|
+
|
|
306
|
+
const result: ApiResult = {
|
|
307
|
+
url,
|
|
308
|
+
ok: response.ok,
|
|
309
|
+
status: response.status,
|
|
310
|
+
statusText: response.statusText,
|
|
311
|
+
body: responseHeader ?? responseBody,
|
|
312
|
+
};
|
|
313
|
+
|
|
314
|
+
catchErrorCodes(options, result);
|
|
315
|
+
|
|
316
|
+
resolve(result.body);
|
|
317
|
+
}
|
|
318
|
+
} catch (error) {
|
|
319
|
+
reject(error);
|
|
320
|
+
}
|
|
321
|
+
});
|
|
322
|
+
};
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export { AdministrationServiceClient } from './AdministrationServiceClient';
|
|
6
|
+
|
|
7
|
+
export { ApiError } from './core/ApiError';
|
|
8
|
+
export { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
9
|
+
export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
10
|
+
export { OpenAPI } from './core/OpenAPI';
|
|
11
|
+
export type { OpenAPIConfig } from './core/OpenAPI';
|
|
12
|
+
|
|
13
|
+
export { System_Net_HttpStatusCode } from './models/System_Net_HttpStatusCode';
|
|
14
|
+
export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from './models/Volo_Abp_Application_Dtos_ListResultDto_1';
|
|
15
|
+
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from './models/Volo_Abp_Application_Dtos_PagedResultDto_1';
|
|
16
|
+
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from './models/Volo_Abp_Application_Dtos_PagedResultDto_1';
|
|
17
|
+
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from './models/Volo_Abp_Application_Dtos_PagedResultDto_1';
|
|
18
|
+
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from './models/Volo_Abp_Application_Dtos_PagedResultDto_1';
|
|
19
|
+
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from './models/Volo_Abp_Application_Dtos_PagedResultDto_1';
|
|
20
|
+
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from './models/Volo_Abp_Application_Dtos_PagedResultDto_1';
|
|
21
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto';
|
|
22
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto';
|
|
23
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto';
|
|
24
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto';
|
|
25
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto';
|
|
26
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto';
|
|
27
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto';
|
|
28
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto';
|
|
29
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto';
|
|
30
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto';
|
|
31
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto';
|
|
32
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto';
|
|
33
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone';
|
|
34
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto';
|
|
35
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto';
|
|
36
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto';
|
|
37
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto';
|
|
38
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto';
|
|
39
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto';
|
|
40
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto';
|
|
41
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto';
|
|
42
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto';
|
|
43
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto';
|
|
44
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto';
|
|
45
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto';
|
|
46
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto';
|
|
47
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto';
|
|
48
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto';
|
|
49
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto';
|
|
50
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone';
|
|
51
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto';
|
|
52
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone';
|
|
53
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto } from './models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto';
|
|
54
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto } from './models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto';
|
|
55
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto } from './models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto';
|
|
56
|
+
export { Volo_Abp_Auditing_EntityChangeType } from './models/Volo_Abp_Auditing_EntityChangeType';
|
|
57
|
+
export type { Volo_Abp_AuditLogging_AuditLogActionDto } from './models/Volo_Abp_AuditLogging_AuditLogActionDto';
|
|
58
|
+
export type { Volo_Abp_AuditLogging_AuditLogDto } from './models/Volo_Abp_AuditLogging_AuditLogDto';
|
|
59
|
+
export type { Volo_Abp_AuditLogging_EntityChangeDto } from './models/Volo_Abp_AuditLogging_EntityChangeDto';
|
|
60
|
+
export type { Volo_Abp_AuditLogging_EntityChangeWithUsernameDto } from './models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto';
|
|
61
|
+
export type { Volo_Abp_AuditLogging_EntityPropertyChangeDto } from './models/Volo_Abp_AuditLogging_EntityPropertyChangeDto';
|
|
62
|
+
export type { Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput } from './models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput';
|
|
63
|
+
export type { Volo_Abp_AuditLogging_GetErrorRateOutput } from './models/Volo_Abp_AuditLogging_GetErrorRateOutput';
|
|
64
|
+
export type { Volo_Abp_FeatureManagement_FeatureDto } from './models/Volo_Abp_FeatureManagement_FeatureDto';
|
|
65
|
+
export type { Volo_Abp_FeatureManagement_FeatureGroupDto } from './models/Volo_Abp_FeatureManagement_FeatureGroupDto';
|
|
66
|
+
export type { Volo_Abp_FeatureManagement_FeatureProviderDto } from './models/Volo_Abp_FeatureManagement_FeatureProviderDto';
|
|
67
|
+
export type { Volo_Abp_FeatureManagement_GetFeatureListResultDto } from './models/Volo_Abp_FeatureManagement_GetFeatureListResultDto';
|
|
68
|
+
export type { Volo_Abp_FeatureManagement_UpdateFeatureDto } from './models/Volo_Abp_FeatureManagement_UpdateFeatureDto';
|
|
69
|
+
export type { Volo_Abp_FeatureManagement_UpdateFeaturesDto } from './models/Volo_Abp_FeatureManagement_UpdateFeaturesDto';
|
|
70
|
+
export type { Volo_Abp_Gdpr_DownloadTokenResultDto } from './models/Volo_Abp_Gdpr_DownloadTokenResultDto';
|
|
71
|
+
export type { Volo_Abp_Gdpr_GdprRequestDto } from './models/Volo_Abp_Gdpr_GdprRequestDto';
|
|
72
|
+
export type { Volo_Abp_Http_Modeling_ActionApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel';
|
|
73
|
+
export type { Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel';
|
|
74
|
+
export type { Volo_Abp_Http_Modeling_ControllerApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel';
|
|
75
|
+
export type { Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel';
|
|
76
|
+
export type { Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel';
|
|
77
|
+
export type { Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel';
|
|
78
|
+
export type { Volo_Abp_Http_Modeling_ModuleApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel';
|
|
79
|
+
export type { Volo_Abp_Http_Modeling_ParameterApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel';
|
|
80
|
+
export type { Volo_Abp_Http_Modeling_PropertyApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel';
|
|
81
|
+
export type { Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel';
|
|
82
|
+
export type { Volo_Abp_Http_Modeling_TypeApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel';
|
|
83
|
+
export type { Volo_Abp_Http_RemoteServiceErrorInfo } from './models/Volo_Abp_Http_RemoteServiceErrorInfo';
|
|
84
|
+
export type { Volo_Abp_Http_RemoteServiceErrorResponse } from './models/Volo_Abp_Http_RemoteServiceErrorResponse';
|
|
85
|
+
export type { Volo_Abp_Http_RemoteServiceValidationErrorInfo } from './models/Volo_Abp_Http_RemoteServiceValidationErrorInfo';
|
|
86
|
+
export type { Volo_Abp_LanguageManagement_Dto_CreateLanguageDto } from './models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto';
|
|
87
|
+
export type { Volo_Abp_LanguageManagement_Dto_CultureInfoDto } from './models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto';
|
|
88
|
+
export type { Volo_Abp_LanguageManagement_Dto_LanguageDto } from './models/Volo_Abp_LanguageManagement_Dto_LanguageDto';
|
|
89
|
+
export type { Volo_Abp_LanguageManagement_Dto_LanguageResourceDto } from './models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto';
|
|
90
|
+
export type { Volo_Abp_LanguageManagement_Dto_LanguageTextDto } from './models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto';
|
|
91
|
+
export type { Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto } from './models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto';
|
|
92
|
+
export type { Volo_Abp_Localization_LanguageInfo } from './models/Volo_Abp_Localization_LanguageInfo';
|
|
93
|
+
export type { Volo_Abp_NameValue } from './models/Volo_Abp_NameValue';
|
|
94
|
+
export type { Volo_Abp_PermissionManagement_GetPermissionListResultDto } from './models/Volo_Abp_PermissionManagement_GetPermissionListResultDto';
|
|
95
|
+
export type { Volo_Abp_PermissionManagement_PermissionGrantInfoDto } from './models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto';
|
|
96
|
+
export type { Volo_Abp_PermissionManagement_PermissionGroupDto } from './models/Volo_Abp_PermissionManagement_PermissionGroupDto';
|
|
97
|
+
export type { Volo_Abp_PermissionManagement_ProviderInfoDto } from './models/Volo_Abp_PermissionManagement_ProviderInfoDto';
|
|
98
|
+
export type { Volo_Abp_PermissionManagement_UpdatePermissionDto } from './models/Volo_Abp_PermissionManagement_UpdatePermissionDto';
|
|
99
|
+
export type { Volo_Abp_PermissionManagement_UpdatePermissionsDto } from './models/Volo_Abp_PermissionManagement_UpdatePermissionsDto';
|
|
100
|
+
export type { Volo_Abp_SettingManagement_EmailSettingsDto } from './models/Volo_Abp_SettingManagement_EmailSettingsDto';
|
|
101
|
+
export type { Volo_Abp_SettingManagement_SendTestEmailInput } from './models/Volo_Abp_SettingManagement_SendTestEmailInput';
|
|
102
|
+
export type { Volo_Abp_SettingManagement_UpdateEmailSettingsDto } from './models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto';
|
|
103
|
+
export type { Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput } from './models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput';
|
|
104
|
+
export type { Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto } from './models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto';
|
|
105
|
+
export type { Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto } from './models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto';
|
|
106
|
+
export type { Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput } from './models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput';
|
|
107
|
+
export type { Volo_Abp_Validation_StringValues_IStringValueType } from './models/Volo_Abp_Validation_StringValues_IStringValueType';
|
|
108
|
+
export type { Volo_Abp_Validation_StringValues_IValueValidator } from './models/Volo_Abp_Validation_StringValues_IValueValidator';
|
|
109
|
+
|
|
110
|
+
export { AbpApiDefinitionService } from './services/AbpApiDefinitionService';
|
|
111
|
+
export { AbpApplicationConfigurationService } from './services/AbpApplicationConfigurationService';
|
|
112
|
+
export { AbpApplicationLocalizationService } from './services/AbpApplicationLocalizationService';
|
|
113
|
+
export { AbpTenantService } from './services/AbpTenantService';
|
|
114
|
+
export { AuditLogsService } from './services/AuditLogsService';
|
|
115
|
+
export { EmailSettingsService } from './services/EmailSettingsService';
|
|
116
|
+
export { FeaturesService } from './services/FeaturesService';
|
|
117
|
+
export { GdprRequestService } from './services/GdprRequestService';
|
|
118
|
+
export { LanguagesService } from './services/LanguagesService';
|
|
119
|
+
export { LanguageTextsService } from './services/LanguageTextsService';
|
|
120
|
+
export { PermissionsService } from './services/PermissionsService';
|
|
121
|
+
export { TextTemplateContentsService } from './services/TextTemplateContentsService';
|
|
122
|
+
export { TextTemplateDefinitionsService } from './services/TextTemplateDefinitionsService';
|
|
123
|
+
export { TimeZoneSettingsService } from './services/TimeZoneSettingsService';
|