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 CHANGED
@@ -3794,7 +3794,7 @@ import {
3794
3794
  // package.json
3795
3795
  var package_default = {
3796
3796
  name: "zudoku",
3797
- version: "0.71.2",
3797
+ version: "0.71.3",
3798
3798
  type: "module",
3799
3799
  sideEffects: [
3800
3800
  "**/*.css",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zudoku",
3
- "version": "0.71.3",
3
+ "version": "0.71.4",
4
4
  "type": "module",
5
5
  "sideEffects": [
6
6
  "**/*.css",
package/src/app/main.css CHANGED
@@ -340,6 +340,10 @@
340
340
  }
341
341
 
342
342
  @layer utilities {
343
+ .stepper {
344
+ @apply my-4;
345
+ }
346
+
343
347
  .stepper > ol {
344
348
  --bullet-size: 1.75rem;
345
349
  --line-spacing: 0.25rem;
@@ -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 = {};