@airporting/tech-app 0.0.45 → 0.0.47

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.
Files changed (38) hide show
  1. package/dist/mf/9660.js +1 -0
  2. package/dist/mf/@mf-types/compiled-types/apps/_shared/queueDashboard/BulkActionBar.d.ts +8 -0
  3. package/dist/mf/@mf-types/compiled-types/apps/_shared/queueDashboard/FiltersBar.d.ts +9 -0
  4. package/dist/mf/@mf-types/compiled-types/apps/_shared/queueDashboard/KpiStrip.d.ts +9 -0
  5. package/dist/mf/@mf-types/compiled-types/apps/_shared/queueDashboard/QueueDashboard.d.ts +6 -0
  6. package/dist/mf/@mf-types/compiled-types/apps/_shared/queueDashboard/TasksTable.d.ts +14 -0
  7. package/dist/mf/@mf-types/compiled-types/apps/_shared/queueDashboard/TopErrorsCard.d.ts +8 -0
  8. package/dist/mf/@mf-types/compiled-types/apps/_shared/queueDashboard/jobLogsContext.d.ts +5 -0
  9. package/dist/mf/@mf-types/compiled-types/apps/_shared/queueDashboard/types.d.ts +77 -0
  10. package/dist/mf/@mf-types/compiled-types/apps/finance-jobs/config.d.ts +54 -0
  11. package/dist/mf/@mf-types/compiled-types/apps/finance-jobs.app.d.ts +1 -1
  12. package/dist/mf/@mf-types/compiled-types/apps/sante/SystemHealthStrip.d.ts +1 -0
  13. package/dist/mf/@mf-types/compiled-types/apps/spreadsheet/config.d.ts +41 -0
  14. package/dist/mf/@mf-types/compiled-types/apps/spreadsheet.app.d.ts +1 -1
  15. package/dist/mf/@mf-types.zip +0 -0
  16. package/dist/mf/__federation_expose_dashboard.js +1 -1
  17. package/dist/mf/__federation_expose_finance_jobs.js +1 -1
  18. package/dist/mf/__federation_expose_github.js +1 -1
  19. package/dist/mf/__federation_expose_spreadsheet.js +1 -1
  20. package/dist/mf/index.js +3 -3
  21. package/dist/mf/mf-manifest.json +14 -11
  22. package/dist/mf/mf-stats.json +21 -25
  23. package/dist/mf/tech_app.js +3 -3
  24. package/package.json +1 -1
  25. package/dist/mf/@mf-types/compiled-types/apps/finance-jobs/Breakdowns.d.ts +0 -11
  26. package/dist/mf/@mf-types/compiled-types/apps/finance-jobs/BulkActionBar.d.ts +0 -6
  27. package/dist/mf/@mf-types/compiled-types/apps/finance-jobs/FinanceJobsApp.d.ts +0 -1
  28. package/dist/mf/@mf-types/compiled-types/apps/finance-jobs/KpiCards.d.ts +0 -17
  29. package/dist/mf/@mf-types/compiled-types/apps/finance-jobs/TasksFilters.d.ts +0 -19
  30. package/dist/mf/@mf-types/compiled-types/apps/finance-jobs/TasksTable.d.ts +0 -31
  31. package/dist/mf/@mf-types/compiled-types/apps/spreadsheet/Breakdowns.d.ts +0 -10
  32. package/dist/mf/@mf-types/compiled-types/apps/spreadsheet/BulkActionBar.d.ts +0 -6
  33. package/dist/mf/@mf-types/compiled-types/apps/spreadsheet/KpiCards.d.ts +0 -16
  34. package/dist/mf/@mf-types/compiled-types/apps/spreadsheet/SpreadsheetApp.d.ts +0 -1
  35. package/dist/mf/@mf-types/compiled-types/apps/spreadsheet/TasksFilters.d.ts +0 -14
  36. package/dist/mf/@mf-types/compiled-types/apps/spreadsheet/TasksTable.d.ts +0 -24
  37. package/dist/mf/@mf-types/compiled-types/utils/date/formatDate.d.ts +0 -1
  38. /package/dist/mf/@mf-types/compiled-types/apps/{spreadsheet → _shared/queueDashboard}/JobLogsDrawer.d.ts +0 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@airporting/tech-app",
3
3
  "description": "🤖 Tech app front-end",
4
- "version": "0.0.45",
4
+ "version": "0.0.47",
5
5
  "files": [
6
6
  "dist"
7
7
  ],
@@ -1,11 +0,0 @@
1
- type Entry = {
2
- key: string;
3
- count: number;
4
- };
5
- type Props = {
6
- byJobName: Entry[] | undefined;
7
- byOwner: Entry[] | undefined;
8
- byCompany: Entry[] | undefined;
9
- };
10
- export declare function Breakdowns({ byJobName, byOwner, byCompany }: Props): import("react/jsx-runtime").JSX.Element;
11
- export {};
@@ -1,6 +0,0 @@
1
- type Props = {
2
- selectedIds: number[];
3
- onClear: () => void;
4
- };
5
- export declare function BulkActionBar({ selectedIds, onClear }: Props): import("react/jsx-runtime").JSX.Element | null;
6
- export {};
@@ -1 +0,0 @@
1
- export declare function FinanceJobsApp(): import("react/jsx-runtime").JSX.Element;
@@ -1,17 +0,0 @@
1
- type Props = {
2
- stock: {
3
- pending: number;
4
- running: number;
5
- stuck: number;
6
- errored: number;
7
- done_today: number;
8
- oldest: {
9
- created: string;
10
- ageHours: number;
11
- } | null;
12
- } | undefined;
13
- isLoading: boolean;
14
- isError: boolean;
15
- };
16
- export declare function KpiCards({ stock, isLoading, isError }: Props): import("react/jsx-runtime").JSX.Element;
17
- export {};
@@ -1,19 +0,0 @@
1
- import { TaskState } from './types';
2
- type Props = {
3
- jobName: string | null;
4
- owner: string | null;
5
- company: string | null;
6
- state: TaskState | 'all';
7
- beta: 'true' | 'false' | 'all';
8
- jobNames: string[];
9
- owners: string[];
10
- companies: string[];
11
- onJobName: (v: string | null) => void;
12
- onOwner: (v: string | null) => void;
13
- onCompany: (v: string | null) => void;
14
- onState: (v: TaskState | 'all') => void;
15
- onBeta: (v: 'true' | 'false' | 'all') => void;
16
- onRefresh: () => void;
17
- };
18
- export declare function TasksFilters({ jobName, owner, company, state, beta, jobNames, owners, companies, onJobName, onOwner, onCompany, onState, onBeta, onRefresh, }: Props): import("react/jsx-runtime").JSX.Element;
19
- export {};
@@ -1,31 +0,0 @@
1
- import { TaskState } from './types';
2
- type Item = {
3
- id: number;
4
- job_name: string;
5
- job_name_fr: string | null;
6
- company_id: number;
7
- company_slug: string | null;
8
- company_display_name: string | null;
9
- owner: string;
10
- beta: boolean;
11
- state: TaskState;
12
- error: string | null;
13
- trace_count: number | null;
14
- trace_label: string | null;
15
- runDuration: number | null;
16
- created: string;
17
- startedAt: string | null;
18
- finishedAt: string | null;
19
- github_job: string | null;
20
- };
21
- type Props = {
22
- items: Item[] | undefined;
23
- total: number;
24
- isLoading: boolean;
25
- onShowLogs: (githubJob: string) => void;
26
- selectedIds: Set<number>;
27
- onToggleId: (id: number) => void;
28
- onToggleAll: (ids: number[], select: boolean) => void;
29
- };
30
- export declare function TasksTable({ items, total, isLoading, onShowLogs, selectedIds, onToggleId, onToggleAll, }: Props): import("react/jsx-runtime").JSX.Element;
31
- export {};
@@ -1,10 +0,0 @@
1
- type Entry = {
2
- key: string;
3
- count: number;
4
- };
5
- type Props = {
6
- byService: Entry[] | undefined;
7
- byOwner: Entry[] | undefined;
8
- };
9
- export declare function Breakdowns({ byService, byOwner }: Props): import("react/jsx-runtime").JSX.Element;
10
- export {};
@@ -1,6 +0,0 @@
1
- type Props = {
2
- selectedIds: number[];
3
- onClear: () => void;
4
- };
5
- export declare function BulkActionBar({ selectedIds, onClear }: Props): import("react/jsx-runtime").JSX.Element | null;
6
- export {};
@@ -1,16 +0,0 @@
1
- type Props = {
2
- stock: {
3
- pending: number;
4
- running: number;
5
- stuck: number;
6
- errored: number;
7
- oldest: {
8
- created: string;
9
- ageHours: number;
10
- } | null;
11
- } | undefined;
12
- isLoading: boolean;
13
- isError: boolean;
14
- };
15
- export declare function KpiCards({ stock, isLoading, isError }: Props): import("react/jsx-runtime").JSX.Element;
16
- export {};
@@ -1 +0,0 @@
1
- export declare function SpreadsheetApp(): import("react/jsx-runtime").JSX.Element;
@@ -1,14 +0,0 @@
1
- import { TaskState } from './types';
2
- type Props = {
3
- service: string | null;
4
- owner: string | null;
5
- state: TaskState | 'all';
6
- services: string[];
7
- owners: string[];
8
- onService: (v: string | null) => void;
9
- onOwner: (v: string | null) => void;
10
- onState: (v: TaskState | 'all') => void;
11
- onRefresh: () => void;
12
- };
13
- export declare function TasksFilters({ service, owner, state, services, owners, onService, onOwner, onState, onRefresh, }: Props): import("react/jsx-runtime").JSX.Element;
14
- export {};
@@ -1,24 +0,0 @@
1
- import { TaskState } from './types';
2
- type Item = {
3
- id: number;
4
- service: string;
5
- spreadsheet: string;
6
- worksheet: string | null;
7
- owner: string | null;
8
- state: TaskState;
9
- created: string;
10
- started: string | null;
11
- github_job: string | null;
12
- trace_id: string | null;
13
- };
14
- type Props = {
15
- items: Item[] | undefined;
16
- total: number;
17
- isLoading: boolean;
18
- onShowLogs: (githubJob: string) => void;
19
- selectedIds: Set<number>;
20
- onToggleId: (id: number) => void;
21
- onToggleAll: (ids: number[], select: boolean) => void;
22
- };
23
- export declare function TasksTable({ items, total, isLoading, onShowLogs, selectedIds, onToggleId, onToggleAll, }: Props): import("react/jsx-runtime").JSX.Element;
24
- export {};
@@ -1 +0,0 @@
1
- export declare const formatDate: (ts: number) => string;