@ayasofyazilim/saas 0.0.158 → 0.0.160

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.
@@ -4,24 +4,18 @@ on:
4
4
  workflow_dispatch:
5
5
  inputs:
6
6
  release-type:
7
- description: 'Release type (one of): patch, minor, major, prepatch, preminor, premajor, prerelease'
7
+ description: "Release type (one of): patch, minor, major, prepatch, preminor, premajor, prerelease"
8
8
  required: true
9
- default: 'patch'
9
+ default: "patch"
10
10
  type: choice
11
11
  options:
12
- - patch
13
- - minor
14
- - major
15
- - prepatch
16
- - preminor
17
- - premajor
18
- - prerelease
19
- workflow_call:
12
+ - patch
13
+ workflow_call:
20
14
  inputs:
21
15
  release-type:
22
- default: 'patch'
16
+ default: "patch"
23
17
  type: string
24
-
18
+
25
19
  jobs:
26
20
  release:
27
21
  runs-on: self-hosted
@@ -43,4 +37,4 @@ jobs:
43
37
  run: npm run release ${{ github.event.inputs.release-type }} --ci
44
38
  env:
45
39
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
46
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -12,7 +12,7 @@ on:
12
12
  - "https://api.unirefund.com"
13
13
  service-name:
14
14
  description: 'The name of service to update and commit, e.g. "All" or "SaaS,Tag"'
15
- default: "All"
15
+ default: "Account"
16
16
  required: true
17
17
  type: choice
18
18
  options:
@@ -5,8 +5,8 @@ import { FetchHttpRequest } from './core/FetchHttpRequest';
5
5
 
6
6
  import { AddressTypeService } from './sdk.gen';
7
7
  import { EmailCommonDataService } from './sdk.gen';
8
+ import { EvidenceSessionService } from './sdk.gen';
8
9
  import { IndividualService } from './sdk.gen';
9
- import { RekognitionService } from './sdk.gen';
10
10
  import { TelephoneTypeService } from './sdk.gen';
11
11
  import { TravellerService } from './sdk.gen';
12
12
 
@@ -16,8 +16,8 @@ export class TravellerServiceClient {
16
16
 
17
17
  public readonly addressType: AddressTypeService;
18
18
  public readonly emailCommonData: EmailCommonDataService;
19
+ public readonly evidenceSession: EvidenceSessionService;
19
20
  public readonly individual: IndividualService;
20
- public readonly rekognition: RekognitionService;
21
21
  public readonly telephoneType: TelephoneTypeService;
22
22
  public readonly traveller: TravellerService;
23
23
 
@@ -42,8 +42,8 @@ export class TravellerServiceClient {
42
42
 
43
43
  this.addressType = new AddressTypeService(this.request);
44
44
  this.emailCommonData = new EmailCommonDataService(this.request);
45
+ this.evidenceSession = new EvidenceSessionService(this.request);
45
46
  this.individual = new IndividualService(this.request);
46
- this.rekognition = new RekognitionService(this.request);
47
47
  this.telephoneType = new TelephoneTypeService(this.request);
48
48
  this.traveller = new TravellerService(this.request);
49
49
  }