denotify-client 1.1.9 → 1.1.12
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/.env +9 -0
- package/.eslintignore +8 -0
- package/.eslintrc +18 -0
- package/.lintstagedrc +4 -0
- package/.prettierignore +8 -0
- package/.prettierrc +16 -0
- package/.stylelintignore +8 -0
- package/.stylelintrc +18 -0
- package/CHANGELOG.md +0 -0
- package/dist/denotify-client.cjs +6 -0
- package/dist/denotify-client.d.ts +355 -0
- package/dist/denotify-client.iife.js +6 -0
- package/dist/denotify-client.mjs +12709 -0
- package/dts-bundle-generator.config.ts +18 -0
- package/favicon.svg +15 -0
- package/index.html +13 -0
- package/jest.config.ts +9 -0
- package/package.json +51 -62
- package/tsconfig.json +22 -0
- package/vite.config.ts +35 -0
- package/dist/alertbuilder.js +0 -67
- package/dist/denotifyclient.js +0 -125
- package/dist/examples/balance-monitor.js +0 -54
- package/dist/examples/delete-alert.js +0 -11
- package/dist/functionbuilder.js +0 -41
- package/dist/index.js +0 -569
- package/dist/index.min.js +0 -1
- package/dist/index.mjs +0 -539
- package/dist/notifications/index.js +0 -3
- package/dist/notifications/notification.js +0 -8
- package/dist/notifications/notify_discord_webhook.js +0 -21
- package/dist/triggers/handler_function_call.js +0 -26
- package/dist/triggers/handler_function_call_v2.js +0 -41
- package/dist/triggers/handler_onchain_event.js +0 -28
- package/dist/triggers/index.js +0 -5
- package/dist/triggers/trigger.js +0 -14
- package/dist/types/types.js +0 -1
- package/dist/util/filter.js +0 -160
- /package/{license → LICENSE.md} +0 -0
package/.env
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
DISCORD_WEBHOOK=https://discord.com/api/webhooks/1063967722276388874/VrdsvfyCTEtnRIk5Vzhj1Y0Fi7pFueN5dH9Bz7OeXyNpwJUI7ucIzdIQwpOq8amVgCbW
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
PROJECT_ID=xfxplbmdcoukaitzxzei
|
6
|
+
ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InhmeHBsYm1kY291a2FpdHp4emVpIiwicm9sZSI6ImFub24iLCJpYXQiOjE2NzgwMDg4NzMsImV4cCI6MTk5MzU4NDg3M30.WLk7bR5syQ4YJ8_jNOAuaT1UMvl7E2MS_VYMs7sN56c
|
7
|
+
|
8
|
+
EMAIL=s.battenally@gmail.com
|
9
|
+
PASSWORD=Password
|
package/.eslintignore
ADDED
package/.eslintrc
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
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
|
+
"rules": {
|
16
|
+
"prettier/prettier": "error"
|
17
|
+
}
|
18
|
+
}
|
package/.lintstagedrc
ADDED
package/.prettierignore
ADDED
package/.prettierrc
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
{
|
2
|
+
"printWidth": 80,
|
3
|
+
"tabWidth": 2,
|
4
|
+
"singleQuote": false,
|
5
|
+
"trailingComma": "es5",
|
6
|
+
"arrowParens": "avoid",
|
7
|
+
"bracketSpacing": true,
|
8
|
+
"useTabs": false,
|
9
|
+
"endOfLine": "auto",
|
10
|
+
"singleAttributePerLine": false,
|
11
|
+
"bracketSameLine": false,
|
12
|
+
"jsxBracketSameLine": false,
|
13
|
+
"jsxSingleQuote": false,
|
14
|
+
"quoteProps": "as-needed",
|
15
|
+
"semi": true
|
16
|
+
}
|
package/.stylelintignore
ADDED
package/.stylelintrc
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
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
|
+
}
|
package/CHANGELOG.md
ADDED
File without changes
|