zudoku 0.71.3 → 0.71.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/cli/cli.js +1 -1
- package/package.json +1 -1
- package/src/app/main.css +4 -0
- package/src/zuplo/enrich-with-zuplo.ts +4 -2
package/dist/cli/cli.js
CHANGED
package/package.json
CHANGED
package/src/app/main.css
CHANGED
|
@@ -193,7 +193,8 @@ export const enrichWithZuploData = ({
|
|
|
193
193
|
(policy) =>
|
|
194
194
|
inboundPolicies.includes(policy.name) &&
|
|
195
195
|
(policy.handler.export === "ApiAuthKeyInboundPolicy" ||
|
|
196
|
-
policy.handler.export === "ApiKeyInboundPolicy"
|
|
196
|
+
policy.handler.export === "ApiKeyInboundPolicy" ||
|
|
197
|
+
policy.handler.export === "MonetizationInboundPolicy") &&
|
|
197
198
|
!policy.handler.options
|
|
198
199
|
?.disableAutomaticallyAddingKeyHeaderToOpenApi,
|
|
199
200
|
) ?? [];
|
|
@@ -225,7 +226,8 @@ export const enrichWithZuploData = ({
|
|
|
225
226
|
policiesConfig.policies?.some(
|
|
226
227
|
(policy) =>
|
|
227
228
|
policy.handler.export === "ApiAuthKeyInboundPolicy" ||
|
|
228
|
-
policy.handler.export === "ApiKeyInboundPolicy"
|
|
229
|
+
policy.handler.export === "ApiKeyInboundPolicy" ||
|
|
230
|
+
policy.handler.export === "MonetizationInboundPolicy",
|
|
229
231
|
)
|
|
230
232
|
) {
|
|
231
233
|
if (!schema.components) schema.components = {};
|