apache-airflow-providers-edge3 1.3.0__py3-none-any.whl → 1.3.1rc1__py3-none-any.whl
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.
Potentially problematic release.
This version of apache-airflow-providers-edge3 might be problematic. Click here for more details.
- airflow/providers/edge3/__init__.py +1 -1
- airflow/providers/edge3/openapi/v2-edge-generated.yaml +10 -30
- airflow/providers/edge3/plugins/www/dist/main.umd.cjs +20 -36
- airflow/providers/edge3/plugins/www/openapi-gen/requests/services.gen.ts +10 -10
- airflow/providers/edge3/plugins/www/openapi-gen/requests/types.gen.ts +20 -20
- airflow/providers/edge3/plugins/www/package.json +20 -20
- airflow/providers/edge3/plugins/www/pnpm-lock.yaml +1329 -1368
- airflow/providers/edge3/plugins/www/src/components/ui/Alert.tsx +0 -1
- airflow/providers/edge3/plugins/www/src/theme.ts +0 -1
- {apache_airflow_providers_edge3-1.3.0.dist-info → apache_airflow_providers_edge3-1.3.1rc1.dist-info}/METADATA +7 -7
- {apache_airflow_providers_edge3-1.3.0.dist-info → apache_airflow_providers_edge3-1.3.1rc1.dist-info}/RECORD +13 -13
- {apache_airflow_providers_edge3-1.3.0.dist-info → apache_airflow_providers_edge3-1.3.1rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_edge3-1.3.0.dist-info → apache_airflow_providers_edge3-1.3.1rc1.dist-info}/entry_points.txt +0 -0
|
@@ -47,7 +47,7 @@ export class JobsService {
|
|
|
47
47
|
* @param data.mapIndex For dynamically mapped tasks the mapping number, -1 if the task is not mapped.
|
|
48
48
|
* @param data.state State of the assigned task under execution.
|
|
49
49
|
* @param data.authorization JWT Authorization Token
|
|
50
|
-
* @returns
|
|
50
|
+
* @returns unknown Successful Response
|
|
51
51
|
* @throws ApiError
|
|
52
52
|
*/
|
|
53
53
|
public static state(data: StateData): CancelablePromise<StateResponse> {
|
|
@@ -122,7 +122,7 @@ export class LogsService {
|
|
|
122
122
|
* @param data.mapIndex For dynamically mapped tasks the mapping number, -1 if the task is not mapped.
|
|
123
123
|
* @param data.authorization JWT Authorization Token
|
|
124
124
|
* @param data.requestBody
|
|
125
|
-
* @returns
|
|
125
|
+
* @returns unknown Successful Response
|
|
126
126
|
* @throws ApiError
|
|
127
127
|
*/
|
|
128
128
|
public static pushLogs(data: PushLogsData): CancelablePromise<PushLogsResponse> {
|
|
@@ -218,7 +218,7 @@ export class WorkerService {
|
|
|
218
218
|
* @param data.workerName Hostname or instance name of the worker
|
|
219
219
|
* @param data.authorization JWT Authorization Token
|
|
220
220
|
* @param data.requestBody
|
|
221
|
-
* @returns
|
|
221
|
+
* @returns unknown Successful Response
|
|
222
222
|
* @throws ApiError
|
|
223
223
|
*/
|
|
224
224
|
public static updateQueues(data: UpdateQueuesData): CancelablePromise<UpdateQueuesResponse> {
|
|
@@ -292,7 +292,7 @@ export class UiService {
|
|
|
292
292
|
* @param data The data for the request.
|
|
293
293
|
* @param data.workerName
|
|
294
294
|
* @param data.requestBody
|
|
295
|
-
* @returns
|
|
295
|
+
* @returns unknown Successful Response
|
|
296
296
|
* @throws ApiError
|
|
297
297
|
*/
|
|
298
298
|
public static requestWorkerMaintenance(data: RequestWorkerMaintenanceData): CancelablePromise<RequestWorkerMaintenanceResponse> {
|
|
@@ -316,7 +316,7 @@ export class UiService {
|
|
|
316
316
|
* @param data The data for the request.
|
|
317
317
|
* @param data.workerName
|
|
318
318
|
* @param data.requestBody
|
|
319
|
-
* @returns
|
|
319
|
+
* @returns unknown Successful Response
|
|
320
320
|
* @throws ApiError
|
|
321
321
|
*/
|
|
322
322
|
public static updateWorkerMaintenance(data: UpdateWorkerMaintenanceData): CancelablePromise<UpdateWorkerMaintenanceResponse> {
|
|
@@ -339,7 +339,7 @@ export class UiService {
|
|
|
339
339
|
* Exit a worker from maintenance mode.
|
|
340
340
|
* @param data The data for the request.
|
|
341
341
|
* @param data.workerName
|
|
342
|
-
* @returns
|
|
342
|
+
* @returns unknown Successful Response
|
|
343
343
|
* @throws ApiError
|
|
344
344
|
*/
|
|
345
345
|
public static exitWorkerMaintenance(data: ExitWorkerMaintenanceData): CancelablePromise<ExitWorkerMaintenanceResponse> {
|
|
@@ -360,7 +360,7 @@ export class UiService {
|
|
|
360
360
|
* Request shutdown of a worker.
|
|
361
361
|
* @param data The data for the request.
|
|
362
362
|
* @param data.workerName
|
|
363
|
-
* @returns
|
|
363
|
+
* @returns unknown Successful Response
|
|
364
364
|
* @throws ApiError
|
|
365
365
|
*/
|
|
366
366
|
public static requestWorkerShutdown(data: RequestWorkerShutdownData): CancelablePromise<RequestWorkerShutdownResponse> {
|
|
@@ -381,7 +381,7 @@ export class UiService {
|
|
|
381
381
|
* Delete a worker record from the system.
|
|
382
382
|
* @param data The data for the request.
|
|
383
383
|
* @param data.workerName
|
|
384
|
-
* @returns
|
|
384
|
+
* @returns unknown Successful Response
|
|
385
385
|
* @throws ApiError
|
|
386
386
|
*/
|
|
387
387
|
public static deleteWorker(data: DeleteWorkerData): CancelablePromise<DeleteWorkerResponse> {
|
|
@@ -403,7 +403,7 @@ export class UiService {
|
|
|
403
403
|
* @param data The data for the request.
|
|
404
404
|
* @param data.workerName
|
|
405
405
|
* @param data.queueName
|
|
406
|
-
* @returns
|
|
406
|
+
* @returns unknown Successful Response
|
|
407
407
|
* @throws ApiError
|
|
408
408
|
*/
|
|
409
409
|
public static addWorkerQueue(data: AddWorkerQueueData): CancelablePromise<AddWorkerQueueResponse> {
|
|
@@ -426,7 +426,7 @@ export class UiService {
|
|
|
426
426
|
* @param data The data for the request.
|
|
427
427
|
* @param data.workerName
|
|
428
428
|
* @param data.queueName
|
|
429
|
-
* @returns
|
|
429
|
+
* @returns unknown Successful Response
|
|
430
430
|
* @throws ApiError
|
|
431
431
|
*/
|
|
432
432
|
public static removeWorkerQueue(data: RemoveWorkerQueueData): CancelablePromise<RemoveWorkerQueueResponse> {
|
|
@@ -359,7 +359,7 @@ export type StateData = {
|
|
|
359
359
|
tryNumber: number;
|
|
360
360
|
};
|
|
361
361
|
|
|
362
|
-
export type StateResponse =
|
|
362
|
+
export type StateResponse = unknown;
|
|
363
363
|
|
|
364
364
|
export type LogfilePathData = {
|
|
365
365
|
/**
|
|
@@ -418,7 +418,7 @@ export type PushLogsData = {
|
|
|
418
418
|
tryNumber: number;
|
|
419
419
|
};
|
|
420
420
|
|
|
421
|
-
export type PushLogsResponse =
|
|
421
|
+
export type PushLogsResponse = unknown;
|
|
422
422
|
|
|
423
423
|
export type RegisterData = {
|
|
424
424
|
/**
|
|
@@ -460,7 +460,7 @@ export type UpdateQueuesData = {
|
|
|
460
460
|
workerName: string;
|
|
461
461
|
};
|
|
462
462
|
|
|
463
|
-
export type UpdateQueuesResponse =
|
|
463
|
+
export type UpdateQueuesResponse = unknown;
|
|
464
464
|
|
|
465
465
|
export type HealthResponse = {
|
|
466
466
|
[key: string]: (string);
|
|
@@ -475,46 +475,46 @@ export type RequestWorkerMaintenanceData = {
|
|
|
475
475
|
workerName: string;
|
|
476
476
|
};
|
|
477
477
|
|
|
478
|
-
export type RequestWorkerMaintenanceResponse =
|
|
478
|
+
export type RequestWorkerMaintenanceResponse = unknown;
|
|
479
479
|
|
|
480
480
|
export type UpdateWorkerMaintenanceData = {
|
|
481
481
|
requestBody: MaintenanceRequest;
|
|
482
482
|
workerName: string;
|
|
483
483
|
};
|
|
484
484
|
|
|
485
|
-
export type UpdateWorkerMaintenanceResponse =
|
|
485
|
+
export type UpdateWorkerMaintenanceResponse = unknown;
|
|
486
486
|
|
|
487
487
|
export type ExitWorkerMaintenanceData = {
|
|
488
488
|
workerName: string;
|
|
489
489
|
};
|
|
490
490
|
|
|
491
|
-
export type ExitWorkerMaintenanceResponse =
|
|
491
|
+
export type ExitWorkerMaintenanceResponse = unknown;
|
|
492
492
|
|
|
493
493
|
export type RequestWorkerShutdownData = {
|
|
494
494
|
workerName: string;
|
|
495
495
|
};
|
|
496
496
|
|
|
497
|
-
export type RequestWorkerShutdownResponse =
|
|
497
|
+
export type RequestWorkerShutdownResponse = unknown;
|
|
498
498
|
|
|
499
499
|
export type DeleteWorkerData = {
|
|
500
500
|
workerName: string;
|
|
501
501
|
};
|
|
502
502
|
|
|
503
|
-
export type DeleteWorkerResponse =
|
|
503
|
+
export type DeleteWorkerResponse = unknown;
|
|
504
504
|
|
|
505
505
|
export type AddWorkerQueueData = {
|
|
506
506
|
queueName: string;
|
|
507
507
|
workerName: string;
|
|
508
508
|
};
|
|
509
509
|
|
|
510
|
-
export type AddWorkerQueueResponse =
|
|
510
|
+
export type AddWorkerQueueResponse = unknown;
|
|
511
511
|
|
|
512
512
|
export type RemoveWorkerQueueData = {
|
|
513
513
|
queueName: string;
|
|
514
514
|
workerName: string;
|
|
515
515
|
};
|
|
516
516
|
|
|
517
|
-
export type RemoveWorkerQueueResponse =
|
|
517
|
+
export type RemoveWorkerQueueResponse = unknown;
|
|
518
518
|
|
|
519
519
|
export type $OpenApiTs = {
|
|
520
520
|
'/edge_worker/v1/jobs/fetch/{worker_name}': {
|
|
@@ -547,7 +547,7 @@ export type $OpenApiTs = {
|
|
|
547
547
|
/**
|
|
548
548
|
* Successful Response
|
|
549
549
|
*/
|
|
550
|
-
200:
|
|
550
|
+
200: unknown;
|
|
551
551
|
/**
|
|
552
552
|
* Bad Request
|
|
553
553
|
*/
|
|
@@ -593,7 +593,7 @@ export type $OpenApiTs = {
|
|
|
593
593
|
/**
|
|
594
594
|
* Successful Response
|
|
595
595
|
*/
|
|
596
|
-
200:
|
|
596
|
+
200: unknown;
|
|
597
597
|
/**
|
|
598
598
|
* Bad Request
|
|
599
599
|
*/
|
|
@@ -660,7 +660,7 @@ export type $OpenApiTs = {
|
|
|
660
660
|
/**
|
|
661
661
|
* Successful Response
|
|
662
662
|
*/
|
|
663
|
-
200:
|
|
663
|
+
200: unknown;
|
|
664
664
|
/**
|
|
665
665
|
* Bad Request
|
|
666
666
|
*/
|
|
@@ -715,7 +715,7 @@ export type $OpenApiTs = {
|
|
|
715
715
|
/**
|
|
716
716
|
* Successful Response
|
|
717
717
|
*/
|
|
718
|
-
200:
|
|
718
|
+
200: unknown;
|
|
719
719
|
/**
|
|
720
720
|
* Validation Error
|
|
721
721
|
*/
|
|
@@ -728,7 +728,7 @@ export type $OpenApiTs = {
|
|
|
728
728
|
/**
|
|
729
729
|
* Successful Response
|
|
730
730
|
*/
|
|
731
|
-
200:
|
|
731
|
+
200: unknown;
|
|
732
732
|
/**
|
|
733
733
|
* Validation Error
|
|
734
734
|
*/
|
|
@@ -741,7 +741,7 @@ export type $OpenApiTs = {
|
|
|
741
741
|
/**
|
|
742
742
|
* Successful Response
|
|
743
743
|
*/
|
|
744
|
-
200:
|
|
744
|
+
200: unknown;
|
|
745
745
|
/**
|
|
746
746
|
* Validation Error
|
|
747
747
|
*/
|
|
@@ -756,7 +756,7 @@ export type $OpenApiTs = {
|
|
|
756
756
|
/**
|
|
757
757
|
* Successful Response
|
|
758
758
|
*/
|
|
759
|
-
200:
|
|
759
|
+
200: unknown;
|
|
760
760
|
/**
|
|
761
761
|
* Validation Error
|
|
762
762
|
*/
|
|
@@ -771,7 +771,7 @@ export type $OpenApiTs = {
|
|
|
771
771
|
/**
|
|
772
772
|
* Successful Response
|
|
773
773
|
*/
|
|
774
|
-
200:
|
|
774
|
+
200: unknown;
|
|
775
775
|
/**
|
|
776
776
|
* Validation Error
|
|
777
777
|
*/
|
|
@@ -786,7 +786,7 @@ export type $OpenApiTs = {
|
|
|
786
786
|
/**
|
|
787
787
|
* Successful Response
|
|
788
788
|
*/
|
|
789
|
-
200:
|
|
789
|
+
200: unknown;
|
|
790
790
|
/**
|
|
791
791
|
* Validation Error
|
|
792
792
|
*/
|
|
@@ -799,7 +799,7 @@ export type $OpenApiTs = {
|
|
|
799
799
|
/**
|
|
800
800
|
* Successful Response
|
|
801
801
|
*/
|
|
802
|
-
200:
|
|
802
|
+
200: unknown;
|
|
803
803
|
/**
|
|
804
804
|
* Validation Error
|
|
805
805
|
*/
|
|
@@ -32,45 +32,45 @@
|
|
|
32
32
|
"coverage": "vitest run --coverage"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@chakra-ui/react": "^3.
|
|
35
|
+
"@chakra-ui/react": "^3.27.0",
|
|
36
36
|
"@emotion/react": "^11.14.0",
|
|
37
|
-
"@tanstack/react-query": "^5.
|
|
38
|
-
"axios": "^1.12.
|
|
37
|
+
"@tanstack/react-query": "^5.90.2",
|
|
38
|
+
"axios": "^1.12.2",
|
|
39
39
|
"next-themes": "^0.4.6",
|
|
40
40
|
"react": "^19.1.1",
|
|
41
41
|
"react-dom": "^19.1.1",
|
|
42
42
|
"react-icons": "^5.5.0",
|
|
43
|
-
"react-router-dom": "^
|
|
43
|
+
"react-router-dom": "^7.9.1",
|
|
44
44
|
"react-timeago": "^8.3.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@7nohe/openapi-react-query-codegen": "^1.6.2",
|
|
48
|
-
"@eslint/compat": "^1.
|
|
49
|
-
"@eslint/js": "^9.
|
|
50
|
-
"@stylistic/eslint-plugin": "^
|
|
51
|
-
"@testing-library/jest-dom": "^6.
|
|
48
|
+
"@eslint/compat": "^1.4.0",
|
|
49
|
+
"@eslint/js": "^9.36.0",
|
|
50
|
+
"@stylistic/eslint-plugin": "^5.4.0",
|
|
51
|
+
"@testing-library/jest-dom": "^6.8.0",
|
|
52
52
|
"@testing-library/react": "^16.3.0",
|
|
53
|
-
"@trivago/prettier-plugin-sort-imports": "^
|
|
54
|
-
"@types/node": "^
|
|
55
|
-
"@types/react": "^
|
|
56
|
-
"@types/react-dom": "^
|
|
57
|
-
"@vitejs/plugin-react-swc": "^4.0
|
|
53
|
+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
54
|
+
"@types/node": "^24.5.2",
|
|
55
|
+
"@types/react": "^19.1.13",
|
|
56
|
+
"@types/react-dom": "^19.1.9",
|
|
57
|
+
"@vitejs/plugin-react-swc": "^4.1.0",
|
|
58
58
|
"@vitest/coverage-v8": "^3.2.4",
|
|
59
|
-
"eslint": "^9.
|
|
59
|
+
"eslint": "^9.36.0",
|
|
60
60
|
"eslint-config-prettier": "^10.1.2",
|
|
61
61
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
62
62
|
"eslint-plugin-perfectionist": "^4.12.3",
|
|
63
63
|
"eslint-plugin-prettier": "^5.2.6",
|
|
64
64
|
"eslint-plugin-react": "^7.37.5",
|
|
65
65
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
66
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
67
|
-
"eslint-plugin-unicorn": "^
|
|
68
|
-
"globals": "^
|
|
69
|
-
"happy-dom": "^
|
|
66
|
+
"eslint-plugin-react-refresh": "^0.4.21",
|
|
67
|
+
"eslint-plugin-unicorn": "^61.0.2",
|
|
68
|
+
"globals": "^16.4.0",
|
|
69
|
+
"happy-dom": "^18.0.1",
|
|
70
70
|
"prettier": "^3.5.3",
|
|
71
71
|
"typescript": "~5.8.3",
|
|
72
|
-
"typescript-eslint": "^8.
|
|
73
|
-
"vite": "^7.1.
|
|
72
|
+
"typescript-eslint": "^8.44.1",
|
|
73
|
+
"vite": "^7.1.7",
|
|
74
74
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
75
75
|
"vite-plugin-dts": "^4.5.4",
|
|
76
76
|
"vitest": "^3.2.4"
|