@siglume/api-sdk 0.9.0 → 0.10.0

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.
@@ -2592,6 +2592,7 @@ var init_client = __esm({
2592
2592
  "name",
2593
2593
  "job_to_be_done",
2594
2594
  "short_description",
2595
+ "description",
2595
2596
  "category",
2596
2597
  "docs_url",
2597
2598
  "documentation_url",
@@ -2604,13 +2605,18 @@ var init_client = __esm({
2604
2605
  "permission_class",
2605
2606
  "approval_mode",
2606
2607
  "dry_run_supported",
2607
- "required_connected_accounts"
2608
+ "required_connected_accounts",
2609
+ "permission_scopes",
2610
+ "compatibility_tags"
2608
2611
  ]) {
2609
2612
  const value = manifestPayload[fieldName];
2610
2613
  if (value !== void 0 && value !== null) {
2611
2614
  payload[fieldName] = value;
2612
2615
  }
2613
2616
  }
2617
+ if (payload.manifest && typeof payload.manifest === "object") {
2618
+ delete payload.manifest.version;
2619
+ }
2614
2620
  const docsUrl = String(manifestPayload.docs_url ?? manifestPayload.documentation_url ?? "").trim();
2615
2621
  const supportContact = String(manifestPayload.support_contact ?? "").trim();
2616
2622
  const sellerHomepageUrl = String(manifestPayload.seller_homepage_url ?? "").trim();