@ayasofyazilim/saas 0.0.67 → 0.0.68
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/.github/workflows/release.yaml +2 -2
- package/README.md +26 -1
- package/SettingService/SettingServiceClient.ts +0 -3
- package/SettingService/schemas.gen.ts +352 -539
- package/SettingService/services.gen.ts +38 -170
- package/SettingService/types.gen.ts +83 -335
- package/package.json +1 -1
|
@@ -31,8 +31,8 @@ jobs:
|
|
|
31
31
|
# Configure Git
|
|
32
32
|
- name: Git configuration
|
|
33
33
|
run: |
|
|
34
|
-
git config
|
|
35
|
-
git config
|
|
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
|
package/README.md
CHANGED
|
@@ -11,4 +11,29 @@ All:
|
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
13
|
npx generate --all
|
|
14
|
-
```
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Release:
|
|
17
|
+
|
|
18
|
+
### Local:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm run release
|
|
22
|
+
```
|
|
23
|
+
this will use release-it features and ask you questions about the version etc.
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### With Action:
|
|
27
|
+
|
|
28
|
+
Go to:
|
|
29
|
+
- actions
|
|
30
|
+
- release action
|
|
31
|
+
- on top right side of the website you can see an input
|
|
32
|
+
- in the input write the releated version type and run the workflow.
|
|
33
|
+
|
|
34
|
+
#### Setting GitHub Action:
|
|
35
|
+
|
|
36
|
+
Here is the resources to set this again:
|
|
37
|
+
- Setting self hosted runner from GitHub
|
|
38
|
+
- run the runner as service: https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/configuring-the-self-hosted-runner-application-as-a-service
|
|
39
|
+
- Follow the steps in this blog: https://superface.ai/blog/npm-publish-gh-actions-changelog
|
|
@@ -9,7 +9,6 @@ import { AbpApplicationLocalizationService } from './services.gen';
|
|
|
9
9
|
import { CountrySettingService } from './services.gen';
|
|
10
10
|
import { EmailSettingsService } from './services.gen';
|
|
11
11
|
import { ProductGroupService } from './services.gen';
|
|
12
|
-
import { ProductGroupVatService } from './services.gen';
|
|
13
12
|
import { SampleService } from './services.gen';
|
|
14
13
|
import { TimeZoneSettingsService } from './services.gen';
|
|
15
14
|
import { VatService } from './services.gen';
|
|
@@ -24,7 +23,6 @@ export class SettingServiceClient {
|
|
|
24
23
|
public readonly countrySetting: CountrySettingService;
|
|
25
24
|
public readonly emailSettings: EmailSettingsService;
|
|
26
25
|
public readonly productGroup: ProductGroupService;
|
|
27
|
-
public readonly productGroupVat: ProductGroupVatService;
|
|
28
26
|
public readonly sample: SampleService;
|
|
29
27
|
public readonly timeZoneSettings: TimeZoneSettingsService;
|
|
30
28
|
public readonly vat: VatService;
|
|
@@ -54,7 +52,6 @@ export class SettingServiceClient {
|
|
|
54
52
|
this.countrySetting = new CountrySettingService(this.request);
|
|
55
53
|
this.emailSettings = new EmailSettingsService(this.request);
|
|
56
54
|
this.productGroup = new ProductGroupService(this.request);
|
|
57
|
-
this.productGroupVat = new ProductGroupVatService(this.request);
|
|
58
55
|
this.sample = new SampleService(this.request);
|
|
59
56
|
this.timeZoneSettings = new TimeZoneSettingsService(this.request);
|
|
60
57
|
this.vat = new VatService(this.request);
|