@01.software/sdk 0.25.0 → 0.26.0

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.
@@ -7,6 +7,7 @@ interface Config {
7
7
  Player: PlayerBlock;
8
8
  Iframe: IframeBlock;
9
9
  Code: CodeBlock;
10
+ Carousel: CarouselBlock;
10
11
  };
11
12
  collections: {
12
13
  users: User;
@@ -22,10 +23,12 @@ interface Config {
22
23
  'webhook-deliveries': WebhookDelivery;
23
24
  tenants: Tenant;
24
25
  'tenant-metadata': TenantMetadatum;
26
+ 'tenant-web-analytics-config': TenantWebAnalyticsConfig;
25
27
  'api-usage': ApiUsage;
26
28
  'tenant-analytics-daily': TenantAnalyticsDaily;
27
29
  'analytics-event-schemas': AnalyticsEventSchema;
28
30
  'tenant-entitlements': TenantEntitlement;
31
+ 'tenant-purge-jobs': TenantPurgeJob;
29
32
  subscriptions: Subscription;
30
33
  'billing-history': BillingHistory;
31
34
  plans: Plan;
@@ -175,10 +178,12 @@ interface Config {
175
178
  'webhook-deliveries': WebhookDeliveriesSelect<false> | WebhookDeliveriesSelect<true>;
176
179
  tenants: TenantsSelect<false> | TenantsSelect<true>;
177
180
  'tenant-metadata': TenantMetadataSelect<false> | TenantMetadataSelect<true>;
181
+ 'tenant-web-analytics-config': TenantWebAnalyticsConfigSelect<false> | TenantWebAnalyticsConfigSelect<true>;
178
182
  'api-usage': ApiUsageSelect<false> | ApiUsageSelect<true>;
179
183
  'tenant-analytics-daily': TenantAnalyticsDailySelect<false> | TenantAnalyticsDailySelect<true>;
180
184
  'analytics-event-schemas': AnalyticsEventSchemasSelect<false> | AnalyticsEventSchemasSelect<true>;
181
185
  'tenant-entitlements': TenantEntitlementsSelect<false> | TenantEntitlementsSelect<true>;
186
+ 'tenant-purge-jobs': TenantPurgeJobsSelect<false> | TenantPurgeJobsSelect<true>;
182
187
  subscriptions: SubscriptionsSelect<false> | SubscriptionsSelect<true>;
183
188
  'billing-history': BillingHistorySelect<false> | BillingHistorySelect<true>;
184
189
  plans: PlansSelect<false> | PlansSelect<true>;
@@ -355,157 +360,30 @@ interface CodeBlock {
355
360
  }
356
361
  /**
357
362
  * This interface was referenced by `Config`'s JSON-Schema
358
- * via the `definition` "users".
359
- */
360
- interface User {
361
- id: string;
362
- _users_members_order?: string | null;
363
- roles: ('super-admin' | 'user')[];
364
- tenants?: {
365
- tenant: string | Tenant;
366
- roles: ('tenant-admin' | 'tenant-editor' | 'tenant-viewer')[];
367
- id?: string | null;
368
- }[] | null;
369
- emailPreferences?: {
370
- acceptsUsageAlerts?: boolean | null;
371
- };
372
- /**
373
- * Admin contact phone number. Enter with or without country code according to operating policy.
374
- */
375
- phone?: string | null;
376
- isPhoneVerified?: boolean | null;
377
- lastLoginAt?: string | null;
378
- lastLoginIp?: string | null;
379
- isSuspended?: boolean | null;
380
- suspendedAt?: string | null;
381
- suspendedReason?: string | null;
382
- /**
383
- * Timezone used for admin UI and notifications, such as Asia/Seoul.
384
- */
385
- timezone?: string | null;
386
- /**
387
- * Admin UI language or locale code, such as ko or en.
388
- */
389
- locale?: string | null;
390
- avatar?: (string | null) | Image;
391
- anonymizedAt?: string | null;
392
- /**
393
- * Scheduled deletion date
394
- */
395
- deletionScheduledAt?: string | null;
396
- authProvider?: ('local' | 'google') | null;
397
- googleSub?: string | null;
398
- updatedAt: string;
399
- createdAt: string;
400
- deletedAt?: string | null;
401
- email: string;
402
- resetPasswordToken?: string | null;
403
- resetPasswordExpiration?: string | null;
404
- salt?: string | null;
405
- hash?: string | null;
406
- _verified?: boolean | null;
407
- _verificationToken?: string | null;
408
- loginAttempts?: number | null;
409
- lockUntil?: string | null;
410
- sessions?: {
411
- id: string;
412
- createdAt?: string | null;
413
- expiresAt: string;
414
- }[] | null;
415
- password?: string | null;
416
- collection: 'users';
417
- }
418
- /**
419
- * This interface was referenced by `Config`'s JSON-Schema
420
- * via the `definition` "tenants".
363
+ * via the `definition` "CarouselBlock".
421
364
  */
422
- interface Tenant {
423
- id: string;
424
- name: string;
425
- /**
426
- * URL-safe identifier (auto-generated)
427
- */
428
- slug?: string | null;
429
- /**
430
- * Tenant owner. Only the owner can delete the tenant or transfer ownership.
431
- */
432
- owner: string | User;
433
- /**
434
- * Only features checked above will be enabled for this tenant.
435
- */
436
- enabledFeatures?: ('ecommerce' | 'customers' | 'playlists' | 'galleries' | 'links' | 'forms' | 'articles' | 'documents' | 'canvas' | 'videos' | 'live-streaming' | 'community' | 'events')[] | null;
437
- /**
438
- * Only selected relationship recipes are active for this tenant. Recipes whose required features are disabled keep their stored intent but remain inactive at runtime.
439
- */
440
- enabledRelationshipRecipes?: ('event-commerce' | 'shoppable-content' | 'product-content-access' | 'form-context' | 'document-acceptance')[] | null;
441
- featureVersion?: number | null;
442
- /**
443
- * Dev mode shows configuration tools like the field settings panel. Turn off after setup for a clean production UI.
444
- */
445
- isDevMode?: boolean | null;
446
- /**
447
- * Tenant lifecycle status. Managed by billing webhooks, deletion scheduling, or super-admin maintenance paths, not normal edits.
448
- */
449
- status?: ('active' | 'paused' | 'past_due' | 'canceled' | 'pending_deletion') | null;
450
- /**
451
- * A public key that is safe to include in browser code. (Starts with pk01_)
452
- */
453
- publishableKey: string;
454
- /**
455
- * Domains allowed to call this tenant’s API from a browser. Leave empty to allow every domain.
456
- */
457
- cors?: {
458
- origin: string;
459
- id?: string | null;
460
- }[] | null;
461
- /**
462
- * Trusted recipients for signed events. Sensitive payloads such as password-reset events may be delivered to these endpoints.
463
- */
464
- webhooks?: {
465
- /**
466
- * e.g. Main Server, Analytics
467
- */
468
- name?: string | null;
365
+ interface CarouselBlock {
366
+ slides: {
367
+ image: string | Image;
469
368
  /**
470
- * HTTPS URL that receives signed webhooks. Treat this endpoint as a recipient of sensitive tenant events.
369
+ * Falls back to the uploaded image alternative text when empty.
471
370
  */
472
- url: string;
371
+ alt?: string | null;
372
+ caption?: string | null;
473
373
  /**
474
- * Used to verify that webhook payloads really came from us. We sign every payload with this secret.
374
+ * Optional. When set, the slide image links to this URL.
475
375
  */
476
- secret?: string | null;
477
- isEnabled?: boolean | null;
376
+ href?: string | null;
478
377
  id?: string | null;
479
- }[] | null;
480
- /**
481
- * Users connected to this tenant
482
- */
483
- members?: {
484
- docs?: (string | User)[];
485
- hasNextPage?: boolean;
486
- totalDocs?: number;
487
- };
488
- webAnalytics: {
489
- enabled?: boolean | null;
490
- /**
491
- * Domains allowed to send analytics events. If empty, browser analytics is blocked.
492
- */
493
- allowedOrigins?: {
494
- origin: string;
495
- id?: string | null;
496
- }[] | null;
497
- /**
498
- * Timezone used to group daily analytics. Once data starts coming in, this is locked and cannot be changed.
499
- */
500
- timezone: string;
501
- /**
502
- * Automatically locked once the first analytics record is saved. Contact support to unlock.
503
- */
504
- tzLocked?: boolean | null;
505
- };
506
- updatedAt: string;
507
- createdAt: string;
508
- deletedAt?: string | null;
378
+ }[];
379
+ aspectRatio?: ('16:9' | '4:3' | '1:1' | '3:4') | null;
380
+ fit?: ('cover' | 'contain') | null;
381
+ showCaptions?: boolean | null;
382
+ showDots?: boolean | null;
383
+ showControls?: boolean | null;
384
+ id?: string | null;
385
+ blockName?: string | null;
386
+ blockType: 'Carousel';
509
387
  }
510
388
  /**
511
389
  * This interface was referenced by `Config`'s JSON-Schema
@@ -590,6 +468,122 @@ interface Image {
590
468
  };
591
469
  };
592
470
  }
471
+ /**
472
+ * This interface was referenced by `Config`'s JSON-Schema
473
+ * via the `definition` "tenants".
474
+ */
475
+ interface Tenant {
476
+ id: string;
477
+ name: string;
478
+ /**
479
+ * URL-safe identifier (auto-generated)
480
+ */
481
+ slug?: string | null;
482
+ /**
483
+ * Tenant owner. Only the owner can delete the tenant or transfer ownership.
484
+ */
485
+ owner: string | User;
486
+ /**
487
+ * Only features checked above will be enabled for this tenant.
488
+ */
489
+ enabledFeatures?: ('ecommerce' | 'customers' | 'playlists' | 'galleries' | 'links' | 'forms' | 'articles' | 'documents' | 'canvas' | 'videos' | 'live-streaming' | 'community' | 'events')[] | null;
490
+ /**
491
+ * Only selected relationship recipes are active for this tenant. Recipes whose required features are disabled keep their stored intent but remain inactive at runtime.
492
+ */
493
+ enabledRelationshipRecipes?: ('event-commerce' | 'shoppable-content' | 'product-content-access' | 'form-context' | 'document-acceptance')[] | null;
494
+ featureVersion?: number | null;
495
+ provisioning?: {
496
+ [k: string]: unknown;
497
+ } | unknown[] | string | number | boolean | null;
498
+ /**
499
+ * Tenant lifecycle status. Managed by billing webhooks, deletion scheduling, or super-admin maintenance paths, not normal edits.
500
+ */
501
+ status?: ('active' | 'paused' | 'past_due' | 'canceled' | 'pending_deletion') | null;
502
+ /**
503
+ * A public key that is safe to include in browser code. (Starts with pk01_)
504
+ */
505
+ publishableKey: string;
506
+ /**
507
+ * Domains allowed to call this tenant’s API from a browser. Leave empty to block browser calls.
508
+ */
509
+ cors?: {
510
+ origin: string;
511
+ id?: string | null;
512
+ }[] | null;
513
+ /**
514
+ * Users connected to this tenant
515
+ */
516
+ members?: {
517
+ docs?: (string | User)[];
518
+ hasNextPage?: boolean;
519
+ totalDocs?: number;
520
+ };
521
+ updatedAt: string;
522
+ createdAt: string;
523
+ deletedAt?: string | null;
524
+ }
525
+ /**
526
+ * This interface was referenced by `Config`'s JSON-Schema
527
+ * via the `definition` "users".
528
+ */
529
+ interface User {
530
+ id: string;
531
+ _users_members_order?: string | null;
532
+ roles: ('super-admin' | 'user')[];
533
+ tenants?: {
534
+ tenant: string | Tenant;
535
+ roles: ('tenant-admin' | 'tenant-editor' | 'tenant-viewer')[];
536
+ id?: string | null;
537
+ }[] | null;
538
+ emailPreferences?: {
539
+ acceptsUsageAlerts?: boolean | null;
540
+ };
541
+ /**
542
+ * Admin contact phone number. Enter with or without country code according to operating policy.
543
+ */
544
+ phone?: string | null;
545
+ isPhoneVerified?: boolean | null;
546
+ lastLoginAt?: string | null;
547
+ lastLoginIp?: string | null;
548
+ isSuspended?: boolean | null;
549
+ suspendedAt?: string | null;
550
+ suspendedReason?: string | null;
551
+ /**
552
+ * Timezone used for admin UI and notifications, such as Asia/Seoul.
553
+ */
554
+ timezone?: string | null;
555
+ /**
556
+ * Admin UI language or locale code, such as ko or en.
557
+ */
558
+ locale?: string | null;
559
+ avatar?: (string | null) | Image;
560
+ anonymizedAt?: string | null;
561
+ /**
562
+ * Scheduled deletion date
563
+ */
564
+ deletionScheduledAt?: string | null;
565
+ authProvider?: ('local' | 'google') | null;
566
+ googleSub?: string | null;
567
+ updatedAt: string;
568
+ createdAt: string;
569
+ deletedAt?: string | null;
570
+ email: string;
571
+ resetPasswordToken?: string | null;
572
+ resetPasswordExpiration?: string | null;
573
+ salt?: string | null;
574
+ hash?: string | null;
575
+ _verified?: boolean | null;
576
+ _verificationToken?: string | null;
577
+ loginAttempts?: number | null;
578
+ lockUntil?: string | null;
579
+ sessions?: {
580
+ id: string;
581
+ createdAt?: string | null;
582
+ expiresAt: string;
583
+ }[] | null;
584
+ password?: string | null;
585
+ collection: 'users';
586
+ }
593
587
  /**
594
588
  * This interface was referenced by `Config`'s JSON-Schema
595
589
  * via the `definition` "payload-folders".
@@ -872,23 +866,109 @@ interface WebhookEvent {
872
866
  }
873
867
  /**
874
868
  * This interface was referenced by `Config`'s JSON-Schema
875
- * via the `definition` "webhook-deliveries".
869
+ * via the `definition` "webhook-deliveries".
870
+ */
871
+ interface WebhookDelivery {
872
+ id: string;
873
+ tenant?: (string | null) | Tenant;
874
+ /**
875
+ * Active webhook endpoint used for this delivery attempt.
876
+ */
877
+ webhookId?: (string | null) | Webhook;
878
+ /**
879
+ * Value sent to receivers as x-webhook-delivery-id.
880
+ */
881
+ deliveryId?: string | null;
882
+ attempt: number;
883
+ /**
884
+ * Webhook delivery state. Updated by dispatcher and retry handling paths.
885
+ */
886
+ status: 'queued' | 'success' | 'failed' | 'dead';
887
+ /**
888
+ * Destination host with query string removed. Full URLs are not stored.
889
+ */
890
+ endpointHost?: string | null;
891
+ /**
892
+ * HMAC hash of the endpoint URL with query string removed.
893
+ */
894
+ endpointUrlHash?: string | null;
895
+ /**
896
+ * Collection that produced this delivery attempt.
897
+ */
898
+ collection?: string | null;
899
+ /**
900
+ * Operation that produced this delivery attempt.
901
+ */
902
+ operation?: string | null;
903
+ /**
904
+ * Path that produced the delivery attempt.
905
+ */
906
+ source?: ('registry' | 'retry_queue' | 'dlq_retry' | 'password_reset') | null;
907
+ /**
908
+ * HTTP status returned by the receiver.
909
+ */
910
+ statusCode?: number | null;
911
+ /**
912
+ * Delivery failure kind. Sensitive request body or headers are not stored.
913
+ */
914
+ errorKind?: string | null;
915
+ /**
916
+ * Truncated error message. Sensitive request body or headers are not stored.
917
+ */
918
+ errorMessage?: string | null;
919
+ /**
920
+ * Delivery attempt duration in milliseconds.
921
+ */
922
+ durationMs?: number | null;
923
+ /**
924
+ * Next scheduled retry time for a failed delivery.
925
+ */
926
+ nextRetryAt?: string | null;
927
+ /**
928
+ * Marks attempts produced by Redis retry or DLQ replay paths.
929
+ */
930
+ redelivery?: boolean | null;
931
+ /**
932
+ * Timestamp when the webhook request was dispatched to the endpoint.
933
+ */
934
+ dispatchedAt?: string | null;
935
+ updatedAt: string;
936
+ createdAt: string;
937
+ }
938
+ /**
939
+ * This interface was referenced by `Config`'s JSON-Schema
940
+ * via the `definition` "webhooks".
876
941
  */
877
- interface WebhookDelivery {
942
+ interface Webhook {
878
943
  id: string;
879
944
  tenant?: (string | null) | Tenant;
880
- webhookEventId?: (string | null) | WebhookEvent;
881
- attempt: number;
882
945
  /**
883
- * Webhook delivery state. Updated by dispatcher and retry handling paths.
946
+ * Webhook name
884
947
  */
885
- status: 'pending' | 'success' | 'failed' | 'dead';
948
+ name: string;
886
949
  /**
887
- * Timestamp when the webhook request was dispatched to the endpoint.
950
+ * Webhook endpoint HTTPS URL. Treat this endpoint as a recipient of sensitive workspace events.
888
951
  */
889
- dispatchedAt?: string | null;
952
+ url: string;
953
+ /**
954
+ * HMAC signing secret (immutable once set)
955
+ */
956
+ secret: string;
957
+ /**
958
+ * Collections to subscribe to. Leave empty to receive every supported collection event.
959
+ */
960
+ subscriptions?: {
961
+ /**
962
+ * Receives create/update events for this collection.
963
+ */
964
+ collection: 'tenant-metadata' | 'tenant-logos' | 'images' | 'products' | 'product-variants' | 'product-options' | 'product-option-values' | 'product-categories' | 'product-tags' | 'product-collections' | 'brands' | 'brand-logos' | 'orders' | 'order-items' | 'transactions' | 'fulfillments' | 'fulfillment-items' | 'returns' | 'return-items' | 'carts' | 'cart-items' | 'discounts' | 'promotions' | 'shipping-policies' | 'customers' | 'customer-profiles' | 'customer-addresses' | 'playlists' | 'playlist-categories' | 'playlist-tags' | 'tracks' | 'track-categories' | 'track-tags' | 'galleries' | 'gallery-items' | 'gallery-categories' | 'gallery-tags' | 'links' | 'link-categories' | 'link-tags' | 'forms' | 'form-submissions' | 'articles' | 'article-authors' | 'article-categories' | 'article-tags' | 'documents' | 'document-categories' | 'document-types' | 'canvases' | 'canvas-node-types' | 'canvas-edge-types' | 'canvas-categories' | 'canvas-tags' | 'canvas-nodes' | 'canvas-edges' | 'videos' | 'video-categories' | 'video-tags' | 'live-streams' | 'posts' | 'comments' | 'reactions' | 'reaction-types' | 'bookmarks' | 'post-categories' | 'customer-profile-lists' | 'reports' | 'community-bans' | 'event-calendars' | 'events' | 'event-categories' | 'event-occurrences' | 'event-tags';
965
+ id?: string | null;
966
+ }[] | null;
967
+ isActive?: boolean | null;
968
+ lastDispatchedAt?: string | null;
890
969
  updatedAt: string;
891
970
  createdAt: string;
971
+ deletedAt?: string | null;
892
972
  }
893
973
  /**
894
974
  * This interface was referenced by `Config`'s JSON-Schema
@@ -934,19 +1014,19 @@ interface TenantMetadatum {
934
1014
  /**
935
1015
  * Primary logo
936
1016
  */
937
- logo?: (string | null) | BrandLogo;
1017
+ logo?: (string | null) | TenantLogo;
938
1018
  /**
939
1019
  * Logo for dark mode (optional)
940
1020
  */
941
- logoDark?: (string | null) | BrandLogo;
1021
+ logoDark?: (string | null) | TenantLogo;
942
1022
  /**
943
1023
  * Logo mark / Icon (optional)
944
1024
  */
945
- logomark?: (string | null) | BrandLogo;
1025
+ logomark?: (string | null) | TenantLogo;
946
1026
  /**
947
1027
  * Favicon (will be resized automatically)
948
1028
  */
949
- favicon?: (string | null) | BrandLogo;
1029
+ favicon?: (string | null) | TenantLogo;
950
1030
  /**
951
1031
  * Theme color for mobile browsers (hex color)
952
1032
  */
@@ -1060,9 +1140,9 @@ interface TenantMetadatum {
1060
1140
  }
1061
1141
  /**
1062
1142
  * This interface was referenced by `Config`'s JSON-Schema
1063
- * via the `definition` "brand-logos".
1143
+ * via the `definition` "tenant-logos".
1064
1144
  */
1065
- interface BrandLogo {
1145
+ interface TenantLogo {
1066
1146
  id: string;
1067
1147
  tenant?: (string | null) | Tenant;
1068
1148
  /**
@@ -1153,6 +1233,33 @@ interface BrandLogo {
1153
1233
  };
1154
1234
  };
1155
1235
  }
1236
+ /**
1237
+ * This interface was referenced by `Config`'s JSON-Schema
1238
+ * via the `definition` "tenant-web-analytics-config".
1239
+ */
1240
+ interface TenantWebAnalyticsConfig {
1241
+ id: string;
1242
+ tenant?: (string | null) | Tenant;
1243
+ enabled?: boolean | null;
1244
+ /**
1245
+ * Domains allowed to send analytics events. If empty, browser analytics is blocked.
1246
+ */
1247
+ allowedOrigins?: {
1248
+ origin: string;
1249
+ id?: string | null;
1250
+ }[] | null;
1251
+ /**
1252
+ * Timezone used to group daily analytics. Once data starts coming in, this is locked and cannot be changed.
1253
+ */
1254
+ timezone: string;
1255
+ /**
1256
+ * Automatically locked once the first analytics record is saved. Contact support to unlock.
1257
+ */
1258
+ tzLocked?: boolean | null;
1259
+ updatedAt: string;
1260
+ createdAt: string;
1261
+ deletedAt?: string | null;
1262
+ }
1156
1263
  /**
1157
1264
  * This interface was referenced by `Config`'s JSON-Schema
1158
1265
  * via the `definition` "api-usage".
@@ -1251,7 +1358,7 @@ interface TenantAnalyticsDaily {
1251
1358
  */
1252
1359
  bucketTz: string;
1253
1360
  /**
1254
- * Hash of the dimension key set in this aggregate (shape mismatch detection). "pageview-only" when no custom events exist.
1361
+ * Deterministic aggregate schema shape hash for mismatch detection.
1255
1362
  */
1256
1363
  schemaShape: string;
1257
1364
  /**
@@ -1259,6 +1366,11 @@ interface TenantAnalyticsDaily {
1259
1366
  */
1260
1367
  eventDetails?: {
1261
1368
  eventName: string;
1369
+ count?: number | null;
1370
+ /**
1371
+ * Deterministic schema shape hash for this event detail row.
1372
+ */
1373
+ schemaShape?: string | null;
1262
1374
  dimensions?: {
1263
1375
  dimension: string;
1264
1376
  values?: {
@@ -1280,6 +1392,38 @@ interface TenantAnalyticsDaily {
1280
1392
  }[] | null;
1281
1393
  id?: string | null;
1282
1394
  }[] | null;
1395
+ /**
1396
+ * MCP tool usage aggregate. Populated by snapshot cron from daily Redis keys.
1397
+ */
1398
+ mcpUsage?: {
1399
+ toolCalls?: number | null;
1400
+ sessions?: number | null;
1401
+ convertedSessions?: number | null;
1402
+ conversionRate?: number | null;
1403
+ successfulWrites?: number | null;
1404
+ isPartial?: boolean | null;
1405
+ topTools?: {
1406
+ name: string;
1407
+ count: number;
1408
+ readOnly?: boolean | null;
1409
+ id?: string | null;
1410
+ }[] | null;
1411
+ transports?: {
1412
+ name: string;
1413
+ count: number;
1414
+ id?: string | null;
1415
+ }[] | null;
1416
+ httpDurationMs?: {
1417
+ p50?: number | null;
1418
+ p99?: number | null;
1419
+ buckets?: {
1420
+ bucket: string;
1421
+ label: string;
1422
+ count: number;
1423
+ id?: string | null;
1424
+ }[] | null;
1425
+ };
1426
+ };
1283
1427
  updatedAt: string;
1284
1428
  createdAt: string;
1285
1429
  }
@@ -1406,205 +1550,93 @@ interface Subscription {
1406
1550
  }
1407
1551
  /**
1408
1552
  * This interface was referenced by `Config`'s JSON-Schema
1409
- * via the `definition` "billing-history".
1410
- */
1411
- interface BillingHistory {
1412
- id: string;
1413
- tenant: string | Tenant;
1414
- subscription?: (string | null) | Subscription;
1415
- type: 'payment' | 'refund' | 'plan_change';
1416
- status: 'success' | 'failed' | 'refunded' | 'partial_refund';
1417
- /**
1418
- * Amount (KRW)
1419
- */
1420
- amount: number;
1421
- /**
1422
- * Plan at time of payment
1423
- */
1424
- plan: 'starter' | 'basic' | 'pro';
1425
- provider: 'toss';
1426
- currency: 'KRW' | 'USD';
1427
- billingCycle?: ('monthly' | 'yearly') | null;
1428
- periodStart?: string | null;
1429
- periodEnd?: string | null;
1430
- /**
1431
- * Unique order number
1432
- */
1433
- invoiceNumber: string;
1434
- orderName?: string | null;
1435
- /**
1436
- * Toss payment key
1437
- */
1438
- paymentKey?: string | null;
1439
- /**
1440
- * Full Toss API response
1441
- */
1442
- tossResponse?: {
1443
- [k: string]: unknown;
1444
- } | unknown[] | string | number | boolean | null;
1445
- errorMessage?: string | null;
1446
- /**
1447
- * Original billing record for retry
1448
- */
1449
- retryOf?: (string | null) | BillingHistory;
1450
- updatedAt: string;
1451
- createdAt: string;
1452
- deletedAt?: string | null;
1453
- }
1454
- /**
1455
- * This interface was referenced by `Config`'s JSON-Schema
1456
- * via the `definition` "plans".
1457
- */
1458
- interface Plan {
1459
- id: string;
1460
- /**
1461
- * Plan identifier (free, starter, basic, pro, enterprise)
1462
- */
1463
- key: string;
1464
- /**
1465
- * Plan display name
1466
- */
1467
- name: string;
1468
- /**
1469
- * Reference-only feature list; enforced elsewhere.
1470
- */
1471
- featuresAllowed?: ('ecommerce' | 'customers' | 'playlists' | 'galleries' | 'links' | 'forms' | 'articles' | 'documents' | 'canvas' | 'videos' | 'live-streaming' | 'community' | 'events')[] | null;
1472
- /**
1473
- * Reference-only quotas such as storageBytes; enforced by entitlement and usage policy elsewhere.
1474
- */
1475
- quotas?: {
1476
- [k: string]: unknown;
1477
- } | unknown[] | string | number | boolean | null;
1478
- updatedAt: string;
1479
- createdAt: string;
1480
- deletedAt?: string | null;
1481
- }
1482
- /**
1483
- * This interface was referenced by `Config`'s JSON-Schema
1484
- * via the `definition` "webhooks".
1553
+ * via the `definition` "tenant-purge-jobs".
1485
1554
  */
1486
- interface Webhook {
1555
+ interface TenantPurgeJob {
1487
1556
  id: string;
1488
- tenant?: (string | null) | Tenant;
1489
- /**
1490
- * Webhook name
1491
- */
1492
- name: string;
1493
- /**
1494
- * Webhook endpoint URL (http/https only)
1495
- */
1496
- url: string;
1497
- /**
1498
- * HMAC signing secret (immutable once set)
1499
- */
1500
- secret: string;
1501
- /**
1502
- * Subscribed event names
1503
- */
1504
- subscriptions?: {
1505
- event: string;
1506
- id?: string | null;
1507
- }[] | null;
1508
- isActive?: boolean | null;
1509
- lastDispatchedAt?: string | null;
1557
+ tenantId: string;
1558
+ status: 'pending' | 'running' | 'failed' | 'ready-to-delete';
1559
+ currentCollection?: string | null;
1560
+ deletedCount?: number | null;
1561
+ failure?: string | null;
1562
+ completedAt?: string | null;
1510
1563
  updatedAt: string;
1511
1564
  createdAt: string;
1512
- deletedAt?: string | null;
1513
1565
  }
1514
1566
  /**
1515
1567
  * This interface was referenced by `Config`'s JSON-Schema
1516
- * via the `definition` "tenant-logos".
1568
+ * via the `definition` "billing-history".
1517
1569
  */
1518
- interface TenantLogo {
1570
+ interface BillingHistory {
1519
1571
  id: string;
1520
- tenant?: (string | null) | Tenant;
1521
- /**
1522
- * Alternative text for users who cannot see the image and for search/share context.
1523
- */
1524
- alt?: string | null;
1572
+ tenant: string | Tenant;
1573
+ subscription?: (string | null) | Subscription;
1574
+ type: 'payment' | 'refund' | 'plan_change';
1575
+ status: 'success' | 'failed' | 'refunded' | 'partial_refund';
1525
1576
  /**
1526
- * Low quality image placeholder
1527
- */
1528
- lqip?: string | null;
1529
- palette?: {
1530
- vibrant?: string | null;
1531
- muted?: string | null;
1532
- darkVibrant?: string | null;
1533
- darkMuted?: string | null;
1534
- lightVibrant?: string | null;
1535
- lightMuted?: string | null;
1536
- };
1537
- prefix?: string | null;
1538
- updatedAt: string;
1539
- createdAt: string;
1540
- deletedAt?: string | null;
1541
- url?: string | null;
1542
- thumbnailURL?: string | null;
1543
- filename?: string | null;
1544
- mimeType?: string | null;
1545
- filesize?: number | null;
1546
- width?: number | null;
1547
- height?: number | null;
1548
- focalX?: number | null;
1549
- focalY?: number | null;
1550
- sizes?: {
1551
- '16'?: {
1552
- url?: string | null;
1553
- width?: number | null;
1554
- height?: number | null;
1555
- mimeType?: string | null;
1556
- filesize?: number | null;
1557
- filename?: string | null;
1558
- };
1559
- '32'?: {
1560
- url?: string | null;
1561
- width?: number | null;
1562
- height?: number | null;
1563
- mimeType?: string | null;
1564
- filesize?: number | null;
1565
- filename?: string | null;
1566
- };
1567
- '64'?: {
1568
- url?: string | null;
1569
- width?: number | null;
1570
- height?: number | null;
1571
- mimeType?: string | null;
1572
- filesize?: number | null;
1573
- filename?: string | null;
1574
- };
1575
- '128'?: {
1576
- url?: string | null;
1577
- width?: number | null;
1578
- height?: number | null;
1579
- mimeType?: string | null;
1580
- filesize?: number | null;
1581
- filename?: string | null;
1582
- };
1583
- '180'?: {
1584
- url?: string | null;
1585
- width?: number | null;
1586
- height?: number | null;
1587
- mimeType?: string | null;
1588
- filesize?: number | null;
1589
- filename?: string | null;
1590
- };
1591
- '192'?: {
1592
- url?: string | null;
1593
- width?: number | null;
1594
- height?: number | null;
1595
- mimeType?: string | null;
1596
- filesize?: number | null;
1597
- filename?: string | null;
1598
- };
1599
- '512'?: {
1600
- url?: string | null;
1601
- width?: number | null;
1602
- height?: number | null;
1603
- mimeType?: string | null;
1604
- filesize?: number | null;
1605
- filename?: string | null;
1606
- };
1607
- };
1577
+ * Amount (KRW)
1578
+ */
1579
+ amount: number;
1580
+ /**
1581
+ * Plan at time of payment
1582
+ */
1583
+ plan: 'starter' | 'basic' | 'pro';
1584
+ provider: 'toss';
1585
+ currency: 'KRW' | 'USD';
1586
+ billingCycle?: ('monthly' | 'yearly') | null;
1587
+ periodStart?: string | null;
1588
+ periodEnd?: string | null;
1589
+ /**
1590
+ * Unique order number
1591
+ */
1592
+ invoiceNumber: string;
1593
+ orderName?: string | null;
1594
+ /**
1595
+ * Toss payment key
1596
+ */
1597
+ paymentKey?: string | null;
1598
+ /**
1599
+ * Full Toss API response
1600
+ */
1601
+ tossResponse?: {
1602
+ [k: string]: unknown;
1603
+ } | unknown[] | string | number | boolean | null;
1604
+ errorMessage?: string | null;
1605
+ /**
1606
+ * Original billing record for retry
1607
+ */
1608
+ retryOf?: (string | null) | BillingHistory;
1609
+ updatedAt: string;
1610
+ createdAt: string;
1611
+ deletedAt?: string | null;
1612
+ }
1613
+ /**
1614
+ * This interface was referenced by `Config`'s JSON-Schema
1615
+ * via the `definition` "plans".
1616
+ */
1617
+ interface Plan {
1618
+ id: string;
1619
+ /**
1620
+ * Plan identifier (free, starter, basic, pro, enterprise)
1621
+ */
1622
+ key: string;
1623
+ /**
1624
+ * Plan display name
1625
+ */
1626
+ name: string;
1627
+ /**
1628
+ * Reference-only feature list; enforced elsewhere.
1629
+ */
1630
+ featuresAllowed?: ('ecommerce' | 'customers' | 'playlists' | 'galleries' | 'links' | 'forms' | 'articles' | 'documents' | 'canvas' | 'videos' | 'live-streaming' | 'community' | 'events')[] | null;
1631
+ /**
1632
+ * Reference-only quotas such as storageBytes; enforced by entitlement and usage policy elsewhere.
1633
+ */
1634
+ quotas?: {
1635
+ [k: string]: unknown;
1636
+ } | unknown[] | string | number | boolean | null;
1637
+ updatedAt: string;
1638
+ createdAt: string;
1639
+ deletedAt?: string | null;
1608
1640
  }
1609
1641
  /**
1610
1642
  * This interface was referenced by `Config`'s JSON-Schema
@@ -1615,6 +1647,9 @@ interface Product {
1615
1647
  _order?: string | null;
1616
1648
  tenant?: (string | null) | Tenant;
1617
1649
  title: string;
1650
+ /**
1651
+ * Secondary display line shown in cards, listings, and detail headers.
1652
+ */
1618
1653
  subtitle?: string | null;
1619
1654
  /**
1620
1655
  * Short summary for listing/cards
@@ -1742,7 +1777,6 @@ interface Product {
1742
1777
  updatedAt: string;
1743
1778
  createdAt: string;
1744
1779
  deletedAt?: string | null;
1745
- _status?: ('draft' | 'published') | null;
1746
1780
  }
1747
1781
  /**
1748
1782
  * This interface was referenced by `Config`'s JSON-Schema
@@ -1752,6 +1786,10 @@ interface Video {
1752
1786
  id: string;
1753
1787
  tenant?: (string | null) | Tenant;
1754
1788
  title: string;
1789
+ /**
1790
+ * Secondary display line shown in cards, listings, and detail headers.
1791
+ */
1792
+ subtitle?: string | null;
1755
1793
  filename?: string | null;
1756
1794
  /**
1757
1795
  * Short summary for listing/cards
@@ -1855,6 +1893,10 @@ interface LiveStream {
1855
1893
  id: string;
1856
1894
  tenant?: (string | null) | Tenant;
1857
1895
  title: string;
1896
+ /**
1897
+ * Secondary display line shown in cards, listings, and detail headers.
1898
+ */
1899
+ subtitle?: string | null;
1858
1900
  /**
1859
1901
  * Short summary for listing/cards
1860
1902
  */
@@ -2240,7 +2282,101 @@ interface Brand {
2240
2282
  updatedAt: string;
2241
2283
  createdAt: string;
2242
2284
  deletedAt?: string | null;
2243
- _status?: ('draft' | 'published') | null;
2285
+ }
2286
+ /**
2287
+ * This interface was referenced by `Config`'s JSON-Schema
2288
+ * via the `definition` "brand-logos".
2289
+ */
2290
+ interface BrandLogo {
2291
+ id: string;
2292
+ tenant?: (string | null) | Tenant;
2293
+ /**
2294
+ * Alternative text for users who cannot see the image and for search/share context.
2295
+ */
2296
+ alt?: string | null;
2297
+ /**
2298
+ * Low quality image placeholder
2299
+ */
2300
+ lqip?: string | null;
2301
+ palette?: {
2302
+ vibrant?: string | null;
2303
+ muted?: string | null;
2304
+ darkVibrant?: string | null;
2305
+ darkMuted?: string | null;
2306
+ lightVibrant?: string | null;
2307
+ lightMuted?: string | null;
2308
+ };
2309
+ prefix?: string | null;
2310
+ updatedAt: string;
2311
+ createdAt: string;
2312
+ deletedAt?: string | null;
2313
+ url?: string | null;
2314
+ thumbnailURL?: string | null;
2315
+ filename?: string | null;
2316
+ mimeType?: string | null;
2317
+ filesize?: number | null;
2318
+ width?: number | null;
2319
+ height?: number | null;
2320
+ focalX?: number | null;
2321
+ focalY?: number | null;
2322
+ sizes?: {
2323
+ '16'?: {
2324
+ url?: string | null;
2325
+ width?: number | null;
2326
+ height?: number | null;
2327
+ mimeType?: string | null;
2328
+ filesize?: number | null;
2329
+ filename?: string | null;
2330
+ };
2331
+ '32'?: {
2332
+ url?: string | null;
2333
+ width?: number | null;
2334
+ height?: number | null;
2335
+ mimeType?: string | null;
2336
+ filesize?: number | null;
2337
+ filename?: string | null;
2338
+ };
2339
+ '64'?: {
2340
+ url?: string | null;
2341
+ width?: number | null;
2342
+ height?: number | null;
2343
+ mimeType?: string | null;
2344
+ filesize?: number | null;
2345
+ filename?: string | null;
2346
+ };
2347
+ '128'?: {
2348
+ url?: string | null;
2349
+ width?: number | null;
2350
+ height?: number | null;
2351
+ mimeType?: string | null;
2352
+ filesize?: number | null;
2353
+ filename?: string | null;
2354
+ };
2355
+ '180'?: {
2356
+ url?: string | null;
2357
+ width?: number | null;
2358
+ height?: number | null;
2359
+ mimeType?: string | null;
2360
+ filesize?: number | null;
2361
+ filename?: string | null;
2362
+ };
2363
+ '192'?: {
2364
+ url?: string | null;
2365
+ width?: number | null;
2366
+ height?: number | null;
2367
+ mimeType?: string | null;
2368
+ filesize?: number | null;
2369
+ filename?: string | null;
2370
+ };
2371
+ '512'?: {
2372
+ url?: string | null;
2373
+ width?: number | null;
2374
+ height?: number | null;
2375
+ mimeType?: string | null;
2376
+ filesize?: number | null;
2377
+ filename?: string | null;
2378
+ };
2379
+ };
2244
2380
  }
2245
2381
  /**
2246
2382
  * This interface was referenced by `Config`'s JSON-Schema
@@ -2301,6 +2437,10 @@ interface ProductCollection {
2301
2437
  _order?: string | null;
2302
2438
  tenant?: (string | null) | Tenant;
2303
2439
  title: string;
2440
+ /**
2441
+ * Secondary display line shown in cards, listings, and detail headers.
2442
+ */
2443
+ subtitle?: string | null;
2304
2444
  /**
2305
2445
  * Short summary for listing/cards
2306
2446
  */
@@ -2370,7 +2510,6 @@ interface ProductCollection {
2370
2510
  updatedAt: string;
2371
2511
  createdAt: string;
2372
2512
  deletedAt?: string | null;
2373
- _status?: ('draft' | 'published') | null;
2374
2513
  }
2375
2514
  /**
2376
2515
  * This interface was referenced by `Config`'s JSON-Schema
@@ -3242,7 +3381,7 @@ interface Article {
3242
3381
  tenant?: (string | null) | Tenant;
3243
3382
  title: string;
3244
3383
  /**
3245
- * Secondary title shown in article lists and at the top of the article page.
3384
+ * Secondary display line shown in cards, listings, and detail headers.
3246
3385
  */
3247
3386
  subtitle?: string | null;
3248
3387
  /**
@@ -3305,6 +3444,7 @@ interface Article {
3305
3444
  */
3306
3445
  generateSlug?: boolean | null;
3307
3446
  slug?: string | null;
3447
+ status?: ('draft' | 'published' | 'archived') | null;
3308
3448
  thumbnail?: (string | null) | Image;
3309
3449
  images?: (string | Image)[] | null;
3310
3450
  publishedAt?: string | null;
@@ -3323,7 +3463,7 @@ interface Article {
3323
3463
  canonicalUrl?: string | null;
3324
3464
  visibility?: ('public' | 'members' | 'paid') | null;
3325
3465
  /**
3326
- * Scheduled publish time. The scheduled publishing job uses this timestamp.
3466
+ * Scheduled publish metadata. No automatic publishing job runs from this field.
3327
3467
  */
3328
3468
  scheduledAt?: string | null;
3329
3469
  /**
@@ -3340,7 +3480,6 @@ interface Article {
3340
3480
  updatedAt: string;
3341
3481
  createdAt: string;
3342
3482
  deletedAt?: string | null;
3343
- _status?: ('draft' | 'published') | null;
3344
3483
  }
3345
3484
  /**
3346
3485
  * This interface was referenced by `Config`'s JSON-Schema
@@ -3434,6 +3573,10 @@ interface Document {
3434
3573
  _order?: string | null;
3435
3574
  tenant?: (string | null) | Tenant;
3436
3575
  title: string;
3576
+ /**
3577
+ * Secondary display line shown in cards, listings, and detail headers.
3578
+ */
3579
+ subtitle?: string | null;
3437
3580
  /**
3438
3581
  * Short summary for listing/cards
3439
3582
  */
@@ -3519,6 +3662,7 @@ interface Document {
3519
3662
  */
3520
3663
  generateSlug?: boolean | null;
3521
3664
  slug?: string | null;
3665
+ status?: ('draft' | 'published' | 'archived') | null;
3522
3666
  type?: (string | null) | DocumentType;
3523
3667
  jurisdiction?: string | null;
3524
3668
  /**
@@ -3539,7 +3683,6 @@ interface Document {
3539
3683
  updatedAt: string;
3540
3684
  createdAt: string;
3541
3685
  deletedAt?: string | null;
3542
- _status?: ('draft' | 'published') | null;
3543
3686
  }
3544
3687
  /**
3545
3688
  * This interface was referenced by `Config`'s JSON-Schema
@@ -3599,6 +3742,10 @@ interface Playlist {
3599
3742
  _order?: string | null;
3600
3743
  tenant?: (string | null) | Tenant;
3601
3744
  title: string;
3745
+ /**
3746
+ * Secondary display line shown in cards, listings, and detail headers.
3747
+ */
3748
+ subtitle?: string | null;
3602
3749
  /**
3603
3750
  * Short summary for listing/cards
3604
3751
  */
@@ -3659,7 +3806,6 @@ interface Playlist {
3659
3806
  updatedAt: string;
3660
3807
  createdAt: string;
3661
3808
  deletedAt?: string | null;
3662
- _status?: ('draft' | 'published') | null;
3663
3809
  }
3664
3810
  /**
3665
3811
  * This interface was referenced by `Config`'s JSON-Schema
@@ -3777,7 +3923,6 @@ interface Track {
3777
3923
  updatedAt: string;
3778
3924
  createdAt: string;
3779
3925
  deletedAt?: string | null;
3780
- _status?: ('draft' | 'published') | null;
3781
3926
  }
3782
3927
  /**
3783
3928
  * This interface was referenced by `Config`'s JSON-Schema
@@ -3863,6 +4008,10 @@ interface Gallery {
3863
4008
  _order?: string | null;
3864
4009
  tenant?: (string | null) | Tenant;
3865
4010
  title: string;
4011
+ /**
4012
+ * Secondary display line shown in cards, listings, and detail headers.
4013
+ */
4014
+ subtitle?: string | null;
3866
4015
  /**
3867
4016
  * Short summary for listing/cards
3868
4017
  */
@@ -3926,7 +4075,6 @@ interface Gallery {
3926
4075
  updatedAt: string;
3927
4076
  createdAt: string;
3928
4077
  deletedAt?: string | null;
3929
- _status?: ('draft' | 'published') | null;
3930
4078
  }
3931
4079
  /**
3932
4080
  * This interface was referenced by `Config`'s JSON-Schema
@@ -3993,6 +4141,7 @@ interface GalleryItem {
3993
4141
  * Short summary for listing/cards
3994
4142
  */
3995
4143
  description?: string | null;
4144
+ status?: ('draft' | 'published' | 'archived') | null;
3996
4145
  content?: {
3997
4146
  root: {
3998
4147
  type: string;
@@ -4015,7 +4164,6 @@ interface GalleryItem {
4015
4164
  updatedAt: string;
4016
4165
  createdAt: string;
4017
4166
  deletedAt?: string | null;
4018
- _status?: ('draft' | 'published') | null;
4019
4167
  }
4020
4168
  /**
4021
4169
  * This interface was referenced by `Config`'s JSON-Schema
@@ -4026,6 +4174,10 @@ interface Link {
4026
4174
  _order?: string | null;
4027
4175
  tenant?: (string | null) | Tenant;
4028
4176
  title: string;
4177
+ /**
4178
+ * Secondary display line shown in cards, listings, and detail headers.
4179
+ */
4180
+ subtitle?: string | null;
4029
4181
  /**
4030
4182
  * Link URL (internal or external)
4031
4183
  */
@@ -4074,7 +4226,6 @@ interface Link {
4074
4226
  updatedAt: string;
4075
4227
  createdAt: string;
4076
4228
  deletedAt?: string | null;
4077
- _status?: ('draft' | 'published') | null;
4078
4229
  }
4079
4230
  /**
4080
4231
  * This interface was referenced by `Config`'s JSON-Schema
@@ -4134,6 +4285,10 @@ interface Canvase {
4134
4285
  id: string;
4135
4286
  tenant?: (string | null) | Tenant;
4136
4287
  title: string;
4288
+ /**
4289
+ * Secondary display line shown in cards, listings, and detail headers.
4290
+ */
4291
+ subtitle?: string | null;
4137
4292
  /**
4138
4293
  * Short summary for listing/cards
4139
4294
  */
@@ -4191,7 +4346,6 @@ interface Canvase {
4191
4346
  updatedAt: string;
4192
4347
  createdAt: string;
4193
4348
  deletedAt?: string | null;
4194
- _status?: ('draft' | 'published') | null;
4195
4349
  }
4196
4350
  /**
4197
4351
  * This interface was referenced by `Config`'s JSON-Schema
@@ -4699,6 +4853,10 @@ interface EventCalendar {
4699
4853
  _order?: string | null;
4700
4854
  tenant?: (string | null) | Tenant;
4701
4855
  title: string;
4856
+ /**
4857
+ * Secondary display line shown in cards, listings, and detail headers.
4858
+ */
4859
+ subtitle?: string | null;
4702
4860
  /**
4703
4861
  * Short summary for listing/cards
4704
4862
  */
@@ -4759,6 +4917,7 @@ interface EventCalendar {
4759
4917
  */
4760
4918
  generateSlug?: boolean | null;
4761
4919
  slug?: string | null;
4920
+ status?: ('draft' | 'published' | 'archived') | null;
4762
4921
  timezone: string;
4763
4922
  color?: string | null;
4764
4923
  visibility: 'public' | 'unlisted' | 'members' | 'private';
@@ -4769,7 +4928,6 @@ interface EventCalendar {
4769
4928
  updatedAt: string;
4770
4929
  createdAt: string;
4771
4930
  deletedAt?: string | null;
4772
- _status?: ('draft' | 'published') | null;
4773
4931
  }
4774
4932
  /**
4775
4933
  * This interface was referenced by `Config`'s JSON-Schema
@@ -4780,6 +4938,10 @@ interface Event {
4780
4938
  _order?: string | null;
4781
4939
  tenant?: (string | null) | Tenant;
4782
4940
  title: string;
4941
+ /**
4942
+ * Secondary display line shown in cards, listings, and detail headers.
4943
+ */
4944
+ subtitle?: string | null;
4783
4945
  /**
4784
4946
  * Short summary for listing/cards
4785
4947
  */
@@ -4893,7 +5055,6 @@ interface Event {
4893
5055
  updatedAt: string;
4894
5056
  createdAt: string;
4895
5057
  deletedAt?: string | null;
4896
- _status?: ('draft' | 'published') | null;
4897
5058
  }
4898
5059
  /**
4899
5060
  * This interface was referenced by `Config`'s JSON-Schema
@@ -5301,304 +5462,10 @@ interface PayloadKv {
5301
5462
  */
5302
5463
  interface PayloadLockedDocument {
5303
5464
  id: string;
5304
- document?: ({
5465
+ document?: {
5305
5466
  relationTo: 'users';
5306
5467
  value: string | User;
5307
- } | null) | ({
5308
- relationTo: 'field-configs';
5309
- value: string | FieldConfig;
5310
- } | null) | ({
5311
- relationTo: 'images';
5312
- value: string | Image;
5313
- } | null) | ({
5314
- relationTo: 'system-media';
5315
- value: string | SystemMedia;
5316
- } | null) | ({
5317
- relationTo: 'audiences';
5318
- value: string | Audience;
5319
- } | null) | ({
5320
- relationTo: 'email-logs';
5321
- value: string | EmailLog;
5322
- } | null) | ({
5323
- relationTo: 'api-keys';
5324
- value: string | ApiKey;
5325
- } | null) | ({
5326
- relationTo: 'personal-access-tokens';
5327
- value: string | PersonalAccessToken;
5328
- } | null) | ({
5329
- relationTo: 'audit-logs';
5330
- value: string | AuditLog;
5331
- } | null) | ({
5332
- relationTo: 'webhook-events';
5333
- value: string | WebhookEvent;
5334
- } | null) | ({
5335
- relationTo: 'webhook-deliveries';
5336
- value: string | WebhookDelivery;
5337
- } | null) | ({
5338
- relationTo: 'tenants';
5339
- value: string | Tenant;
5340
- } | null) | ({
5341
- relationTo: 'tenant-metadata';
5342
- value: string | TenantMetadatum;
5343
- } | null) | ({
5344
- relationTo: 'api-usage';
5345
- value: string | ApiUsage;
5346
- } | null) | ({
5347
- relationTo: 'tenant-analytics-daily';
5348
- value: string | TenantAnalyticsDaily;
5349
- } | null) | ({
5350
- relationTo: 'analytics-event-schemas';
5351
- value: string | AnalyticsEventSchema;
5352
- } | null) | ({
5353
- relationTo: 'tenant-entitlements';
5354
- value: string | TenantEntitlement;
5355
- } | null) | ({
5356
- relationTo: 'subscriptions';
5357
- value: string | Subscription;
5358
- } | null) | ({
5359
- relationTo: 'billing-history';
5360
- value: string | BillingHistory;
5361
- } | null) | ({
5362
- relationTo: 'plans';
5363
- value: string | Plan;
5364
- } | null) | ({
5365
- relationTo: 'webhooks';
5366
- value: string | Webhook;
5367
- } | null) | ({
5368
- relationTo: 'tenant-logos';
5369
- value: string | TenantLogo;
5370
- } | null) | ({
5371
- relationTo: 'products';
5372
- value: string | Product;
5373
- } | null) | ({
5374
- relationTo: 'product-variants';
5375
- value: string | ProductVariant;
5376
- } | null) | ({
5377
- relationTo: 'product-options';
5378
- value: string | ProductOption;
5379
- } | null) | ({
5380
- relationTo: 'product-option-values';
5381
- value: string | ProductOptionValue;
5382
- } | null) | ({
5383
- relationTo: 'product-categories';
5384
- value: string | ProductCategory;
5385
- } | null) | ({
5386
- relationTo: 'product-tags';
5387
- value: string | ProductTag;
5388
- } | null) | ({
5389
- relationTo: 'product-collections';
5390
- value: string | ProductCollection;
5391
- } | null) | ({
5392
- relationTo: 'brands';
5393
- value: string | Brand;
5394
- } | null) | ({
5395
- relationTo: 'brand-logos';
5396
- value: string | BrandLogo;
5397
- } | null) | ({
5398
- relationTo: 'orders';
5399
- value: string | Order;
5400
- } | null) | ({
5401
- relationTo: 'order-items';
5402
- value: string | OrderItem;
5403
- } | null) | ({
5404
- relationTo: 'transactions';
5405
- value: string | Transaction;
5406
- } | null) | ({
5407
- relationTo: 'order-status-logs';
5408
- value: string | OrderStatusLog;
5409
- } | null) | ({
5410
- relationTo: 'fulfillments';
5411
- value: string | Fulfillment;
5412
- } | null) | ({
5413
- relationTo: 'fulfillment-items';
5414
- value: string | FulfillmentItem;
5415
- } | null) | ({
5416
- relationTo: 'returns';
5417
- value: string | Return;
5418
- } | null) | ({
5419
- relationTo: 'return-items';
5420
- value: string | ReturnItem;
5421
- } | null) | ({
5422
- relationTo: 'shipping-policies';
5423
- value: string | ShippingPolicy;
5424
- } | null) | ({
5425
- relationTo: 'customers';
5426
- value: string | Customer;
5427
- } | null) | ({
5428
- relationTo: 'customer-profiles';
5429
- value: string | CustomerProfile;
5430
- } | null) | ({
5431
- relationTo: 'customer-profile-lists';
5432
- value: string | CustomerProfileList;
5433
- } | null) | ({
5434
- relationTo: 'customer-addresses';
5435
- value: string | CustomerAddress;
5436
- } | null) | ({
5437
- relationTo: 'customer-groups';
5438
- value: string | CustomerGroup;
5439
- } | null) | ({
5440
- relationTo: 'carts';
5441
- value: string | Cart;
5442
- } | null) | ({
5443
- relationTo: 'cart-items';
5444
- value: string | CartItem;
5445
- } | null) | ({
5446
- relationTo: 'discounts';
5447
- value: string | Discount;
5448
- } | null) | ({
5449
- relationTo: 'promotions';
5450
- value: string | Promotion;
5451
- } | null) | ({
5452
- relationTo: 'articles';
5453
- value: string | Article;
5454
- } | null) | ({
5455
- relationTo: 'article-authors';
5456
- value: string | ArticleAuthor;
5457
- } | null) | ({
5458
- relationTo: 'article-categories';
5459
- value: string | ArticleCategory;
5460
- } | null) | ({
5461
- relationTo: 'article-tags';
5462
- value: string | ArticleTag;
5463
- } | null) | ({
5464
- relationTo: 'documents';
5465
- value: string | Document;
5466
- } | null) | ({
5467
- relationTo: 'document-categories';
5468
- value: string | DocumentCategory;
5469
- } | null) | ({
5470
- relationTo: 'document-types';
5471
- value: string | DocumentType;
5472
- } | null) | ({
5473
- relationTo: 'playlists';
5474
- value: string | Playlist;
5475
- } | null) | ({
5476
- relationTo: 'playlist-categories';
5477
- value: string | PlaylistCategory;
5478
- } | null) | ({
5479
- relationTo: 'playlist-tags';
5480
- value: string | PlaylistTag;
5481
- } | null) | ({
5482
- relationTo: 'tracks';
5483
- value: string | Track;
5484
- } | null) | ({
5485
- relationTo: 'track-assets';
5486
- value: string | TrackAsset;
5487
- } | null) | ({
5488
- relationTo: 'track-categories';
5489
- value: string | TrackCategory;
5490
- } | null) | ({
5491
- relationTo: 'track-tags';
5492
- value: string | TrackTag;
5493
- } | null) | ({
5494
- relationTo: 'galleries';
5495
- value: string | Gallery;
5496
- } | null) | ({
5497
- relationTo: 'gallery-categories';
5498
- value: string | GalleryCategory;
5499
- } | null) | ({
5500
- relationTo: 'gallery-tags';
5501
- value: string | GalleryTag;
5502
- } | null) | ({
5503
- relationTo: 'gallery-items';
5504
- value: string | GalleryItem;
5505
- } | null) | ({
5506
- relationTo: 'links';
5507
- value: string | Link;
5508
- } | null) | ({
5509
- relationTo: 'link-categories';
5510
- value: string | LinkCategory;
5511
- } | null) | ({
5512
- relationTo: 'link-tags';
5513
- value: string | LinkTag;
5514
- } | null) | ({
5515
- relationTo: 'canvases';
5516
- value: string | Canvase;
5517
- } | null) | ({
5518
- relationTo: 'canvas-node-types';
5519
- value: string | CanvasNodeType;
5520
- } | null) | ({
5521
- relationTo: 'canvas-edge-types';
5522
- value: string | CanvasEdgeType;
5523
- } | null) | ({
5524
- relationTo: 'canvas-categories';
5525
- value: string | CanvasCategory;
5526
- } | null) | ({
5527
- relationTo: 'canvas-tags';
5528
- value: string | CanvasTag;
5529
- } | null) | ({
5530
- relationTo: 'canvas-nodes';
5531
- value: string | CanvasNode;
5532
- } | null) | ({
5533
- relationTo: 'canvas-edges';
5534
- value: string | CanvasEdge;
5535
- } | null) | ({
5536
- relationTo: 'videos';
5537
- value: string | Video;
5538
- } | null) | ({
5539
- relationTo: 'video-categories';
5540
- value: string | VideoCategory;
5541
- } | null) | ({
5542
- relationTo: 'video-tags';
5543
- value: string | VideoTag;
5544
- } | null) | ({
5545
- relationTo: 'live-streams';
5546
- value: string | LiveStream;
5547
- } | null) | ({
5548
- relationTo: 'posts';
5549
- value: string | Post;
5550
- } | null) | ({
5551
- relationTo: 'comments';
5552
- value: string | Comment;
5553
- } | null) | ({
5554
- relationTo: 'reactions';
5555
- value: string | Reaction;
5556
- } | null) | ({
5557
- relationTo: 'reaction-types';
5558
- value: string | ReactionType;
5559
- } | null) | ({
5560
- relationTo: 'bookmarks';
5561
- value: string | Bookmark;
5562
- } | null) | ({
5563
- relationTo: 'post-categories';
5564
- value: string | PostCategory;
5565
- } | null) | ({
5566
- relationTo: 'reports';
5567
- value: string | Report;
5568
- } | null) | ({
5569
- relationTo: 'community-bans';
5570
- value: string | CommunityBan;
5571
- } | null) | ({
5572
- relationTo: 'event-calendars';
5573
- value: string | EventCalendar;
5574
- } | null) | ({
5575
- relationTo: 'events';
5576
- value: string | Event;
5577
- } | null) | ({
5578
- relationTo: 'event-categories';
5579
- value: string | EventCategory;
5580
- } | null) | ({
5581
- relationTo: 'event-tags';
5582
- value: string | EventTag;
5583
- } | null) | ({
5584
- relationTo: 'event-occurrences';
5585
- value: string | EventOccurrence;
5586
- } | null) | ({
5587
- relationTo: 'event-registrations';
5588
- value: string | EventRegistration;
5589
- } | null) | ({
5590
- relationTo: 'direct-upload-sessions';
5591
- value: string | DirectUploadSession;
5592
- } | null) | ({
5593
- relationTo: 'forms';
5594
- value: string | Form;
5595
- } | null) | ({
5596
- relationTo: 'form-submissions';
5597
- value: string | FormSubmission;
5598
- } | null) | ({
5599
- relationTo: 'payload-folders';
5600
- value: string | FolderInterface;
5601
- } | null);
5468
+ } | null;
5602
5469
  globalSlug?: string | null;
5603
5470
  user: {
5604
5471
  relationTo: 'users';
@@ -5913,9 +5780,21 @@ interface WebhookEventsSelect<T extends boolean = true> {
5913
5780
  */
5914
5781
  interface WebhookDeliveriesSelect<T extends boolean = true> {
5915
5782
  tenant?: T;
5916
- webhookEventId?: T;
5783
+ webhookId?: T;
5784
+ deliveryId?: T;
5917
5785
  attempt?: T;
5918
5786
  status?: T;
5787
+ endpointHost?: T;
5788
+ endpointUrlHash?: T;
5789
+ collection?: T;
5790
+ operation?: T;
5791
+ source?: T;
5792
+ statusCode?: T;
5793
+ errorKind?: T;
5794
+ errorMessage?: T;
5795
+ durationMs?: T;
5796
+ nextRetryAt?: T;
5797
+ redelivery?: T;
5919
5798
  dispatchedAt?: T;
5920
5799
  updatedAt?: T;
5921
5800
  createdAt?: T;
@@ -5931,30 +5810,14 @@ interface TenantsSelect<T extends boolean = true> {
5931
5810
  enabledFeatures?: T;
5932
5811
  enabledRelationshipRecipes?: T;
5933
5812
  featureVersion?: T;
5934
- isDevMode?: T;
5813
+ provisioning?: T;
5935
5814
  status?: T;
5936
5815
  publishableKey?: T;
5937
5816
  cors?: T | {
5938
5817
  origin?: T;
5939
5818
  id?: T;
5940
5819
  };
5941
- webhooks?: T | {
5942
- name?: T;
5943
- url?: T;
5944
- secret?: T;
5945
- isEnabled?: T;
5946
- id?: T;
5947
- };
5948
5820
  members?: T;
5949
- webAnalytics?: T | {
5950
- enabled?: T;
5951
- allowedOrigins?: T | {
5952
- origin?: T;
5953
- id?: T;
5954
- };
5955
- timezone?: T;
5956
- tzLocked?: T;
5957
- };
5958
5821
  updatedAt?: T;
5959
5822
  createdAt?: T;
5960
5823
  deletedAt?: T;
@@ -6024,6 +5887,23 @@ interface TenantMetadataSelect<T extends boolean = true> {
6024
5887
  createdAt?: T;
6025
5888
  deletedAt?: T;
6026
5889
  }
5890
+ /**
5891
+ * This interface was referenced by `Config`'s JSON-Schema
5892
+ * via the `definition` "tenant-web-analytics-config_select".
5893
+ */
5894
+ interface TenantWebAnalyticsConfigSelect<T extends boolean = true> {
5895
+ tenant?: T;
5896
+ enabled?: T;
5897
+ allowedOrigins?: T | {
5898
+ origin?: T;
5899
+ id?: T;
5900
+ };
5901
+ timezone?: T;
5902
+ tzLocked?: T;
5903
+ updatedAt?: T;
5904
+ createdAt?: T;
5905
+ deletedAt?: T;
5906
+ }
6027
5907
  /**
6028
5908
  * This interface was referenced by `Config`'s JSON-Schema
6029
5909
  * via the `definition` "api-usage_select".
@@ -6083,6 +5963,8 @@ interface TenantAnalyticsDailySelect<T extends boolean = true> {
6083
5963
  schemaShape?: T;
6084
5964
  eventDetails?: T | {
6085
5965
  eventName?: T;
5966
+ count?: T;
5967
+ schemaShape?: T;
6086
5968
  dimensions?: T | {
6087
5969
  dimension?: T;
6088
5970
  values?: T | {
@@ -6104,6 +5986,35 @@ interface TenantAnalyticsDailySelect<T extends boolean = true> {
6104
5986
  };
6105
5987
  id?: T;
6106
5988
  };
5989
+ mcpUsage?: T | {
5990
+ toolCalls?: T;
5991
+ sessions?: T;
5992
+ convertedSessions?: T;
5993
+ conversionRate?: T;
5994
+ successfulWrites?: T;
5995
+ isPartial?: T;
5996
+ topTools?: T | {
5997
+ name?: T;
5998
+ count?: T;
5999
+ readOnly?: T;
6000
+ id?: T;
6001
+ };
6002
+ transports?: T | {
6003
+ name?: T;
6004
+ count?: T;
6005
+ id?: T;
6006
+ };
6007
+ httpDurationMs?: T | {
6008
+ p50?: T;
6009
+ p99?: T;
6010
+ buckets?: T | {
6011
+ bucket?: T;
6012
+ label?: T;
6013
+ count?: T;
6014
+ id?: T;
6015
+ };
6016
+ };
6017
+ };
6107
6018
  updatedAt?: T;
6108
6019
  createdAt?: T;
6109
6020
  }
@@ -6149,6 +6060,20 @@ interface TenantEntitlementsSelect<T extends boolean = true> {
6149
6060
  createdAt?: T;
6150
6061
  deletedAt?: T;
6151
6062
  }
6063
+ /**
6064
+ * This interface was referenced by `Config`'s JSON-Schema
6065
+ * via the `definition` "tenant-purge-jobs_select".
6066
+ */
6067
+ interface TenantPurgeJobsSelect<T extends boolean = true> {
6068
+ tenantId?: T;
6069
+ status?: T;
6070
+ currentCollection?: T;
6071
+ deletedCount?: T;
6072
+ failure?: T;
6073
+ completedAt?: T;
6074
+ updatedAt?: T;
6075
+ createdAt?: T;
6076
+ }
6152
6077
  /**
6153
6078
  * This interface was referenced by `Config`'s JSON-Schema
6154
6079
  * via the `definition` "subscriptions_select".
@@ -6239,7 +6164,7 @@ interface WebhooksSelect<T extends boolean = true> {
6239
6164
  url?: T;
6240
6165
  secret?: T;
6241
6166
  subscriptions?: T | {
6242
- event?: T;
6167
+ collection?: T;
6243
6168
  id?: T;
6244
6169
  };
6245
6170
  isActive?: T;
@@ -6395,7 +6320,6 @@ interface ProductsSelect<T extends boolean = true> {
6395
6320
  updatedAt?: T;
6396
6321
  createdAt?: T;
6397
6322
  deletedAt?: T;
6398
- _status?: T;
6399
6323
  }
6400
6324
  /**
6401
6325
  * This interface was referenced by `Config`'s JSON-Schema
@@ -6506,6 +6430,7 @@ interface ProductCollectionsSelect<T extends boolean = true> {
6506
6430
  _order?: T;
6507
6431
  tenant?: T;
6508
6432
  title?: T;
6433
+ subtitle?: T;
6509
6434
  description?: T;
6510
6435
  content?: T;
6511
6436
  images?: T;
@@ -6532,7 +6457,6 @@ interface ProductCollectionsSelect<T extends boolean = true> {
6532
6457
  updatedAt?: T;
6533
6458
  createdAt?: T;
6534
6459
  deletedAt?: T;
6535
- _status?: T;
6536
6460
  }
6537
6461
  /**
6538
6462
  * This interface was referenced by `Config`'s JSON-Schema
@@ -6568,7 +6492,6 @@ interface BrandsSelect<T extends boolean = true> {
6568
6492
  updatedAt?: T;
6569
6493
  createdAt?: T;
6570
6494
  deletedAt?: T;
6571
- _status?: T;
6572
6495
  }
6573
6496
  /**
6574
6497
  * This interface was referenced by `Config`'s JSON-Schema
@@ -7212,6 +7135,7 @@ interface ArticlesSelect<T extends boolean = true> {
7212
7135
  };
7213
7136
  generateSlug?: T;
7214
7137
  slug?: T;
7138
+ status?: T;
7215
7139
  thumbnail?: T;
7216
7140
  images?: T;
7217
7141
  publishedAt?: T;
@@ -7227,7 +7151,6 @@ interface ArticlesSelect<T extends boolean = true> {
7227
7151
  updatedAt?: T;
7228
7152
  createdAt?: T;
7229
7153
  deletedAt?: T;
7230
- _status?: T;
7231
7154
  }
7232
7155
  /**
7233
7156
  * This interface was referenced by `Config`'s JSON-Schema
@@ -7293,6 +7216,7 @@ interface DocumentsSelect<T extends boolean = true> {
7293
7216
  _order?: T;
7294
7217
  tenant?: T;
7295
7218
  title?: T;
7219
+ subtitle?: T;
7296
7220
  description?: T;
7297
7221
  content?: T;
7298
7222
  videos?: T;
@@ -7319,6 +7243,7 @@ interface DocumentsSelect<T extends boolean = true> {
7319
7243
  };
7320
7244
  generateSlug?: T;
7321
7245
  slug?: T;
7246
+ status?: T;
7322
7247
  type?: T;
7323
7248
  jurisdiction?: T;
7324
7249
  language?: T;
@@ -7331,7 +7256,6 @@ interface DocumentsSelect<T extends boolean = true> {
7331
7256
  updatedAt?: T;
7332
7257
  createdAt?: T;
7333
7258
  deletedAt?: T;
7334
- _status?: T;
7335
7259
  }
7336
7260
  /**
7337
7261
  * This interface was referenced by `Config`'s JSON-Schema
@@ -7376,6 +7300,7 @@ interface PlaylistsSelect<T extends boolean = true> {
7376
7300
  _order?: T;
7377
7301
  tenant?: T;
7378
7302
  title?: T;
7303
+ subtitle?: T;
7379
7304
  description?: T;
7380
7305
  videos?: T;
7381
7306
  categories?: T;
@@ -7404,7 +7329,6 @@ interface PlaylistsSelect<T extends boolean = true> {
7404
7329
  updatedAt?: T;
7405
7330
  createdAt?: T;
7406
7331
  deletedAt?: T;
7407
- _status?: T;
7408
7332
  }
7409
7333
  /**
7410
7334
  * This interface was referenced by `Config`'s JSON-Schema
@@ -7476,7 +7400,6 @@ interface TracksSelect<T extends boolean = true> {
7476
7400
  updatedAt?: T;
7477
7401
  createdAt?: T;
7478
7402
  deletedAt?: T;
7479
- _status?: T;
7480
7403
  }
7481
7404
  /**
7482
7405
  * This interface was referenced by `Config`'s JSON-Schema
@@ -7544,6 +7467,7 @@ interface GalleriesSelect<T extends boolean = true> {
7544
7467
  _order?: T;
7545
7468
  tenant?: T;
7546
7469
  title?: T;
7470
+ subtitle?: T;
7547
7471
  description?: T;
7548
7472
  videos?: T;
7549
7473
  categories?: T;
@@ -7571,7 +7495,6 @@ interface GalleriesSelect<T extends boolean = true> {
7571
7495
  updatedAt?: T;
7572
7496
  createdAt?: T;
7573
7497
  deletedAt?: T;
7574
- _status?: T;
7575
7498
  }
7576
7499
  /**
7577
7500
  * This interface was referenced by `Config`'s JSON-Schema
@@ -7620,13 +7543,13 @@ interface GalleryItemsSelect<T extends boolean = true> {
7620
7543
  gallery?: T;
7621
7544
  title?: T;
7622
7545
  description?: T;
7546
+ status?: T;
7623
7547
  content?: T;
7624
7548
  image?: T;
7625
7549
  metadata?: T;
7626
7550
  updatedAt?: T;
7627
7551
  createdAt?: T;
7628
7552
  deletedAt?: T;
7629
- _status?: T;
7630
7553
  }
7631
7554
  /**
7632
7555
  * This interface was referenced by `Config`'s JSON-Schema
@@ -7636,6 +7559,7 @@ interface LinksSelect<T extends boolean = true> {
7636
7559
  _order?: T;
7637
7560
  tenant?: T;
7638
7561
  title?: T;
7562
+ subtitle?: T;
7639
7563
  url?: T;
7640
7564
  description?: T;
7641
7565
  categories?: T;
@@ -7658,7 +7582,6 @@ interface LinksSelect<T extends boolean = true> {
7658
7582
  updatedAt?: T;
7659
7583
  createdAt?: T;
7660
7584
  deletedAt?: T;
7661
- _status?: T;
7662
7585
  }
7663
7586
  /**
7664
7587
  * This interface was referenced by `Config`'s JSON-Schema
@@ -7703,6 +7626,7 @@ interface LinkTagsSelect<T extends boolean = true> {
7703
7626
  interface CanvasesSelect<T extends boolean = true> {
7704
7627
  tenant?: T;
7705
7628
  title?: T;
7629
+ subtitle?: T;
7706
7630
  description?: T;
7707
7631
  videos?: T;
7708
7632
  canvas?: T;
@@ -7729,7 +7653,6 @@ interface CanvasesSelect<T extends boolean = true> {
7729
7653
  updatedAt?: T;
7730
7654
  createdAt?: T;
7731
7655
  deletedAt?: T;
7732
- _status?: T;
7733
7656
  }
7734
7657
  /**
7735
7658
  * This interface was referenced by `Config`'s JSON-Schema
@@ -7874,6 +7797,7 @@ interface CanvasEdgesSelect<T extends boolean = true> {
7874
7797
  interface VideosSelect<T extends boolean = true> {
7875
7798
  tenant?: T;
7876
7799
  title?: T;
7800
+ subtitle?: T;
7877
7801
  filename?: T;
7878
7802
  description?: T;
7879
7803
  content?: T;
@@ -7960,6 +7884,7 @@ interface VideoTagsSelect<T extends boolean = true> {
7960
7884
  interface LiveStreamsSelect<T extends boolean = true> {
7961
7885
  tenant?: T;
7962
7886
  title?: T;
7887
+ subtitle?: T;
7963
7888
  description?: T;
7964
7889
  scheduledAt?: T;
7965
7890
  latencyMode?: T;
@@ -8168,6 +8093,7 @@ interface EventCalendarsSelect<T extends boolean = true> {
8168
8093
  _order?: T;
8169
8094
  tenant?: T;
8170
8095
  title?: T;
8096
+ subtitle?: T;
8171
8097
  description?: T;
8172
8098
  content?: T;
8173
8099
  publicListing?: T | {
@@ -8187,6 +8113,7 @@ interface EventCalendarsSelect<T extends boolean = true> {
8187
8113
  };
8188
8114
  generateSlug?: T;
8189
8115
  slug?: T;
8116
+ status?: T;
8190
8117
  timezone?: T;
8191
8118
  color?: T;
8192
8119
  visibility?: T;
@@ -8195,7 +8122,6 @@ interface EventCalendarsSelect<T extends boolean = true> {
8195
8122
  updatedAt?: T;
8196
8123
  createdAt?: T;
8197
8124
  deletedAt?: T;
8198
- _status?: T;
8199
8125
  }
8200
8126
  /**
8201
8127
  * This interface was referenced by `Config`'s JSON-Schema
@@ -8205,6 +8131,7 @@ interface EventsSelect<T extends boolean = true> {
8205
8131
  _order?: T;
8206
8132
  tenant?: T;
8207
8133
  title?: T;
8134
+ subtitle?: T;
8208
8135
  description?: T;
8209
8136
  content?: T;
8210
8137
  categories?: T;
@@ -8269,7 +8196,6 @@ interface EventsSelect<T extends boolean = true> {
8269
8196
  updatedAt?: T;
8270
8197
  createdAt?: T;
8271
8198
  deletedAt?: T;
8272
- _status?: T;
8273
8199
  }
8274
8200
  /**
8275
8201
  * This interface was referenced by `Config`'s JSON-Schema