ins-queue-actions 1.2.19 → 1.2.21

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.
@@ -0,0 +1,38 @@
1
+ name: Node.js Package
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ workflow_dispatch:
8
+
9
+ jobs:
10
+ version_update:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: actions/setup-node@v4
15
+ with:
16
+ node-version: 20
17
+
18
+ - name: Bump version if needed
19
+ run: |
20
+ npm version patch --no-git-tag-version || true
21
+ git config user.name "GitHub Actions"
22
+ git config user.email "actions@github.com"
23
+ git add package.json
24
+ git commit -m "Bump version" || true
25
+ git push origin main || true
26
+
27
+ publish-npm:
28
+ needs: version_update
29
+ runs-on: ubuntu-latest
30
+ steps:
31
+ - uses: actions/checkout@v4
32
+ - uses: actions/setup-node@v4
33
+ with:
34
+ node-version: 20
35
+ registry-url: https://registry.npmjs.org/
36
+ - run: npm publish
37
+ env:
38
+ NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # ins-queue-actions
2
+ To maintain ins-queue-actions
@@ -626,5 +626,9 @@ module.exports = {
626
626
  templateName: "BOOKING_NOT_ASSIGNED",
627
627
  requiredParams: ["bookings"],
628
628
  },
629
+ BOOKING_NO_SHOW: {
630
+ templateName: "BOOKING_NO_SHOW",
631
+ requiredParams: ["bookingId", "zipCode"],
632
+ },
629
633
  },
630
634
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ins-queue-actions",
3
- "version": "1.2.19",
3
+ "version": "1.2.21",
4
4
  "main": "index.js",
5
5
  "engineStrict": true
6
6
  }