@databutton/firebase-types 1.88.7 → 1.89.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.
@@ -419,10 +419,24 @@ export interface ScheduleWhen {
419
419
  cronExpression: string;
420
420
  timezone: string;
421
421
  }
422
+ export interface ScheduleIntegration {
423
+ serviceName?: string;
424
+ description?: string;
425
+ }
426
+ export interface ScheduleUIMetadata {
427
+ sources?: ScheduleIntegration[];
428
+ destinations?: ScheduleIntegration[];
429
+ }
430
+ export interface ScheduleUIMetadata {
431
+ sources?: ScheduleIntegration[];
432
+ destinations?: ScheduleIntegration[];
433
+ }
422
434
  export interface Schedule {
423
435
  createdBy: PerformedBy;
424
436
  lastUpdatedBy: PerformedBy;
425
437
  title?: string;
438
+ description?: string;
439
+ uiMetadata?: ScheduleUIMetadata;
426
440
  markedForDeletionBy: PerformedBy | null;
427
441
  target: ScheduleTarget;
428
442
  when: ScheduleWhen;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.88.7",
3
+ "version": "1.89.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {