@pax2pay/client 0.3.37 → 0.3.38
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/build.yml +4 -4
- package/.github/workflows/bump.yml +3 -3
- package/.github/workflows/publish.yml +3 -3
- package/dist/model/StatementReportResponse.d.ts +1 -0
- package/dist/model/StatementSummaryReportResponse.d.ts +1 -0
- package/model/StatementReportResponse.ts +1 -0
- package/model/StatementSummaryReportResponse.ts +1 -0
- package/package.json +1 -1
|
@@ -9,8 +9,8 @@ jobs:
|
|
|
9
9
|
build:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
13
|
-
- uses: actions/cache@
|
|
12
|
+
- uses: actions/checkout@v3
|
|
13
|
+
- uses: actions/cache@v3
|
|
14
14
|
with:
|
|
15
15
|
path: |
|
|
16
16
|
~/cache
|
|
@@ -18,9 +18,9 @@ jobs:
|
|
|
18
18
|
**/node_modules
|
|
19
19
|
key: ${{ runner.os }}-cache
|
|
20
20
|
- name: "Setup Node"
|
|
21
|
-
uses: "actions/setup-node@
|
|
21
|
+
uses: "actions/setup-node@v3"
|
|
22
22
|
with:
|
|
23
|
-
node-version:
|
|
23
|
+
node-version: current
|
|
24
24
|
- name: Update NPM
|
|
25
25
|
run: npm install -g npm
|
|
26
26
|
- name: Install Dependencies
|
|
@@ -13,13 +13,13 @@ jobs:
|
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
15
|
- name: "Checkout source code"
|
|
16
|
-
uses: "actions/checkout@
|
|
16
|
+
uses: "actions/checkout@v3"
|
|
17
17
|
with:
|
|
18
18
|
token: ${{ secrets.ADMIN_TOKEN }}
|
|
19
19
|
- name: "Setup Node"
|
|
20
|
-
uses: "actions/setup-node@
|
|
20
|
+
uses: "actions/setup-node@v3"
|
|
21
21
|
with:
|
|
22
|
-
node-version:
|
|
22
|
+
node-version: current
|
|
23
23
|
- name: Update NPM
|
|
24
24
|
run: npm install -g npm
|
|
25
25
|
- name: "Version Bump"
|
|
@@ -11,11 +11,11 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
13
|
- name: "Checkout source code"
|
|
14
|
-
uses: "actions/checkout@
|
|
14
|
+
uses: "actions/checkout@v3"
|
|
15
15
|
- name: "Setup Node"
|
|
16
|
-
uses: "actions/setup-node@
|
|
16
|
+
uses: "actions/setup-node@v3"
|
|
17
17
|
with:
|
|
18
|
-
node-version:
|
|
18
|
+
node-version: current
|
|
19
19
|
- name: Update NPM
|
|
20
20
|
run: npm install -g npm
|
|
21
21
|
- name: Install
|