@databutton/firebase-types 1.88.8 → 1.89.1

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,20 @@ 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
+ }
422
430
  export interface Schedule {
423
431
  createdBy: PerformedBy;
424
432
  lastUpdatedBy: PerformedBy;
425
433
  title?: string;
434
+ description?: string;
435
+ uiMetadata?: ScheduleUIMetadata;
426
436
  markedForDeletionBy: PerformedBy | null;
427
437
  target: ScheduleTarget;
428
438
  when: ScheduleWhen;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.88.8",
3
+ "version": "1.89.1",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {