@airporting/integrations-app 0.4.133 → 0.4.134
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.
- package/dist/mf/2070.css +73 -73
- package/dist/mf/5741.js +1 -1
- package/dist/mf/@mf-types/compiled-types/api/synchro/types.d.ts +7 -4
- package/dist/mf/@mf-types.zip +0 -0
- package/dist/mf/__federation_expose_synchronisation.js +1 -1
- package/dist/mf/index.js +3 -3
- package/dist/mf/integrations_app.js +3 -3
- package/dist/mf/mf-manifest.json +2 -2
- package/dist/mf/mf-stats.json +11 -11
- package/package.json +1 -1
|
@@ -8,6 +8,12 @@ export type ErrorMeta = {
|
|
|
8
8
|
};
|
|
9
9
|
context?: Record<string, string | number | boolean>;
|
|
10
10
|
};
|
|
11
|
+
export type SheetSyncState = 'written' | 'error' | 'pending' | 'unconfirmed';
|
|
12
|
+
export type SheetSync = {
|
|
13
|
+
state: SheetSyncState;
|
|
14
|
+
step: string | null;
|
|
15
|
+
meta: string | null;
|
|
16
|
+
};
|
|
11
17
|
export type RecipeTask = {
|
|
12
18
|
id: number;
|
|
13
19
|
recipe_customer_id: number;
|
|
@@ -26,10 +32,7 @@ export type RecipeTask = {
|
|
|
26
32
|
spreadsheet_url: string | null;
|
|
27
33
|
worksheet: string | null;
|
|
28
34
|
trigger_source: 'manual' | 'scheduled' | 'cron';
|
|
29
|
-
sheet_sync?:
|
|
30
|
-
done: boolean;
|
|
31
|
-
step: string | null;
|
|
32
|
-
} | null;
|
|
35
|
+
sheet_sync?: SheetSync | null;
|
|
33
36
|
connector_from?: ConnectorInfo;
|
|
34
37
|
connector_to?: ConnectorInfo;
|
|
35
38
|
};
|
package/dist/mf/@mf-types.zip
CHANGED
|
Binary file
|