@ayasofyazilim/saas 0.0.68 → 0.0.70
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 -0
- package/ContractService/schemas.gen.ts +3520 -1491
- package/ContractService/services.gen.ts +303 -2
- package/ContractService/types.gen.ts +647 -56
- package/FinanceService/FinanceServiceClient.ts +44 -0
- package/FinanceService/core/ApiError.ts +21 -0
- package/FinanceService/core/ApiRequestOptions.ts +13 -0
- package/FinanceService/core/ApiResult.ts +7 -0
- package/FinanceService/core/BaseHttpRequest.ts +10 -0
- package/FinanceService/core/CancelablePromise.ts +126 -0
- package/FinanceService/core/FetchHttpRequest.ts +22 -0
- package/FinanceService/core/OpenAPI.ts +56 -0
- package/FinanceService/core/request.ts +341 -0
- package/FinanceService/index.ts +9 -0
- package/FinanceService/schemas.gen.ts +3970 -0
- package/FinanceService/services.gen.ts +225 -0
- package/FinanceService/types.gen.ts +760 -0
- package/generator.mjs +5 -0
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ import { AbpApiDefinitionService } from './services.gen';
|
|
|
7
7
|
import { AbpApplicationConfigurationService } from './services.gen';
|
|
8
8
|
import { AbpApplicationLocalizationService } from './services.gen';
|
|
9
9
|
import { ContractsMerchantService } from './services.gen';
|
|
10
|
+
import { ContractsRefundPointService } from './services.gen';
|
|
10
11
|
import { RebateTablesService } from './services.gen';
|
|
11
12
|
import { RefundTablesService } from './services.gen';
|
|
12
13
|
|
|
@@ -18,6 +19,7 @@ export class ContractServiceClient {
|
|
|
18
19
|
public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
|
|
19
20
|
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
20
21
|
public readonly contractsMerchant: ContractsMerchantService;
|
|
22
|
+
public readonly contractsRefundPoint: ContractsRefundPointService;
|
|
21
23
|
public readonly rebateTables: RebateTablesService;
|
|
22
24
|
public readonly refundTables: RefundTablesService;
|
|
23
25
|
|
|
@@ -44,6 +46,7 @@ export class ContractServiceClient {
|
|
|
44
46
|
this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
|
|
45
47
|
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
46
48
|
this.contractsMerchant = new ContractsMerchantService(this.request);
|
|
49
|
+
this.contractsRefundPoint = new ContractsRefundPointService(this.request);
|
|
47
50
|
this.rebateTables = new RebateTablesService(this.request);
|
|
48
51
|
this.refundTables = new RefundTablesService(this.request);
|
|
49
52
|
}
|