@extrahorizon/javascript-sdk 8.5.0-dev-73-2ae1c71 → 8.5.0-dev-75-2eadab9

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
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
  ### Fixed
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
+ - The `notifyAlgoQueueManager` transition action type no longer claims it has a `id` and `version` field
13
14
 
14
15
  ### Added
15
16
  - Added `exh.data.documents.unlinkAllUsers` and `unlinkAllGroups` methods to unlink all users or groups from a document
@@ -5375,7 +5375,7 @@ const logsService = (httpWithAuth) => {
5375
5375
  };
5376
5376
  };
5377
5377
 
5378
- const version = '8.5.0-dev-73-2ae1c71';
5378
+ const version = '8.5.0-dev-75-2eadab9';
5379
5379
 
5380
5380
  /**
5381
5381
  * Create ExtraHorizon client.
package/build/index.mjs CHANGED
@@ -5345,7 +5345,7 @@ const logsService = (httpWithAuth) => {
5345
5345
  };
5346
5346
  };
5347
5347
 
5348
- const version = '8.5.0-dev-73-2ae1c71';
5348
+ const version = '8.5.0-dev-75-2eadab9';
5349
5349
 
5350
5350
  /**
5351
5351
  * Create ExtraHorizon client.
@@ -184,8 +184,6 @@ export interface TransitionActionMeasurementReviewedNotification {
184
184
  */
185
185
  export interface TransitionActionNotifyAlgoQueueManager {
186
186
  type: 'notifyAlgoQueueManager';
187
- id: string;
188
- version: string;
189
187
  }
190
188
  export declare type TransitionAction = TransitionActionSet | TransitionActionUnset | TransitionActionAddItems | TransitionActionRemoveItems | TransitionActionTask | TransitionActionLinkCreator | TransitionActionLinkEnlistedGroups | TransitionActionLinkUserFromData | TransitionActionLinkGroupFromData | TransitionActionDelay | TransitionActionMeasurementReviewedNotification;
191
189
  export declare type TransitionAfterAction = TransitionActionNotifyAlgoQueueManager | TransitionActionTask;
@@ -1 +1 @@
1
- export declare const version = "8.5.0-dev-73-2ae1c71";
1
+ export declare const version = "8.5.0-dev-75-2eadab9";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrahorizon/javascript-sdk",
3
- "version": "8.5.0-dev-73-2ae1c71",
3
+ "version": "8.5.0-dev-75-2eadab9",
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",
@@ -54,7 +54,7 @@
54
54
  "jest": "^29.7.0",
55
55
  "nock": "^13.5.4",
56
56
  "rimraf": "^5.0.5",
57
- "rollup": "^2.68.0",
57
+ "rollup": "^2.79.2",
58
58
  "ts-jest": "^29.1.2",
59
59
  "typescript": "^4.5.5"
60
60
  }