@ayasofyazilim/saas 0.0.67 → 0.0.69

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.
@@ -31,8 +31,8 @@ jobs:
31
31
  # Configure Git
32
32
  - name: Git configuration
33
33
  run: |
34
- git config --global user.email github-actions@github.com
35
- git config --global user.name github-actions
34
+ git config user.name "github-actions[bot]"
35
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
36
36
 
37
37
  # Bump package version
38
38
  # Use tag latest
@@ -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
  }