@beignet/devtools 0.0.13 → 0.0.14
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/CHANGELOG.md +10 -0
- package/README.md +16 -8
- package/dist/ui-html.generated.d.ts.map +1 -1
- package/dist/ui-html.generated.js +1 -1
- package/dist/ui-html.generated.js.map +1 -1
- package/dist/watchers.d.ts +1 -1
- package/dist/watchers.d.ts.map +1 -1
- package/dist/watchers.js +32 -0
- package/dist/watchers.js.map +1 -1
- package/package.json +1 -1
- package/src/ui-html.generated.ts +1 -1
- package/src/watchers.ts +33 -0
package/src/watchers.ts
CHANGED
|
@@ -17,8 +17,12 @@ export const BUILT_IN_DEVTOOLS_WATCHER_NAMES = [
|
|
|
17
17
|
"storage",
|
|
18
18
|
"uploads",
|
|
19
19
|
"mail",
|
|
20
|
+
"payments",
|
|
21
|
+
"flags",
|
|
22
|
+
"entitlements",
|
|
20
23
|
"notifications",
|
|
21
24
|
"auth",
|
|
25
|
+
"policies",
|
|
22
26
|
"audit",
|
|
23
27
|
"rateLimit",
|
|
24
28
|
"custom",
|
|
@@ -174,6 +178,28 @@ const BUILT_IN_DEVTOOLS_WATCHERS = {
|
|
|
174
178
|
eventTypes: ["custom"],
|
|
175
179
|
enabled: true,
|
|
176
180
|
},
|
|
181
|
+
payments: {
|
|
182
|
+
name: "payments",
|
|
183
|
+
label: "Payments",
|
|
184
|
+
description:
|
|
185
|
+
"Checkout, billing portal, refund, and webhook activity from payment providers.",
|
|
186
|
+
eventTypes: ["custom"],
|
|
187
|
+
enabled: true,
|
|
188
|
+
},
|
|
189
|
+
flags: {
|
|
190
|
+
name: "flags",
|
|
191
|
+
label: "Feature flags",
|
|
192
|
+
description: "Feature flag evaluations, exposures, and tracking events.",
|
|
193
|
+
eventTypes: ["custom"],
|
|
194
|
+
enabled: true,
|
|
195
|
+
},
|
|
196
|
+
entitlements: {
|
|
197
|
+
name: "entitlements",
|
|
198
|
+
label: "Entitlements",
|
|
199
|
+
description: "Product access decisions derived from billing or plan state.",
|
|
200
|
+
eventTypes: ["custom"],
|
|
201
|
+
enabled: true,
|
|
202
|
+
},
|
|
177
203
|
notifications: {
|
|
178
204
|
name: "notifications",
|
|
179
205
|
label: "Notifications",
|
|
@@ -189,6 +215,13 @@ const BUILT_IN_DEVTOOLS_WATCHERS = {
|
|
|
189
215
|
eventTypes: ["custom"],
|
|
190
216
|
enabled: true,
|
|
191
217
|
},
|
|
218
|
+
policies: {
|
|
219
|
+
name: "policies",
|
|
220
|
+
label: "Policies",
|
|
221
|
+
description: "Application authorization policy decisions.",
|
|
222
|
+
eventTypes: ["custom"],
|
|
223
|
+
enabled: true,
|
|
224
|
+
},
|
|
192
225
|
audit: {
|
|
193
226
|
name: "audit",
|
|
194
227
|
label: "Audit",
|