@stackable-labs/sdk-extension-contracts 1.84.0 → 1.85.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.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ISOTimestamp, MarketplaceMetadata } from '@stackable-labs/lib-contracts';
|
|
2
|
-
export { AppRegistryEntry, ClerkOrgId, ClerkUserId, EXTENSION_CATEGORY, EXTENSION_VISIBILITY, ExtensionCategory, ExtensionVisibility, ISOTimestamp, MarketplaceMetadata, asClerkOrgId, asClerkUserId, asISOTimestamp } from '@stackable-labs/lib-contracts';
|
|
1
|
+
import { ISOTimestamp, FieldDefinition, MarketplaceMetadata } from '@stackable-labs/lib-contracts';
|
|
2
|
+
export { AppRegistryEntry, ClerkOrgId, ClerkUserId, EXTENSION_CATEGORY, EXTENSION_VISIBILITY, ExtensionCategory, ExtensionVisibility, FieldDefinition, FieldOption, ISOTimestamp, MarketplaceMetadata, asClerkOrgId, asClerkUserId, asISOTimestamp } from '@stackable-labs/lib-contracts';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Shared primitive types used across contracts.
|
|
@@ -643,6 +643,8 @@ interface ExtensionManifest {
|
|
|
643
643
|
* Use an empty array for extensions that do not use data.fetch.
|
|
644
644
|
*/
|
|
645
645
|
allowedDomains: string[];
|
|
646
|
+
/** Optional schema of configurable fields for per-instance settings (plaintext + secrets). */
|
|
647
|
+
settingsSchema?: FieldDefinition[];
|
|
646
648
|
}
|
|
647
649
|
/**
|
|
648
650
|
* Registry entry for an installed extension (returned by /api/extensions).
|