sim-setup 1.0.11 → 1.0.12-preview.106.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 +10 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1670,7 +1670,7 @@ var init_env_capabilities = __esm(() => {
|
|
|
1670
1670
|
var integrations_default;
|
|
1671
1671
|
var init_integrations = __esm(() => {
|
|
1672
1672
|
integrations_default = {
|
|
1673
|
-
updatedAt: "2026-09-
|
|
1673
|
+
updatedAt: "2026-09-07",
|
|
1674
1674
|
integrations: [
|
|
1675
1675
|
{
|
|
1676
1676
|
type: "onepassword",
|
|
@@ -23876,7 +23876,7 @@ var init_integrations = __esm(() => {
|
|
|
23876
23876
|
},
|
|
23877
23877
|
{
|
|
23878
23878
|
name: "List Channels",
|
|
23879
|
-
description: "List accessible Slack conversations. Credential-group user tokens also return one-to-one and group direct messages."
|
|
23879
|
+
description: "List up to 10,000 accessible Slack conversations across as many cursor pages as Slack supplies, capped at 200 provider pages. Credential-group user tokens also return one-to-one and group direct messages."
|
|
23880
23880
|
},
|
|
23881
23881
|
{
|
|
23882
23882
|
name: "List Channel Members",
|
|
@@ -33251,18 +33251,24 @@ function checkCoherence(ctx) {
|
|
|
33251
33251
|
needs: ["STRIPE_SECRET_KEY"],
|
|
33252
33252
|
label: "billing"
|
|
33253
33253
|
},
|
|
33254
|
+
{
|
|
33255
|
+
flag: "SLACK_EXTENDED_SCOPES",
|
|
33256
|
+
needs: ["SLACK_SIGNING_SECRET"],
|
|
33257
|
+
label: "native Slack triggers",
|
|
33258
|
+
disableFields: ["SLACK_EXTENDED_SCOPES", "NEXT_PUBLIC_SLACK_EXTENDED_SCOPES"]
|
|
33259
|
+
},
|
|
33254
33260
|
{ flag: "SSO_ENABLED", needs: ["SSO_ISSUER"], label: "SSO" }
|
|
33255
33261
|
];
|
|
33256
33262
|
for (const rule of featureRules) {
|
|
33257
33263
|
if (!isTruthy(sim.vars.get(rule.flag)))
|
|
33258
33264
|
continue;
|
|
33259
|
-
const missing = rule.needs.filter((key) => !sim.vars.get(key));
|
|
33265
|
+
const missing = rule.needs.filter((key) => !sim.vars.get(key)?.trim());
|
|
33260
33266
|
if (missing.length > 0) {
|
|
33261
33267
|
findings.push({
|
|
33262
33268
|
group: "coherence",
|
|
33263
33269
|
status: "fail",
|
|
33264
33270
|
message: `${rule.flag} is on but ${missing.join(", ")} is not set — ${rule.label} will fail at runtime`,
|
|
33265
|
-
fix: `set ${missing.join(", ")} or remove ${rule.flag}`
|
|
33271
|
+
fix: `set ${missing.join(", ")} or remove ${(rule.disableFields ?? [rule.flag]).join(" and ")}`
|
|
33266
33272
|
});
|
|
33267
33273
|
}
|
|
33268
33274
|
}
|