@budibase/shared-core 2.30.0 → 2.30.2
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 +2 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +2 -2
- package/dist/index.js.meta.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -113,6 +113,7 @@ export declare enum BpmStatusValue {
|
|
|
113
113
|
STARTED = "started",
|
|
114
114
|
COMPLETING_ACCOUNT_INFO = "completing_account_info",
|
|
115
115
|
VERIFYING_EMAIL = "verifying_email",
|
|
116
|
-
COMPLETED = "completed"
|
|
116
|
+
COMPLETED = "completed",
|
|
117
|
+
FAILED = "failed"
|
|
117
118
|
}
|
|
118
119
|
export declare const DEFAULT_BB_DATASOURCE_ID = "datasource_internal_bb_default";
|
package/dist/index.js
CHANGED
|
@@ -10383,6 +10383,7 @@ var BpmStatusValue = /* @__PURE__ */ ((BpmStatusValue2) => {
|
|
|
10383
10383
|
BpmStatusValue2["COMPLETING_ACCOUNT_INFO"] = "completing_account_info";
|
|
10384
10384
|
BpmStatusValue2["VERIFYING_EMAIL"] = "verifying_email";
|
|
10385
10385
|
BpmStatusValue2["COMPLETED"] = "completed";
|
|
10386
|
+
BpmStatusValue2["FAILED"] = "failed";
|
|
10386
10387
|
return BpmStatusValue2;
|
|
10387
10388
|
})(BpmStatusValue || {});
|
|
10388
10389
|
var DEFAULT_BB_DATASOURCE_ID = "datasource_internal_bb_default";
|