@snaptrude/plugin-core 0.7.0 → 0.7.1
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/CHANGELOG.md +8 -0
- package/api-manifest.json +320 -1343
- package/dist/api/presentation/aiInspiration.d.ts +1967 -7
- package/dist/api/presentation/aiInspiration.d.ts.map +1 -1
- package/dist/api/presentation/index.d.ts +2 -3
- package/dist/api/presentation/index.d.ts.map +1 -1
- package/dist/index.cjs +367 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +326 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api/presentation/aiInspiration.ts +761 -7
- package/src/api/presentation/index.ts +2 -3
- package/api-manifest.full.json +0 -6101
|
@@ -33,10 +33,9 @@ export abstract class PluginPresentationApi {
|
|
|
33
33
|
public abstract import: PluginPresentationImportApi
|
|
34
34
|
/**
|
|
35
35
|
* Present-mode AI Inspiration image/video generation. See
|
|
36
|
-
* {@linkcode PluginPresentationAIInspirationApi}.
|
|
37
|
-
* until the host lands; the host implementation today is a stub.)_
|
|
36
|
+
* {@linkcode PluginPresentationAIInspirationApi}.
|
|
38
37
|
*/
|
|
39
|
-
public aiInspiration
|
|
38
|
+
public abstract aiInspiration: PluginPresentationAIInspirationApi
|
|
40
39
|
|
|
41
40
|
constructor() {}
|
|
42
41
|
}
|