Skip to content

Commit 7150850

Browse files
authored
feat(rest-api-client): add filterCond to actions (#3482)
1 parent 638bdb7 commit 7150850

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/rest-api-client/src/client/__tests__/app/Actions.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ describe("Actions", () => {
8282
code: "Administrator",
8383
},
8484
],
85+
filterCond: 'Status = "Active"',
8586
},
8687
},
8788
};

packages/rest-api-client/src/client/types/app/action.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ type ActionPropertyForParameter = (
1919
name?: string;
2020
index: string | number;
2121
entities?: Entity[];
22+
filterCond?: string;
2223
};
2324

2425
type DestAppForParameter =
@@ -41,6 +42,7 @@ type ActionPropertyForResponse = {
4142
destApp: DestAppForResponse;
4243
mappings: Mapping[];
4344
entities: Entity[];
45+
filterCond: string;
4446
};
4547

4648
type DestAppForResponse = {

0 commit comments

Comments
 (0)