@stackwright-pro/mcp 0.2.0-alpha.107 → 0.2.0-alpha.108
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/integrity.js +8 -8
- package/dist/integrity.js.map +1 -1
- package/dist/integrity.mjs +8 -8
- package/dist/integrity.mjs.map +1 -1
- package/dist/pipeline-constants.js +5 -0
- package/dist/pipeline-constants.js.map +1 -1
- package/dist/pipeline-constants.mjs +5 -0
- package/dist/pipeline-constants.mjs.map +1 -1
- package/dist/server.js +618 -226
- package/dist/server.js.map +1 -1
- package/dist/server.mjs +565 -173
- package/dist/server.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -23,6 +23,11 @@ function getAllowedProps(schema) {
|
|
|
23
23
|
}
|
|
24
24
|
var COLUMN_ALLOWED_PROPS = getAllowedProps(ColumnSchema);
|
|
25
25
|
|
|
26
|
+
// src/tools/validate-api-integration.ts
|
|
27
|
+
var CANONICAL_API_AUTH_TYPES = ["apiKey", "bearer", "oauth2", "oidc", "none"];
|
|
28
|
+
var CANONICAL_SET = new Set(CANONICAL_API_AUTH_TYPES);
|
|
29
|
+
var VALID_SET_DISPLAY = CANONICAL_API_AUTH_TYPES.map((t) => `\`${t}\``).join(", ");
|
|
30
|
+
|
|
26
31
|
// src/tools/pipeline.ts
|
|
27
32
|
import { WorkflowFileSchema, authConfigSchema as authConfigSchema3 } from "@stackwright-pro/types";
|
|
28
33
|
|