@ayasofyazilim/saas 0.0.25 → 0.0.26
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 +2033 -1524
- package/SettingService/services.gen.ts +472 -1
- package/SettingService/types.gen.ts +1862 -981
- package/generator.mjs +2 -2
- package/package.json +1 -1
- package/swagger.json +4794 -4794
|
@@ -8,8 +8,11 @@ import { AbpApplicationConfigurationService } from './services.gen';
|
|
|
8
8
|
import { AbpApplicationLocalizationService } from './services.gen';
|
|
9
9
|
import { CountrySettingService } from './services.gen';
|
|
10
10
|
import { EmailSettingsService } from './services.gen';
|
|
11
|
+
import { ProductGroupService } from './services.gen';
|
|
12
|
+
import { ProductGroupVatService } from './services.gen';
|
|
11
13
|
import { SampleService } from './services.gen';
|
|
12
14
|
import { TimeZoneSettingsService } from './services.gen';
|
|
15
|
+
import { VatService } from './services.gen';
|
|
13
16
|
|
|
14
17
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
15
18
|
|
|
@@ -20,8 +23,11 @@ export class SettingServiceClient {
|
|
|
20
23
|
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
21
24
|
public readonly countrySetting: CountrySettingService;
|
|
22
25
|
public readonly emailSettings: EmailSettingsService;
|
|
26
|
+
public readonly productGroup: ProductGroupService;
|
|
27
|
+
public readonly productGroupVat: ProductGroupVatService;
|
|
23
28
|
public readonly sample: SampleService;
|
|
24
29
|
public readonly timeZoneSettings: TimeZoneSettingsService;
|
|
30
|
+
public readonly vat: VatService;
|
|
25
31
|
|
|
26
32
|
public readonly request: BaseHttpRequest;
|
|
27
33
|
|
|
@@ -47,7 +53,10 @@ export class SettingServiceClient {
|
|
|
47
53
|
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
48
54
|
this.countrySetting = new CountrySettingService(this.request);
|
|
49
55
|
this.emailSettings = new EmailSettingsService(this.request);
|
|
56
|
+
this.productGroup = new ProductGroupService(this.request);
|
|
57
|
+
this.productGroupVat = new ProductGroupVatService(this.request);
|
|
50
58
|
this.sample = new SampleService(this.request);
|
|
51
59
|
this.timeZoneSettings = new TimeZoneSettingsService(this.request);
|
|
60
|
+
this.vat = new VatService(this.request);
|
|
52
61
|
}
|
|
53
62
|
}
|