@ayasofyazilim/saas 0.0.52 → 0.0.53
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/ContractService/ContractServiceClient.ts +3 -3
- package/ContractService/schemas.gen.ts +2236 -532
- package/ContractService/services.gen.ts +178 -114
- package/ContractService/types.gen.ts +372 -166
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ import { FetchHttpRequest } from './core/FetchHttpRequest';
|
|
|
6
6
|
import { AbpApiDefinitionService } from './services.gen';
|
|
7
7
|
import { AbpApplicationConfigurationService } from './services.gen';
|
|
8
8
|
import { AbpApplicationLocalizationService } from './services.gen';
|
|
9
|
-
import {
|
|
9
|
+
import { ContractsMerchantService } from './services.gen';
|
|
10
10
|
import { RebateTablesService } from './services.gen';
|
|
11
11
|
import { RefundTablesService } from './services.gen';
|
|
12
12
|
|
|
@@ -17,7 +17,7 @@ export class ContractServiceClient {
|
|
|
17
17
|
public readonly abpApiDefinition: AbpApiDefinitionService;
|
|
18
18
|
public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
|
|
19
19
|
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
20
|
-
public readonly
|
|
20
|
+
public readonly contractsMerchant: ContractsMerchantService;
|
|
21
21
|
public readonly rebateTables: RebateTablesService;
|
|
22
22
|
public readonly refundTables: RefundTablesService;
|
|
23
23
|
|
|
@@ -43,7 +43,7 @@ export class ContractServiceClient {
|
|
|
43
43
|
this.abpApiDefinition = new AbpApiDefinitionService(this.request);
|
|
44
44
|
this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
|
|
45
45
|
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
46
|
-
this.
|
|
46
|
+
this.contractsMerchant = new ContractsMerchantService(this.request);
|
|
47
47
|
this.rebateTables = new RebateTablesService(this.request);
|
|
48
48
|
this.refundTables = new RefundTablesService(this.request);
|
|
49
49
|
}
|