@ayasofyazilim/saas 0.0.97 → 0.0.99

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.
@@ -81,17 +81,18 @@ jobs:
81
81
 
82
82
  # Commit changes
83
83
  - name: Commit CHANGELOG.md and package.json changes and create tag
84
- run: |
84
+ run: |
85
85
  git add "package.json"
86
86
  # git add "CHANGELOG.md"
87
87
  git commit -m "chore: release ${{ env.NEW_VERSION }}"
88
88
  git tag ${{ env.NEW_VERSION }}
89
+
89
90
 
90
91
  # Publish version to public repository
91
92
  - name: Publish
92
93
  run: npm publish --verbose --access public --tag ${{ env.RELEASE_TAG }}
93
94
  env:
94
- NODE_AUTH_TOKEN: ${{ secrets.NPMJS_ACCESS_TOKEN_A0M0RAJAB }}
95
+ NODE_AUTH_TOKEN: ${{ secrets.NPMJS_ACCESS_TOKEN }}
95
96
 
96
97
  # Push repository changes
97
98
  - name: Push changes to repository
@@ -6,6 +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 { RebateStatementHeaderService } from './services.gen';
9
10
  import { VatStatementHeaderService } from './services.gen';
10
11
 
11
12
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
@@ -15,6 +16,7 @@ export class FinanceServiceClient {
15
16
  public readonly abpApiDefinition: AbpApiDefinitionService;
16
17
  public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
17
18
  public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
19
+ public readonly rebateStatementHeader: RebateStatementHeaderService;
18
20
  public readonly vatStatementHeader: VatStatementHeaderService;
19
21
 
20
22
  public readonly request: BaseHttpRequest;
@@ -39,6 +41,7 @@ export class FinanceServiceClient {
39
41
  this.abpApiDefinition = new AbpApiDefinitionService(this.request);
40
42
  this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
41
43
  this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
44
+ this.rebateStatementHeader = new RebateStatementHeaderService(this.request);
42
45
  this.vatStatementHeader = new VatStatementHeaderService(this.request);
43
46
  }
44
47
  }