denotify-client 1.1.14 → 1.1.16
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/.eslintrc +36 -15
- package/.lintstagedrc +2 -2
- package/.prettierrc +14 -14
- package/.stylelintrc +16 -16
- package/README.md +1 -1
- package/dist/denotify-client.cjs +1 -1
- package/dist/denotify-client.d.ts +1 -1
- package/dist/denotify-client.iife.js +1 -1
- package/dist/denotify-client.mjs +1 -1
- package/dts-bundle-generator.config.ts +12 -12
- package/index.html +10 -10
- package/package.json +56 -52
- package/tsconfig.json +3 -5
- package/types/alertbuilder.d.ts +95 -95
- package/types/client.d.ts +11 -11
- package/types/denotifyclient.d.ts +49 -49
- package/types/functionbuilder.d.ts +28 -28
- package/types/index.d.ts +6 -6
- package/types/notifications/index.d.ts +30 -30
- package/types/notifications/notification.d.ts +17 -17
- package/types/notifications/notify_discord_webhook.d.ts +25 -25
- package/types/triggers/handler_function_call.d.ts +53 -53
- package/types/triggers/handler_function_call_v2.d.ts +83 -83
- package/types/triggers/handler_onchain_event.d.ts +44 -44
- package/types/triggers/index.d.ts +54 -54
- package/types/triggers/trigger.d.ts +50 -50
- package/types/types/notification.d.ts +4 -4
- package/types/types/trigger.d.ts +17 -17
- package/types/types/types.d.ts +14 -14
- package/types/util/filter.d.ts +56 -56
package/.eslintrc
CHANGED
@@ -1,18 +1,39 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
2
|
+
"root": true,
|
3
|
+
"parser": "@typescript-eslint/parser",
|
4
|
+
"plugins": ["@typescript-eslint", "prettier"],
|
5
|
+
"extends": [
|
6
|
+
"eslint:recommended",
|
7
|
+
"plugin:@typescript-eslint/eslint-recommended",
|
8
|
+
"plugin:@typescript-eslint/recommended",
|
9
|
+
"prettier"
|
10
|
+
],
|
11
|
+
"env": {
|
12
|
+
"browser": true,
|
13
|
+
"node": true
|
14
|
+
},
|
15
|
+
"ignorePatterns": [
|
16
|
+
"dist/*"
|
10
17
|
],
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
+
"rules": {
|
19
|
+
"prettier/prettier": [
|
20
|
+
"error",
|
21
|
+
{
|
22
|
+
"printWidth": 80,
|
23
|
+
"tabWidth": 2,
|
24
|
+
"singleQuote": true,
|
25
|
+
"trailingComma": "none",
|
26
|
+
"arrowParens": "avoid",
|
27
|
+
"bracketSpacing": true,
|
28
|
+
"useTabs": true,
|
29
|
+
"endOfLine": "auto",
|
30
|
+
"singleAttributePerLine": false,
|
31
|
+
"bracketSameLine": false,
|
32
|
+
"jsxBracketSameLine": false,
|
33
|
+
"jsxSingleQuote": false,
|
34
|
+
"quoteProps": "as-needed",
|
35
|
+
"semi": false
|
36
|
+
}
|
37
|
+
]
|
38
|
+
}
|
18
39
|
}
|
package/.lintstagedrc
CHANGED
package/.prettierrc
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
2
|
+
"printWidth": 80,
|
3
|
+
"tabWidth": 2,
|
4
|
+
"singleQuote": true,
|
5
|
+
"trailingComma": "none",
|
6
|
+
"arrowParens": "avoid",
|
7
|
+
"bracketSpacing": true,
|
8
|
+
"useTabs": true,
|
9
|
+
"endOfLine": "auto",
|
10
|
+
"singleAttributePerLine": false,
|
11
|
+
"bracketSameLine": false,
|
12
|
+
"jsxBracketSameLine": false,
|
13
|
+
"jsxSingleQuote": false,
|
14
|
+
"quoteProps": "as-needed",
|
15
|
+
"semi": false
|
16
16
|
}
|
package/.stylelintrc
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
2
|
+
"extends": [
|
3
|
+
"stylelint-config-recommended",
|
4
|
+
"stylelint-config-sass-guidelines"
|
5
|
+
],
|
6
|
+
"overrides": [
|
7
|
+
{
|
8
|
+
"files": ["**/*.scss"],
|
9
|
+
"customSyntax": "postcss-scss"
|
10
|
+
}
|
11
|
+
],
|
12
|
+
"rules": {
|
13
|
+
"function-parentheses-space-inside": null,
|
14
|
+
"no-descending-specificity": null,
|
15
|
+
"max-nesting-depth": 2,
|
16
|
+
"selector-max-id": 1
|
17
|
+
}
|
18
18
|
}
|
package/README.md
CHANGED
@@ -1 +1 @@
|
|
1
|
-
# denotify-client
|
1
|
+
# denotify-client
|