@joeygrable94/utm-src-pub-validators 0.0.18 → 0.0.19
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 +179 -114
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +254 -129
- package/dist/index.d.ts +254 -129
- package/dist/index.js +154 -102
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -167,7 +167,7 @@ declare const SCreateCampaignIdDocument: v.ObjectSchema<{
|
|
|
167
167
|
}, undefined>;
|
|
168
168
|
type SCreateCampaignIdDocument = v.InferOutput<typeof SCreateCampaignIdDocument>;
|
|
169
169
|
declare const SCreateCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
170
|
-
readonly documentId: v.StringSchema<
|
|
170
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
171
171
|
readonly data: v.ObjectSchema<{
|
|
172
172
|
readonly cost: v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>;
|
|
173
173
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
@@ -178,11 +178,11 @@ declare const SCreateCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
|
178
178
|
}, undefined>;
|
|
179
179
|
type SCreateCampaignIdDocumentRequest = v.InferOutput<typeof SCreateCampaignIdDocumentRequest>;
|
|
180
180
|
declare const SReadCampaignIdDocumentById: v.ObjectSchema<{
|
|
181
|
-
readonly id: v.NumberSchema<
|
|
181
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
182
182
|
}, undefined>;
|
|
183
183
|
type SReadCampaignIdDocumentById = v.InferOutput<typeof SReadCampaignIdDocumentById>;
|
|
184
184
|
declare const SReadCampaignIdDocumentByDocumentId: v.ObjectSchema<{
|
|
185
|
-
readonly documentId: v.StringSchema<
|
|
185
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
186
186
|
}, undefined>;
|
|
187
187
|
type SReadCampaignIdDocumentByDocumentId = v.InferOutput<typeof SReadCampaignIdDocumentByDocumentId>;
|
|
188
188
|
declare const SUpdateAsCreatorCampaignIdDocument: v.ObjectSchema<{
|
|
@@ -193,25 +193,34 @@ declare const SUpdateAsCreatorCampaignIdDocument: v.ObjectSchema<{
|
|
|
193
193
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
194
194
|
}, undefined>;
|
|
195
195
|
type SUpdateAsCreatorCampaignIdDocument = v.InferOutput<typeof SUpdateAsCreatorCampaignIdDocument>;
|
|
196
|
+
declare const SUpdateAsCreatorCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
197
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
198
|
+
readonly data: v.ObjectSchema<{
|
|
199
|
+
readonly cost: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>, undefined>;
|
|
200
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
201
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
202
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
203
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
204
|
+
}, undefined>;
|
|
205
|
+
}, undefined>;
|
|
206
|
+
type SUpdateAsCreatorCampaignIdDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignIdDocumentRequest>;
|
|
196
207
|
declare const SUpdateAsInvitedCampaignIdDocument: v.ObjectSchema<{
|
|
197
208
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
198
209
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
199
210
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
200
211
|
}, undefined>;
|
|
201
212
|
type SUpdateAsInvitedCampaignIdDocument = v.InferOutput<typeof SUpdateAsInvitedCampaignIdDocument>;
|
|
202
|
-
declare const
|
|
203
|
-
readonly documentId: v.StringSchema<
|
|
213
|
+
declare const SUpdateAsInvitedCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
214
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
204
215
|
readonly data: v.ObjectSchema<{
|
|
205
|
-
readonly cost: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>, undefined>;
|
|
206
216
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
207
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
208
217
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
209
218
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
210
219
|
}, undefined>;
|
|
211
220
|
}, undefined>;
|
|
212
|
-
type
|
|
221
|
+
type SUpdateAsInvitedCampaignIdDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignIdDocumentRequest>;
|
|
213
222
|
declare const SDeleteCampaignIdDocument: v.ObjectSchema<{
|
|
214
|
-
readonly documentId: v.StringSchema<
|
|
223
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
215
224
|
}, undefined>;
|
|
216
225
|
type SDeleteCampaignIdDocument = v.InferOutput<typeof SDeleteCampaignIdDocument>;
|
|
217
226
|
|
|
@@ -223,7 +232,7 @@ declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
|
|
|
223
232
|
}, undefined>;
|
|
224
233
|
type SCreateCampaignKeyDocument = v.InferOutput<typeof SCreateCampaignKeyDocument>;
|
|
225
234
|
declare const SCreateCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
226
|
-
readonly documentId: v.StringSchema<
|
|
235
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
227
236
|
readonly data: v.ObjectSchema<{
|
|
228
237
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
229
238
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
@@ -233,11 +242,11 @@ declare const SCreateCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
|
233
242
|
}, undefined>;
|
|
234
243
|
type SCreateCampaignKeyDocumentRequest = v.InferOutput<typeof SCreateCampaignKeyDocumentRequest>;
|
|
235
244
|
declare const SReadCampaignKeyDocumentById: v.ObjectSchema<{
|
|
236
|
-
readonly id: v.NumberSchema<
|
|
245
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
237
246
|
}, undefined>;
|
|
238
247
|
type SReadCampaignKeyDocumentById = v.InferOutput<typeof SReadCampaignKeyDocumentById>;
|
|
239
248
|
declare const SReadCampaignKeyDocumentByDocumentId: v.ObjectSchema<{
|
|
240
|
-
readonly documentId: v.StringSchema<
|
|
249
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
241
250
|
}, undefined>;
|
|
242
251
|
type SReadCampaignKeyDocumentByDocumentId = v.InferOutput<typeof SReadCampaignKeyDocumentByDocumentId>;
|
|
243
252
|
declare const SUpdateAsCreatorCampaignKeyDocument: v.ObjectSchema<{
|
|
@@ -247,24 +256,33 @@ declare const SUpdateAsCreatorCampaignKeyDocument: v.ObjectSchema<{
|
|
|
247
256
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
248
257
|
}, undefined>;
|
|
249
258
|
type SUpdateAsCreatorCampaignKeyDocument = v.InferOutput<typeof SUpdateAsCreatorCampaignKeyDocument>;
|
|
259
|
+
declare const SUpdateAsCreatorCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
260
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
261
|
+
readonly data: v.ObjectSchema<{
|
|
262
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
263
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
264
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
265
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
266
|
+
}, undefined>;
|
|
267
|
+
}, undefined>;
|
|
268
|
+
type SUpdateAsCreatorCampaignKeyDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignKeyDocumentRequest>;
|
|
250
269
|
declare const SUpdateAsInvitedCampaignKeyDocument: v.ObjectSchema<{
|
|
251
270
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
252
271
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
253
272
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
254
273
|
}, undefined>;
|
|
255
274
|
type SUpdateAsInvitedCampaignKeyDocument = v.InferOutput<typeof SUpdateAsInvitedCampaignKeyDocument>;
|
|
256
|
-
declare const
|
|
257
|
-
readonly documentId: v.StringSchema<
|
|
275
|
+
declare const SUpdateAsInvitedCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
276
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
258
277
|
readonly data: v.ObjectSchema<{
|
|
259
278
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
260
|
-
readonly
|
|
261
|
-
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
279
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
262
280
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
263
281
|
}, undefined>;
|
|
264
282
|
}, undefined>;
|
|
265
|
-
type
|
|
283
|
+
type SUpdateAsInvitedCampaignKeyDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignKeyDocumentRequest>;
|
|
266
284
|
declare const SDeleteCampaignKeyDocument: v.ObjectSchema<{
|
|
267
|
-
readonly documentId: v.StringSchema<
|
|
285
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
268
286
|
}, undefined>;
|
|
269
287
|
type SDeleteCampaignKeyDocument = v.InferOutput<typeof SDeleteCampaignKeyDocument>;
|
|
270
288
|
|
|
@@ -276,7 +294,7 @@ declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
|
|
|
276
294
|
}, undefined>;
|
|
277
295
|
type SCreateCampaignPhaseDocument = v.InferOutput<typeof SCreateCampaignPhaseDocument>;
|
|
278
296
|
declare const SCreateCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
279
|
-
readonly documentId: v.StringSchema<
|
|
297
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
280
298
|
readonly data: v.ObjectSchema<{
|
|
281
299
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
282
300
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
@@ -286,11 +304,11 @@ declare const SCreateCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
|
286
304
|
}, undefined>;
|
|
287
305
|
type SCreateCampaignPhaseDocumentRequest = v.InferOutput<typeof SCreateCampaignPhaseDocumentRequest>;
|
|
288
306
|
declare const SReadCampaignPhaseDocumentById: v.ObjectSchema<{
|
|
289
|
-
readonly id: v.NumberSchema<
|
|
307
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
290
308
|
}, undefined>;
|
|
291
309
|
type SReadCampaignPhaseDocumentById = v.InferOutput<typeof SReadCampaignPhaseDocumentById>;
|
|
292
310
|
declare const SReadCampaignPhaseDocumentByDocumentId: v.ObjectSchema<{
|
|
293
|
-
readonly documentId: v.StringSchema<
|
|
311
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
294
312
|
}, undefined>;
|
|
295
313
|
type SReadCampaignPhaseDocumentByDocumentId = v.InferOutput<typeof SReadCampaignPhaseDocumentByDocumentId>;
|
|
296
314
|
declare const SUpdateAsCreatorCampaignPhaseDocument: v.ObjectSchema<{
|
|
@@ -300,24 +318,33 @@ declare const SUpdateAsCreatorCampaignPhaseDocument: v.ObjectSchema<{
|
|
|
300
318
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
301
319
|
}, undefined>;
|
|
302
320
|
type SUpdateAsCreatorCampaignPhaseDocument = v.InferOutput<typeof SUpdateAsCreatorCampaignPhaseDocument>;
|
|
321
|
+
declare const SUpdateAsCreatorCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
322
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
323
|
+
readonly data: v.ObjectSchema<{
|
|
324
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
325
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
326
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
327
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
328
|
+
}, undefined>;
|
|
329
|
+
}, undefined>;
|
|
330
|
+
type SUpdateAsCreatorCampaignPhaseDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignPhaseDocumentRequest>;
|
|
303
331
|
declare const SUpdateAsInvitedCampaignPhaseDocument: v.ObjectSchema<{
|
|
304
332
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
305
333
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
306
334
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
307
335
|
}, undefined>;
|
|
308
336
|
type SUpdateAsInvitedCampaignPhaseDocument = v.InferOutput<typeof SUpdateAsInvitedCampaignPhaseDocument>;
|
|
309
|
-
declare const
|
|
310
|
-
readonly documentId: v.StringSchema<
|
|
337
|
+
declare const SUpdateAsInvitedCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
338
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
311
339
|
readonly data: v.ObjectSchema<{
|
|
312
340
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
313
|
-
readonly
|
|
314
|
-
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
341
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
315
342
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
316
343
|
}, undefined>;
|
|
317
344
|
}, undefined>;
|
|
318
|
-
type
|
|
345
|
+
type SUpdateAsInvitedCampaignPhaseDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignPhaseDocumentRequest>;
|
|
319
346
|
declare const SDeleteCampaignPhaseDocument: v.ObjectSchema<{
|
|
320
|
-
readonly documentId: v.StringSchema<
|
|
347
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
321
348
|
}, undefined>;
|
|
322
349
|
type SDeleteCampaignPhaseDocument = v.InferOutput<typeof SDeleteCampaignPhaseDocument>;
|
|
323
350
|
|
|
@@ -329,7 +356,7 @@ declare const SCreateCampaignProductDocument: v.ObjectSchema<{
|
|
|
329
356
|
}, undefined>;
|
|
330
357
|
type SCreateCampaignProductDocument = v.InferOutput<typeof SCreateCampaignProductDocument>;
|
|
331
358
|
declare const SCreateCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
332
|
-
readonly documentId: v.StringSchema<
|
|
359
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
333
360
|
readonly data: v.ObjectSchema<{
|
|
334
361
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
335
362
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
@@ -339,11 +366,11 @@ declare const SCreateCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
|
339
366
|
}, undefined>;
|
|
340
367
|
type SCreateCampaignProductDocumentRequest = v.InferOutput<typeof SCreateCampaignProductDocumentRequest>;
|
|
341
368
|
declare const SReadCampaignProductDocumentById: v.ObjectSchema<{
|
|
342
|
-
readonly id: v.NumberSchema<
|
|
369
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
343
370
|
}, undefined>;
|
|
344
371
|
type SReadCampaignProductDocumentById = v.InferOutput<typeof SReadCampaignProductDocumentById>;
|
|
345
372
|
declare const SReadCampaignProductDocumentByDocumentId: v.ObjectSchema<{
|
|
346
|
-
readonly documentId: v.StringSchema<
|
|
373
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
347
374
|
}, undefined>;
|
|
348
375
|
type SReadCampaignProductDocumentByDocumentId = v.InferOutput<typeof SReadCampaignProductDocumentByDocumentId>;
|
|
349
376
|
declare const SUpdateAsCreatorCampaignProductDocument: v.ObjectSchema<{
|
|
@@ -353,24 +380,33 @@ declare const SUpdateAsCreatorCampaignProductDocument: v.ObjectSchema<{
|
|
|
353
380
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
354
381
|
}, undefined>;
|
|
355
382
|
type SUpdateAsCreatorCampaignProductDocument = v.InferOutput<typeof SUpdateAsCreatorCampaignProductDocument>;
|
|
383
|
+
declare const SUpdateAsCreatorCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
384
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
385
|
+
readonly data: v.ObjectSchema<{
|
|
386
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
387
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
388
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
389
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
390
|
+
}, undefined>;
|
|
391
|
+
}, undefined>;
|
|
392
|
+
type SUpdateAsCreatorCampaignProductDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignProductDocumentRequest>;
|
|
356
393
|
declare const SUpdateAsInvitedCampaignProductDocument: v.ObjectSchema<{
|
|
357
394
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
358
395
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
359
396
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
360
397
|
}, undefined>;
|
|
361
398
|
type SUpdateAsInvitedCampaignProductDocument = v.InferOutput<typeof SUpdateAsInvitedCampaignProductDocument>;
|
|
362
|
-
declare const
|
|
363
|
-
readonly documentId: v.StringSchema<
|
|
399
|
+
declare const SUpdateAsInvitedCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
400
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
364
401
|
readonly data: v.ObjectSchema<{
|
|
365
402
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
366
|
-
readonly
|
|
367
|
-
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
403
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
368
404
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
369
405
|
}, undefined>;
|
|
370
406
|
}, undefined>;
|
|
371
|
-
type
|
|
407
|
+
type SUpdateAsInvitedCampaignProductDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignProductDocumentRequest>;
|
|
372
408
|
declare const SDeleteCampaignProductDocument: v.ObjectSchema<{
|
|
373
|
-
readonly documentId: v.StringSchema<
|
|
409
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
374
410
|
}, undefined>;
|
|
375
411
|
type SDeleteCampaignProductDocument = v.InferOutput<typeof SDeleteCampaignProductDocument>;
|
|
376
412
|
|
|
@@ -382,7 +418,7 @@ declare const SCreateContentDocument: v.ObjectSchema<{
|
|
|
382
418
|
}, undefined>;
|
|
383
419
|
type SCreateContentDocument = v.InferOutput<typeof SCreateContentDocument>;
|
|
384
420
|
declare const SCreateContentDocumentRequest: v.ObjectSchema<{
|
|
385
|
-
readonly documentId: v.StringSchema<
|
|
421
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
386
422
|
readonly data: v.ObjectSchema<{
|
|
387
423
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
388
424
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
@@ -392,11 +428,11 @@ declare const SCreateContentDocumentRequest: v.ObjectSchema<{
|
|
|
392
428
|
}, undefined>;
|
|
393
429
|
type SCreateContentDocumentRequest = v.InferOutput<typeof SCreateContentDocumentRequest>;
|
|
394
430
|
declare const SReadContentDocumentById: v.ObjectSchema<{
|
|
395
|
-
readonly id: v.NumberSchema<
|
|
431
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
396
432
|
}, undefined>;
|
|
397
433
|
type SReadContentDocumentById = v.InferOutput<typeof SReadContentDocumentById>;
|
|
398
434
|
declare const SReadContentDocumentByDocumentId: v.ObjectSchema<{
|
|
399
|
-
readonly documentId: v.StringSchema<
|
|
435
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
400
436
|
}, undefined>;
|
|
401
437
|
type SReadContentDocumentByDocumentId = v.InferOutput<typeof SReadContentDocumentByDocumentId>;
|
|
402
438
|
declare const SUpdateAsCreatorContentDocument: v.ObjectSchema<{
|
|
@@ -406,24 +442,33 @@ declare const SUpdateAsCreatorContentDocument: v.ObjectSchema<{
|
|
|
406
442
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
407
443
|
}, undefined>;
|
|
408
444
|
type SUpdateAsCreatorContentDocument = v.InferOutput<typeof SUpdateAsCreatorContentDocument>;
|
|
445
|
+
declare const SUpdateAsCreatorContentDocumentRequest: v.ObjectSchema<{
|
|
446
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
447
|
+
readonly data: v.ObjectSchema<{
|
|
448
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
449
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
450
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
451
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
452
|
+
}, undefined>;
|
|
453
|
+
}, undefined>;
|
|
454
|
+
type SUpdateAsCreatorContentDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorContentDocumentRequest>;
|
|
409
455
|
declare const SUpdateAsInvitedContentDocument: v.ObjectSchema<{
|
|
410
456
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
411
457
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
412
458
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
413
459
|
}, undefined>;
|
|
414
460
|
type SUpdateAsInvitedContentDocument = v.InferOutput<typeof SUpdateAsInvitedContentDocument>;
|
|
415
|
-
declare const
|
|
416
|
-
readonly documentId: v.StringSchema<
|
|
461
|
+
declare const SUpdateAsInvitedContentDocumentRequest: v.ObjectSchema<{
|
|
462
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
417
463
|
readonly data: v.ObjectSchema<{
|
|
418
464
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
419
|
-
readonly
|
|
420
|
-
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
465
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
421
466
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
422
467
|
}, undefined>;
|
|
423
468
|
}, undefined>;
|
|
424
|
-
type
|
|
469
|
+
type SUpdateAsInvitedContentDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedContentDocumentRequest>;
|
|
425
470
|
declare const SDeleteContentDocument: v.ObjectSchema<{
|
|
426
|
-
readonly documentId: v.StringSchema<
|
|
471
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
427
472
|
}, undefined>;
|
|
428
473
|
type SDeleteContentDocument = v.InferOutput<typeof SDeleteContentDocument>;
|
|
429
474
|
|
|
@@ -435,7 +480,7 @@ declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
|
435
480
|
}, undefined>;
|
|
436
481
|
type SCreateCreativeFormatVariantDocument = v.InferOutput<typeof SCreateCreativeFormatVariantDocument>;
|
|
437
482
|
declare const SCreateCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
438
|
-
readonly documentId: v.StringSchema<
|
|
483
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
439
484
|
readonly data: v.ObjectSchema<{
|
|
440
485
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
441
486
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
@@ -445,11 +490,11 @@ declare const SCreateCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
|
445
490
|
}, undefined>;
|
|
446
491
|
type SCreateCreativeFormatVariantDocumentRequest = v.InferOutput<typeof SCreateCreativeFormatVariantDocumentRequest>;
|
|
447
492
|
declare const SReadCreativeFormatVariantDocumentById: v.ObjectSchema<{
|
|
448
|
-
readonly id: v.NumberSchema<
|
|
493
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
449
494
|
}, undefined>;
|
|
450
495
|
type SReadCreativeFormatVariantDocumentById = v.InferOutput<typeof SReadCreativeFormatVariantDocumentById>;
|
|
451
496
|
declare const SReadCreativeFormatVariantDocumentByDocumentId: v.ObjectSchema<{
|
|
452
|
-
readonly documentId: v.StringSchema<
|
|
497
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
453
498
|
}, undefined>;
|
|
454
499
|
type SReadCreativeFormatVariantDocumentByDocumentId = v.InferOutput<typeof SReadCreativeFormatVariantDocumentByDocumentId>;
|
|
455
500
|
declare const SUpdateAsCreatorCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
@@ -459,24 +504,33 @@ declare const SUpdateAsCreatorCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
|
459
504
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
460
505
|
}, undefined>;
|
|
461
506
|
type SUpdateAsCreatorCreativeFormatVariantDocument = v.InferOutput<typeof SUpdateAsCreatorCreativeFormatVariantDocument>;
|
|
507
|
+
declare const SUpdateAsCreatorCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
508
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
509
|
+
readonly data: v.ObjectSchema<{
|
|
510
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
511
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
512
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
513
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
514
|
+
}, undefined>;
|
|
515
|
+
}, undefined>;
|
|
516
|
+
type SUpdateAsCreatorCreativeFormatVariantDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCreativeFormatVariantDocumentRequest>;
|
|
462
517
|
declare const SUpdateAsInvitedCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
463
518
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
464
519
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
465
520
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
466
521
|
}, undefined>;
|
|
467
522
|
type SUpdateAsInvitedCreativeFormatVariantDocument = v.InferOutput<typeof SUpdateAsInvitedCreativeFormatVariantDocument>;
|
|
468
|
-
declare const
|
|
469
|
-
readonly documentId: v.StringSchema<
|
|
523
|
+
declare const SUpdateAsInvitedCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
524
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
470
525
|
readonly data: v.ObjectSchema<{
|
|
471
526
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
472
|
-
readonly
|
|
473
|
-
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
527
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
474
528
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
475
529
|
}, undefined>;
|
|
476
530
|
}, undefined>;
|
|
477
|
-
type
|
|
531
|
+
type SUpdateAsInvitedCreativeFormatVariantDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCreativeFormatVariantDocumentRequest>;
|
|
478
532
|
declare const SDeleteCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
479
|
-
readonly documentId: v.StringSchema<
|
|
533
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
480
534
|
}, undefined>;
|
|
481
535
|
type SDeleteCreativeFormatVariantDocument = v.InferOutput<typeof SDeleteCreativeFormatVariantDocument>;
|
|
482
536
|
|
|
@@ -488,7 +542,7 @@ declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
|
|
|
488
542
|
}, undefined>;
|
|
489
543
|
type SCreateCreativeFormatDocument = v.InferOutput<typeof SCreateCreativeFormatDocument>;
|
|
490
544
|
declare const SCreateCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
491
|
-
readonly documentId: v.StringSchema<
|
|
545
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
492
546
|
readonly data: v.ObjectSchema<{
|
|
493
547
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
494
548
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
@@ -498,11 +552,11 @@ declare const SCreateCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
|
498
552
|
}, undefined>;
|
|
499
553
|
type SCreateCreativeFormatDocumentRequest = v.InferOutput<typeof SCreateCreativeFormatDocumentRequest>;
|
|
500
554
|
declare const SReadCreativeFormatDocumentById: v.ObjectSchema<{
|
|
501
|
-
readonly id: v.NumberSchema<
|
|
555
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
502
556
|
}, undefined>;
|
|
503
557
|
type SReadCreativeFormatDocumentById = v.InferOutput<typeof SReadCreativeFormatDocumentById>;
|
|
504
558
|
declare const SReadCreativeFormatDocumentByDocumentId: v.ObjectSchema<{
|
|
505
|
-
readonly documentId: v.StringSchema<
|
|
559
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
506
560
|
}, undefined>;
|
|
507
561
|
type SReadCreativeFormatDocumentByDocumentId = v.InferOutput<typeof SReadCreativeFormatDocumentByDocumentId>;
|
|
508
562
|
declare const SUpdateAsCreatorCreativeFormatDocument: v.ObjectSchema<{
|
|
@@ -512,24 +566,33 @@ declare const SUpdateAsCreatorCreativeFormatDocument: v.ObjectSchema<{
|
|
|
512
566
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
513
567
|
}, undefined>;
|
|
514
568
|
type SUpdateAsCreatorCreativeFormatDocument = v.InferOutput<typeof SUpdateAsCreatorCreativeFormatDocument>;
|
|
569
|
+
declare const SUpdateAsCreatorCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
570
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
571
|
+
readonly data: v.ObjectSchema<{
|
|
572
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
573
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
574
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
575
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
576
|
+
}, undefined>;
|
|
577
|
+
}, undefined>;
|
|
578
|
+
type SUpdateAsCreatorCreativeFormatDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCreativeFormatDocumentRequest>;
|
|
515
579
|
declare const SUpdateAsInvitedCreativeFormatDocument: v.ObjectSchema<{
|
|
516
580
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
517
581
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
518
582
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
519
583
|
}, undefined>;
|
|
520
584
|
type SUpdateAsInvitedCreativeFormatDocument = v.InferOutput<typeof SUpdateAsInvitedCreativeFormatDocument>;
|
|
521
|
-
declare const
|
|
522
|
-
readonly documentId: v.StringSchema<
|
|
585
|
+
declare const SUpdateAsInvitedCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
586
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
523
587
|
readonly data: v.ObjectSchema<{
|
|
524
588
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
525
|
-
readonly
|
|
526
|
-
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
589
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
527
590
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
528
591
|
}, undefined>;
|
|
529
592
|
}, undefined>;
|
|
530
|
-
type
|
|
593
|
+
type SUpdateAsInvitedCreativeFormatDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCreativeFormatDocumentRequest>;
|
|
531
594
|
declare const SDeleteCreativeFormatDocument: v.ObjectSchema<{
|
|
532
|
-
readonly documentId: v.StringSchema<
|
|
595
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
533
596
|
}, undefined>;
|
|
534
597
|
type SDeleteCreativeFormatDocument = v.InferOutput<typeof SDeleteCreativeFormatDocument>;
|
|
535
598
|
|
|
@@ -540,7 +603,7 @@ declare const SCreateGroupUserDocument: v.ObjectSchema<{
|
|
|
540
603
|
}, undefined>;
|
|
541
604
|
type SCreateGroupUserDocument = v.InferOutput<typeof SCreateGroupUserDocument>;
|
|
542
605
|
declare const SCreateGroupUserDocumentRequest: v.ObjectSchema<{
|
|
543
|
-
readonly documentId: v.StringSchema<
|
|
606
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
544
607
|
readonly data: v.ObjectSchema<{
|
|
545
608
|
readonly group: v.StringSchema<"please provide a valid document id">;
|
|
546
609
|
readonly user: v.StringSchema<"please provide a valid document id">;
|
|
@@ -549,11 +612,11 @@ declare const SCreateGroupUserDocumentRequest: v.ObjectSchema<{
|
|
|
549
612
|
}, undefined>;
|
|
550
613
|
type SCreateGroupUserDocumentRequest = v.InferOutput<typeof SCreateGroupUserDocumentRequest>;
|
|
551
614
|
declare const SReadGroupUserDocumentById: v.ObjectSchema<{
|
|
552
|
-
readonly id: v.NumberSchema<
|
|
615
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
553
616
|
}, undefined>;
|
|
554
617
|
type SReadGroupUserDocumentById = v.InferOutput<typeof SReadGroupUserDocumentById>;
|
|
555
618
|
declare const SReadGroupUserDocumentByDocumentId: v.ObjectSchema<{
|
|
556
|
-
readonly documentId: v.StringSchema<
|
|
619
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
557
620
|
}, undefined>;
|
|
558
621
|
type SReadGroupUserDocumentByDocumentId = v.InferOutput<typeof SReadGroupUserDocumentByDocumentId>;
|
|
559
622
|
declare const SUpdateGroupUserDocument: v.ObjectSchema<{
|
|
@@ -563,7 +626,7 @@ declare const SUpdateGroupUserDocument: v.ObjectSchema<{
|
|
|
563
626
|
}, undefined>;
|
|
564
627
|
type SUpdateGroupUserDocument = v.InferOutput<typeof SUpdateGroupUserDocument>;
|
|
565
628
|
declare const SUpdateGroupUserDocumentRequest: v.ObjectSchema<{
|
|
566
|
-
readonly documentId: v.StringSchema<
|
|
629
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
567
630
|
readonly data: v.ObjectSchema<{
|
|
568
631
|
readonly group: v.StringSchema<"please provide a valid document id">;
|
|
569
632
|
readonly user: v.StringSchema<"please provide a valid document id">;
|
|
@@ -572,7 +635,7 @@ declare const SUpdateGroupUserDocumentRequest: v.ObjectSchema<{
|
|
|
572
635
|
}, undefined>;
|
|
573
636
|
type SUpdateGroupUserDocumentRequest = v.InferOutput<typeof SUpdateGroupUserDocumentRequest>;
|
|
574
637
|
declare const SDeleteGroupUserDocument: v.ObjectSchema<{
|
|
575
|
-
readonly documentId: v.StringSchema<
|
|
638
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
576
639
|
}, undefined>;
|
|
577
640
|
type SDeleteGroupUserDocument = v.InferOutput<typeof SDeleteGroupUserDocument>;
|
|
578
641
|
|
|
@@ -586,11 +649,11 @@ declare const SCreateGroupDocument: v.ObjectSchema<{
|
|
|
586
649
|
}, undefined>;
|
|
587
650
|
type SCreateGroupDocument = v.InferOutput<typeof SCreateGroupDocument>;
|
|
588
651
|
declare const SReadGroupDocumentById: v.ObjectSchema<{
|
|
589
|
-
readonly id: v.NumberSchema<
|
|
652
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
590
653
|
}, undefined>;
|
|
591
654
|
type SReadGroupDocumentById = v.InferOutput<typeof SReadGroupDocumentById>;
|
|
592
655
|
declare const SReadGroupDocumentByDocumentId: v.ObjectSchema<{
|
|
593
|
-
readonly documentId: v.StringSchema<
|
|
656
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
594
657
|
}, undefined>;
|
|
595
658
|
type SReadGroupDocumentByDocumentId = v.InferOutput<typeof SReadGroupDocumentByDocumentId>;
|
|
596
659
|
declare const SUpdateAsCreatorGroupDocument: v.ObjectSchema<{
|
|
@@ -602,25 +665,33 @@ declare const SUpdateAsCreatorGroupDocument: v.ObjectSchema<{
|
|
|
602
665
|
readonly apply_value_as: v.UndefinedableSchema<v.PicklistSchema<["prefix", "suffix"], undefined>, undefined>;
|
|
603
666
|
}, undefined>;
|
|
604
667
|
type SUpdateAsCreatorGroupDocument = v.InferOutput<typeof SUpdateAsCreatorGroupDocument>;
|
|
668
|
+
declare const SUpdateAsCreatorGroupDocumentRequest: v.ObjectSchema<{
|
|
669
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
670
|
+
readonly data: v.ObjectSchema<{
|
|
671
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
672
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
673
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
674
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
675
|
+
readonly apply_value_to: v.UndefinedableSchema<v.PicklistSchema<["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
676
|
+
readonly apply_value_as: v.UndefinedableSchema<v.PicklistSchema<["prefix", "suffix"], undefined>, undefined>;
|
|
677
|
+
}, undefined>;
|
|
678
|
+
}, undefined>;
|
|
679
|
+
type SUpdateAsCreatorGroupDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorGroupDocumentRequest>;
|
|
605
680
|
declare const SUpdateAsInvitedGroupDocument: v.ObjectSchema<{
|
|
606
681
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
607
682
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
608
683
|
}, undefined>;
|
|
609
684
|
type SUpdateAsInvitedGroupDocument = v.InferOutput<typeof SUpdateAsInvitedGroupDocument>;
|
|
610
|
-
declare const
|
|
611
|
-
readonly documentId: v.StringSchema<
|
|
685
|
+
declare const SUpdateAsInvitedGroupDocumentRequest: v.ObjectSchema<{
|
|
686
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
612
687
|
readonly data: v.ObjectSchema<{
|
|
613
688
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
614
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
615
689
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
616
|
-
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
617
|
-
readonly apply_value_to: v.UndefinedableSchema<v.PicklistSchema<["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
618
|
-
readonly apply_value_as: v.UndefinedableSchema<v.PicklistSchema<["prefix", "suffix"], undefined>, undefined>;
|
|
619
690
|
}, undefined>;
|
|
620
691
|
}, undefined>;
|
|
621
|
-
type
|
|
692
|
+
type SUpdateAsInvitedGroupDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedGroupDocumentRequest>;
|
|
622
693
|
declare const SDeleteGroupDocument: v.ObjectSchema<{
|
|
623
|
-
readonly documentId: v.StringSchema<
|
|
694
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
624
695
|
}, undefined>;
|
|
625
696
|
type SDeleteGroupDocument = v.InferOutput<typeof SDeleteGroupDocument>;
|
|
626
697
|
|
|
@@ -632,7 +703,7 @@ declare const SCreateMediumDocument: v.ObjectSchema<{
|
|
|
632
703
|
}, undefined>;
|
|
633
704
|
type SCreateMediumDocument = v.InferOutput<typeof SCreateMediumDocument>;
|
|
634
705
|
declare const SCreateMediumDocumentRequest: v.ObjectSchema<{
|
|
635
|
-
readonly documentId: v.StringSchema<
|
|
706
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
636
707
|
readonly data: v.ObjectSchema<{
|
|
637
708
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
638
709
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
@@ -642,11 +713,11 @@ declare const SCreateMediumDocumentRequest: v.ObjectSchema<{
|
|
|
642
713
|
}, undefined>;
|
|
643
714
|
type SCreateMediumDocumentRequest = v.InferOutput<typeof SCreateMediumDocumentRequest>;
|
|
644
715
|
declare const SReadMediumDocumentById: v.ObjectSchema<{
|
|
645
|
-
readonly id: v.NumberSchema<
|
|
716
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
646
717
|
}, undefined>;
|
|
647
718
|
type SReadMediumDocumentById = v.InferOutput<typeof SReadMediumDocumentById>;
|
|
648
719
|
declare const SReadMediumDocumentByDocumentId: v.ObjectSchema<{
|
|
649
|
-
readonly documentId: v.StringSchema<
|
|
720
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
650
721
|
}, undefined>;
|
|
651
722
|
type SReadMediumDocumentByDocumentId = v.InferOutput<typeof SReadMediumDocumentByDocumentId>;
|
|
652
723
|
declare const SUpdateAsCreatorMediumDocument: v.ObjectSchema<{
|
|
@@ -656,24 +727,33 @@ declare const SUpdateAsCreatorMediumDocument: v.ObjectSchema<{
|
|
|
656
727
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
657
728
|
}, undefined>;
|
|
658
729
|
type SUpdateAsCreatorMediumDocument = v.InferOutput<typeof SUpdateAsCreatorMediumDocument>;
|
|
730
|
+
declare const SUpdateAsCreatorMediumDocumentRequest: v.ObjectSchema<{
|
|
731
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
732
|
+
readonly data: v.ObjectSchema<{
|
|
733
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
734
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
735
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
736
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
737
|
+
}, undefined>;
|
|
738
|
+
}, undefined>;
|
|
739
|
+
type SUpdateAsCreatorMediumDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorMediumDocumentRequest>;
|
|
659
740
|
declare const SUpdateAsInvitedMediumDocument: v.ObjectSchema<{
|
|
660
741
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
661
742
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
662
743
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
663
744
|
}, undefined>;
|
|
664
745
|
type SUpdateAsInvitedMediumDocument = v.InferOutput<typeof SUpdateAsInvitedMediumDocument>;
|
|
665
|
-
declare const
|
|
666
|
-
readonly documentId: v.StringSchema<
|
|
746
|
+
declare const SUpdateAsInvitedMediumDocumentRequest: v.ObjectSchema<{
|
|
747
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
667
748
|
readonly data: v.ObjectSchema<{
|
|
668
749
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
669
|
-
readonly
|
|
670
|
-
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
750
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
671
751
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
672
752
|
}, undefined>;
|
|
673
753
|
}, undefined>;
|
|
674
|
-
type
|
|
754
|
+
type SUpdateAsInvitedMediumDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedMediumDocumentRequest>;
|
|
675
755
|
declare const SDeleteMediumDocument: v.ObjectSchema<{
|
|
676
|
-
readonly documentId: v.StringSchema<
|
|
756
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
677
757
|
}, undefined>;
|
|
678
758
|
type SDeleteMediumDocument = v.InferOutput<typeof SDeleteMediumDocument>;
|
|
679
759
|
|
|
@@ -685,7 +765,7 @@ declare const SCreateSourceDocument: v.ObjectSchema<{
|
|
|
685
765
|
}, undefined>;
|
|
686
766
|
type SCreateSourceDocument = v.InferOutput<typeof SCreateSourceDocument>;
|
|
687
767
|
declare const SCreateSourceDocumentRequest: v.ObjectSchema<{
|
|
688
|
-
readonly documentId: v.StringSchema<
|
|
768
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
689
769
|
readonly data: v.ObjectSchema<{
|
|
690
770
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
691
771
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
@@ -695,11 +775,11 @@ declare const SCreateSourceDocumentRequest: v.ObjectSchema<{
|
|
|
695
775
|
}, undefined>;
|
|
696
776
|
type SCreateSourceDocumentRequest = v.InferOutput<typeof SCreateSourceDocumentRequest>;
|
|
697
777
|
declare const SReadSourceDocumentById: v.ObjectSchema<{
|
|
698
|
-
readonly id: v.NumberSchema<
|
|
778
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
699
779
|
}, undefined>;
|
|
700
780
|
type SReadSourceDocumentById = v.InferOutput<typeof SReadSourceDocumentById>;
|
|
701
781
|
declare const SReadSourceDocumentByDocumentId: v.ObjectSchema<{
|
|
702
|
-
readonly documentId: v.StringSchema<
|
|
782
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
703
783
|
}, undefined>;
|
|
704
784
|
type SReadSourceDocumentByDocumentId = v.InferOutput<typeof SReadSourceDocumentByDocumentId>;
|
|
705
785
|
declare const SUpdateAsCreatorSourceDocument: v.ObjectSchema<{
|
|
@@ -709,24 +789,33 @@ declare const SUpdateAsCreatorSourceDocument: v.ObjectSchema<{
|
|
|
709
789
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
710
790
|
}, undefined>;
|
|
711
791
|
type SUpdateAsCreatorSourceDocument = v.InferOutput<typeof SUpdateAsCreatorSourceDocument>;
|
|
792
|
+
declare const SUpdateAsCreatorSourceDocumentRequest: v.ObjectSchema<{
|
|
793
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
794
|
+
readonly data: v.ObjectSchema<{
|
|
795
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
796
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
797
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
798
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
799
|
+
}, undefined>;
|
|
800
|
+
}, undefined>;
|
|
801
|
+
type SUpdateAsCreatorSourceDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorSourceDocumentRequest>;
|
|
712
802
|
declare const SUpdateAsInvitedSourceDocument: v.ObjectSchema<{
|
|
713
803
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
714
804
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
715
805
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
716
806
|
}, undefined>;
|
|
717
807
|
type SUpdateAsInvitedSourceDocument = v.InferOutput<typeof SUpdateAsInvitedSourceDocument>;
|
|
718
|
-
declare const
|
|
719
|
-
readonly documentId: v.StringSchema<
|
|
808
|
+
declare const SUpdateAsInvitedSourceDocumentRequest: v.ObjectSchema<{
|
|
809
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
720
810
|
readonly data: v.ObjectSchema<{
|
|
721
811
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
722
|
-
readonly
|
|
723
|
-
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
812
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
724
813
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
725
814
|
}, undefined>;
|
|
726
815
|
}, undefined>;
|
|
727
|
-
type
|
|
816
|
+
type SUpdateAsInvitedSourceDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedSourceDocumentRequest>;
|
|
728
817
|
declare const SDeleteSourceDocument: v.ObjectSchema<{
|
|
729
|
-
readonly documentId: v.StringSchema<
|
|
818
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
730
819
|
}, undefined>;
|
|
731
820
|
type SDeleteSourceDocument = v.InferOutput<typeof SDeleteSourceDocument>;
|
|
732
821
|
|
|
@@ -761,7 +850,7 @@ declare const SCreateTermDocument: v.ObjectSchema<{
|
|
|
761
850
|
}, undefined>;
|
|
762
851
|
type SCreateTermDocument = v.InferOutput<typeof SCreateTermDocument>;
|
|
763
852
|
declare const SCreateTermDocumentRequest: v.ObjectSchema<{
|
|
764
|
-
readonly documentId: v.StringSchema<
|
|
853
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
765
854
|
readonly data: v.ObjectSchema<{
|
|
766
855
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
767
856
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
@@ -771,11 +860,11 @@ declare const SCreateTermDocumentRequest: v.ObjectSchema<{
|
|
|
771
860
|
}, undefined>;
|
|
772
861
|
type SCreateTermDocumentRequest = v.InferOutput<typeof SCreateTermDocumentRequest>;
|
|
773
862
|
declare const SReadTermDocumentById: v.ObjectSchema<{
|
|
774
|
-
readonly id: v.NumberSchema<
|
|
863
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
775
864
|
}, undefined>;
|
|
776
865
|
type SReadTermDocumentById = v.InferOutput<typeof SReadTermDocumentById>;
|
|
777
866
|
declare const SReadTermDocumentByDocumentId: v.ObjectSchema<{
|
|
778
|
-
readonly documentId: v.StringSchema<
|
|
867
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
779
868
|
}, undefined>;
|
|
780
869
|
type SReadTermDocumentByDocumentId = v.InferOutput<typeof SReadTermDocumentByDocumentId>;
|
|
781
870
|
declare const SUpdateAsCreatorTermDocument: v.ObjectSchema<{
|
|
@@ -785,24 +874,33 @@ declare const SUpdateAsCreatorTermDocument: v.ObjectSchema<{
|
|
|
785
874
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
786
875
|
}, undefined>;
|
|
787
876
|
type SUpdateAsCreatorTermDocument = v.InferOutput<typeof SUpdateAsCreatorTermDocument>;
|
|
877
|
+
declare const SUpdateAsCreatorTermDocumentRequest: v.ObjectSchema<{
|
|
878
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
879
|
+
readonly data: v.ObjectSchema<{
|
|
880
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
881
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
882
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
883
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
884
|
+
}, undefined>;
|
|
885
|
+
}, undefined>;
|
|
886
|
+
type SUpdateAsCreatorTermDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorTermDocumentRequest>;
|
|
788
887
|
declare const SUpdateAsInvitedTermDocument: v.ObjectSchema<{
|
|
789
888
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
790
889
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
791
890
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
792
891
|
}, undefined>;
|
|
793
892
|
type SUpdateAsInvitedTermDocument = v.InferOutput<typeof SUpdateAsInvitedTermDocument>;
|
|
794
|
-
declare const
|
|
795
|
-
readonly documentId: v.StringSchema<
|
|
893
|
+
declare const SUpdateAsInvitedTermDocumentRequest: v.ObjectSchema<{
|
|
894
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
796
895
|
readonly data: v.ObjectSchema<{
|
|
797
896
|
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
798
|
-
readonly
|
|
799
|
-
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
897
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
800
898
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
801
899
|
}, undefined>;
|
|
802
900
|
}, undefined>;
|
|
803
|
-
type
|
|
901
|
+
type SUpdateAsInvitedTermDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedTermDocumentRequest>;
|
|
804
902
|
declare const SDeleteTermDocument: v.ObjectSchema<{
|
|
805
|
-
readonly documentId: v.StringSchema<
|
|
903
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
806
904
|
}, undefined>;
|
|
807
905
|
type SDeleteTermDocument = v.InferOutput<typeof SDeleteTermDocument>;
|
|
808
906
|
|
|
@@ -824,7 +922,7 @@ declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
|
|
|
824
922
|
}, undefined>;
|
|
825
923
|
type SCreateTrackingLinkDocument = v.InferOutput<typeof SCreateTrackingLinkDocument>;
|
|
826
924
|
declare const SCreateTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
827
|
-
readonly documentId: v.StringSchema<
|
|
925
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
828
926
|
readonly data: v.ObjectSchema<{
|
|
829
927
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
830
928
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
@@ -844,11 +942,11 @@ declare const SCreateTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
844
942
|
}, undefined>;
|
|
845
943
|
type SCreateTrackingLinkDocumentRequest = v.InferOutput<typeof SCreateTrackingLinkDocumentRequest>;
|
|
846
944
|
declare const SReadTrackingLinkDocumentById: v.ObjectSchema<{
|
|
847
|
-
readonly id: v.NumberSchema<
|
|
945
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
848
946
|
}, undefined>;
|
|
849
947
|
type SReadTrackingLinkDocumentById = v.InferOutput<typeof SReadTrackingLinkDocumentById>;
|
|
850
948
|
declare const SReadTrackingLinkDocumentByDocumentId: v.ObjectSchema<{
|
|
851
|
-
readonly documentId: v.StringSchema<
|
|
949
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
852
950
|
}, undefined>;
|
|
853
951
|
type SReadTrackingLinkDocumentByDocumentId = v.InferOutput<typeof SReadTrackingLinkDocumentByDocumentId>;
|
|
854
952
|
declare const SUpdateAsCreatorTrackingLinkDocument: v.ObjectSchema<{
|
|
@@ -868,6 +966,26 @@ declare const SUpdateAsCreatorTrackingLinkDocument: v.ObjectSchema<{
|
|
|
868
966
|
readonly utm_id: 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>;
|
|
869
967
|
}, undefined>;
|
|
870
968
|
type SUpdateAsCreatorTrackingLinkDocument = v.InferOutput<typeof SUpdateAsCreatorTrackingLinkDocument>;
|
|
969
|
+
declare const SUpdateAsCreatorTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
970
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
971
|
+
readonly data: v.ObjectSchema<{
|
|
972
|
+
readonly is_active: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
973
|
+
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
974
|
+
readonly protocol: v.UndefinedableSchema<v.PicklistSchema<["http", "https"], "please provide a valid url protocol">, undefined>;
|
|
975
|
+
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
976
|
+
readonly path: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url path">, v.TrimAction, v.MinLengthAction<string, 1, "the url path is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url path is too long, it must be 2038 characters or less">]>, undefined>;
|
|
977
|
+
readonly query: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url query">, v.TrimAction, v.MinLengthAction<string, 1, "the url query is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url query is too long, it must be 2038 characters or less">]>, undefined>;
|
|
978
|
+
readonly fragment: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url hash/fragment">, v.TrimAction, v.MinLengthAction<string, 1, "the url hash/fragment is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url hash/fragment is too long, it must be 2038 characters or less">]>, undefined>;
|
|
979
|
+
readonly utm_source: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_source is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2026, "the utm_source is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_source can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
980
|
+
readonly utm_medium: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_medium is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2026, "the utm_medium is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_medium can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
981
|
+
readonly utm_campaign: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_campaign is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2024, "the utm_campaign is too long, it must be 2024 characters or less">, v.RegexAction<string, "utm_campaign can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
982
|
+
readonly utm_creative_format: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_creative_format is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2017, "the utm_creative_format is too long, it must be 2017 characters or less">, v.RegexAction<string, "utm_creative_format can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
983
|
+
readonly utm_content: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_content is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2025, "the utm_content is too long, it must be 2025 characters or less">, v.RegexAction<string, "utm_content can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
984
|
+
readonly utm_term: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_term is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2028, "the utm_term is too long, it must be 2028 characters or less">, v.RegexAction<string, "utm_term can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
985
|
+
readonly utm_id: 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>;
|
|
986
|
+
}, undefined>;
|
|
987
|
+
}, undefined>;
|
|
988
|
+
type SUpdateAsCreatorTrackingLinkDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorTrackingLinkDocumentRequest>;
|
|
871
989
|
declare const SUpdateAsInvitedTrackingLinkDocument: v.ObjectSchema<{
|
|
872
990
|
readonly is_active: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
873
991
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
@@ -885,8 +1003,8 @@ declare const SUpdateAsInvitedTrackingLinkDocument: v.ObjectSchema<{
|
|
|
885
1003
|
readonly utm_id: 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>;
|
|
886
1004
|
}, undefined>;
|
|
887
1005
|
type SUpdateAsInvitedTrackingLinkDocument = v.InferOutput<typeof SUpdateAsInvitedTrackingLinkDocument>;
|
|
888
|
-
declare const
|
|
889
|
-
readonly documentId: v.StringSchema<
|
|
1006
|
+
declare const SUpdateAsInvitedTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
1007
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
890
1008
|
readonly data: v.ObjectSchema<{
|
|
891
1009
|
readonly is_active: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
892
1010
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
@@ -904,9 +1022,9 @@ declare const SUpdateTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
904
1022
|
readonly utm_id: 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>;
|
|
905
1023
|
}, undefined>;
|
|
906
1024
|
}, undefined>;
|
|
907
|
-
type
|
|
1025
|
+
type SUpdateAsInvitedTrackingLinkDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedTrackingLinkDocumentRequest>;
|
|
908
1026
|
declare const SDeleteTrackingLinkDocument: v.ObjectSchema<{
|
|
909
|
-
readonly documentId: v.StringSchema<
|
|
1027
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
910
1028
|
}, undefined>;
|
|
911
1029
|
type SDeleteTrackingLinkDocument = v.InferOutput<typeof SDeleteTrackingLinkDocument>;
|
|
912
1030
|
|
|
@@ -920,11 +1038,11 @@ declare const SCreateUserAccountDocument: v.ObjectSchema<{
|
|
|
920
1038
|
}, undefined>;
|
|
921
1039
|
type SCreateUserAccountDocument = v.InferOutput<typeof SCreateUserAccountDocument>;
|
|
922
1040
|
declare const SReadUserAccountDocumentById: v.ObjectSchema<{
|
|
923
|
-
readonly id: v.NumberSchema<
|
|
1041
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
924
1042
|
}, undefined>;
|
|
925
1043
|
type SReadUserAccountDocumentById = v.InferOutput<typeof SReadUserAccountDocumentById>;
|
|
926
1044
|
declare const SReadUserAccountDocumentByDocumentId: v.ObjectSchema<{
|
|
927
|
-
readonly documentId: v.StringSchema<
|
|
1045
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
928
1046
|
}, undefined>;
|
|
929
1047
|
type SReadUserAccountDocumentByDocumentId = v.InferOutput<typeof SReadUserAccountDocumentByDocumentId>;
|
|
930
1048
|
declare const SUpdateUserAccountDocument: v.ObjectSchema<{
|
|
@@ -954,11 +1072,11 @@ declare const SCreateUserLimitationsDocument: v.ObjectSchema<{
|
|
|
954
1072
|
}, undefined>;
|
|
955
1073
|
type SCreateUserLimitationsDocument = v.InferOutput<typeof SCreateUserLimitationsDocument>;
|
|
956
1074
|
declare const SReadUserLimitationsDocumentById: v.ObjectSchema<{
|
|
957
|
-
readonly id: v.NumberSchema<
|
|
1075
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
958
1076
|
}, undefined>;
|
|
959
1077
|
type SReadUserLimitationsDocumentById = v.InferOutput<typeof SReadUserLimitationsDocumentById>;
|
|
960
1078
|
declare const SReadUserLimitationsDocumentByDocumentId: v.ObjectSchema<{
|
|
961
|
-
readonly documentId: v.StringSchema<
|
|
1079
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
962
1080
|
}, undefined>;
|
|
963
1081
|
type SReadUserLimitationsDocumentByDocumentId = v.InferOutput<typeof SReadUserLimitationsDocumentByDocumentId>;
|
|
964
1082
|
declare const SUpdateUserLimitationsDocument: v.ObjectSchema<{
|
|
@@ -1004,11 +1122,11 @@ declare const SResetPasswordUserDocument: v.ObjectSchema<{
|
|
|
1004
1122
|
}, undefined>;
|
|
1005
1123
|
type SResetPasswordUserDocument = v.InferOutput<typeof SResetPasswordUserDocument>;
|
|
1006
1124
|
declare const SReadUserDocumentById: v.ObjectSchema<{
|
|
1007
|
-
readonly id: v.NumberSchema<
|
|
1125
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
1008
1126
|
}, undefined>;
|
|
1009
1127
|
type SReadUserDocumentById = v.InferOutput<typeof SReadUserDocumentById>;
|
|
1010
1128
|
declare const SReadUserDocumentByDocumentId: v.ObjectSchema<{
|
|
1011
|
-
readonly documentId: v.StringSchema<
|
|
1129
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1012
1130
|
}, undefined>;
|
|
1013
1131
|
type SReadUserDocumentByDocumentId = v.InferOutput<typeof SReadUserDocumentByDocumentId>;
|
|
1014
1132
|
|
|
@@ -1020,7 +1138,7 @@ declare const SCreateWebsiteDocument: v.ObjectSchema<{
|
|
|
1020
1138
|
}, undefined>;
|
|
1021
1139
|
type SCreateWebsiteDocument = v.InferOutput<typeof SCreateWebsiteDocument>;
|
|
1022
1140
|
declare const SCreateWebsiteDocumentRequest: v.ObjectSchema<{
|
|
1023
|
-
readonly documentId: v.StringSchema<
|
|
1141
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1024
1142
|
readonly data: v.ObjectSchema<{
|
|
1025
1143
|
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
1026
1144
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
@@ -1030,11 +1148,11 @@ declare const SCreateWebsiteDocumentRequest: v.ObjectSchema<{
|
|
|
1030
1148
|
}, undefined>;
|
|
1031
1149
|
type SCreateWebsiteDocumentRequest = v.InferOutput<typeof SCreateWebsiteDocumentRequest>;
|
|
1032
1150
|
declare const SReadWebsiteDocumentById: v.ObjectSchema<{
|
|
1033
|
-
readonly id: v.NumberSchema<
|
|
1151
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
1034
1152
|
}, undefined>;
|
|
1035
1153
|
type SReadWebsiteDocumentById = v.InferOutput<typeof SReadWebsiteDocumentById>;
|
|
1036
1154
|
declare const SReadWebsiteDocumentByDocumentId: v.ObjectSchema<{
|
|
1037
|
-
readonly documentId: v.StringSchema<
|
|
1155
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1038
1156
|
}, undefined>;
|
|
1039
1157
|
type SReadWebsiteDocumentByDocumentId = v.InferOutput<typeof SReadWebsiteDocumentByDocumentId>;
|
|
1040
1158
|
declare const SUpdateAsCreatorWebsiteDocument: v.ObjectSchema<{
|
|
@@ -1044,23 +1162,30 @@ declare const SUpdateAsCreatorWebsiteDocument: v.ObjectSchema<{
|
|
|
1044
1162
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1045
1163
|
}, undefined>;
|
|
1046
1164
|
type SUpdateAsCreatorWebsiteDocument = v.InferOutput<typeof SUpdateAsCreatorWebsiteDocument>;
|
|
1165
|
+
declare const SUpdateAsCreatorWebsiteDocumentRequest: v.ObjectSchema<{
|
|
1166
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1167
|
+
readonly data: v.ObjectSchema<{
|
|
1168
|
+
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
1169
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1170
|
+
readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
|
|
1171
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1172
|
+
}, undefined>;
|
|
1173
|
+
}, undefined>;
|
|
1174
|
+
type SUpdateAsCreatorWebsiteDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorWebsiteDocumentRequest>;
|
|
1047
1175
|
declare const SUpdateAsInvitedWebsiteDocument: v.ObjectSchema<{
|
|
1048
1176
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1049
1177
|
}, undefined>;
|
|
1050
1178
|
type SUpdateAsInvitedWebsiteDocument = v.InferOutput<typeof SUpdateAsInvitedWebsiteDocument>;
|
|
1051
|
-
declare const
|
|
1052
|
-
readonly documentId: v.StringSchema<
|
|
1179
|
+
declare const SUpdateAsInvitedWebsiteDocumentRequest: v.ObjectSchema<{
|
|
1180
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1053
1181
|
readonly data: v.ObjectSchema<{
|
|
1054
|
-
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
1055
1182
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1056
|
-
readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
|
|
1057
|
-
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1058
1183
|
}, undefined>;
|
|
1059
1184
|
}, undefined>;
|
|
1060
|
-
type
|
|
1185
|
+
type SUpdateAsInvitedWebsiteDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedWebsiteDocumentRequest>;
|
|
1061
1186
|
declare const SDeleteWebsiteDocument: v.ObjectSchema<{
|
|
1062
|
-
readonly documentId: v.StringSchema<
|
|
1187
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1063
1188
|
}, undefined>;
|
|
1064
1189
|
type SDeleteWebsiteDocument = v.InferOutput<typeof SDeleteWebsiteDocument>;
|
|
1065
1190
|
|
|
1066
|
-
export { ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, 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_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, 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, REGEX_DOMAIN, REGEX_VALUE, SCreateCampaignIdDocument, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateSourceDocument, SCreateSourceDocumentRequest, SCreateTermDocument, SCreateTermDocumentRequest, SCreateTrackingLinkDocument, SCreateTrackingLinkDocumentRequest, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreateWebsiteDocumentRequest, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SLoginUserDocument, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SResetPasswordUserDocument, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorContentDocument, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorWebsiteDocument, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignKeyDocument,
|
|
1191
|
+
export { ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, 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_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, 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, REGEX_DOMAIN, REGEX_VALUE, SCreateCampaignIdDocument, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateSourceDocument, SCreateSourceDocumentRequest, SCreateTermDocument, SCreateTermDocumentRequest, SCreateTrackingLinkDocument, SCreateTrackingLinkDocumentRequest, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreateWebsiteDocumentRequest, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SLoginUserDocument, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SResetPasswordUserDocument, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, type SubscriptionStatusValue, datePlusDays, dateToday, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|