@factorialco/f0-react 1.311.2 → 1.312.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.
@@ -164,6 +164,14 @@ export declare const defaultTranslations: {
164
164
  readonly all: "All selected";
165
165
  };
166
166
  };
167
+ readonly syncStatus: {
168
+ readonly synced: "Sync completed successfully.";
169
+ readonly syncing: "Sync in progress.";
170
+ readonly pending: "Not yet started.";
171
+ readonly partiallySynced: "All aggregated data was synced but at least 1 failed.";
172
+ readonly outdated: "Data might need to be synced again.";
173
+ readonly failed: "Sync failed.";
174
+ };
167
175
  readonly filters: {
168
176
  readonly searchPlaceholder: "Search filters...";
169
177
  readonly inFilter: {
@@ -479,8 +487,8 @@ declare module "@tiptap/core" {
479
487
 
480
488
  declare module "@tiptap/core" {
481
489
  interface Commands<ReturnType> {
482
- transcript: {
483
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
490
+ liveCompanion: {
491
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
484
492
  };
485
493
  }
486
494
  }
@@ -488,8 +496,8 @@ declare module "@tiptap/core" {
488
496
 
489
497
  declare module "@tiptap/core" {
490
498
  interface Commands<ReturnType> {
491
- liveCompanion: {
492
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
499
+ transcript: {
500
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
493
501
  };
494
502
  }
495
503
  }
@@ -164,6 +164,14 @@ const e = {
164
164
  all: "All selected"
165
165
  }
166
166
  },
167
+ syncStatus: {
168
+ synced: "Sync completed successfully.",
169
+ syncing: "Sync in progress.",
170
+ pending: "Not yet started.",
171
+ partiallySynced: "All aggregated data was synced but at least 1 failed.",
172
+ outdated: "Data might need to be synced again.",
173
+ failed: "Sync failed."
174
+ },
167
175
  filters: {
168
176
  searchPlaceholder: "Search filters...",
169
177
  inFilter: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factorialco/f0-react",
3
- "version": "1.311.2",
3
+ "version": "1.312.0",
4
4
  "main": "dist/f0.js",
5
5
  "typings": "dist/f0.d.ts",
6
6
  "private": false,