@camunda8/orchestration-cluster-api 10.0.0-alpha.14 → 10.0.0-alpha.15

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/fp/index.cjs CHANGED
@@ -9050,15 +9050,7 @@ default, with local set to \`false\`, scope '1' will be { "foo": 5 } and scope '
9050
9050
  description: "The user task was completed successfully."
9051
9051
  });
9052
9052
  zSearchUserTaskEffectiveVariablesData = import_zod4.z.object({
9053
- body: import_zod4.z.optional(import_zod4.z.object({
9054
- page: import_zod4.z.optional(zOffsetPagination),
9055
- sort: import_zod4.z.optional(import_zod4.z.array(zUserTaskVariableSearchQuerySortRequest).register(import_zod4.z.globalRegistry, {
9056
- description: "Sort field criteria."
9057
- })),
9058
- filter: import_zod4.z.optional(zUserTaskVariableFilter)
9059
- }).register(import_zod4.z.globalRegistry, {
9060
- description: "User task effective variable search query request. Uses offset-based pagination only.\n"
9061
- })),
9053
+ body: import_zod4.z.optional(zUserTaskEffectiveVariableSearchQueryRequest),
9062
9054
  path: import_zod4.z.object({
9063
9055
  userTaskKey: zUserTaskKey
9064
9056
  }),
@@ -14423,7 +14415,7 @@ var SCHEMA = {
14423
14415
  CAMUNDA_SDK_LOG_LEVEL: {
14424
14416
  type: "enum",
14425
14417
  choices: ["silent", "error", "warn", "info", "debug", "trace", "silly"],
14426
- default: "error",
14418
+ default: "info",
14427
14419
  doc: 'SDK log level. "silly" adds unsafe deep diagnostics including HTTP request and response bodies.'
14428
14420
  },
14429
14421
  CAMUNDA_SDK_TELEMETRY_LOG: {
@@ -15007,7 +14999,7 @@ function hydrateConfig(options = {}) {
15007
14999
  } : void 0
15008
15000
  },
15009
15001
  validation: { req: validation.req, res: validation.res, raw: validation.raw },
15010
- logLevel: rawMap.CAMUNDA_SDK_LOG_LEVEL || "error",
15002
+ logLevel: rawMap.CAMUNDA_SDK_LOG_LEVEL || "info",
15011
15003
  eventual: {
15012
15004
  pollDefaultMs: parseInt(rawMap.CAMUNDA_SDK_EVENTUAL_POLL_DEFAULT_MS || "500", 10)
15013
15005
  },
@@ -15460,7 +15452,7 @@ function createLogger(opts = {}) {
15460
15452
  }
15461
15453
 
15462
15454
  // src/runtime/version.ts
15463
- var packageVersion = "10.0.0-alpha.14";
15455
+ var packageVersion = "10.0.0-alpha.15";
15464
15456
 
15465
15457
  // src/runtime/supportLogger.ts
15466
15458
  var NoopSupportLogger = class {