@databutton/firebase-types 1.78.130 → 1.78.132

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.
@@ -26,6 +26,7 @@ export declare enum CollectionName {
26
26
  FRONTENDS = "frontends",
27
27
  FRONTEND_PACKAGES = "frontend-packages",
28
28
  JOBS = "jobs",
29
+ KNOWLEDGE_BASES = "knowledge-bases",
29
30
  LAUNCH_WAITLIST = "launch-waitlist",
30
31
  LIFE_STAGE_CHANGE_REQUESTS = "life-stage-change-requests",
31
32
  LOGS = "logs",
@@ -27,6 +27,7 @@ export var CollectionName;
27
27
  CollectionName["FRONTENDS"] = "frontends";
28
28
  CollectionName["FRONTEND_PACKAGES"] = "frontend-packages";
29
29
  CollectionName["JOBS"] = "jobs";
30
+ CollectionName["KNOWLEDGE_BASES"] = "knowledge-bases";
30
31
  CollectionName["LAUNCH_WAITLIST"] = "launch-waitlist";
31
32
  CollectionName["LIFE_STAGE_CHANGE_REQUESTS"] = "life-stage-change-requests";
32
33
  CollectionName["LOGS"] = "logs";
@@ -925,6 +925,29 @@ export interface Integration {
925
925
  } | null;
926
926
  }
927
927
  export type ProjectVariant = "streamlit" | "beyond-streamlit" | "riff";
928
+ export interface CompanyKnowledgeBase {
929
+ createdBy: PerformedBy;
930
+ lastUpdatedBy: PerformedBy;
931
+ companyName: string | null;
932
+ logoUrl: string | null;
933
+ stage: string | null;
934
+ geographyFocus: string | null;
935
+ keyMetrics: Record<string, string> | null;
936
+ dictionary: Record<string, string> | null;
937
+ targetCustomerSegment: string | null;
938
+ painPointsSolved: string | null;
939
+ valueProposition: string | null;
940
+ marketSize: string | null;
941
+ competitors: string | null;
942
+ coreProduct: string | null;
943
+ pricingModel: string | null;
944
+ distributionChannels: Record<string, string> | null;
945
+ adoptionFriction: string | null;
946
+ salesMotion: string | null;
947
+ customerAcquisitionChannels: Record<string, string> | null;
948
+ brandPositioningAndMessaging: string | null;
949
+ customerSuccessAndRetentionStrategy: string | null;
950
+ }
928
951
  export interface Project {
929
952
  createdAt: Timestamp;
930
953
  createdBy?: PerformedBy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.78.130",
3
+ "version": "1.78.132",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {