@budibase/server 2.6.26 → 2.6.27

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.
@@ -8,7 +8,7 @@
8
8
  <link rel="preconnect" href="https://fonts.gstatic.com" />
9
9
  <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap"
10
10
  rel="stylesheet" />
11
- <script type="module" crossorigin src="/builder/assets/index.9bd22774.js"></script>
11
+ <script type="module" crossorigin src="/builder/assets/index.4ca5529d.js"></script>
12
12
  <link rel="stylesheet" href="/builder/assets/index.a86e2071.css">
13
13
  </head>
14
14
 
@@ -229,6 +229,7 @@ var init_event = __esm({
229
229
  Event6["USER_PASSWORD_UPDATED"] = "user:password:updated";
230
230
  Event6["USER_PASSWORD_RESET_REQUESTED"] = "user:password:reset:requested";
231
231
  Event6["USER_PASSWORD_RESET"] = "user:password:reset";
232
+ Event6["USER_DATA_COLLABORATION"] = "user:data:collaboration";
232
233
  Event6["EMAIL_SMTP_CREATED"] = "email:smtp:created";
233
234
  Event6["EMAIL_SMTP_UPDATED"] = "email:smtp:updated";
234
235
  Event6["AUTH_SSO_CREATED"] = "auth:sso:created";
@@ -379,6 +380,7 @@ var init_event = __esm({
379
380
  ["user:password:force:reset" /* USER_PASSWORD_FORCE_RESET */]: void 0,
380
381
  ["user_group:onboarding_added" /* USER_GROUP_ONBOARDING */]: void 0,
381
382
  ["user:onboarding:complete" /* USER_ONBOARDING_COMPLETE */]: void 0,
383
+ ["user:data:collaboration" /* USER_DATA_COLLABORATION */]: void 0,
382
384
  // EMAIL
383
385
  ["email:smtp:created" /* EMAIL_SMTP_CREATED */]: `Email configuration created`,
384
386
  ["email:smtp:updated" /* EMAIL_SMTP_UPDATED */]: `Email configuration updated`,
@@ -8099,6 +8101,12 @@ async function passwordReset(user) {
8099
8101
  };
8100
8102
  await publishEvent("user:password:reset" /* USER_PASSWORD_RESET */, properties);
8101
8103
  }
8104
+ async function dataCollaboration(users2) {
8105
+ const properties = {
8106
+ users: users2
8107
+ };
8108
+ await publishEvent("user:data:collaboration" /* USER_DATA_COLLABORATION */, properties);
8109
+ }
8102
8110
  var user_default;
8103
8111
  var init_user9 = __esm({
8104
8112
  "../backend-core/src/events/publishers/user.ts"() {
@@ -8119,7 +8127,8 @@ var init_user9 = __esm({
8119
8127
  passwordForceReset,
8120
8128
  passwordUpdated,
8121
8129
  passwordResetRequested,
8122
- passwordReset
8130
+ passwordReset,
8131
+ dataCollaboration
8123
8132
  };
8124
8133
  }
8125
8134
  });