@ubiquity-os/plugin-sdk 2.0.0 → 2.0.1
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -184,7 +184,7 @@ async function createStructuredMetadataWithMessage(context2, message, options) {
|
|
|
184
184
|
}
|
|
185
185
|
const runUrl = PluginRuntimeInfo.getInstance().runUrl;
|
|
186
186
|
const version = await PluginRuntimeInfo.getInstance().version;
|
|
187
|
-
const ubiquityMetadataHeader = `<!-- ${HEADER_NAME} - ${
|
|
187
|
+
const ubiquityMetadataHeader = `<!-- ${HEADER_NAME} - ${callingFnName} - ${version} - @${instigatorName} - ${runUrl}`;
|
|
188
188
|
let metadataSerialized;
|
|
189
189
|
const metadataSerializedVisible = ["```json", jsonPretty, "```"].join("\n");
|
|
190
190
|
const metadataSerializedHidden = [ubiquityMetadataHeader, jsonPretty, "-->"].join("\n");
|
package/dist/index.mjs
CHANGED
|
@@ -146,7 +146,7 @@ async function createStructuredMetadataWithMessage(context2, message, options) {
|
|
|
146
146
|
}
|
|
147
147
|
const runUrl = PluginRuntimeInfo.getInstance().runUrl;
|
|
148
148
|
const version = await PluginRuntimeInfo.getInstance().version;
|
|
149
|
-
const ubiquityMetadataHeader = `<!-- ${HEADER_NAME} - ${
|
|
149
|
+
const ubiquityMetadataHeader = `<!-- ${HEADER_NAME} - ${callingFnName} - ${version} - @${instigatorName} - ${runUrl}`;
|
|
150
150
|
let metadataSerialized;
|
|
151
151
|
const metadataSerializedVisible = ["```json", jsonPretty, "```"].join("\n");
|
|
152
152
|
const metadataSerializedHidden = [ubiquityMetadataHeader, jsonPretty, "-->"].join("\n");
|