g-ui-web 1.4.51 → 1.4.52
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/lib/plugins/index.cjs +1 -1
- package/lib/plugins/index.mjs +1 -1
- package/package.json +1 -1
package/lib/plugins/index.cjs
CHANGED
|
@@ -259,7 +259,7 @@ function componentUsagePlugin(options = {}) {
|
|
|
259
259
|
"Authorization": "Bearer ciFeBuild-2026-118029f9df6c6de78b5a4d43b934ccb7",
|
|
260
260
|
"syscode": "matrix"
|
|
261
261
|
},
|
|
262
|
-
body: JSON.stringify({ prefix: "guiUsage", key, value: reportData })
|
|
262
|
+
body: JSON.stringify({ prefix: "guiUsage", key, value: reportData, ttl: -1 })
|
|
263
263
|
});
|
|
264
264
|
if (response.ok) {
|
|
265
265
|
const result = await response.json();
|
package/lib/plugins/index.mjs
CHANGED
|
@@ -233,7 +233,7 @@ function componentUsagePlugin(options = {}) {
|
|
|
233
233
|
"Authorization": "Bearer ciFeBuild-2026-118029f9df6c6de78b5a4d43b934ccb7",
|
|
234
234
|
"syscode": "matrix"
|
|
235
235
|
},
|
|
236
|
-
body: JSON.stringify({ prefix: "guiUsage", key, value: reportData })
|
|
236
|
+
body: JSON.stringify({ prefix: "guiUsage", key, value: reportData, ttl: -1 })
|
|
237
237
|
});
|
|
238
238
|
if (response.ok) {
|
|
239
239
|
const result = await response.json();
|