@wix/auto_sdk_crm_pipelines 1.0.3 → 1.0.4
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.
- package/package.json +4 -11
- package/build/cjs/schemas.d.ts +0 -279
- package/build/cjs/schemas.js +0 -512
- package/build/cjs/schemas.js.map +0 -1
- package/build/es/schemas.d.mts +0 -279
- package/build/es/schemas.mjs +0 -462
- package/build/es/schemas.mjs.map +0 -1
- package/build/internal/cjs/schemas.d.ts +0 -279
- package/build/internal/cjs/schemas.js +0 -512
- package/build/internal/cjs/schemas.js.map +0 -1
- package/build/internal/es/schemas.d.mts +0 -279
- package/build/internal/es/schemas.mjs +0 -462
- package/build/internal/es/schemas.mjs.map +0 -1
- package/schemas/package.json +0 -3
|
@@ -1,512 +0,0 @@
|
|
|
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
|
-
BulkUpdatePipelineTagsByFilterRequest: () => BulkUpdatePipelineTagsByFilterRequest,
|
|
34
|
-
BulkUpdatePipelineTagsByFilterResponse: () => BulkUpdatePipelineTagsByFilterResponse,
|
|
35
|
-
BulkUpdatePipelineTagsRequest: () => BulkUpdatePipelineTagsRequest,
|
|
36
|
-
BulkUpdatePipelineTagsResponse: () => BulkUpdatePipelineTagsResponse,
|
|
37
|
-
CreatePipelineRequest: () => CreatePipelineRequest,
|
|
38
|
-
CreatePipelineResponse: () => CreatePipelineResponse,
|
|
39
|
-
DeletePipelineRequest: () => DeletePipelineRequest,
|
|
40
|
-
DeletePipelineResponse: () => DeletePipelineResponse,
|
|
41
|
-
GetPipelineRequest: () => GetPipelineRequest,
|
|
42
|
-
GetPipelineResponse: () => GetPipelineResponse,
|
|
43
|
-
QueryPipelinesRequest: () => QueryPipelinesRequest,
|
|
44
|
-
QueryPipelinesResponse: () => QueryPipelinesResponse,
|
|
45
|
-
UpdatePipelineRequest: () => UpdatePipelineRequest,
|
|
46
|
-
UpdatePipelineResponse: () => UpdatePipelineResponse
|
|
47
|
-
});
|
|
48
|
-
module.exports = __toCommonJS(schemas_exports);
|
|
49
|
-
|
|
50
|
-
// src/crm-pipelines-v1-pipeline-pipelines.schemas.ts
|
|
51
|
-
var z = __toESM(require("zod"));
|
|
52
|
-
var CreatePipelineRequest = z.object({
|
|
53
|
-
pipeline: z.object({
|
|
54
|
-
_id: z.string().describe("Pipeline ID.").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
|
-
).optional().nullable(),
|
|
58
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
59
|
-
"Revision number, which increments by 1 each time the pipeline is updated.\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\n\nIgnored when creating a pipeline."
|
|
60
|
-
).optional().nullable(),
|
|
61
|
-
_createdDate: z.date().describe(
|
|
62
|
-
"Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
63
|
-
).optional().nullable(),
|
|
64
|
-
_updatedDate: z.date().describe(
|
|
65
|
-
"Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
66
|
-
).optional().nullable(),
|
|
67
|
-
name: z.string().describe("Pipeline name.").min(1).max(60),
|
|
68
|
-
currency: z.string().describe(
|
|
69
|
-
"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\n\nDefault: Based on the site's currency settings."
|
|
70
|
-
).optional().nullable(),
|
|
71
|
-
stages: z.array(
|
|
72
|
-
z.object({
|
|
73
|
-
_id: z.string().describe("Stage ID.").regex(
|
|
74
|
-
/^[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}$/,
|
|
75
|
-
"Must be a valid GUID"
|
|
76
|
-
).optional().nullable(),
|
|
77
|
-
name: z.string().describe("Stage name.").min(1).max(40),
|
|
78
|
-
staleDurationInHours: z.number().int().describe(
|
|
79
|
-
"The duration (in hours) a card can remain in this stage before becoming stale.\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays."
|
|
80
|
-
).min(1).max(1e5).optional().nullable()
|
|
81
|
-
})
|
|
82
|
-
).min(1).max(30),
|
|
83
|
-
doneStage: z.object({
|
|
84
|
-
_id: z.string().describe("Done stage ID.").regex(
|
|
85
|
-
/^[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}$/,
|
|
86
|
-
"Must be a valid GUID"
|
|
87
|
-
).optional().nullable(),
|
|
88
|
-
name: z.string().describe("Done stage name.").min(1).max(40),
|
|
89
|
-
allowedOutcomes: z.array(z.enum(["NONE", "WON", "LOST"])).min(1).max(3)
|
|
90
|
-
}).describe(
|
|
91
|
-
"The final pipeline stage where cards receive a final outcome."
|
|
92
|
-
),
|
|
93
|
-
extendedFields: z.object({
|
|
94
|
-
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
95
|
-
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
96
|
-
).optional()
|
|
97
|
-
}).describe("Extended fields data.").optional(),
|
|
98
|
-
tags: z.object({
|
|
99
|
-
privateTags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
100
|
-
"Tags that are exposed to anyone with access to the entity, including site members and visitors."
|
|
101
|
-
).optional()
|
|
102
|
-
}).describe("Tags for organizing and categorizing pipelines.").optional()
|
|
103
|
-
}).describe("Pipeline to create.")
|
|
104
|
-
});
|
|
105
|
-
var CreatePipelineResponse = z.object({
|
|
106
|
-
_id: z.string().describe("Pipeline ID.").regex(
|
|
107
|
-
/^[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}$/,
|
|
108
|
-
"Must be a valid GUID"
|
|
109
|
-
).optional().nullable(),
|
|
110
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
111
|
-
"Revision number, which increments by 1 each time the pipeline is updated.\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\n\nIgnored when creating a pipeline."
|
|
112
|
-
).optional().nullable(),
|
|
113
|
-
_createdDate: z.date().describe(
|
|
114
|
-
"Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
115
|
-
).optional().nullable(),
|
|
116
|
-
_updatedDate: z.date().describe(
|
|
117
|
-
"Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
118
|
-
).optional().nullable(),
|
|
119
|
-
name: z.string().describe("Pipeline name.").min(1).max(60).optional().nullable(),
|
|
120
|
-
currency: z.string().describe(
|
|
121
|
-
"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\n\nDefault: Based on the site's currency settings."
|
|
122
|
-
).optional().nullable(),
|
|
123
|
-
stages: z.array(
|
|
124
|
-
z.object({
|
|
125
|
-
_id: z.string().describe("Stage ID.").regex(
|
|
126
|
-
/^[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}$/,
|
|
127
|
-
"Must be a valid GUID"
|
|
128
|
-
).optional().nullable(),
|
|
129
|
-
name: z.string().describe("Stage name.").min(1).max(40).optional().nullable(),
|
|
130
|
-
staleDurationInHours: z.number().int().describe(
|
|
131
|
-
"The duration (in hours) a card can remain in this stage before becoming stale.\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays."
|
|
132
|
-
).min(1).max(1e5).optional().nullable()
|
|
133
|
-
})
|
|
134
|
-
).min(1).max(30).optional(),
|
|
135
|
-
doneStage: z.object({
|
|
136
|
-
_id: z.string().describe("Done stage ID.").regex(
|
|
137
|
-
/^[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}$/,
|
|
138
|
-
"Must be a valid GUID"
|
|
139
|
-
).optional().nullable(),
|
|
140
|
-
name: z.string().describe("Done stage name.").min(1).max(40).optional().nullable(),
|
|
141
|
-
allowedOutcomes: z.array(z.enum(["NONE", "WON", "LOST"])).min(1).max(3).optional()
|
|
142
|
-
}).describe("The final pipeline stage where cards receive a final outcome.").optional(),
|
|
143
|
-
extendedFields: z.object({
|
|
144
|
-
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
145
|
-
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
146
|
-
).optional()
|
|
147
|
-
}).describe("Extended fields data.").optional(),
|
|
148
|
-
tags: z.object({
|
|
149
|
-
privateTags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
150
|
-
"Tags that are exposed to anyone with access to the entity, including site members and visitors."
|
|
151
|
-
).optional()
|
|
152
|
-
}).describe("Tags for organizing and categorizing pipelines.").optional()
|
|
153
|
-
});
|
|
154
|
-
var GetPipelineRequest = z.object({
|
|
155
|
-
pipelineId: z.string().describe("Pipeline ID to retrieve.").regex(
|
|
156
|
-
/^[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}$/,
|
|
157
|
-
"Must be a valid GUID"
|
|
158
|
-
)
|
|
159
|
-
});
|
|
160
|
-
var GetPipelineResponse = z.object({
|
|
161
|
-
_id: z.string().describe("Pipeline ID.").regex(
|
|
162
|
-
/^[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}$/,
|
|
163
|
-
"Must be a valid GUID"
|
|
164
|
-
).optional().nullable(),
|
|
165
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
166
|
-
"Revision number, which increments by 1 each time the pipeline is updated.\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\n\nIgnored when creating a pipeline."
|
|
167
|
-
).optional().nullable(),
|
|
168
|
-
_createdDate: z.date().describe(
|
|
169
|
-
"Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
170
|
-
).optional().nullable(),
|
|
171
|
-
_updatedDate: z.date().describe(
|
|
172
|
-
"Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
173
|
-
).optional().nullable(),
|
|
174
|
-
name: z.string().describe("Pipeline name.").min(1).max(60).optional().nullable(),
|
|
175
|
-
currency: z.string().describe(
|
|
176
|
-
"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\n\nDefault: Based on the site's currency settings."
|
|
177
|
-
).optional().nullable(),
|
|
178
|
-
stages: z.array(
|
|
179
|
-
z.object({
|
|
180
|
-
_id: z.string().describe("Stage ID.").regex(
|
|
181
|
-
/^[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}$/,
|
|
182
|
-
"Must be a valid GUID"
|
|
183
|
-
).optional().nullable(),
|
|
184
|
-
name: z.string().describe("Stage name.").min(1).max(40).optional().nullable(),
|
|
185
|
-
staleDurationInHours: z.number().int().describe(
|
|
186
|
-
"The duration (in hours) a card can remain in this stage before becoming stale.\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays."
|
|
187
|
-
).min(1).max(1e5).optional().nullable()
|
|
188
|
-
})
|
|
189
|
-
).min(1).max(30).optional(),
|
|
190
|
-
doneStage: z.object({
|
|
191
|
-
_id: z.string().describe("Done stage ID.").regex(
|
|
192
|
-
/^[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}$/,
|
|
193
|
-
"Must be a valid GUID"
|
|
194
|
-
).optional().nullable(),
|
|
195
|
-
name: z.string().describe("Done stage name.").min(1).max(40).optional().nullable(),
|
|
196
|
-
allowedOutcomes: z.array(z.enum(["NONE", "WON", "LOST"])).min(1).max(3).optional()
|
|
197
|
-
}).describe("The final pipeline stage where cards receive a final outcome.").optional(),
|
|
198
|
-
extendedFields: z.object({
|
|
199
|
-
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
200
|
-
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
201
|
-
).optional()
|
|
202
|
-
}).describe("Extended fields data.").optional(),
|
|
203
|
-
tags: z.object({
|
|
204
|
-
privateTags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
205
|
-
"Tags that are exposed to anyone with access to the entity, including site members and visitors."
|
|
206
|
-
).optional()
|
|
207
|
-
}).describe("Tags for organizing and categorizing pipelines.").optional()
|
|
208
|
-
});
|
|
209
|
-
var UpdatePipelineRequest = z.object({
|
|
210
|
-
_id: z.string().describe("Pipeline ID.").regex(
|
|
211
|
-
/^[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}$/,
|
|
212
|
-
"Must be a valid GUID"
|
|
213
|
-
),
|
|
214
|
-
pipeline: z.object({
|
|
215
|
-
_id: z.string().describe("Pipeline ID.").regex(
|
|
216
|
-
/^[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}$/,
|
|
217
|
-
"Must be a valid GUID"
|
|
218
|
-
).optional().nullable(),
|
|
219
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
220
|
-
"Revision number, which increments by 1 each time the pipeline is updated.\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\n\nIgnored when creating a pipeline."
|
|
221
|
-
),
|
|
222
|
-
_createdDate: z.date().describe(
|
|
223
|
-
"Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
224
|
-
).optional().nullable(),
|
|
225
|
-
_updatedDate: z.date().describe(
|
|
226
|
-
"Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
227
|
-
).optional().nullable(),
|
|
228
|
-
name: z.string().describe("Pipeline name.").min(1).max(60).optional().nullable(),
|
|
229
|
-
currency: z.string().describe(
|
|
230
|
-
"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\n\nDefault: Based on the site's currency settings."
|
|
231
|
-
).optional().nullable(),
|
|
232
|
-
stages: z.array(
|
|
233
|
-
z.object({
|
|
234
|
-
_id: z.string().describe("Stage ID.").regex(
|
|
235
|
-
/^[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}$/,
|
|
236
|
-
"Must be a valid GUID"
|
|
237
|
-
).optional().nullable(),
|
|
238
|
-
name: z.string().describe("Stage name.").min(1).max(40).optional().nullable(),
|
|
239
|
-
staleDurationInHours: z.number().int().describe(
|
|
240
|
-
"The duration (in hours) a card can remain in this stage before becoming stale.\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays."
|
|
241
|
-
).min(1).max(1e5).optional().nullable()
|
|
242
|
-
})
|
|
243
|
-
).min(1).max(30).optional(),
|
|
244
|
-
doneStage: z.object({
|
|
245
|
-
_id: z.string().describe("Done stage ID.").regex(
|
|
246
|
-
/^[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}$/,
|
|
247
|
-
"Must be a valid GUID"
|
|
248
|
-
).optional().nullable(),
|
|
249
|
-
name: z.string().describe("Done stage name.").min(1).max(40).optional().nullable(),
|
|
250
|
-
allowedOutcomes: z.array(z.enum(["NONE", "WON", "LOST"])).min(1).max(3).optional()
|
|
251
|
-
}).describe(
|
|
252
|
-
"The final pipeline stage where cards receive a final outcome."
|
|
253
|
-
).optional(),
|
|
254
|
-
extendedFields: z.object({
|
|
255
|
-
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
256
|
-
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
257
|
-
).optional()
|
|
258
|
-
}).describe("Extended fields data.").optional(),
|
|
259
|
-
tags: z.object({
|
|
260
|
-
privateTags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
261
|
-
"Tags that are exposed to anyone with access to the entity, including site members and visitors."
|
|
262
|
-
).optional()
|
|
263
|
-
}).describe("Tags for organizing and categorizing pipelines.").optional()
|
|
264
|
-
}).describe("Pipeline to update, may be partial.")
|
|
265
|
-
});
|
|
266
|
-
var UpdatePipelineResponse = z.object({
|
|
267
|
-
_id: z.string().describe("Pipeline ID.").regex(
|
|
268
|
-
/^[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}$/,
|
|
269
|
-
"Must be a valid GUID"
|
|
270
|
-
).optional().nullable(),
|
|
271
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
272
|
-
"Revision number, which increments by 1 each time the pipeline is updated.\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\n\nIgnored when creating a pipeline."
|
|
273
|
-
).optional().nullable(),
|
|
274
|
-
_createdDate: z.date().describe(
|
|
275
|
-
"Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
276
|
-
).optional().nullable(),
|
|
277
|
-
_updatedDate: z.date().describe(
|
|
278
|
-
"Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
279
|
-
).optional().nullable(),
|
|
280
|
-
name: z.string().describe("Pipeline name.").min(1).max(60).optional().nullable(),
|
|
281
|
-
currency: z.string().describe(
|
|
282
|
-
"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\n\nDefault: Based on the site's currency settings."
|
|
283
|
-
).optional().nullable(),
|
|
284
|
-
stages: z.array(
|
|
285
|
-
z.object({
|
|
286
|
-
_id: z.string().describe("Stage ID.").regex(
|
|
287
|
-
/^[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}$/,
|
|
288
|
-
"Must be a valid GUID"
|
|
289
|
-
).optional().nullable(),
|
|
290
|
-
name: z.string().describe("Stage name.").min(1).max(40).optional().nullable(),
|
|
291
|
-
staleDurationInHours: z.number().int().describe(
|
|
292
|
-
"The duration (in hours) a card can remain in this stage before becoming stale.\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays."
|
|
293
|
-
).min(1).max(1e5).optional().nullable()
|
|
294
|
-
})
|
|
295
|
-
).min(1).max(30).optional(),
|
|
296
|
-
doneStage: z.object({
|
|
297
|
-
_id: z.string().describe("Done stage ID.").regex(
|
|
298
|
-
/^[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}$/,
|
|
299
|
-
"Must be a valid GUID"
|
|
300
|
-
).optional().nullable(),
|
|
301
|
-
name: z.string().describe("Done stage name.").min(1).max(40).optional().nullable(),
|
|
302
|
-
allowedOutcomes: z.array(z.enum(["NONE", "WON", "LOST"])).min(1).max(3).optional()
|
|
303
|
-
}).describe("The final pipeline stage where cards receive a final outcome.").optional(),
|
|
304
|
-
extendedFields: z.object({
|
|
305
|
-
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
306
|
-
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
307
|
-
).optional()
|
|
308
|
-
}).describe("Extended fields data.").optional(),
|
|
309
|
-
tags: z.object({
|
|
310
|
-
privateTags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
311
|
-
"Tags that are exposed to anyone with access to the entity, including site members and visitors."
|
|
312
|
-
).optional()
|
|
313
|
-
}).describe("Tags for organizing and categorizing pipelines.").optional()
|
|
314
|
-
});
|
|
315
|
-
var DeletePipelineRequest = z.object({
|
|
316
|
-
pipelineId: z.string().describe("Pipeline ID.").regex(
|
|
317
|
-
/^[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}$/,
|
|
318
|
-
"Must be a valid GUID"
|
|
319
|
-
)
|
|
320
|
-
});
|
|
321
|
-
var DeletePipelineResponse = z.object({});
|
|
322
|
-
var QueryPipelinesRequest = z.object({
|
|
323
|
-
query: z.intersection(
|
|
324
|
-
z.object({
|
|
325
|
-
filter: z.record(z.string(), z.any()).describe(
|
|
326
|
-
"Filter object.\n\nLearn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section)."
|
|
327
|
-
).optional().nullable(),
|
|
328
|
-
sort: z.array(
|
|
329
|
-
z.object({
|
|
330
|
-
fieldName: z.string().describe("Name of the field to sort by.").max(512).optional(),
|
|
331
|
-
order: z.enum(["ASC", "DESC"]).optional()
|
|
332
|
-
})
|
|
333
|
-
).max(5).optional()
|
|
334
|
-
}),
|
|
335
|
-
z.xor([
|
|
336
|
-
z.object({ cursorPaging: z.never().optional() }),
|
|
337
|
-
z.object({
|
|
338
|
-
cursorPaging: z.object({
|
|
339
|
-
limit: z.number().int().describe("Maximum number of items to return.").min(0).max(100).optional().nullable(),
|
|
340
|
-
cursor: z.string().describe(
|
|
341
|
-
"Pointer to the next or previous page in the list of results.\n\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\nNot relevant for the first request."
|
|
342
|
-
).max(16e3).optional().nullable()
|
|
343
|
-
}).describe(
|
|
344
|
-
"Cursor paging options.\n\nLearn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging)."
|
|
345
|
-
)
|
|
346
|
-
})
|
|
347
|
-
])
|
|
348
|
-
).describe("Query options.")
|
|
349
|
-
});
|
|
350
|
-
var QueryPipelinesResponse = z.object({
|
|
351
|
-
pipelines: z.array(
|
|
352
|
-
z.object({
|
|
353
|
-
_id: z.string().describe("Pipeline ID.").regex(
|
|
354
|
-
/^[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}$/,
|
|
355
|
-
"Must be a valid GUID"
|
|
356
|
-
).optional().nullable(),
|
|
357
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
358
|
-
"Revision number, which increments by 1 each time the pipeline is updated.\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\n\nIgnored when creating a pipeline."
|
|
359
|
-
).optional().nullable(),
|
|
360
|
-
_createdDate: z.date().describe(
|
|
361
|
-
"Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
362
|
-
).optional().nullable(),
|
|
363
|
-
_updatedDate: z.date().describe(
|
|
364
|
-
"Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format."
|
|
365
|
-
).optional().nullable(),
|
|
366
|
-
name: z.string().describe("Pipeline name.").min(1).max(60).optional().nullable(),
|
|
367
|
-
currency: z.string().describe(
|
|
368
|
-
"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\n\nDefault: Based on the site's currency settings."
|
|
369
|
-
).optional().nullable(),
|
|
370
|
-
stages: z.array(
|
|
371
|
-
z.object({
|
|
372
|
-
_id: z.string().describe("Stage ID.").regex(
|
|
373
|
-
/^[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}$/,
|
|
374
|
-
"Must be a valid GUID"
|
|
375
|
-
).optional().nullable(),
|
|
376
|
-
name: z.string().describe("Stage name.").min(1).max(40).optional().nullable(),
|
|
377
|
-
staleDurationInHours: z.number().int().describe(
|
|
378
|
-
"The duration (in hours) a card can remain in this stage before becoming stale.\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays."
|
|
379
|
-
).min(1).max(1e5).optional().nullable()
|
|
380
|
-
})
|
|
381
|
-
).min(1).max(30).optional(),
|
|
382
|
-
doneStage: z.object({
|
|
383
|
-
_id: z.string().describe("Done stage ID.").regex(
|
|
384
|
-
/^[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}$/,
|
|
385
|
-
"Must be a valid GUID"
|
|
386
|
-
).optional().nullable(),
|
|
387
|
-
name: z.string().describe("Done stage name.").min(1).max(40).optional().nullable(),
|
|
388
|
-
allowedOutcomes: z.array(z.enum(["NONE", "WON", "LOST"])).min(1).max(3).optional()
|
|
389
|
-
}).describe(
|
|
390
|
-
"The final pipeline stage where cards receive a final outcome."
|
|
391
|
-
).optional(),
|
|
392
|
-
extendedFields: z.object({
|
|
393
|
-
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
394
|
-
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
395
|
-
).optional()
|
|
396
|
-
}).describe("Extended fields data.").optional(),
|
|
397
|
-
tags: z.object({
|
|
398
|
-
privateTags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
399
|
-
"Tags that are exposed to anyone with access to the entity, including site members and visitors."
|
|
400
|
-
).optional()
|
|
401
|
-
}).describe("Tags for organizing and categorizing pipelines.").optional()
|
|
402
|
-
})
|
|
403
|
-
).optional(),
|
|
404
|
-
pagingMetadata: z.object({
|
|
405
|
-
count: z.number().int().describe("Number of items returned in current page.").optional().nullable(),
|
|
406
|
-
cursors: z.object({
|
|
407
|
-
next: z.string().describe(
|
|
408
|
-
"Cursor string pointing to the next page in the list of results."
|
|
409
|
-
).max(16e3).optional().nullable(),
|
|
410
|
-
prev: z.string().describe(
|
|
411
|
-
"Cursor pointing to the previous page in the list of results."
|
|
412
|
-
).max(16e3).optional().nullable()
|
|
413
|
-
}).describe(
|
|
414
|
-
"Cursor strings that point to the next page, previous page, or both."
|
|
415
|
-
).optional(),
|
|
416
|
-
hasNext: z.boolean().describe(
|
|
417
|
-
"Whether there are more pages to retrieve following the current page.\n\n+ `true`: Another page of results can be retrieved.\n+ `false`: This is the last page."
|
|
418
|
-
).optional().nullable()
|
|
419
|
-
}).describe("Paging metadata.").optional()
|
|
420
|
-
});
|
|
421
|
-
var BulkUpdatePipelineTagsRequest = z.object({
|
|
422
|
-
pipelineIds: z.array(z.string()).min(1).max(100),
|
|
423
|
-
options: z.object({
|
|
424
|
-
assignTags: z.object({
|
|
425
|
-
privateTags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
426
|
-
"Tags that are exposed to anyone with access to the entity, including site members and visitors."
|
|
427
|
-
).optional()
|
|
428
|
-
}).describe("List of tags to assign.").optional(),
|
|
429
|
-
unassignTags: z.object({
|
|
430
|
-
privateTags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
431
|
-
"Tags that are exposed to anyone with access to the entity, including site members and visitors."
|
|
432
|
-
).optional()
|
|
433
|
-
}).describe("List of tags to unassign.").optional(),
|
|
434
|
-
returnEntity: z.boolean().describe(
|
|
435
|
-
"Whether to return the updated pipelines in the response.\n\nDefault: `false`"
|
|
436
|
-
).optional()
|
|
437
|
-
}).optional()
|
|
438
|
-
});
|
|
439
|
-
var BulkUpdatePipelineTagsResponse = z.object({
|
|
440
|
-
results: z.array(
|
|
441
|
-
z.object({
|
|
442
|
-
itemMetadata: z.object({
|
|
443
|
-
_id: z.string().describe(
|
|
444
|
-
"Item ID. Should always be available, unless it's impossible (for example, when failing to create an item)."
|
|
445
|
-
).regex(
|
|
446
|
-
/^[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}$/,
|
|
447
|
-
"Must be a valid GUID"
|
|
448
|
-
).optional().nullable(),
|
|
449
|
-
originalIndex: z.number().int().describe(
|
|
450
|
-
"Index of the item within the request array. Allows for correlation between request and response items."
|
|
451
|
-
).optional(),
|
|
452
|
-
success: z.boolean().describe(
|
|
453
|
-
"Whether the requested action was successful for this item. When `false`, the `error` field is populated."
|
|
454
|
-
).optional(),
|
|
455
|
-
error: z.object({
|
|
456
|
-
code: z.string().describe("Error code.").optional(),
|
|
457
|
-
description: z.string().describe("Description of the error.").optional(),
|
|
458
|
-
data: z.record(z.string(), z.any()).describe("Data related to the error.").optional().nullable()
|
|
459
|
-
}).describe("Details about the error in case of failure.").optional()
|
|
460
|
-
}).describe("Metadata about the individual updated pipeline.").optional()
|
|
461
|
-
})
|
|
462
|
-
).min(1).max(100).optional(),
|
|
463
|
-
bulkActionMetadata: z.object({
|
|
464
|
-
totalSuccesses: z.number().int().describe("Number of items that were successfully processed.").optional(),
|
|
465
|
-
totalFailures: z.number().int().describe("Number of items that couldn't be processed.").optional(),
|
|
466
|
-
undetailedFailures: z.number().int().describe(
|
|
467
|
-
"Number of failures without details because detailed failure threshold was exceeded."
|
|
468
|
-
).optional()
|
|
469
|
-
}).describe("Metadata about the bulk update.").optional()
|
|
470
|
-
});
|
|
471
|
-
var BulkUpdatePipelineTagsByFilterRequest = z.object({
|
|
472
|
-
filter: z.record(z.string(), z.any()).describe("Filter to select which pipelines to update."),
|
|
473
|
-
options: z.object({
|
|
474
|
-
assignTags: z.object({
|
|
475
|
-
privateTags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
476
|
-
"Tags that are exposed to anyone with access to the entity, including site members and visitors."
|
|
477
|
-
).optional()
|
|
478
|
-
}).describe("List of tags to assign.").optional(),
|
|
479
|
-
unassignTags: z.object({
|
|
480
|
-
privateTags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
481
|
-
"Tags that are exposed to anyone with access to the entity, including site members and visitors."
|
|
482
|
-
).optional()
|
|
483
|
-
}).describe("List of tags to unassign.").optional(),
|
|
484
|
-
returnEntity: z.boolean().describe(
|
|
485
|
-
"Whether to return the updated pipelines in the response.\n\nDefault: `false`"
|
|
486
|
-
).optional()
|
|
487
|
-
}).optional()
|
|
488
|
-
});
|
|
489
|
-
var BulkUpdatePipelineTagsByFilterResponse = z.object({
|
|
490
|
-
jobId: z.string().describe("Job ID for tracking the asynchronous tag updates.").regex(
|
|
491
|
-
/^[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}$/,
|
|
492
|
-
"Must be a valid GUID"
|
|
493
|
-
).optional()
|
|
494
|
-
});
|
|
495
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
496
|
-
0 && (module.exports = {
|
|
497
|
-
BulkUpdatePipelineTagsByFilterRequest,
|
|
498
|
-
BulkUpdatePipelineTagsByFilterResponse,
|
|
499
|
-
BulkUpdatePipelineTagsRequest,
|
|
500
|
-
BulkUpdatePipelineTagsResponse,
|
|
501
|
-
CreatePipelineRequest,
|
|
502
|
-
CreatePipelineResponse,
|
|
503
|
-
DeletePipelineRequest,
|
|
504
|
-
DeletePipelineResponse,
|
|
505
|
-
GetPipelineRequest,
|
|
506
|
-
GetPipelineResponse,
|
|
507
|
-
QueryPipelinesRequest,
|
|
508
|
-
QueryPipelinesResponse,
|
|
509
|
-
UpdatePipelineRequest,
|
|
510
|
-
UpdatePipelineResponse
|
|
511
|
-
});
|
|
512
|
-
//# sourceMappingURL=schemas.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../schemas.ts","../../../src/crm-pipelines-v1-pipeline-pipelines.schemas.ts"],"sourcesContent":["export * from './src/crm-pipelines-v1-pipeline-pipelines.schemas.js';\n","import * as z from 'zod';\n\nexport const CreatePipelineRequest = z.object({\n pipeline: z\n .object({\n _id: z\n .string()\n .describe('Pipeline 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 revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the pipeline is updated.\\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\\n\\nIgnored when creating a pipeline.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe(\n 'Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe(\n 'Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n name: z.string().describe('Pipeline name.').min(1).max(60),\n currency: z\n .string()\n .describe(\n \"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\\n\\nDefault: Based on the site's currency settings.\"\n )\n .optional()\n .nullable(),\n stages: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Stage 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 name: z.string().describe('Stage name.').min(1).max(40),\n staleDurationInHours: z\n .number()\n .int()\n .describe(\n \"The duration (in hours) a card can remain in this stage before becoming stale.\\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays.\"\n )\n .min(1)\n .max(100000)\n .optional()\n .nullable(),\n })\n )\n .min(1)\n .max(30),\n doneStage: z\n .object({\n _id: z\n .string()\n .describe('Done stage 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 name: z.string().describe('Done stage name.').min(1).max(40),\n allowedOutcomes: z\n .array(z.enum(['NONE', 'WON', 'LOST']))\n .min(1)\n .max(3),\n })\n .describe(\n 'The final pipeline stage where cards receive a final outcome.'\n ),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields data.')\n .optional(),\n tags: z\n .object({\n privateTags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone with access to the entity, including site members and visitors.'\n )\n .optional(),\n })\n .describe('Tags for organizing and categorizing pipelines.')\n .optional(),\n })\n .describe('Pipeline to create.'),\n});\nexport const CreatePipelineResponse = z.object({\n _id: z\n .string()\n .describe('Pipeline 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 revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the pipeline is updated.\\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\\n\\nIgnored when creating a pipeline.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe(\n 'Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe(\n 'Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Pipeline name.')\n .min(1)\n .max(60)\n .optional()\n .nullable(),\n currency: z\n .string()\n .describe(\n \"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\\n\\nDefault: Based on the site's currency settings.\"\n )\n .optional()\n .nullable(),\n stages: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Stage 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 name: z\n .string()\n .describe('Stage name.')\n .min(1)\n .max(40)\n .optional()\n .nullable(),\n staleDurationInHours: z\n .number()\n .int()\n .describe(\n \"The duration (in hours) a card can remain in this stage before becoming stale.\\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays.\"\n )\n .min(1)\n .max(100000)\n .optional()\n .nullable(),\n })\n )\n .min(1)\n .max(30)\n .optional(),\n doneStage: z\n .object({\n _id: z\n .string()\n .describe('Done stage 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 name: z\n .string()\n .describe('Done stage name.')\n .min(1)\n .max(40)\n .optional()\n .nullable(),\n allowedOutcomes: z\n .array(z.enum(['NONE', 'WON', 'LOST']))\n .min(1)\n .max(3)\n .optional(),\n })\n .describe('The final pipeline stage where cards receive a final outcome.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields data.')\n .optional(),\n tags: z\n .object({\n privateTags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone with access to the entity, including site members and visitors.'\n )\n .optional(),\n })\n .describe('Tags for organizing and categorizing pipelines.')\n .optional(),\n});\nexport const GetPipelineRequest = z.object({\n pipelineId: z\n .string()\n .describe('Pipeline ID to retrieve.')\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 GetPipelineResponse = z.object({\n _id: z\n .string()\n .describe('Pipeline 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 revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the pipeline is updated.\\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\\n\\nIgnored when creating a pipeline.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe(\n 'Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe(\n 'Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Pipeline name.')\n .min(1)\n .max(60)\n .optional()\n .nullable(),\n currency: z\n .string()\n .describe(\n \"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\\n\\nDefault: Based on the site's currency settings.\"\n )\n .optional()\n .nullable(),\n stages: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Stage 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 name: z\n .string()\n .describe('Stage name.')\n .min(1)\n .max(40)\n .optional()\n .nullable(),\n staleDurationInHours: z\n .number()\n .int()\n .describe(\n \"The duration (in hours) a card can remain in this stage before becoming stale.\\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays.\"\n )\n .min(1)\n .max(100000)\n .optional()\n .nullable(),\n })\n )\n .min(1)\n .max(30)\n .optional(),\n doneStage: z\n .object({\n _id: z\n .string()\n .describe('Done stage 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 name: z\n .string()\n .describe('Done stage name.')\n .min(1)\n .max(40)\n .optional()\n .nullable(),\n allowedOutcomes: z\n .array(z.enum(['NONE', 'WON', 'LOST']))\n .min(1)\n .max(3)\n .optional(),\n })\n .describe('The final pipeline stage where cards receive a final outcome.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields data.')\n .optional(),\n tags: z\n .object({\n privateTags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone with access to the entity, including site members and visitors.'\n )\n .optional(),\n })\n .describe('Tags for organizing and categorizing pipelines.')\n .optional(),\n});\nexport const UpdatePipelineRequest = z.object({\n _id: z\n .string()\n .describe('Pipeline 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 pipeline: z\n .object({\n _id: z\n .string()\n .describe('Pipeline 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 revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the pipeline is updated.\\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\\n\\nIgnored when creating a pipeline.'\n ),\n _createdDate: z\n .date()\n .describe(\n 'Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe(\n 'Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Pipeline name.')\n .min(1)\n .max(60)\n .optional()\n .nullable(),\n currency: z\n .string()\n .describe(\n \"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\\n\\nDefault: Based on the site's currency settings.\"\n )\n .optional()\n .nullable(),\n stages: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Stage 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 name: z\n .string()\n .describe('Stage name.')\n .min(1)\n .max(40)\n .optional()\n .nullable(),\n staleDurationInHours: z\n .number()\n .int()\n .describe(\n \"The duration (in hours) a card can remain in this stage before becoming stale.\\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays.\"\n )\n .min(1)\n .max(100000)\n .optional()\n .nullable(),\n })\n )\n .min(1)\n .max(30)\n .optional(),\n doneStage: z\n .object({\n _id: z\n .string()\n .describe('Done stage 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 name: z\n .string()\n .describe('Done stage name.')\n .min(1)\n .max(40)\n .optional()\n .nullable(),\n allowedOutcomes: z\n .array(z.enum(['NONE', 'WON', 'LOST']))\n .min(1)\n .max(3)\n .optional(),\n })\n .describe(\n 'The final pipeline stage where cards receive a final outcome.'\n )\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields data.')\n .optional(),\n tags: z\n .object({\n privateTags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone with access to the entity, including site members and visitors.'\n )\n .optional(),\n })\n .describe('Tags for organizing and categorizing pipelines.')\n .optional(),\n })\n .describe('Pipeline to update, may be partial.'),\n});\nexport const UpdatePipelineResponse = z.object({\n _id: z\n .string()\n .describe('Pipeline 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 revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the pipeline is updated.\\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\\n\\nIgnored when creating a pipeline.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe(\n 'Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe(\n 'Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Pipeline name.')\n .min(1)\n .max(60)\n .optional()\n .nullable(),\n currency: z\n .string()\n .describe(\n \"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\\n\\nDefault: Based on the site's currency settings.\"\n )\n .optional()\n .nullable(),\n stages: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Stage 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 name: z\n .string()\n .describe('Stage name.')\n .min(1)\n .max(40)\n .optional()\n .nullable(),\n staleDurationInHours: z\n .number()\n .int()\n .describe(\n \"The duration (in hours) a card can remain in this stage before becoming stale.\\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays.\"\n )\n .min(1)\n .max(100000)\n .optional()\n .nullable(),\n })\n )\n .min(1)\n .max(30)\n .optional(),\n doneStage: z\n .object({\n _id: z\n .string()\n .describe('Done stage 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 name: z\n .string()\n .describe('Done stage name.')\n .min(1)\n .max(40)\n .optional()\n .nullable(),\n allowedOutcomes: z\n .array(z.enum(['NONE', 'WON', 'LOST']))\n .min(1)\n .max(3)\n .optional(),\n })\n .describe('The final pipeline stage where cards receive a final outcome.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields data.')\n .optional(),\n tags: z\n .object({\n privateTags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone with access to the entity, including site members and visitors.'\n )\n .optional(),\n })\n .describe('Tags for organizing and categorizing pipelines.')\n .optional(),\n});\nexport const DeletePipelineRequest = z.object({\n pipelineId: z\n .string()\n .describe('Pipeline 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});\nexport const DeletePipelineResponse = z.object({});\nexport const QueryPipelinesRequest = z.object({\n query: z\n .intersection(\n z.object({\n filter: z\n .record(z.string(), z.any())\n .describe(\n 'Filter object.\\n\\nLearn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).'\n )\n .optional()\n .nullable(),\n sort: 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 .max(5)\n .optional(),\n }),\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('Maximum number of items to return.')\n .min(0)\n .max(100)\n .optional()\n .nullable(),\n cursor: z\n .string()\n .describe(\n \"Pointer to the next or previous page in the list of results.\\n\\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\\nNot relevant for the first request.\"\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursor paging options.\\n\\nLearn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).'\n ),\n }),\n ])\n )\n .describe('Query options.'),\n});\nexport const QueryPipelinesResponse = z.object({\n pipelines: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Pipeline 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 revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the pipeline is updated.\\nTo prevent conflicting changes, the current revision must be passed when updating the pipeline.\\n\\nIgnored when creating a pipeline.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe(\n 'Date and time the pipeline was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe(\n 'Date and time the pipeline was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.'\n )\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Pipeline name.')\n .min(1)\n .max(60)\n .optional()\n .nullable(),\n currency: z\n .string()\n .describe(\n \"Currency code for monetary values in this pipeline. Must be a valid ISO 4217 currency code. For example, `USD`.\\n\\nDefault: Based on the site's currency settings.\"\n )\n .optional()\n .nullable(),\n stages: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Stage 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 name: z\n .string()\n .describe('Stage name.')\n .min(1)\n .max(40)\n .optional()\n .nullable(),\n staleDurationInHours: z\n .number()\n .int()\n .describe(\n \"The duration (in hours) a card can remain in this stage before becoming stale.\\nWhen a card exceeds this duration, it's marked as stale to indicate potential workflow delays.\"\n )\n .min(1)\n .max(100000)\n .optional()\n .nullable(),\n })\n )\n .min(1)\n .max(30)\n .optional(),\n doneStage: z\n .object({\n _id: z\n .string()\n .describe('Done stage 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 name: z\n .string()\n .describe('Done stage name.')\n .min(1)\n .max(40)\n .optional()\n .nullable(),\n allowedOutcomes: z\n .array(z.enum(['NONE', 'WON', 'LOST']))\n .min(1)\n .max(3)\n .optional(),\n })\n .describe(\n 'The final pipeline stage where cards receive a final outcome.'\n )\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields data.')\n .optional(),\n tags: z\n .object({\n privateTags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone with access to the entity, including site members and visitors.'\n )\n .optional(),\n })\n .describe('Tags for organizing and categorizing pipelines.')\n .optional(),\n })\n )\n .optional(),\n pagingMetadata: z\n .object({\n count: z\n .number()\n .int()\n .describe('Number of items returned in current page.')\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 'Cursor strings that point to the next page, previous page, or both.'\n )\n .optional(),\n hasNext: z\n .boolean()\n .describe(\n 'Whether there are more pages to retrieve following the current page.\\n\\n+ `true`: Another page of results can be retrieved.\\n+ `false`: This is the last page.'\n )\n .optional()\n .nullable(),\n })\n .describe('Paging metadata.')\n .optional(),\n});\nexport const BulkUpdatePipelineTagsRequest = z.object({\n pipelineIds: z.array(z.string()).min(1).max(100),\n options: z\n .object({\n assignTags: z\n .object({\n privateTags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone with access to the entity, including site members and visitors.'\n )\n .optional(),\n })\n .describe('List of tags to assign.')\n .optional(),\n unassignTags: z\n .object({\n privateTags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone with access to the entity, including site members and visitors.'\n )\n .optional(),\n })\n .describe('List of tags to unassign.')\n .optional(),\n returnEntity: z\n .boolean()\n .describe(\n 'Whether to return the updated pipelines in the response.\\n\\nDefault: `false`'\n )\n .optional(),\n })\n .optional(),\n});\nexport const BulkUpdatePipelineTagsResponse = z.object({\n results: z\n .array(\n z.object({\n itemMetadata: z\n .object({\n _id: z\n .string()\n .describe(\n \"Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\"\n )\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 originalIndex: z\n .number()\n .int()\n .describe(\n 'Index of the item within the request array. Allows for correlation between request and response items.'\n )\n .optional(),\n success: z\n .boolean()\n .describe(\n 'Whether the requested action was successful for this item. When `false`, the `error` field is populated.'\n )\n .optional(),\n error: z\n .object({\n code: z.string().describe('Error code.').optional(),\n description: z\n .string()\n .describe('Description of the error.')\n .optional(),\n data: z\n .record(z.string(), z.any())\n .describe('Data related to the error.')\n .optional()\n .nullable(),\n })\n .describe('Details about the error in case of failure.')\n .optional(),\n })\n .describe('Metadata about the individual updated pipeline.')\n .optional(),\n })\n )\n .min(1)\n .max(100)\n .optional(),\n bulkActionMetadata: z\n .object({\n totalSuccesses: z\n .number()\n .int()\n .describe('Number of items that were successfully processed.')\n .optional(),\n totalFailures: z\n .number()\n .int()\n .describe(\"Number of items that couldn't be processed.\")\n .optional(),\n undetailedFailures: z\n .number()\n .int()\n .describe(\n 'Number of failures without details because detailed failure threshold was exceeded.'\n )\n .optional(),\n })\n .describe('Metadata about the bulk update.')\n .optional(),\n});\nexport const BulkUpdatePipelineTagsByFilterRequest = z.object({\n filter: z\n .record(z.string(), z.any())\n .describe('Filter to select which pipelines to update.'),\n options: z\n .object({\n assignTags: z\n .object({\n privateTags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone with access to the entity, including site members and visitors.'\n )\n .optional(),\n })\n .describe('List of tags to assign.')\n .optional(),\n unassignTags: z\n .object({\n privateTags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone with access to the entity, including site members and visitors.'\n )\n .optional(),\n })\n .describe('List of tags to unassign.')\n .optional(),\n returnEntity: z\n .boolean()\n .describe(\n 'Whether to return the updated pipelines in the response.\\n\\nDefault: `false`'\n )\n .optional(),\n })\n .optional(),\n});\nexport const BulkUpdatePipelineTagsByFilterResponse = z.object({\n jobId: z\n .string()\n .describe('Job ID for tracking the asynchronous tag updates.')\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});\n"],"mappings":"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","names":[]}
|