@wix/auto_sdk_members_member-report 1.0.42 → 1.0.43

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.
@@ -0,0 +1,216 @@
1
+ import * as z from 'zod';
2
+
3
+ declare const ReportMemberRequest: z.ZodObject<{
4
+ memberReport: z.ZodObject<{
5
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
6
+ reportedMemberId: z.ZodString;
7
+ reportingMemberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8
+ reason: z.ZodObject<{
9
+ category: z.ZodOptional<z.ZodEnum<{
10
+ UNKNOWN: "UNKNOWN";
11
+ SPAM: "SPAM";
12
+ IMPERSONATION: "IMPERSONATION";
13
+ HARASSMENT: "HARASSMENT";
14
+ OTHER: "OTHER";
15
+ }>>;
16
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
17
+ }, z.core.$strip>;
18
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
19
+ }, z.core.$strip>;
20
+ }, z.core.$strip>;
21
+ declare const ReportMemberResponse: z.ZodObject<{
22
+ memberReport: z.ZodOptional<z.ZodObject<{
23
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
24
+ reportedMemberId: z.ZodOptional<z.ZodString>;
25
+ reportingMemberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
26
+ reason: z.ZodOptional<z.ZodObject<{
27
+ category: z.ZodOptional<z.ZodEnum<{
28
+ UNKNOWN: "UNKNOWN";
29
+ SPAM: "SPAM";
30
+ IMPERSONATION: "IMPERSONATION";
31
+ HARASSMENT: "HARASSMENT";
32
+ OTHER: "OTHER";
33
+ }>>;
34
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
35
+ }, z.core.$strip>>;
36
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
37
+ }, z.core.$strip>>;
38
+ }, z.core.$strip>;
39
+ declare const QueryMemberReportsRequest: z.ZodObject<{
40
+ query: z.ZodObject<{
41
+ filter: z.ZodOptional<z.ZodObject<{
42
+ _id: z.ZodOptional<z.ZodObject<{
43
+ $eq: z.ZodOptional<z.ZodString>;
44
+ $exists: z.ZodOptional<z.ZodBoolean>;
45
+ $gt: z.ZodOptional<z.ZodString>;
46
+ $gte: z.ZodOptional<z.ZodString>;
47
+ $hasAll: z.ZodOptional<z.ZodArray<z.ZodString>>;
48
+ $hasSome: z.ZodOptional<z.ZodArray<z.ZodString>>;
49
+ $in: z.ZodOptional<z.ZodArray<z.ZodString>>;
50
+ $lt: z.ZodOptional<z.ZodString>;
51
+ $lte: z.ZodOptional<z.ZodString>;
52
+ $ne: z.ZodOptional<z.ZodString>;
53
+ $nin: z.ZodOptional<z.ZodArray<z.ZodString>>;
54
+ $startsWith: z.ZodOptional<z.ZodString>;
55
+ }, z.core.$strict>>;
56
+ reportedMemberId: z.ZodOptional<z.ZodObject<{
57
+ $eq: z.ZodOptional<z.ZodString>;
58
+ $exists: z.ZodOptional<z.ZodBoolean>;
59
+ $gt: z.ZodOptional<z.ZodString>;
60
+ $gte: z.ZodOptional<z.ZodString>;
61
+ $hasAll: z.ZodOptional<z.ZodArray<z.ZodString>>;
62
+ $hasSome: z.ZodOptional<z.ZodArray<z.ZodString>>;
63
+ $in: z.ZodOptional<z.ZodArray<z.ZodString>>;
64
+ $lt: z.ZodOptional<z.ZodString>;
65
+ $lte: z.ZodOptional<z.ZodString>;
66
+ $ne: z.ZodOptional<z.ZodString>;
67
+ $nin: z.ZodOptional<z.ZodArray<z.ZodString>>;
68
+ $startsWith: z.ZodOptional<z.ZodString>;
69
+ }, z.core.$strict>>;
70
+ reportingMemberId: z.ZodOptional<z.ZodObject<{
71
+ $eq: z.ZodOptional<z.ZodString>;
72
+ $exists: z.ZodOptional<z.ZodBoolean>;
73
+ $gt: z.ZodOptional<z.ZodString>;
74
+ $gte: z.ZodOptional<z.ZodString>;
75
+ $hasAll: z.ZodOptional<z.ZodArray<z.ZodString>>;
76
+ $hasSome: z.ZodOptional<z.ZodArray<z.ZodString>>;
77
+ $in: z.ZodOptional<z.ZodArray<z.ZodString>>;
78
+ $lt: z.ZodOptional<z.ZodString>;
79
+ $lte: z.ZodOptional<z.ZodString>;
80
+ $ne: z.ZodOptional<z.ZodString>;
81
+ $nin: z.ZodOptional<z.ZodArray<z.ZodString>>;
82
+ $startsWith: z.ZodOptional<z.ZodString>;
83
+ }, z.core.$strict>>;
84
+ reason: z.ZodOptional<z.ZodObject<{
85
+ $eq: z.ZodOptional<z.ZodAny>;
86
+ $exists: z.ZodOptional<z.ZodBoolean>;
87
+ $gt: z.ZodOptional<z.ZodAny>;
88
+ $gte: z.ZodOptional<z.ZodAny>;
89
+ $hasAll: z.ZodOptional<z.ZodArray<z.ZodAny>>;
90
+ $hasSome: z.ZodOptional<z.ZodArray<z.ZodAny>>;
91
+ $in: z.ZodOptional<z.ZodArray<z.ZodAny>>;
92
+ $lt: z.ZodOptional<z.ZodAny>;
93
+ $lte: z.ZodOptional<z.ZodAny>;
94
+ $ne: z.ZodOptional<z.ZodAny>;
95
+ $nin: z.ZodOptional<z.ZodArray<z.ZodAny>>;
96
+ $startsWith: z.ZodOptional<z.ZodString>;
97
+ }, z.core.$strict>>;
98
+ _createdDate: z.ZodOptional<z.ZodObject<{
99
+ $eq: z.ZodOptional<z.ZodString>;
100
+ $exists: z.ZodOptional<z.ZodBoolean>;
101
+ $gt: z.ZodOptional<z.ZodString>;
102
+ $gte: z.ZodOptional<z.ZodString>;
103
+ $hasAll: z.ZodOptional<z.ZodArray<z.ZodString>>;
104
+ $hasSome: z.ZodOptional<z.ZodArray<z.ZodString>>;
105
+ $in: z.ZodOptional<z.ZodArray<z.ZodString>>;
106
+ $lt: z.ZodOptional<z.ZodString>;
107
+ $lte: z.ZodOptional<z.ZodString>;
108
+ $ne: z.ZodOptional<z.ZodString>;
109
+ $nin: z.ZodOptional<z.ZodArray<z.ZodString>>;
110
+ $startsWith: z.ZodOptional<z.ZodString>;
111
+ }, z.core.$strict>>;
112
+ $and: z.ZodOptional<z.ZodArray<z.ZodAny>>;
113
+ $or: z.ZodOptional<z.ZodArray<z.ZodAny>>;
114
+ $not: z.ZodOptional<z.ZodAny>;
115
+ }, z.core.$strict>>;
116
+ sort: z.ZodOptional<z.ZodArray<z.ZodObject<{}, z.core.$strip>>>;
117
+ }, z.core.$catchall<z.ZodAny>>;
118
+ }, z.core.$strip>;
119
+ declare const QueryMemberReportsResponse: z.ZodObject<{
120
+ memberReports: z.ZodOptional<z.ZodArray<z.ZodObject<{
121
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
122
+ reportedMemberId: z.ZodOptional<z.ZodString>;
123
+ reportingMemberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
124
+ reason: z.ZodOptional<z.ZodObject<{
125
+ category: z.ZodOptional<z.ZodEnum<{
126
+ UNKNOWN: "UNKNOWN";
127
+ SPAM: "SPAM";
128
+ IMPERSONATION: "IMPERSONATION";
129
+ HARASSMENT: "HARASSMENT";
130
+ OTHER: "OTHER";
131
+ }>>;
132
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
133
+ }, z.core.$strip>>;
134
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
135
+ }, z.core.$strip>>>;
136
+ pagingMetadata: z.ZodOptional<z.ZodObject<{
137
+ count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
138
+ offset: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
139
+ total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
140
+ tooManyToCount: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
141
+ cursors: z.ZodOptional<z.ZodObject<{
142
+ next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
143
+ prev: z.ZodNullable<z.ZodOptional<z.ZodString>>;
144
+ }, z.core.$strip>>;
145
+ }, z.core.$strip>>;
146
+ }, z.core.$strip>;
147
+ declare const ListReportedMembersRequest: z.ZodObject<{
148
+ options: z.ZodOptional<z.ZodIntersection<z.ZodObject<{}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
149
+ cursorPaging: z.ZodOptional<z.ZodNever>;
150
+ }, z.core.$strip>, z.ZodObject<{
151
+ cursorPaging: z.ZodObject<{
152
+ limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
153
+ cursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
154
+ }, z.core.$strip>;
155
+ }, z.core.$strip>]>>>;
156
+ }, z.core.$strip>;
157
+ declare const ListReportedMembersResponse: z.ZodObject<{
158
+ reportedMembers: z.ZodOptional<z.ZodArray<z.ZodObject<{
159
+ reportedMemberId: z.ZodOptional<z.ZodString>;
160
+ reportCount: z.ZodOptional<z.ZodString>;
161
+ reviewed: z.ZodOptional<z.ZodBoolean>;
162
+ lastReportDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
163
+ }, z.core.$strip>>>;
164
+ pagingMetadata: z.ZodOptional<z.ZodObject<{
165
+ count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
166
+ offset: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
167
+ total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
168
+ tooManyToCount: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
169
+ cursors: z.ZodOptional<z.ZodObject<{
170
+ next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
171
+ prev: z.ZodNullable<z.ZodOptional<z.ZodString>>;
172
+ }, z.core.$strip>>;
173
+ }, z.core.$strip>>;
174
+ }, z.core.$strip>;
175
+ declare const QueryReportedMembersRequest: z.ZodObject<{
176
+ options: z.ZodOptional<z.ZodObject<{
177
+ query: z.ZodOptional<z.ZodObject<{
178
+ filter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
179
+ sorting: z.ZodOptional<z.ZodArray<z.ZodObject<{
180
+ fieldName: z.ZodOptional<z.ZodString>;
181
+ order: z.ZodOptional<z.ZodEnum<{
182
+ ASC: "ASC";
183
+ DESC: "DESC";
184
+ }>>;
185
+ }, z.core.$strip>>>;
186
+ paging: z.ZodOptional<z.ZodObject<{
187
+ limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
188
+ cursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
189
+ }, z.core.$strip>>;
190
+ }, z.core.$strip>>;
191
+ }, z.core.$strip>>;
192
+ }, z.core.$strip>;
193
+ declare const QueryReportedMembersResponse: z.ZodObject<{
194
+ reportedMembers: z.ZodOptional<z.ZodArray<z.ZodObject<{
195
+ reportedMemberId: z.ZodOptional<z.ZodString>;
196
+ reportCount: z.ZodOptional<z.ZodString>;
197
+ reviewed: z.ZodOptional<z.ZodBoolean>;
198
+ lastReportDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
199
+ }, z.core.$strip>>>;
200
+ pagingMetadata: z.ZodOptional<z.ZodObject<{
201
+ count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
202
+ offset: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
203
+ total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
204
+ tooManyToCount: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
205
+ cursors: z.ZodOptional<z.ZodObject<{
206
+ next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
207
+ prev: z.ZodNullable<z.ZodOptional<z.ZodString>>;
208
+ }, z.core.$strip>>;
209
+ }, z.core.$strip>>;
210
+ }, z.core.$strip>;
211
+ declare const DeleteMemberReportsRequest: z.ZodObject<{
212
+ memberId: z.ZodString;
213
+ }, z.core.$strip>;
214
+ declare const DeleteMemberReportsResponse: z.ZodObject<{}, z.core.$strip>;
215
+
216
+ export { DeleteMemberReportsRequest, DeleteMemberReportsResponse, ListReportedMembersRequest, ListReportedMembersResponse, QueryMemberReportsRequest, QueryMemberReportsResponse, QueryReportedMembersRequest, QueryReportedMembersResponse, ReportMemberRequest, ReportMemberResponse };
@@ -0,0 +1,333 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // schemas.ts
31
+ var schemas_exports = {};
32
+ __export(schemas_exports, {
33
+ DeleteMemberReportsRequest: () => DeleteMemberReportsRequest,
34
+ DeleteMemberReportsResponse: () => DeleteMemberReportsResponse,
35
+ ListReportedMembersRequest: () => ListReportedMembersRequest,
36
+ ListReportedMembersResponse: () => ListReportedMembersResponse,
37
+ QueryMemberReportsRequest: () => QueryMemberReportsRequest,
38
+ QueryMemberReportsResponse: () => QueryMemberReportsResponse,
39
+ QueryReportedMembersRequest: () => QueryReportedMembersRequest,
40
+ QueryReportedMembersResponse: () => QueryReportedMembersResponse,
41
+ ReportMemberRequest: () => ReportMemberRequest,
42
+ ReportMemberResponse: () => ReportMemberResponse
43
+ });
44
+ module.exports = __toCommonJS(schemas_exports);
45
+
46
+ // src/members-v1-member-report-member-report.schemas.ts
47
+ var z = __toESM(require("zod"));
48
+ var ReportMemberRequest = z.object({
49
+ memberReport: z.object({
50
+ _id: z.string().describe("Report ID.").regex(
51
+ /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
52
+ "Must be a valid GUID"
53
+ ).optional().nullable(),
54
+ reportedMemberId: z.string().describe("ID of the reported member.").regex(
55
+ /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
56
+ "Must be a valid GUID"
57
+ ),
58
+ reportingMemberId: z.string().describe("ID of the member who created the report.").optional().nullable(),
59
+ reason: z.object({
60
+ category: z.enum(["UNKNOWN", "SPAM", "IMPERSONATION", "HARASSMENT", "OTHER"]).optional(),
61
+ description: z.string().describe("Explanation of why the member is being reported.").optional().nullable()
62
+ }).describe("Reason for reporting a member."),
63
+ _createdDate: z.date().describe("Date and time the report was created.").optional().nullable()
64
+ }).describe("Details of a member to report.")
65
+ });
66
+ var ReportMemberResponse = z.object({
67
+ memberReport: z.object({
68
+ _id: z.string().describe("Report ID.").regex(
69
+ /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
70
+ "Must be a valid GUID"
71
+ ).optional().nullable(),
72
+ reportedMemberId: z.string().describe("ID of the reported member.").regex(
73
+ /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
74
+ "Must be a valid GUID"
75
+ ).optional(),
76
+ reportingMemberId: z.string().describe("ID of the member who created the report.").optional().nullable(),
77
+ reason: z.object({
78
+ category: z.enum(["UNKNOWN", "SPAM", "IMPERSONATION", "HARASSMENT", "OTHER"]).describe("Report reason type.").optional(),
79
+ description: z.string().describe("Explanation of why the member is being reported.").optional().nullable()
80
+ }).describe("Reason for reporting a member.").optional(),
81
+ _createdDate: z.date().describe("Date and time the report was created.").optional().nullable()
82
+ }).describe("Member report.").optional()
83
+ });
84
+ var QueryMemberReportsRequest = z.object({
85
+ query: z.object({
86
+ filter: z.object({
87
+ _id: z.object({
88
+ $eq: z.string(),
89
+ $exists: z.boolean(),
90
+ $gt: z.string(),
91
+ $gte: z.string(),
92
+ $hasAll: z.array(z.string()),
93
+ $hasSome: z.array(z.string()),
94
+ $in: z.array(z.string()),
95
+ $lt: z.string(),
96
+ $lte: z.string(),
97
+ $ne: z.string(),
98
+ $nin: z.array(z.string()),
99
+ $startsWith: z.string()
100
+ }).partial().strict().optional(),
101
+ reportedMemberId: z.object({
102
+ $eq: z.string(),
103
+ $exists: z.boolean(),
104
+ $gt: z.string(),
105
+ $gte: z.string(),
106
+ $hasAll: z.array(z.string()),
107
+ $hasSome: z.array(z.string()),
108
+ $in: z.array(z.string()),
109
+ $lt: z.string(),
110
+ $lte: z.string(),
111
+ $ne: z.string(),
112
+ $nin: z.array(z.string()),
113
+ $startsWith: z.string()
114
+ }).partial().strict().optional(),
115
+ reportingMemberId: z.object({
116
+ $eq: z.string(),
117
+ $exists: z.boolean(),
118
+ $gt: z.string(),
119
+ $gte: z.string(),
120
+ $hasAll: z.array(z.string()),
121
+ $hasSome: z.array(z.string()),
122
+ $in: z.array(z.string()),
123
+ $lt: z.string(),
124
+ $lte: z.string(),
125
+ $ne: z.string(),
126
+ $nin: z.array(z.string()),
127
+ $startsWith: z.string()
128
+ }).partial().strict().optional(),
129
+ reason: z.object({
130
+ $eq: z.any(),
131
+ $exists: z.boolean(),
132
+ $gt: z.any(),
133
+ $gte: z.any(),
134
+ $hasAll: z.array(z.any()),
135
+ $hasSome: z.array(z.any()),
136
+ $in: z.array(z.any()),
137
+ $lt: z.any(),
138
+ $lte: z.any(),
139
+ $ne: z.any(),
140
+ $nin: z.array(z.any()),
141
+ $startsWith: z.string()
142
+ }).partial().strict().optional(),
143
+ _createdDate: z.object({
144
+ $eq: z.string(),
145
+ $exists: z.boolean(),
146
+ $gt: z.string(),
147
+ $gte: z.string(),
148
+ $hasAll: z.array(z.string()),
149
+ $hasSome: z.array(z.string()),
150
+ $in: z.array(z.string()),
151
+ $lt: z.string(),
152
+ $lte: z.string(),
153
+ $ne: z.string(),
154
+ $nin: z.array(z.string()),
155
+ $startsWith: z.string()
156
+ }).partial().strict().optional(),
157
+ $and: z.array(z.any()).optional(),
158
+ $or: z.array(z.any()).optional(),
159
+ $not: z.any().optional()
160
+ }).strict().optional(),
161
+ sort: z.array(z.object({})).optional()
162
+ }).catchall(z.any()).describe(
163
+ "Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language) for more details."
164
+ )
165
+ });
166
+ var QueryMemberReportsResponse = z.object({
167
+ memberReports: z.array(
168
+ z.object({
169
+ _id: z.string().describe("Report ID.").regex(
170
+ /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
171
+ "Must be a valid GUID"
172
+ ).optional().nullable(),
173
+ reportedMemberId: z.string().describe("ID of the reported member.").regex(
174
+ /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
175
+ "Must be a valid GUID"
176
+ ).optional(),
177
+ reportingMemberId: z.string().describe("ID of the member who created the report.").optional().nullable(),
178
+ reason: z.object({
179
+ category: z.enum(["UNKNOWN", "SPAM", "IMPERSONATION", "HARASSMENT", "OTHER"]).describe("Report reason type.").optional(),
180
+ description: z.string().describe("Explanation of why the member is being reported.").optional().nullable()
181
+ }).describe("Reason for reporting a member.").optional(),
182
+ _createdDate: z.date().describe("Date and time the report was created.").optional().nullable()
183
+ })
184
+ ).optional(),
185
+ pagingMetadata: z.object({
186
+ count: z.number().int().describe("Number of items returned in the response.").optional().nullable(),
187
+ offset: z.number().int().describe("Offset that was requested.").optional().nullable(),
188
+ total: z.number().int().describe(
189
+ "Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set."
190
+ ).optional().nullable(),
191
+ tooManyToCount: z.boolean().describe(
192
+ "Flag that indicates the server failed to calculate the `total` field."
193
+ ).optional().nullable(),
194
+ cursors: z.object({
195
+ next: z.string().describe(
196
+ "Cursor string pointing to the next page in the list of results."
197
+ ).max(16e3).optional().nullable(),
198
+ prev: z.string().describe(
199
+ "Cursor pointing to the previous page in the list of results."
200
+ ).max(16e3).optional().nullable()
201
+ }).describe(
202
+ "Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used."
203
+ ).optional()
204
+ }).describe("Metadata for the paginated results.").optional()
205
+ });
206
+ var ListReportedMembersRequest = z.object({
207
+ options: z.intersection(
208
+ z.object({}),
209
+ z.xor([
210
+ z.object({ cursorPaging: z.never().optional() }),
211
+ z.object({
212
+ cursorPaging: z.object({
213
+ limit: z.number().int().describe("The number of items to load.\nDefault: `100`").min(0).max(1e3).optional().nullable(),
214
+ cursor: z.string().describe(
215
+ "Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`."
216
+ ).optional().nullable()
217
+ }).describe(
218
+ "Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`."
219
+ )
220
+ })
221
+ ])
222
+ ).optional()
223
+ });
224
+ var ListReportedMembersResponse = z.object({
225
+ reportedMembers: z.array(
226
+ z.object({
227
+ reportedMemberId: z.string().describe("ID of the reported member.").regex(
228
+ /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
229
+ "Must be a valid GUID"
230
+ ).optional(),
231
+ reportCount: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe("Number of reports for this member.").optional(),
232
+ reviewed: z.boolean().describe("Whether reports of this member have been reviewed.").optional(),
233
+ lastReportDate: z.date().describe("Date and time when the most recent report was created.").optional().nullable()
234
+ })
235
+ ).optional(),
236
+ pagingMetadata: z.object({
237
+ count: z.number().int().describe("Number of items returned in the response.").optional().nullable(),
238
+ offset: z.number().int().describe("Offset that was requested.").optional().nullable(),
239
+ total: z.number().int().describe(
240
+ "Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set."
241
+ ).optional().nullable(),
242
+ tooManyToCount: z.boolean().describe(
243
+ "Flag that indicates the server failed to calculate the `total` field."
244
+ ).optional().nullable(),
245
+ cursors: z.object({
246
+ next: z.string().describe(
247
+ "Cursor string pointing to the next page in the list of results."
248
+ ).max(16e3).optional().nullable(),
249
+ prev: z.string().describe(
250
+ "Cursor pointing to the previous page in the list of results."
251
+ ).max(16e3).optional().nullable()
252
+ }).describe(
253
+ "Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used."
254
+ ).optional()
255
+ }).describe("Metadata for the paginated results.").optional()
256
+ });
257
+ var QueryReportedMembersRequest = z.object({
258
+ options: z.object({
259
+ query: z.object({
260
+ filter: z.record(z.string(), z.any()).describe(
261
+ 'Filter object in the following format:\n`"filter" : {\n"fieldName1": "value1",\n"fieldName2":{"$operator":"value2"}\n}`\nExample of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`\n\nSee [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language) for more details.'
262
+ ).optional().nullable(),
263
+ sorting: z.array(
264
+ z.object({
265
+ fieldName: z.string().describe("Name of the field to sort by.").max(512).optional(),
266
+ order: z.enum(["ASC", "DESC"]).optional()
267
+ })
268
+ ).optional(),
269
+ paging: z.object({
270
+ limit: z.number().int().describe("The number of items to load.\nDefault: `100`").min(0).max(1e3).optional().nullable(),
271
+ cursor: z.string().describe(
272
+ "Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`."
273
+ ).optional().nullable()
274
+ }).describe("Paging options to limit and skip the number of items.").optional()
275
+ }).describe(
276
+ "Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language) for more details."
277
+ ).optional()
278
+ }).optional()
279
+ });
280
+ var QueryReportedMembersResponse = z.object({
281
+ reportedMembers: z.array(
282
+ z.object({
283
+ reportedMemberId: z.string().describe("ID of the reported member.").regex(
284
+ /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
285
+ "Must be a valid GUID"
286
+ ).optional(),
287
+ reportCount: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe("Number of reports for this member.").optional(),
288
+ reviewed: z.boolean().describe("Whether reports of this member have been reviewed.").optional(),
289
+ lastReportDate: z.date().describe("Date and time when the most recent report was created.").optional().nullable()
290
+ })
291
+ ).optional(),
292
+ pagingMetadata: z.object({
293
+ count: z.number().int().describe("Number of items returned in the response.").optional().nullable(),
294
+ offset: z.number().int().describe("Offset that was requested.").optional().nullable(),
295
+ total: z.number().int().describe(
296
+ "Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set."
297
+ ).optional().nullable(),
298
+ tooManyToCount: z.boolean().describe(
299
+ "Flag that indicates the server failed to calculate the `total` field."
300
+ ).optional().nullable(),
301
+ cursors: z.object({
302
+ next: z.string().describe(
303
+ "Cursor string pointing to the next page in the list of results."
304
+ ).max(16e3).optional().nullable(),
305
+ prev: z.string().describe(
306
+ "Cursor pointing to the previous page in the list of results."
307
+ ).max(16e3).optional().nullable()
308
+ }).describe(
309
+ "Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used."
310
+ ).optional()
311
+ }).describe("Metadata for the paginated results.").optional()
312
+ });
313
+ var DeleteMemberReportsRequest = z.object({
314
+ memberId: z.string().describe("ID of the member whose reports are to be deleted.").regex(
315
+ /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
316
+ "Must be a valid GUID"
317
+ )
318
+ });
319
+ var DeleteMemberReportsResponse = z.object({});
320
+ // Annotate the CommonJS export names for ESM import in node:
321
+ 0 && (module.exports = {
322
+ DeleteMemberReportsRequest,
323
+ DeleteMemberReportsResponse,
324
+ ListReportedMembersRequest,
325
+ ListReportedMembersResponse,
326
+ QueryMemberReportsRequest,
327
+ QueryMemberReportsResponse,
328
+ QueryReportedMembersRequest,
329
+ QueryReportedMembersResponse,
330
+ ReportMemberRequest,
331
+ ReportMemberResponse
332
+ });
333
+ //# sourceMappingURL=schemas.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../schemas.ts","../../src/members-v1-member-report-member-report.schemas.ts"],"sourcesContent":["export * from './src/members-v1-member-report-member-report.schemas.js';\n","import * as z from 'zod';\n\nexport const ReportMemberRequest = z.object({\n memberReport: z\n .object({\n _id: z\n .string()\n .describe('Report ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n reportedMemberId: z\n .string()\n .describe('ID of the reported member.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n ),\n reportingMemberId: z\n .string()\n .describe('ID of the member who created the report.')\n .optional()\n .nullable(),\n reason: z\n .object({\n category: z\n .enum(['UNKNOWN', 'SPAM', 'IMPERSONATION', 'HARASSMENT', 'OTHER'])\n .optional(),\n description: z\n .string()\n .describe('Explanation of why the member is being reported.')\n .optional()\n .nullable(),\n })\n .describe('Reason for reporting a member.'),\n _createdDate: z\n .date()\n .describe('Date and time the report was created.')\n .optional()\n .nullable(),\n })\n .describe('Details of a member to report.'),\n});\nexport const ReportMemberResponse = z.object({\n memberReport: z\n .object({\n _id: z\n .string()\n .describe('Report ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n reportedMemberId: z\n .string()\n .describe('ID of the reported member.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n reportingMemberId: z\n .string()\n .describe('ID of the member who created the report.')\n .optional()\n .nullable(),\n reason: z\n .object({\n category: z\n .enum(['UNKNOWN', 'SPAM', 'IMPERSONATION', 'HARASSMENT', 'OTHER'])\n .describe('Report reason type.')\n .optional(),\n description: z\n .string()\n .describe('Explanation of why the member is being reported.')\n .optional()\n .nullable(),\n })\n .describe('Reason for reporting a member.')\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the report was created.')\n .optional()\n .nullable(),\n })\n .describe('Member report.')\n .optional(),\n});\nexport const QueryMemberReportsRequest = z.object({\n query: z\n .object({\n filter: z\n .object({\n _id: z\n .object({\n $eq: z.string(),\n $exists: z.boolean(),\n $gt: z.string(),\n $gte: z.string(),\n $hasAll: z.array(z.string()),\n $hasSome: z.array(z.string()),\n $in: z.array(z.string()),\n $lt: z.string(),\n $lte: z.string(),\n $ne: z.string(),\n $nin: z.array(z.string()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n reportedMemberId: z\n .object({\n $eq: z.string(),\n $exists: z.boolean(),\n $gt: z.string(),\n $gte: z.string(),\n $hasAll: z.array(z.string()),\n $hasSome: z.array(z.string()),\n $in: z.array(z.string()),\n $lt: z.string(),\n $lte: z.string(),\n $ne: z.string(),\n $nin: z.array(z.string()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n reportingMemberId: z\n .object({\n $eq: z.string(),\n $exists: z.boolean(),\n $gt: z.string(),\n $gte: z.string(),\n $hasAll: z.array(z.string()),\n $hasSome: z.array(z.string()),\n $in: z.array(z.string()),\n $lt: z.string(),\n $lte: z.string(),\n $ne: z.string(),\n $nin: z.array(z.string()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n reason: z\n .object({\n $eq: z.any(),\n $exists: z.boolean(),\n $gt: z.any(),\n $gte: z.any(),\n $hasAll: z.array(z.any()),\n $hasSome: z.array(z.any()),\n $in: z.array(z.any()),\n $lt: z.any(),\n $lte: z.any(),\n $ne: z.any(),\n $nin: z.array(z.any()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n _createdDate: z\n .object({\n $eq: z.string(),\n $exists: z.boolean(),\n $gt: z.string(),\n $gte: z.string(),\n $hasAll: z.array(z.string()),\n $hasSome: z.array(z.string()),\n $in: z.array(z.string()),\n $lt: z.string(),\n $lte: z.string(),\n $ne: z.string(),\n $nin: z.array(z.string()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n $and: z.array(z.any()).optional(),\n $or: z.array(z.any()).optional(),\n $not: z.any().optional(),\n })\n .strict()\n .optional(),\n sort: z.array(z.object({})).optional(),\n })\n .catchall(z.any())\n .describe(\n 'Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language) for more details.'\n ),\n});\nexport const QueryMemberReportsResponse = z.object({\n memberReports: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Report ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n reportedMemberId: z\n .string()\n .describe('ID of the reported member.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n reportingMemberId: z\n .string()\n .describe('ID of the member who created the report.')\n .optional()\n .nullable(),\n reason: z\n .object({\n category: z\n .enum(['UNKNOWN', 'SPAM', 'IMPERSONATION', 'HARASSMENT', 'OTHER'])\n .describe('Report reason type.')\n .optional(),\n description: z\n .string()\n .describe('Explanation of why the member is being reported.')\n .optional()\n .nullable(),\n })\n .describe('Reason for reporting a member.')\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the report was created.')\n .optional()\n .nullable(),\n })\n )\n .optional(),\n pagingMetadata: z\n .object({\n count: z\n .number()\n .int()\n .describe('Number of items returned in the response.')\n .optional()\n .nullable(),\n offset: z\n .number()\n .int()\n .describe('Offset that was requested.')\n .optional()\n .nullable(),\n total: z\n .number()\n .int()\n .describe(\n 'Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set.'\n )\n .optional()\n .nullable(),\n tooManyToCount: z\n .boolean()\n .describe(\n 'Flag that indicates the server failed to calculate the `total` field.'\n )\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n prev: z\n .string()\n .describe(\n 'Cursor pointing to the previous page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used.'\n )\n .optional(),\n })\n .describe('Metadata for the paginated results.')\n .optional(),\n});\nexport const ListReportedMembersRequest = z.object({\n options: z\n .intersection(\n z.object({}),\n z.xor([\n z.object({ cursorPaging: z.never().optional() }),\n z.object({\n cursorPaging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('The number of items to load.\\nDefault: `100`')\n .min(0)\n .max(1000)\n .optional()\n .nullable(),\n cursor: z\n .string()\n .describe(\n 'Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`.'\n )\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`.'\n ),\n }),\n ])\n )\n .optional(),\n});\nexport const ListReportedMembersResponse = z.object({\n reportedMembers: z\n .array(\n z.object({\n reportedMemberId: z\n .string()\n .describe('ID of the reported member.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n reportCount: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe('Number of reports for this member.')\n .optional(),\n reviewed: z\n .boolean()\n .describe('Whether reports of this member have been reviewed.')\n .optional(),\n lastReportDate: z\n .date()\n .describe('Date and time when the most recent report was created.')\n .optional()\n .nullable(),\n })\n )\n .optional(),\n pagingMetadata: z\n .object({\n count: z\n .number()\n .int()\n .describe('Number of items returned in the response.')\n .optional()\n .nullable(),\n offset: z\n .number()\n .int()\n .describe('Offset that was requested.')\n .optional()\n .nullable(),\n total: z\n .number()\n .int()\n .describe(\n 'Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set.'\n )\n .optional()\n .nullable(),\n tooManyToCount: z\n .boolean()\n .describe(\n 'Flag that indicates the server failed to calculate the `total` field.'\n )\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n prev: z\n .string()\n .describe(\n 'Cursor pointing to the previous page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used.'\n )\n .optional(),\n })\n .describe('Metadata for the paginated results.')\n .optional(),\n});\nexport const QueryReportedMembersRequest = z.object({\n options: z\n .object({\n query: z\n .object({\n filter: z\n .record(z.string(), z.any())\n .describe(\n 'Filter object in the following format:\\n`\"filter\" : {\\n\"fieldName1\": \"value1\",\\n\"fieldName2\":{\"$operator\":\"value2\"}\\n}`\\nExample of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`\\n\\nSee [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language) for more details.'\n )\n .optional()\n .nullable(),\n sorting: z\n .array(\n z.object({\n fieldName: z\n .string()\n .describe('Name of the field to sort by.')\n .max(512)\n .optional(),\n order: z.enum(['ASC', 'DESC']).optional(),\n })\n )\n .optional(),\n paging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('The number of items to load.\\nDefault: `100`')\n .min(0)\n .max(1000)\n .optional()\n .nullable(),\n cursor: z\n .string()\n .describe(\n 'Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`.'\n )\n .optional()\n .nullable(),\n })\n .describe('Paging options to limit and skip the number of items.')\n .optional(),\n })\n .describe(\n 'Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language) for more details.'\n )\n .optional(),\n })\n .optional(),\n});\nexport const QueryReportedMembersResponse = z.object({\n reportedMembers: z\n .array(\n z.object({\n reportedMemberId: z\n .string()\n .describe('ID of the reported member.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n reportCount: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe('Number of reports for this member.')\n .optional(),\n reviewed: z\n .boolean()\n .describe('Whether reports of this member have been reviewed.')\n .optional(),\n lastReportDate: z\n .date()\n .describe('Date and time when the most recent report was created.')\n .optional()\n .nullable(),\n })\n )\n .optional(),\n pagingMetadata: z\n .object({\n count: z\n .number()\n .int()\n .describe('Number of items returned in the response.')\n .optional()\n .nullable(),\n offset: z\n .number()\n .int()\n .describe('Offset that was requested.')\n .optional()\n .nullable(),\n total: z\n .number()\n .int()\n .describe(\n 'Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set.'\n )\n .optional()\n .nullable(),\n tooManyToCount: z\n .boolean()\n .describe(\n 'Flag that indicates the server failed to calculate the `total` field.'\n )\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n prev: z\n .string()\n .describe(\n 'Cursor pointing to the previous page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used.'\n )\n .optional(),\n })\n .describe('Metadata for the paginated results.')\n .optional(),\n});\nexport const DeleteMemberReportsRequest = z.object({\n memberId: z\n .string()\n .describe('ID of the member whose reports are to be deleted.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n ),\n});\nexport const DeleteMemberReportsResponse = z.object({});\n"],"mappings":"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","names":[]}