@wix/auto_sdk_crm_labels 1.0.54 → 1.0.56

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,203 @@
1
+ import * as z from 'zod';
2
+
3
+ declare const ListLabelsRequest: z.ZodObject<{
4
+ options: z.ZodOptional<z.ZodObject<{
5
+ labelType: z.ZodOptional<z.ZodEnum<{
6
+ SYSTEM: "SYSTEM";
7
+ USER_DEFINED: "USER_DEFINED";
8
+ WIX_APP_DEFINED: "WIX_APP_DEFINED";
9
+ }>>;
10
+ namespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11
+ startsWith: z.ZodNullable<z.ZodOptional<z.ZodString>>;
12
+ sort: z.ZodOptional<z.ZodObject<{
13
+ fieldName: z.ZodOptional<z.ZodString>;
14
+ order: z.ZodOptional<z.ZodEnum<{
15
+ ASC: "ASC";
16
+ DESC: "DESC";
17
+ }>>;
18
+ }, z.core.$strip>>;
19
+ paging: z.ZodOptional<z.ZodObject<{
20
+ limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
21
+ offset: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
22
+ }, z.core.$strip>>;
23
+ language: z.ZodNullable<z.ZodOptional<z.ZodString>>;
24
+ }, z.core.$strip>>;
25
+ }, z.core.$strip>;
26
+ declare const ListLabelsResponse: z.ZodObject<{
27
+ labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
28
+ namespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
29
+ namespaceDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
30
+ key: z.ZodOptional<z.ZodString>;
31
+ displayName: z.ZodOptional<z.ZodString>;
32
+ labelType: z.ZodOptional<z.ZodEnum<{
33
+ SYSTEM: "SYSTEM";
34
+ USER_DEFINED: "USER_DEFINED";
35
+ WIX_APP_DEFINED: "WIX_APP_DEFINED";
36
+ }>>;
37
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
38
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
39
+ }, z.core.$strip>>>;
40
+ metadata: z.ZodOptional<z.ZodObject<{
41
+ count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
42
+ offset: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
43
+ total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
44
+ tooManyToCount: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
45
+ }, z.core.$strip>>;
46
+ }, z.core.$strip>;
47
+ declare const FindOrCreateLabelRequest: z.ZodObject<{
48
+ displayName: z.ZodString;
49
+ options: z.ZodOptional<z.ZodObject<{
50
+ language: z.ZodNullable<z.ZodOptional<z.ZodString>>;
51
+ }, z.core.$strip>>;
52
+ }, z.core.$strip>;
53
+ declare const FindOrCreateLabelResponse: z.ZodObject<{
54
+ label: z.ZodOptional<z.ZodObject<{
55
+ namespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
56
+ namespaceDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
57
+ key: z.ZodOptional<z.ZodString>;
58
+ displayName: z.ZodOptional<z.ZodString>;
59
+ labelType: z.ZodOptional<z.ZodEnum<{
60
+ SYSTEM: "SYSTEM";
61
+ USER_DEFINED: "USER_DEFINED";
62
+ WIX_APP_DEFINED: "WIX_APP_DEFINED";
63
+ }>>;
64
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
65
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
66
+ }, z.core.$strip>>;
67
+ newLabel: z.ZodOptional<z.ZodBoolean>;
68
+ }, z.core.$strip>;
69
+ declare const GetLabelRequest: z.ZodObject<{
70
+ key: z.ZodString;
71
+ options: z.ZodOptional<z.ZodObject<{
72
+ language: z.ZodNullable<z.ZodOptional<z.ZodString>>;
73
+ }, z.core.$strip>>;
74
+ }, z.core.$strip>;
75
+ declare const GetLabelResponse: z.ZodObject<{
76
+ namespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
77
+ namespaceDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
78
+ key: z.ZodOptional<z.ZodString>;
79
+ displayName: z.ZodOptional<z.ZodString>;
80
+ labelType: z.ZodOptional<z.ZodEnum<{
81
+ SYSTEM: "SYSTEM";
82
+ USER_DEFINED: "USER_DEFINED";
83
+ WIX_APP_DEFINED: "WIX_APP_DEFINED";
84
+ }>>;
85
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
86
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
87
+ }, z.core.$strip>;
88
+ declare const RenameLabelRequest: z.ZodObject<{
89
+ key: z.ZodString;
90
+ label: z.ZodObject<{
91
+ namespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
92
+ namespaceDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
93
+ key: z.ZodOptional<z.ZodString>;
94
+ displayName: z.ZodString;
95
+ labelType: z.ZodOptional<z.ZodEnum<{
96
+ SYSTEM: "SYSTEM";
97
+ USER_DEFINED: "USER_DEFINED";
98
+ WIX_APP_DEFINED: "WIX_APP_DEFINED";
99
+ }>>;
100
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
101
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
102
+ }, z.core.$strip>;
103
+ options: z.ZodOptional<z.ZodObject<{
104
+ language: z.ZodNullable<z.ZodOptional<z.ZodString>>;
105
+ }, z.core.$strip>>;
106
+ }, z.core.$strip>;
107
+ declare const RenameLabelResponse: z.ZodObject<{
108
+ namespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
109
+ namespaceDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
110
+ key: z.ZodOptional<z.ZodString>;
111
+ displayName: z.ZodOptional<z.ZodString>;
112
+ labelType: z.ZodOptional<z.ZodEnum<{
113
+ SYSTEM: "SYSTEM";
114
+ USER_DEFINED: "USER_DEFINED";
115
+ WIX_APP_DEFINED: "WIX_APP_DEFINED";
116
+ }>>;
117
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
118
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
119
+ }, z.core.$strip>;
120
+ declare const DeleteLabelRequest: z.ZodObject<{
121
+ key: z.ZodString;
122
+ }, z.core.$strip>;
123
+ declare const DeleteLabelResponse: z.ZodObject<{}, z.core.$strip>;
124
+ declare const QueryLabelsRequest: z.ZodObject<{
125
+ query: z.ZodObject<{
126
+ filter: z.ZodOptional<z.ZodObject<{
127
+ key: z.ZodOptional<z.ZodObject<{
128
+ $eq: z.ZodOptional<z.ZodString>;
129
+ $in: z.ZodOptional<z.ZodArray<z.ZodString>>;
130
+ $ne: z.ZodOptional<z.ZodString>;
131
+ }, z.core.$strict>>;
132
+ displayName: z.ZodOptional<z.ZodObject<{
133
+ $eq: z.ZodOptional<z.ZodString>;
134
+ $in: z.ZodOptional<z.ZodArray<z.ZodString>>;
135
+ $ne: z.ZodOptional<z.ZodString>;
136
+ $startsWith: z.ZodOptional<z.ZodString>;
137
+ }, z.core.$strict>>;
138
+ _createdDate: z.ZodOptional<z.ZodObject<{
139
+ $eq: z.ZodOptional<z.ZodString>;
140
+ $gt: z.ZodOptional<z.ZodString>;
141
+ $gte: z.ZodOptional<z.ZodString>;
142
+ $lt: z.ZodOptional<z.ZodString>;
143
+ $lte: z.ZodOptional<z.ZodString>;
144
+ $ne: z.ZodOptional<z.ZodString>;
145
+ }, z.core.$strict>>;
146
+ _updatedDate: z.ZodOptional<z.ZodObject<{
147
+ $eq: z.ZodOptional<z.ZodString>;
148
+ $gt: z.ZodOptional<z.ZodString>;
149
+ $gte: z.ZodOptional<z.ZodString>;
150
+ $lt: z.ZodOptional<z.ZodString>;
151
+ $lte: z.ZodOptional<z.ZodString>;
152
+ $ne: z.ZodOptional<z.ZodString>;
153
+ }, z.core.$strict>>;
154
+ namespace: z.ZodOptional<z.ZodObject<{
155
+ $eq: z.ZodOptional<z.ZodString>;
156
+ $ne: z.ZodOptional<z.ZodString>;
157
+ }, z.core.$strict>>;
158
+ labelType: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
159
+ $eq: z.ZodOptional<z.ZodString>;
160
+ }, z.core.$strict>]>>;
161
+ $and: z.ZodOptional<z.ZodArray<z.ZodAny>>;
162
+ $or: z.ZodOptional<z.ZodArray<z.ZodAny>>;
163
+ $not: z.ZodOptional<z.ZodAny>;
164
+ }, z.core.$strict>>;
165
+ sort: z.ZodOptional<z.ZodArray<z.ZodObject<{
166
+ fieldName: z.ZodOptional<z.ZodEnum<{
167
+ displayName: "displayName";
168
+ _createdDate: "_createdDate";
169
+ _updatedDate: "_updatedDate";
170
+ }>>;
171
+ order: z.ZodOptional<z.ZodEnum<{
172
+ ASC: "ASC";
173
+ DESC: "DESC";
174
+ }>>;
175
+ }, z.core.$strip>>>;
176
+ }, z.core.$catchall<z.ZodAny>>;
177
+ options: z.ZodOptional<z.ZodObject<{
178
+ language: z.ZodNullable<z.ZodOptional<z.ZodString>>;
179
+ }, z.core.$strip>>;
180
+ }, z.core.$strip>;
181
+ declare const QueryLabelsResponse: z.ZodObject<{
182
+ labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
183
+ namespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
184
+ namespaceDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
185
+ key: z.ZodOptional<z.ZodString>;
186
+ displayName: z.ZodOptional<z.ZodString>;
187
+ labelType: z.ZodOptional<z.ZodEnum<{
188
+ SYSTEM: "SYSTEM";
189
+ USER_DEFINED: "USER_DEFINED";
190
+ WIX_APP_DEFINED: "WIX_APP_DEFINED";
191
+ }>>;
192
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
193
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
194
+ }, z.core.$strip>>>;
195
+ pagingMetadata: z.ZodOptional<z.ZodObject<{
196
+ count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
197
+ offset: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
198
+ total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
199
+ tooManyToCount: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
200
+ }, z.core.$strip>>;
201
+ }, z.core.$strip>;
202
+
203
+ export { DeleteLabelRequest, DeleteLabelResponse, FindOrCreateLabelRequest, FindOrCreateLabelResponse, GetLabelRequest, GetLabelResponse, ListLabelsRequest, ListLabelsResponse, QueryLabelsRequest, QueryLabelsResponse, RenameLabelRequest, RenameLabelResponse };
@@ -0,0 +1,290 @@
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
+ DeleteLabelRequest: () => DeleteLabelRequest,
34
+ DeleteLabelResponse: () => DeleteLabelResponse,
35
+ FindOrCreateLabelRequest: () => FindOrCreateLabelRequest,
36
+ FindOrCreateLabelResponse: () => FindOrCreateLabelResponse,
37
+ GetLabelRequest: () => GetLabelRequest,
38
+ GetLabelResponse: () => GetLabelResponse,
39
+ ListLabelsRequest: () => ListLabelsRequest,
40
+ ListLabelsResponse: () => ListLabelsResponse,
41
+ QueryLabelsRequest: () => QueryLabelsRequest,
42
+ QueryLabelsResponse: () => QueryLabelsResponse,
43
+ RenameLabelRequest: () => RenameLabelRequest,
44
+ RenameLabelResponse: () => RenameLabelResponse
45
+ });
46
+ module.exports = __toCommonJS(schemas_exports);
47
+
48
+ // src/contacts-v4-label-labels.schemas.ts
49
+ var z = __toESM(require("zod"));
50
+ var ListLabelsRequest = z.object({
51
+ options: z.object({
52
+ labelType: z.enum(["SYSTEM", "USER_DEFINED", "WIX_APP_DEFINED"]).optional(),
53
+ namespace: z.string().describe("Filter for labels in the specified namespace.").min(3).max(25).optional().nullable(),
54
+ startsWith: z.string().describe(
55
+ "Filter for labels where `displayName` starts with the specified case-sensitive string."
56
+ ).min(1).max(180).optional().nullable(),
57
+ sort: z.object({
58
+ fieldName: z.string().describe("Name of the field to sort by.").max(3e3).optional(),
59
+ order: z.enum(["ASC", "DESC"]).optional()
60
+ }).describe("Sorting options.").optional(),
61
+ paging: z.object({
62
+ limit: z.number().int().describe(
63
+ "Number of items to return.\n\nDefaults to `1000`. <br>\nMaximum: `2000`."
64
+ ).min(0).optional().nullable(),
65
+ offset: z.number().int().describe("Number of items to skip in the current sort order.").min(0).optional().nullable()
66
+ }).describe("Paging options.").optional(),
67
+ language: z.string().optional().nullable()
68
+ }).optional()
69
+ });
70
+ var ListLabelsResponse = z.object({
71
+ labels: z.array(
72
+ z.object({
73
+ namespace: z.string().describe(
74
+ "Label namespace.\n\nLabels created by calling the Find Or Create Label method\nare automatically assigned to the `custom` namespace."
75
+ ).min(1).max(25).optional().nullable(),
76
+ namespaceDisplayName: z.string().describe(
77
+ "Display name for the namespace,\nused to organize the list of labels in the site dashboard."
78
+ ).min(1).max(180).optional().nullable(),
79
+ key: z.string().describe(
80
+ "Label key.\n\n`key` is generated when the label is created.\nIt can't be modified, even if `displayName` is updated."
81
+ ).min(1).max(80).optional(),
82
+ displayName: z.string().describe("Label display name shown in the dashboard.").min(1).max(180).optional(),
83
+ labelType: z.enum(["SYSTEM", "USER_DEFINED", "WIX_APP_DEFINED"]).describe("Label type indicating how the label was created.").optional(),
84
+ _createdDate: z.date().describe("Date and time the label was created.").optional().nullable(),
85
+ _updatedDate: z.date().describe("Date and time the label was last updated.").optional().nullable()
86
+ })
87
+ ).optional(),
88
+ metadata: z.object({
89
+ count: z.number().int().describe("Number of items returned.").optional().nullable(),
90
+ offset: z.number().int().describe("Requested offset.").optional().nullable(),
91
+ total: z.number().int().describe("Number of items that matched the query.").optional().nullable(),
92
+ tooManyToCount: z.boolean().describe(
93
+ "Indicates if `total` calculation timed out before the response was sent.\nTypically this happens if there is a large set of results."
94
+ ).optional().nullable()
95
+ }).describe("Metadata for the page of results.").optional()
96
+ });
97
+ var FindOrCreateLabelRequest = z.object({
98
+ displayName: z.string().describe(
99
+ "Display name to retrieve or create.\n\nIf an existing label is an exact match\nfor the specified display name,\nthe existing label is returned.\nIf not, a new label is created and returned."
100
+ ).min(1).max(180),
101
+ options: z.object({
102
+ language: z.string().describe(
103
+ "Language for localization.\n2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format."
104
+ ).optional().nullable()
105
+ }).describe("Language options.").optional()
106
+ });
107
+ var FindOrCreateLabelResponse = z.object({
108
+ label: z.object({
109
+ namespace: z.string().describe(
110
+ "Label namespace.\n\nLabels created by calling the Find Or Create Label method\nare automatically assigned to the `custom` namespace."
111
+ ).min(1).max(25).optional().nullable(),
112
+ namespaceDisplayName: z.string().describe(
113
+ "Display name for the namespace,\nused to organize the list of labels in the site dashboard."
114
+ ).min(1).max(180).optional().nullable(),
115
+ key: z.string().describe(
116
+ "Label key.\n\n`key` is generated when the label is created.\nIt can't be modified, even if `displayName` is updated."
117
+ ).min(1).max(80).optional(),
118
+ displayName: z.string().describe("Label display name shown in the dashboard.").min(1).max(180).optional(),
119
+ labelType: z.enum(["SYSTEM", "USER_DEFINED", "WIX_APP_DEFINED"]).describe("Label type indicating how the label was created.").optional(),
120
+ _createdDate: z.date().describe("Date and time the label was created.").optional().nullable(),
121
+ _updatedDate: z.date().describe("Date and time the label was last updated.").optional().nullable()
122
+ }).describe("Label that was found or created.").optional(),
123
+ newLabel: z.boolean().describe(
124
+ "Indicates whether the label was just created or already existed.\n\nReturns `true` if the label was just created."
125
+ ).optional()
126
+ });
127
+ var GetLabelRequest = z.object({
128
+ key: z.string().describe(
129
+ "Label key.\n\n`key` is generated when the label is created.\nIt can't be modified, even if `displayName` is updated."
130
+ ).min(1).max(80),
131
+ options: z.object({
132
+ language: z.string().describe(
133
+ "Language for localization.\n2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format."
134
+ ).optional().nullable()
135
+ }).describe("Language options.").optional()
136
+ });
137
+ var GetLabelResponse = z.object({
138
+ namespace: z.string().describe(
139
+ "Label namespace.\n\nLabels created by calling the Find Or Create Label method\nare automatically assigned to the `custom` namespace."
140
+ ).min(1).max(25).optional().nullable(),
141
+ namespaceDisplayName: z.string().describe(
142
+ "Display name for the namespace,\nused to organize the list of labels in the site dashboard."
143
+ ).min(1).max(180).optional().nullable(),
144
+ key: z.string().describe(
145
+ "Label key.\n\n`key` is generated when the label is created.\nIt can't be modified, even if `displayName` is updated."
146
+ ).min(1).max(80).optional(),
147
+ displayName: z.string().describe("Label display name shown in the dashboard.").min(1).max(180).optional(),
148
+ labelType: z.enum(["SYSTEM", "USER_DEFINED", "WIX_APP_DEFINED"]).describe("Label type indicating how the label was created.").optional(),
149
+ _createdDate: z.date().describe("Date and time the label was created.").optional().nullable(),
150
+ _updatedDate: z.date().describe("Date and time the label was last updated.").optional().nullable()
151
+ });
152
+ var RenameLabelRequest = z.object({
153
+ key: z.string().describe(
154
+ "Label key.\n\n`key` is generated when the label is created.\nIt can't be modified, even if `displayName` is updated."
155
+ ).min(1).max(80),
156
+ label: z.object({
157
+ namespace: z.string().describe(
158
+ "Label namespace.\n\nLabels created by calling the Find Or Create Label method\nare automatically assigned to the `custom` namespace."
159
+ ).min(1).max(25).optional().nullable(),
160
+ namespaceDisplayName: z.string().describe(
161
+ "Display name for the namespace,\nused to organize the list of labels in the site dashboard."
162
+ ).min(1).max(180).optional().nullable(),
163
+ key: z.string().describe(
164
+ "Label key.\n\n`key` is generated when the label is created.\nIt can't be modified, even if `displayName` is updated."
165
+ ).min(1).max(80).optional(),
166
+ displayName: z.string().describe("Label display name shown in the dashboard.").min(1).max(180),
167
+ labelType: z.enum(["SYSTEM", "USER_DEFINED", "WIX_APP_DEFINED"]).optional(),
168
+ _createdDate: z.date().describe("Date and time the label was created.").optional().nullable(),
169
+ _updatedDate: z.date().describe("Date and time the label was last updated.").optional().nullable()
170
+ }).describe("Label to rename. "),
171
+ options: z.object({
172
+ language: z.string().describe(
173
+ "Language for localization.\n2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format."
174
+ ).optional().nullable()
175
+ }).describe("Language options.").optional()
176
+ });
177
+ var RenameLabelResponse = z.object({
178
+ namespace: z.string().describe(
179
+ "Label namespace.\n\nLabels created by calling the Find Or Create Label method\nare automatically assigned to the `custom` namespace."
180
+ ).min(1).max(25).optional().nullable(),
181
+ namespaceDisplayName: z.string().describe(
182
+ "Display name for the namespace,\nused to organize the list of labels in the site dashboard."
183
+ ).min(1).max(180).optional().nullable(),
184
+ key: z.string().describe(
185
+ "Label key.\n\n`key` is generated when the label is created.\nIt can't be modified, even if `displayName` is updated."
186
+ ).min(1).max(80).optional(),
187
+ displayName: z.string().describe("Label display name shown in the dashboard.").min(1).max(180).optional(),
188
+ labelType: z.enum(["SYSTEM", "USER_DEFINED", "WIX_APP_DEFINED"]).describe("Label type indicating how the label was created.").optional(),
189
+ _createdDate: z.date().describe("Date and time the label was created.").optional().nullable(),
190
+ _updatedDate: z.date().describe("Date and time the label was last updated.").optional().nullable()
191
+ });
192
+ var DeleteLabelRequest = z.object({
193
+ key: z.string().describe("Label key to delete.").min(1).max(80)
194
+ });
195
+ var DeleteLabelResponse = z.object({});
196
+ var QueryLabelsRequest = z.object({
197
+ query: z.object({
198
+ filter: z.object({
199
+ key: z.object({
200
+ $eq: z.string(),
201
+ $in: z.array(z.string()),
202
+ $ne: z.string()
203
+ }).partial().strict().optional(),
204
+ displayName: z.object({
205
+ $eq: z.string(),
206
+ $in: z.array(z.string()),
207
+ $ne: z.string(),
208
+ $startsWith: z.string()
209
+ }).partial().strict().optional(),
210
+ _createdDate: z.object({
211
+ $eq: z.string(),
212
+ $gt: z.string(),
213
+ $gte: z.string(),
214
+ $lt: z.string(),
215
+ $lte: z.string(),
216
+ $ne: z.string()
217
+ }).partial().strict().optional(),
218
+ _updatedDate: z.object({
219
+ $eq: z.string(),
220
+ $gt: z.string(),
221
+ $gte: z.string(),
222
+ $lt: z.string(),
223
+ $lte: z.string(),
224
+ $ne: z.string()
225
+ }).partial().strict().optional(),
226
+ namespace: z.object({ $eq: z.string(), $ne: z.string() }).partial().strict().optional(),
227
+ labelType: z.union([
228
+ z.string(),
229
+ z.object({ $eq: z.string() }).partial().strict()
230
+ ]).optional(),
231
+ $and: z.array(z.any()).optional(),
232
+ $or: z.array(z.any()).optional(),
233
+ $not: z.any().optional()
234
+ }).strict().optional(),
235
+ sort: z.array(
236
+ z.object({
237
+ fieldName: z.enum(["displayName", "_createdDate", "_updatedDate"]).optional(),
238
+ order: z.enum(["ASC", "DESC"]).optional()
239
+ })
240
+ ).optional()
241
+ }).catchall(z.any()).describe("Query options."),
242
+ options: z.object({
243
+ language: z.string().describe(
244
+ "Language for localization.\n2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format."
245
+ ).optional().nullable()
246
+ }).describe("Language options.").optional()
247
+ });
248
+ var QueryLabelsResponse = z.object({
249
+ labels: z.array(
250
+ z.object({
251
+ namespace: z.string().describe(
252
+ "Label namespace.\n\nLabels created by calling the Find Or Create Label method\nare automatically assigned to the `custom` namespace."
253
+ ).min(1).max(25).optional().nullable(),
254
+ namespaceDisplayName: z.string().describe(
255
+ "Display name for the namespace,\nused to organize the list of labels in the site dashboard."
256
+ ).min(1).max(180).optional().nullable(),
257
+ key: z.string().describe(
258
+ "Label key.\n\n`key` is generated when the label is created.\nIt can't be modified, even if `displayName` is updated."
259
+ ).min(1).max(80).optional(),
260
+ displayName: z.string().describe("Label display name shown in the dashboard.").min(1).max(180).optional(),
261
+ labelType: z.enum(["SYSTEM", "USER_DEFINED", "WIX_APP_DEFINED"]).describe("Label type indicating how the label was created.").optional(),
262
+ _createdDate: z.date().describe("Date and time the label was created.").optional().nullable(),
263
+ _updatedDate: z.date().describe("Date and time the label was last updated.").optional().nullable()
264
+ })
265
+ ).optional(),
266
+ pagingMetadata: z.object({
267
+ count: z.number().int().describe("Number of items returned.").optional().nullable(),
268
+ offset: z.number().int().describe("Requested offset.").optional().nullable(),
269
+ total: z.number().int().describe("Number of items that matched the query.").optional().nullable(),
270
+ tooManyToCount: z.boolean().describe(
271
+ "Indicates if `total` calculation timed out before the response was sent.\nTypically this happens if there is a large set of results."
272
+ ).optional().nullable()
273
+ }).describe("Details on the paged set of results returned.").optional()
274
+ });
275
+ // Annotate the CommonJS export names for ESM import in node:
276
+ 0 && (module.exports = {
277
+ DeleteLabelRequest,
278
+ DeleteLabelResponse,
279
+ FindOrCreateLabelRequest,
280
+ FindOrCreateLabelResponse,
281
+ GetLabelRequest,
282
+ GetLabelResponse,
283
+ ListLabelsRequest,
284
+ ListLabelsResponse,
285
+ QueryLabelsRequest,
286
+ QueryLabelsResponse,
287
+ RenameLabelRequest,
288
+ RenameLabelResponse
289
+ });
290
+ //# sourceMappingURL=schemas.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../schemas.ts","../../src/contacts-v4-label-labels.schemas.ts"],"sourcesContent":["export * from './src/contacts-v4-label-labels.schemas.js';\n","import * as z from 'zod';\n\nexport const ListLabelsRequest = z.object({\n options: z\n .object({\n labelType: z\n .enum(['SYSTEM', 'USER_DEFINED', 'WIX_APP_DEFINED'])\n .optional(),\n namespace: z\n .string()\n .describe('Filter for labels in the specified namespace.')\n .min(3)\n .max(25)\n .optional()\n .nullable(),\n startsWith: z\n .string()\n .describe(\n 'Filter for labels where `displayName` starts with the specified case-sensitive string.'\n )\n .min(1)\n .max(180)\n .optional()\n .nullable(),\n sort: z\n .object({\n fieldName: z\n .string()\n .describe('Name of the field to sort by.')\n .max(3000)\n .optional(),\n order: z.enum(['ASC', 'DESC']).optional(),\n })\n .describe('Sorting options.')\n .optional(),\n paging: z\n .object({\n limit: z\n .number()\n .int()\n .describe(\n 'Number of items to return.\\n\\nDefaults to `1000`. <br>\\nMaximum: `2000`.'\n )\n .min(0)\n .optional()\n .nullable(),\n offset: z\n .number()\n .int()\n .describe('Number of items to skip in the current sort order.')\n .min(0)\n .optional()\n .nullable(),\n })\n .describe('Paging options.')\n .optional(),\n language: z.string().optional().nullable(),\n })\n .optional(),\n});\nexport const ListLabelsResponse = z.object({\n labels: z\n .array(\n z.object({\n namespace: z\n .string()\n .describe(\n 'Label namespace.\\n\\nLabels created by calling the Find Or Create Label method\\nare automatically assigned to the `custom` namespace.'\n )\n .min(1)\n .max(25)\n .optional()\n .nullable(),\n namespaceDisplayName: z\n .string()\n .describe(\n 'Display name for the namespace,\\nused to organize the list of labels in the site dashboard.'\n )\n .min(1)\n .max(180)\n .optional()\n .nullable(),\n key: z\n .string()\n .describe(\n \"Label key.\\n\\n`key` is generated when the label is created.\\nIt can't be modified, even if `displayName` is updated.\"\n )\n .min(1)\n .max(80)\n .optional(),\n displayName: z\n .string()\n .describe('Label display name shown in the dashboard.')\n .min(1)\n .max(180)\n .optional(),\n labelType: z\n .enum(['SYSTEM', 'USER_DEFINED', 'WIX_APP_DEFINED'])\n .describe('Label type indicating how the label was created.')\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the label was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the label was last updated.')\n .optional()\n .nullable(),\n })\n )\n .optional(),\n metadata: z\n .object({\n count: z\n .number()\n .int()\n .describe('Number of items returned.')\n .optional()\n .nullable(),\n offset: z\n .number()\n .int()\n .describe('Requested offset.')\n .optional()\n .nullable(),\n total: z\n .number()\n .int()\n .describe('Number of items that matched the query.')\n .optional()\n .nullable(),\n tooManyToCount: z\n .boolean()\n .describe(\n 'Indicates if `total` calculation timed out before the response was sent.\\nTypically this happens if there is a large set of results.'\n )\n .optional()\n .nullable(),\n })\n .describe('Metadata for the page of results.')\n .optional(),\n});\nexport const FindOrCreateLabelRequest = z.object({\n displayName: z\n .string()\n .describe(\n 'Display name to retrieve or create.\\n\\nIf an existing label is an exact match\\nfor the specified display name,\\nthe existing label is returned.\\nIf not, a new label is created and returned.'\n )\n .min(1)\n .max(180),\n options: z\n .object({\n language: z\n .string()\n .describe(\n 'Language for localization.\\n2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format.'\n )\n .optional()\n .nullable(),\n })\n .describe('Language options.')\n .optional(),\n});\nexport const FindOrCreateLabelResponse = z.object({\n label: z\n .object({\n namespace: z\n .string()\n .describe(\n 'Label namespace.\\n\\nLabels created by calling the Find Or Create Label method\\nare automatically assigned to the `custom` namespace.'\n )\n .min(1)\n .max(25)\n .optional()\n .nullable(),\n namespaceDisplayName: z\n .string()\n .describe(\n 'Display name for the namespace,\\nused to organize the list of labels in the site dashboard.'\n )\n .min(1)\n .max(180)\n .optional()\n .nullable(),\n key: z\n .string()\n .describe(\n \"Label key.\\n\\n`key` is generated when the label is created.\\nIt can't be modified, even if `displayName` is updated.\"\n )\n .min(1)\n .max(80)\n .optional(),\n displayName: z\n .string()\n .describe('Label display name shown in the dashboard.')\n .min(1)\n .max(180)\n .optional(),\n labelType: z\n .enum(['SYSTEM', 'USER_DEFINED', 'WIX_APP_DEFINED'])\n .describe('Label type indicating how the label was created.')\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the label was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the label was last updated.')\n .optional()\n .nullable(),\n })\n .describe('Label that was found or created.')\n .optional(),\n newLabel: z\n .boolean()\n .describe(\n 'Indicates whether the label was just created or already existed.\\n\\nReturns `true` if the label was just created.'\n )\n .optional(),\n});\nexport const GetLabelRequest = z.object({\n key: z\n .string()\n .describe(\n \"Label key.\\n\\n`key` is generated when the label is created.\\nIt can't be modified, even if `displayName` is updated.\"\n )\n .min(1)\n .max(80),\n options: z\n .object({\n language: z\n .string()\n .describe(\n 'Language for localization.\\n2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format.'\n )\n .optional()\n .nullable(),\n })\n .describe('Language options.')\n .optional(),\n});\nexport const GetLabelResponse = z.object({\n namespace: z\n .string()\n .describe(\n 'Label namespace.\\n\\nLabels created by calling the Find Or Create Label method\\nare automatically assigned to the `custom` namespace.'\n )\n .min(1)\n .max(25)\n .optional()\n .nullable(),\n namespaceDisplayName: z\n .string()\n .describe(\n 'Display name for the namespace,\\nused to organize the list of labels in the site dashboard.'\n )\n .min(1)\n .max(180)\n .optional()\n .nullable(),\n key: z\n .string()\n .describe(\n \"Label key.\\n\\n`key` is generated when the label is created.\\nIt can't be modified, even if `displayName` is updated.\"\n )\n .min(1)\n .max(80)\n .optional(),\n displayName: z\n .string()\n .describe('Label display name shown in the dashboard.')\n .min(1)\n .max(180)\n .optional(),\n labelType: z\n .enum(['SYSTEM', 'USER_DEFINED', 'WIX_APP_DEFINED'])\n .describe('Label type indicating how the label was created.')\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the label was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the label was last updated.')\n .optional()\n .nullable(),\n});\nexport const RenameLabelRequest = z.object({\n key: z\n .string()\n .describe(\n \"Label key.\\n\\n`key` is generated when the label is created.\\nIt can't be modified, even if `displayName` is updated.\"\n )\n .min(1)\n .max(80),\n label: z\n .object({\n namespace: z\n .string()\n .describe(\n 'Label namespace.\\n\\nLabels created by calling the Find Or Create Label method\\nare automatically assigned to the `custom` namespace.'\n )\n .min(1)\n .max(25)\n .optional()\n .nullable(),\n namespaceDisplayName: z\n .string()\n .describe(\n 'Display name for the namespace,\\nused to organize the list of labels in the site dashboard.'\n )\n .min(1)\n .max(180)\n .optional()\n .nullable(),\n key: z\n .string()\n .describe(\n \"Label key.\\n\\n`key` is generated when the label is created.\\nIt can't be modified, even if `displayName` is updated.\"\n )\n .min(1)\n .max(80)\n .optional(),\n displayName: z\n .string()\n .describe('Label display name shown in the dashboard.')\n .min(1)\n .max(180),\n labelType: z\n .enum(['SYSTEM', 'USER_DEFINED', 'WIX_APP_DEFINED'])\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the label was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the label was last updated.')\n .optional()\n .nullable(),\n })\n .describe('Label to rename. '),\n options: z\n .object({\n language: z\n .string()\n .describe(\n 'Language for localization.\\n2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format.'\n )\n .optional()\n .nullable(),\n })\n .describe('Language options.')\n .optional(),\n});\nexport const RenameLabelResponse = z.object({\n namespace: z\n .string()\n .describe(\n 'Label namespace.\\n\\nLabels created by calling the Find Or Create Label method\\nare automatically assigned to the `custom` namespace.'\n )\n .min(1)\n .max(25)\n .optional()\n .nullable(),\n namespaceDisplayName: z\n .string()\n .describe(\n 'Display name for the namespace,\\nused to organize the list of labels in the site dashboard.'\n )\n .min(1)\n .max(180)\n .optional()\n .nullable(),\n key: z\n .string()\n .describe(\n \"Label key.\\n\\n`key` is generated when the label is created.\\nIt can't be modified, even if `displayName` is updated.\"\n )\n .min(1)\n .max(80)\n .optional(),\n displayName: z\n .string()\n .describe('Label display name shown in the dashboard.')\n .min(1)\n .max(180)\n .optional(),\n labelType: z\n .enum(['SYSTEM', 'USER_DEFINED', 'WIX_APP_DEFINED'])\n .describe('Label type indicating how the label was created.')\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the label was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the label was last updated.')\n .optional()\n .nullable(),\n});\nexport const DeleteLabelRequest = z.object({\n key: z.string().describe('Label key to delete.').min(1).max(80),\n});\nexport const DeleteLabelResponse = z.object({});\nexport const QueryLabelsRequest = z.object({\n query: z\n .object({\n filter: z\n .object({\n key: z\n .object({\n $eq: z.string(),\n $in: z.array(z.string()),\n $ne: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n displayName: z\n .object({\n $eq: z.string(),\n $in: z.array(z.string()),\n $ne: z.string(),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n _createdDate: z\n .object({\n $eq: z.string(),\n $gt: z.string(),\n $gte: z.string(),\n $lt: z.string(),\n $lte: z.string(),\n $ne: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n _updatedDate: z\n .object({\n $eq: z.string(),\n $gt: z.string(),\n $gte: z.string(),\n $lt: z.string(),\n $lte: z.string(),\n $ne: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n namespace: z\n .object({ $eq: z.string(), $ne: z.string() })\n .partial()\n .strict()\n .optional(),\n labelType: z\n .union([\n z.string(),\n z.object({ $eq: z.string() }).partial().strict(),\n ])\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\n .array(\n z.object({\n fieldName: z\n .enum(['displayName', '_createdDate', '_updatedDate'])\n .optional(),\n order: z.enum(['ASC', 'DESC']).optional(),\n })\n )\n .optional(),\n })\n .catchall(z.any())\n .describe('Query options.'),\n options: z\n .object({\n language: z\n .string()\n .describe(\n 'Language for localization.\\n2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format.'\n )\n .optional()\n .nullable(),\n })\n .describe('Language options.')\n .optional(),\n});\nexport const QueryLabelsResponse = z.object({\n labels: z\n .array(\n z.object({\n namespace: z\n .string()\n .describe(\n 'Label namespace.\\n\\nLabels created by calling the Find Or Create Label method\\nare automatically assigned to the `custom` namespace.'\n )\n .min(1)\n .max(25)\n .optional()\n .nullable(),\n namespaceDisplayName: z\n .string()\n .describe(\n 'Display name for the namespace,\\nused to organize the list of labels in the site dashboard.'\n )\n .min(1)\n .max(180)\n .optional()\n .nullable(),\n key: z\n .string()\n .describe(\n \"Label key.\\n\\n`key` is generated when the label is created.\\nIt can't be modified, even if `displayName` is updated.\"\n )\n .min(1)\n .max(80)\n .optional(),\n displayName: z\n .string()\n .describe('Label display name shown in the dashboard.')\n .min(1)\n .max(180)\n .optional(),\n labelType: z\n .enum(['SYSTEM', 'USER_DEFINED', 'WIX_APP_DEFINED'])\n .describe('Label type indicating how the label was created.')\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the label was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the label was last updated.')\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.')\n .optional()\n .nullable(),\n offset: z\n .number()\n .int()\n .describe('Requested offset.')\n .optional()\n .nullable(),\n total: z\n .number()\n .int()\n .describe('Number of items that matched the query.')\n .optional()\n .nullable(),\n tooManyToCount: z\n .boolean()\n .describe(\n 'Indicates if `total` calculation timed out before the response was sent.\\nTypically this happens if there is a large set of results.'\n )\n .optional()\n .nullable(),\n })\n .describe('Details on the paged set of results returned.')\n .optional(),\n});\n"],"mappings":"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","names":[]}