@databutton/firebase-types 1.74.7 → 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;
|
|
@@ -1662,4 +1663,17 @@ export interface SupportPreferences {
|
|
|
1662
1663
|
slackChannel?: string;
|
|
1663
1664
|
discordName?: string;
|
|
1664
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
|
+
}
|
|
1665
1679
|
export {};
|