@airporting/integrations-app 0.4.121 → 0.4.122
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/fec-imports/fecImportMutations.d.ts +4 -0
- package/dist/mf/@mf-types/compiled-types/api/fec-imports/fecImportsQuery.d.ts +5 -0
- package/dist/mf/@mf-types/compiled-types/api/fec-imports/types.d.ts +46 -0
- package/dist/mf/@mf-types/compiled-types/api/useApiSynchro.d.ts +1 -0
- package/dist/mf/@mf-types/compiled-types/components/synchro/FecImportsPanel.d.ts +1 -0
- 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 +4 -4
- package/package.json +1 -1
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export type FecImportStatus = 'validated' | 'failed' | 'committed' | 'deleted';
|
|
2
|
+
export type FecIssue = {
|
|
3
|
+
severity: 'error' | 'warning';
|
|
4
|
+
code: string;
|
|
5
|
+
message: string;
|
|
6
|
+
rowNumber?: number;
|
|
7
|
+
entryKey?: string;
|
|
8
|
+
};
|
|
9
|
+
export type FecImportSummary = {
|
|
10
|
+
id: string;
|
|
11
|
+
airporting_company_id: number;
|
|
12
|
+
company_name: string | null;
|
|
13
|
+
status: FecImportStatus;
|
|
14
|
+
file_name: string;
|
|
15
|
+
file_checksum: string;
|
|
16
|
+
file_size_bytes: number;
|
|
17
|
+
encoding: string | null;
|
|
18
|
+
period_start: string | null;
|
|
19
|
+
period_end: string | null;
|
|
20
|
+
line_count: number;
|
|
21
|
+
entry_count: number;
|
|
22
|
+
total_debit: number;
|
|
23
|
+
total_credit: number;
|
|
24
|
+
errors: FecIssue[];
|
|
25
|
+
warnings: FecIssue[];
|
|
26
|
+
created_by: string | null;
|
|
27
|
+
created_at: string;
|
|
28
|
+
committed_at: string | null;
|
|
29
|
+
committed_by: string | null;
|
|
30
|
+
deleted_at: string | null;
|
|
31
|
+
deleted_by: string | null;
|
|
32
|
+
};
|
|
33
|
+
export type FecImportStagingLine = {
|
|
34
|
+
row_number: number;
|
|
35
|
+
journal_code: string | null;
|
|
36
|
+
entry_number: string | null;
|
|
37
|
+
entry_date: string | null;
|
|
38
|
+
account_number: string | null;
|
|
39
|
+
debit: number | null;
|
|
40
|
+
credit: number | null;
|
|
41
|
+
errors: FecIssue[];
|
|
42
|
+
warnings: FecIssue[];
|
|
43
|
+
};
|
|
44
|
+
export type FecImportDetail = FecImportSummary & {
|
|
45
|
+
rows: FecImportStagingLine[];
|
|
46
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare function useApiSynchro(): {
|
|
2
2
|
get: (path: string) => Promise<any>;
|
|
3
3
|
post: (path: string, body?: unknown) => Promise<any>;
|
|
4
|
+
postForm: (path: string, body: FormData) => Promise<any>;
|
|
4
5
|
put: (path: string, body?: unknown) => Promise<any>;
|
|
5
6
|
delete: (path: string) => Promise<any>;
|
|
6
7
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function FecImportsPanel(): import("react/jsx-runtime").JSX.Element;
|
package/dist/mf/@mf-types.zip
CHANGED
|
Binary file
|