@ayasofyazilim/saas 0.0.25 → 0.0.27
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 -65
- package/AccountService/schemas.gen.ts +5103 -5103
- package/AccountService/services.gen.ts +1452 -1452
- package/AccountService/types.gen.ts +9896 -9896
- package/AdministrationService/AdministrationServiceClient.ts +74 -74
- package/AdministrationService/schemas.gen.ts +5897 -5897
- package/AdministrationService/services.gen.ts +1332 -1332
- package/AdministrationService/types.gen.ts +9024 -9024
- package/BackerService/BackerServiceClient.ts +50 -50
- package/BackerService/services.gen.ts +866 -866
- package/IdentityService/IdentityServiceClient.ts +77 -77
- package/IdentityService/schemas.gen.ts +6573 -6573
- package/IdentityService/services.gen.ts +2839 -2839
- package/IdentityService/types.gen.ts +17446 -17446
- package/MerchantService/MerchantServiceClient.ts +77 -77
- package/ProjectService/ProjectServiceClient.ts +47 -47
- package/ProjectService.json +2937 -2937
- package/SaasService/schemas.gen.ts +5278 -5278
- package/SaasService/services.gen.ts +1325 -1325
- package/SaasService/types.gen.ts +9052 -9052
- package/SettingService/SettingServiceClient.ts +9 -0
- package/SettingService/schemas.gen.ts +4319 -64
- package/SettingService/services.gen.ts +787 -316
- package/SettingService/types.gen.ts +6052 -206
- package/generator.mjs +5 -5
- package/package.json +1 -1
- package/swagger.json +4794 -4794
|
@@ -1,74 +1,74 @@
|
|
|
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 { AuditLogsService } from './services.gen';
|
|
11
|
-
import { EmailSettingsService } from './services.gen';
|
|
12
|
-
import { FeaturesService } from './services.gen';
|
|
13
|
-
import { GdprRequestService } from './services.gen';
|
|
14
|
-
import { LanguagesService } from './services.gen';
|
|
15
|
-
import { LanguageTextsService } from './services.gen';
|
|
16
|
-
import { PermissionsService } from './services.gen';
|
|
17
|
-
import { TextTemplateContentsService } from './services.gen';
|
|
18
|
-
import { TextTemplateDefinitionsService } from './services.gen';
|
|
19
|
-
import { TimeZoneSettingsService } from './services.gen';
|
|
20
|
-
|
|
21
|
-
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
22
|
-
|
|
23
|
-
export class AdministrationServiceClient {
|
|
24
|
-
|
|
25
|
-
public readonly abpApiDefinition: AbpApiDefinitionService;
|
|
26
|
-
public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
|
|
27
|
-
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
28
|
-
public readonly abpTenant: AbpTenantService;
|
|
29
|
-
public readonly auditLogs: AuditLogsService;
|
|
30
|
-
public readonly emailSettings: EmailSettingsService;
|
|
31
|
-
public readonly features: FeaturesService;
|
|
32
|
-
public readonly gdprRequest: GdprRequestService;
|
|
33
|
-
public readonly languages: LanguagesService;
|
|
34
|
-
public readonly languageTexts: LanguageTextsService;
|
|
35
|
-
public readonly permissions: PermissionsService;
|
|
36
|
-
public readonly textTemplateContents: TextTemplateContentsService;
|
|
37
|
-
public readonly textTemplateDefinitions: TextTemplateDefinitionsService;
|
|
38
|
-
public readonly timeZoneSettings: TimeZoneSettingsService;
|
|
39
|
-
|
|
40
|
-
public readonly request: BaseHttpRequest;
|
|
41
|
-
|
|
42
|
-
constructor(config?: Partial<OpenAPIConfig>, HttpRequest: HttpRequestConstructor = FetchHttpRequest) {
|
|
43
|
-
this.request = new HttpRequest({
|
|
44
|
-
BASE: config?.BASE ?? '',
|
|
45
|
-
VERSION: config?.VERSION ?? '1',
|
|
46
|
-
WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
|
|
47
|
-
CREDENTIALS: config?.CREDENTIALS ?? 'include',
|
|
48
|
-
TOKEN: config?.TOKEN,
|
|
49
|
-
USERNAME: config?.USERNAME,
|
|
50
|
-
PASSWORD: config?.PASSWORD,
|
|
51
|
-
HEADERS: config?.HEADERS,
|
|
52
|
-
ENCODE_PATH: config?.ENCODE_PATH,
|
|
53
|
-
interceptors: {
|
|
54
|
-
request: config?.interceptors?.request ?? new Interceptors(),
|
|
55
|
-
response: config?.interceptors?.response ?? new Interceptors(),
|
|
56
|
-
},
|
|
57
|
-
});
|
|
58
|
-
|
|
59
|
-
this.abpApiDefinition = new AbpApiDefinitionService(this.request);
|
|
60
|
-
this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
|
|
61
|
-
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
62
|
-
this.abpTenant = new AbpTenantService(this.request);
|
|
63
|
-
this.auditLogs = new AuditLogsService(this.request);
|
|
64
|
-
this.emailSettings = new EmailSettingsService(this.request);
|
|
65
|
-
this.features = new FeaturesService(this.request);
|
|
66
|
-
this.gdprRequest = new GdprRequestService(this.request);
|
|
67
|
-
this.languages = new LanguagesService(this.request);
|
|
68
|
-
this.languageTexts = new LanguageTextsService(this.request);
|
|
69
|
-
this.permissions = new PermissionsService(this.request);
|
|
70
|
-
this.textTemplateContents = new TextTemplateContentsService(this.request);
|
|
71
|
-
this.textTemplateDefinitions = new TextTemplateDefinitionsService(this.request);
|
|
72
|
-
this.timeZoneSettings = new TimeZoneSettingsService(this.request);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
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 { AuditLogsService } from './services.gen';
|
|
11
|
+
import { EmailSettingsService } from './services.gen';
|
|
12
|
+
import { FeaturesService } from './services.gen';
|
|
13
|
+
import { GdprRequestService } from './services.gen';
|
|
14
|
+
import { LanguagesService } from './services.gen';
|
|
15
|
+
import { LanguageTextsService } from './services.gen';
|
|
16
|
+
import { PermissionsService } from './services.gen';
|
|
17
|
+
import { TextTemplateContentsService } from './services.gen';
|
|
18
|
+
import { TextTemplateDefinitionsService } from './services.gen';
|
|
19
|
+
import { TimeZoneSettingsService } from './services.gen';
|
|
20
|
+
|
|
21
|
+
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
22
|
+
|
|
23
|
+
export class AdministrationServiceClient {
|
|
24
|
+
|
|
25
|
+
public readonly abpApiDefinition: AbpApiDefinitionService;
|
|
26
|
+
public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
|
|
27
|
+
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
28
|
+
public readonly abpTenant: AbpTenantService;
|
|
29
|
+
public readonly auditLogs: AuditLogsService;
|
|
30
|
+
public readonly emailSettings: EmailSettingsService;
|
|
31
|
+
public readonly features: FeaturesService;
|
|
32
|
+
public readonly gdprRequest: GdprRequestService;
|
|
33
|
+
public readonly languages: LanguagesService;
|
|
34
|
+
public readonly languageTexts: LanguageTextsService;
|
|
35
|
+
public readonly permissions: PermissionsService;
|
|
36
|
+
public readonly textTemplateContents: TextTemplateContentsService;
|
|
37
|
+
public readonly textTemplateDefinitions: TextTemplateDefinitionsService;
|
|
38
|
+
public readonly timeZoneSettings: TimeZoneSettingsService;
|
|
39
|
+
|
|
40
|
+
public readonly request: BaseHttpRequest;
|
|
41
|
+
|
|
42
|
+
constructor(config?: Partial<OpenAPIConfig>, HttpRequest: HttpRequestConstructor = FetchHttpRequest) {
|
|
43
|
+
this.request = new HttpRequest({
|
|
44
|
+
BASE: config?.BASE ?? '',
|
|
45
|
+
VERSION: config?.VERSION ?? '1',
|
|
46
|
+
WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
|
|
47
|
+
CREDENTIALS: config?.CREDENTIALS ?? 'include',
|
|
48
|
+
TOKEN: config?.TOKEN,
|
|
49
|
+
USERNAME: config?.USERNAME,
|
|
50
|
+
PASSWORD: config?.PASSWORD,
|
|
51
|
+
HEADERS: config?.HEADERS,
|
|
52
|
+
ENCODE_PATH: config?.ENCODE_PATH,
|
|
53
|
+
interceptors: {
|
|
54
|
+
request: config?.interceptors?.request ?? new Interceptors(),
|
|
55
|
+
response: config?.interceptors?.response ?? new Interceptors(),
|
|
56
|
+
},
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
this.abpApiDefinition = new AbpApiDefinitionService(this.request);
|
|
60
|
+
this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
|
|
61
|
+
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
62
|
+
this.abpTenant = new AbpTenantService(this.request);
|
|
63
|
+
this.auditLogs = new AuditLogsService(this.request);
|
|
64
|
+
this.emailSettings = new EmailSettingsService(this.request);
|
|
65
|
+
this.features = new FeaturesService(this.request);
|
|
66
|
+
this.gdprRequest = new GdprRequestService(this.request);
|
|
67
|
+
this.languages = new LanguagesService(this.request);
|
|
68
|
+
this.languageTexts = new LanguageTextsService(this.request);
|
|
69
|
+
this.permissions = new PermissionsService(this.request);
|
|
70
|
+
this.textTemplateContents = new TextTemplateContentsService(this.request);
|
|
71
|
+
this.textTemplateDefinitions = new TextTemplateDefinitionsService(this.request);
|
|
72
|
+
this.timeZoneSettings = new TimeZoneSettingsService(this.request);
|
|
73
|
+
}
|
|
74
|
+
}
|