paperclip-github-plugin 0.9.3 → 0.9.4

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/manifest.js CHANGED
@@ -642,7 +642,7 @@ var PULL_REQUEST_ASSET_API_ROUTE_URL_PATH = `/api/plugins/${GITHUB_SYNC_PLUGIN_I
642
642
  var require2 = createRequire(import.meta.url);
643
643
  var packageJson = require2("../package.json");
644
644
  var SCHEDULE_TICK_CRON = "* * * * *";
645
- var MANIFEST_VERSION = "0.9.3"?.trim() || typeof packageJson.version === "string" && packageJson.version.trim() || process.env.npm_package_version?.trim() || "0.0.0-dev";
645
+ var MANIFEST_VERSION = "0.9.4"?.trim() || typeof packageJson.version === "string" && packageJson.version.trim() || process.env.npm_package_version?.trim() || "0.0.0-dev";
646
646
  var manifest = {
647
647
  id: GITHUB_SYNC_PLUGIN_ID,
648
648
  apiVersion: 1,
package/dist/ui/index.js CHANGED
@@ -28400,7 +28400,7 @@ async function resolveOrCreateCompanySecret(companyId, name2, value) {
28400
28400
  function isPluginSecretReferencesDisabledError(error) {
28401
28401
  return getActionErrorMessage(error, "").toLowerCase().includes("plugin secret references are disabled");
28402
28402
  }
28403
- var PLUGIN_CONFIG_SECRET_KEY_PATTERN = /(?:secret|token).*ref|ref.*(?:secret|token)|secretid|token$/iu;
28403
+ var PLUGIN_CONFIG_SECRET_KEY_PATTERN = /secret|token/iu;
28404
28404
  function isPlainConfigRecord(value) {
28405
28405
  return Boolean(value) && typeof value === "object" && !Array.isArray(value);
28406
28406
  }