@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.
package/dist/index.cjs CHANGED
@@ -2903,6 +2903,7 @@ var init_client = __esm({
2903
2903
  "name",
2904
2904
  "job_to_be_done",
2905
2905
  "short_description",
2906
+ "description",
2906
2907
  "category",
2907
2908
  "docs_url",
2908
2909
  "documentation_url",
@@ -2915,13 +2916,18 @@ var init_client = __esm({
2915
2916
  "permission_class",
2916
2917
  "approval_mode",
2917
2918
  "dry_run_supported",
2918
- "required_connected_accounts"
2919
+ "required_connected_accounts",
2920
+ "permission_scopes",
2921
+ "compatibility_tags"
2919
2922
  ]) {
2920
2923
  const value = manifestPayload[fieldName];
2921
2924
  if (value !== void 0 && value !== null) {
2922
2925
  payload[fieldName] = value;
2923
2926
  }
2924
2927
  }
2928
+ if (payload.manifest && typeof payload.manifest === "object") {
2929
+ delete payload.manifest.version;
2930
+ }
2925
2931
  const docsUrl = String(manifestPayload.docs_url ?? manifestPayload.documentation_url ?? "").trim();
2926
2932
  const supportContact = String(manifestPayload.support_contact ?? "").trim();
2927
2933
  const sellerHomepageUrl = String(manifestPayload.seller_homepage_url ?? "").trim();