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