@siglume/api-sdk 0.9.1 → 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.
@@ -2570,6 +2570,7 @@ var init_client = __esm({
2570
2570
  "name",
2571
2571
  "job_to_be_done",
2572
2572
  "short_description",
2573
+ "description",
2573
2574
  "category",
2574
2575
  "docs_url",
2575
2576
  "documentation_url",
@@ -2582,13 +2583,18 @@ var init_client = __esm({
2582
2583
  "permission_class",
2583
2584
  "approval_mode",
2584
2585
  "dry_run_supported",
2585
- "required_connected_accounts"
2586
+ "required_connected_accounts",
2587
+ "permission_scopes",
2588
+ "compatibility_tags"
2586
2589
  ]) {
2587
2590
  const value = manifestPayload[fieldName];
2588
2591
  if (value !== void 0 && value !== null) {
2589
2592
  payload[fieldName] = value;
2590
2593
  }
2591
2594
  }
2595
+ if (payload.manifest && typeof payload.manifest === "object") {
2596
+ delete payload.manifest.version;
2597
+ }
2592
2598
  const docsUrl = String(manifestPayload.docs_url ?? manifestPayload.documentation_url ?? "").trim();
2593
2599
  const supportContact = String(manifestPayload.support_contact ?? "").trim();
2594
2600
  const sellerHomepageUrl = String(manifestPayload.seller_homepage_url ?? "").trim();