@getcommunity/gc-validators 0.0.46 → 0.0.48
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/dist/index.cjs +707 -600
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +515 -7
- package/dist/index.d.ts +515 -7
- package/dist/index.js +688 -600
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
|
|
3
|
-
type WebSafeFontSerif = "Arial" | "Arial Black" | "Verdana" | "Trebuchet MS" | "Tahoma" | "Geneva" | "Helvetica" | "Segoe UI" | "Impact" | "MS Serif"
|
|
4
|
-
type WebSafeFontSans = "Times New Roman" | "Georgia" | "Garamond" | "Palatino" | "Book Antiqua" | "MS Sans Serif"
|
|
5
|
-
type WebSafeFontMono = "Courier New" | "Lucida Console" | "Monaco" | "Consolas" | "Lucida Sans Unicode"
|
|
6
|
-
type WebSafeFontDisplay = "Comic Sans MS" | "Brush Script MT"
|
|
3
|
+
type WebSafeFontSerif = "serif" | "Arial" | "Arial Black" | "Verdana" | "Trebuchet MS" | "Tahoma" | "Geneva" | "Helvetica" | "Segoe UI" | "Impact" | "MS Serif";
|
|
4
|
+
type WebSafeFontSans = "sans-serif" | "Times New Roman" | "Georgia" | "Garamond" | "Palatino" | "Book Antiqua" | "MS Sans Serif";
|
|
5
|
+
type WebSafeFontMono = "monospace" | "Courier New" | "Lucida Console" | "Monaco" | "Consolas" | "Lucida Sans Unicode";
|
|
6
|
+
type WebSafeFontDisplay = "cursive" | "Comic Sans MS" | "Brush Script MT";
|
|
7
7
|
type WebSafeFont = WebSafeFontSerif | WebSafeFontSans | WebSafeFontMono | WebSafeFontDisplay;
|
|
8
8
|
|
|
9
9
|
declare const LIMIT_MIN_VALUE = 1;
|
|
@@ -105,6 +105,161 @@ declare const ERROR_MESSAGE_REGEX_UTM_VALUE = "can only contain letters, numbers
|
|
|
105
105
|
declare const REGEX_UTM_VALUE: RegExp;
|
|
106
106
|
declare const REGEX_BRAND_COLOR_SLUG: RegExp;
|
|
107
107
|
|
|
108
|
+
declare const SEntityRelationPositionBefore: v.ObjectSchema<{
|
|
109
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
110
|
+
}, undefined>;
|
|
111
|
+
type SEntityRelationPositionBefore = v.InferInput<typeof SEntityRelationPositionBefore>;
|
|
112
|
+
declare const SEntityRelationPositionAfter: v.ObjectSchema<{
|
|
113
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
114
|
+
}, undefined>;
|
|
115
|
+
type SEntityRelationPositionAfter = v.InferInput<typeof SEntityRelationPositionBefore>;
|
|
116
|
+
declare const SEntityRelationPositionStart: v.ObjectSchema<{
|
|
117
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
118
|
+
}, undefined>;
|
|
119
|
+
type SEntityRelationPositionStart = v.InferInput<typeof SEntityRelationPositionBefore>;
|
|
120
|
+
declare const SEntityRelationPositionEnd: v.ObjectSchema<{
|
|
121
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
122
|
+
}, undefined>;
|
|
123
|
+
type SEntityRelationPositionEnd = v.InferInput<typeof SEntityRelationPositionBefore>;
|
|
124
|
+
declare const SEntityRelationPosition: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
125
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
126
|
+
}, undefined>, v.ObjectSchema<{
|
|
127
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
128
|
+
}, undefined>, v.ObjectSchema<{
|
|
129
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
130
|
+
}, undefined>, v.ObjectSchema<{
|
|
131
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
132
|
+
}, undefined>], undefined>]>, {
|
|
133
|
+
readonly end: true;
|
|
134
|
+
}>;
|
|
135
|
+
type SEntityRelationPositionIn = v.InferInput<typeof SEntityRelationPosition>;
|
|
136
|
+
type SEntityRelationPositionOut = v.InferOutput<typeof SEntityRelationPosition>;
|
|
137
|
+
declare const SEntityRelation: v.ObjectSchema<{
|
|
138
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
139
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
140
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
141
|
+
}, undefined>, v.ObjectSchema<{
|
|
142
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
143
|
+
}, undefined>, v.ObjectSchema<{
|
|
144
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
145
|
+
}, undefined>, v.ObjectSchema<{
|
|
146
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
147
|
+
}, undefined>], undefined>]>, {
|
|
148
|
+
readonly end: true;
|
|
149
|
+
}>, undefined>;
|
|
150
|
+
}, undefined>;
|
|
151
|
+
type SEntityRelationIn = v.InferInput<typeof SEntityRelation>;
|
|
152
|
+
type SEntityRelationOut = v.InferOutput<typeof SEntityRelation>;
|
|
153
|
+
declare const SConnectEntityRelation: v.ObjectSchema<{
|
|
154
|
+
readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
155
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
156
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
157
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
158
|
+
}, undefined>, v.ObjectSchema<{
|
|
159
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
160
|
+
}, undefined>, v.ObjectSchema<{
|
|
161
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
162
|
+
}, undefined>, v.ObjectSchema<{
|
|
163
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
164
|
+
}, undefined>], undefined>]>, {
|
|
165
|
+
readonly end: true;
|
|
166
|
+
}>, undefined>;
|
|
167
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
168
|
+
documentId: string;
|
|
169
|
+
position?: {
|
|
170
|
+
before: string;
|
|
171
|
+
} | {
|
|
172
|
+
after: string;
|
|
173
|
+
} | {
|
|
174
|
+
start: boolean;
|
|
175
|
+
} | {
|
|
176
|
+
end: boolean;
|
|
177
|
+
} | undefined;
|
|
178
|
+
})[], 1, "At least one document ID is required to connect">, v.MaxLengthAction<(string | {
|
|
179
|
+
documentId: string;
|
|
180
|
+
position?: {
|
|
181
|
+
before: string;
|
|
182
|
+
} | {
|
|
183
|
+
after: string;
|
|
184
|
+
} | {
|
|
185
|
+
start: boolean;
|
|
186
|
+
} | {
|
|
187
|
+
end: boolean;
|
|
188
|
+
} | undefined;
|
|
189
|
+
})[], 100, "A maximum of 100 document IDs can be connected per request">]>;
|
|
190
|
+
}, undefined>;
|
|
191
|
+
type SConnectEntityRelationIn = v.InferInput<typeof SConnectEntityRelation>;
|
|
192
|
+
type SConnectEntityRelationOut = v.InferOutput<typeof SConnectEntityRelation>;
|
|
193
|
+
declare const SDisconnectEntityRelation: v.ObjectSchema<{
|
|
194
|
+
readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
195
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
196
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
197
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
198
|
+
}, undefined>, v.ObjectSchema<{
|
|
199
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
200
|
+
}, undefined>, v.ObjectSchema<{
|
|
201
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
202
|
+
}, undefined>, v.ObjectSchema<{
|
|
203
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
204
|
+
}, undefined>], undefined>]>, {
|
|
205
|
+
readonly end: true;
|
|
206
|
+
}>, undefined>;
|
|
207
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
208
|
+
documentId: string;
|
|
209
|
+
position?: {
|
|
210
|
+
before: string;
|
|
211
|
+
} | {
|
|
212
|
+
after: string;
|
|
213
|
+
} | {
|
|
214
|
+
start: boolean;
|
|
215
|
+
} | {
|
|
216
|
+
end: boolean;
|
|
217
|
+
} | undefined;
|
|
218
|
+
})[], 1, "At least one document ID is required to disconnect">, v.MaxLengthAction<(string | {
|
|
219
|
+
documentId: string;
|
|
220
|
+
position?: {
|
|
221
|
+
before: string;
|
|
222
|
+
} | {
|
|
223
|
+
after: string;
|
|
224
|
+
} | {
|
|
225
|
+
start: boolean;
|
|
226
|
+
} | {
|
|
227
|
+
end: boolean;
|
|
228
|
+
} | undefined;
|
|
229
|
+
})[], 100, "A maximum of 100 document IDs can be disconnected per request">]>;
|
|
230
|
+
}, undefined>;
|
|
231
|
+
type SDisconnectEntityRelationIn = v.InferInput<typeof SDisconnectEntityRelation>;
|
|
232
|
+
type SDisconnectEntityRelationOut = v.InferOutput<typeof SDisconnectEntityRelation>;
|
|
233
|
+
declare const SSetEntityRelation: v.ObjectSchema<{
|
|
234
|
+
readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
235
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
236
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
237
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
238
|
+
}, undefined>, v.ObjectSchema<{
|
|
239
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
240
|
+
}, undefined>, v.ObjectSchema<{
|
|
241
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
242
|
+
}, undefined>, v.ObjectSchema<{
|
|
243
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
244
|
+
}, undefined>], undefined>]>, {
|
|
245
|
+
readonly end: true;
|
|
246
|
+
}>, undefined>;
|
|
247
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
248
|
+
documentId: string;
|
|
249
|
+
position?: {
|
|
250
|
+
before: string;
|
|
251
|
+
} | {
|
|
252
|
+
after: string;
|
|
253
|
+
} | {
|
|
254
|
+
start: boolean;
|
|
255
|
+
} | {
|
|
256
|
+
end: boolean;
|
|
257
|
+
} | undefined;
|
|
258
|
+
})[], 1, "At least one document ID is required to set a relation">]>;
|
|
259
|
+
}, undefined>;
|
|
260
|
+
type SSetEntityRelationIn = v.InferInput<typeof SSetEntityRelation>;
|
|
261
|
+
type SSetEntityRelationOut = v.InferOutput<typeof SSetEntityRelation>;
|
|
262
|
+
|
|
108
263
|
declare const QueryStrapiSearchBlogPosts: v.ObjectSchema<{
|
|
109
264
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
110
265
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, 6>, 6>;
|
|
@@ -122,23 +277,253 @@ type QueryStrapiSearchBlogPostsBySlug = v.InferOutput<typeof QueryStrapiSearchBl
|
|
|
122
277
|
|
|
123
278
|
declare const QueryStrapiSearchClientProjects: v.ObjectSchema<{
|
|
124
279
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
125
|
-
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number,
|
|
280
|
+
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
126
281
|
readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
127
282
|
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
128
283
|
readonly project_status: v.OptionalSchema<v.PicklistSchema<string[], undefined>, undefined>;
|
|
129
284
|
readonly client_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, undefined>;
|
|
130
285
|
}, undefined>;
|
|
131
286
|
type QueryStrapiSearchClientProjects = v.InferOutput<typeof QueryStrapiSearchClientProjects>;
|
|
287
|
+
declare const SConnectClientProjects: v.ObjectSchema<{
|
|
288
|
+
readonly client_projects: v.ObjectSchema<{
|
|
289
|
+
readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
290
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
291
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
292
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
293
|
+
}, undefined>, v.ObjectSchema<{
|
|
294
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
295
|
+
}, undefined>, v.ObjectSchema<{
|
|
296
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
297
|
+
}, undefined>, v.ObjectSchema<{
|
|
298
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
299
|
+
}, undefined>], undefined>]>, {
|
|
300
|
+
readonly end: true;
|
|
301
|
+
}>, undefined>;
|
|
302
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
303
|
+
documentId: string;
|
|
304
|
+
position?: {
|
|
305
|
+
before: string;
|
|
306
|
+
} | {
|
|
307
|
+
after: string;
|
|
308
|
+
} | {
|
|
309
|
+
start: boolean;
|
|
310
|
+
} | {
|
|
311
|
+
end: boolean;
|
|
312
|
+
} | undefined;
|
|
313
|
+
})[], 1, "At least one document ID is required to connect">, v.MaxLengthAction<(string | {
|
|
314
|
+
documentId: string;
|
|
315
|
+
position?: {
|
|
316
|
+
before: string;
|
|
317
|
+
} | {
|
|
318
|
+
after: string;
|
|
319
|
+
} | {
|
|
320
|
+
start: boolean;
|
|
321
|
+
} | {
|
|
322
|
+
end: boolean;
|
|
323
|
+
} | undefined;
|
|
324
|
+
})[], 100, "A maximum of 100 document IDs can be connected per request">]>;
|
|
325
|
+
}, undefined>;
|
|
326
|
+
}, undefined>;
|
|
327
|
+
type SConnectClientProjectsIn = v.InferInput<typeof SConnectClientProjects>;
|
|
328
|
+
type SConnectClientProjectsOut = v.InferOutput<typeof SConnectClientProjects>;
|
|
329
|
+
declare const SDisconnectClientProjects: v.ObjectSchema<{
|
|
330
|
+
readonly client_projects: v.ObjectSchema<{
|
|
331
|
+
readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
332
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
333
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
334
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
335
|
+
}, undefined>, v.ObjectSchema<{
|
|
336
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
337
|
+
}, undefined>, v.ObjectSchema<{
|
|
338
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
339
|
+
}, undefined>, v.ObjectSchema<{
|
|
340
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
341
|
+
}, undefined>], undefined>]>, {
|
|
342
|
+
readonly end: true;
|
|
343
|
+
}>, undefined>;
|
|
344
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
345
|
+
documentId: string;
|
|
346
|
+
position?: {
|
|
347
|
+
before: string;
|
|
348
|
+
} | {
|
|
349
|
+
after: string;
|
|
350
|
+
} | {
|
|
351
|
+
start: boolean;
|
|
352
|
+
} | {
|
|
353
|
+
end: boolean;
|
|
354
|
+
} | undefined;
|
|
355
|
+
})[], 1, "At least one document ID is required to disconnect">, v.MaxLengthAction<(string | {
|
|
356
|
+
documentId: string;
|
|
357
|
+
position?: {
|
|
358
|
+
before: string;
|
|
359
|
+
} | {
|
|
360
|
+
after: string;
|
|
361
|
+
} | {
|
|
362
|
+
start: boolean;
|
|
363
|
+
} | {
|
|
364
|
+
end: boolean;
|
|
365
|
+
} | undefined;
|
|
366
|
+
})[], 100, "A maximum of 100 document IDs can be disconnected per request">]>;
|
|
367
|
+
}, undefined>;
|
|
368
|
+
}, undefined>;
|
|
369
|
+
type SDisconnectClientProjectsIn = v.InferInput<typeof SDisconnectClientProjects>;
|
|
370
|
+
type SDisconnectClientProjectsOut = v.InferOutput<typeof SDisconnectClientProjects>;
|
|
371
|
+
declare const SSetClientProjects: v.ObjectSchema<{
|
|
372
|
+
readonly client_projects: v.ObjectSchema<{
|
|
373
|
+
readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
374
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
375
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
376
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
377
|
+
}, undefined>, v.ObjectSchema<{
|
|
378
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
379
|
+
}, undefined>, v.ObjectSchema<{
|
|
380
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
381
|
+
}, undefined>, v.ObjectSchema<{
|
|
382
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
383
|
+
}, undefined>], undefined>]>, {
|
|
384
|
+
readonly end: true;
|
|
385
|
+
}>, undefined>;
|
|
386
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
387
|
+
documentId: string;
|
|
388
|
+
position?: {
|
|
389
|
+
before: string;
|
|
390
|
+
} | {
|
|
391
|
+
after: string;
|
|
392
|
+
} | {
|
|
393
|
+
start: boolean;
|
|
394
|
+
} | {
|
|
395
|
+
end: boolean;
|
|
396
|
+
} | undefined;
|
|
397
|
+
})[], 1, "At least one document ID is required to set a relation">]>;
|
|
398
|
+
}, undefined>;
|
|
399
|
+
}, undefined>;
|
|
400
|
+
type SSetClientProjectsIn = v.InferInput<typeof SSetClientProjects>;
|
|
401
|
+
type SSetClientProjectsOut = v.InferOutput<typeof SSetClientProjects>;
|
|
132
402
|
|
|
133
403
|
declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
|
|
134
404
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
135
|
-
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number,
|
|
405
|
+
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
136
406
|
readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
137
407
|
readonly report_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
138
408
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
139
409
|
readonly client_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, undefined>;
|
|
140
410
|
}, undefined>;
|
|
141
411
|
type QueryStrapiSearchClientReports = v.InferOutput<typeof QueryStrapiSearchClientReports>;
|
|
412
|
+
declare const SConnectClientReports: v.ObjectSchema<{
|
|
413
|
+
readonly client_reports: v.ObjectSchema<{
|
|
414
|
+
readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
415
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
416
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
417
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
418
|
+
}, undefined>, v.ObjectSchema<{
|
|
419
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
420
|
+
}, undefined>, v.ObjectSchema<{
|
|
421
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
422
|
+
}, undefined>, v.ObjectSchema<{
|
|
423
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
424
|
+
}, undefined>], undefined>]>, {
|
|
425
|
+
readonly end: true;
|
|
426
|
+
}>, undefined>;
|
|
427
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
428
|
+
documentId: string;
|
|
429
|
+
position?: {
|
|
430
|
+
before: string;
|
|
431
|
+
} | {
|
|
432
|
+
after: string;
|
|
433
|
+
} | {
|
|
434
|
+
start: boolean;
|
|
435
|
+
} | {
|
|
436
|
+
end: boolean;
|
|
437
|
+
} | undefined;
|
|
438
|
+
})[], 1, "At least one document ID is required to connect">, v.MaxLengthAction<(string | {
|
|
439
|
+
documentId: string;
|
|
440
|
+
position?: {
|
|
441
|
+
before: string;
|
|
442
|
+
} | {
|
|
443
|
+
after: string;
|
|
444
|
+
} | {
|
|
445
|
+
start: boolean;
|
|
446
|
+
} | {
|
|
447
|
+
end: boolean;
|
|
448
|
+
} | undefined;
|
|
449
|
+
})[], 100, "A maximum of 100 document IDs can be connected per request">]>;
|
|
450
|
+
}, undefined>;
|
|
451
|
+
}, undefined>;
|
|
452
|
+
type SConnectClientReportsIn = v.InferInput<typeof SConnectClientReports>;
|
|
453
|
+
type SConnectClientReportsOut = v.InferOutput<typeof SConnectClientReports>;
|
|
454
|
+
declare const SDisconnectClientReports: v.ObjectSchema<{
|
|
455
|
+
readonly client_reports: v.ObjectSchema<{
|
|
456
|
+
readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
457
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
458
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
459
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
460
|
+
}, undefined>, v.ObjectSchema<{
|
|
461
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
462
|
+
}, undefined>, v.ObjectSchema<{
|
|
463
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
464
|
+
}, undefined>, v.ObjectSchema<{
|
|
465
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
466
|
+
}, undefined>], undefined>]>, {
|
|
467
|
+
readonly end: true;
|
|
468
|
+
}>, undefined>;
|
|
469
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
470
|
+
documentId: string;
|
|
471
|
+
position?: {
|
|
472
|
+
before: string;
|
|
473
|
+
} | {
|
|
474
|
+
after: string;
|
|
475
|
+
} | {
|
|
476
|
+
start: boolean;
|
|
477
|
+
} | {
|
|
478
|
+
end: boolean;
|
|
479
|
+
} | undefined;
|
|
480
|
+
})[], 1, "At least one document ID is required to disconnect">, v.MaxLengthAction<(string | {
|
|
481
|
+
documentId: string;
|
|
482
|
+
position?: {
|
|
483
|
+
before: string;
|
|
484
|
+
} | {
|
|
485
|
+
after: string;
|
|
486
|
+
} | {
|
|
487
|
+
start: boolean;
|
|
488
|
+
} | {
|
|
489
|
+
end: boolean;
|
|
490
|
+
} | undefined;
|
|
491
|
+
})[], 100, "A maximum of 100 document IDs can be disconnected per request">]>;
|
|
492
|
+
}, undefined>;
|
|
493
|
+
}, undefined>;
|
|
494
|
+
type SDisconnectClientReportsIn = v.InferInput<typeof SDisconnectClientReports>;
|
|
495
|
+
type SDisconnectClientReportsOut = v.InferOutput<typeof SDisconnectClientReports>;
|
|
496
|
+
declare const SSetClientReports: v.ObjectSchema<{
|
|
497
|
+
readonly client_reports: v.ObjectSchema<{
|
|
498
|
+
readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
499
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
500
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
501
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
502
|
+
}, undefined>, v.ObjectSchema<{
|
|
503
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
504
|
+
}, undefined>, v.ObjectSchema<{
|
|
505
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
506
|
+
}, undefined>, v.ObjectSchema<{
|
|
507
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
508
|
+
}, undefined>], undefined>]>, {
|
|
509
|
+
readonly end: true;
|
|
510
|
+
}>, undefined>;
|
|
511
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
512
|
+
documentId: string;
|
|
513
|
+
position?: {
|
|
514
|
+
before: string;
|
|
515
|
+
} | {
|
|
516
|
+
after: string;
|
|
517
|
+
} | {
|
|
518
|
+
start: boolean;
|
|
519
|
+
} | {
|
|
520
|
+
end: boolean;
|
|
521
|
+
} | undefined;
|
|
522
|
+
})[], 1, "At least one document ID is required to set a relation">]>;
|
|
523
|
+
}, undefined>;
|
|
524
|
+
}, undefined>;
|
|
525
|
+
type SSetClientReportsIn = v.InferInput<typeof SSetClientReports>;
|
|
526
|
+
type SSetClientReportsOut = v.InferOutput<typeof SSetClientReports>;
|
|
142
527
|
|
|
143
528
|
declare const QueryStrapiSearchClientStyleguide: v.ObjectSchema<{
|
|
144
529
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -256,6 +641,129 @@ declare const SCreateLead: v.ObjectSchema<{
|
|
|
256
641
|
}, undefined>;
|
|
257
642
|
type SCreateLead = v.InferOutput<typeof SCreateLead>;
|
|
258
643
|
|
|
644
|
+
declare const QueryStrapiSearchMediaPlatforms: v.ObjectSchema<{
|
|
645
|
+
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
646
|
+
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
647
|
+
readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
648
|
+
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
649
|
+
}, undefined>;
|
|
650
|
+
type QueryStrapiSearchMediaPlatforms = v.InferOutput<typeof QueryStrapiSearchMediaPlatforms>;
|
|
651
|
+
declare const SConnectMediaPlatforms: v.ObjectSchema<{
|
|
652
|
+
readonly client_reports: v.ObjectSchema<{
|
|
653
|
+
readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
654
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
655
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
656
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
657
|
+
}, undefined>, v.ObjectSchema<{
|
|
658
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
659
|
+
}, undefined>, v.ObjectSchema<{
|
|
660
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
661
|
+
}, undefined>, v.ObjectSchema<{
|
|
662
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
663
|
+
}, undefined>], undefined>]>, {
|
|
664
|
+
readonly end: true;
|
|
665
|
+
}>, undefined>;
|
|
666
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
667
|
+
documentId: string;
|
|
668
|
+
position?: {
|
|
669
|
+
before: string;
|
|
670
|
+
} | {
|
|
671
|
+
after: string;
|
|
672
|
+
} | {
|
|
673
|
+
start: boolean;
|
|
674
|
+
} | {
|
|
675
|
+
end: boolean;
|
|
676
|
+
} | undefined;
|
|
677
|
+
})[], 1, "At least one document ID is required to connect">, v.MaxLengthAction<(string | {
|
|
678
|
+
documentId: string;
|
|
679
|
+
position?: {
|
|
680
|
+
before: string;
|
|
681
|
+
} | {
|
|
682
|
+
after: string;
|
|
683
|
+
} | {
|
|
684
|
+
start: boolean;
|
|
685
|
+
} | {
|
|
686
|
+
end: boolean;
|
|
687
|
+
} | undefined;
|
|
688
|
+
})[], 100, "A maximum of 100 document IDs can be connected per request">]>;
|
|
689
|
+
}, undefined>;
|
|
690
|
+
}, undefined>;
|
|
691
|
+
type SConnectMediaPlatformsIn = v.InferInput<typeof SConnectMediaPlatforms>;
|
|
692
|
+
type SConnectMediaPlatformsOut = v.InferOutput<typeof SConnectMediaPlatforms>;
|
|
693
|
+
declare const SDisconnectMediaPlatforms: v.ObjectSchema<{
|
|
694
|
+
readonly client_reports: v.ObjectSchema<{
|
|
695
|
+
readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
696
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
697
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
698
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
699
|
+
}, undefined>, v.ObjectSchema<{
|
|
700
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
701
|
+
}, undefined>, v.ObjectSchema<{
|
|
702
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
703
|
+
}, undefined>, v.ObjectSchema<{
|
|
704
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
705
|
+
}, undefined>], undefined>]>, {
|
|
706
|
+
readonly end: true;
|
|
707
|
+
}>, undefined>;
|
|
708
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
709
|
+
documentId: string;
|
|
710
|
+
position?: {
|
|
711
|
+
before: string;
|
|
712
|
+
} | {
|
|
713
|
+
after: string;
|
|
714
|
+
} | {
|
|
715
|
+
start: boolean;
|
|
716
|
+
} | {
|
|
717
|
+
end: boolean;
|
|
718
|
+
} | undefined;
|
|
719
|
+
})[], 1, "At least one document ID is required to disconnect">, v.MaxLengthAction<(string | {
|
|
720
|
+
documentId: string;
|
|
721
|
+
position?: {
|
|
722
|
+
before: string;
|
|
723
|
+
} | {
|
|
724
|
+
after: string;
|
|
725
|
+
} | {
|
|
726
|
+
start: boolean;
|
|
727
|
+
} | {
|
|
728
|
+
end: boolean;
|
|
729
|
+
} | undefined;
|
|
730
|
+
})[], 100, "A maximum of 100 document IDs can be disconnected per request">]>;
|
|
731
|
+
}, undefined>;
|
|
732
|
+
}, undefined>;
|
|
733
|
+
type SDisconnectMediaPlatformsIn = v.InferInput<typeof SDisconnectMediaPlatforms>;
|
|
734
|
+
type SDisconnectMediaPlatformsOut = v.InferOutput<typeof SDisconnectMediaPlatforms>;
|
|
735
|
+
declare const SSetMediaPlatforms: v.ObjectSchema<{
|
|
736
|
+
readonly client_reports: v.ObjectSchema<{
|
|
737
|
+
readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, v.ObjectSchema<{
|
|
738
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
739
|
+
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
740
|
+
readonly before: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
741
|
+
}, undefined>, v.ObjectSchema<{
|
|
742
|
+
readonly after: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
743
|
+
}, undefined>, v.ObjectSchema<{
|
|
744
|
+
readonly start: v.BooleanSchema<"start must be a boolean value">;
|
|
745
|
+
}, undefined>, v.ObjectSchema<{
|
|
746
|
+
readonly end: v.BooleanSchema<"end must be a boolean value">;
|
|
747
|
+
}, undefined>], undefined>]>, {
|
|
748
|
+
readonly end: true;
|
|
749
|
+
}>, undefined>;
|
|
750
|
+
}, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
751
|
+
documentId: string;
|
|
752
|
+
position?: {
|
|
753
|
+
before: string;
|
|
754
|
+
} | {
|
|
755
|
+
after: string;
|
|
756
|
+
} | {
|
|
757
|
+
start: boolean;
|
|
758
|
+
} | {
|
|
759
|
+
end: boolean;
|
|
760
|
+
} | undefined;
|
|
761
|
+
})[], 1, "At least one document ID is required to set a relation">]>;
|
|
762
|
+
}, undefined>;
|
|
763
|
+
}, undefined>;
|
|
764
|
+
type SSetMediaPlatformsIn = v.InferInput<typeof SSetMediaPlatforms>;
|
|
765
|
+
type SSetMediaPlatformsOut = v.InferOutput<typeof SSetMediaPlatforms>;
|
|
766
|
+
|
|
259
767
|
declare const SCreateNewsletterSignup: v.ObjectSchema<{
|
|
260
768
|
readonly first_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your first name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your first name.">, v.MaxLengthAction<string, 255, "Your first name is too long for our datanase, please abbreviate your first name to be 255 characters or less.">]>;
|
|
261
769
|
readonly last_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your last name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your last name.">, v.MaxLengthAction<string, 255, "Your last name is too long for our datanase, please abbreviate your last name to be 255 characters or less.">]>;
|
|
@@ -1670,4 +2178,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
|
|
|
1670
2178
|
declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1671
2179
|
declare const IsValidOrUndefinedUrlUtmId: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1672
2180
|
|
|
1673
|
-
export { type BaseDocument, type BlockAnnouncementBar, type BlockBrandLogos, type BlockButtonGroup, type BlockContact, type BlockCtaLink, type BlockFaq, type BlockFullscreenContent, type BlockFullscreenContentType, type BlockTextDetails, type BlockVideoEmbed, type BlogPageDocument, type BlogPostBlock, type BlogPostDocument, type BrandStyleguideColor, type BrandStyleguideFont, CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, type CareersPageDocument, type CategoryDocument, type ClientDocument, type ClientEntityActions, type ClientEntityKey, type ClientEntityScope, type ClientProjectDocument, type ClientProjectStatus, ClientProjectStatusOptions, type ClientReportDocument, type ClientStyleguideDocument, type ClientUserDocument, type ComponentBlockAnnouncementBar, type ComponentBlockBrandLogos, type ComponentBlockButtonGroup, type ComponentBlockContact, type ComponentBlockCtaLink, type ComponentBlockFaq, type ComponentBlockFullscreenContent, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentBrandStyleguideColor, type ComponentBrandStyleguideFont, type ComponentFormDownload, type ComponentFormSelect, type ComponentOpenGraph, type ComponentSeoMeta, type ComponentSharedButton, type ComponentSharedLink, type ComponentSharedQuestionAnswer, type ComponentSharedRichTextBlock, type ComponentSlideContent, type ComponentSliderSettings, type ComponentSlideshow, type ComponentSlideshowSettings, type ComponentUtmOption, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_UTM_VALUE, type FormDownload, type FormDownloadKeys, type FormSelect, type FormUID, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringOrUndefined, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserPhone, InvalidUserPhoneType, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidCaptchaToken, IsValidClientTerm, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDateToday, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringOrUndefined, IsValidName, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedProvider, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringOrUndefined, IsValidStringList, IsValidStringListOrUndefined, IsValidStringSepListOfUrls, IsValidStringSepListOfUrlsOrUndefined, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlOrUndefined, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserPhone, IsValidUserPhoneRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmCampaignKeyNameOrUndefined, IsValidUtmLink, IsValidValue, type KeenSliderOrigin, type KeenSliderSliderSlides, LIMIT_BLOG_POST_PAGINATION_DEFAULT_SIZE, LIMIT_BLOG_POST_PAGINATION_MAX_SIZE, LIMIT_CATEGORIES_DEFAULT_SIZE, LIMIT_CATEGORIES_MAX_SIZE, LIMIT_CLIENT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_MAX_SIZE, LIMIT_CLIENT_USER_PAGINATION_DEFAULT_SIZE_LIMIT, LIMIT_CLIENT_USER_PAGINATION_MAX_SIZE_LIMIT, LIMIT_LONG_STRING_MAX_LENGTH, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MEDIUM_STRING_MAX_LENGTH, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_QUERY, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, LIMIT_PAGINATION_DEFAULT_SIZE, LIMIT_PAGINATION_MAX_SIZE, LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_DEFAULT_SIZE, LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_MAX_SIZE, LIMIT_PRODUCT_PAGINATION_DEFAULT_SIZE, LIMIT_PRODUCT_PAGINATION_MAX_SIZE, LIMIT_REDIRECT_PAGINATION_DEFAULT_SIZE, LIMIT_REDIRECT_PAGINATION_MAX_SIZE, LIMIT_SHORT_STRING_MAX_LENGTH, LIMIT_TABLE_PAGINATION_DEFAULT_SIZE, LIMIT_TAGS_DEFAULT_SIZE, LIMIT_TAGS_MAX_SIZE, LIMIT_TEAM_MEMBER_PAGINATION_DEFAULT_SIZE, LIMIT_TEAM_MEMBER_PAGINATION_MAX_SIZE, LIMIT_TREND_PAGINATION_DEFAULT_SIZE, LIMIT_TREND_PAGINATION_MAX_SIZE, LIMIT_USER_PAGINATION_DEFAULT_SIZE, LIMIT_USER_PAGINATION_MAX_SIZE, LIMIT_UTM_TRACKING_LINK_PAGINATION_DEFAULT_SIZE, LIMIT_UTM_TRACKING_LINK_PAGINATION_MAX_SIZE, type LandingPageDocument, type LeadDocument, type MediaFormat, type MediaFormats, type MediaPlatformDocument, type MediaUploadDocument, type OpenGraph, type PermissionDocument, type PolicyPageDocument, type ProductDocument, type ProductHighlightDocument, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_UTM_VALUE, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SCreateClientUserDocument, SCreateClientUserDocumentRequest, SCreateLead, SCreateNewsletterSignup, SCreateResume, SCreateResumeInfo, SCreateUtmTrackingLinkDocument, type SCreateUtmTrackingLinkDocumentInput, SCreateUtmTrackingLinkParts, SDeleteClientUserDocument, SDeleteUtmTrackingLinkDocument, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadClientUserDocumentByDocumentId, SReadClientUserDocumentById, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUserByDocumentId, SReadUserById, SReadUtmTrackingLinkDocumentByDocumentId, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateResumeInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, type SeoMeta, type SharedButton, type SharedLink, type SharedQuestionAnswer, type SharedRichTextBlock, SharpSpringSignUpToDownload, type SlideContent, type SlideType, type SliderSettings, type SliderSpacing, type Slideshow, type SlideshowMode, type SlideshowSettings, type StrapiBgColorOptions, type StrapiDirection, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiGapSizes, type StrapiIconName, type StrapiIconPosition, type StrapiLinkReferrerPolicy, type StrapiLinkRel, type StrapiLinkTarget, type StrapiLinkType, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiSingleResponse, type StrapiTextColorOptions, type StrapiThemeOptions, type TagDocument, type TeamMemberDocument, type TeamPageDocument, type TrendDocument, type UrlRedirectDocument, type UrlRedirectQueryParams, type UrlRedirectStatusCode, type UserAccountDocument, type UserAuthorizationLoginResponse, type UserAuthorizationSuccessResponse, type UserDocument, type UserWithAccountDocument, type UtmClassificationKey, type UtmMetaPageDocument, type UtmOption, type UtmSourceKey, type UtmTrackingLinkDocument, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, type WebSafeFont, type WebSafeFontDisplay, type WebSafeFontMono, type WebSafeFontSans, type WebSafeFontSerif, datePlusDays, dateToday, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
2181
|
+
export { type BaseDocument, type BlockAnnouncementBar, type BlockBrandLogos, type BlockButtonGroup, type BlockContact, type BlockCtaLink, type BlockFaq, type BlockFullscreenContent, type BlockFullscreenContentType, type BlockTextDetails, type BlockVideoEmbed, type BlogPageDocument, type BlogPostBlock, type BlogPostDocument, type BrandStyleguideColor, type BrandStyleguideFont, CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, type CareersPageDocument, type CategoryDocument, type ClientDocument, type ClientEntityActions, type ClientEntityKey, type ClientEntityScope, type ClientProjectDocument, type ClientProjectStatus, ClientProjectStatusOptions, type ClientReportDocument, type ClientStyleguideDocument, type ClientUserDocument, type ComponentBlockAnnouncementBar, type ComponentBlockBrandLogos, type ComponentBlockButtonGroup, type ComponentBlockContact, type ComponentBlockCtaLink, type ComponentBlockFaq, type ComponentBlockFullscreenContent, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentBrandStyleguideColor, type ComponentBrandStyleguideFont, type ComponentFormDownload, type ComponentFormSelect, type ComponentOpenGraph, type ComponentSeoMeta, type ComponentSharedButton, type ComponentSharedLink, type ComponentSharedQuestionAnswer, type ComponentSharedRichTextBlock, type ComponentSlideContent, type ComponentSliderSettings, type ComponentSlideshow, type ComponentSlideshowSettings, type ComponentUtmOption, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_UTM_VALUE, type FormDownload, type FormDownloadKeys, type FormSelect, type FormUID, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringOrUndefined, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserPhone, InvalidUserPhoneType, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidCaptchaToken, IsValidClientTerm, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDateToday, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringOrUndefined, IsValidName, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedProvider, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringOrUndefined, IsValidStringList, IsValidStringListOrUndefined, IsValidStringSepListOfUrls, IsValidStringSepListOfUrlsOrUndefined, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlOrUndefined, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserPhone, IsValidUserPhoneRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmCampaignKeyNameOrUndefined, IsValidUtmLink, IsValidValue, type KeenSliderOrigin, type KeenSliderSliderSlides, LIMIT_BLOG_POST_PAGINATION_DEFAULT_SIZE, LIMIT_BLOG_POST_PAGINATION_MAX_SIZE, LIMIT_CATEGORIES_DEFAULT_SIZE, LIMIT_CATEGORIES_MAX_SIZE, LIMIT_CLIENT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_MAX_SIZE, LIMIT_CLIENT_USER_PAGINATION_DEFAULT_SIZE_LIMIT, LIMIT_CLIENT_USER_PAGINATION_MAX_SIZE_LIMIT, LIMIT_LONG_STRING_MAX_LENGTH, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MEDIUM_STRING_MAX_LENGTH, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_QUERY, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, LIMIT_PAGINATION_DEFAULT_SIZE, LIMIT_PAGINATION_MAX_SIZE, LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_DEFAULT_SIZE, LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_MAX_SIZE, LIMIT_PRODUCT_PAGINATION_DEFAULT_SIZE, LIMIT_PRODUCT_PAGINATION_MAX_SIZE, LIMIT_REDIRECT_PAGINATION_DEFAULT_SIZE, LIMIT_REDIRECT_PAGINATION_MAX_SIZE, LIMIT_SHORT_STRING_MAX_LENGTH, LIMIT_TABLE_PAGINATION_DEFAULT_SIZE, LIMIT_TAGS_DEFAULT_SIZE, LIMIT_TAGS_MAX_SIZE, LIMIT_TEAM_MEMBER_PAGINATION_DEFAULT_SIZE, LIMIT_TEAM_MEMBER_PAGINATION_MAX_SIZE, LIMIT_TREND_PAGINATION_DEFAULT_SIZE, LIMIT_TREND_PAGINATION_MAX_SIZE, LIMIT_USER_PAGINATION_DEFAULT_SIZE, LIMIT_USER_PAGINATION_MAX_SIZE, LIMIT_UTM_TRACKING_LINK_PAGINATION_DEFAULT_SIZE, LIMIT_UTM_TRACKING_LINK_PAGINATION_MAX_SIZE, type LandingPageDocument, type LeadDocument, type MediaFormat, type MediaFormats, type MediaPlatformDocument, type MediaUploadDocument, type OpenGraph, type PermissionDocument, type PolicyPageDocument, type ProductDocument, type ProductHighlightDocument, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_UTM_VALUE, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectClientProjects, type SConnectClientProjectsIn, type SConnectClientProjectsOut, SConnectClientReports, type SConnectClientReportsIn, type SConnectClientReportsOut, SConnectEntityRelation, type SConnectEntityRelationIn, type SConnectEntityRelationOut, SConnectMediaPlatforms, type SConnectMediaPlatformsIn, type SConnectMediaPlatformsOut, SCreateClientUserDocument, SCreateClientUserDocumentRequest, SCreateLead, SCreateNewsletterSignup, SCreateResume, SCreateResumeInfo, SCreateUtmTrackingLinkDocument, type SCreateUtmTrackingLinkDocumentInput, SCreateUtmTrackingLinkParts, SDeleteClientUserDocument, SDeleteUtmTrackingLinkDocument, SDisconnectClientProjects, type SDisconnectClientProjectsIn, type SDisconnectClientProjectsOut, SDisconnectClientReports, type SDisconnectClientReportsIn, type SDisconnectClientReportsOut, SDisconnectEntityRelation, type SDisconnectEntityRelationIn, type SDisconnectEntityRelationOut, SDisconnectMediaPlatforms, type SDisconnectMediaPlatformsIn, type SDisconnectMediaPlatformsOut, SEntityRelation, type SEntityRelationIn, type SEntityRelationOut, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, type SEntityRelationPositionIn, type SEntityRelationPositionOut, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadClientUserDocumentByDocumentId, SReadClientUserDocumentById, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUserByDocumentId, SReadUserById, SReadUtmTrackingLinkDocumentByDocumentId, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SSetClientProjects, type SSetClientProjectsIn, type SSetClientProjectsOut, SSetClientReports, type SSetClientReportsIn, type SSetClientReportsOut, SSetEntityRelation, type SSetEntityRelationIn, type SSetEntityRelationOut, SSetMediaPlatforms, type SSetMediaPlatformsIn, type SSetMediaPlatformsOut, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateResumeInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, type SeoMeta, type SharedButton, type SharedLink, type SharedQuestionAnswer, type SharedRichTextBlock, SharpSpringSignUpToDownload, type SlideContent, type SlideType, type SliderSettings, type SliderSpacing, type Slideshow, type SlideshowMode, type SlideshowSettings, type StrapiBgColorOptions, type StrapiDirection, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiGapSizes, type StrapiIconName, type StrapiIconPosition, type StrapiLinkReferrerPolicy, type StrapiLinkRel, type StrapiLinkTarget, type StrapiLinkType, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiSingleResponse, type StrapiTextColorOptions, type StrapiThemeOptions, type TagDocument, type TeamMemberDocument, type TeamPageDocument, type TrendDocument, type UrlRedirectDocument, type UrlRedirectQueryParams, type UrlRedirectStatusCode, type UserAccountDocument, type UserAuthorizationLoginResponse, type UserAuthorizationSuccessResponse, type UserDocument, type UserWithAccountDocument, type UtmClassificationKey, type UtmMetaPageDocument, type UtmOption, type UtmSourceKey, type UtmTrackingLinkDocument, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, type WebSafeFont, type WebSafeFontDisplay, type WebSafeFontMono, type WebSafeFontSans, type WebSafeFontSerif, datePlusDays, dateToday, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|