@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.
- package/.github/workflows/release.yaml +7 -13
- package/.github/workflows/update.yaml +1 -1
- package/TravellerService/TravellerServiceClient.ts +3 -3
- package/TravellerService/schemas.gen.ts +5969 -1044
- package/TravellerService/sdk.gen.ts +176 -27
- package/TravellerService/types.gen.ts +385 -15
- package/package.json +1 -1
- package/.github/workflows/update_release.yaml +0 -34
|
@@ -4,24 +4,18 @@ on:
|
|
|
4
4
|
workflow_dispatch:
|
|
5
5
|
inputs:
|
|
6
6
|
release-type:
|
|
7
|
-
description:
|
|
7
|
+
description: "Release type (one of): patch, minor, major, prepatch, preminor, premajor, prerelease"
|
|
8
8
|
required: true
|
|
9
|
-
default:
|
|
9
|
+
default: "patch"
|
|
10
10
|
type: choice
|
|
11
11
|
options:
|
|
12
|
-
|
|
13
|
-
|
|
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:
|
|
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 }}
|
|
@@ -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
|
}
|