@budibase/shared-core 2.22.11 → 2.22.13
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/constants/index.d.ts +15 -0
- package/dist/index.js +27 -0
- package/dist/index.js.map +3 -3
- package/dist/index.js.meta.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -95,3 +95,18 @@ export declare const ValidColumnNameRegex: RegExp;
|
|
|
95
95
|
export declare const ValidSnippetNameRegex: RegExp;
|
|
96
96
|
export declare const REBOOT_CRON = "@reboot";
|
|
97
97
|
export declare const InvalidFileExtensions: string[];
|
|
98
|
+
export declare enum BpmCorrelationKey {
|
|
99
|
+
ONBOARDING = "budibase:onboarding:correlationkey"
|
|
100
|
+
}
|
|
101
|
+
export declare enum BpmInstanceKey {
|
|
102
|
+
ONBOARDING = "budibase:onboarding:instancekey"
|
|
103
|
+
}
|
|
104
|
+
export declare enum BpmStatusKey {
|
|
105
|
+
ONBOARDING = "budibase:onboarding:status"
|
|
106
|
+
}
|
|
107
|
+
export declare enum BpmStatusValue {
|
|
108
|
+
STARTED = "started",
|
|
109
|
+
COMPLETING_ACCOUNT_INFO = "completing_account_info",
|
|
110
|
+
VERIFYING_EMAIL = "verifying_email",
|
|
111
|
+
COMPLETED = "completed"
|
|
112
|
+
}
|
package/dist/index.js
CHANGED
|
@@ -4527,6 +4527,10 @@ var require_fp = __commonJS({
|
|
|
4527
4527
|
// src/index.ts
|
|
4528
4528
|
var src_exports = {};
|
|
4529
4529
|
__export(src_exports, {
|
|
4530
|
+
BpmCorrelationKey: () => BpmCorrelationKey,
|
|
4531
|
+
BpmInstanceKey: () => BpmInstanceKey,
|
|
4532
|
+
BpmStatusKey: () => BpmStatusKey,
|
|
4533
|
+
BpmStatusValue: () => BpmStatusValue,
|
|
4530
4534
|
BuilderSocketEvent: () => BuilderSocketEvent,
|
|
4531
4535
|
GridSocketEvent: () => GridSocketEvent,
|
|
4532
4536
|
Header: () => Header,
|
|
@@ -4727,6 +4731,25 @@ var InvalidFileExtensions = [
|
|
|
4727
4731
|
"wsh",
|
|
4728
4732
|
"zip"
|
|
4729
4733
|
];
|
|
4734
|
+
var BpmCorrelationKey = /* @__PURE__ */ ((BpmCorrelationKey2) => {
|
|
4735
|
+
BpmCorrelationKey2["ONBOARDING"] = "budibase:onboarding:correlationkey";
|
|
4736
|
+
return BpmCorrelationKey2;
|
|
4737
|
+
})(BpmCorrelationKey || {});
|
|
4738
|
+
var BpmInstanceKey = /* @__PURE__ */ ((BpmInstanceKey2) => {
|
|
4739
|
+
BpmInstanceKey2["ONBOARDING"] = "budibase:onboarding:instancekey";
|
|
4740
|
+
return BpmInstanceKey2;
|
|
4741
|
+
})(BpmInstanceKey || {});
|
|
4742
|
+
var BpmStatusKey = /* @__PURE__ */ ((BpmStatusKey2) => {
|
|
4743
|
+
BpmStatusKey2["ONBOARDING"] = "budibase:onboarding:status";
|
|
4744
|
+
return BpmStatusKey2;
|
|
4745
|
+
})(BpmStatusKey || {});
|
|
4746
|
+
var BpmStatusValue = /* @__PURE__ */ ((BpmStatusValue2) => {
|
|
4747
|
+
BpmStatusValue2["STARTED"] = "started";
|
|
4748
|
+
BpmStatusValue2["COMPLETING_ACCOUNT_INFO"] = "completing_account_info";
|
|
4749
|
+
BpmStatusValue2["VERIFYING_EMAIL"] = "verifying_email";
|
|
4750
|
+
BpmStatusValue2["COMPLETED"] = "completed";
|
|
4751
|
+
return BpmStatusValue2;
|
|
4752
|
+
})(BpmStatusValue || {});
|
|
4730
4753
|
|
|
4731
4754
|
// src/filters.ts
|
|
4732
4755
|
var filters_exports = {};
|
|
@@ -5544,6 +5567,10 @@ function canBeSortColumn(type) {
|
|
|
5544
5567
|
}
|
|
5545
5568
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5546
5569
|
0 && (module.exports = {
|
|
5570
|
+
BpmCorrelationKey,
|
|
5571
|
+
BpmInstanceKey,
|
|
5572
|
+
BpmStatusKey,
|
|
5573
|
+
BpmStatusValue,
|
|
5547
5574
|
BuilderSocketEvent,
|
|
5548
5575
|
GridSocketEvent,
|
|
5549
5576
|
Header,
|