@joeygrable94/utm-src-pub-validators 0.0.18 → 0.0.20
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 +226 -117
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +263 -134
- package/dist/index.d.ts +263 -134
- package/dist/index.js +198 -105
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -52,6 +52,10 @@ declare const ERROR_MESSAGE_REGEX_VALUE = "can only contain letters, numbers, an
|
|
|
52
52
|
declare const REGEX_DOMAIN: RegExp;
|
|
53
53
|
declare const ERROR_MESSAGE_REGEX_DOMAIN = "please provide a valid domain name";
|
|
54
54
|
|
|
55
|
+
declare const GROUP_ENTITY_KEYS: string[];
|
|
56
|
+
declare const GROUP_ENTITY_ACTIONS: string[];
|
|
57
|
+
declare const GROUP_ENTITY_SCOPES: string[];
|
|
58
|
+
|
|
55
59
|
type ValidateAndCleanSuccess<T> = {
|
|
56
60
|
data: Partial<T>;
|
|
57
61
|
error: null;
|
|
@@ -93,7 +97,7 @@ declare const IsValidOrUndefinedApplyValueTo: v.UndefinedableSchema<v.PicklistSc
|
|
|
93
97
|
declare const IsValidApplyValueAs: v.PicklistSchema<["prefix", "suffix"], undefined>;
|
|
94
98
|
declare const IsValidOrUndefinedApplyValueAs: v.UndefinedableSchema<v.PicklistSchema<["prefix", "suffix"], undefined>, undefined>;
|
|
95
99
|
|
|
96
|
-
declare const IsValidGroupUserScopes: v.ArraySchema<v.StringSchema<"please provide a valid scope">, "please provide an array of scopes">;
|
|
100
|
+
declare const IsValidGroupUserScopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<string[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<string[], 1, "you must provide at least one scope">, v.MaxLengthAction<string[], number, "you cannot provide more scopes than available">]>;
|
|
97
101
|
|
|
98
102
|
declare const IsValidProductId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a product_id">, v.TrimAction, v.MinLengthAction<string, 2, "the product_id is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the product_id is too long, it must be 64 characters or less">]>;
|
|
99
103
|
declare const IsValidOrUndefinedProductId: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a product_id">, v.TrimAction, v.MinLengthAction<string, 2, "the product_id is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the product_id is too long, it must be 64 characters or less">]>, undefined>;
|
|
@@ -167,7 +171,7 @@ declare const SCreateCampaignIdDocument: v.ObjectSchema<{
|
|
|
167
171
|
}, undefined>;
|
|
168
172
|
type SCreateCampaignIdDocument = v.InferOutput<typeof SCreateCampaignIdDocument>;
|
|
169
173
|
declare const SCreateCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
170
|
-
readonly documentId: v.StringSchema<
|
|
174
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
171
175
|
readonly data: v.ObjectSchema<{
|
|
172
176
|
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
177
|
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 +182,11 @@ declare const SCreateCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
|
178
182
|
}, undefined>;
|
|
179
183
|
type SCreateCampaignIdDocumentRequest = v.InferOutput<typeof SCreateCampaignIdDocumentRequest>;
|
|
180
184
|
declare const SReadCampaignIdDocumentById: v.ObjectSchema<{
|
|
181
|
-
readonly id: v.NumberSchema<
|
|
185
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
182
186
|
}, undefined>;
|
|
183
187
|
type SReadCampaignIdDocumentById = v.InferOutput<typeof SReadCampaignIdDocumentById>;
|
|
184
188
|
declare const SReadCampaignIdDocumentByDocumentId: v.ObjectSchema<{
|
|
185
|
-
readonly documentId: v.StringSchema<
|
|
189
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
186
190
|
}, undefined>;
|
|
187
191
|
type SReadCampaignIdDocumentByDocumentId = v.InferOutput<typeof SReadCampaignIdDocumentByDocumentId>;
|
|
188
192
|
declare const SUpdateAsCreatorCampaignIdDocument: v.ObjectSchema<{
|
|
@@ -193,25 +197,34 @@ declare const SUpdateAsCreatorCampaignIdDocument: v.ObjectSchema<{
|
|
|
193
197
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
194
198
|
}, undefined>;
|
|
195
199
|
type SUpdateAsCreatorCampaignIdDocument = v.InferOutput<typeof SUpdateAsCreatorCampaignIdDocument>;
|
|
200
|
+
declare const SUpdateAsCreatorCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
201
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
202
|
+
readonly data: v.ObjectSchema<{
|
|
203
|
+
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>;
|
|
204
|
+
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>;
|
|
205
|
+
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>;
|
|
206
|
+
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>;
|
|
207
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
208
|
+
}, undefined>;
|
|
209
|
+
}, undefined>;
|
|
210
|
+
type SUpdateAsCreatorCampaignIdDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignIdDocumentRequest>;
|
|
196
211
|
declare const SUpdateAsInvitedCampaignIdDocument: v.ObjectSchema<{
|
|
197
212
|
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
213
|
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
214
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
200
215
|
}, undefined>;
|
|
201
216
|
type SUpdateAsInvitedCampaignIdDocument = v.InferOutput<typeof SUpdateAsInvitedCampaignIdDocument>;
|
|
202
|
-
declare const
|
|
203
|
-
readonly documentId: v.StringSchema<
|
|
217
|
+
declare const SUpdateAsInvitedCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
218
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
204
219
|
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
220
|
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
221
|
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
222
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
210
223
|
}, undefined>;
|
|
211
224
|
}, undefined>;
|
|
212
|
-
type
|
|
225
|
+
type SUpdateAsInvitedCampaignIdDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignIdDocumentRequest>;
|
|
213
226
|
declare const SDeleteCampaignIdDocument: v.ObjectSchema<{
|
|
214
|
-
readonly documentId: v.StringSchema<
|
|
227
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
215
228
|
}, undefined>;
|
|
216
229
|
type SDeleteCampaignIdDocument = v.InferOutput<typeof SDeleteCampaignIdDocument>;
|
|
217
230
|
|
|
@@ -223,7 +236,7 @@ declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
|
|
|
223
236
|
}, undefined>;
|
|
224
237
|
type SCreateCampaignKeyDocument = v.InferOutput<typeof SCreateCampaignKeyDocument>;
|
|
225
238
|
declare const SCreateCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
226
|
-
readonly documentId: v.StringSchema<
|
|
239
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
227
240
|
readonly data: v.ObjectSchema<{
|
|
228
241
|
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
242
|
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 +246,11 @@ declare const SCreateCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
|
233
246
|
}, undefined>;
|
|
234
247
|
type SCreateCampaignKeyDocumentRequest = v.InferOutput<typeof SCreateCampaignKeyDocumentRequest>;
|
|
235
248
|
declare const SReadCampaignKeyDocumentById: v.ObjectSchema<{
|
|
236
|
-
readonly id: v.NumberSchema<
|
|
249
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
237
250
|
}, undefined>;
|
|
238
251
|
type SReadCampaignKeyDocumentById = v.InferOutput<typeof SReadCampaignKeyDocumentById>;
|
|
239
252
|
declare const SReadCampaignKeyDocumentByDocumentId: v.ObjectSchema<{
|
|
240
|
-
readonly documentId: v.StringSchema<
|
|
253
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
241
254
|
}, undefined>;
|
|
242
255
|
type SReadCampaignKeyDocumentByDocumentId = v.InferOutput<typeof SReadCampaignKeyDocumentByDocumentId>;
|
|
243
256
|
declare const SUpdateAsCreatorCampaignKeyDocument: v.ObjectSchema<{
|
|
@@ -247,24 +260,33 @@ declare const SUpdateAsCreatorCampaignKeyDocument: v.ObjectSchema<{
|
|
|
247
260
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
248
261
|
}, undefined>;
|
|
249
262
|
type SUpdateAsCreatorCampaignKeyDocument = v.InferOutput<typeof SUpdateAsCreatorCampaignKeyDocument>;
|
|
263
|
+
declare const SUpdateAsCreatorCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
264
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
265
|
+
readonly data: v.ObjectSchema<{
|
|
266
|
+
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>;
|
|
267
|
+
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>;
|
|
268
|
+
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>;
|
|
269
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
270
|
+
}, undefined>;
|
|
271
|
+
}, undefined>;
|
|
272
|
+
type SUpdateAsCreatorCampaignKeyDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignKeyDocumentRequest>;
|
|
250
273
|
declare const SUpdateAsInvitedCampaignKeyDocument: v.ObjectSchema<{
|
|
251
274
|
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
275
|
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
276
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
254
277
|
}, undefined>;
|
|
255
278
|
type SUpdateAsInvitedCampaignKeyDocument = v.InferOutput<typeof SUpdateAsInvitedCampaignKeyDocument>;
|
|
256
|
-
declare const
|
|
257
|
-
readonly documentId: v.StringSchema<
|
|
279
|
+
declare const SUpdateAsInvitedCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
280
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
258
281
|
readonly data: v.ObjectSchema<{
|
|
259
282
|
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>;
|
|
283
|
+
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
284
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
263
285
|
}, undefined>;
|
|
264
286
|
}, undefined>;
|
|
265
|
-
type
|
|
287
|
+
type SUpdateAsInvitedCampaignKeyDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignKeyDocumentRequest>;
|
|
266
288
|
declare const SDeleteCampaignKeyDocument: v.ObjectSchema<{
|
|
267
|
-
readonly documentId: v.StringSchema<
|
|
289
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
268
290
|
}, undefined>;
|
|
269
291
|
type SDeleteCampaignKeyDocument = v.InferOutput<typeof SDeleteCampaignKeyDocument>;
|
|
270
292
|
|
|
@@ -276,7 +298,7 @@ declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
|
|
|
276
298
|
}, undefined>;
|
|
277
299
|
type SCreateCampaignPhaseDocument = v.InferOutput<typeof SCreateCampaignPhaseDocument>;
|
|
278
300
|
declare const SCreateCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
279
|
-
readonly documentId: v.StringSchema<
|
|
301
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
280
302
|
readonly data: v.ObjectSchema<{
|
|
281
303
|
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
304
|
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 +308,11 @@ declare const SCreateCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
|
286
308
|
}, undefined>;
|
|
287
309
|
type SCreateCampaignPhaseDocumentRequest = v.InferOutput<typeof SCreateCampaignPhaseDocumentRequest>;
|
|
288
310
|
declare const SReadCampaignPhaseDocumentById: v.ObjectSchema<{
|
|
289
|
-
readonly id: v.NumberSchema<
|
|
311
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
290
312
|
}, undefined>;
|
|
291
313
|
type SReadCampaignPhaseDocumentById = v.InferOutput<typeof SReadCampaignPhaseDocumentById>;
|
|
292
314
|
declare const SReadCampaignPhaseDocumentByDocumentId: v.ObjectSchema<{
|
|
293
|
-
readonly documentId: v.StringSchema<
|
|
315
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
294
316
|
}, undefined>;
|
|
295
317
|
type SReadCampaignPhaseDocumentByDocumentId = v.InferOutput<typeof SReadCampaignPhaseDocumentByDocumentId>;
|
|
296
318
|
declare const SUpdateAsCreatorCampaignPhaseDocument: v.ObjectSchema<{
|
|
@@ -300,24 +322,33 @@ declare const SUpdateAsCreatorCampaignPhaseDocument: v.ObjectSchema<{
|
|
|
300
322
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
301
323
|
}, undefined>;
|
|
302
324
|
type SUpdateAsCreatorCampaignPhaseDocument = v.InferOutput<typeof SUpdateAsCreatorCampaignPhaseDocument>;
|
|
325
|
+
declare const SUpdateAsCreatorCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
326
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
327
|
+
readonly data: v.ObjectSchema<{
|
|
328
|
+
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>;
|
|
329
|
+
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>;
|
|
330
|
+
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>;
|
|
331
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
332
|
+
}, undefined>;
|
|
333
|
+
}, undefined>;
|
|
334
|
+
type SUpdateAsCreatorCampaignPhaseDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignPhaseDocumentRequest>;
|
|
303
335
|
declare const SUpdateAsInvitedCampaignPhaseDocument: v.ObjectSchema<{
|
|
304
336
|
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
337
|
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
338
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
307
339
|
}, undefined>;
|
|
308
340
|
type SUpdateAsInvitedCampaignPhaseDocument = v.InferOutput<typeof SUpdateAsInvitedCampaignPhaseDocument>;
|
|
309
|
-
declare const
|
|
310
|
-
readonly documentId: v.StringSchema<
|
|
341
|
+
declare const SUpdateAsInvitedCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
342
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
311
343
|
readonly data: v.ObjectSchema<{
|
|
312
344
|
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>;
|
|
345
|
+
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
346
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
316
347
|
}, undefined>;
|
|
317
348
|
}, undefined>;
|
|
318
|
-
type
|
|
349
|
+
type SUpdateAsInvitedCampaignPhaseDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignPhaseDocumentRequest>;
|
|
319
350
|
declare const SDeleteCampaignPhaseDocument: v.ObjectSchema<{
|
|
320
|
-
readonly documentId: v.StringSchema<
|
|
351
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
321
352
|
}, undefined>;
|
|
322
353
|
type SDeleteCampaignPhaseDocument = v.InferOutput<typeof SDeleteCampaignPhaseDocument>;
|
|
323
354
|
|
|
@@ -329,7 +360,7 @@ declare const SCreateCampaignProductDocument: v.ObjectSchema<{
|
|
|
329
360
|
}, undefined>;
|
|
330
361
|
type SCreateCampaignProductDocument = v.InferOutput<typeof SCreateCampaignProductDocument>;
|
|
331
362
|
declare const SCreateCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
332
|
-
readonly documentId: v.StringSchema<
|
|
363
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
333
364
|
readonly data: v.ObjectSchema<{
|
|
334
365
|
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
366
|
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 +370,11 @@ declare const SCreateCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
|
339
370
|
}, undefined>;
|
|
340
371
|
type SCreateCampaignProductDocumentRequest = v.InferOutput<typeof SCreateCampaignProductDocumentRequest>;
|
|
341
372
|
declare const SReadCampaignProductDocumentById: v.ObjectSchema<{
|
|
342
|
-
readonly id: v.NumberSchema<
|
|
373
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
343
374
|
}, undefined>;
|
|
344
375
|
type SReadCampaignProductDocumentById = v.InferOutput<typeof SReadCampaignProductDocumentById>;
|
|
345
376
|
declare const SReadCampaignProductDocumentByDocumentId: v.ObjectSchema<{
|
|
346
|
-
readonly documentId: v.StringSchema<
|
|
377
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
347
378
|
}, undefined>;
|
|
348
379
|
type SReadCampaignProductDocumentByDocumentId = v.InferOutput<typeof SReadCampaignProductDocumentByDocumentId>;
|
|
349
380
|
declare const SUpdateAsCreatorCampaignProductDocument: v.ObjectSchema<{
|
|
@@ -353,24 +384,33 @@ declare const SUpdateAsCreatorCampaignProductDocument: v.ObjectSchema<{
|
|
|
353
384
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
354
385
|
}, undefined>;
|
|
355
386
|
type SUpdateAsCreatorCampaignProductDocument = v.InferOutput<typeof SUpdateAsCreatorCampaignProductDocument>;
|
|
387
|
+
declare const SUpdateAsCreatorCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
388
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
389
|
+
readonly data: v.ObjectSchema<{
|
|
390
|
+
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>;
|
|
391
|
+
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>;
|
|
392
|
+
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>;
|
|
393
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
394
|
+
}, undefined>;
|
|
395
|
+
}, undefined>;
|
|
396
|
+
type SUpdateAsCreatorCampaignProductDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignProductDocumentRequest>;
|
|
356
397
|
declare const SUpdateAsInvitedCampaignProductDocument: v.ObjectSchema<{
|
|
357
398
|
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
399
|
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
400
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
360
401
|
}, undefined>;
|
|
361
402
|
type SUpdateAsInvitedCampaignProductDocument = v.InferOutput<typeof SUpdateAsInvitedCampaignProductDocument>;
|
|
362
|
-
declare const
|
|
363
|
-
readonly documentId: v.StringSchema<
|
|
403
|
+
declare const SUpdateAsInvitedCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
404
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
364
405
|
readonly data: v.ObjectSchema<{
|
|
365
406
|
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>;
|
|
407
|
+
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
408
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
369
409
|
}, undefined>;
|
|
370
410
|
}, undefined>;
|
|
371
|
-
type
|
|
411
|
+
type SUpdateAsInvitedCampaignProductDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignProductDocumentRequest>;
|
|
372
412
|
declare const SDeleteCampaignProductDocument: v.ObjectSchema<{
|
|
373
|
-
readonly documentId: v.StringSchema<
|
|
413
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
374
414
|
}, undefined>;
|
|
375
415
|
type SDeleteCampaignProductDocument = v.InferOutput<typeof SDeleteCampaignProductDocument>;
|
|
376
416
|
|
|
@@ -382,7 +422,7 @@ declare const SCreateContentDocument: v.ObjectSchema<{
|
|
|
382
422
|
}, undefined>;
|
|
383
423
|
type SCreateContentDocument = v.InferOutput<typeof SCreateContentDocument>;
|
|
384
424
|
declare const SCreateContentDocumentRequest: v.ObjectSchema<{
|
|
385
|
-
readonly documentId: v.StringSchema<
|
|
425
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
386
426
|
readonly data: v.ObjectSchema<{
|
|
387
427
|
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
428
|
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 +432,11 @@ declare const SCreateContentDocumentRequest: v.ObjectSchema<{
|
|
|
392
432
|
}, undefined>;
|
|
393
433
|
type SCreateContentDocumentRequest = v.InferOutput<typeof SCreateContentDocumentRequest>;
|
|
394
434
|
declare const SReadContentDocumentById: v.ObjectSchema<{
|
|
395
|
-
readonly id: v.NumberSchema<
|
|
435
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
396
436
|
}, undefined>;
|
|
397
437
|
type SReadContentDocumentById = v.InferOutput<typeof SReadContentDocumentById>;
|
|
398
438
|
declare const SReadContentDocumentByDocumentId: v.ObjectSchema<{
|
|
399
|
-
readonly documentId: v.StringSchema<
|
|
439
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
400
440
|
}, undefined>;
|
|
401
441
|
type SReadContentDocumentByDocumentId = v.InferOutput<typeof SReadContentDocumentByDocumentId>;
|
|
402
442
|
declare const SUpdateAsCreatorContentDocument: v.ObjectSchema<{
|
|
@@ -406,24 +446,33 @@ declare const SUpdateAsCreatorContentDocument: v.ObjectSchema<{
|
|
|
406
446
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
407
447
|
}, undefined>;
|
|
408
448
|
type SUpdateAsCreatorContentDocument = v.InferOutput<typeof SUpdateAsCreatorContentDocument>;
|
|
449
|
+
declare const SUpdateAsCreatorContentDocumentRequest: v.ObjectSchema<{
|
|
450
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
451
|
+
readonly data: v.ObjectSchema<{
|
|
452
|
+
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>;
|
|
453
|
+
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>;
|
|
454
|
+
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>;
|
|
455
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
456
|
+
}, undefined>;
|
|
457
|
+
}, undefined>;
|
|
458
|
+
type SUpdateAsCreatorContentDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorContentDocumentRequest>;
|
|
409
459
|
declare const SUpdateAsInvitedContentDocument: v.ObjectSchema<{
|
|
410
460
|
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
461
|
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
462
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
413
463
|
}, undefined>;
|
|
414
464
|
type SUpdateAsInvitedContentDocument = v.InferOutput<typeof SUpdateAsInvitedContentDocument>;
|
|
415
|
-
declare const
|
|
416
|
-
readonly documentId: v.StringSchema<
|
|
465
|
+
declare const SUpdateAsInvitedContentDocumentRequest: v.ObjectSchema<{
|
|
466
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
417
467
|
readonly data: v.ObjectSchema<{
|
|
418
468
|
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>;
|
|
469
|
+
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
470
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
422
471
|
}, undefined>;
|
|
423
472
|
}, undefined>;
|
|
424
|
-
type
|
|
473
|
+
type SUpdateAsInvitedContentDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedContentDocumentRequest>;
|
|
425
474
|
declare const SDeleteContentDocument: v.ObjectSchema<{
|
|
426
|
-
readonly documentId: v.StringSchema<
|
|
475
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
427
476
|
}, undefined>;
|
|
428
477
|
type SDeleteContentDocument = v.InferOutput<typeof SDeleteContentDocument>;
|
|
429
478
|
|
|
@@ -435,7 +484,7 @@ declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
|
435
484
|
}, undefined>;
|
|
436
485
|
type SCreateCreativeFormatVariantDocument = v.InferOutput<typeof SCreateCreativeFormatVariantDocument>;
|
|
437
486
|
declare const SCreateCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
438
|
-
readonly documentId: v.StringSchema<
|
|
487
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
439
488
|
readonly data: v.ObjectSchema<{
|
|
440
489
|
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
490
|
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 +494,11 @@ declare const SCreateCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
|
445
494
|
}, undefined>;
|
|
446
495
|
type SCreateCreativeFormatVariantDocumentRequest = v.InferOutput<typeof SCreateCreativeFormatVariantDocumentRequest>;
|
|
447
496
|
declare const SReadCreativeFormatVariantDocumentById: v.ObjectSchema<{
|
|
448
|
-
readonly id: v.NumberSchema<
|
|
497
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
449
498
|
}, undefined>;
|
|
450
499
|
type SReadCreativeFormatVariantDocumentById = v.InferOutput<typeof SReadCreativeFormatVariantDocumentById>;
|
|
451
500
|
declare const SReadCreativeFormatVariantDocumentByDocumentId: v.ObjectSchema<{
|
|
452
|
-
readonly documentId: v.StringSchema<
|
|
501
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
453
502
|
}, undefined>;
|
|
454
503
|
type SReadCreativeFormatVariantDocumentByDocumentId = v.InferOutput<typeof SReadCreativeFormatVariantDocumentByDocumentId>;
|
|
455
504
|
declare const SUpdateAsCreatorCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
@@ -459,24 +508,33 @@ declare const SUpdateAsCreatorCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
|
459
508
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
460
509
|
}, undefined>;
|
|
461
510
|
type SUpdateAsCreatorCreativeFormatVariantDocument = v.InferOutput<typeof SUpdateAsCreatorCreativeFormatVariantDocument>;
|
|
511
|
+
declare const SUpdateAsCreatorCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
512
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
513
|
+
readonly data: v.ObjectSchema<{
|
|
514
|
+
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>;
|
|
515
|
+
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>;
|
|
516
|
+
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>;
|
|
517
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
518
|
+
}, undefined>;
|
|
519
|
+
}, undefined>;
|
|
520
|
+
type SUpdateAsCreatorCreativeFormatVariantDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCreativeFormatVariantDocumentRequest>;
|
|
462
521
|
declare const SUpdateAsInvitedCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
463
522
|
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
523
|
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
524
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
466
525
|
}, undefined>;
|
|
467
526
|
type SUpdateAsInvitedCreativeFormatVariantDocument = v.InferOutput<typeof SUpdateAsInvitedCreativeFormatVariantDocument>;
|
|
468
|
-
declare const
|
|
469
|
-
readonly documentId: v.StringSchema<
|
|
527
|
+
declare const SUpdateAsInvitedCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
528
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
470
529
|
readonly data: v.ObjectSchema<{
|
|
471
530
|
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>;
|
|
531
|
+
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
532
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
475
533
|
}, undefined>;
|
|
476
534
|
}, undefined>;
|
|
477
|
-
type
|
|
535
|
+
type SUpdateAsInvitedCreativeFormatVariantDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCreativeFormatVariantDocumentRequest>;
|
|
478
536
|
declare const SDeleteCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
479
|
-
readonly documentId: v.StringSchema<
|
|
537
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
480
538
|
}, undefined>;
|
|
481
539
|
type SDeleteCreativeFormatVariantDocument = v.InferOutput<typeof SDeleteCreativeFormatVariantDocument>;
|
|
482
540
|
|
|
@@ -488,7 +546,7 @@ declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
|
|
|
488
546
|
}, undefined>;
|
|
489
547
|
type SCreateCreativeFormatDocument = v.InferOutput<typeof SCreateCreativeFormatDocument>;
|
|
490
548
|
declare const SCreateCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
491
|
-
readonly documentId: v.StringSchema<
|
|
549
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
492
550
|
readonly data: v.ObjectSchema<{
|
|
493
551
|
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
552
|
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 +556,11 @@ declare const SCreateCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
|
498
556
|
}, undefined>;
|
|
499
557
|
type SCreateCreativeFormatDocumentRequest = v.InferOutput<typeof SCreateCreativeFormatDocumentRequest>;
|
|
500
558
|
declare const SReadCreativeFormatDocumentById: v.ObjectSchema<{
|
|
501
|
-
readonly id: v.NumberSchema<
|
|
559
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
502
560
|
}, undefined>;
|
|
503
561
|
type SReadCreativeFormatDocumentById = v.InferOutput<typeof SReadCreativeFormatDocumentById>;
|
|
504
562
|
declare const SReadCreativeFormatDocumentByDocumentId: v.ObjectSchema<{
|
|
505
|
-
readonly documentId: v.StringSchema<
|
|
563
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
506
564
|
}, undefined>;
|
|
507
565
|
type SReadCreativeFormatDocumentByDocumentId = v.InferOutput<typeof SReadCreativeFormatDocumentByDocumentId>;
|
|
508
566
|
declare const SUpdateAsCreatorCreativeFormatDocument: v.ObjectSchema<{
|
|
@@ -512,67 +570,76 @@ declare const SUpdateAsCreatorCreativeFormatDocument: v.ObjectSchema<{
|
|
|
512
570
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
513
571
|
}, undefined>;
|
|
514
572
|
type SUpdateAsCreatorCreativeFormatDocument = v.InferOutput<typeof SUpdateAsCreatorCreativeFormatDocument>;
|
|
573
|
+
declare const SUpdateAsCreatorCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
574
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
575
|
+
readonly data: v.ObjectSchema<{
|
|
576
|
+
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>;
|
|
577
|
+
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>;
|
|
578
|
+
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>;
|
|
579
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
580
|
+
}, undefined>;
|
|
581
|
+
}, undefined>;
|
|
582
|
+
type SUpdateAsCreatorCreativeFormatDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCreativeFormatDocumentRequest>;
|
|
515
583
|
declare const SUpdateAsInvitedCreativeFormatDocument: v.ObjectSchema<{
|
|
516
584
|
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
585
|
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
586
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
519
587
|
}, undefined>;
|
|
520
588
|
type SUpdateAsInvitedCreativeFormatDocument = v.InferOutput<typeof SUpdateAsInvitedCreativeFormatDocument>;
|
|
521
|
-
declare const
|
|
522
|
-
readonly documentId: v.StringSchema<
|
|
589
|
+
declare const SUpdateAsInvitedCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
590
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
523
591
|
readonly data: v.ObjectSchema<{
|
|
524
592
|
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>;
|
|
593
|
+
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
594
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
528
595
|
}, undefined>;
|
|
529
596
|
}, undefined>;
|
|
530
|
-
type
|
|
597
|
+
type SUpdateAsInvitedCreativeFormatDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCreativeFormatDocumentRequest>;
|
|
531
598
|
declare const SDeleteCreativeFormatDocument: v.ObjectSchema<{
|
|
532
|
-
readonly documentId: v.StringSchema<
|
|
599
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
533
600
|
}, undefined>;
|
|
534
601
|
type SDeleteCreativeFormatDocument = v.InferOutput<typeof SDeleteCreativeFormatDocument>;
|
|
535
602
|
|
|
536
603
|
declare const SCreateGroupUserDocument: v.ObjectSchema<{
|
|
537
604
|
readonly group: v.StringSchema<"please provide a valid document id">;
|
|
538
605
|
readonly user: v.StringSchema<"please provide a valid document id">;
|
|
539
|
-
readonly scopes: v.ArraySchema<v.StringSchema<"please provide a valid scope">, "please provide an array of scopes">;
|
|
606
|
+
readonly scopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<string[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<string[], 1, "you must provide at least one scope">, v.MaxLengthAction<string[], number, "you cannot provide more scopes than available">]>;
|
|
540
607
|
}, undefined>;
|
|
541
608
|
type SCreateGroupUserDocument = v.InferOutput<typeof SCreateGroupUserDocument>;
|
|
542
609
|
declare const SCreateGroupUserDocumentRequest: v.ObjectSchema<{
|
|
543
|
-
readonly documentId: v.StringSchema<
|
|
610
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
544
611
|
readonly data: v.ObjectSchema<{
|
|
545
612
|
readonly group: v.StringSchema<"please provide a valid document id">;
|
|
546
613
|
readonly user: v.StringSchema<"please provide a valid document id">;
|
|
547
|
-
readonly scopes: v.ArraySchema<v.StringSchema<"please provide a valid scope">, "please provide an array of scopes">;
|
|
614
|
+
readonly scopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<string[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<string[], 1, "you must provide at least one scope">, v.MaxLengthAction<string[], number, "you cannot provide more scopes than available">]>;
|
|
548
615
|
}, undefined>;
|
|
549
616
|
}, undefined>;
|
|
550
617
|
type SCreateGroupUserDocumentRequest = v.InferOutput<typeof SCreateGroupUserDocumentRequest>;
|
|
551
618
|
declare const SReadGroupUserDocumentById: v.ObjectSchema<{
|
|
552
|
-
readonly id: v.NumberSchema<
|
|
619
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
553
620
|
}, undefined>;
|
|
554
621
|
type SReadGroupUserDocumentById = v.InferOutput<typeof SReadGroupUserDocumentById>;
|
|
555
622
|
declare const SReadGroupUserDocumentByDocumentId: v.ObjectSchema<{
|
|
556
|
-
readonly documentId: v.StringSchema<
|
|
623
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
557
624
|
}, undefined>;
|
|
558
625
|
type SReadGroupUserDocumentByDocumentId = v.InferOutput<typeof SReadGroupUserDocumentByDocumentId>;
|
|
559
626
|
declare const SUpdateGroupUserDocument: v.ObjectSchema<{
|
|
560
627
|
readonly group: v.StringSchema<"please provide a valid document id">;
|
|
561
628
|
readonly user: v.StringSchema<"please provide a valid document id">;
|
|
562
|
-
readonly scopes: v.ArraySchema<v.StringSchema<"please provide a valid scope">, "please provide an array of scopes">;
|
|
629
|
+
readonly scopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<string[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<string[], 1, "you must provide at least one scope">, v.MaxLengthAction<string[], number, "you cannot provide more scopes than available">]>;
|
|
563
630
|
}, undefined>;
|
|
564
631
|
type SUpdateGroupUserDocument = v.InferOutput<typeof SUpdateGroupUserDocument>;
|
|
565
632
|
declare const SUpdateGroupUserDocumentRequest: v.ObjectSchema<{
|
|
566
|
-
readonly documentId: v.StringSchema<
|
|
633
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
567
634
|
readonly data: v.ObjectSchema<{
|
|
568
635
|
readonly group: v.StringSchema<"please provide a valid document id">;
|
|
569
636
|
readonly user: v.StringSchema<"please provide a valid document id">;
|
|
570
|
-
readonly scopes: v.ArraySchema<v.StringSchema<"please provide a valid scope">, "please provide an array of scopes">;
|
|
637
|
+
readonly scopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<string[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<string[], 1, "you must provide at least one scope">, v.MaxLengthAction<string[], number, "you cannot provide more scopes than available">]>;
|
|
571
638
|
}, undefined>;
|
|
572
639
|
}, undefined>;
|
|
573
640
|
type SUpdateGroupUserDocumentRequest = v.InferOutput<typeof SUpdateGroupUserDocumentRequest>;
|
|
574
641
|
declare const SDeleteGroupUserDocument: v.ObjectSchema<{
|
|
575
|
-
readonly documentId: v.StringSchema<
|
|
642
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
576
643
|
}, undefined>;
|
|
577
644
|
type SDeleteGroupUserDocument = v.InferOutput<typeof SDeleteGroupUserDocument>;
|
|
578
645
|
|
|
@@ -586,11 +653,11 @@ declare const SCreateGroupDocument: v.ObjectSchema<{
|
|
|
586
653
|
}, undefined>;
|
|
587
654
|
type SCreateGroupDocument = v.InferOutput<typeof SCreateGroupDocument>;
|
|
588
655
|
declare const SReadGroupDocumentById: v.ObjectSchema<{
|
|
589
|
-
readonly id: v.NumberSchema<
|
|
656
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
590
657
|
}, undefined>;
|
|
591
658
|
type SReadGroupDocumentById = v.InferOutput<typeof SReadGroupDocumentById>;
|
|
592
659
|
declare const SReadGroupDocumentByDocumentId: v.ObjectSchema<{
|
|
593
|
-
readonly documentId: v.StringSchema<
|
|
660
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
594
661
|
}, undefined>;
|
|
595
662
|
type SReadGroupDocumentByDocumentId = v.InferOutput<typeof SReadGroupDocumentByDocumentId>;
|
|
596
663
|
declare const SUpdateAsCreatorGroupDocument: v.ObjectSchema<{
|
|
@@ -602,25 +669,33 @@ declare const SUpdateAsCreatorGroupDocument: v.ObjectSchema<{
|
|
|
602
669
|
readonly apply_value_as: v.UndefinedableSchema<v.PicklistSchema<["prefix", "suffix"], undefined>, undefined>;
|
|
603
670
|
}, undefined>;
|
|
604
671
|
type SUpdateAsCreatorGroupDocument = v.InferOutput<typeof SUpdateAsCreatorGroupDocument>;
|
|
672
|
+
declare const SUpdateAsCreatorGroupDocumentRequest: v.ObjectSchema<{
|
|
673
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
674
|
+
readonly data: v.ObjectSchema<{
|
|
675
|
+
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>;
|
|
676
|
+
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>;
|
|
677
|
+
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>;
|
|
678
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
679
|
+
readonly apply_value_to: v.UndefinedableSchema<v.PicklistSchema<["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
680
|
+
readonly apply_value_as: v.UndefinedableSchema<v.PicklistSchema<["prefix", "suffix"], undefined>, undefined>;
|
|
681
|
+
}, undefined>;
|
|
682
|
+
}, undefined>;
|
|
683
|
+
type SUpdateAsCreatorGroupDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorGroupDocumentRequest>;
|
|
605
684
|
declare const SUpdateAsInvitedGroupDocument: v.ObjectSchema<{
|
|
606
685
|
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
686
|
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
687
|
}, undefined>;
|
|
609
688
|
type SUpdateAsInvitedGroupDocument = v.InferOutput<typeof SUpdateAsInvitedGroupDocument>;
|
|
610
|
-
declare const
|
|
611
|
-
readonly documentId: v.StringSchema<
|
|
689
|
+
declare const SUpdateAsInvitedGroupDocumentRequest: v.ObjectSchema<{
|
|
690
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
612
691
|
readonly data: v.ObjectSchema<{
|
|
613
692
|
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
693
|
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
694
|
}, undefined>;
|
|
620
695
|
}, undefined>;
|
|
621
|
-
type
|
|
696
|
+
type SUpdateAsInvitedGroupDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedGroupDocumentRequest>;
|
|
622
697
|
declare const SDeleteGroupDocument: v.ObjectSchema<{
|
|
623
|
-
readonly documentId: v.StringSchema<
|
|
698
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
624
699
|
}, undefined>;
|
|
625
700
|
type SDeleteGroupDocument = v.InferOutput<typeof SDeleteGroupDocument>;
|
|
626
701
|
|
|
@@ -632,7 +707,7 @@ declare const SCreateMediumDocument: v.ObjectSchema<{
|
|
|
632
707
|
}, undefined>;
|
|
633
708
|
type SCreateMediumDocument = v.InferOutput<typeof SCreateMediumDocument>;
|
|
634
709
|
declare const SCreateMediumDocumentRequest: v.ObjectSchema<{
|
|
635
|
-
readonly documentId: v.StringSchema<
|
|
710
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
636
711
|
readonly data: v.ObjectSchema<{
|
|
637
712
|
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
713
|
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 +717,11 @@ declare const SCreateMediumDocumentRequest: v.ObjectSchema<{
|
|
|
642
717
|
}, undefined>;
|
|
643
718
|
type SCreateMediumDocumentRequest = v.InferOutput<typeof SCreateMediumDocumentRequest>;
|
|
644
719
|
declare const SReadMediumDocumentById: v.ObjectSchema<{
|
|
645
|
-
readonly id: v.NumberSchema<
|
|
720
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
646
721
|
}, undefined>;
|
|
647
722
|
type SReadMediumDocumentById = v.InferOutput<typeof SReadMediumDocumentById>;
|
|
648
723
|
declare const SReadMediumDocumentByDocumentId: v.ObjectSchema<{
|
|
649
|
-
readonly documentId: v.StringSchema<
|
|
724
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
650
725
|
}, undefined>;
|
|
651
726
|
type SReadMediumDocumentByDocumentId = v.InferOutput<typeof SReadMediumDocumentByDocumentId>;
|
|
652
727
|
declare const SUpdateAsCreatorMediumDocument: v.ObjectSchema<{
|
|
@@ -656,24 +731,33 @@ declare const SUpdateAsCreatorMediumDocument: v.ObjectSchema<{
|
|
|
656
731
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
657
732
|
}, undefined>;
|
|
658
733
|
type SUpdateAsCreatorMediumDocument = v.InferOutput<typeof SUpdateAsCreatorMediumDocument>;
|
|
734
|
+
declare const SUpdateAsCreatorMediumDocumentRequest: v.ObjectSchema<{
|
|
735
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
736
|
+
readonly data: v.ObjectSchema<{
|
|
737
|
+
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>;
|
|
738
|
+
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>;
|
|
739
|
+
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>;
|
|
740
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
741
|
+
}, undefined>;
|
|
742
|
+
}, undefined>;
|
|
743
|
+
type SUpdateAsCreatorMediumDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorMediumDocumentRequest>;
|
|
659
744
|
declare const SUpdateAsInvitedMediumDocument: v.ObjectSchema<{
|
|
660
745
|
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
746
|
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
747
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
663
748
|
}, undefined>;
|
|
664
749
|
type SUpdateAsInvitedMediumDocument = v.InferOutput<typeof SUpdateAsInvitedMediumDocument>;
|
|
665
|
-
declare const
|
|
666
|
-
readonly documentId: v.StringSchema<
|
|
750
|
+
declare const SUpdateAsInvitedMediumDocumentRequest: v.ObjectSchema<{
|
|
751
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
667
752
|
readonly data: v.ObjectSchema<{
|
|
668
753
|
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>;
|
|
754
|
+
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
755
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
672
756
|
}, undefined>;
|
|
673
757
|
}, undefined>;
|
|
674
|
-
type
|
|
758
|
+
type SUpdateAsInvitedMediumDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedMediumDocumentRequest>;
|
|
675
759
|
declare const SDeleteMediumDocument: v.ObjectSchema<{
|
|
676
|
-
readonly documentId: v.StringSchema<
|
|
760
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
677
761
|
}, undefined>;
|
|
678
762
|
type SDeleteMediumDocument = v.InferOutput<typeof SDeleteMediumDocument>;
|
|
679
763
|
|
|
@@ -685,7 +769,7 @@ declare const SCreateSourceDocument: v.ObjectSchema<{
|
|
|
685
769
|
}, undefined>;
|
|
686
770
|
type SCreateSourceDocument = v.InferOutput<typeof SCreateSourceDocument>;
|
|
687
771
|
declare const SCreateSourceDocumentRequest: v.ObjectSchema<{
|
|
688
|
-
readonly documentId: v.StringSchema<
|
|
772
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
689
773
|
readonly data: v.ObjectSchema<{
|
|
690
774
|
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
775
|
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 +779,11 @@ declare const SCreateSourceDocumentRequest: v.ObjectSchema<{
|
|
|
695
779
|
}, undefined>;
|
|
696
780
|
type SCreateSourceDocumentRequest = v.InferOutput<typeof SCreateSourceDocumentRequest>;
|
|
697
781
|
declare const SReadSourceDocumentById: v.ObjectSchema<{
|
|
698
|
-
readonly id: v.NumberSchema<
|
|
782
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
699
783
|
}, undefined>;
|
|
700
784
|
type SReadSourceDocumentById = v.InferOutput<typeof SReadSourceDocumentById>;
|
|
701
785
|
declare const SReadSourceDocumentByDocumentId: v.ObjectSchema<{
|
|
702
|
-
readonly documentId: v.StringSchema<
|
|
786
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
703
787
|
}, undefined>;
|
|
704
788
|
type SReadSourceDocumentByDocumentId = v.InferOutput<typeof SReadSourceDocumentByDocumentId>;
|
|
705
789
|
declare const SUpdateAsCreatorSourceDocument: v.ObjectSchema<{
|
|
@@ -709,24 +793,33 @@ declare const SUpdateAsCreatorSourceDocument: v.ObjectSchema<{
|
|
|
709
793
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
710
794
|
}, undefined>;
|
|
711
795
|
type SUpdateAsCreatorSourceDocument = v.InferOutput<typeof SUpdateAsCreatorSourceDocument>;
|
|
796
|
+
declare const SUpdateAsCreatorSourceDocumentRequest: v.ObjectSchema<{
|
|
797
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
798
|
+
readonly data: v.ObjectSchema<{
|
|
799
|
+
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>;
|
|
800
|
+
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>;
|
|
801
|
+
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>;
|
|
802
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
803
|
+
}, undefined>;
|
|
804
|
+
}, undefined>;
|
|
805
|
+
type SUpdateAsCreatorSourceDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorSourceDocumentRequest>;
|
|
712
806
|
declare const SUpdateAsInvitedSourceDocument: v.ObjectSchema<{
|
|
713
807
|
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
808
|
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
809
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
716
810
|
}, undefined>;
|
|
717
811
|
type SUpdateAsInvitedSourceDocument = v.InferOutput<typeof SUpdateAsInvitedSourceDocument>;
|
|
718
|
-
declare const
|
|
719
|
-
readonly documentId: v.StringSchema<
|
|
812
|
+
declare const SUpdateAsInvitedSourceDocumentRequest: v.ObjectSchema<{
|
|
813
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
720
814
|
readonly data: v.ObjectSchema<{
|
|
721
815
|
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>;
|
|
816
|
+
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
817
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
725
818
|
}, undefined>;
|
|
726
819
|
}, undefined>;
|
|
727
|
-
type
|
|
820
|
+
type SUpdateAsInvitedSourceDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedSourceDocumentRequest>;
|
|
728
821
|
declare const SDeleteSourceDocument: v.ObjectSchema<{
|
|
729
|
-
readonly documentId: v.StringSchema<
|
|
822
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
730
823
|
}, undefined>;
|
|
731
824
|
type SDeleteSourceDocument = v.InferOutput<typeof SDeleteSourceDocument>;
|
|
732
825
|
|
|
@@ -761,7 +854,7 @@ declare const SCreateTermDocument: v.ObjectSchema<{
|
|
|
761
854
|
}, undefined>;
|
|
762
855
|
type SCreateTermDocument = v.InferOutput<typeof SCreateTermDocument>;
|
|
763
856
|
declare const SCreateTermDocumentRequest: v.ObjectSchema<{
|
|
764
|
-
readonly documentId: v.StringSchema<
|
|
857
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
765
858
|
readonly data: v.ObjectSchema<{
|
|
766
859
|
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
860
|
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 +864,11 @@ declare const SCreateTermDocumentRequest: v.ObjectSchema<{
|
|
|
771
864
|
}, undefined>;
|
|
772
865
|
type SCreateTermDocumentRequest = v.InferOutput<typeof SCreateTermDocumentRequest>;
|
|
773
866
|
declare const SReadTermDocumentById: v.ObjectSchema<{
|
|
774
|
-
readonly id: v.NumberSchema<
|
|
867
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
775
868
|
}, undefined>;
|
|
776
869
|
type SReadTermDocumentById = v.InferOutput<typeof SReadTermDocumentById>;
|
|
777
870
|
declare const SReadTermDocumentByDocumentId: v.ObjectSchema<{
|
|
778
|
-
readonly documentId: v.StringSchema<
|
|
871
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
779
872
|
}, undefined>;
|
|
780
873
|
type SReadTermDocumentByDocumentId = v.InferOutput<typeof SReadTermDocumentByDocumentId>;
|
|
781
874
|
declare const SUpdateAsCreatorTermDocument: v.ObjectSchema<{
|
|
@@ -785,24 +878,33 @@ declare const SUpdateAsCreatorTermDocument: v.ObjectSchema<{
|
|
|
785
878
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
786
879
|
}, undefined>;
|
|
787
880
|
type SUpdateAsCreatorTermDocument = v.InferOutput<typeof SUpdateAsCreatorTermDocument>;
|
|
881
|
+
declare const SUpdateAsCreatorTermDocumentRequest: v.ObjectSchema<{
|
|
882
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
883
|
+
readonly data: v.ObjectSchema<{
|
|
884
|
+
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>;
|
|
885
|
+
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>;
|
|
886
|
+
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>;
|
|
887
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
888
|
+
}, undefined>;
|
|
889
|
+
}, undefined>;
|
|
890
|
+
type SUpdateAsCreatorTermDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorTermDocumentRequest>;
|
|
788
891
|
declare const SUpdateAsInvitedTermDocument: v.ObjectSchema<{
|
|
789
892
|
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
893
|
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
894
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
792
895
|
}, undefined>;
|
|
793
896
|
type SUpdateAsInvitedTermDocument = v.InferOutput<typeof SUpdateAsInvitedTermDocument>;
|
|
794
|
-
declare const
|
|
795
|
-
readonly documentId: v.StringSchema<
|
|
897
|
+
declare const SUpdateAsInvitedTermDocumentRequest: v.ObjectSchema<{
|
|
898
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
796
899
|
readonly data: v.ObjectSchema<{
|
|
797
900
|
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>;
|
|
901
|
+
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
902
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
801
903
|
}, undefined>;
|
|
802
904
|
}, undefined>;
|
|
803
|
-
type
|
|
905
|
+
type SUpdateAsInvitedTermDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedTermDocumentRequest>;
|
|
804
906
|
declare const SDeleteTermDocument: v.ObjectSchema<{
|
|
805
|
-
readonly documentId: v.StringSchema<
|
|
907
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
806
908
|
}, undefined>;
|
|
807
909
|
type SDeleteTermDocument = v.InferOutput<typeof SDeleteTermDocument>;
|
|
808
910
|
|
|
@@ -824,7 +926,7 @@ declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
|
|
|
824
926
|
}, undefined>;
|
|
825
927
|
type SCreateTrackingLinkDocument = v.InferOutput<typeof SCreateTrackingLinkDocument>;
|
|
826
928
|
declare const SCreateTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
827
|
-
readonly documentId: v.StringSchema<
|
|
929
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
828
930
|
readonly data: v.ObjectSchema<{
|
|
829
931
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
830
932
|
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 +946,11 @@ declare const SCreateTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
844
946
|
}, undefined>;
|
|
845
947
|
type SCreateTrackingLinkDocumentRequest = v.InferOutput<typeof SCreateTrackingLinkDocumentRequest>;
|
|
846
948
|
declare const SReadTrackingLinkDocumentById: v.ObjectSchema<{
|
|
847
|
-
readonly id: v.NumberSchema<
|
|
949
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
848
950
|
}, undefined>;
|
|
849
951
|
type SReadTrackingLinkDocumentById = v.InferOutput<typeof SReadTrackingLinkDocumentById>;
|
|
850
952
|
declare const SReadTrackingLinkDocumentByDocumentId: v.ObjectSchema<{
|
|
851
|
-
readonly documentId: v.StringSchema<
|
|
953
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
852
954
|
}, undefined>;
|
|
853
955
|
type SReadTrackingLinkDocumentByDocumentId = v.InferOutput<typeof SReadTrackingLinkDocumentByDocumentId>;
|
|
854
956
|
declare const SUpdateAsCreatorTrackingLinkDocument: v.ObjectSchema<{
|
|
@@ -868,6 +970,26 @@ declare const SUpdateAsCreatorTrackingLinkDocument: v.ObjectSchema<{
|
|
|
868
970
|
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
971
|
}, undefined>;
|
|
870
972
|
type SUpdateAsCreatorTrackingLinkDocument = v.InferOutput<typeof SUpdateAsCreatorTrackingLinkDocument>;
|
|
973
|
+
declare const SUpdateAsCreatorTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
974
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
975
|
+
readonly data: v.ObjectSchema<{
|
|
976
|
+
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>;
|
|
977
|
+
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>;
|
|
978
|
+
readonly protocol: v.UndefinedableSchema<v.PicklistSchema<["http", "https"], "please provide a valid url protocol">, undefined>;
|
|
979
|
+
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>;
|
|
980
|
+
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>;
|
|
981
|
+
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>;
|
|
982
|
+
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>;
|
|
983
|
+
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>;
|
|
984
|
+
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>;
|
|
985
|
+
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>;
|
|
986
|
+
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>;
|
|
987
|
+
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>;
|
|
988
|
+
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>;
|
|
989
|
+
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>;
|
|
990
|
+
}, undefined>;
|
|
991
|
+
}, undefined>;
|
|
992
|
+
type SUpdateAsCreatorTrackingLinkDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorTrackingLinkDocumentRequest>;
|
|
871
993
|
declare const SUpdateAsInvitedTrackingLinkDocument: v.ObjectSchema<{
|
|
872
994
|
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
995
|
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 +1007,8 @@ declare const SUpdateAsInvitedTrackingLinkDocument: v.ObjectSchema<{
|
|
|
885
1007
|
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
1008
|
}, undefined>;
|
|
887
1009
|
type SUpdateAsInvitedTrackingLinkDocument = v.InferOutput<typeof SUpdateAsInvitedTrackingLinkDocument>;
|
|
888
|
-
declare const
|
|
889
|
-
readonly documentId: v.StringSchema<
|
|
1010
|
+
declare const SUpdateAsInvitedTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
1011
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
890
1012
|
readonly data: v.ObjectSchema<{
|
|
891
1013
|
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
1014
|
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 +1026,9 @@ declare const SUpdateTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
904
1026
|
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
1027
|
}, undefined>;
|
|
906
1028
|
}, undefined>;
|
|
907
|
-
type
|
|
1029
|
+
type SUpdateAsInvitedTrackingLinkDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedTrackingLinkDocumentRequest>;
|
|
908
1030
|
declare const SDeleteTrackingLinkDocument: v.ObjectSchema<{
|
|
909
|
-
readonly documentId: v.StringSchema<
|
|
1031
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
910
1032
|
}, undefined>;
|
|
911
1033
|
type SDeleteTrackingLinkDocument = v.InferOutput<typeof SDeleteTrackingLinkDocument>;
|
|
912
1034
|
|
|
@@ -920,11 +1042,11 @@ declare const SCreateUserAccountDocument: v.ObjectSchema<{
|
|
|
920
1042
|
}, undefined>;
|
|
921
1043
|
type SCreateUserAccountDocument = v.InferOutput<typeof SCreateUserAccountDocument>;
|
|
922
1044
|
declare const SReadUserAccountDocumentById: v.ObjectSchema<{
|
|
923
|
-
readonly id: v.NumberSchema<
|
|
1045
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
924
1046
|
}, undefined>;
|
|
925
1047
|
type SReadUserAccountDocumentById = v.InferOutput<typeof SReadUserAccountDocumentById>;
|
|
926
1048
|
declare const SReadUserAccountDocumentByDocumentId: v.ObjectSchema<{
|
|
927
|
-
readonly documentId: v.StringSchema<
|
|
1049
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
928
1050
|
}, undefined>;
|
|
929
1051
|
type SReadUserAccountDocumentByDocumentId = v.InferOutput<typeof SReadUserAccountDocumentByDocumentId>;
|
|
930
1052
|
declare const SUpdateUserAccountDocument: v.ObjectSchema<{
|
|
@@ -954,11 +1076,11 @@ declare const SCreateUserLimitationsDocument: v.ObjectSchema<{
|
|
|
954
1076
|
}, undefined>;
|
|
955
1077
|
type SCreateUserLimitationsDocument = v.InferOutput<typeof SCreateUserLimitationsDocument>;
|
|
956
1078
|
declare const SReadUserLimitationsDocumentById: v.ObjectSchema<{
|
|
957
|
-
readonly id: v.NumberSchema<
|
|
1079
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
958
1080
|
}, undefined>;
|
|
959
1081
|
type SReadUserLimitationsDocumentById = v.InferOutput<typeof SReadUserLimitationsDocumentById>;
|
|
960
1082
|
declare const SReadUserLimitationsDocumentByDocumentId: v.ObjectSchema<{
|
|
961
|
-
readonly documentId: v.StringSchema<
|
|
1083
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
962
1084
|
}, undefined>;
|
|
963
1085
|
type SReadUserLimitationsDocumentByDocumentId = v.InferOutput<typeof SReadUserLimitationsDocumentByDocumentId>;
|
|
964
1086
|
declare const SUpdateUserLimitationsDocument: v.ObjectSchema<{
|
|
@@ -1004,11 +1126,11 @@ declare const SResetPasswordUserDocument: v.ObjectSchema<{
|
|
|
1004
1126
|
}, undefined>;
|
|
1005
1127
|
type SResetPasswordUserDocument = v.InferOutput<typeof SResetPasswordUserDocument>;
|
|
1006
1128
|
declare const SReadUserDocumentById: v.ObjectSchema<{
|
|
1007
|
-
readonly id: v.NumberSchema<
|
|
1129
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
1008
1130
|
}, undefined>;
|
|
1009
1131
|
type SReadUserDocumentById = v.InferOutput<typeof SReadUserDocumentById>;
|
|
1010
1132
|
declare const SReadUserDocumentByDocumentId: v.ObjectSchema<{
|
|
1011
|
-
readonly documentId: v.StringSchema<
|
|
1133
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1012
1134
|
}, undefined>;
|
|
1013
1135
|
type SReadUserDocumentByDocumentId = v.InferOutput<typeof SReadUserDocumentByDocumentId>;
|
|
1014
1136
|
|
|
@@ -1020,7 +1142,7 @@ declare const SCreateWebsiteDocument: v.ObjectSchema<{
|
|
|
1020
1142
|
}, undefined>;
|
|
1021
1143
|
type SCreateWebsiteDocument = v.InferOutput<typeof SCreateWebsiteDocument>;
|
|
1022
1144
|
declare const SCreateWebsiteDocumentRequest: v.ObjectSchema<{
|
|
1023
|
-
readonly documentId: v.StringSchema<
|
|
1145
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1024
1146
|
readonly data: v.ObjectSchema<{
|
|
1025
1147
|
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
1148
|
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 +1152,11 @@ declare const SCreateWebsiteDocumentRequest: v.ObjectSchema<{
|
|
|
1030
1152
|
}, undefined>;
|
|
1031
1153
|
type SCreateWebsiteDocumentRequest = v.InferOutput<typeof SCreateWebsiteDocumentRequest>;
|
|
1032
1154
|
declare const SReadWebsiteDocumentById: v.ObjectSchema<{
|
|
1033
|
-
readonly id: v.NumberSchema<
|
|
1155
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
1034
1156
|
}, undefined>;
|
|
1035
1157
|
type SReadWebsiteDocumentById = v.InferOutput<typeof SReadWebsiteDocumentById>;
|
|
1036
1158
|
declare const SReadWebsiteDocumentByDocumentId: v.ObjectSchema<{
|
|
1037
|
-
readonly documentId: v.StringSchema<
|
|
1159
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1038
1160
|
}, undefined>;
|
|
1039
1161
|
type SReadWebsiteDocumentByDocumentId = v.InferOutput<typeof SReadWebsiteDocumentByDocumentId>;
|
|
1040
1162
|
declare const SUpdateAsCreatorWebsiteDocument: v.ObjectSchema<{
|
|
@@ -1044,23 +1166,30 @@ declare const SUpdateAsCreatorWebsiteDocument: v.ObjectSchema<{
|
|
|
1044
1166
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1045
1167
|
}, undefined>;
|
|
1046
1168
|
type SUpdateAsCreatorWebsiteDocument = v.InferOutput<typeof SUpdateAsCreatorWebsiteDocument>;
|
|
1169
|
+
declare const SUpdateAsCreatorWebsiteDocumentRequest: v.ObjectSchema<{
|
|
1170
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1171
|
+
readonly data: v.ObjectSchema<{
|
|
1172
|
+
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>;
|
|
1173
|
+
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>;
|
|
1174
|
+
readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
|
|
1175
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1176
|
+
}, undefined>;
|
|
1177
|
+
}, undefined>;
|
|
1178
|
+
type SUpdateAsCreatorWebsiteDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorWebsiteDocumentRequest>;
|
|
1047
1179
|
declare const SUpdateAsInvitedWebsiteDocument: v.ObjectSchema<{
|
|
1048
1180
|
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
1181
|
}, undefined>;
|
|
1050
1182
|
type SUpdateAsInvitedWebsiteDocument = v.InferOutput<typeof SUpdateAsInvitedWebsiteDocument>;
|
|
1051
|
-
declare const
|
|
1052
|
-
readonly documentId: v.StringSchema<
|
|
1183
|
+
declare const SUpdateAsInvitedWebsiteDocumentRequest: v.ObjectSchema<{
|
|
1184
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1053
1185
|
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
1186
|
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
1187
|
}, undefined>;
|
|
1059
1188
|
}, undefined>;
|
|
1060
|
-
type
|
|
1189
|
+
type SUpdateAsInvitedWebsiteDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedWebsiteDocumentRequest>;
|
|
1061
1190
|
declare const SDeleteWebsiteDocument: v.ObjectSchema<{
|
|
1062
|
-
readonly documentId: v.StringSchema<
|
|
1191
|
+
readonly documentId: v.StringSchema<"please provide a valid document id">;
|
|
1063
1192
|
}, undefined>;
|
|
1064
1193
|
type SDeleteWebsiteDocument = v.InferOutput<typeof SDeleteWebsiteDocument>;
|
|
1065
1194
|
|
|
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,
|
|
1195
|
+
export { ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_ACTIONS, GROUP_ENTITY_KEYS, GROUP_ENTITY_SCOPES, 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 };
|