@ayasofyazilim/saas 0.0.75 → 0.0.77
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.
|
@@ -8,7 +8,10 @@ import { AbpApplicationConfigurationService } from './services.gen';
|
|
|
8
8
|
import { AbpApplicationLocalizationService } from './services.gen';
|
|
9
9
|
import { ContractsMerchantService } from './services.gen';
|
|
10
10
|
import { ContractsRefundPointService } from './services.gen';
|
|
11
|
+
import { ContractsRefundPointIntegrationService } from './services.gen';
|
|
11
12
|
import { RebateTablesService } from './services.gen';
|
|
13
|
+
import { RefundFeeHeaderIntegrationService } from './services.gen';
|
|
14
|
+
import { RefundTableHeaderIntegrationService } from './services.gen';
|
|
12
15
|
import { RefundTablesService } from './services.gen';
|
|
13
16
|
|
|
14
17
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
@@ -20,7 +23,10 @@ export class ContractServiceClient {
|
|
|
20
23
|
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
21
24
|
public readonly contractsMerchant: ContractsMerchantService;
|
|
22
25
|
public readonly contractsRefundPoint: ContractsRefundPointService;
|
|
26
|
+
public readonly contractsRefundPointIntegration: ContractsRefundPointIntegrationService;
|
|
23
27
|
public readonly rebateTables: RebateTablesService;
|
|
28
|
+
public readonly refundFeeHeaderIntegration: RefundFeeHeaderIntegrationService;
|
|
29
|
+
public readonly refundTableHeaderIntegration: RefundTableHeaderIntegrationService;
|
|
24
30
|
public readonly refundTables: RefundTablesService;
|
|
25
31
|
|
|
26
32
|
public readonly request: BaseHttpRequest;
|
|
@@ -47,7 +53,10 @@ export class ContractServiceClient {
|
|
|
47
53
|
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
48
54
|
this.contractsMerchant = new ContractsMerchantService(this.request);
|
|
49
55
|
this.contractsRefundPoint = new ContractsRefundPointService(this.request);
|
|
56
|
+
this.contractsRefundPointIntegration = new ContractsRefundPointIntegrationService(this.request);
|
|
50
57
|
this.rebateTables = new RebateTablesService(this.request);
|
|
58
|
+
this.refundFeeHeaderIntegration = new RefundFeeHeaderIntegrationService(this.request);
|
|
59
|
+
this.refundTableHeaderIntegration = new RefundTableHeaderIntegrationService(this.request);
|
|
51
60
|
this.refundTables = new RefundTablesService(this.request);
|
|
52
61
|
}
|
|
53
62
|
}
|