@databutton/firebase-types 1.74.6 → 1.74.8
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.
|
@@ -573,6 +573,7 @@ export type Task = {
|
|
|
573
573
|
updatedBy: PerformedBy;
|
|
574
574
|
markedForDeletionBy: PerformedBy | null;
|
|
575
575
|
managedBy: ManagedBy | null;
|
|
576
|
+
codeSnippets?: TaskCodeSnippet[];
|
|
576
577
|
parentId: string | null;
|
|
577
578
|
status: TaskStatus;
|
|
578
579
|
title: string;
|
|
@@ -1657,4 +1658,22 @@ export interface Branch {
|
|
|
1657
1658
|
updatedBy: PerformedBy;
|
|
1658
1659
|
commitRef: string;
|
|
1659
1660
|
}
|
|
1661
|
+
export interface SupportPreferences {
|
|
1662
|
+
channel: "email" | "discord" | "slack" | "intercom";
|
|
1663
|
+
slackChannel?: string;
|
|
1664
|
+
discordName?: string;
|
|
1665
|
+
}
|
|
1666
|
+
export type TaskCodeSnippet = {
|
|
1667
|
+
language: string;
|
|
1668
|
+
code: string;
|
|
1669
|
+
description: string;
|
|
1670
|
+
name: string;
|
|
1671
|
+
};
|
|
1672
|
+
export interface PrebuiltTask {
|
|
1673
|
+
createdBy: PerformedBy;
|
|
1674
|
+
updatedBy: PerformedBy;
|
|
1675
|
+
title: string;
|
|
1676
|
+
description: string;
|
|
1677
|
+
codeSnippets: TaskCodeSnippet[];
|
|
1678
|
+
}
|
|
1660
1679
|
export {};
|