@joeygrable94/utm-src-pub-validators 0.0.17 → 0.0.19

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