@lvrdai/paperclip-slack 0.1.0 → 0.1.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/manifest.js CHANGED
@@ -7895,8 +7895,14 @@ var instanceConfigSchema = {
7895
7895
  nangoSecretKey: {
7896
7896
  type: "string",
7897
7897
  title: "Nango secret key",
7898
- format: "secret-ref",
7899
- description: "Environment-scoped Nango API key."
7898
+ // NOT format: "secret-ref" — the pinned customer image (Paperclip
7899
+ // v2026.529.0) rejects secret-ref config with 422 "Plugin secret
7900
+ // references are disabled until company-scoped plugin config lands"
7901
+ // (confirmed live 2026-06-13). Until that lands, the key is supplied via
7902
+ // the LVRD_NANGO_SECRET_KEY container env (set per-instance by
7903
+ // provisioning — and one instance == one customer, so instance env IS
7904
+ // customer-scoped). Restore secret-ref when the platform enables it.
7905
+ description: "Environment-scoped Nango API key (supply via LVRD_NANGO_SECRET_KEY env on this image version)."
7900
7906
  },
7901
7907
  customerId: {
7902
7908
  type: "string",
@@ -7909,9 +7915,12 @@ var instanceConfigSchema = {
7909
7915
  };
7910
7916
 
7911
7917
  // ../../connector-core/dist/connector.js
7918
+ function pluginIdFor(packageName) {
7919
+ return packageName.replace(/^@/, "").replace(/\//g, ".").toLowerCase();
7920
+ }
7912
7921
  function buildManifest(spec2) {
7913
7922
  return {
7914
- id: spec2.packageName,
7923
+ id: pluginIdFor(spec2.packageName),
7915
7924
  apiVersion: 1,
7916
7925
  version: spec2.version,
7917
7926
  displayName: `LVRD ${spec2.displayName} Connector`,
@@ -7943,7 +7952,7 @@ function slackResult(data, render) {
7943
7952
  }
7944
7953
  var spec = {
7945
7954
  packageName: "@lvrdai/paperclip-slack",
7946
- version: "0.1.0",
7955
+ version: "0.1.2",
7947
7956
  displayName: "Slack",
7948
7957
  description: "Read channels and post messages in the business's Slack workspace via the owner's connected Slack account.",
7949
7958
  providerConfigKey: "slack",