@01.software/sdk 0.25.0 → 0.27.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.
- package/README.md +28 -3
- package/dist/analytics/react.cjs +249 -0
- package/dist/analytics/react.cjs.map +1 -0
- package/dist/analytics/react.d.cts +8 -0
- package/dist/analytics/react.d.ts +8 -0
- package/dist/analytics/react.js +228 -0
- package/dist/analytics/react.js.map +1 -0
- package/dist/{const-C8UhtzLn.d.cts → const-C0GlmeJ_.d.cts} +6 -6
- package/dist/{const-Bs-QcTj0.d.ts → const-D-xucnw4.d.ts} +6 -6
- package/dist/{image-TT8lTsk5.d.cts → image-BDz2-AaO.d.cts} +1 -1
- package/dist/{image-TT8lTsk5.d.ts → image-BDz2-AaO.d.ts} +1 -1
- package/dist/index.cjs +32 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -9
- package/dist/index.d.ts +9 -9
- package/dist/index.js +32 -7
- package/dist/index.js.map +1 -1
- package/dist/{payload-types-BaK4zCQ8.d.cts → payload-types-BPvUmPAq.d.cts} +803 -709
- package/dist/{payload-types-BaK4zCQ8.d.ts → payload-types-BPvUmPAq.d.ts} +803 -709
- package/dist/realtime.d.cts +2 -2
- package/dist/realtime.d.ts +2 -2
- package/dist/{server-DLdbWJVv.d.cts → server-BINWywT8.d.cts} +1 -1
- package/dist/{server-DLdbWJVv.d.ts → server-BINWywT8.d.ts} +1 -1
- package/dist/{server-CkGfBnSx.d.cts → server-_zvihptw.d.ts} +27 -4
- package/dist/{server-DQYWLnkt.d.ts → server-n3xK4Nks.d.cts} +27 -4
- package/dist/server.cjs +25 -4
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +4 -4
- package/dist/server.d.ts +4 -4
- package/dist/server.js +25 -4
- package/dist/server.js.map +1 -1
- package/dist/{types-DjaaBExv.d.ts → types-BLdthWiW.d.ts} +1 -1
- package/dist/{types-BH-YBrFs.d.cts → types-DzWNu9pw.d.cts} +1 -1
- package/dist/ui/canvas/server.d.cts +1 -1
- package/dist/ui/canvas/server.d.ts +1 -1
- package/dist/ui/canvas.d.cts +3 -3
- package/dist/ui/canvas.d.ts +3 -3
- package/dist/ui/form.d.cts +1 -1
- package/dist/ui/form.d.ts +1 -1
- package/dist/ui/image.d.cts +1 -1
- package/dist/ui/image.d.ts +1 -1
- package/dist/ui/rich-text.cjs +138 -0
- package/dist/ui/rich-text.cjs.map +1 -1
- package/dist/ui/rich-text.d.cts +23 -1
- package/dist/ui/rich-text.d.ts +23 -1
- package/dist/ui/rich-text.js +138 -0
- package/dist/ui/rich-text.js.map +1 -1
- package/dist/ui/video.d.cts +2 -2
- package/dist/ui/video.d.ts +2 -2
- package/dist/{video-DbLL8yuc.d.cts → video-WR_TFO9a.d.cts} +1 -1
- package/dist/{video-DbLL8yuc.d.ts → video-WR_TFO9a.d.ts} +1 -1
- package/dist/webhook.d.cts +3 -3
- package/dist/webhook.d.ts +3 -3
- package/package.json +41 -24
|
@@ -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;
|
|
@@ -157,6 +160,13 @@ interface Config {
|
|
|
157
160
|
posts: {
|
|
158
161
|
comments: 'comments';
|
|
159
162
|
};
|
|
163
|
+
events: {
|
|
164
|
+
occurrences: 'event-occurrences';
|
|
165
|
+
registrations: 'event-registrations';
|
|
166
|
+
};
|
|
167
|
+
'event-occurrences': {
|
|
168
|
+
registrations: 'event-registrations';
|
|
169
|
+
};
|
|
160
170
|
'payload-folders': {
|
|
161
171
|
documentsAndFolders: 'payload-folders' | 'images' | 'system-media';
|
|
162
172
|
};
|
|
@@ -175,10 +185,12 @@ interface Config {
|
|
|
175
185
|
'webhook-deliveries': WebhookDeliveriesSelect<false> | WebhookDeliveriesSelect<true>;
|
|
176
186
|
tenants: TenantsSelect<false> | TenantsSelect<true>;
|
|
177
187
|
'tenant-metadata': TenantMetadataSelect<false> | TenantMetadataSelect<true>;
|
|
188
|
+
'tenant-web-analytics-config': TenantWebAnalyticsConfigSelect<false> | TenantWebAnalyticsConfigSelect<true>;
|
|
178
189
|
'api-usage': ApiUsageSelect<false> | ApiUsageSelect<true>;
|
|
179
190
|
'tenant-analytics-daily': TenantAnalyticsDailySelect<false> | TenantAnalyticsDailySelect<true>;
|
|
180
191
|
'analytics-event-schemas': AnalyticsEventSchemasSelect<false> | AnalyticsEventSchemasSelect<true>;
|
|
181
192
|
'tenant-entitlements': TenantEntitlementsSelect<false> | TenantEntitlementsSelect<true>;
|
|
193
|
+
'tenant-purge-jobs': TenantPurgeJobsSelect<false> | TenantPurgeJobsSelect<true>;
|
|
182
194
|
subscriptions: SubscriptionsSelect<false> | SubscriptionsSelect<true>;
|
|
183
195
|
'billing-history': BillingHistorySelect<false> | BillingHistorySelect<true>;
|
|
184
196
|
plans: PlansSelect<false> | PlansSelect<true>;
|
|
@@ -355,157 +367,30 @@ interface CodeBlock {
|
|
|
355
367
|
}
|
|
356
368
|
/**
|
|
357
369
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
358
|
-
* via the `definition` "
|
|
370
|
+
* via the `definition` "CarouselBlock".
|
|
359
371
|
*/
|
|
360
|
-
interface
|
|
361
|
-
|
|
362
|
-
|
|
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".
|
|
421
|
-
*/
|
|
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?: {
|
|
372
|
+
interface CarouselBlock {
|
|
373
|
+
slides: {
|
|
374
|
+
image: string | Image;
|
|
465
375
|
/**
|
|
466
|
-
*
|
|
376
|
+
* Falls back to the uploaded image alternative text when empty.
|
|
467
377
|
*/
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
* HTTPS URL that receives signed webhooks. Treat this endpoint as a recipient of sensitive tenant events.
|
|
471
|
-
*/
|
|
472
|
-
url: string;
|
|
378
|
+
alt?: string | null;
|
|
379
|
+
caption?: string | null;
|
|
473
380
|
/**
|
|
474
|
-
*
|
|
381
|
+
* Optional. When set, the slide image links to this URL.
|
|
475
382
|
*/
|
|
476
|
-
|
|
477
|
-
isEnabled?: boolean | null;
|
|
383
|
+
href?: string | null;
|
|
478
384
|
id?: string | null;
|
|
479
|
-
}[]
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
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;
|
|
385
|
+
}[];
|
|
386
|
+
aspectRatio?: ('16:9' | '4:3' | '1:1' | '3:4') | null;
|
|
387
|
+
fit?: ('cover' | 'contain') | null;
|
|
388
|
+
showCaptions?: boolean | null;
|
|
389
|
+
showDots?: boolean | null;
|
|
390
|
+
showControls?: boolean | null;
|
|
391
|
+
id?: string | null;
|
|
392
|
+
blockName?: string | null;
|
|
393
|
+
blockType: 'Carousel';
|
|
509
394
|
}
|
|
510
395
|
/**
|
|
511
396
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -590,6 +475,122 @@ interface Image {
|
|
|
590
475
|
};
|
|
591
476
|
};
|
|
592
477
|
}
|
|
478
|
+
/**
|
|
479
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
480
|
+
* via the `definition` "tenants".
|
|
481
|
+
*/
|
|
482
|
+
interface Tenant {
|
|
483
|
+
id: string;
|
|
484
|
+
name: string;
|
|
485
|
+
/**
|
|
486
|
+
* URL-safe identifier (auto-generated)
|
|
487
|
+
*/
|
|
488
|
+
slug?: string | null;
|
|
489
|
+
/**
|
|
490
|
+
* Tenant owner. Only the owner can delete the tenant or transfer ownership.
|
|
491
|
+
*/
|
|
492
|
+
owner: string | User;
|
|
493
|
+
/**
|
|
494
|
+
* Only features checked above will be enabled for this tenant.
|
|
495
|
+
*/
|
|
496
|
+
enabledFeatures?: ('ecommerce' | 'customers' | 'playlists' | 'galleries' | 'links' | 'forms' | 'articles' | 'documents' | 'canvas' | 'videos' | 'live-streaming' | 'community' | 'events')[] | null;
|
|
497
|
+
/**
|
|
498
|
+
* Only selected relationship recipes are active for this tenant. Recipes whose required features are disabled keep their stored intent but remain inactive at runtime.
|
|
499
|
+
*/
|
|
500
|
+
enabledRelationshipRecipes?: ('event-commerce' | 'shoppable-content' | 'product-content-access' | 'form-context' | 'document-acceptance')[] | null;
|
|
501
|
+
featureVersion?: number | null;
|
|
502
|
+
provisioning?: {
|
|
503
|
+
[k: string]: unknown;
|
|
504
|
+
} | unknown[] | string | number | boolean | null;
|
|
505
|
+
/**
|
|
506
|
+
* Tenant lifecycle status. Managed by billing webhooks, deletion scheduling, or super-admin maintenance paths, not normal edits.
|
|
507
|
+
*/
|
|
508
|
+
status?: ('active' | 'paused' | 'past_due' | 'canceled' | 'pending_deletion') | null;
|
|
509
|
+
/**
|
|
510
|
+
* A public key that is safe to include in browser code. (Starts with pk01_)
|
|
511
|
+
*/
|
|
512
|
+
publishableKey: string;
|
|
513
|
+
/**
|
|
514
|
+
* Domains allowed to call this tenant’s API from a browser. Leave empty to block browser calls.
|
|
515
|
+
*/
|
|
516
|
+
cors?: {
|
|
517
|
+
origin: string;
|
|
518
|
+
id?: string | null;
|
|
519
|
+
}[] | null;
|
|
520
|
+
/**
|
|
521
|
+
* Users connected to this tenant
|
|
522
|
+
*/
|
|
523
|
+
members?: {
|
|
524
|
+
docs?: (string | User)[];
|
|
525
|
+
hasNextPage?: boolean;
|
|
526
|
+
totalDocs?: number;
|
|
527
|
+
};
|
|
528
|
+
updatedAt: string;
|
|
529
|
+
createdAt: string;
|
|
530
|
+
deletedAt?: string | null;
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
534
|
+
* via the `definition` "users".
|
|
535
|
+
*/
|
|
536
|
+
interface User {
|
|
537
|
+
id: string;
|
|
538
|
+
_users_members_order?: string | null;
|
|
539
|
+
roles: ('super-admin' | 'user')[];
|
|
540
|
+
tenants?: {
|
|
541
|
+
tenant: string | Tenant;
|
|
542
|
+
roles: ('tenant-admin' | 'tenant-editor' | 'tenant-viewer')[];
|
|
543
|
+
id?: string | null;
|
|
544
|
+
}[] | null;
|
|
545
|
+
emailPreferences?: {
|
|
546
|
+
acceptsUsageAlerts?: boolean | null;
|
|
547
|
+
};
|
|
548
|
+
/**
|
|
549
|
+
* Admin contact phone number. Enter with or without country code according to operating policy.
|
|
550
|
+
*/
|
|
551
|
+
phone?: string | null;
|
|
552
|
+
isPhoneVerified?: boolean | null;
|
|
553
|
+
lastLoginAt?: string | null;
|
|
554
|
+
lastLoginIp?: string | null;
|
|
555
|
+
isSuspended?: boolean | null;
|
|
556
|
+
suspendedAt?: string | null;
|
|
557
|
+
suspendedReason?: string | null;
|
|
558
|
+
/**
|
|
559
|
+
* Timezone used for admin UI and notifications, such as Asia/Seoul.
|
|
560
|
+
*/
|
|
561
|
+
timezone?: string | null;
|
|
562
|
+
/**
|
|
563
|
+
* Admin UI language or locale code, such as ko or en.
|
|
564
|
+
*/
|
|
565
|
+
locale?: string | null;
|
|
566
|
+
avatar?: (string | null) | Image;
|
|
567
|
+
anonymizedAt?: string | null;
|
|
568
|
+
/**
|
|
569
|
+
* Scheduled deletion date
|
|
570
|
+
*/
|
|
571
|
+
deletionScheduledAt?: string | null;
|
|
572
|
+
authProvider?: ('local' | 'google') | null;
|
|
573
|
+
googleSub?: string | null;
|
|
574
|
+
updatedAt: string;
|
|
575
|
+
createdAt: string;
|
|
576
|
+
deletedAt?: string | null;
|
|
577
|
+
email: string;
|
|
578
|
+
resetPasswordToken?: string | null;
|
|
579
|
+
resetPasswordExpiration?: string | null;
|
|
580
|
+
salt?: string | null;
|
|
581
|
+
hash?: string | null;
|
|
582
|
+
_verified?: boolean | null;
|
|
583
|
+
_verificationToken?: string | null;
|
|
584
|
+
loginAttempts?: number | null;
|
|
585
|
+
lockUntil?: string | null;
|
|
586
|
+
sessions?: {
|
|
587
|
+
id: string;
|
|
588
|
+
createdAt?: string | null;
|
|
589
|
+
expiresAt: string;
|
|
590
|
+
}[] | null;
|
|
591
|
+
password?: string | null;
|
|
592
|
+
collection: 'users';
|
|
593
|
+
}
|
|
593
594
|
/**
|
|
594
595
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
595
596
|
* via the `definition` "payload-folders".
|
|
@@ -877,12 +878,63 @@ interface WebhookEvent {
|
|
|
877
878
|
interface WebhookDelivery {
|
|
878
879
|
id: string;
|
|
879
880
|
tenant?: (string | null) | Tenant;
|
|
880
|
-
|
|
881
|
+
/**
|
|
882
|
+
* Active webhook endpoint used for this delivery attempt.
|
|
883
|
+
*/
|
|
884
|
+
webhookId?: (string | null) | Webhook;
|
|
885
|
+
/**
|
|
886
|
+
* Value sent to receivers as x-webhook-delivery-id.
|
|
887
|
+
*/
|
|
888
|
+
deliveryId?: string | null;
|
|
881
889
|
attempt: number;
|
|
882
890
|
/**
|
|
883
891
|
* Webhook delivery state. Updated by dispatcher and retry handling paths.
|
|
884
892
|
*/
|
|
885
|
-
status: '
|
|
893
|
+
status: 'queued' | 'success' | 'failed' | 'dead';
|
|
894
|
+
/**
|
|
895
|
+
* Destination host with query string removed. Full URLs are not stored.
|
|
896
|
+
*/
|
|
897
|
+
endpointHost?: string | null;
|
|
898
|
+
/**
|
|
899
|
+
* HMAC hash of the endpoint URL with query string removed.
|
|
900
|
+
*/
|
|
901
|
+
endpointUrlHash?: string | null;
|
|
902
|
+
/**
|
|
903
|
+
* Collection that produced this delivery attempt.
|
|
904
|
+
*/
|
|
905
|
+
collection?: string | null;
|
|
906
|
+
/**
|
|
907
|
+
* Operation that produced this delivery attempt.
|
|
908
|
+
*/
|
|
909
|
+
operation?: string | null;
|
|
910
|
+
/**
|
|
911
|
+
* Path that produced the delivery attempt.
|
|
912
|
+
*/
|
|
913
|
+
source?: ('registry' | 'retry_queue' | 'dlq_retry' | 'password_reset') | null;
|
|
914
|
+
/**
|
|
915
|
+
* HTTP status returned by the receiver.
|
|
916
|
+
*/
|
|
917
|
+
statusCode?: number | null;
|
|
918
|
+
/**
|
|
919
|
+
* Delivery failure kind. Sensitive request body or headers are not stored.
|
|
920
|
+
*/
|
|
921
|
+
errorKind?: string | null;
|
|
922
|
+
/**
|
|
923
|
+
* Truncated error message. Sensitive request body or headers are not stored.
|
|
924
|
+
*/
|
|
925
|
+
errorMessage?: string | null;
|
|
926
|
+
/**
|
|
927
|
+
* Delivery attempt duration in milliseconds.
|
|
928
|
+
*/
|
|
929
|
+
durationMs?: number | null;
|
|
930
|
+
/**
|
|
931
|
+
* Next scheduled retry time for a failed delivery.
|
|
932
|
+
*/
|
|
933
|
+
nextRetryAt?: string | null;
|
|
934
|
+
/**
|
|
935
|
+
* Marks attempts produced by Redis retry or DLQ replay paths.
|
|
936
|
+
*/
|
|
937
|
+
redelivery?: boolean | null;
|
|
886
938
|
/**
|
|
887
939
|
* Timestamp when the webhook request was dispatched to the endpoint.
|
|
888
940
|
*/
|
|
@@ -890,6 +942,41 @@ interface WebhookDelivery {
|
|
|
890
942
|
updatedAt: string;
|
|
891
943
|
createdAt: string;
|
|
892
944
|
}
|
|
945
|
+
/**
|
|
946
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
947
|
+
* via the `definition` "webhooks".
|
|
948
|
+
*/
|
|
949
|
+
interface Webhook {
|
|
950
|
+
id: string;
|
|
951
|
+
tenant?: (string | null) | Tenant;
|
|
952
|
+
/**
|
|
953
|
+
* Webhook name
|
|
954
|
+
*/
|
|
955
|
+
name: string;
|
|
956
|
+
/**
|
|
957
|
+
* Webhook endpoint HTTPS URL. Treat this endpoint as a recipient of sensitive workspace events.
|
|
958
|
+
*/
|
|
959
|
+
url: string;
|
|
960
|
+
/**
|
|
961
|
+
* HMAC signing secret (immutable once set)
|
|
962
|
+
*/
|
|
963
|
+
secret: string;
|
|
964
|
+
/**
|
|
965
|
+
* Collections to subscribe to. Leave empty to receive every supported collection event.
|
|
966
|
+
*/
|
|
967
|
+
subscriptions?: {
|
|
968
|
+
/**
|
|
969
|
+
* Receives create/update events for this collection.
|
|
970
|
+
*/
|
|
971
|
+
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' | 'event-calendars' | 'events' | 'event-categories' | 'event-occurrences' | 'event-tags';
|
|
972
|
+
id?: string | null;
|
|
973
|
+
}[] | null;
|
|
974
|
+
isActive?: boolean | null;
|
|
975
|
+
lastDispatchedAt?: string | null;
|
|
976
|
+
updatedAt: string;
|
|
977
|
+
createdAt: string;
|
|
978
|
+
deletedAt?: string | null;
|
|
979
|
+
}
|
|
893
980
|
/**
|
|
894
981
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
895
982
|
* via the `definition` "tenant-metadata".
|
|
@@ -934,19 +1021,19 @@ interface TenantMetadatum {
|
|
|
934
1021
|
/**
|
|
935
1022
|
* Primary logo
|
|
936
1023
|
*/
|
|
937
|
-
logo?: (string | null) |
|
|
1024
|
+
logo?: (string | null) | TenantLogo;
|
|
938
1025
|
/**
|
|
939
1026
|
* Logo for dark mode (optional)
|
|
940
1027
|
*/
|
|
941
|
-
logoDark?: (string | null) |
|
|
1028
|
+
logoDark?: (string | null) | TenantLogo;
|
|
942
1029
|
/**
|
|
943
1030
|
* Logo mark / Icon (optional)
|
|
944
1031
|
*/
|
|
945
|
-
logomark?: (string | null) |
|
|
1032
|
+
logomark?: (string | null) | TenantLogo;
|
|
946
1033
|
/**
|
|
947
1034
|
* Favicon (will be resized automatically)
|
|
948
1035
|
*/
|
|
949
|
-
favicon?: (string | null) |
|
|
1036
|
+
favicon?: (string | null) | TenantLogo;
|
|
950
1037
|
/**
|
|
951
1038
|
* Theme color for mobile browsers (hex color)
|
|
952
1039
|
*/
|
|
@@ -1060,9 +1147,9 @@ interface TenantMetadatum {
|
|
|
1060
1147
|
}
|
|
1061
1148
|
/**
|
|
1062
1149
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1063
|
-
* via the `definition` "
|
|
1150
|
+
* via the `definition` "tenant-logos".
|
|
1064
1151
|
*/
|
|
1065
|
-
interface
|
|
1152
|
+
interface TenantLogo {
|
|
1066
1153
|
id: string;
|
|
1067
1154
|
tenant?: (string | null) | Tenant;
|
|
1068
1155
|
/**
|
|
@@ -1153,6 +1240,33 @@ interface BrandLogo {
|
|
|
1153
1240
|
};
|
|
1154
1241
|
};
|
|
1155
1242
|
}
|
|
1243
|
+
/**
|
|
1244
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1245
|
+
* via the `definition` "tenant-web-analytics-config".
|
|
1246
|
+
*/
|
|
1247
|
+
interface TenantWebAnalyticsConfig {
|
|
1248
|
+
id: string;
|
|
1249
|
+
tenant?: (string | null) | Tenant;
|
|
1250
|
+
enabled?: boolean | null;
|
|
1251
|
+
/**
|
|
1252
|
+
* Domains allowed to send analytics events. If empty, browser analytics is blocked.
|
|
1253
|
+
*/
|
|
1254
|
+
allowedOrigins?: {
|
|
1255
|
+
origin: string;
|
|
1256
|
+
id?: string | null;
|
|
1257
|
+
}[] | null;
|
|
1258
|
+
/**
|
|
1259
|
+
* Timezone used to group daily analytics. Once data starts coming in, this is locked and cannot be changed.
|
|
1260
|
+
*/
|
|
1261
|
+
timezone: string;
|
|
1262
|
+
/**
|
|
1263
|
+
* Automatically locked once the first analytics record is saved. Contact support to unlock.
|
|
1264
|
+
*/
|
|
1265
|
+
tzLocked?: boolean | null;
|
|
1266
|
+
updatedAt: string;
|
|
1267
|
+
createdAt: string;
|
|
1268
|
+
deletedAt?: string | null;
|
|
1269
|
+
}
|
|
1156
1270
|
/**
|
|
1157
1271
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1158
1272
|
* via the `definition` "api-usage".
|
|
@@ -1251,7 +1365,7 @@ interface TenantAnalyticsDaily {
|
|
|
1251
1365
|
*/
|
|
1252
1366
|
bucketTz: string;
|
|
1253
1367
|
/**
|
|
1254
|
-
*
|
|
1368
|
+
* Deterministic aggregate schema shape hash for mismatch detection.
|
|
1255
1369
|
*/
|
|
1256
1370
|
schemaShape: string;
|
|
1257
1371
|
/**
|
|
@@ -1259,6 +1373,11 @@ interface TenantAnalyticsDaily {
|
|
|
1259
1373
|
*/
|
|
1260
1374
|
eventDetails?: {
|
|
1261
1375
|
eventName: string;
|
|
1376
|
+
count?: number | null;
|
|
1377
|
+
/**
|
|
1378
|
+
* Deterministic schema shape hash for this event detail row.
|
|
1379
|
+
*/
|
|
1380
|
+
schemaShape?: string | null;
|
|
1262
1381
|
dimensions?: {
|
|
1263
1382
|
dimension: string;
|
|
1264
1383
|
values?: {
|
|
@@ -1280,6 +1399,38 @@ interface TenantAnalyticsDaily {
|
|
|
1280
1399
|
}[] | null;
|
|
1281
1400
|
id?: string | null;
|
|
1282
1401
|
}[] | null;
|
|
1402
|
+
/**
|
|
1403
|
+
* MCP tool usage aggregate. Populated by snapshot cron from daily Redis keys.
|
|
1404
|
+
*/
|
|
1405
|
+
mcpUsage?: {
|
|
1406
|
+
toolCalls?: number | null;
|
|
1407
|
+
sessions?: number | null;
|
|
1408
|
+
convertedSessions?: number | null;
|
|
1409
|
+
conversionRate?: number | null;
|
|
1410
|
+
successfulWrites?: number | null;
|
|
1411
|
+
isPartial?: boolean | null;
|
|
1412
|
+
topTools?: {
|
|
1413
|
+
name: string;
|
|
1414
|
+
count: number;
|
|
1415
|
+
readOnly?: boolean | null;
|
|
1416
|
+
id?: string | null;
|
|
1417
|
+
}[] | null;
|
|
1418
|
+
transports?: {
|
|
1419
|
+
name: string;
|
|
1420
|
+
count: number;
|
|
1421
|
+
id?: string | null;
|
|
1422
|
+
}[] | null;
|
|
1423
|
+
httpDurationMs?: {
|
|
1424
|
+
p50?: number | null;
|
|
1425
|
+
p99?: number | null;
|
|
1426
|
+
buckets?: {
|
|
1427
|
+
bucket: string;
|
|
1428
|
+
label: string;
|
|
1429
|
+
count: number;
|
|
1430
|
+
id?: string | null;
|
|
1431
|
+
}[] | null;
|
|
1432
|
+
};
|
|
1433
|
+
};
|
|
1283
1434
|
updatedAt: string;
|
|
1284
1435
|
createdAt: string;
|
|
1285
1436
|
}
|
|
@@ -1404,6 +1555,21 @@ interface Subscription {
|
|
|
1404
1555
|
createdAt: string;
|
|
1405
1556
|
deletedAt?: string | null;
|
|
1406
1557
|
}
|
|
1558
|
+
/**
|
|
1559
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1560
|
+
* via the `definition` "tenant-purge-jobs".
|
|
1561
|
+
*/
|
|
1562
|
+
interface TenantPurgeJob {
|
|
1563
|
+
id: string;
|
|
1564
|
+
tenantId: string;
|
|
1565
|
+
status: 'pending' | 'running' | 'failed' | 'ready-to-delete';
|
|
1566
|
+
currentCollection?: string | null;
|
|
1567
|
+
deletedCount?: number | null;
|
|
1568
|
+
failure?: string | null;
|
|
1569
|
+
completedAt?: string | null;
|
|
1570
|
+
updatedAt: string;
|
|
1571
|
+
createdAt: string;
|
|
1572
|
+
}
|
|
1407
1573
|
/**
|
|
1408
1574
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1409
1575
|
* via the `definition` "billing-history".
|
|
@@ -1442,169 +1608,42 @@ interface BillingHistory {
|
|
|
1442
1608
|
tossResponse?: {
|
|
1443
1609
|
[k: string]: unknown;
|
|
1444
1610
|
} | 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".
|
|
1485
|
-
*/
|
|
1486
|
-
interface Webhook {
|
|
1487
|
-
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;
|
|
1611
|
+
errorMessage?: string | null;
|
|
1501
1612
|
/**
|
|
1502
|
-
*
|
|
1613
|
+
* Original billing record for retry
|
|
1503
1614
|
*/
|
|
1504
|
-
|
|
1505
|
-
event: string;
|
|
1506
|
-
id?: string | null;
|
|
1507
|
-
}[] | null;
|
|
1508
|
-
isActive?: boolean | null;
|
|
1509
|
-
lastDispatchedAt?: string | null;
|
|
1615
|
+
retryOf?: (string | null) | BillingHistory;
|
|
1510
1616
|
updatedAt: string;
|
|
1511
1617
|
createdAt: string;
|
|
1512
1618
|
deletedAt?: string | null;
|
|
1513
1619
|
}
|
|
1514
1620
|
/**
|
|
1515
1621
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1516
|
-
* via the `definition` "
|
|
1622
|
+
* via the `definition` "plans".
|
|
1517
1623
|
*/
|
|
1518
|
-
interface
|
|
1624
|
+
interface Plan {
|
|
1519
1625
|
id: string;
|
|
1520
|
-
tenant?: (string | null) | Tenant;
|
|
1521
1626
|
/**
|
|
1522
|
-
*
|
|
1627
|
+
* Plan identifier (free, starter, basic, pro, enterprise)
|
|
1523
1628
|
*/
|
|
1524
|
-
|
|
1629
|
+
key: string;
|
|
1525
1630
|
/**
|
|
1526
|
-
*
|
|
1631
|
+
* Plan display name
|
|
1527
1632
|
*/
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1633
|
+
name: string;
|
|
1634
|
+
/**
|
|
1635
|
+
* Reference-only feature list; enforced elsewhere.
|
|
1636
|
+
*/
|
|
1637
|
+
featuresAllowed?: ('ecommerce' | 'customers' | 'playlists' | 'galleries' | 'links' | 'forms' | 'articles' | 'documents' | 'canvas' | 'videos' | 'live-streaming' | 'community' | 'events')[] | null;
|
|
1638
|
+
/**
|
|
1639
|
+
* Reference-only quotas such as storageBytes; enforced by entitlement and usage policy elsewhere.
|
|
1640
|
+
*/
|
|
1641
|
+
quotas?: {
|
|
1642
|
+
[k: string]: unknown;
|
|
1643
|
+
} | unknown[] | string | number | boolean | null;
|
|
1538
1644
|
updatedAt: string;
|
|
1539
1645
|
createdAt: string;
|
|
1540
1646
|
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
|
-
};
|
|
1608
1647
|
}
|
|
1609
1648
|
/**
|
|
1610
1649
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1614,7 +1653,10 @@ interface Product {
|
|
|
1614
1653
|
id: string;
|
|
1615
1654
|
_order?: string | null;
|
|
1616
1655
|
tenant?: (string | null) | Tenant;
|
|
1617
|
-
title
|
|
1656
|
+
title?: string | null;
|
|
1657
|
+
/**
|
|
1658
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
1659
|
+
*/
|
|
1618
1660
|
subtitle?: string | null;
|
|
1619
1661
|
/**
|
|
1620
1662
|
* Short summary for listing/cards
|
|
@@ -1679,13 +1721,37 @@ interface Product {
|
|
|
1679
1721
|
* Derived listing projection for product cards and search
|
|
1680
1722
|
*/
|
|
1681
1723
|
listing?: {
|
|
1724
|
+
/**
|
|
1725
|
+
* Variant prioritized for product cards. Automatically derived from sellable variants, active variants, and sort order.
|
|
1726
|
+
*/
|
|
1682
1727
|
selectionHintVariant?: (string | null) | ProductVariant;
|
|
1728
|
+
/**
|
|
1729
|
+
* Primary image for product cards/search. Product media is preferred, then variant media is used as fallback.
|
|
1730
|
+
*/
|
|
1683
1731
|
primaryImage?: (string | null) | Image;
|
|
1732
|
+
/**
|
|
1733
|
+
* Lowest active variant price. Automatically recalculated when variants change.
|
|
1734
|
+
*/
|
|
1684
1735
|
minPrice?: number | null;
|
|
1736
|
+
/**
|
|
1737
|
+
* Highest active variant price. Automatically recalculated when variants change.
|
|
1738
|
+
*/
|
|
1685
1739
|
maxPrice?: number | null;
|
|
1740
|
+
/**
|
|
1741
|
+
* Lowest compare-at price across active variants. Automatically recalculated when variants change.
|
|
1742
|
+
*/
|
|
1686
1743
|
minCompareAtPrice?: number | null;
|
|
1744
|
+
/**
|
|
1745
|
+
* Highest compare-at price across active variants. Automatically recalculated when variants change.
|
|
1746
|
+
*/
|
|
1687
1747
|
maxCompareAtPrice?: number | null;
|
|
1748
|
+
/**
|
|
1749
|
+
* Automatically enabled when the minimum and maximum active variant prices differ.
|
|
1750
|
+
*/
|
|
1688
1751
|
isPriceRange?: boolean | null;
|
|
1752
|
+
/**
|
|
1753
|
+
* Automatically enabled when at least one active variant is sellable.
|
|
1754
|
+
*/
|
|
1689
1755
|
availableForSale?: boolean | null;
|
|
1690
1756
|
};
|
|
1691
1757
|
metadata?: {
|
|
@@ -1742,7 +1808,6 @@ interface Product {
|
|
|
1742
1808
|
updatedAt: string;
|
|
1743
1809
|
createdAt: string;
|
|
1744
1810
|
deletedAt?: string | null;
|
|
1745
|
-
_status?: ('draft' | 'published') | null;
|
|
1746
1811
|
}
|
|
1747
1812
|
/**
|
|
1748
1813
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1751,7 +1816,11 @@ interface Product {
|
|
|
1751
1816
|
interface Video {
|
|
1752
1817
|
id: string;
|
|
1753
1818
|
tenant?: (string | null) | Tenant;
|
|
1754
|
-
title
|
|
1819
|
+
title?: string | null;
|
|
1820
|
+
/**
|
|
1821
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
1822
|
+
*/
|
|
1823
|
+
subtitle?: string | null;
|
|
1755
1824
|
filename?: string | null;
|
|
1756
1825
|
/**
|
|
1757
1826
|
* Short summary for listing/cards
|
|
@@ -1854,7 +1923,11 @@ interface Video {
|
|
|
1854
1923
|
interface LiveStream {
|
|
1855
1924
|
id: string;
|
|
1856
1925
|
tenant?: (string | null) | Tenant;
|
|
1857
|
-
title
|
|
1926
|
+
title?: string | null;
|
|
1927
|
+
/**
|
|
1928
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
1929
|
+
*/
|
|
1930
|
+
subtitle?: string | null;
|
|
1858
1931
|
/**
|
|
1859
1932
|
* Short summary for listing/cards
|
|
1860
1933
|
*/
|
|
@@ -1943,7 +2016,7 @@ interface VideoCategory {
|
|
|
1943
2016
|
id: string;
|
|
1944
2017
|
_order?: string | null;
|
|
1945
2018
|
tenant?: (string | null) | Tenant;
|
|
1946
|
-
title
|
|
2019
|
+
title?: string | null;
|
|
1947
2020
|
/**
|
|
1948
2021
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
1949
2022
|
*/
|
|
@@ -1968,7 +2041,7 @@ interface VideoTag {
|
|
|
1968
2041
|
id: string;
|
|
1969
2042
|
_order?: string | null;
|
|
1970
2043
|
tenant?: (string | null) | Tenant;
|
|
1971
|
-
title
|
|
2044
|
+
title?: string | null;
|
|
1972
2045
|
/**
|
|
1973
2046
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
1974
2047
|
*/
|
|
@@ -1994,7 +2067,13 @@ interface ProductVariant {
|
|
|
1994
2067
|
'_product-variants_variants_order'?: string | null;
|
|
1995
2068
|
_order?: string | null;
|
|
1996
2069
|
tenant?: (string | null) | Tenant;
|
|
2070
|
+
/**
|
|
2071
|
+
* Parent product for this variant. It cannot be moved to another product after creation.
|
|
2072
|
+
*/
|
|
1997
2073
|
product: string | Product;
|
|
2074
|
+
/**
|
|
2075
|
+
* Optional variant display label. The option value combination remains the canonical variant identity.
|
|
2076
|
+
*/
|
|
1998
2077
|
title?: string | null;
|
|
1999
2078
|
thumbnail?: (string | null) | Image;
|
|
2000
2079
|
images?: (string | Image)[] | null;
|
|
@@ -2014,6 +2093,9 @@ interface ProductVariant {
|
|
|
2014
2093
|
* Sell without tracking inventory
|
|
2015
2094
|
*/
|
|
2016
2095
|
isUnlimited?: boolean | null;
|
|
2096
|
+
/**
|
|
2097
|
+
* Tracked inventory. Available quantity is stock - reservedStock; isUnlimited bypasses stock tracking.
|
|
2098
|
+
*/
|
|
2017
2099
|
stock?: number | null;
|
|
2018
2100
|
/**
|
|
2019
2101
|
* Paid orders in transit (available quantity is stock - reservedStock)
|
|
@@ -2027,6 +2109,9 @@ interface ProductVariant {
|
|
|
2027
2109
|
* Variant-specific weight (g)
|
|
2028
2110
|
*/
|
|
2029
2111
|
weight?: number | null;
|
|
2112
|
+
/**
|
|
2113
|
+
* Enable for physical variants that require shipping.
|
|
2114
|
+
*/
|
|
2030
2115
|
requiresShipping?: boolean | null;
|
|
2031
2116
|
/**
|
|
2032
2117
|
* External system ID
|
|
@@ -2054,6 +2139,9 @@ interface ProductOptionValue {
|
|
|
2054
2139
|
'_product-option-values_values_order'?: string | null;
|
|
2055
2140
|
_order?: string | null;
|
|
2056
2141
|
tenant?: (string | null) | Tenant;
|
|
2142
|
+
/**
|
|
2143
|
+
* Parent option for this value. It cannot be moved to another option after creation.
|
|
2144
|
+
*/
|
|
2057
2145
|
option: string | ProductOption;
|
|
2058
2146
|
/**
|
|
2059
2147
|
* Display label (e.g. Black, S)
|
|
@@ -2086,6 +2174,9 @@ interface ProductOption {
|
|
|
2086
2174
|
'_product-options_options_order'?: string | null;
|
|
2087
2175
|
_order?: string | null;
|
|
2088
2176
|
tenant?: (string | null) | Tenant;
|
|
2177
|
+
/**
|
|
2178
|
+
* Parent product for this option. It cannot be moved to another product after creation.
|
|
2179
|
+
*/
|
|
2089
2180
|
product: string | Product;
|
|
2090
2181
|
/**
|
|
2091
2182
|
* Option name (e.g. Color, Size)
|
|
@@ -2108,7 +2199,7 @@ interface ProductCategory {
|
|
|
2108
2199
|
id: string;
|
|
2109
2200
|
_order?: string | null;
|
|
2110
2201
|
tenant?: (string | null) | Tenant;
|
|
2111
|
-
title
|
|
2202
|
+
title?: string | null;
|
|
2112
2203
|
/**
|
|
2113
2204
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2114
2205
|
*/
|
|
@@ -2133,7 +2224,7 @@ interface ProductTag {
|
|
|
2133
2224
|
id: string;
|
|
2134
2225
|
_order?: string | null;
|
|
2135
2226
|
tenant?: (string | null) | Tenant;
|
|
2136
|
-
title
|
|
2227
|
+
title?: string | null;
|
|
2137
2228
|
/**
|
|
2138
2229
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2139
2230
|
*/
|
|
@@ -2226,21 +2317,115 @@ interface Brand {
|
|
|
2226
2317
|
image?: (string | null) | BrandLogo;
|
|
2227
2318
|
};
|
|
2228
2319
|
};
|
|
2229
|
-
/**
|
|
2230
|
-
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2231
|
-
*/
|
|
2232
|
-
generateSlug?: boolean | null;
|
|
2233
|
-
slug?: string | null;
|
|
2234
|
-
status?: ('draft' | 'published' | 'archived') | null;
|
|
2235
|
-
isFeatured?: boolean | null;
|
|
2236
|
-
publishedAt?: string | null;
|
|
2237
|
-
metadata?: {
|
|
2238
|
-
[k: string]: unknown;
|
|
2239
|
-
} | unknown[] | string | number | boolean | null;
|
|
2240
|
-
updatedAt: string;
|
|
2241
|
-
createdAt: string;
|
|
2242
|
-
deletedAt?: string | null;
|
|
2243
|
-
|
|
2320
|
+
/**
|
|
2321
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2322
|
+
*/
|
|
2323
|
+
generateSlug?: boolean | null;
|
|
2324
|
+
slug?: string | null;
|
|
2325
|
+
status?: ('draft' | 'published' | 'archived') | null;
|
|
2326
|
+
isFeatured?: boolean | null;
|
|
2327
|
+
publishedAt?: string | null;
|
|
2328
|
+
metadata?: {
|
|
2329
|
+
[k: string]: unknown;
|
|
2330
|
+
} | unknown[] | string | number | boolean | null;
|
|
2331
|
+
updatedAt: string;
|
|
2332
|
+
createdAt: string;
|
|
2333
|
+
deletedAt?: string | null;
|
|
2334
|
+
}
|
|
2335
|
+
/**
|
|
2336
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2337
|
+
* via the `definition` "brand-logos".
|
|
2338
|
+
*/
|
|
2339
|
+
interface BrandLogo {
|
|
2340
|
+
id: string;
|
|
2341
|
+
tenant?: (string | null) | Tenant;
|
|
2342
|
+
/**
|
|
2343
|
+
* Alternative text for users who cannot see the image and for search/share context.
|
|
2344
|
+
*/
|
|
2345
|
+
alt?: string | null;
|
|
2346
|
+
/**
|
|
2347
|
+
* Low quality image placeholder
|
|
2348
|
+
*/
|
|
2349
|
+
lqip?: string | null;
|
|
2350
|
+
palette?: {
|
|
2351
|
+
vibrant?: string | null;
|
|
2352
|
+
muted?: string | null;
|
|
2353
|
+
darkVibrant?: string | null;
|
|
2354
|
+
darkMuted?: string | null;
|
|
2355
|
+
lightVibrant?: string | null;
|
|
2356
|
+
lightMuted?: string | null;
|
|
2357
|
+
};
|
|
2358
|
+
prefix?: string | null;
|
|
2359
|
+
updatedAt: string;
|
|
2360
|
+
createdAt: string;
|
|
2361
|
+
deletedAt?: string | null;
|
|
2362
|
+
url?: string | null;
|
|
2363
|
+
thumbnailURL?: string | null;
|
|
2364
|
+
filename?: string | null;
|
|
2365
|
+
mimeType?: string | null;
|
|
2366
|
+
filesize?: number | null;
|
|
2367
|
+
width?: number | null;
|
|
2368
|
+
height?: number | null;
|
|
2369
|
+
focalX?: number | null;
|
|
2370
|
+
focalY?: number | null;
|
|
2371
|
+
sizes?: {
|
|
2372
|
+
'16'?: {
|
|
2373
|
+
url?: string | null;
|
|
2374
|
+
width?: number | null;
|
|
2375
|
+
height?: number | null;
|
|
2376
|
+
mimeType?: string | null;
|
|
2377
|
+
filesize?: number | null;
|
|
2378
|
+
filename?: string | null;
|
|
2379
|
+
};
|
|
2380
|
+
'32'?: {
|
|
2381
|
+
url?: string | null;
|
|
2382
|
+
width?: number | null;
|
|
2383
|
+
height?: number | null;
|
|
2384
|
+
mimeType?: string | null;
|
|
2385
|
+
filesize?: number | null;
|
|
2386
|
+
filename?: string | null;
|
|
2387
|
+
};
|
|
2388
|
+
'64'?: {
|
|
2389
|
+
url?: string | null;
|
|
2390
|
+
width?: number | null;
|
|
2391
|
+
height?: number | null;
|
|
2392
|
+
mimeType?: string | null;
|
|
2393
|
+
filesize?: number | null;
|
|
2394
|
+
filename?: string | null;
|
|
2395
|
+
};
|
|
2396
|
+
'128'?: {
|
|
2397
|
+
url?: string | null;
|
|
2398
|
+
width?: number | null;
|
|
2399
|
+
height?: number | null;
|
|
2400
|
+
mimeType?: string | null;
|
|
2401
|
+
filesize?: number | null;
|
|
2402
|
+
filename?: string | null;
|
|
2403
|
+
};
|
|
2404
|
+
'180'?: {
|
|
2405
|
+
url?: string | null;
|
|
2406
|
+
width?: number | null;
|
|
2407
|
+
height?: number | null;
|
|
2408
|
+
mimeType?: string | null;
|
|
2409
|
+
filesize?: number | null;
|
|
2410
|
+
filename?: string | null;
|
|
2411
|
+
};
|
|
2412
|
+
'192'?: {
|
|
2413
|
+
url?: string | null;
|
|
2414
|
+
width?: number | null;
|
|
2415
|
+
height?: number | null;
|
|
2416
|
+
mimeType?: string | null;
|
|
2417
|
+
filesize?: number | null;
|
|
2418
|
+
filename?: string | null;
|
|
2419
|
+
};
|
|
2420
|
+
'512'?: {
|
|
2421
|
+
url?: string | null;
|
|
2422
|
+
width?: number | null;
|
|
2423
|
+
height?: number | null;
|
|
2424
|
+
mimeType?: string | null;
|
|
2425
|
+
filesize?: number | null;
|
|
2426
|
+
filename?: string | null;
|
|
2427
|
+
};
|
|
2428
|
+
};
|
|
2244
2429
|
}
|
|
2245
2430
|
/**
|
|
2246
2431
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -2253,7 +2438,7 @@ interface ShippingPolicy {
|
|
|
2253
2438
|
/**
|
|
2254
2439
|
* e.g. Standard shipping, Large items
|
|
2255
2440
|
*/
|
|
2256
|
-
title
|
|
2441
|
+
title?: string | null;
|
|
2257
2442
|
/**
|
|
2258
2443
|
* Amount in KRW (won)
|
|
2259
2444
|
*/
|
|
@@ -2300,7 +2485,11 @@ interface ProductCollection {
|
|
|
2300
2485
|
id: string;
|
|
2301
2486
|
_order?: string | null;
|
|
2302
2487
|
tenant?: (string | null) | Tenant;
|
|
2303
|
-
title
|
|
2488
|
+
title?: string | null;
|
|
2489
|
+
/**
|
|
2490
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
2491
|
+
*/
|
|
2492
|
+
subtitle?: string | null;
|
|
2304
2493
|
/**
|
|
2305
2494
|
* Short summary for listing/cards
|
|
2306
2495
|
*/
|
|
@@ -2370,7 +2559,6 @@ interface ProductCollection {
|
|
|
2370
2559
|
updatedAt: string;
|
|
2371
2560
|
createdAt: string;
|
|
2372
2561
|
deletedAt?: string | null;
|
|
2373
|
-
_status?: ('draft' | 'published') | null;
|
|
2374
2562
|
}
|
|
2375
2563
|
/**
|
|
2376
2564
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -2621,7 +2809,7 @@ interface CustomerGroup {
|
|
|
2621
2809
|
id: string;
|
|
2622
2810
|
_order?: string | null;
|
|
2623
2811
|
tenant?: (string | null) | Tenant;
|
|
2624
|
-
title
|
|
2812
|
+
title?: string | null;
|
|
2625
2813
|
/**
|
|
2626
2814
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2627
2815
|
*/
|
|
@@ -2823,6 +3011,12 @@ interface Transaction {
|
|
|
2823
3011
|
receiptUrl?: string | null;
|
|
2824
3012
|
pgPaymentId?: string | null;
|
|
2825
3013
|
pgOrderId?: string | null;
|
|
3014
|
+
providerEventId?: string | null;
|
|
3015
|
+
providerStatus?: string | null;
|
|
3016
|
+
confirmedAmount?: number | null;
|
|
3017
|
+
confirmedCurrency?: string | null;
|
|
3018
|
+
confirmedAt?: string | null;
|
|
3019
|
+
confirmationSource?: ('provider_webhook' | 'provider_lookup' | 'provider_api_confirm' | 'manual_server') | null;
|
|
2826
3020
|
cashReceipt?: {
|
|
2827
3021
|
issuanceType?: ('none' | 'personal' | 'business') | null;
|
|
2828
3022
|
/**
|
|
@@ -3006,7 +3200,7 @@ interface CustomerProfileList {
|
|
|
3006
3200
|
id: string;
|
|
3007
3201
|
_order?: string | null;
|
|
3008
3202
|
tenant?: (string | null) | Tenant;
|
|
3009
|
-
title
|
|
3203
|
+
title?: string | null;
|
|
3010
3204
|
/**
|
|
3011
3205
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3012
3206
|
*/
|
|
@@ -3240,9 +3434,9 @@ interface Article {
|
|
|
3240
3434
|
id: string;
|
|
3241
3435
|
_order?: string | null;
|
|
3242
3436
|
tenant?: (string | null) | Tenant;
|
|
3243
|
-
title
|
|
3437
|
+
title?: string | null;
|
|
3244
3438
|
/**
|
|
3245
|
-
* Secondary
|
|
3439
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
3246
3440
|
*/
|
|
3247
3441
|
subtitle?: string | null;
|
|
3248
3442
|
/**
|
|
@@ -3305,6 +3499,7 @@ interface Article {
|
|
|
3305
3499
|
*/
|
|
3306
3500
|
generateSlug?: boolean | null;
|
|
3307
3501
|
slug?: string | null;
|
|
3502
|
+
status?: ('draft' | 'published' | 'archived') | null;
|
|
3308
3503
|
thumbnail?: (string | null) | Image;
|
|
3309
3504
|
images?: (string | Image)[] | null;
|
|
3310
3505
|
publishedAt?: string | null;
|
|
@@ -3323,7 +3518,7 @@ interface Article {
|
|
|
3323
3518
|
canonicalUrl?: string | null;
|
|
3324
3519
|
visibility?: ('public' | 'members' | 'paid') | null;
|
|
3325
3520
|
/**
|
|
3326
|
-
* Scheduled publish
|
|
3521
|
+
* Scheduled publish metadata. No automatic publishing job runs from this field.
|
|
3327
3522
|
*/
|
|
3328
3523
|
scheduledAt?: string | null;
|
|
3329
3524
|
/**
|
|
@@ -3340,7 +3535,6 @@ interface Article {
|
|
|
3340
3535
|
updatedAt: string;
|
|
3341
3536
|
createdAt: string;
|
|
3342
3537
|
deletedAt?: string | null;
|
|
3343
|
-
_status?: ('draft' | 'published') | null;
|
|
3344
3538
|
}
|
|
3345
3539
|
/**
|
|
3346
3540
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -3383,7 +3577,7 @@ interface ArticleCategory {
|
|
|
3383
3577
|
id: string;
|
|
3384
3578
|
_order?: string | null;
|
|
3385
3579
|
tenant?: (string | null) | Tenant;
|
|
3386
|
-
title
|
|
3580
|
+
title?: string | null;
|
|
3387
3581
|
/**
|
|
3388
3582
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3389
3583
|
*/
|
|
@@ -3408,7 +3602,7 @@ interface ArticleTag {
|
|
|
3408
3602
|
id: string;
|
|
3409
3603
|
_order?: string | null;
|
|
3410
3604
|
tenant?: (string | null) | Tenant;
|
|
3411
|
-
title
|
|
3605
|
+
title?: string | null;
|
|
3412
3606
|
/**
|
|
3413
3607
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3414
3608
|
*/
|
|
@@ -3433,7 +3627,11 @@ interface Document {
|
|
|
3433
3627
|
id: string;
|
|
3434
3628
|
_order?: string | null;
|
|
3435
3629
|
tenant?: (string | null) | Tenant;
|
|
3436
|
-
title
|
|
3630
|
+
title?: string | null;
|
|
3631
|
+
/**
|
|
3632
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
3633
|
+
*/
|
|
3634
|
+
subtitle?: string | null;
|
|
3437
3635
|
/**
|
|
3438
3636
|
* Short summary for listing/cards
|
|
3439
3637
|
*/
|
|
@@ -3519,6 +3717,7 @@ interface Document {
|
|
|
3519
3717
|
*/
|
|
3520
3718
|
generateSlug?: boolean | null;
|
|
3521
3719
|
slug?: string | null;
|
|
3720
|
+
status?: ('draft' | 'published' | 'archived') | null;
|
|
3522
3721
|
type?: (string | null) | DocumentType;
|
|
3523
3722
|
jurisdiction?: string | null;
|
|
3524
3723
|
/**
|
|
@@ -3539,7 +3738,6 @@ interface Document {
|
|
|
3539
3738
|
updatedAt: string;
|
|
3540
3739
|
createdAt: string;
|
|
3541
3740
|
deletedAt?: string | null;
|
|
3542
|
-
_status?: ('draft' | 'published') | null;
|
|
3543
3741
|
}
|
|
3544
3742
|
/**
|
|
3545
3743
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -3549,7 +3747,7 @@ interface DocumentCategory {
|
|
|
3549
3747
|
id: string;
|
|
3550
3748
|
_order?: string | null;
|
|
3551
3749
|
tenant?: (string | null) | Tenant;
|
|
3552
|
-
title
|
|
3750
|
+
title?: string | null;
|
|
3553
3751
|
/**
|
|
3554
3752
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3555
3753
|
*/
|
|
@@ -3574,7 +3772,7 @@ interface DocumentType {
|
|
|
3574
3772
|
id: string;
|
|
3575
3773
|
_order?: string | null;
|
|
3576
3774
|
tenant?: (string | null) | Tenant;
|
|
3577
|
-
title
|
|
3775
|
+
title?: string | null;
|
|
3578
3776
|
/**
|
|
3579
3777
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3580
3778
|
*/
|
|
@@ -3598,7 +3796,11 @@ interface Playlist {
|
|
|
3598
3796
|
id: string;
|
|
3599
3797
|
_order?: string | null;
|
|
3600
3798
|
tenant?: (string | null) | Tenant;
|
|
3601
|
-
title
|
|
3799
|
+
title?: string | null;
|
|
3800
|
+
/**
|
|
3801
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
3802
|
+
*/
|
|
3803
|
+
subtitle?: string | null;
|
|
3602
3804
|
/**
|
|
3603
3805
|
* Short summary for listing/cards
|
|
3604
3806
|
*/
|
|
@@ -3659,7 +3861,6 @@ interface Playlist {
|
|
|
3659
3861
|
updatedAt: string;
|
|
3660
3862
|
createdAt: string;
|
|
3661
3863
|
deletedAt?: string | null;
|
|
3662
|
-
_status?: ('draft' | 'published') | null;
|
|
3663
3864
|
}
|
|
3664
3865
|
/**
|
|
3665
3866
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -3669,7 +3870,7 @@ interface PlaylistCategory {
|
|
|
3669
3870
|
id: string;
|
|
3670
3871
|
_order?: string | null;
|
|
3671
3872
|
tenant?: (string | null) | Tenant;
|
|
3672
|
-
title
|
|
3873
|
+
title?: string | null;
|
|
3673
3874
|
/**
|
|
3674
3875
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3675
3876
|
*/
|
|
@@ -3694,7 +3895,7 @@ interface PlaylistTag {
|
|
|
3694
3895
|
id: string;
|
|
3695
3896
|
_order?: string | null;
|
|
3696
3897
|
tenant?: (string | null) | Tenant;
|
|
3697
|
-
title
|
|
3898
|
+
title?: string | null;
|
|
3698
3899
|
/**
|
|
3699
3900
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3700
3901
|
*/
|
|
@@ -3719,7 +3920,7 @@ interface Track {
|
|
|
3719
3920
|
id: string;
|
|
3720
3921
|
_order?: string | null;
|
|
3721
3922
|
tenant?: (string | null) | Tenant;
|
|
3722
|
-
title
|
|
3923
|
+
title?: string | null;
|
|
3723
3924
|
/**
|
|
3724
3925
|
* Short summary for listing/cards
|
|
3725
3926
|
*/
|
|
@@ -3777,7 +3978,6 @@ interface Track {
|
|
|
3777
3978
|
updatedAt: string;
|
|
3778
3979
|
createdAt: string;
|
|
3779
3980
|
deletedAt?: string | null;
|
|
3780
|
-
_status?: ('draft' | 'published') | null;
|
|
3781
3981
|
}
|
|
3782
3982
|
/**
|
|
3783
3983
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -3787,7 +3987,7 @@ interface TrackCategory {
|
|
|
3787
3987
|
id: string;
|
|
3788
3988
|
_order?: string | null;
|
|
3789
3989
|
tenant?: (string | null) | Tenant;
|
|
3790
|
-
title
|
|
3990
|
+
title?: string | null;
|
|
3791
3991
|
/**
|
|
3792
3992
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3793
3993
|
*/
|
|
@@ -3812,7 +4012,7 @@ interface TrackTag {
|
|
|
3812
4012
|
id: string;
|
|
3813
4013
|
_order?: string | null;
|
|
3814
4014
|
tenant?: (string | null) | Tenant;
|
|
3815
|
-
title
|
|
4015
|
+
title?: string | null;
|
|
3816
4016
|
/**
|
|
3817
4017
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3818
4018
|
*/
|
|
@@ -3862,7 +4062,11 @@ interface Gallery {
|
|
|
3862
4062
|
id: string;
|
|
3863
4063
|
_order?: string | null;
|
|
3864
4064
|
tenant?: (string | null) | Tenant;
|
|
3865
|
-
title
|
|
4065
|
+
title?: string | null;
|
|
4066
|
+
/**
|
|
4067
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
4068
|
+
*/
|
|
4069
|
+
subtitle?: string | null;
|
|
3866
4070
|
/**
|
|
3867
4071
|
* Short summary for listing/cards
|
|
3868
4072
|
*/
|
|
@@ -3926,7 +4130,6 @@ interface Gallery {
|
|
|
3926
4130
|
updatedAt: string;
|
|
3927
4131
|
createdAt: string;
|
|
3928
4132
|
deletedAt?: string | null;
|
|
3929
|
-
_status?: ('draft' | 'published') | null;
|
|
3930
4133
|
}
|
|
3931
4134
|
/**
|
|
3932
4135
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -3936,7 +4139,7 @@ interface GalleryCategory {
|
|
|
3936
4139
|
id: string;
|
|
3937
4140
|
_order?: string | null;
|
|
3938
4141
|
tenant?: (string | null) | Tenant;
|
|
3939
|
-
title
|
|
4142
|
+
title?: string | null;
|
|
3940
4143
|
/**
|
|
3941
4144
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3942
4145
|
*/
|
|
@@ -3961,7 +4164,7 @@ interface GalleryTag {
|
|
|
3961
4164
|
id: string;
|
|
3962
4165
|
_order?: string | null;
|
|
3963
4166
|
tenant?: (string | null) | Tenant;
|
|
3964
|
-
title
|
|
4167
|
+
title?: string | null;
|
|
3965
4168
|
/**
|
|
3966
4169
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3967
4170
|
*/
|
|
@@ -3993,6 +4196,7 @@ interface GalleryItem {
|
|
|
3993
4196
|
* Short summary for listing/cards
|
|
3994
4197
|
*/
|
|
3995
4198
|
description?: string | null;
|
|
4199
|
+
status?: ('draft' | 'published' | 'archived') | null;
|
|
3996
4200
|
content?: {
|
|
3997
4201
|
root: {
|
|
3998
4202
|
type: string;
|
|
@@ -4015,7 +4219,6 @@ interface GalleryItem {
|
|
|
4015
4219
|
updatedAt: string;
|
|
4016
4220
|
createdAt: string;
|
|
4017
4221
|
deletedAt?: string | null;
|
|
4018
|
-
_status?: ('draft' | 'published') | null;
|
|
4019
4222
|
}
|
|
4020
4223
|
/**
|
|
4021
4224
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -4025,7 +4228,11 @@ interface Link {
|
|
|
4025
4228
|
id: string;
|
|
4026
4229
|
_order?: string | null;
|
|
4027
4230
|
tenant?: (string | null) | Tenant;
|
|
4028
|
-
title
|
|
4231
|
+
title?: string | null;
|
|
4232
|
+
/**
|
|
4233
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
4234
|
+
*/
|
|
4235
|
+
subtitle?: string | null;
|
|
4029
4236
|
/**
|
|
4030
4237
|
* Link URL (internal or external)
|
|
4031
4238
|
*/
|
|
@@ -4074,7 +4281,6 @@ interface Link {
|
|
|
4074
4281
|
updatedAt: string;
|
|
4075
4282
|
createdAt: string;
|
|
4076
4283
|
deletedAt?: string | null;
|
|
4077
|
-
_status?: ('draft' | 'published') | null;
|
|
4078
4284
|
}
|
|
4079
4285
|
/**
|
|
4080
4286
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -4084,7 +4290,7 @@ interface LinkCategory {
|
|
|
4084
4290
|
id: string;
|
|
4085
4291
|
_order?: string | null;
|
|
4086
4292
|
tenant?: (string | null) | Tenant;
|
|
4087
|
-
title
|
|
4293
|
+
title?: string | null;
|
|
4088
4294
|
/**
|
|
4089
4295
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
4090
4296
|
*/
|
|
@@ -4109,7 +4315,7 @@ interface LinkTag {
|
|
|
4109
4315
|
id: string;
|
|
4110
4316
|
_order?: string | null;
|
|
4111
4317
|
tenant?: (string | null) | Tenant;
|
|
4112
|
-
title
|
|
4318
|
+
title?: string | null;
|
|
4113
4319
|
/**
|
|
4114
4320
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
4115
4321
|
*/
|
|
@@ -4133,7 +4339,11 @@ interface LinkTag {
|
|
|
4133
4339
|
interface Canvase {
|
|
4134
4340
|
id: string;
|
|
4135
4341
|
tenant?: (string | null) | Tenant;
|
|
4136
|
-
title
|
|
4342
|
+
title?: string | null;
|
|
4343
|
+
/**
|
|
4344
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
4345
|
+
*/
|
|
4346
|
+
subtitle?: string | null;
|
|
4137
4347
|
/**
|
|
4138
4348
|
* Short summary for listing/cards
|
|
4139
4349
|
*/
|
|
@@ -4191,7 +4401,6 @@ interface Canvase {
|
|
|
4191
4401
|
updatedAt: string;
|
|
4192
4402
|
createdAt: string;
|
|
4193
4403
|
deletedAt?: string | null;
|
|
4194
|
-
_status?: ('draft' | 'published') | null;
|
|
4195
4404
|
}
|
|
4196
4405
|
/**
|
|
4197
4406
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -4201,7 +4410,7 @@ interface CanvasCategory {
|
|
|
4201
4410
|
id: string;
|
|
4202
4411
|
_order?: string | null;
|
|
4203
4412
|
tenant?: (string | null) | Tenant;
|
|
4204
|
-
title
|
|
4413
|
+
title?: string | null;
|
|
4205
4414
|
/**
|
|
4206
4415
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
4207
4416
|
*/
|
|
@@ -4226,7 +4435,7 @@ interface CanvasTag {
|
|
|
4226
4435
|
id: string;
|
|
4227
4436
|
_order?: string | null;
|
|
4228
4437
|
tenant?: (string | null) | Tenant;
|
|
4229
|
-
title
|
|
4438
|
+
title?: string | null;
|
|
4230
4439
|
/**
|
|
4231
4440
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
4232
4441
|
*/
|
|
@@ -4251,7 +4460,7 @@ interface CanvasNodeType {
|
|
|
4251
4460
|
id: string;
|
|
4252
4461
|
_order?: string | null;
|
|
4253
4462
|
tenant?: (string | null) | Tenant;
|
|
4254
|
-
title
|
|
4463
|
+
title?: string | null;
|
|
4255
4464
|
/**
|
|
4256
4465
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
4257
4466
|
*/
|
|
@@ -4316,7 +4525,7 @@ interface CanvasEdgeType {
|
|
|
4316
4525
|
id: string;
|
|
4317
4526
|
_order?: string | null;
|
|
4318
4527
|
tenant?: (string | null) | Tenant;
|
|
4319
|
-
title
|
|
4528
|
+
title?: string | null;
|
|
4320
4529
|
/**
|
|
4321
4530
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
4322
4531
|
*/
|
|
@@ -4513,7 +4722,7 @@ interface PostCategory {
|
|
|
4513
4722
|
id: string;
|
|
4514
4723
|
_order?: string | null;
|
|
4515
4724
|
tenant?: (string | null) | Tenant;
|
|
4516
|
-
title
|
|
4725
|
+
title?: string | null;
|
|
4517
4726
|
/**
|
|
4518
4727
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
4519
4728
|
*/
|
|
@@ -4604,7 +4813,7 @@ interface ReactionType {
|
|
|
4604
4813
|
id: string;
|
|
4605
4814
|
_order?: string | null;
|
|
4606
4815
|
tenant?: (string | null) | Tenant;
|
|
4607
|
-
title
|
|
4816
|
+
title?: string | null;
|
|
4608
4817
|
/**
|
|
4609
4818
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
4610
4819
|
*/
|
|
@@ -4698,7 +4907,11 @@ interface EventCalendar {
|
|
|
4698
4907
|
id: string;
|
|
4699
4908
|
_order?: string | null;
|
|
4700
4909
|
tenant?: (string | null) | Tenant;
|
|
4701
|
-
title
|
|
4910
|
+
title?: string | null;
|
|
4911
|
+
/**
|
|
4912
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
4913
|
+
*/
|
|
4914
|
+
subtitle?: string | null;
|
|
4702
4915
|
/**
|
|
4703
4916
|
* Short summary for listing/cards
|
|
4704
4917
|
*/
|
|
@@ -4718,8 +4931,17 @@ interface EventCalendar {
|
|
|
4718
4931
|
};
|
|
4719
4932
|
[k: string]: unknown;
|
|
4720
4933
|
} | null;
|
|
4934
|
+
/**
|
|
4935
|
+
* Default listing behavior for the public event calendar.
|
|
4936
|
+
*/
|
|
4721
4937
|
publicListing?: {
|
|
4938
|
+
/**
|
|
4939
|
+
* Controls whether public listings include past occurrences.
|
|
4940
|
+
*/
|
|
4722
4941
|
showPastOccurrences?: boolean | null;
|
|
4942
|
+
/**
|
|
4943
|
+
* Default number of future months shown in public listings.
|
|
4944
|
+
*/
|
|
4723
4945
|
defaultRangeMonths?: number | null;
|
|
4724
4946
|
};
|
|
4725
4947
|
seo?: {
|
|
@@ -4759,9 +4981,16 @@ interface EventCalendar {
|
|
|
4759
4981
|
*/
|
|
4760
4982
|
generateSlug?: boolean | null;
|
|
4761
4983
|
slug?: string | null;
|
|
4762
|
-
|
|
4984
|
+
status?: ('draft' | 'published' | 'archived') | null;
|
|
4985
|
+
/**
|
|
4986
|
+
* Default IANA time zone for this calendar.
|
|
4987
|
+
*/
|
|
4988
|
+
timezone?: string | null;
|
|
4763
4989
|
color?: string | null;
|
|
4764
|
-
|
|
4990
|
+
/**
|
|
4991
|
+
* Visibility for the tenant-global calendar.
|
|
4992
|
+
*/
|
|
4993
|
+
visibility?: ('public' | 'unlisted' | 'private') | null;
|
|
4765
4994
|
publishedAt?: string | null;
|
|
4766
4995
|
metadata?: {
|
|
4767
4996
|
[k: string]: unknown;
|
|
@@ -4769,7 +4998,6 @@ interface EventCalendar {
|
|
|
4769
4998
|
updatedAt: string;
|
|
4770
4999
|
createdAt: string;
|
|
4771
5000
|
deletedAt?: string | null;
|
|
4772
|
-
_status?: ('draft' | 'published') | null;
|
|
4773
5001
|
}
|
|
4774
5002
|
/**
|
|
4775
5003
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -4779,7 +5007,11 @@ interface Event {
|
|
|
4779
5007
|
id: string;
|
|
4780
5008
|
_order?: string | null;
|
|
4781
5009
|
tenant?: (string | null) | Tenant;
|
|
4782
|
-
title
|
|
5010
|
+
title?: string | null;
|
|
5011
|
+
/**
|
|
5012
|
+
* Secondary display line shown in cards, listings, and detail headers.
|
|
5013
|
+
*/
|
|
5014
|
+
subtitle?: string | null;
|
|
4783
5015
|
/**
|
|
4784
5016
|
* Short summary for listing/cards
|
|
4785
5017
|
*/
|
|
@@ -4805,15 +5037,30 @@ interface Event {
|
|
|
4805
5037
|
* Products shown with this event. Available only when the Event commerce recipe is active for the tenant.
|
|
4806
5038
|
*/
|
|
4807
5039
|
products?: (string | Product)[] | null;
|
|
5040
|
+
/**
|
|
5041
|
+
* Organizer display details. Linked users must belong to the same workspace.
|
|
5042
|
+
*/
|
|
4808
5043
|
organizer?: {
|
|
4809
5044
|
name?: string | null;
|
|
4810
5045
|
url?: string | null;
|
|
4811
5046
|
user?: (string | null) | User;
|
|
4812
5047
|
};
|
|
5048
|
+
/**
|
|
5049
|
+
* Primary start time. For recurring events, this is the first occurrence anchor.
|
|
5050
|
+
*/
|
|
4813
5051
|
startsAt: string;
|
|
5052
|
+
/**
|
|
5053
|
+
* Primary end time. Must be after the start time.
|
|
5054
|
+
*/
|
|
4814
5055
|
endsAt: string;
|
|
4815
|
-
|
|
5056
|
+
/**
|
|
5057
|
+
* IANA time zone used to expand recurring occurrences.
|
|
5058
|
+
*/
|
|
5059
|
+
timezone?: string | null;
|
|
4816
5060
|
isAllDay?: boolean | null;
|
|
5061
|
+
/**
|
|
5062
|
+
* Optional. Leave empty for a one-time event.
|
|
5063
|
+
*/
|
|
4817
5064
|
recurrence?: {
|
|
4818
5065
|
/**
|
|
4819
5066
|
* RFC 5545 RRULE string
|
|
@@ -4827,8 +5074,14 @@ interface Event {
|
|
|
4827
5074
|
date?: string | null;
|
|
4828
5075
|
id?: string | null;
|
|
4829
5076
|
}[] | null;
|
|
5077
|
+
/**
|
|
5078
|
+
* Number of future months to materialize. Allowed range is 1-12.
|
|
5079
|
+
*/
|
|
4830
5080
|
materializationMonths?: number | null;
|
|
4831
5081
|
};
|
|
5082
|
+
/**
|
|
5083
|
+
* Location details shown to attendees. Private notes are hidden from public API reads.
|
|
5084
|
+
*/
|
|
4832
5085
|
location?: {
|
|
4833
5086
|
type?: ('physical' | 'online' | 'hybrid' | 'hidden') | null;
|
|
4834
5087
|
name?: string | null;
|
|
@@ -4837,9 +5090,34 @@ interface Event {
|
|
|
4837
5090
|
onlineNote?: string | null;
|
|
4838
5091
|
privateNote?: string | null;
|
|
4839
5092
|
};
|
|
5093
|
+
/**
|
|
5094
|
+
* Registration mode. RSVP goes straight to Going; Approval stays pending until an operator approves it.
|
|
5095
|
+
*/
|
|
4840
5096
|
registrationPolicy?: ('none' | 'rsvp' | 'approval' | 'external') | null;
|
|
5097
|
+
/**
|
|
5098
|
+
* Controls whether full RSVP events accept waitlisted registrations.
|
|
5099
|
+
*/
|
|
4841
5100
|
waitlistPolicy?: ('disabled' | 'auto_waitlist') | null;
|
|
5101
|
+
/**
|
|
5102
|
+
* URL used when registration is handled outside this workspace.
|
|
5103
|
+
*/
|
|
4842
5104
|
externalRegistrationUrl?: string | null;
|
|
5105
|
+
/**
|
|
5106
|
+
* Occurrences generated for this event. Review schedule, capacity, and registration counts here, then open an occurrence to adjust operational values.
|
|
5107
|
+
*/
|
|
5108
|
+
occurrences?: {
|
|
5109
|
+
docs?: (string | EventOccurrence)[];
|
|
5110
|
+
hasNextPage?: boolean;
|
|
5111
|
+
totalDocs?: number;
|
|
5112
|
+
};
|
|
5113
|
+
/**
|
|
5114
|
+
* Registrations for this event. Creation and lifecycle status changes are handled by the registration collection and lifecycle actions.
|
|
5115
|
+
*/
|
|
5116
|
+
registrations?: {
|
|
5117
|
+
docs?: (string | EventRegistration)[];
|
|
5118
|
+
hasNextPage?: boolean;
|
|
5119
|
+
totalDocs?: number;
|
|
5120
|
+
};
|
|
4843
5121
|
seo?: {
|
|
4844
5122
|
/**
|
|
4845
5123
|
* Search result title (falls back to document title)
|
|
@@ -4877,10 +5155,19 @@ interface Event {
|
|
|
4877
5155
|
*/
|
|
4878
5156
|
generateSlug?: boolean | null;
|
|
4879
5157
|
slug?: string | null;
|
|
4880
|
-
status
|
|
5158
|
+
status?: ('draft' | 'published' | 'archived' | 'canceled') | null;
|
|
4881
5159
|
coverImage?: (string | null) | Image;
|
|
4882
|
-
|
|
5160
|
+
/**
|
|
5161
|
+
* Public API visibility. Unlisted events are hidden from listings but remain available by direct lookup.
|
|
5162
|
+
*/
|
|
5163
|
+
visibility?: ('public' | 'unlisted' | 'private') | null;
|
|
5164
|
+
/**
|
|
5165
|
+
* Marks whether this event is authored here or imported from an external source.
|
|
5166
|
+
*/
|
|
4883
5167
|
sourceType?: ('native' | 'external') | null;
|
|
5168
|
+
/**
|
|
5169
|
+
* External event identity. Public API reads expose only provider and URL.
|
|
5170
|
+
*/
|
|
4884
5171
|
externalSource?: {
|
|
4885
5172
|
provider?: string | null;
|
|
4886
5173
|
sourceId?: string | null;
|
|
@@ -4893,7 +5180,6 @@ interface Event {
|
|
|
4893
5180
|
updatedAt: string;
|
|
4894
5181
|
createdAt: string;
|
|
4895
5182
|
deletedAt?: string | null;
|
|
4896
|
-
_status?: ('draft' | 'published') | null;
|
|
4897
5183
|
}
|
|
4898
5184
|
/**
|
|
4899
5185
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -4903,7 +5189,7 @@ interface EventCategory {
|
|
|
4903
5189
|
id: string;
|
|
4904
5190
|
_order?: string | null;
|
|
4905
5191
|
tenant?: (string | null) | Tenant;
|
|
4906
|
-
title
|
|
5192
|
+
title?: string | null;
|
|
4907
5193
|
/**
|
|
4908
5194
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
4909
5195
|
*/
|
|
@@ -4928,7 +5214,7 @@ interface EventTag {
|
|
|
4928
5214
|
id: string;
|
|
4929
5215
|
_order?: string | null;
|
|
4930
5216
|
tenant?: (string | null) | Tenant;
|
|
4931
|
-
title
|
|
5217
|
+
title?: string | null;
|
|
4932
5218
|
/**
|
|
4933
5219
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
4934
5220
|
*/
|
|
@@ -4952,16 +5238,20 @@ interface EventTag {
|
|
|
4952
5238
|
interface EventOccurrence {
|
|
4953
5239
|
id: string;
|
|
4954
5240
|
tenant?: (string | null) | Tenant;
|
|
5241
|
+
/**
|
|
5242
|
+
* Human-readable occurrence title shown in relationship fields and lists. Generated from the event title and start time.
|
|
5243
|
+
*/
|
|
5244
|
+
displayTitle?: string | null;
|
|
4955
5245
|
event: string | Event;
|
|
4956
5246
|
/**
|
|
4957
5247
|
* RECURRENCE-ID based on original DTSTART
|
|
4958
5248
|
*/
|
|
4959
|
-
instanceKey
|
|
5249
|
+
instanceKey?: string | null;
|
|
4960
5250
|
startsAt: string;
|
|
4961
5251
|
endsAt: string;
|
|
4962
|
-
timezone
|
|
5252
|
+
timezone?: string | null;
|
|
4963
5253
|
isAllDay?: boolean | null;
|
|
4964
|
-
status
|
|
5254
|
+
status?: ('scheduled' | 'canceled' | 'completed') | null;
|
|
4965
5255
|
/**
|
|
4966
5256
|
* Location override for this occurrence only. Leave empty to use the event default location.
|
|
4967
5257
|
*/
|
|
@@ -4973,7 +5263,7 @@ interface EventOccurrence {
|
|
|
4973
5263
|
privateNote?: string | null;
|
|
4974
5264
|
};
|
|
4975
5265
|
/**
|
|
4976
|
-
* Capacity for this occurrence. Leave empty
|
|
5266
|
+
* Capacity for this occurrence. Leave empty for unlimited registrations.
|
|
4977
5267
|
*/
|
|
4978
5268
|
capacity?: number | null;
|
|
4979
5269
|
registrationCount?: number | null;
|
|
@@ -4982,6 +5272,14 @@ interface EventOccurrence {
|
|
|
4982
5272
|
opensAt?: string | null;
|
|
4983
5273
|
closesAt?: string | null;
|
|
4984
5274
|
};
|
|
5275
|
+
/**
|
|
5276
|
+
* Registrations linked to this occurrence. Registration status and check-in are managed through the registration collection and lifecycle actions.
|
|
5277
|
+
*/
|
|
5278
|
+
registrations?: {
|
|
5279
|
+
docs?: (string | EventRegistration)[];
|
|
5280
|
+
hasNextPage?: boolean;
|
|
5281
|
+
totalDocs?: number;
|
|
5282
|
+
};
|
|
4985
5283
|
cancellation?: {
|
|
4986
5284
|
canceledAt?: string | null;
|
|
4987
5285
|
reason?: string | null;
|
|
@@ -5000,15 +5298,30 @@ interface EventOccurrence {
|
|
|
5000
5298
|
interface EventRegistration {
|
|
5001
5299
|
id: string;
|
|
5002
5300
|
tenant?: (string | null) | Tenant;
|
|
5301
|
+
/**
|
|
5302
|
+
* Event this registration belongs to.
|
|
5303
|
+
*/
|
|
5003
5304
|
event: string | Event;
|
|
5305
|
+
/**
|
|
5306
|
+
* Occurrence this registration belongs to. Must belong to the same workspace as the event.
|
|
5307
|
+
*/
|
|
5004
5308
|
occurrence: string | EventOccurrence;
|
|
5309
|
+
/**
|
|
5310
|
+
* Linked customer for authenticated registrations. Guest registrations may leave this empty.
|
|
5311
|
+
*/
|
|
5005
5312
|
customer?: (string | null) | Customer;
|
|
5006
|
-
|
|
5007
|
-
|
|
5313
|
+
/**
|
|
5314
|
+
* Registration lifecycle status used for capacity accounting. Managed separately from attendance status.
|
|
5315
|
+
*/
|
|
5316
|
+
registrationStatus?: ('pending' | 'going' | 'waitlisted' | 'declined' | 'canceled') | null;
|
|
5317
|
+
/**
|
|
5318
|
+
* On-site attendance state. It changes to checked-in or no-show only for going registrations.
|
|
5319
|
+
*/
|
|
5320
|
+
attendanceStatus?: ('not_checked_in' | 'checked_in' | 'no_show') | null;
|
|
5008
5321
|
/**
|
|
5009
5322
|
* Number of attendees for this registration. Used for ticketing and capacity calculations.
|
|
5010
5323
|
*/
|
|
5011
|
-
quantity
|
|
5324
|
+
quantity?: number | null;
|
|
5012
5325
|
/**
|
|
5013
5326
|
* PII snapshot captured at registration time. Hidden from publishable-key reads and subject to retention cleanup.
|
|
5014
5327
|
*/
|
|
@@ -5037,10 +5350,16 @@ interface EventRegistration {
|
|
|
5037
5350
|
approvedBy?: (string | null) | User;
|
|
5038
5351
|
note?: string | null;
|
|
5039
5352
|
};
|
|
5353
|
+
/**
|
|
5354
|
+
* Cancellation timestamp and internal reason. Hidden from public API reads.
|
|
5355
|
+
*/
|
|
5040
5356
|
cancellation?: {
|
|
5041
5357
|
canceledAt?: string | null;
|
|
5042
5358
|
reason?: string | null;
|
|
5043
5359
|
};
|
|
5360
|
+
/**
|
|
5361
|
+
* Check-in audit data written by operator actions.
|
|
5362
|
+
*/
|
|
5044
5363
|
checkIn?: {
|
|
5045
5364
|
checkedInAt?: string | null;
|
|
5046
5365
|
checkedInBy?: (string | null) | User;
|
|
@@ -5301,304 +5620,10 @@ interface PayloadKv {
|
|
|
5301
5620
|
*/
|
|
5302
5621
|
interface PayloadLockedDocument {
|
|
5303
5622
|
id: string;
|
|
5304
|
-
document?:
|
|
5623
|
+
document?: {
|
|
5305
5624
|
relationTo: 'users';
|
|
5306
5625
|
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);
|
|
5626
|
+
} | null;
|
|
5602
5627
|
globalSlug?: string | null;
|
|
5603
5628
|
user: {
|
|
5604
5629
|
relationTo: 'users';
|
|
@@ -5913,9 +5938,21 @@ interface WebhookEventsSelect<T extends boolean = true> {
|
|
|
5913
5938
|
*/
|
|
5914
5939
|
interface WebhookDeliveriesSelect<T extends boolean = true> {
|
|
5915
5940
|
tenant?: T;
|
|
5916
|
-
|
|
5941
|
+
webhookId?: T;
|
|
5942
|
+
deliveryId?: T;
|
|
5917
5943
|
attempt?: T;
|
|
5918
5944
|
status?: T;
|
|
5945
|
+
endpointHost?: T;
|
|
5946
|
+
endpointUrlHash?: T;
|
|
5947
|
+
collection?: T;
|
|
5948
|
+
operation?: T;
|
|
5949
|
+
source?: T;
|
|
5950
|
+
statusCode?: T;
|
|
5951
|
+
errorKind?: T;
|
|
5952
|
+
errorMessage?: T;
|
|
5953
|
+
durationMs?: T;
|
|
5954
|
+
nextRetryAt?: T;
|
|
5955
|
+
redelivery?: T;
|
|
5919
5956
|
dispatchedAt?: T;
|
|
5920
5957
|
updatedAt?: T;
|
|
5921
5958
|
createdAt?: T;
|
|
@@ -5931,30 +5968,14 @@ interface TenantsSelect<T extends boolean = true> {
|
|
|
5931
5968
|
enabledFeatures?: T;
|
|
5932
5969
|
enabledRelationshipRecipes?: T;
|
|
5933
5970
|
featureVersion?: T;
|
|
5934
|
-
|
|
5971
|
+
provisioning?: T;
|
|
5935
5972
|
status?: T;
|
|
5936
5973
|
publishableKey?: T;
|
|
5937
5974
|
cors?: T | {
|
|
5938
5975
|
origin?: T;
|
|
5939
5976
|
id?: T;
|
|
5940
5977
|
};
|
|
5941
|
-
webhooks?: T | {
|
|
5942
|
-
name?: T;
|
|
5943
|
-
url?: T;
|
|
5944
|
-
secret?: T;
|
|
5945
|
-
isEnabled?: T;
|
|
5946
|
-
id?: T;
|
|
5947
|
-
};
|
|
5948
5978
|
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
5979
|
updatedAt?: T;
|
|
5959
5980
|
createdAt?: T;
|
|
5960
5981
|
deletedAt?: T;
|
|
@@ -6024,6 +6045,23 @@ interface TenantMetadataSelect<T extends boolean = true> {
|
|
|
6024
6045
|
createdAt?: T;
|
|
6025
6046
|
deletedAt?: T;
|
|
6026
6047
|
}
|
|
6048
|
+
/**
|
|
6049
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
6050
|
+
* via the `definition` "tenant-web-analytics-config_select".
|
|
6051
|
+
*/
|
|
6052
|
+
interface TenantWebAnalyticsConfigSelect<T extends boolean = true> {
|
|
6053
|
+
tenant?: T;
|
|
6054
|
+
enabled?: T;
|
|
6055
|
+
allowedOrigins?: T | {
|
|
6056
|
+
origin?: T;
|
|
6057
|
+
id?: T;
|
|
6058
|
+
};
|
|
6059
|
+
timezone?: T;
|
|
6060
|
+
tzLocked?: T;
|
|
6061
|
+
updatedAt?: T;
|
|
6062
|
+
createdAt?: T;
|
|
6063
|
+
deletedAt?: T;
|
|
6064
|
+
}
|
|
6027
6065
|
/**
|
|
6028
6066
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
6029
6067
|
* via the `definition` "api-usage_select".
|
|
@@ -6083,6 +6121,8 @@ interface TenantAnalyticsDailySelect<T extends boolean = true> {
|
|
|
6083
6121
|
schemaShape?: T;
|
|
6084
6122
|
eventDetails?: T | {
|
|
6085
6123
|
eventName?: T;
|
|
6124
|
+
count?: T;
|
|
6125
|
+
schemaShape?: T;
|
|
6086
6126
|
dimensions?: T | {
|
|
6087
6127
|
dimension?: T;
|
|
6088
6128
|
values?: T | {
|
|
@@ -6104,6 +6144,35 @@ interface TenantAnalyticsDailySelect<T extends boolean = true> {
|
|
|
6104
6144
|
};
|
|
6105
6145
|
id?: T;
|
|
6106
6146
|
};
|
|
6147
|
+
mcpUsage?: T | {
|
|
6148
|
+
toolCalls?: T;
|
|
6149
|
+
sessions?: T;
|
|
6150
|
+
convertedSessions?: T;
|
|
6151
|
+
conversionRate?: T;
|
|
6152
|
+
successfulWrites?: T;
|
|
6153
|
+
isPartial?: T;
|
|
6154
|
+
topTools?: T | {
|
|
6155
|
+
name?: T;
|
|
6156
|
+
count?: T;
|
|
6157
|
+
readOnly?: T;
|
|
6158
|
+
id?: T;
|
|
6159
|
+
};
|
|
6160
|
+
transports?: T | {
|
|
6161
|
+
name?: T;
|
|
6162
|
+
count?: T;
|
|
6163
|
+
id?: T;
|
|
6164
|
+
};
|
|
6165
|
+
httpDurationMs?: T | {
|
|
6166
|
+
p50?: T;
|
|
6167
|
+
p99?: T;
|
|
6168
|
+
buckets?: T | {
|
|
6169
|
+
bucket?: T;
|
|
6170
|
+
label?: T;
|
|
6171
|
+
count?: T;
|
|
6172
|
+
id?: T;
|
|
6173
|
+
};
|
|
6174
|
+
};
|
|
6175
|
+
};
|
|
6107
6176
|
updatedAt?: T;
|
|
6108
6177
|
createdAt?: T;
|
|
6109
6178
|
}
|
|
@@ -6149,6 +6218,20 @@ interface TenantEntitlementsSelect<T extends boolean = true> {
|
|
|
6149
6218
|
createdAt?: T;
|
|
6150
6219
|
deletedAt?: T;
|
|
6151
6220
|
}
|
|
6221
|
+
/**
|
|
6222
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
6223
|
+
* via the `definition` "tenant-purge-jobs_select".
|
|
6224
|
+
*/
|
|
6225
|
+
interface TenantPurgeJobsSelect<T extends boolean = true> {
|
|
6226
|
+
tenantId?: T;
|
|
6227
|
+
status?: T;
|
|
6228
|
+
currentCollection?: T;
|
|
6229
|
+
deletedCount?: T;
|
|
6230
|
+
failure?: T;
|
|
6231
|
+
completedAt?: T;
|
|
6232
|
+
updatedAt?: T;
|
|
6233
|
+
createdAt?: T;
|
|
6234
|
+
}
|
|
6152
6235
|
/**
|
|
6153
6236
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
6154
6237
|
* via the `definition` "subscriptions_select".
|
|
@@ -6239,7 +6322,7 @@ interface WebhooksSelect<T extends boolean = true> {
|
|
|
6239
6322
|
url?: T;
|
|
6240
6323
|
secret?: T;
|
|
6241
6324
|
subscriptions?: T | {
|
|
6242
|
-
|
|
6325
|
+
collection?: T;
|
|
6243
6326
|
id?: T;
|
|
6244
6327
|
};
|
|
6245
6328
|
isActive?: T;
|
|
@@ -6395,7 +6478,6 @@ interface ProductsSelect<T extends boolean = true> {
|
|
|
6395
6478
|
updatedAt?: T;
|
|
6396
6479
|
createdAt?: T;
|
|
6397
6480
|
deletedAt?: T;
|
|
6398
|
-
_status?: T;
|
|
6399
6481
|
}
|
|
6400
6482
|
/**
|
|
6401
6483
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -6506,6 +6588,7 @@ interface ProductCollectionsSelect<T extends boolean = true> {
|
|
|
6506
6588
|
_order?: T;
|
|
6507
6589
|
tenant?: T;
|
|
6508
6590
|
title?: T;
|
|
6591
|
+
subtitle?: T;
|
|
6509
6592
|
description?: T;
|
|
6510
6593
|
content?: T;
|
|
6511
6594
|
images?: T;
|
|
@@ -6532,7 +6615,6 @@ interface ProductCollectionsSelect<T extends boolean = true> {
|
|
|
6532
6615
|
updatedAt?: T;
|
|
6533
6616
|
createdAt?: T;
|
|
6534
6617
|
deletedAt?: T;
|
|
6535
|
-
_status?: T;
|
|
6536
6618
|
}
|
|
6537
6619
|
/**
|
|
6538
6620
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -6568,7 +6650,6 @@ interface BrandsSelect<T extends boolean = true> {
|
|
|
6568
6650
|
updatedAt?: T;
|
|
6569
6651
|
createdAt?: T;
|
|
6570
6652
|
deletedAt?: T;
|
|
6571
|
-
_status?: T;
|
|
6572
6653
|
}
|
|
6573
6654
|
/**
|
|
6574
6655
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -6755,6 +6836,12 @@ interface TransactionsSelect<T extends boolean = true> {
|
|
|
6755
6836
|
receiptUrl?: T;
|
|
6756
6837
|
pgPaymentId?: T;
|
|
6757
6838
|
pgOrderId?: T;
|
|
6839
|
+
providerEventId?: T;
|
|
6840
|
+
providerStatus?: T;
|
|
6841
|
+
confirmedAmount?: T;
|
|
6842
|
+
confirmedCurrency?: T;
|
|
6843
|
+
confirmedAt?: T;
|
|
6844
|
+
confirmationSource?: T;
|
|
6758
6845
|
cashReceipt?: T | {
|
|
6759
6846
|
issuanceType?: T;
|
|
6760
6847
|
registrationNumber?: T;
|
|
@@ -7212,6 +7299,7 @@ interface ArticlesSelect<T extends boolean = true> {
|
|
|
7212
7299
|
};
|
|
7213
7300
|
generateSlug?: T;
|
|
7214
7301
|
slug?: T;
|
|
7302
|
+
status?: T;
|
|
7215
7303
|
thumbnail?: T;
|
|
7216
7304
|
images?: T;
|
|
7217
7305
|
publishedAt?: T;
|
|
@@ -7227,7 +7315,6 @@ interface ArticlesSelect<T extends boolean = true> {
|
|
|
7227
7315
|
updatedAt?: T;
|
|
7228
7316
|
createdAt?: T;
|
|
7229
7317
|
deletedAt?: T;
|
|
7230
|
-
_status?: T;
|
|
7231
7318
|
}
|
|
7232
7319
|
/**
|
|
7233
7320
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -7293,6 +7380,7 @@ interface DocumentsSelect<T extends boolean = true> {
|
|
|
7293
7380
|
_order?: T;
|
|
7294
7381
|
tenant?: T;
|
|
7295
7382
|
title?: T;
|
|
7383
|
+
subtitle?: T;
|
|
7296
7384
|
description?: T;
|
|
7297
7385
|
content?: T;
|
|
7298
7386
|
videos?: T;
|
|
@@ -7319,6 +7407,7 @@ interface DocumentsSelect<T extends boolean = true> {
|
|
|
7319
7407
|
};
|
|
7320
7408
|
generateSlug?: T;
|
|
7321
7409
|
slug?: T;
|
|
7410
|
+
status?: T;
|
|
7322
7411
|
type?: T;
|
|
7323
7412
|
jurisdiction?: T;
|
|
7324
7413
|
language?: T;
|
|
@@ -7331,7 +7420,6 @@ interface DocumentsSelect<T extends boolean = true> {
|
|
|
7331
7420
|
updatedAt?: T;
|
|
7332
7421
|
createdAt?: T;
|
|
7333
7422
|
deletedAt?: T;
|
|
7334
|
-
_status?: T;
|
|
7335
7423
|
}
|
|
7336
7424
|
/**
|
|
7337
7425
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -7376,6 +7464,7 @@ interface PlaylistsSelect<T extends boolean = true> {
|
|
|
7376
7464
|
_order?: T;
|
|
7377
7465
|
tenant?: T;
|
|
7378
7466
|
title?: T;
|
|
7467
|
+
subtitle?: T;
|
|
7379
7468
|
description?: T;
|
|
7380
7469
|
videos?: T;
|
|
7381
7470
|
categories?: T;
|
|
@@ -7404,7 +7493,6 @@ interface PlaylistsSelect<T extends boolean = true> {
|
|
|
7404
7493
|
updatedAt?: T;
|
|
7405
7494
|
createdAt?: T;
|
|
7406
7495
|
deletedAt?: T;
|
|
7407
|
-
_status?: T;
|
|
7408
7496
|
}
|
|
7409
7497
|
/**
|
|
7410
7498
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -7476,7 +7564,6 @@ interface TracksSelect<T extends boolean = true> {
|
|
|
7476
7564
|
updatedAt?: T;
|
|
7477
7565
|
createdAt?: T;
|
|
7478
7566
|
deletedAt?: T;
|
|
7479
|
-
_status?: T;
|
|
7480
7567
|
}
|
|
7481
7568
|
/**
|
|
7482
7569
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -7544,6 +7631,7 @@ interface GalleriesSelect<T extends boolean = true> {
|
|
|
7544
7631
|
_order?: T;
|
|
7545
7632
|
tenant?: T;
|
|
7546
7633
|
title?: T;
|
|
7634
|
+
subtitle?: T;
|
|
7547
7635
|
description?: T;
|
|
7548
7636
|
videos?: T;
|
|
7549
7637
|
categories?: T;
|
|
@@ -7571,7 +7659,6 @@ interface GalleriesSelect<T extends boolean = true> {
|
|
|
7571
7659
|
updatedAt?: T;
|
|
7572
7660
|
createdAt?: T;
|
|
7573
7661
|
deletedAt?: T;
|
|
7574
|
-
_status?: T;
|
|
7575
7662
|
}
|
|
7576
7663
|
/**
|
|
7577
7664
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -7620,13 +7707,13 @@ interface GalleryItemsSelect<T extends boolean = true> {
|
|
|
7620
7707
|
gallery?: T;
|
|
7621
7708
|
title?: T;
|
|
7622
7709
|
description?: T;
|
|
7710
|
+
status?: T;
|
|
7623
7711
|
content?: T;
|
|
7624
7712
|
image?: T;
|
|
7625
7713
|
metadata?: T;
|
|
7626
7714
|
updatedAt?: T;
|
|
7627
7715
|
createdAt?: T;
|
|
7628
7716
|
deletedAt?: T;
|
|
7629
|
-
_status?: T;
|
|
7630
7717
|
}
|
|
7631
7718
|
/**
|
|
7632
7719
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -7636,6 +7723,7 @@ interface LinksSelect<T extends boolean = true> {
|
|
|
7636
7723
|
_order?: T;
|
|
7637
7724
|
tenant?: T;
|
|
7638
7725
|
title?: T;
|
|
7726
|
+
subtitle?: T;
|
|
7639
7727
|
url?: T;
|
|
7640
7728
|
description?: T;
|
|
7641
7729
|
categories?: T;
|
|
@@ -7658,7 +7746,6 @@ interface LinksSelect<T extends boolean = true> {
|
|
|
7658
7746
|
updatedAt?: T;
|
|
7659
7747
|
createdAt?: T;
|
|
7660
7748
|
deletedAt?: T;
|
|
7661
|
-
_status?: T;
|
|
7662
7749
|
}
|
|
7663
7750
|
/**
|
|
7664
7751
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -7703,6 +7790,7 @@ interface LinkTagsSelect<T extends boolean = true> {
|
|
|
7703
7790
|
interface CanvasesSelect<T extends boolean = true> {
|
|
7704
7791
|
tenant?: T;
|
|
7705
7792
|
title?: T;
|
|
7793
|
+
subtitle?: T;
|
|
7706
7794
|
description?: T;
|
|
7707
7795
|
videos?: T;
|
|
7708
7796
|
canvas?: T;
|
|
@@ -7729,7 +7817,6 @@ interface CanvasesSelect<T extends boolean = true> {
|
|
|
7729
7817
|
updatedAt?: T;
|
|
7730
7818
|
createdAt?: T;
|
|
7731
7819
|
deletedAt?: T;
|
|
7732
|
-
_status?: T;
|
|
7733
7820
|
}
|
|
7734
7821
|
/**
|
|
7735
7822
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -7874,6 +7961,7 @@ interface CanvasEdgesSelect<T extends boolean = true> {
|
|
|
7874
7961
|
interface VideosSelect<T extends boolean = true> {
|
|
7875
7962
|
tenant?: T;
|
|
7876
7963
|
title?: T;
|
|
7964
|
+
subtitle?: T;
|
|
7877
7965
|
filename?: T;
|
|
7878
7966
|
description?: T;
|
|
7879
7967
|
content?: T;
|
|
@@ -7960,6 +8048,7 @@ interface VideoTagsSelect<T extends boolean = true> {
|
|
|
7960
8048
|
interface LiveStreamsSelect<T extends boolean = true> {
|
|
7961
8049
|
tenant?: T;
|
|
7962
8050
|
title?: T;
|
|
8051
|
+
subtitle?: T;
|
|
7963
8052
|
description?: T;
|
|
7964
8053
|
scheduledAt?: T;
|
|
7965
8054
|
latencyMode?: T;
|
|
@@ -8168,6 +8257,7 @@ interface EventCalendarsSelect<T extends boolean = true> {
|
|
|
8168
8257
|
_order?: T;
|
|
8169
8258
|
tenant?: T;
|
|
8170
8259
|
title?: T;
|
|
8260
|
+
subtitle?: T;
|
|
8171
8261
|
description?: T;
|
|
8172
8262
|
content?: T;
|
|
8173
8263
|
publicListing?: T | {
|
|
@@ -8187,6 +8277,7 @@ interface EventCalendarsSelect<T extends boolean = true> {
|
|
|
8187
8277
|
};
|
|
8188
8278
|
generateSlug?: T;
|
|
8189
8279
|
slug?: T;
|
|
8280
|
+
status?: T;
|
|
8190
8281
|
timezone?: T;
|
|
8191
8282
|
color?: T;
|
|
8192
8283
|
visibility?: T;
|
|
@@ -8195,7 +8286,6 @@ interface EventCalendarsSelect<T extends boolean = true> {
|
|
|
8195
8286
|
updatedAt?: T;
|
|
8196
8287
|
createdAt?: T;
|
|
8197
8288
|
deletedAt?: T;
|
|
8198
|
-
_status?: T;
|
|
8199
8289
|
}
|
|
8200
8290
|
/**
|
|
8201
8291
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -8205,6 +8295,7 @@ interface EventsSelect<T extends boolean = true> {
|
|
|
8205
8295
|
_order?: T;
|
|
8206
8296
|
tenant?: T;
|
|
8207
8297
|
title?: T;
|
|
8298
|
+
subtitle?: T;
|
|
8208
8299
|
description?: T;
|
|
8209
8300
|
content?: T;
|
|
8210
8301
|
categories?: T;
|
|
@@ -8242,6 +8333,8 @@ interface EventsSelect<T extends boolean = true> {
|
|
|
8242
8333
|
registrationPolicy?: T;
|
|
8243
8334
|
waitlistPolicy?: T;
|
|
8244
8335
|
externalRegistrationUrl?: T;
|
|
8336
|
+
occurrences?: T;
|
|
8337
|
+
registrations?: T;
|
|
8245
8338
|
seo?: T | {
|
|
8246
8339
|
title?: T;
|
|
8247
8340
|
description?: T;
|
|
@@ -8269,7 +8362,6 @@ interface EventsSelect<T extends boolean = true> {
|
|
|
8269
8362
|
updatedAt?: T;
|
|
8270
8363
|
createdAt?: T;
|
|
8271
8364
|
deletedAt?: T;
|
|
8272
|
-
_status?: T;
|
|
8273
8365
|
}
|
|
8274
8366
|
/**
|
|
8275
8367
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -8313,6 +8405,7 @@ interface EventTagsSelect<T extends boolean = true> {
|
|
|
8313
8405
|
*/
|
|
8314
8406
|
interface EventOccurrencesSelect<T extends boolean = true> {
|
|
8315
8407
|
tenant?: T;
|
|
8408
|
+
displayTitle?: T;
|
|
8316
8409
|
event?: T;
|
|
8317
8410
|
instanceKey?: T;
|
|
8318
8411
|
startsAt?: T;
|
|
@@ -8334,6 +8427,7 @@ interface EventOccurrencesSelect<T extends boolean = true> {
|
|
|
8334
8427
|
opensAt?: T;
|
|
8335
8428
|
closesAt?: T;
|
|
8336
8429
|
};
|
|
8430
|
+
registrations?: T;
|
|
8337
8431
|
cancellation?: T | {
|
|
8338
8432
|
canceledAt?: T;
|
|
8339
8433
|
reason?: T;
|