@siglume/api-sdk 2.0.1 → 2.0.2

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.cjs CHANGED
@@ -7999,7 +7999,8 @@ var ALL_TOOL_MANUAL_FIELDS = [
7999
7999
  "settlement_mode",
8000
8000
  "refund_or_cancellation_note",
8001
8001
  "jurisdiction",
8002
- "legal_notes"
8002
+ "legal_notes",
8003
+ "supports"
8003
8004
  ];
8004
8005
  var BASE_REQUIRED_FIELDS = [
8005
8006
  "tool_name",
@@ -8523,7 +8524,8 @@ function buildToolManualSchema(permissionClass, fields) {
8523
8524
  settlement_mode: { type: "string", enum: [...PAYMENT_SETTLEMENT_MODES] },
8524
8525
  refund_or_cancellation_note: { type: "string" },
8525
8526
  jurisdiction: { type: "string" },
8526
- legal_notes: { type: "string" }
8527
+ legal_notes: { type: "string" },
8528
+ supports: { type: "object", additionalProperties: { type: ["boolean", "number", "string"] } }
8527
8529
  };
8528
8530
  const selectedFields = [...new Set(fields)];
8529
8531
  let required = [...selectedFields];