@joeygrable94/utm-src-pub-validators 0.0.104 → 0.0.106
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +11 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +803 -12
- package/dist/index.d.ts +803 -12
- package/dist/index.js +11 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -83,6 +83,7 @@ declare const SQueryListGroupDocuments: v.ObjectSchema<{
|
|
|
83
83
|
}, undefined>;
|
|
84
84
|
type SQueryListGroupDocuments = v.InferOutput<typeof SQueryListGroupDocuments>;
|
|
85
85
|
declare const SCreateGroupDocument: v.ObjectSchema<{
|
|
86
|
+
readonly creator: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
86
87
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
87
88
|
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, 16, "the value is too long, it must be 16 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
88
89
|
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>;
|
|
@@ -5095,18 +5096,808 @@ declare const ROLE_PERMISSIONS: {
|
|
|
5095
5096
|
createdAt: string;
|
|
5096
5097
|
updatedAt: string;
|
|
5097
5098
|
}) => boolean;
|
|
5098
|
-
readonly list:
|
|
5099
|
-
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5105
|
-
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
|
|
5109
|
-
|
|
5099
|
+
readonly list: (u: {
|
|
5100
|
+
account: {
|
|
5101
|
+
customer_id: string | null;
|
|
5102
|
+
subscription_id: string | null;
|
|
5103
|
+
subscription_status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
5104
|
+
current_period_start: Date | null;
|
|
5105
|
+
current_period_end: Date | null;
|
|
5106
|
+
trial_period_end: Date | null;
|
|
5107
|
+
id: number;
|
|
5108
|
+
documentId: string;
|
|
5109
|
+
publishedAt?: string | undefined;
|
|
5110
|
+
createdAt: string;
|
|
5111
|
+
updatedAt: string;
|
|
5112
|
+
};
|
|
5113
|
+
role: {
|
|
5114
|
+
type: string;
|
|
5115
|
+
name: string;
|
|
5116
|
+
locale: string;
|
|
5117
|
+
description: string;
|
|
5118
|
+
id: number;
|
|
5119
|
+
documentId: string;
|
|
5120
|
+
publishedAt?: string | undefined;
|
|
5121
|
+
createdAt: string;
|
|
5122
|
+
updatedAt: string;
|
|
5123
|
+
};
|
|
5124
|
+
username: string;
|
|
5125
|
+
email: string;
|
|
5126
|
+
confirmed: boolean;
|
|
5127
|
+
blocked: boolean;
|
|
5128
|
+
provider: "local";
|
|
5129
|
+
id: number;
|
|
5130
|
+
documentId: string;
|
|
5131
|
+
publishedAt?: string | undefined;
|
|
5132
|
+
createdAt: string;
|
|
5133
|
+
updatedAt: string;
|
|
5134
|
+
}, p: {
|
|
5135
|
+
user: {
|
|
5136
|
+
username: string;
|
|
5137
|
+
email: string;
|
|
5138
|
+
confirmed: boolean;
|
|
5139
|
+
blocked: boolean;
|
|
5140
|
+
provider: "local";
|
|
5141
|
+
id: number;
|
|
5142
|
+
documentId: string;
|
|
5143
|
+
publishedAt?: string | undefined;
|
|
5144
|
+
createdAt: string;
|
|
5145
|
+
updatedAt: string;
|
|
5146
|
+
};
|
|
5147
|
+
group: {
|
|
5148
|
+
label: string;
|
|
5149
|
+
value: string;
|
|
5150
|
+
description: string | null;
|
|
5151
|
+
is_active: boolean;
|
|
5152
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5153
|
+
apply_value_as: "prefix" | "suffix";
|
|
5154
|
+
id: number;
|
|
5155
|
+
documentId: string;
|
|
5156
|
+
publishedAt?: string | undefined;
|
|
5157
|
+
createdAt: string;
|
|
5158
|
+
updatedAt: string;
|
|
5159
|
+
};
|
|
5160
|
+
scopes: GroupEntityScope[];
|
|
5161
|
+
id: number;
|
|
5162
|
+
documentId: string;
|
|
5163
|
+
publishedAt?: string | undefined;
|
|
5164
|
+
createdAt: string;
|
|
5165
|
+
updatedAt: string;
|
|
5166
|
+
}, d: {
|
|
5167
|
+
label: string;
|
|
5168
|
+
value: string;
|
|
5169
|
+
description: string | null;
|
|
5170
|
+
is_active: boolean;
|
|
5171
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5172
|
+
apply_value_as: "prefix" | "suffix";
|
|
5173
|
+
id: number;
|
|
5174
|
+
documentId: string;
|
|
5175
|
+
publishedAt?: string | undefined;
|
|
5176
|
+
createdAt: string;
|
|
5177
|
+
updatedAt: string;
|
|
5178
|
+
}) => boolean;
|
|
5179
|
+
readonly create: (u: {
|
|
5180
|
+
account: {
|
|
5181
|
+
customer_id: string | null;
|
|
5182
|
+
subscription_id: string | null;
|
|
5183
|
+
subscription_status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
5184
|
+
current_period_start: Date | null;
|
|
5185
|
+
current_period_end: Date | null;
|
|
5186
|
+
trial_period_end: Date | null;
|
|
5187
|
+
id: number;
|
|
5188
|
+
documentId: string;
|
|
5189
|
+
publishedAt?: string | undefined;
|
|
5190
|
+
createdAt: string;
|
|
5191
|
+
updatedAt: string;
|
|
5192
|
+
};
|
|
5193
|
+
role: {
|
|
5194
|
+
type: string;
|
|
5195
|
+
name: string;
|
|
5196
|
+
locale: string;
|
|
5197
|
+
description: string;
|
|
5198
|
+
id: number;
|
|
5199
|
+
documentId: string;
|
|
5200
|
+
publishedAt?: string | undefined;
|
|
5201
|
+
createdAt: string;
|
|
5202
|
+
updatedAt: string;
|
|
5203
|
+
};
|
|
5204
|
+
username: string;
|
|
5205
|
+
email: string;
|
|
5206
|
+
confirmed: boolean;
|
|
5207
|
+
blocked: boolean;
|
|
5208
|
+
provider: "local";
|
|
5209
|
+
id: number;
|
|
5210
|
+
documentId: string;
|
|
5211
|
+
publishedAt?: string | undefined;
|
|
5212
|
+
createdAt: string;
|
|
5213
|
+
updatedAt: string;
|
|
5214
|
+
}, p: {
|
|
5215
|
+
user: {
|
|
5216
|
+
username: string;
|
|
5217
|
+
email: string;
|
|
5218
|
+
confirmed: boolean;
|
|
5219
|
+
blocked: boolean;
|
|
5220
|
+
provider: "local";
|
|
5221
|
+
id: number;
|
|
5222
|
+
documentId: string;
|
|
5223
|
+
publishedAt?: string | undefined;
|
|
5224
|
+
createdAt: string;
|
|
5225
|
+
updatedAt: string;
|
|
5226
|
+
};
|
|
5227
|
+
group: {
|
|
5228
|
+
label: string;
|
|
5229
|
+
value: string;
|
|
5230
|
+
description: string | null;
|
|
5231
|
+
is_active: boolean;
|
|
5232
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5233
|
+
apply_value_as: "prefix" | "suffix";
|
|
5234
|
+
id: number;
|
|
5235
|
+
documentId: string;
|
|
5236
|
+
publishedAt?: string | undefined;
|
|
5237
|
+
createdAt: string;
|
|
5238
|
+
updatedAt: string;
|
|
5239
|
+
};
|
|
5240
|
+
scopes: GroupEntityScope[];
|
|
5241
|
+
id: number;
|
|
5242
|
+
documentId: string;
|
|
5243
|
+
publishedAt?: string | undefined;
|
|
5244
|
+
createdAt: string;
|
|
5245
|
+
updatedAt: string;
|
|
5246
|
+
}, d: {
|
|
5247
|
+
label: string;
|
|
5248
|
+
value: string;
|
|
5249
|
+
description: string | null;
|
|
5250
|
+
is_active: boolean;
|
|
5251
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5252
|
+
apply_value_as: "prefix" | "suffix";
|
|
5253
|
+
id: number;
|
|
5254
|
+
documentId: string;
|
|
5255
|
+
publishedAt?: string | undefined;
|
|
5256
|
+
createdAt: string;
|
|
5257
|
+
updatedAt: string;
|
|
5258
|
+
}) => boolean;
|
|
5259
|
+
readonly read: (u: {
|
|
5260
|
+
account: {
|
|
5261
|
+
customer_id: string | null;
|
|
5262
|
+
subscription_id: string | null;
|
|
5263
|
+
subscription_status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
5264
|
+
current_period_start: Date | null;
|
|
5265
|
+
current_period_end: Date | null;
|
|
5266
|
+
trial_period_end: Date | null;
|
|
5267
|
+
id: number;
|
|
5268
|
+
documentId: string;
|
|
5269
|
+
publishedAt?: string | undefined;
|
|
5270
|
+
createdAt: string;
|
|
5271
|
+
updatedAt: string;
|
|
5272
|
+
};
|
|
5273
|
+
role: {
|
|
5274
|
+
type: string;
|
|
5275
|
+
name: string;
|
|
5276
|
+
locale: string;
|
|
5277
|
+
description: string;
|
|
5278
|
+
id: number;
|
|
5279
|
+
documentId: string;
|
|
5280
|
+
publishedAt?: string | undefined;
|
|
5281
|
+
createdAt: string;
|
|
5282
|
+
updatedAt: string;
|
|
5283
|
+
};
|
|
5284
|
+
username: string;
|
|
5285
|
+
email: string;
|
|
5286
|
+
confirmed: boolean;
|
|
5287
|
+
blocked: boolean;
|
|
5288
|
+
provider: "local";
|
|
5289
|
+
id: number;
|
|
5290
|
+
documentId: string;
|
|
5291
|
+
publishedAt?: string | undefined;
|
|
5292
|
+
createdAt: string;
|
|
5293
|
+
updatedAt: string;
|
|
5294
|
+
}, p: {
|
|
5295
|
+
user: {
|
|
5296
|
+
username: string;
|
|
5297
|
+
email: string;
|
|
5298
|
+
confirmed: boolean;
|
|
5299
|
+
blocked: boolean;
|
|
5300
|
+
provider: "local";
|
|
5301
|
+
id: number;
|
|
5302
|
+
documentId: string;
|
|
5303
|
+
publishedAt?: string | undefined;
|
|
5304
|
+
createdAt: string;
|
|
5305
|
+
updatedAt: string;
|
|
5306
|
+
};
|
|
5307
|
+
group: {
|
|
5308
|
+
label: string;
|
|
5309
|
+
value: string;
|
|
5310
|
+
description: string | null;
|
|
5311
|
+
is_active: boolean;
|
|
5312
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5313
|
+
apply_value_as: "prefix" | "suffix";
|
|
5314
|
+
id: number;
|
|
5315
|
+
documentId: string;
|
|
5316
|
+
publishedAt?: string | undefined;
|
|
5317
|
+
createdAt: string;
|
|
5318
|
+
updatedAt: string;
|
|
5319
|
+
};
|
|
5320
|
+
scopes: GroupEntityScope[];
|
|
5321
|
+
id: number;
|
|
5322
|
+
documentId: string;
|
|
5323
|
+
publishedAt?: string | undefined;
|
|
5324
|
+
createdAt: string;
|
|
5325
|
+
updatedAt: string;
|
|
5326
|
+
}, d: {
|
|
5327
|
+
label: string;
|
|
5328
|
+
value: string;
|
|
5329
|
+
description: string | null;
|
|
5330
|
+
is_active: boolean;
|
|
5331
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5332
|
+
apply_value_as: "prefix" | "suffix";
|
|
5333
|
+
id: number;
|
|
5334
|
+
documentId: string;
|
|
5335
|
+
publishedAt?: string | undefined;
|
|
5336
|
+
createdAt: string;
|
|
5337
|
+
updatedAt: string;
|
|
5338
|
+
}) => boolean;
|
|
5339
|
+
readonly update: (u: {
|
|
5340
|
+
account: {
|
|
5341
|
+
customer_id: string | null;
|
|
5342
|
+
subscription_id: string | null;
|
|
5343
|
+
subscription_status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
5344
|
+
current_period_start: Date | null;
|
|
5345
|
+
current_period_end: Date | null;
|
|
5346
|
+
trial_period_end: Date | null;
|
|
5347
|
+
id: number;
|
|
5348
|
+
documentId: string;
|
|
5349
|
+
publishedAt?: string | undefined;
|
|
5350
|
+
createdAt: string;
|
|
5351
|
+
updatedAt: string;
|
|
5352
|
+
};
|
|
5353
|
+
role: {
|
|
5354
|
+
type: string;
|
|
5355
|
+
name: string;
|
|
5356
|
+
locale: string;
|
|
5357
|
+
description: string;
|
|
5358
|
+
id: number;
|
|
5359
|
+
documentId: string;
|
|
5360
|
+
publishedAt?: string | undefined;
|
|
5361
|
+
createdAt: string;
|
|
5362
|
+
updatedAt: string;
|
|
5363
|
+
};
|
|
5364
|
+
username: string;
|
|
5365
|
+
email: string;
|
|
5366
|
+
confirmed: boolean;
|
|
5367
|
+
blocked: boolean;
|
|
5368
|
+
provider: "local";
|
|
5369
|
+
id: number;
|
|
5370
|
+
documentId: string;
|
|
5371
|
+
publishedAt?: string | undefined;
|
|
5372
|
+
createdAt: string;
|
|
5373
|
+
updatedAt: string;
|
|
5374
|
+
}, p: {
|
|
5375
|
+
user: {
|
|
5376
|
+
username: string;
|
|
5377
|
+
email: string;
|
|
5378
|
+
confirmed: boolean;
|
|
5379
|
+
blocked: boolean;
|
|
5380
|
+
provider: "local";
|
|
5381
|
+
id: number;
|
|
5382
|
+
documentId: string;
|
|
5383
|
+
publishedAt?: string | undefined;
|
|
5384
|
+
createdAt: string;
|
|
5385
|
+
updatedAt: string;
|
|
5386
|
+
};
|
|
5387
|
+
group: {
|
|
5388
|
+
label: string;
|
|
5389
|
+
value: string;
|
|
5390
|
+
description: string | null;
|
|
5391
|
+
is_active: boolean;
|
|
5392
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5393
|
+
apply_value_as: "prefix" | "suffix";
|
|
5394
|
+
id: number;
|
|
5395
|
+
documentId: string;
|
|
5396
|
+
publishedAt?: string | undefined;
|
|
5397
|
+
createdAt: string;
|
|
5398
|
+
updatedAt: string;
|
|
5399
|
+
};
|
|
5400
|
+
scopes: GroupEntityScope[];
|
|
5401
|
+
id: number;
|
|
5402
|
+
documentId: string;
|
|
5403
|
+
publishedAt?: string | undefined;
|
|
5404
|
+
createdAt: string;
|
|
5405
|
+
updatedAt: string;
|
|
5406
|
+
}, d: {
|
|
5407
|
+
label: string;
|
|
5408
|
+
value: string;
|
|
5409
|
+
description: string | null;
|
|
5410
|
+
is_active: boolean;
|
|
5411
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5412
|
+
apply_value_as: "prefix" | "suffix";
|
|
5413
|
+
id: number;
|
|
5414
|
+
documentId: string;
|
|
5415
|
+
publishedAt?: string | undefined;
|
|
5416
|
+
createdAt: string;
|
|
5417
|
+
updatedAt: string;
|
|
5418
|
+
}) => boolean;
|
|
5419
|
+
readonly delete: (u: {
|
|
5420
|
+
account: {
|
|
5421
|
+
customer_id: string | null;
|
|
5422
|
+
subscription_id: string | null;
|
|
5423
|
+
subscription_status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
5424
|
+
current_period_start: Date | null;
|
|
5425
|
+
current_period_end: Date | null;
|
|
5426
|
+
trial_period_end: Date | null;
|
|
5427
|
+
id: number;
|
|
5428
|
+
documentId: string;
|
|
5429
|
+
publishedAt?: string | undefined;
|
|
5430
|
+
createdAt: string;
|
|
5431
|
+
updatedAt: string;
|
|
5432
|
+
};
|
|
5433
|
+
role: {
|
|
5434
|
+
type: string;
|
|
5435
|
+
name: string;
|
|
5436
|
+
locale: string;
|
|
5437
|
+
description: string;
|
|
5438
|
+
id: number;
|
|
5439
|
+
documentId: string;
|
|
5440
|
+
publishedAt?: string | undefined;
|
|
5441
|
+
createdAt: string;
|
|
5442
|
+
updatedAt: string;
|
|
5443
|
+
};
|
|
5444
|
+
username: string;
|
|
5445
|
+
email: string;
|
|
5446
|
+
confirmed: boolean;
|
|
5447
|
+
blocked: boolean;
|
|
5448
|
+
provider: "local";
|
|
5449
|
+
id: number;
|
|
5450
|
+
documentId: string;
|
|
5451
|
+
publishedAt?: string | undefined;
|
|
5452
|
+
createdAt: string;
|
|
5453
|
+
updatedAt: string;
|
|
5454
|
+
}, p: {
|
|
5455
|
+
user: {
|
|
5456
|
+
username: string;
|
|
5457
|
+
email: string;
|
|
5458
|
+
confirmed: boolean;
|
|
5459
|
+
blocked: boolean;
|
|
5460
|
+
provider: "local";
|
|
5461
|
+
id: number;
|
|
5462
|
+
documentId: string;
|
|
5463
|
+
publishedAt?: string | undefined;
|
|
5464
|
+
createdAt: string;
|
|
5465
|
+
updatedAt: string;
|
|
5466
|
+
};
|
|
5467
|
+
group: {
|
|
5468
|
+
label: string;
|
|
5469
|
+
value: string;
|
|
5470
|
+
description: string | null;
|
|
5471
|
+
is_active: boolean;
|
|
5472
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5473
|
+
apply_value_as: "prefix" | "suffix";
|
|
5474
|
+
id: number;
|
|
5475
|
+
documentId: string;
|
|
5476
|
+
publishedAt?: string | undefined;
|
|
5477
|
+
createdAt: string;
|
|
5478
|
+
updatedAt: string;
|
|
5479
|
+
};
|
|
5480
|
+
scopes: GroupEntityScope[];
|
|
5481
|
+
id: number;
|
|
5482
|
+
documentId: string;
|
|
5483
|
+
publishedAt?: string | undefined;
|
|
5484
|
+
createdAt: string;
|
|
5485
|
+
updatedAt: string;
|
|
5486
|
+
}, d: {
|
|
5487
|
+
label: string;
|
|
5488
|
+
value: string;
|
|
5489
|
+
description: string | null;
|
|
5490
|
+
is_active: boolean;
|
|
5491
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5492
|
+
apply_value_as: "prefix" | "suffix";
|
|
5493
|
+
id: number;
|
|
5494
|
+
documentId: string;
|
|
5495
|
+
publishedAt?: string | undefined;
|
|
5496
|
+
createdAt: string;
|
|
5497
|
+
updatedAt: string;
|
|
5498
|
+
}) => boolean;
|
|
5499
|
+
};
|
|
5500
|
+
readonly "group-user": {
|
|
5501
|
+
readonly list: (u: {
|
|
5502
|
+
account: {
|
|
5503
|
+
customer_id: string | null;
|
|
5504
|
+
subscription_id: string | null;
|
|
5505
|
+
subscription_status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
5506
|
+
current_period_start: Date | null;
|
|
5507
|
+
current_period_end: Date | null;
|
|
5508
|
+
trial_period_end: Date | null;
|
|
5509
|
+
id: number;
|
|
5510
|
+
documentId: string;
|
|
5511
|
+
publishedAt?: string | undefined;
|
|
5512
|
+
createdAt: string;
|
|
5513
|
+
updatedAt: string;
|
|
5514
|
+
};
|
|
5515
|
+
role: {
|
|
5516
|
+
type: string;
|
|
5517
|
+
name: string;
|
|
5518
|
+
locale: string;
|
|
5519
|
+
description: string;
|
|
5520
|
+
id: number;
|
|
5521
|
+
documentId: string;
|
|
5522
|
+
publishedAt?: string | undefined;
|
|
5523
|
+
createdAt: string;
|
|
5524
|
+
updatedAt: string;
|
|
5525
|
+
};
|
|
5526
|
+
username: string;
|
|
5527
|
+
email: string;
|
|
5528
|
+
confirmed: boolean;
|
|
5529
|
+
blocked: boolean;
|
|
5530
|
+
provider: "local";
|
|
5531
|
+
id: number;
|
|
5532
|
+
documentId: string;
|
|
5533
|
+
publishedAt?: string | undefined;
|
|
5534
|
+
createdAt: string;
|
|
5535
|
+
updatedAt: string;
|
|
5536
|
+
}, p: {
|
|
5537
|
+
user: {
|
|
5538
|
+
username: string;
|
|
5539
|
+
email: string;
|
|
5540
|
+
confirmed: boolean;
|
|
5541
|
+
blocked: boolean;
|
|
5542
|
+
provider: "local";
|
|
5543
|
+
id: number;
|
|
5544
|
+
documentId: string;
|
|
5545
|
+
publishedAt?: string | undefined;
|
|
5546
|
+
createdAt: string;
|
|
5547
|
+
updatedAt: string;
|
|
5548
|
+
};
|
|
5549
|
+
group: {
|
|
5550
|
+
label: string;
|
|
5551
|
+
value: string;
|
|
5552
|
+
description: string | null;
|
|
5553
|
+
is_active: boolean;
|
|
5554
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5555
|
+
apply_value_as: "prefix" | "suffix";
|
|
5556
|
+
id: number;
|
|
5557
|
+
documentId: string;
|
|
5558
|
+
publishedAt?: string | undefined;
|
|
5559
|
+
createdAt: string;
|
|
5560
|
+
updatedAt: string;
|
|
5561
|
+
};
|
|
5562
|
+
scopes: GroupEntityScope[];
|
|
5563
|
+
id: number;
|
|
5564
|
+
documentId: string;
|
|
5565
|
+
publishedAt?: string | undefined;
|
|
5566
|
+
createdAt: string;
|
|
5567
|
+
updatedAt: string;
|
|
5568
|
+
}, d: {
|
|
5569
|
+
label: string;
|
|
5570
|
+
value: string;
|
|
5571
|
+
description: string | null;
|
|
5572
|
+
is_active: boolean;
|
|
5573
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5574
|
+
apply_value_as: "prefix" | "suffix";
|
|
5575
|
+
id: number;
|
|
5576
|
+
documentId: string;
|
|
5577
|
+
publishedAt?: string | undefined;
|
|
5578
|
+
createdAt: string;
|
|
5579
|
+
updatedAt: string;
|
|
5580
|
+
}) => boolean;
|
|
5581
|
+
readonly create: (u: {
|
|
5582
|
+
account: {
|
|
5583
|
+
customer_id: string | null;
|
|
5584
|
+
subscription_id: string | null;
|
|
5585
|
+
subscription_status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
5586
|
+
current_period_start: Date | null;
|
|
5587
|
+
current_period_end: Date | null;
|
|
5588
|
+
trial_period_end: Date | null;
|
|
5589
|
+
id: number;
|
|
5590
|
+
documentId: string;
|
|
5591
|
+
publishedAt?: string | undefined;
|
|
5592
|
+
createdAt: string;
|
|
5593
|
+
updatedAt: string;
|
|
5594
|
+
};
|
|
5595
|
+
role: {
|
|
5596
|
+
type: string;
|
|
5597
|
+
name: string;
|
|
5598
|
+
locale: string;
|
|
5599
|
+
description: string;
|
|
5600
|
+
id: number;
|
|
5601
|
+
documentId: string;
|
|
5602
|
+
publishedAt?: string | undefined;
|
|
5603
|
+
createdAt: string;
|
|
5604
|
+
updatedAt: string;
|
|
5605
|
+
};
|
|
5606
|
+
username: string;
|
|
5607
|
+
email: string;
|
|
5608
|
+
confirmed: boolean;
|
|
5609
|
+
blocked: boolean;
|
|
5610
|
+
provider: "local";
|
|
5611
|
+
id: number;
|
|
5612
|
+
documentId: string;
|
|
5613
|
+
publishedAt?: string | undefined;
|
|
5614
|
+
createdAt: string;
|
|
5615
|
+
updatedAt: string;
|
|
5616
|
+
}, p: {
|
|
5617
|
+
user: {
|
|
5618
|
+
username: string;
|
|
5619
|
+
email: string;
|
|
5620
|
+
confirmed: boolean;
|
|
5621
|
+
blocked: boolean;
|
|
5622
|
+
provider: "local";
|
|
5623
|
+
id: number;
|
|
5624
|
+
documentId: string;
|
|
5625
|
+
publishedAt?: string | undefined;
|
|
5626
|
+
createdAt: string;
|
|
5627
|
+
updatedAt: string;
|
|
5628
|
+
};
|
|
5629
|
+
group: {
|
|
5630
|
+
label: string;
|
|
5631
|
+
value: string;
|
|
5632
|
+
description: string | null;
|
|
5633
|
+
is_active: boolean;
|
|
5634
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5635
|
+
apply_value_as: "prefix" | "suffix";
|
|
5636
|
+
id: number;
|
|
5637
|
+
documentId: string;
|
|
5638
|
+
publishedAt?: string | undefined;
|
|
5639
|
+
createdAt: string;
|
|
5640
|
+
updatedAt: string;
|
|
5641
|
+
};
|
|
5642
|
+
scopes: GroupEntityScope[];
|
|
5643
|
+
id: number;
|
|
5644
|
+
documentId: string;
|
|
5645
|
+
publishedAt?: string | undefined;
|
|
5646
|
+
createdAt: string;
|
|
5647
|
+
updatedAt: string;
|
|
5648
|
+
}, d: {
|
|
5649
|
+
label: string;
|
|
5650
|
+
value: string;
|
|
5651
|
+
description: string | null;
|
|
5652
|
+
is_active: boolean;
|
|
5653
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5654
|
+
apply_value_as: "prefix" | "suffix";
|
|
5655
|
+
id: number;
|
|
5656
|
+
documentId: string;
|
|
5657
|
+
publishedAt?: string | undefined;
|
|
5658
|
+
createdAt: string;
|
|
5659
|
+
updatedAt: string;
|
|
5660
|
+
}) => boolean;
|
|
5661
|
+
readonly read: (u: {
|
|
5662
|
+
account: {
|
|
5663
|
+
customer_id: string | null;
|
|
5664
|
+
subscription_id: string | null;
|
|
5665
|
+
subscription_status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
5666
|
+
current_period_start: Date | null;
|
|
5667
|
+
current_period_end: Date | null;
|
|
5668
|
+
trial_period_end: Date | null;
|
|
5669
|
+
id: number;
|
|
5670
|
+
documentId: string;
|
|
5671
|
+
publishedAt?: string | undefined;
|
|
5672
|
+
createdAt: string;
|
|
5673
|
+
updatedAt: string;
|
|
5674
|
+
};
|
|
5675
|
+
role: {
|
|
5676
|
+
type: string;
|
|
5677
|
+
name: string;
|
|
5678
|
+
locale: string;
|
|
5679
|
+
description: string;
|
|
5680
|
+
id: number;
|
|
5681
|
+
documentId: string;
|
|
5682
|
+
publishedAt?: string | undefined;
|
|
5683
|
+
createdAt: string;
|
|
5684
|
+
updatedAt: string;
|
|
5685
|
+
};
|
|
5686
|
+
username: string;
|
|
5687
|
+
email: string;
|
|
5688
|
+
confirmed: boolean;
|
|
5689
|
+
blocked: boolean;
|
|
5690
|
+
provider: "local";
|
|
5691
|
+
id: number;
|
|
5692
|
+
documentId: string;
|
|
5693
|
+
publishedAt?: string | undefined;
|
|
5694
|
+
createdAt: string;
|
|
5695
|
+
updatedAt: string;
|
|
5696
|
+
}, p: {
|
|
5697
|
+
user: {
|
|
5698
|
+
username: string;
|
|
5699
|
+
email: string;
|
|
5700
|
+
confirmed: boolean;
|
|
5701
|
+
blocked: boolean;
|
|
5702
|
+
provider: "local";
|
|
5703
|
+
id: number;
|
|
5704
|
+
documentId: string;
|
|
5705
|
+
publishedAt?: string | undefined;
|
|
5706
|
+
createdAt: string;
|
|
5707
|
+
updatedAt: string;
|
|
5708
|
+
};
|
|
5709
|
+
group: {
|
|
5710
|
+
label: string;
|
|
5711
|
+
value: string;
|
|
5712
|
+
description: string | null;
|
|
5713
|
+
is_active: boolean;
|
|
5714
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5715
|
+
apply_value_as: "prefix" | "suffix";
|
|
5716
|
+
id: number;
|
|
5717
|
+
documentId: string;
|
|
5718
|
+
publishedAt?: string | undefined;
|
|
5719
|
+
createdAt: string;
|
|
5720
|
+
updatedAt: string;
|
|
5721
|
+
};
|
|
5722
|
+
scopes: GroupEntityScope[];
|
|
5723
|
+
id: number;
|
|
5724
|
+
documentId: string;
|
|
5725
|
+
publishedAt?: string | undefined;
|
|
5726
|
+
createdAt: string;
|
|
5727
|
+
updatedAt: string;
|
|
5728
|
+
}, d: {
|
|
5729
|
+
label: string;
|
|
5730
|
+
value: string;
|
|
5731
|
+
description: string | null;
|
|
5732
|
+
is_active: boolean;
|
|
5733
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5734
|
+
apply_value_as: "prefix" | "suffix";
|
|
5735
|
+
id: number;
|
|
5736
|
+
documentId: string;
|
|
5737
|
+
publishedAt?: string | undefined;
|
|
5738
|
+
createdAt: string;
|
|
5739
|
+
updatedAt: string;
|
|
5740
|
+
}) => boolean;
|
|
5741
|
+
readonly update: (u: {
|
|
5742
|
+
account: {
|
|
5743
|
+
customer_id: string | null;
|
|
5744
|
+
subscription_id: string | null;
|
|
5745
|
+
subscription_status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
5746
|
+
current_period_start: Date | null;
|
|
5747
|
+
current_period_end: Date | null;
|
|
5748
|
+
trial_period_end: Date | null;
|
|
5749
|
+
id: number;
|
|
5750
|
+
documentId: string;
|
|
5751
|
+
publishedAt?: string | undefined;
|
|
5752
|
+
createdAt: string;
|
|
5753
|
+
updatedAt: string;
|
|
5754
|
+
};
|
|
5755
|
+
role: {
|
|
5756
|
+
type: string;
|
|
5757
|
+
name: string;
|
|
5758
|
+
locale: string;
|
|
5759
|
+
description: string;
|
|
5760
|
+
id: number;
|
|
5761
|
+
documentId: string;
|
|
5762
|
+
publishedAt?: string | undefined;
|
|
5763
|
+
createdAt: string;
|
|
5764
|
+
updatedAt: string;
|
|
5765
|
+
};
|
|
5766
|
+
username: string;
|
|
5767
|
+
email: string;
|
|
5768
|
+
confirmed: boolean;
|
|
5769
|
+
blocked: boolean;
|
|
5770
|
+
provider: "local";
|
|
5771
|
+
id: number;
|
|
5772
|
+
documentId: string;
|
|
5773
|
+
publishedAt?: string | undefined;
|
|
5774
|
+
createdAt: string;
|
|
5775
|
+
updatedAt: string;
|
|
5776
|
+
}, p: {
|
|
5777
|
+
user: {
|
|
5778
|
+
username: string;
|
|
5779
|
+
email: string;
|
|
5780
|
+
confirmed: boolean;
|
|
5781
|
+
blocked: boolean;
|
|
5782
|
+
provider: "local";
|
|
5783
|
+
id: number;
|
|
5784
|
+
documentId: string;
|
|
5785
|
+
publishedAt?: string | undefined;
|
|
5786
|
+
createdAt: string;
|
|
5787
|
+
updatedAt: string;
|
|
5788
|
+
};
|
|
5789
|
+
group: {
|
|
5790
|
+
label: string;
|
|
5791
|
+
value: string;
|
|
5792
|
+
description: string | null;
|
|
5793
|
+
is_active: boolean;
|
|
5794
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5795
|
+
apply_value_as: "prefix" | "suffix";
|
|
5796
|
+
id: number;
|
|
5797
|
+
documentId: string;
|
|
5798
|
+
publishedAt?: string | undefined;
|
|
5799
|
+
createdAt: string;
|
|
5800
|
+
updatedAt: string;
|
|
5801
|
+
};
|
|
5802
|
+
scopes: GroupEntityScope[];
|
|
5803
|
+
id: number;
|
|
5804
|
+
documentId: string;
|
|
5805
|
+
publishedAt?: string | undefined;
|
|
5806
|
+
createdAt: string;
|
|
5807
|
+
updatedAt: string;
|
|
5808
|
+
}, d: {
|
|
5809
|
+
label: string;
|
|
5810
|
+
value: string;
|
|
5811
|
+
description: string | null;
|
|
5812
|
+
is_active: boolean;
|
|
5813
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5814
|
+
apply_value_as: "prefix" | "suffix";
|
|
5815
|
+
id: number;
|
|
5816
|
+
documentId: string;
|
|
5817
|
+
publishedAt?: string | undefined;
|
|
5818
|
+
createdAt: string;
|
|
5819
|
+
updatedAt: string;
|
|
5820
|
+
}) => boolean;
|
|
5821
|
+
readonly delete: (u: {
|
|
5822
|
+
account: {
|
|
5823
|
+
customer_id: string | null;
|
|
5824
|
+
subscription_id: string | null;
|
|
5825
|
+
subscription_status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
5826
|
+
current_period_start: Date | null;
|
|
5827
|
+
current_period_end: Date | null;
|
|
5828
|
+
trial_period_end: Date | null;
|
|
5829
|
+
id: number;
|
|
5830
|
+
documentId: string;
|
|
5831
|
+
publishedAt?: string | undefined;
|
|
5832
|
+
createdAt: string;
|
|
5833
|
+
updatedAt: string;
|
|
5834
|
+
};
|
|
5835
|
+
role: {
|
|
5836
|
+
type: string;
|
|
5837
|
+
name: string;
|
|
5838
|
+
locale: string;
|
|
5839
|
+
description: string;
|
|
5840
|
+
id: number;
|
|
5841
|
+
documentId: string;
|
|
5842
|
+
publishedAt?: string | undefined;
|
|
5843
|
+
createdAt: string;
|
|
5844
|
+
updatedAt: string;
|
|
5845
|
+
};
|
|
5846
|
+
username: string;
|
|
5847
|
+
email: string;
|
|
5848
|
+
confirmed: boolean;
|
|
5849
|
+
blocked: boolean;
|
|
5850
|
+
provider: "local";
|
|
5851
|
+
id: number;
|
|
5852
|
+
documentId: string;
|
|
5853
|
+
publishedAt?: string | undefined;
|
|
5854
|
+
createdAt: string;
|
|
5855
|
+
updatedAt: string;
|
|
5856
|
+
}, p: {
|
|
5857
|
+
user: {
|
|
5858
|
+
username: string;
|
|
5859
|
+
email: string;
|
|
5860
|
+
confirmed: boolean;
|
|
5861
|
+
blocked: boolean;
|
|
5862
|
+
provider: "local";
|
|
5863
|
+
id: number;
|
|
5864
|
+
documentId: string;
|
|
5865
|
+
publishedAt?: string | undefined;
|
|
5866
|
+
createdAt: string;
|
|
5867
|
+
updatedAt: string;
|
|
5868
|
+
};
|
|
5869
|
+
group: {
|
|
5870
|
+
label: string;
|
|
5871
|
+
value: string;
|
|
5872
|
+
description: string | null;
|
|
5873
|
+
is_active: boolean;
|
|
5874
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5875
|
+
apply_value_as: "prefix" | "suffix";
|
|
5876
|
+
id: number;
|
|
5877
|
+
documentId: string;
|
|
5878
|
+
publishedAt?: string | undefined;
|
|
5879
|
+
createdAt: string;
|
|
5880
|
+
updatedAt: string;
|
|
5881
|
+
};
|
|
5882
|
+
scopes: GroupEntityScope[];
|
|
5883
|
+
id: number;
|
|
5884
|
+
documentId: string;
|
|
5885
|
+
publishedAt?: string | undefined;
|
|
5886
|
+
createdAt: string;
|
|
5887
|
+
updatedAt: string;
|
|
5888
|
+
}, d: {
|
|
5889
|
+
label: string;
|
|
5890
|
+
value: string;
|
|
5891
|
+
description: string | null;
|
|
5892
|
+
is_active: boolean;
|
|
5893
|
+
apply_value_to: "source" | "medium" | "campaign" | "content" | "creative" | "term" | "id";
|
|
5894
|
+
apply_value_as: "prefix" | "suffix";
|
|
5895
|
+
id: number;
|
|
5896
|
+
documentId: string;
|
|
5897
|
+
publishedAt?: string | undefined;
|
|
5898
|
+
createdAt: string;
|
|
5899
|
+
updatedAt: string;
|
|
5900
|
+
}) => boolean;
|
|
5110
5901
|
};
|
|
5111
5902
|
readonly website: {
|
|
5112
5903
|
readonly list: (u: {
|