@dev-crew-berlin/enter-js-utils 0.51.2 → 0.52.0

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.
@@ -29,6 +29,7 @@ export default class API extends APIBase {
29
29
  }>>;
30
30
  getAttendeeList(args: {
31
31
  instanceName: string;
32
+ filter?: string;
32
33
  includeDeleted?: boolean;
33
34
  }): Promise<APIResult<Attendee[]>>;
34
35
  getAttendee(args: {
@@ -33,6 +33,9 @@ export default class API extends APIBase {
33
33
  }
34
34
  async getAttendeeList(args) {
35
35
  const query = new URLSearchParams();
36
+ if (args.filter) {
37
+ query.append('filter', args.filter);
38
+ }
36
39
  if (args.includeDeleted) {
37
40
  query.append('include_deleted', 'true');
38
41
  }
@@ -1607,6 +1607,7 @@ export declare type operations = {
1607
1607
  instance_name: string;
1608
1608
  };
1609
1609
  query: {
1610
+ filter?: string;
1610
1611
  include_deleted?: boolean;
1611
1612
  };
1612
1613
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-crew-berlin/enter-js-utils",
3
- "version": "0.51.2",
3
+ "version": "0.52.0",
4
4
  "description": "utils such as vaildation and other helpers to work with data from the enter app",
5
5
  "files": [
6
6
  "dist",