@wix/auto_sdk_members_member-report 1.0.5 → 1.0.6

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.
Files changed (21) hide show
  1. package/build/cjs/src/members-v1-member-report-member-report.http.d.ts +5 -5
  2. package/build/cjs/src/members-v1-member-report-member-report.http.js +5 -5
  3. package/build/cjs/src/members-v1-member-report-member-report.public.d.ts +5 -5
  4. package/build/cjs/src/members-v1-member-report-member-report.universal.d.ts +5 -5
  5. package/build/cjs/src/members-v1-member-report-member-report.universal.js +5 -5
  6. package/build/es/src/members-v1-member-report-member-report.http.d.ts +5 -5
  7. package/build/es/src/members-v1-member-report-member-report.http.js +5 -5
  8. package/build/es/src/members-v1-member-report-member-report.public.d.ts +5 -5
  9. package/build/es/src/members-v1-member-report-member-report.universal.d.ts +5 -5
  10. package/build/es/src/members-v1-member-report-member-report.universal.js +5 -5
  11. package/build/internal/cjs/src/members-v1-member-report-member-report.http.d.ts +5 -5
  12. package/build/internal/cjs/src/members-v1-member-report-member-report.http.js +5 -5
  13. package/build/internal/cjs/src/members-v1-member-report-member-report.public.d.ts +5 -5
  14. package/build/internal/cjs/src/members-v1-member-report-member-report.universal.d.ts +5 -5
  15. package/build/internal/cjs/src/members-v1-member-report-member-report.universal.js +5 -5
  16. package/build/internal/es/src/members-v1-member-report-member-report.http.d.ts +5 -5
  17. package/build/internal/es/src/members-v1-member-report-member-report.http.js +5 -5
  18. package/build/internal/es/src/members-v1-member-report-member-report.public.d.ts +5 -5
  19. package/build/internal/es/src/members-v1-member-report-member-report.universal.d.ts +5 -5
  20. package/build/internal/es/src/members-v1-member-report-member-report.universal.js +5 -5
  21. package/package.json +2 -2
@@ -4,17 +4,17 @@ export declare function reportMember(payload: object): RequestOptionsFactory<any
4
4
  /**
5
5
  * Creates a query to retrieve a list of events.
6
6
  *
7
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
7
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
8
8
  *
9
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
9
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
10
10
  *
11
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
11
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
12
12
  *
13
13
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
14
14
  *
15
- * - limit(50)
15
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
16
16
  *
17
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
17
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
18
18
  */
19
19
  export declare function queryMemberReports(payload: object): RequestOptionsFactory<any>;
20
20
  /**
@@ -77,17 +77,17 @@ exports.reportMember = reportMember;
77
77
  /**
78
78
  * Creates a query to retrieve a list of events.
79
79
  *
80
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
80
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
81
81
  *
82
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
82
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
83
83
  *
84
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
84
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
85
85
  *
86
86
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
87
87
  *
88
- * - limit(50)
88
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
89
89
  *
90
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
90
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
91
91
  */
92
92
  function queryMemberReports(payload) {
93
93
  function __queryMemberReports({ host }) {
@@ -16,17 +16,17 @@ interface QueryMemberReportsSignature {
16
16
  /**
17
17
  * Creates a query to retrieve a list of events.
18
18
  *
19
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
19
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
20
20
  *
21
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
21
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
22
22
  *
23
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
23
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
24
24
  *
25
25
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
26
26
  *
27
- * - limit(50)
27
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
28
28
  *
29
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
29
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
30
30
  */
31
31
  (): MemberReportsQueryBuilder;
32
32
  }
@@ -511,17 +511,17 @@ export declare function reportMember(memberReport: MemberReport): Promise<Report
511
511
  /**
512
512
  * Creates a query to retrieve a list of events.
513
513
  *
514
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
514
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
515
515
  *
516
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
516
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
517
517
  *
518
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
518
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
519
519
  *
520
520
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
521
521
  *
522
- * - limit(50)
522
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
523
523
  *
524
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
524
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
525
525
  * @public
526
526
  * @documentationMaturity preview
527
527
  * @permissionScope Manage Members
@@ -93,17 +93,17 @@ exports.reportMember = reportMember;
93
93
  /**
94
94
  * Creates a query to retrieve a list of events.
95
95
  *
96
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
96
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
97
97
  *
98
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
98
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
99
99
  *
100
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
100
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
101
101
  *
102
102
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
103
103
  *
104
- * - limit(50)
104
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
105
105
  *
106
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
106
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
107
107
  * @public
108
108
  * @documentationMaturity preview
109
109
  * @permissionScope Manage Members
@@ -4,17 +4,17 @@ export declare function reportMember(payload: object): RequestOptionsFactory<any
4
4
  /**
5
5
  * Creates a query to retrieve a list of events.
6
6
  *
7
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
7
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
8
8
  *
9
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
9
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
10
10
  *
11
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
11
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
12
12
  *
13
13
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
14
14
  *
15
- * - limit(50)
15
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
16
16
  *
17
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
17
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
18
18
  */
19
19
  export declare function queryMemberReports(payload: object): RequestOptionsFactory<any>;
20
20
  /**
@@ -73,17 +73,17 @@ export function reportMember(payload) {
73
73
  /**
74
74
  * Creates a query to retrieve a list of events.
75
75
  *
76
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
76
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
77
77
  *
78
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
78
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
79
79
  *
80
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
80
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
81
81
  *
82
82
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
83
83
  *
84
- * - limit(50)
84
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
85
85
  *
86
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
86
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
87
87
  */
88
88
  export function queryMemberReports(payload) {
89
89
  function __queryMemberReports({ host }) {
@@ -16,17 +16,17 @@ interface QueryMemberReportsSignature {
16
16
  /**
17
17
  * Creates a query to retrieve a list of events.
18
18
  *
19
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
19
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
20
20
  *
21
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
21
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
22
22
  *
23
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
23
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
24
24
  *
25
25
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
26
26
  *
27
- * - limit(50)
27
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
28
28
  *
29
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
29
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
30
30
  */
31
31
  (): MemberReportsQueryBuilder;
32
32
  }
@@ -511,17 +511,17 @@ export declare function reportMember(memberReport: MemberReport): Promise<Report
511
511
  /**
512
512
  * Creates a query to retrieve a list of events.
513
513
  *
514
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
514
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
515
515
  *
516
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
516
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
517
517
  *
518
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
518
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
519
519
  *
520
520
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
521
521
  *
522
- * - limit(50)
522
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
523
523
  *
524
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
524
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
525
525
  * @public
526
526
  * @documentationMaturity preview
527
527
  * @permissionScope Manage Members
@@ -66,17 +66,17 @@ export async function reportMember(memberReport) {
66
66
  /**
67
67
  * Creates a query to retrieve a list of events.
68
68
  *
69
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
69
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
70
70
  *
71
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
71
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
72
72
  *
73
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
73
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
74
74
  *
75
75
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
76
76
  *
77
- * - limit(50)
77
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
78
78
  *
79
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
79
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
80
80
  * @public
81
81
  * @documentationMaturity preview
82
82
  * @permissionScope Manage Members
@@ -4,17 +4,17 @@ export declare function reportMember(payload: object): RequestOptionsFactory<any
4
4
  /**
5
5
  * Creates a query to retrieve a list of events.
6
6
  *
7
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
7
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
8
8
  *
9
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
9
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
10
10
  *
11
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
11
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
12
12
  *
13
13
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
14
14
  *
15
- * - limit(50)
15
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
16
16
  *
17
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
17
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
18
18
  */
19
19
  export declare function queryMemberReports(payload: object): RequestOptionsFactory<any>;
20
20
  /**
@@ -77,17 +77,17 @@ exports.reportMember = reportMember;
77
77
  /**
78
78
  * Creates a query to retrieve a list of events.
79
79
  *
80
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
80
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
81
81
  *
82
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
82
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
83
83
  *
84
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
84
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
85
85
  *
86
86
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
87
87
  *
88
- * - limit(50)
88
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
89
89
  *
90
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
90
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
91
91
  */
92
92
  function queryMemberReports(payload) {
93
93
  function __queryMemberReports({ host }) {
@@ -16,17 +16,17 @@ interface QueryMemberReportsSignature {
16
16
  /**
17
17
  * Creates a query to retrieve a list of events.
18
18
  *
19
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
19
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
20
20
  *
21
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
21
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
22
22
  *
23
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
23
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
24
24
  *
25
25
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
26
26
  *
27
- * - limit(50)
27
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
28
28
  *
29
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
29
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
30
30
  */
31
31
  (): MemberReportsQueryBuilder;
32
32
  }
@@ -511,17 +511,17 @@ export declare function reportMember(memberReport: MemberReport): Promise<Report
511
511
  /**
512
512
  * Creates a query to retrieve a list of events.
513
513
  *
514
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
514
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
515
515
  *
516
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
516
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
517
517
  *
518
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
518
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
519
519
  *
520
520
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
521
521
  *
522
- * - limit(50)
522
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
523
523
  *
524
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
524
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
525
525
  * @public
526
526
  * @documentationMaturity preview
527
527
  * @permissionScope Manage Members
@@ -93,17 +93,17 @@ exports.reportMember = reportMember;
93
93
  /**
94
94
  * Creates a query to retrieve a list of events.
95
95
  *
96
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
96
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
97
97
  *
98
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
98
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
99
99
  *
100
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
100
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
101
101
  *
102
102
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
103
103
  *
104
- * - limit(50)
104
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
105
105
  *
106
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
106
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
107
107
  * @public
108
108
  * @documentationMaturity preview
109
109
  * @permissionScope Manage Members
@@ -4,17 +4,17 @@ export declare function reportMember(payload: object): RequestOptionsFactory<any
4
4
  /**
5
5
  * Creates a query to retrieve a list of events.
6
6
  *
7
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
7
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
8
8
  *
9
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
9
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
10
10
  *
11
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
11
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
12
12
  *
13
13
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
14
14
  *
15
- * - limit(50)
15
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
16
16
  *
17
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
17
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
18
18
  */
19
19
  export declare function queryMemberReports(payload: object): RequestOptionsFactory<any>;
20
20
  /**
@@ -73,17 +73,17 @@ export function reportMember(payload) {
73
73
  /**
74
74
  * Creates a query to retrieve a list of events.
75
75
  *
76
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
76
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
77
77
  *
78
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
78
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
79
79
  *
80
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
80
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
81
81
  *
82
82
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
83
83
  *
84
- * - limit(50)
84
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
85
85
  *
86
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
86
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
87
87
  */
88
88
  export function queryMemberReports(payload) {
89
89
  function __queryMemberReports({ host }) {
@@ -16,17 +16,17 @@ interface QueryMemberReportsSignature {
16
16
  /**
17
17
  * Creates a query to retrieve a list of events.
18
18
  *
19
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
19
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
20
20
  *
21
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
21
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
22
22
  *
23
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
23
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
24
24
  *
25
25
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
26
26
  *
27
- * - limit(50)
27
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
28
28
  *
29
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
29
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
30
30
  */
31
31
  (): MemberReportsQueryBuilder;
32
32
  }
@@ -511,17 +511,17 @@ export declare function reportMember(memberReport: MemberReport): Promise<Report
511
511
  /**
512
512
  * Creates a query to retrieve a list of events.
513
513
  *
514
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
514
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
515
515
  *
516
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
516
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
517
517
  *
518
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
518
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
519
519
  *
520
520
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
521
521
  *
522
- * - limit(50)
522
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
523
523
  *
524
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
524
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
525
525
  * @public
526
526
  * @documentationMaturity preview
527
527
  * @permissionScope Manage Members
@@ -66,17 +66,17 @@ export async function reportMember(memberReport) {
66
66
  /**
67
67
  * Creates a query to retrieve a list of events.
68
68
  *
69
- * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object.
69
+ * The `queryMemberReports()` method builds a query to retrieve a list of member reports and returns a [`MemberReportsQueryBuilder`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/eq) object.
70
70
  *
71
- * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
71
+ * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/find) method.
72
72
  *
73
- * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns.
73
+ * You can refine the query by chaining `MemberReportsQueryBuilder` methods onto the query. `MemberReportsQueryBuilder` methods enable you to sort, filter, and control the results `queryMemberReports()` returns.
74
74
  *
75
75
  * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override:
76
76
  *
77
- * - limit(50)
77
+ * - [limit(50)](https://dev.wix.com/docs/sdk/backend-modules/members/member-report/member-reports-query-builder/limit)
78
78
  *
79
- * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
79
+ * The methods that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID.
80
80
  * @public
81
81
  * @documentationMaturity preview
82
82
  * @permissionScope Manage Members
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_members_member-report",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -48,5 +48,5 @@
48
48
  "fqdn": "wix.members.v1.member_report"
49
49
  }
50
50
  },
51
- "falconPackageHash": "43531e5b6a65866f12320641b8f2ef1f0439ec9569a41afd4b9f2275"
51
+ "falconPackageHash": "2f13ec4d1c8e047b32ae716d569405e8b452588cef5932c630f6ea97"
52
52
  }