@bigbinary/neeto-webhooks-frontend 2.2.1 → 2.2.3
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/dist/NeetoWebhooks.js +41 -534
- package/dist/NeetoWebhooks.js.map +1 -1
- package/dist/cjs/NeetoWebhooks.js +116 -635
- package/dist/cjs/NeetoWebhooks.js.map +1 -1
- package/dist/cjs/index.js +5 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/package.json +104 -87
package/dist/cjs/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
var NeetoWebhooks = require('./NeetoWebhooks.js');
|
|
6
4
|
require('react-router-dom');
|
|
5
|
+
require('@babel/runtime/helpers/toConsumableArray');
|
|
7
6
|
require('@bigbinary/neeto-cist');
|
|
8
7
|
require('@bigbinary/neeto-commons-frontend/constants');
|
|
9
8
|
require('@bigbinary/neeto-commons-frontend/react-utils');
|
|
@@ -15,14 +14,18 @@ require('@bigbinary/neetoui/NoData');
|
|
|
15
14
|
require('@bigbinary/neetoui/Spinner');
|
|
16
15
|
require('@bigbinary/neetoui/Table');
|
|
17
16
|
require('react-i18next');
|
|
17
|
+
require('@babel/runtime/helpers/defineProperty');
|
|
18
18
|
require('@tanstack/react-query');
|
|
19
19
|
require('@tanstack/react-query-devtools');
|
|
20
20
|
require('react/jsx-runtime');
|
|
21
21
|
require('axios');
|
|
22
22
|
require('@bigbinary/neeto-commons-frontend/initializers');
|
|
23
|
+
require('@babel/runtime/helpers/asyncToGenerator');
|
|
24
|
+
require('@babel/runtime/regenerator');
|
|
23
25
|
require('@bigbinary/neeto-molecules/DateFormat');
|
|
24
26
|
require('@bigbinary/neetoui/Button');
|
|
25
27
|
require('@bigbinary/neetoui/Pane');
|
|
28
|
+
require('@babel/runtime/helpers/slicedToArray');
|
|
26
29
|
require('react');
|
|
27
30
|
require('@bigbinary/neetoui/Typography');
|
|
28
31
|
require('@bigbinary/neetoui/Tab');
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { default as NeetoWebhooks } from './NeetoWebhooks.js';
|
|
2
2
|
import 'react-router-dom';
|
|
3
|
+
import '@babel/runtime/helpers/toConsumableArray';
|
|
3
4
|
import '@bigbinary/neeto-cist';
|
|
4
5
|
import '@bigbinary/neeto-commons-frontend/constants';
|
|
5
6
|
import '@bigbinary/neeto-commons-frontend/react-utils';
|
|
@@ -11,14 +12,18 @@ import '@bigbinary/neetoui/NoData';
|
|
|
11
12
|
import '@bigbinary/neetoui/Spinner';
|
|
12
13
|
import '@bigbinary/neetoui/Table';
|
|
13
14
|
import 'react-i18next';
|
|
15
|
+
import '@babel/runtime/helpers/defineProperty';
|
|
14
16
|
import '@tanstack/react-query';
|
|
15
17
|
import '@tanstack/react-query-devtools';
|
|
16
18
|
import 'react/jsx-runtime';
|
|
17
19
|
import 'axios';
|
|
18
20
|
import '@bigbinary/neeto-commons-frontend/initializers';
|
|
21
|
+
import '@babel/runtime/helpers/asyncToGenerator';
|
|
22
|
+
import '@babel/runtime/regenerator';
|
|
19
23
|
import '@bigbinary/neeto-molecules/DateFormat';
|
|
20
24
|
import '@bigbinary/neetoui/Button';
|
|
21
25
|
import '@bigbinary/neetoui/Pane';
|
|
26
|
+
import '@babel/runtime/helpers/slicedToArray';
|
|
22
27
|
import 'react';
|
|
23
28
|
import '@bigbinary/neetoui/Typography';
|
|
24
29
|
import '@bigbinary/neetoui/Tab';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-webhooks-frontend",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"description": "Manage webhooks across neeto products.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://github.com/bigbinary/neeto-webhooks-nano",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"module": "dist/index.js",
|
|
19
19
|
"types": "types.d.ts",
|
|
20
20
|
"scripts": {
|
|
21
|
-
"build": "NODE_ENV=production rollup -c --environment production",
|
|
21
|
+
"build": "NODE_ENV=production rollup --bundleConfigAsCjs -c --environment production",
|
|
22
22
|
"build-preview": "NODE_ENV=production webpack",
|
|
23
23
|
"prepare": "husky install",
|
|
24
24
|
"release": "yarn build && yalc push --sig"
|
|
@@ -52,26 +52,25 @@
|
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@babel/core": "7.
|
|
56
|
-
"@babel/eslint-parser": "7.
|
|
57
|
-
"@babel/plugin-transform-runtime": "7.
|
|
58
|
-
"@babel/preset-env": "7.
|
|
59
|
-
"@babel/preset-react": "7.
|
|
60
|
-
"@babel/preset-typescript": "7.
|
|
61
|
-
"@babel/runtime": "7.
|
|
62
|
-
"@bigbinary/babel-preset-neeto": "1.0.
|
|
63
|
-
"@bigbinary/eslint-plugin-neeto": "1.5.
|
|
64
|
-
"@bigbinary/neeto-
|
|
65
|
-
"@bigbinary/neeto-
|
|
66
|
-
"@bigbinary/neeto-
|
|
67
|
-
"@bigbinary/neeto-
|
|
68
|
-
"@bigbinary/neeto-
|
|
69
|
-
"@bigbinary/
|
|
70
|
-
"@bigbinary/neetoui": "8.2.14",
|
|
55
|
+
"@babel/core": "^7.19.1",
|
|
56
|
+
"@babel/eslint-parser": "7.17.0",
|
|
57
|
+
"@babel/plugin-transform-runtime": "^7.19.1",
|
|
58
|
+
"@babel/preset-env": "7.17.10",
|
|
59
|
+
"@babel/preset-react": "7.16.7",
|
|
60
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
61
|
+
"@babel/runtime": "7.19.0",
|
|
62
|
+
"@bigbinary/babel-preset-neeto": "^1.0.3",
|
|
63
|
+
"@bigbinary/eslint-plugin-neeto": "1.5.5",
|
|
64
|
+
"@bigbinary/neeto-cist": "1.0.13",
|
|
65
|
+
"@bigbinary/neeto-commons-frontend": "4.10.0",
|
|
66
|
+
"@bigbinary/neeto-filters-frontend": "4.3.6",
|
|
67
|
+
"@bigbinary/neeto-icons": "1.20.9",
|
|
68
|
+
"@bigbinary/neeto-molecules": "3.7.29",
|
|
69
|
+
"@bigbinary/neetoui": "8.2.28",
|
|
71
70
|
"@emotion/is-prop-valid": "1.2.0",
|
|
72
71
|
"@faker-js/faker": "8.2.0",
|
|
73
|
-
"@honeybadger-io/js": "6.
|
|
74
|
-
"@honeybadger-io/react": "6.1.
|
|
72
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
73
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
75
74
|
"@rollup/plugin-alias": "5.0.1",
|
|
76
75
|
"@rollup/plugin-babel": "6.0.4",
|
|
77
76
|
"@rollup/plugin-commonjs": "25.0.7",
|
|
@@ -81,118 +80,138 @@
|
|
|
81
80
|
"@svgr/rollup": "8.1.0",
|
|
82
81
|
"@tanstack/react-query": "5.40.0",
|
|
83
82
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
84
|
-
"antd": "5.
|
|
85
|
-
"autoprefixer": "10.4.
|
|
83
|
+
"antd": "5.16.0",
|
|
84
|
+
"autoprefixer": "^10.4.5",
|
|
86
85
|
"axios": "1.7.4",
|
|
87
|
-
"babel-loader": "
|
|
88
|
-
"babel-plugin-istanbul": "6.1.1",
|
|
86
|
+
"babel-loader": "^8.2.5",
|
|
87
|
+
"babel-plugin-istanbul": "^6.1.1",
|
|
89
88
|
"babel-plugin-js-logger": "1.0.17",
|
|
90
89
|
"babel-plugin-macros": "3.1.0",
|
|
90
|
+
"babel-plugin-module-resolver": "^5.0.0",
|
|
91
91
|
"babel-plugin-preval": "^5.1.0",
|
|
92
92
|
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
|
|
93
93
|
"babel-preset-react": "6.24.1",
|
|
94
|
-
"babel-preset-typescript": "7.0.0-alpha.19",
|
|
94
|
+
"babel-preset-typescript": "^7.0.0-alpha.19",
|
|
95
95
|
"browserify-zlib": "0.2.0",
|
|
96
|
-
"buffer": "6.0.3",
|
|
97
|
-
"classnames": "2.3.
|
|
98
|
-
"crypto-browserify": "3.12.0",
|
|
96
|
+
"buffer": "^6.0.3",
|
|
97
|
+
"classnames": "2.3.1",
|
|
98
|
+
"crypto-browserify": "^3.12.0",
|
|
99
99
|
"css-loader": "6.8.1",
|
|
100
100
|
"dotenv-webpack": "^8.0.1",
|
|
101
|
-
"eslint": "8.
|
|
101
|
+
"eslint": "8.14.0",
|
|
102
102
|
"eslint-config-prettier": "8.5.0",
|
|
103
|
-
"eslint-plugin-cypress": "2.
|
|
104
|
-
"eslint-plugin-import": "2.
|
|
103
|
+
"eslint-plugin-cypress": "2.12.1",
|
|
104
|
+
"eslint-plugin-import": "2.26.0",
|
|
105
105
|
"eslint-plugin-jam3": "0.2.3",
|
|
106
106
|
"eslint-plugin-json": "3.1.0",
|
|
107
|
-
"eslint-plugin-no-unsanitized": "4.0.2",
|
|
107
|
+
"eslint-plugin-no-unsanitized": "^4.0.2",
|
|
108
108
|
"eslint-plugin-prettier": "4.0.0",
|
|
109
|
-
"eslint-plugin-promise": "6.
|
|
110
|
-
"eslint-plugin-react": "7.
|
|
111
|
-
"eslint-plugin-react-hooks": "4.
|
|
112
|
-
"eslint-plugin-security": "1.7.1",
|
|
109
|
+
"eslint-plugin-promise": "6.0.0",
|
|
110
|
+
"eslint-plugin-react": "7.29.4",
|
|
111
|
+
"eslint-plugin-react-hooks": "4.5.0",
|
|
112
|
+
"eslint-plugin-security": "^1.7.1",
|
|
113
113
|
"eslint-plugin-sonarjs": "^0.21.0",
|
|
114
|
-
"eslint-plugin-unused-imports": "
|
|
115
|
-
"eslint-plugin-xss": "0.1.12",
|
|
116
|
-
"formik": "2.
|
|
114
|
+
"eslint-plugin-unused-imports": "2.0.0",
|
|
115
|
+
"eslint-plugin-xss": "^0.1.12",
|
|
116
|
+
"formik": "2.2.9",
|
|
117
117
|
"html-webpack-plugin": "5.5.3",
|
|
118
118
|
"https-browserify": "1.0.0",
|
|
119
|
-
"husky": "
|
|
120
|
-
"i18next": "
|
|
119
|
+
"husky": "7.0.4",
|
|
120
|
+
"i18next": "22.5.1",
|
|
121
121
|
"js-logger": "1.6.1",
|
|
122
|
-
"lint-staged": "
|
|
122
|
+
"lint-staged": "12.4.1",
|
|
123
123
|
"mini-css-extract-plugin": "2.7.6",
|
|
124
124
|
"mixpanel-browser": "2.47.0",
|
|
125
125
|
"os-browserify": "0.3.0",
|
|
126
|
-
"path-browserify": "1.0.1",
|
|
127
|
-
"postcss": "8.4.31",
|
|
128
|
-
"postcss-import": "15.
|
|
129
|
-
"postcss-loader": "7.
|
|
130
|
-
"postcss-preset-env": "
|
|
126
|
+
"path-browserify": "^1.0.1",
|
|
127
|
+
"postcss": "^8.4.31",
|
|
128
|
+
"postcss-import": "^15.0.0",
|
|
129
|
+
"postcss-loader": "^7.0.1",
|
|
130
|
+
"postcss-preset-env": "7.8.2",
|
|
131
131
|
"prettier": "2.6.2",
|
|
132
132
|
"prettier-plugin-tailwindcss": "0.1.10",
|
|
133
133
|
"process": "0.11.10",
|
|
134
|
-
"qs": "6.11.2",
|
|
135
|
-
"ramda": "0.29.
|
|
134
|
+
"qs": "^6.11.2",
|
|
135
|
+
"ramda": "0.29.0",
|
|
136
136
|
"react": "18.2.0",
|
|
137
137
|
"react-dom": "18.2.0",
|
|
138
|
-
"react-helmet": "6.1.0",
|
|
139
|
-
"react-i18next": "
|
|
140
|
-
"react-router-dom": "5.3.
|
|
141
|
-
"react-toastify": "8.2
|
|
138
|
+
"react-helmet": "^6.1.0",
|
|
139
|
+
"react-i18next": "12.3.1",
|
|
140
|
+
"react-router-dom": "5.3.3",
|
|
141
|
+
"react-toastify": "8.0.2",
|
|
142
142
|
"react_ujs": "^3.1.1",
|
|
143
|
-
"rollup": "
|
|
143
|
+
"rollup": "^4.24.0",
|
|
144
144
|
"rollup-plugin-analyzer": "4.0.0",
|
|
145
145
|
"rollup-plugin-cleaner": "1.0.0",
|
|
146
146
|
"rollup-plugin-copy": "^3.5.0",
|
|
147
147
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
148
148
|
"rollup-plugin-styles": "4.0.0",
|
|
149
|
-
"sass": "1.
|
|
150
|
-
"sass-loader": "13.
|
|
149
|
+
"sass": "^1.54.9",
|
|
150
|
+
"sass-loader": "^13.0.2",
|
|
151
151
|
"shakapacker": "6.6.0",
|
|
152
|
-
"
|
|
152
|
+
"source-map-loader": "4.0.1",
|
|
153
|
+
"stream-browserify": "^3.0.0",
|
|
153
154
|
"stream-http": "3.2.0",
|
|
154
|
-
"style-loader": "3.3.
|
|
155
|
-
"tailwindcss": "3.4.1",
|
|
155
|
+
"style-loader": "^3.3.1",
|
|
156
|
+
"tailwindcss": "^3.4.1",
|
|
156
157
|
"tty-browserify": "0.0.1",
|
|
157
|
-
"url": "0.11.
|
|
158
|
-
"util": "0.12.5",
|
|
158
|
+
"url": "^0.11.0",
|
|
159
|
+
"util": "^0.12.5",
|
|
159
160
|
"vm-browserify": "1.1.2",
|
|
160
|
-
"webpack": "5.
|
|
161
|
+
"webpack": "5.94.0",
|
|
161
162
|
"webpack-assets-manifest": "5.1.0",
|
|
162
163
|
"webpack-cli": "5.1.4",
|
|
163
164
|
"webpack-dev-server": "4.15.1",
|
|
164
|
-
"yup": "
|
|
165
|
+
"yup": "0.32.11",
|
|
166
|
+
"zustand": "4.3.2"
|
|
165
167
|
},
|
|
166
168
|
"peerDependencies": {
|
|
167
|
-
"@
|
|
168
|
-
"@bigbinary/neeto-
|
|
169
|
-
"@bigbinary/neeto-
|
|
170
|
-
"@bigbinary/neeto-filters-frontend": "4.3.
|
|
171
|
-
"@bigbinary/neeto-icons": "1.20.
|
|
172
|
-
"@bigbinary/neeto-molecules": "3.
|
|
173
|
-
"@bigbinary/neetoui": "8.2.
|
|
174
|
-
"@honeybadger-io/js": "^6.
|
|
175
|
-
"@honeybadger-io/react": "^6.1.
|
|
169
|
+
"@babel/runtime": "7.19.0",
|
|
170
|
+
"@bigbinary/neeto-cist": "1.0.13",
|
|
171
|
+
"@bigbinary/neeto-commons-frontend": "4.10.0",
|
|
172
|
+
"@bigbinary/neeto-filters-frontend": "4.3.6",
|
|
173
|
+
"@bigbinary/neeto-icons": "1.20.9",
|
|
174
|
+
"@bigbinary/neeto-molecules": "3.7.29",
|
|
175
|
+
"@bigbinary/neetoui": "8.2.28",
|
|
176
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
177
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
176
178
|
"@tanstack/react-query": "5.40.0",
|
|
177
179
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
180
|
+
"antd": "5.16.0",
|
|
178
181
|
"axios": "1.7.4",
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
182
|
+
"buffer": "^6.0.3",
|
|
183
|
+
"classnames": "2.3.1",
|
|
184
|
+
"crypto-browserify": "^3.12.0",
|
|
185
|
+
"formik": "2.2.9",
|
|
186
|
+
"https-browserify": "1.0.0",
|
|
187
|
+
"i18next": "22.5.1",
|
|
188
|
+
"js-logger": "1.6.1",
|
|
183
189
|
"mixpanel-browser": "^2.45.0",
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
190
|
+
"os-browserify": "0.3.0",
|
|
191
|
+
"path-browserify": "^1.0.1",
|
|
192
|
+
"qs": "^6.11.2",
|
|
193
|
+
"ramda": "0.29.0",
|
|
194
|
+
"react": "18.2.0",
|
|
195
|
+
"react-dom": "18.2.0",
|
|
187
196
|
"react-helmet": "^6.1.0",
|
|
188
|
-
"react-i18next": "
|
|
189
|
-
"react-router-dom": "
|
|
190
|
-
"react-toastify": "
|
|
191
|
-
"
|
|
197
|
+
"react-i18next": "12.3.1",
|
|
198
|
+
"react-router-dom": "5.3.3",
|
|
199
|
+
"react-toastify": "8.0.2",
|
|
200
|
+
"source-map-loader": "4.0.1",
|
|
201
|
+
"stream-browserify": "^3.0.0",
|
|
202
|
+
"stream-http": "3.2.0",
|
|
203
|
+
"tailwindcss": "^3.4.1",
|
|
204
|
+
"tty-browserify": "0.0.1",
|
|
205
|
+
"url": "^0.11.0",
|
|
206
|
+
"util": "^0.12.5",
|
|
207
|
+
"vm-browserify": "1.1.2",
|
|
208
|
+
"yup": "0.32.11",
|
|
192
209
|
"zustand": "4.3.2"
|
|
193
210
|
},
|
|
194
211
|
"resolutions": {
|
|
195
|
-
"postcss": "^8"
|
|
212
|
+
"postcss": "^8",
|
|
213
|
+
"wrap-ansi": "7.0.0",
|
|
214
|
+
"string-width": "4.1.0"
|
|
196
215
|
},
|
|
197
216
|
"engines": {
|
|
198
217
|
"node": ">=18.12",
|
|
@@ -201,8 +220,6 @@
|
|
|
201
220
|
},
|
|
202
221
|
"dependencies": {
|
|
203
222
|
"babel-plugin-transform-imports": "^2.0.0",
|
|
204
|
-
"react-router-nav-prompt": "0.4.1"
|
|
205
|
-
"source-map-loader": "^4.0.1",
|
|
206
|
-
"zustand": "4.3.2"
|
|
223
|
+
"react-router-nav-prompt": "0.4.1"
|
|
207
224
|
}
|
|
208
225
|
}
|