@onesignal/onesignal-vue3 2.2.0 → 2.2.2

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.
@@ -1,47 +0,0 @@
1
- function calcResponseTimeForIssueCreatedAt(createdAt) {
2
- const issueOpenedDate = new Date(createdAt);
3
- const issueTriagedDate = new Date();
4
- const businessDaysResponseTime = calcBusinessDaysBetweenDates(issueOpenedDate, issueTriagedDate);
5
- return businessDaysResponseTime;
6
- }
7
-
8
- function calcBusinessDaysBetweenDates(openedDate, triagedDate) {
9
- let differenceInWeeks, responseTime;
10
- if (triagedDate < openedDate)
11
- return -1; // error code if dates transposed
12
- let openedDay = openedDate.getDay(); // day of week
13
- let triagedDay = triagedDate.getDay();
14
- openedDay = (openedDay == 0) ? 7 : openedDay; // change Sunday from 0 to 7
15
- triagedDay = (triagedDay == 0) ? 7 : triagedDay;
16
- openedDay = (openedDay > 5) ? 5 : openedDay; // only count weekdays
17
- triagedDay = (triagedDay > 5) ? 5 : triagedDay;
18
- // calculate differnece in weeks (1000mS * 60sec * 60min * 24hrs * 7 days = 604800000)
19
- differenceInWeeks = Math.floor((triagedDate.getTime() - openedDate.getTime()) / 604800000);
20
- if (openedDay < triagedDay) { //Equal to makes it reduce 5 days
21
- responseTime = (differenceInWeeks * 5) + (triagedDay - openedDay);
22
- }
23
- else if (openedDay == triagedDay) {
24
- responseTime = differenceInWeeks * 5;
25
- }
26
- else {
27
- responseTime = ((differenceInWeeks + 1) * 5) - (openedDay - triagedDay);
28
- }
29
- return (responseTime);
30
- }
31
-
32
- module.exports = async(context, osmetadata) => {
33
- const foundResponseTime = await osmetadata(context).get('response_time_in_business_days');
34
- if (foundResponseTime) {
35
- const foundString = "already found response time in business days: " + foundResponseTime
36
- console.log(foundString);
37
- return foundString;
38
- }
39
- if (context.payload.comment && context.payload.comment.author_association != "MEMBER" && context.payload.comment.author_association != "OWNER" && context.payload.comment.author_association != "CONTRIBUTOR") {
40
- return;
41
- }
42
- const businessDaysResponseTime = calcResponseTimeForIssueCreatedAt(context.payload.issue.created_at);
43
- console.log("response time in business days: " + businessDaysResponseTime);
44
- const result = osmetadata(context, context.payload.issue).set('response_time_in_business_days', businessDaysResponseTime)
45
- console.log("osmetadata update result: " + result);
46
- return "set response time in business days: " + businessDaysResponseTime;
47
- }
@@ -1,34 +0,0 @@
1
- # This is an action to close asana tasks that were generated by Github issues
2
-
3
- name: Zapier web hook
4
-
5
- # Controls when the workflow will run
6
- on:
7
- # Triggers the workflow on push or pull request events but only for the "main" branch
8
- issues:
9
- types: [closed]
10
-
11
- permissions:
12
- issues: read
13
-
14
- # A workflow run is made up of one or more jobs that can run sequentially or in parallel
15
- jobs:
16
- # This workflow contains a single job called "build"
17
- build:
18
- # The type of runner that the job will run on
19
- runs-on: ubuntu-latest
20
-
21
- # Steps represent a sequence of tasks that will be executed as part of the job
22
- steps:
23
- # Runs a set of commands using the runners shell
24
- - name: Call Zapier web hook to close Asana task
25
- if: ${{ !github.event.issue.pull_request }}
26
- env:
27
- ISSUE_TITLE: ${{ github.event.issue.title }}
28
- run: |
29
- curl --location --request POST 'https://hooks.zapier.com/hooks/catch/12728683/b7009qc/' \
30
- --header 'Content-Type: application/json' \
31
- --header 'Accept: application/json' \
32
- --data-raw '{
33
- "task_name" : "$ISSUE_TITLE"
34
- }'
@@ -1,41 +0,0 @@
1
- name: Release Drafter
2
-
3
- on:
4
- push:
5
- # branches to consider in the event; optional, defaults to all
6
- branches:
7
- - main
8
- # pull_request event is required only for autolabeler
9
- pull_request:
10
- # Only following types are handled by the action, but one can default to all as well
11
- types: [opened, reopened, synchronize]
12
- # pull_request_target event is required for autolabeler to support PRs from forks
13
- # pull_request_target:
14
- # types: [opened, reopened, synchronize]
15
-
16
- permissions:
17
- contents: read
18
-
19
- jobs:
20
- update_release_draft:
21
- permissions:
22
- # write permission is required to create a github release
23
- contents: write
24
- # write permission is required for autolabeler
25
- # otherwise, read permission is required at least
26
- pull-requests: write
27
- runs-on: ubuntu-latest
28
- steps:
29
- # (Optional) GitHub Enterprise requires GHE_HOST variable set
30
- #- name: Set GHE_HOST
31
- # run: |
32
- # echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV
33
-
34
- # Drafts your next Release notes as Pull Requests are merged into "master"
35
- - uses: release-drafter/release-drafter@v5
36
- # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
37
- # with:
38
- # config-name: my-config.yml
39
- # disable-autolabeler: true
40
- env:
41
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -1,40 +0,0 @@
1
- name: Release
2
- on:
3
- push:
4
- branches:
5
- - main
6
-
7
- jobs:
8
- release:
9
- name: Release
10
- runs-on: ubuntu-latest
11
- permissions:
12
- contents: write
13
- issues: write
14
- pull-requests: write
15
- steps:
16
- - name: Checkout
17
- uses: actions/checkout@v4
18
- with:
19
- fetch-depth: 0
20
- token: ${{ secrets.GH_WEB_SHIM_PUSH_TOKEN }}
21
- - name: Setup Node.js
22
- uses: actions/setup-node@v4
23
- with:
24
- node-version: 'lts/*'
25
- registry-url: 'https://registry.npmjs.org'
26
- - name: Install dependencies
27
- run: npm ci
28
- - name: Release
29
- env:
30
- GITHUB_TOKEN: ${{ secrets.GH_WEB_SHIM_PUSH_TOKEN }}
31
- NODE_AUTH_TOKEN: ${{ secrets.NPM_WEB_SHIM_PUSH_TOKEN }}
32
- NPM_TOKEN: ${{ secrets.NPM_WEB_SHIM_PUSH_TOKEN }}
33
- run: |
34
- npx -p semantic-release \
35
- -p @semantic-release/changelog \
36
- -p @semantic-release/git \
37
- -p @semantic-release/github \
38
- -p @semantic-release/npm \
39
- -p conventional-changelog-conventionalcommits \
40
- semantic-release
@@ -1,32 +0,0 @@
1
- name: Set Response Time
2
- on:
3
- issue_comment:
4
- types:
5
- - created
6
- issues:
7
- types:
8
- - closed
9
- jobs:
10
- calculate:
11
- name: set reponse time for the issue
12
- if: github.event.issue.pull_request == null
13
- runs-on: ubuntu-latest
14
- permissions:
15
- issues: write
16
- steps:
17
- - uses: actions/checkout@v3
18
- with:
19
- token: ${{ secrets.GITHUB_TOKEN }}
20
- - run: npm install @octokit/action
21
- - uses: actions/github-script@v6
22
- id: set-time
23
- with:
24
- result-encoding: string
25
- script: |
26
- const os_probot_metadata = require('./.github/os_probot_metadata.js')
27
- const set_response_time = require('./.github/set_response_times.js')
28
- return await set_response_time(context, os_probot_metadata)
29
- env:
30
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31
- - name: Get result
32
- run: echo "${{steps.set-time.outputs.result}}" >> $GITHUB_STEP_SUMMARY
package/.releaserc.json DELETED
@@ -1,133 +0,0 @@
1
- {
2
- "branches": [
3
- "main"
4
- ],
5
- "tagFormat": "${version}",
6
- "plugins": [
7
- [
8
- "@semantic-release/commit-analyzer",
9
- {
10
- "releaseRules": [
11
- {
12
- "breaking": true,
13
- "release": "minor"
14
- },
15
- {
16
- "type": "feat",
17
- "release": "minor"
18
- },
19
- {
20
- "type": "fix",
21
- "release": "patch"
22
- },
23
- {
24
- "type": "docs",
25
- "release": "patch"
26
- },
27
- {
28
- "type": "perf",
29
- "release": "patch"
30
- },
31
- {
32
- "type": "refactor",
33
- "release": "patch"
34
- },
35
- {
36
- "type": "style",
37
- "release": "patch"
38
- },
39
- {
40
- "type": "test",
41
- "release": "patch"
42
- },
43
- {
44
- "type": "build",
45
- "release": "patch"
46
- },
47
- {
48
- "type": "ci",
49
- "release": "patch"
50
- },
51
- {
52
- "type": "chore",
53
- "scope": "deps",
54
- "release": "patch"
55
- }
56
- ]
57
- }
58
- ],
59
- [
60
- "@semantic-release/release-notes-generator",
61
- {
62
- "preset": "conventionalcommits",
63
- "writerOpts": {
64
- "types": [
65
- {
66
- "type": "feat",
67
- "section": "Features"
68
- },
69
- {
70
- "type": "fix",
71
- "section": "Bug Fixes"
72
- },
73
- {
74
- "type": "docs",
75
- "section": "Documentation",
76
- "hidden": false
77
- },
78
- {
79
- "type": "deps",
80
- "section": "Dependency Updates",
81
- "hidden": false
82
- },
83
- {
84
- "type": "chore",
85
- "hidden": true
86
- },
87
- {
88
- "type": "style",
89
- "hidden": true
90
- },
91
- {
92
- "type": "refactor",
93
- "hidden": true
94
- },
95
- {
96
- "type": "perf",
97
- "hidden": true
98
- },
99
- {
100
- "type": "test",
101
- "hidden": true
102
- }
103
- ]
104
- }
105
- }
106
- ],
107
- [
108
- "@semantic-release/changelog",
109
- {
110
- "changelogFile": "CHANGELOG.md",
111
- "changelogTitle": "# Changelog"
112
- }
113
- ],
114
- [
115
- "@semantic-release/npm",
116
- {
117
- "pkgRoot": "."
118
- }
119
- ],
120
- [
121
- "@semantic-release/git",
122
- {
123
- "assets": [
124
- "dist/**",
125
- "package.json",
126
- "CHANGELOG.md"
127
- ],
128
- "message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes} [skip ci]"
129
- }
130
- ],
131
- "@semantic-release/github"
132
- ]
133
- }