@wix/ditto-codegen-public 1.0.290 → 1.0.292
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/out.js +15 -5
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -10270,10 +10270,15 @@ var require_logger = __commonJS({
|
|
|
10270
10270
|
function initLogger(sessionId2) {
|
|
10271
10271
|
panoramaConfig.setSessionId(sessionId2);
|
|
10272
10272
|
}
|
|
10273
|
-
exports2.logger =
|
|
10273
|
+
exports2.logger = (() => {
|
|
10274
|
+
const environment = process.env.CODEGEN_ENVIRONMENT;
|
|
10274
10275
|
const getContextLogger = () => {
|
|
10275
10276
|
const { jobId } = job_context_storage_12.jobContextStorage.getStore() ?? {};
|
|
10276
|
-
|
|
10277
|
+
const data = {
|
|
10278
|
+
...jobId ? { jobId } : {},
|
|
10279
|
+
...environment ? { environment } : {}
|
|
10280
|
+
};
|
|
10281
|
+
return createLogger(panoramaFactory.client(Object.keys(data).length > 0 ? { data } : void 0));
|
|
10277
10282
|
};
|
|
10278
10283
|
return {
|
|
10279
10284
|
info: (message, data) => getContextLogger().info(message, data),
|
|
@@ -17420,9 +17425,9 @@ var require_biEvents = __commonJS({
|
|
|
17420
17425
|
}
|
|
17421
17426
|
});
|
|
17422
17427
|
|
|
17423
|
-
// ../../node_modules/@wix/ambassador-ctp-ditto-v1-blueprint/build/
|
|
17428
|
+
// ../../node_modules/@wix/ambassador-ctp-ditto-v1-blueprint/cjs/build/types.impl.js
|
|
17424
17429
|
var require_types_impl2 = __commonJS({
|
|
17425
|
-
"../../node_modules/@wix/ambassador-ctp-ditto-v1-blueprint/build/
|
|
17430
|
+
"../../node_modules/@wix/ambassador-ctp-ditto-v1-blueprint/cjs/build/types.impl.js"(exports2) {
|
|
17426
17431
|
"use strict";
|
|
17427
17432
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
17428
17433
|
exports2.ExtensionType = void 0;
|
|
@@ -17440,7 +17445,12 @@ var require_types_impl2 = __commonJS({
|
|
|
17440
17445
|
ExtensionType2["WEB_METHODS"] = "WEB_METHODS";
|
|
17441
17446
|
ExtensionType2["SITE_COMPONENT"] = "SITE_COMPONENT";
|
|
17442
17447
|
ExtensionType2["WEBHOOK"] = "WEBHOOK";
|
|
17443
|
-
|
|
17448
|
+
ExtensionType2["SITE_PLUGIN"] = "SITE_PLUGIN";
|
|
17449
|
+
ExtensionType2["DATA_COLLECTION"] = "DATA_COLLECTION";
|
|
17450
|
+
ExtensionType2["DASHBOARD_MENU_PLUGIN"] = "DASHBOARD_MENU_PLUGIN";
|
|
17451
|
+
ExtensionType2["CUSTOM_ELEMENT_WIDGET"] = "CUSTOM_ELEMENT_WIDGET";
|
|
17452
|
+
ExtensionType2["EDITOR_REACT_COMPONENT"] = "EDITOR_REACT_COMPONENT";
|
|
17453
|
+
})(ExtensionType || (exports2.ExtensionType = ExtensionType = {}));
|
|
17444
17454
|
}
|
|
17445
17455
|
});
|
|
17446
17456
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ditto-codegen-public",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.292",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"@wix/ditto-codegen": "1.0.0",
|
|
28
28
|
"esbuild": "^0.27.2"
|
|
29
29
|
},
|
|
30
|
-
"falconPackageHash": "
|
|
30
|
+
"falconPackageHash": "6da4fb47c6c4f45eb74c9b37fd34f8b7901b0af8ef2cbb12c02b9c90"
|
|
31
31
|
}
|