@budibase/types 3.2.26 → 3.2.28
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/index.js +6 -1
- package/dist/index.js.map +2 -2
- package/dist/index.js.meta.json +1 -1
- package/dist/sdk/db.d.ts +1 -1
- package/dist/sdk/events/event.d.ts +3 -1
- package/dist/sdk/events/index.d.ts +1 -0
- package/dist/sdk/events/rowAction.d.ts +5 -0
- package/dist/sdk/events/table.d.ts +3 -0
- package/dist/sdk/events/view.d.ts +9 -2
- package/dist/sdk/migrations.d.ts +2 -1
- package/package.json +3 -4
- package/dist/tsconfig.tsbuildinfo +0 -1
package/dist/index.js
CHANGED
|
@@ -287,6 +287,7 @@ var Event = /* @__PURE__ */ ((Event2) => {
|
|
|
287
287
|
Event2["VIEW_CALCULATION_CREATED"] = "view:calculation:created";
|
|
288
288
|
Event2["VIEW_CALCULATION_UPDATED"] = "view:calculation:updated";
|
|
289
289
|
Event2["VIEW_CALCULATION_DELETED"] = "view:calculation:deleted";
|
|
290
|
+
Event2["VIEW_JOIN_CREATED"] = "view:join:created";
|
|
290
291
|
Event2["ROWS_CREATED"] = "rows:created";
|
|
291
292
|
Event2["ROWS_IMPORTED"] = "rows:imported";
|
|
292
293
|
Event2["COMPONENT_CREATED"] = "component:created";
|
|
@@ -335,6 +336,7 @@ var Event = /* @__PURE__ */ ((Event2) => {
|
|
|
335
336
|
Event2["ENVIRONMENT_VARIABLE_UPGRADE_PANEL_OPENED"] = "environment_variable:upgrade_panel_opened";
|
|
336
337
|
Event2["AUDIT_LOGS_FILTERED"] = "audit_log:filtered";
|
|
337
338
|
Event2["AUDIT_LOGS_DOWNLOADED"] = "audit_log:downloaded";
|
|
339
|
+
Event2["ROW_ACTION_CREATED"] = "row_action:created";
|
|
338
340
|
return Event2;
|
|
339
341
|
})(Event || {});
|
|
340
342
|
var UserGroupSyncEvents = [
|
|
@@ -491,6 +493,7 @@ var AuditedEventFriendlyName = {
|
|
|
491
493
|
["view:calculation:created" /* VIEW_CALCULATION_CREATED */]: void 0,
|
|
492
494
|
["view:calculation:updated" /* VIEW_CALCULATION_UPDATED */]: void 0,
|
|
493
495
|
["view:calculation:deleted" /* VIEW_CALCULATION_DELETED */]: void 0,
|
|
496
|
+
["view:join:created" /* VIEW_JOIN_CREATED */]: void 0,
|
|
494
497
|
// SERVED - NOT AUDITED
|
|
495
498
|
["served:builder" /* SERVED_BUILDER */]: void 0,
|
|
496
499
|
["served:app" /* SERVED_APP */]: void 0,
|
|
@@ -505,7 +508,9 @@ var AuditedEventFriendlyName = {
|
|
|
505
508
|
["installation:firstStartup" /* INSTALLATION_FIRST_STARTUP */]: void 0,
|
|
506
509
|
// AUDIT LOG - NOT AUDITED
|
|
507
510
|
["audit_log:filtered" /* AUDIT_LOGS_FILTERED */]: void 0,
|
|
508
|
-
["audit_log:downloaded" /* AUDIT_LOGS_DOWNLOADED */]: void 0
|
|
511
|
+
["audit_log:downloaded" /* AUDIT_LOGS_DOWNLOADED */]: void 0,
|
|
512
|
+
// ROW ACTIONS - NOT AUDITED
|
|
513
|
+
["row_action:created" /* ROW_ACTION_CREATED */]: void 0
|
|
509
514
|
};
|
|
510
515
|
|
|
511
516
|
// src/sdk/events/identification.ts
|