@openfin/workspace 12.0.0 → 12.1.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/client-api/src/dock.d.ts +15 -0
- package/client-api/src/shapes/dock.d.ts +1 -1
- package/client-api/src/shapes/home.d.ts +30 -1
- package/client-api/src/shapes/notifications.d.ts +3 -3
- package/client-api/src/shapes/store.d.ts +55 -1
- package/client-api/src/store.d.ts +8 -3
- package/client-api-platform/src/api/index.d.ts +43 -0
- package/client-api-platform/src/init/custom-actions.d.ts +1 -1
- package/client-api-platform/src/init/index.d.ts +1 -1
- package/client-api-platform/src/shapes.d.ts +39 -50
- package/common/src/api/protocol/workspace.d.ts +1 -1
- package/common/src/api/search.d.ts +0 -1
- package/common/src/utils/application.d.ts +2 -7
- package/common/src/utils/window.d.ts +0 -20
- package/home.js +8 -9
- package/home.js.map +1 -1
- package/index.js +8 -9
- package/index.js.map +1 -1
- package/notifications.js +8 -9
- package/notifications.js.map +1 -1
- package/package.json +1 -1
- package/search-api/src/shapes.d.ts +6 -0
- package/store.js +8 -9
- package/store.js.map +1 -1
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@openfin/workspace","description":"An API for integrating with OpenFin Workspace.","main":"index.js","version":"12.
|
|
1
|
+
{"name":"@openfin/workspace","description":"An API for integrating with OpenFin Workspace.","main":"index.js","version":"12.1.0","scripts":{"promote:docs":"chmod +x ../common/scripts/deploy-latest-docs.sh && ../common/scripts/deploy-latest-docs.sh $(node ../common/scripts/echo-version.js) /api","promote":"node ../common/scripts/promote-ws-npm.js","deploy:next":"npm run deploy:next:npm && npm run deploy:docs","deploy:next:npm":"cd out && npm publish --tag next","deploy:beta":"npm run deploy:beta:npm && npm run deploy:docs","deploy:beta:npm":"cd out && npm publish --tag beta","deploy:hotfix":"npm run deploy:hotfix:npm && npm run deploy:docs","deploy:hotfix:npm":"cd out && npm publish --tag hotfix","deploy:docs":"DIR=/api node ../common/scripts/archive-docs.js","cp:readme":"copyfiles README.md out","cp:license":"copyfiles LICENSE.md out","cp:package":"node ../common/scripts/cp-package.js","create:rootIndex":"node ../common/scripts/cp-root-index.js","create:restModules":"node ./scripts/create-rest-modules.js","package":"npm run cp:readme && npm run cp:license && npm run cp:package && npm run create:rootIndex && npm run create:restModules","clean":"rimraf ./out && rimraf ./docs","build:common":"cross-env ENV=prod webpack --mode=production --config ./webpack.common.config.js","build":"npm run clean && npm run build:common && npm run build:docs && node ../common/scripts/test-for-next-apis.js","build:docs":"typedoc --tsconfig ./tsconfig.json --readme none --disableSources ./src/index.ts ./src/home.ts ./src/store.ts ./src/legacy.ts ./src/notifications.ts ./src/dock.ts","test":"jest --watch --colors","test:ci":"jest"},"keywords":["client api"],"license":"SEE LICENSE IN LICENSE.MD","dependencies":{"openfin-notifications":"1.20.0"}}
|
|
@@ -588,6 +588,12 @@ export interface SearchTopicCreateRequest {
|
|
|
588
588
|
* Default is `all`
|
|
589
589
|
*/
|
|
590
590
|
topic?: string;
|
|
591
|
+
/**
|
|
592
|
+
* The uuid of the target search provider.
|
|
593
|
+
*
|
|
594
|
+
* Default is uuid of the current identity.
|
|
595
|
+
*/
|
|
596
|
+
uuid?: string;
|
|
591
597
|
}
|
|
592
598
|
/**
|
|
593
599
|
* An object that contains options for subscribing to a search topic.
|