@extrahorizon/javascript-sdk 8.5.0-dev-75-2eadab9 → 8.5.0-dev-76-d4ca7d4
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
|
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
11
11
|
- Corrected `functioName` field to `functionName` in the `TransitionActionTask` type
|
|
12
12
|
- `exh.templates.findFirst`, `findById` and `findByName` now correctly state `undefined` can be returned
|
|
13
13
|
- The `notifyAlgoQueueManager` transition action type no longer claims it has a `id` and `version` field
|
|
14
|
+
- Transitions now correctly state `name` is optional and `id` is only a returned field.
|
|
14
15
|
|
|
15
16
|
### Added
|
|
16
17
|
- Added `exh.data.documents.unlinkAllUsers` and `unlinkAllGroups` methods to unlink all users or groups from a document
|
package/build/index.cjs.js
CHANGED
package/build/index.mjs
CHANGED
|
@@ -196,11 +196,12 @@ export interface CreationTransition {
|
|
|
196
196
|
}
|
|
197
197
|
export declare type StatusData = Record<string, string>;
|
|
198
198
|
export declare type TransitionInput = CreationTransition & {
|
|
199
|
-
|
|
200
|
-
name: string;
|
|
199
|
+
name?: string;
|
|
201
200
|
fromStatuses: string[];
|
|
202
201
|
};
|
|
203
|
-
export declare type Transition = TransitionInput &
|
|
202
|
+
export declare type Transition = TransitionInput & {
|
|
203
|
+
id: ObjectId;
|
|
204
|
+
};
|
|
204
205
|
export interface Schema {
|
|
205
206
|
id: ObjectId;
|
|
206
207
|
name: string;
|
package/build/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "8.5.0-dev-
|
|
1
|
+
export declare const version = "8.5.0-dev-76-d4ca7d4";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@extrahorizon/javascript-sdk",
|
|
3
|
-
"version": "8.5.0-dev-
|
|
3
|
+
"version": "8.5.0-dev-76-d4ca7d4",
|
|
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",
|