@onereach/types-hitl-api 0.0.25 → 0.0.28

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.
@@ -20,10 +20,13 @@ export interface ISearchRuleGroupsBody {
20
20
  export interface ISearchRuleGroupsResponse {
21
21
  readonly data: IRuleGroupsModel[];
22
22
  }
23
- export interface ICreateRuleGroupBody extends ITargetAccountId {
23
+ export declare type ICreateRuleGroupQuery = ITargetAccountId;
24
+ export interface ICreateRuleGroupBody {
25
+ readonly accountId: string;
24
26
  readonly name: string;
25
27
  readonly rules: string[];
26
28
  }
29
+ export declare type IUpdateRuleGroupQuery = ITargetAccountId;
27
30
  export interface IUpdateRuleGroupBody extends ICreateRuleGroupBody {
28
31
  readonly groupId: string;
29
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/types-hitl-api",
3
- "version": "0.0.25",
3
+ "version": "0.0.28",
4
4
  "author": "OneReach.ai",
5
5
  "main": "dist/types/index.types.js",
6
6
  "types": "dist/types/index.types.d.ts",