@extrahorizon/javascript-sdk 8.4.1-dev-66-34d7111 → 8.4.1-dev-67-8947251
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
CHANGED
|
@@ -7,8 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Fixed
|
|
11
|
+
- Corrected `functioName` field to `functionName` in the `TransitionActionTask` type
|
|
12
|
+
|
|
10
13
|
### Added
|
|
11
14
|
- `exh.data.documents.unlinkAllUsers` and `unlinkAllGroups` methods to unlink all users or groups from a document
|
|
15
|
+
- Added `priority` field to the `TransitionActionTask` type
|
|
16
|
+
- Added `TransitionActionTask` to the `AfterActions`
|
|
12
17
|
|
|
13
18
|
### Changed
|
|
14
19
|
- RQL `contains` and `excludes` now have their different variations better separated in the type definitions
|
package/build/index.cjs.js
CHANGED
package/build/index.mjs
CHANGED
|
@@ -133,7 +133,8 @@ export interface TransitionActionRemoveItems {
|
|
|
133
133
|
}
|
|
134
134
|
export interface TransitionActionTask {
|
|
135
135
|
type: 'task';
|
|
136
|
-
|
|
136
|
+
functionName: string;
|
|
137
|
+
priority?: number;
|
|
137
138
|
data: Record<string, unknown>;
|
|
138
139
|
}
|
|
139
140
|
export interface TransitionActionLinkCreator {
|
|
@@ -159,11 +160,12 @@ export interface TransitionActionMeasurementReviewedNotification {
|
|
|
159
160
|
type: 'measurementReviewedNotification';
|
|
160
161
|
}
|
|
161
162
|
export declare type TransitionAction = TransitionActionSet | TransitionActionUnset | TransitionActionAddItems | TransitionActionRemoveItems | TransitionActionTask | TransitionActionLinkCreator | TransitionActionLinkEnlistedGroups | TransitionActionLinkUserFromData | TransitionActionLinkGroupFromData | TransitionActionDelay | TransitionActionMeasurementReviewedNotification;
|
|
162
|
-
export interface
|
|
163
|
+
export interface TransitionActionNotifyAlgoQueueManager {
|
|
163
164
|
type: 'notifyAlgoQueueManager';
|
|
164
165
|
id: string;
|
|
165
166
|
version: string;
|
|
166
167
|
}
|
|
168
|
+
export declare type TransitionAfterAction = TransitionActionNotifyAlgoQueueManager | TransitionActionTask;
|
|
167
169
|
export interface CreationTransition {
|
|
168
170
|
toStatus: string;
|
|
169
171
|
type: CreationTransitionType;
|
package/build/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "8.4.1-dev-
|
|
1
|
+
export declare const version = "8.4.1-dev-67-8947251";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@extrahorizon/javascript-sdk",
|
|
3
|
-
"version": "8.4.1-dev-
|
|
3
|
+
"version": "8.4.1-dev-67-8947251",
|
|
4
4
|
"description": "This package serves as a JavaScript wrapper around all Extra Horizon cloud services.",
|
|
5
5
|
"main": "build/index.cjs.js",
|
|
6
6
|
"types": "build/types/index.d.ts",
|