apache-airflow-providers-edge3 1.5.0__py3-none-any.whl → 2.0.0__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.
Files changed (49) hide show
  1. airflow/providers/edge3/__init__.py +3 -3
  2. airflow/providers/edge3/cli/api_client.py +23 -26
  3. airflow/providers/edge3/cli/worker.py +9 -28
  4. airflow/providers/edge3/example_dags/integration_test.py +1 -1
  5. airflow/providers/edge3/example_dags/win_test.py +32 -22
  6. airflow/providers/edge3/executors/edge_executor.py +7 -63
  7. airflow/providers/edge3/models/edge_worker.py +7 -3
  8. airflow/providers/edge3/plugins/edge_executor_plugin.py +26 -205
  9. airflow/providers/edge3/plugins/www/dist/main.umd.cjs +8 -8
  10. airflow/providers/edge3/plugins/www/openapi-gen/queries/common.ts +6 -1
  11. airflow/providers/edge3/plugins/www/openapi-gen/queries/ensureQueryData.ts +6 -1
  12. airflow/providers/edge3/plugins/www/openapi-gen/queries/prefetch.ts +6 -1
  13. airflow/providers/edge3/plugins/www/openapi-gen/queries/queries.ts +6 -2
  14. airflow/providers/edge3/plugins/www/openapi-gen/queries/suspense.ts +6 -1
  15. airflow/providers/edge3/plugins/www/openapi-gen/requests/schemas.gen.ts +5 -0
  16. airflow/providers/edge3/plugins/www/openapi-gen/requests/services.gen.ts +18 -3
  17. airflow/providers/edge3/plugins/www/openapi-gen/requests/types.gen.ts +24 -0
  18. airflow/providers/edge3/plugins/www/package.json +17 -15
  19. airflow/providers/edge3/plugins/www/pnpm-lock.yaml +1194 -1244
  20. airflow/providers/edge3/plugins/www/src/components/SearchBar.tsx +103 -0
  21. airflow/providers/edge3/plugins/www/src/components/ui/InputGroup.tsx +57 -0
  22. airflow/providers/edge3/plugins/www/src/components/ui/Select/Content.tsx +37 -0
  23. airflow/providers/edge3/plugins/www/src/components/ui/Select/Item.tsx +34 -0
  24. airflow/providers/edge3/plugins/www/src/components/ui/Select/Root.tsx +24 -0
  25. airflow/providers/edge3/plugins/www/src/components/ui/Select/Trigger.tsx +54 -0
  26. airflow/providers/edge3/plugins/www/src/components/ui/Select/ValueText.tsx +51 -0
  27. airflow/providers/edge3/plugins/www/src/components/ui/Select/index.ts +34 -0
  28. airflow/providers/edge3/plugins/www/src/components/ui/index.ts +3 -0
  29. airflow/providers/edge3/plugins/www/src/constants.ts +43 -0
  30. airflow/providers/edge3/plugins/www/src/pages/WorkerPage.tsx +184 -95
  31. airflow/providers/edge3/version_compat.py +0 -2
  32. airflow/providers/edge3/worker_api/auth.py +11 -35
  33. airflow/providers/edge3/worker_api/datamodels.py +3 -2
  34. airflow/providers/edge3/worker_api/routes/health.py +1 -1
  35. airflow/providers/edge3/worker_api/routes/jobs.py +10 -11
  36. airflow/providers/edge3/worker_api/routes/logs.py +5 -8
  37. airflow/providers/edge3/worker_api/routes/ui.py +14 -3
  38. airflow/providers/edge3/worker_api/routes/worker.py +19 -12
  39. airflow/providers/edge3/{openapi → worker_api}/v2-edge-generated.yaml +59 -5
  40. {apache_airflow_providers_edge3-1.5.0.dist-info → apache_airflow_providers_edge3-2.0.0.dist-info}/METADATA +13 -13
  41. {apache_airflow_providers_edge3-1.5.0.dist-info → apache_airflow_providers_edge3-2.0.0.dist-info}/RECORD +45 -40
  42. airflow/providers/edge3/openapi/__init__.py +0 -19
  43. airflow/providers/edge3/openapi/edge_worker_api_v1.yaml +0 -808
  44. airflow/providers/edge3/worker_api/routes/_v2_compat.py +0 -136
  45. airflow/providers/edge3/worker_api/routes/_v2_routes.py +0 -237
  46. {apache_airflow_providers_edge3-1.5.0.dist-info → apache_airflow_providers_edge3-2.0.0.dist-info}/WHEEL +0 -0
  47. {apache_airflow_providers_edge3-1.5.0.dist-info → apache_airflow_providers_edge3-2.0.0.dist-info}/entry_points.txt +0 -0
  48. {apache_airflow_providers_edge3-1.5.0.dist-info → apache_airflow_providers_edge3-2.0.0.dist-info}/licenses/LICENSE +0 -0
  49. {apache_airflow_providers_edge3-1.5.0.dist-info → apache_airflow_providers_edge3-2.0.0.dist-info}/licenses/NOTICE +0 -0
@@ -397,6 +397,12 @@ paths:
397
397
  schema:
398
398
  $ref: '#/components/schemas/HTTPExceptionResponse'
399
399
  description: Forbidden
400
+ '409':
401
+ content:
402
+ application/json:
403
+ schema:
404
+ $ref: '#/components/schemas/HTTPExceptionResponse'
405
+ description: Conflict
400
406
  '422':
401
407
  description: Validation Error
402
408
  content:
@@ -463,6 +469,12 @@ paths:
463
469
  schema:
464
470
  $ref: '#/components/schemas/HTTPExceptionResponse'
465
471
  description: Forbidden
472
+ '409':
473
+ content:
474
+ application/json:
475
+ schema:
476
+ $ref: '#/components/schemas/HTTPExceptionResponse'
477
+ description: Conflict
466
478
  '422':
467
479
  description: Validation Error
468
480
  content:
@@ -523,6 +535,12 @@ paths:
523
535
  schema:
524
536
  $ref: '#/components/schemas/HTTPExceptionResponse'
525
537
  description: Forbidden
538
+ '409':
539
+ content:
540
+ application/json:
541
+ schema:
542
+ $ref: '#/components/schemas/HTTPExceptionResponse'
543
+ description: Conflict
526
544
  '422':
527
545
  description: Validation Error
528
546
  content:
@@ -553,6 +571,36 @@ paths:
553
571
  summary: Worker
554
572
  description: Return Edge Workers.
555
573
  operationId: worker
574
+ security:
575
+ - OAuth2PasswordBearer: []
576
+ - HTTPBearer: []
577
+ parameters:
578
+ - name: worker_name_pattern
579
+ in: query
580
+ required: false
581
+ schema:
582
+ anyOf:
583
+ - type: string
584
+ - type: 'null'
585
+ title: Worker Name Pattern
586
+ - name: queue_name_pattern
587
+ in: query
588
+ required: false
589
+ schema:
590
+ anyOf:
591
+ - type: string
592
+ - type: 'null'
593
+ title: Queue Name Pattern
594
+ - name: state
595
+ in: query
596
+ required: false
597
+ schema:
598
+ anyOf:
599
+ - type: array
600
+ items:
601
+ $ref: '#/components/schemas/EdgeWorkerState'
602
+ - type: 'null'
603
+ title: State
556
604
  responses:
557
605
  '200':
558
606
  description: Successful Response
@@ -560,9 +608,12 @@ paths:
560
608
  application/json:
561
609
  schema:
562
610
  $ref: '#/components/schemas/WorkerCollectionResponse'
563
- security:
564
- - OAuth2PasswordBearer: []
565
- - HTTPBearer: []
611
+ '422':
612
+ description: Validation Error
613
+ content:
614
+ application/json:
615
+ schema:
616
+ $ref: '#/components/schemas/HTTPValidationError'
566
617
  /edge_worker/ui/jobs:
567
618
  get:
568
619
  tags:
@@ -847,8 +898,7 @@ components:
847
898
  command:
848
899
  $ref: '#/components/schemas/ExecuteTask'
849
900
  title: Command
850
- description: Command line to use to execute the job in Airflow 2. Task definition
851
- in Airflow 3
901
+ description: Command line to use to execute the job in Airflow
852
902
  concurrency_slots:
853
903
  type: integer
854
904
  title: Concurrency Slots
@@ -899,6 +949,10 @@ components:
899
949
  title: Log Path
900
950
  ti:
901
951
  $ref: '#/components/schemas/TaskInstance'
952
+ sentry_integration:
953
+ type: string
954
+ title: Sentry Integration
955
+ default: ''
902
956
  type:
903
957
  type: string
904
958
  const: ExecuteTask
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-edge3
3
- Version: 1.5.0
3
+ Version: 2.0.0
4
4
  Summary: Provider package apache-airflow-providers-edge3 for Apache Airflow
5
5
  Keywords: airflow-provider,edge3,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -22,13 +22,13 @@ Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Topic :: System :: Monitoring
23
23
  License-File: LICENSE
24
24
  License-File: NOTICE
25
- Requires-Dist: apache-airflow>=2.10.0,!=3.1.0
26
- Requires-Dist: apache-airflow-providers-common-compat>=1.8.0
25
+ Requires-Dist: apache-airflow>=3.0.0,!=3.1.0
26
+ Requires-Dist: apache-airflow-providers-common-compat>=1.10.1
27
27
  Requires-Dist: pydantic>=2.11.0
28
28
  Requires-Dist: retryhttp>=1.2.0,!=1.3.0
29
29
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
30
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.5.0/changelog.html
31
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.5.0
30
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-edge3/2.0.0/changelog.html
31
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-edge3/2.0.0
32
32
  Project-URL: Mastodon, https://fosstodon.org/@airflow
33
33
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
34
34
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -59,7 +59,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
59
59
 
60
60
  Package ``apache-airflow-providers-edge3``
61
61
 
62
- Release: ``1.5.0``
62
+ Release: ``2.0.0``
63
63
 
64
64
 
65
65
  Handle edge workers on remote sites via HTTP(s) connection and orchestrates work over distributed sites.
@@ -84,7 +84,7 @@ This is a provider package for ``edge3`` provider. All classes for this provider
84
84
  are in ``airflow.providers.edge3`` python package.
85
85
 
86
86
  You can find package information and changelog for the provider
87
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.5.0/>`_.
87
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-edge3/2.0.0/>`_.
88
88
 
89
89
  Installation
90
90
  ------------
@@ -98,14 +98,14 @@ The package supports the following python versions: 3.10,3.11,3.12,3.13
98
98
  Requirements
99
99
  ------------
100
100
 
101
- ========================================== ====================
101
+ ========================================== ===================
102
102
  PIP package Version required
103
- ========================================== ====================
104
- ``apache-airflow`` ``>=2.10.0,!=3.1.0``
105
- ``apache-airflow-providers-common-compat`` ``>=1.8.0``
103
+ ========================================== ===================
104
+ ``apache-airflow`` ``>=3.0.0,!=3.1.0``
105
+ ``apache-airflow-providers-common-compat`` ``>=1.10.1``
106
106
  ``pydantic`` ``>=2.11.0``
107
107
  ``retryhttp`` ``>=1.2.0,!=1.3.0``
108
- ========================================== ====================
108
+ ========================================== ===================
109
109
 
110
110
  Cross provider package dependencies
111
111
  -----------------------------------
@@ -127,5 +127,5 @@ Dependent package
127
127
  ================================================================================================================== =================
128
128
 
129
129
  The changelog for the provider package can be found in the
130
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.5.0/changelog.html>`_.
130
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-edge3/2.0.0/changelog.html>`_.
131
131
 
@@ -1,27 +1,24 @@
1
- airflow/providers/edge3/__init__.py,sha256=u6oOM1PpVtvfL_Eik4g1_invJjK9IHmE8qn6kqeFeHI,1494
1
+ airflow/providers/edge3/__init__.py,sha256=FoMZEvW444U8RrKOalwoiggPvVfyRqZ2Bgevcq48sC4,1492
2
2
  airflow/providers/edge3/get_provider_info.py,sha256=kVyhF2WJoGtSoG1XpUs0A-unstnAklNtdXpt3jkzRbA,7368
3
- airflow/providers/edge3/version_compat.py,sha256=JRhqYf4UklO3xwmtCRPSXLQqq0yD1pCts3bhwxgVC0s,1670
3
+ airflow/providers/edge3/version_compat.py,sha256=mek4-fV-grwkP7F_kmRHKgZDfloTXi2ngS396UjjJUo,1577
4
4
  airflow/providers/edge3/cli/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
5
- airflow/providers/edge3/cli/api_client.py,sha256=IxG1dae4aemhO8yfKDA71PYSuBdf2ouGur8Cem1Ys4c,7489
5
+ airflow/providers/edge3/cli/api_client.py,sha256=HyQ3fAQkrFkq9wdzQ4CgNDwYsnT9c_c48B8qkeD7LU8,7405
6
6
  airflow/providers/edge3/cli/dataclasses.py,sha256=JUuvvmzSVWvG9uOEfzLIiXrTZ-HbESvu50jkPpVIYVw,2895
7
7
  airflow/providers/edge3/cli/edge_command.py,sha256=aZ8P9x9FBR_pyuDxi6LaLkz4ubGOBDk1RNNp0ppTbKY,21747
8
8
  airflow/providers/edge3/cli/signalling.py,sha256=sf4S6j6OoP0bLkda3UlCmlZabjv5wsMypy3kAvx56Z0,3220
9
- airflow/providers/edge3/cli/worker.py,sha256=GzObT-0lUFHiGxCjwjKcVfj5baKbqGr0ymPc2aerJOc,17731
9
+ airflow/providers/edge3/cli/worker.py,sha256=il-17mwBpwuAhnB4BaqDvMfsZ1WwPwji8MCZ6lqvgPs,16727
10
10
  airflow/providers/edge3/example_dags/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
11
- airflow/providers/edge3/example_dags/integration_test.py,sha256=_bY2tVjUZvKAJXzm0Ozrwas0efRU4X9kULKWxu7LYB4,6264
11
+ airflow/providers/edge3/example_dags/integration_test.py,sha256=CTxHCy1Saaz_fdAilPkQ3nmeq1ScWdL9iUFdCkx-j4k,6281
12
12
  airflow/providers/edge3/example_dags/win_notepad.py,sha256=zYcrKqODN4KLZQ-5wNnZQQskrDd5LA-nKJNgKQDntSE,2832
13
- airflow/providers/edge3/example_dags/win_test.py,sha256=9iZ8Ro1Pi9RhYVcFFyyzpb6q3M0Qt8Ft1wJUF1O3dQc,13565
13
+ airflow/providers/edge3/example_dags/win_test.py,sha256=6kHelD1Uu8KfPJLdjHXrnC3SvnWEAKin-HdfVP3bh8o,13850
14
14
  airflow/providers/edge3/executors/__init__.py,sha256=y830gGSKCvjOcLwLuCDp84NCrHWWB9RSSH1qvJpFhyY,923
15
- airflow/providers/edge3/executors/edge_executor.py,sha256=_KWbjIe9KbosUKfoYZpeONNZnIdrqNK3ja3YzENL-pE,19336
15
+ airflow/providers/edge3/executors/edge_executor.py,sha256=MEl0FsciU6Yx7a9hbAAO_45NJNMSoF8z2fO2BB6ZbtM,17093
16
16
  airflow/providers/edge3/models/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
17
17
  airflow/providers/edge3/models/edge_job.py,sha256=PQRZcrl8RCj9d8xvdNFit7UJ6zRxvME_gZBLyBTN_70,3621
18
18
  airflow/providers/edge3/models/edge_logs.py,sha256=rFVz4gR0GYiEpwai5Q2C5znkiuaUQTjq5EhfLnQUeZQ,3022
19
- airflow/providers/edge3/models/edge_worker.py,sha256=kQV344idLt-ldk5Ru5V4g4RaaPlZA4H7XlWul5_KSuU,13789
20
- airflow/providers/edge3/openapi/__init__.py,sha256=0O-WvmDx8GeKSoECpHYrbe0hW-LgjlKny3VqTCpBQeQ,927
21
- airflow/providers/edge3/openapi/edge_worker_api_v1.yaml,sha256=GAE2IdOXmcUueNy5KFkLBgNpoWnOjnHT9TrW5NZEWpI,24938
22
- airflow/providers/edge3/openapi/v2-edge-generated.yaml,sha256=VBjkPbZjG73QiU75H7UK45q0lLpMsK5E45L9j-LQypI,39727
19
+ airflow/providers/edge3/models/edge_worker.py,sha256=4xUh-4HIjSG5Sf-VBzsO6GwQUfT3BOGNOqEh5lltDDE,13869
23
20
  airflow/providers/edge3/plugins/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
24
- airflow/providers/edge3/plugins/edge_executor_plugin.py,sha256=VUPAH-goiwEWmlJy01Sp5X0tn_jkkiMrpCFURh4RyOY,13020
21
+ airflow/providers/edge3/plugins/edge_executor_plugin.py,sha256=pzy66TGchlnMnQVy_v0DfYKanCtoUfEnmfRMcSGghmI,4887
25
22
  airflow/providers/edge3/plugins/templates/edge_worker_hosts.html,sha256=0_P2yfZwpy3Kvqd3GBvu_PgmmKCUbso3ieW8aYa76iU,8997
26
23
  airflow/providers/edge3/plugins/templates/edge_worker_jobs.html,sha256=bZ-6ysmIy6j4eR_TPHiqbgb3qpNMKCcEEB-SpxuxNgc,2831
27
24
  airflow/providers/edge3/plugins/www/.gitignore,sha256=glCQO0xBUzFDPKNjn3_mw7F6e51j3sjyo4knJAUqMz4,281
@@ -30,8 +27,8 @@ airflow/providers/edge3/plugins/www/.prettierrc,sha256=l0bDuMVuy86p4BwgAssF2AqJL
30
27
  airflow/providers/edge3/plugins/www/README.md,sha256=VLm9Gf_vSdATdAaSeHDkKHmw3Oo_r4ZIHyu_8o0hju4,5110
31
28
  airflow/providers/edge3/plugins/www/eslint.config.js,sha256=8KEosRBtZkvb2mZYWagAukze0WUu8hrPWz4eSj1ONKE,1851
32
29
  airflow/providers/edge3/plugins/www/index.html,sha256=PsqOtfHrJYYwQjxqcAkVOmsl2cRJe8biKygXJjAj2ng,413
33
- airflow/providers/edge3/plugins/www/package.json,sha256=f5MZrnhEmtL5qLLkW5w8hTcWwEkf-MEjDGfSPx_Z6gA,2447
34
- airflow/providers/edge3/plugins/www/pnpm-lock.yaml,sha256=iFNjvMZuhdLnxNuDy2w9WN6GTCfILj6WX0eVsQPvpZM,223757
30
+ airflow/providers/edge3/plugins/www/package.json,sha256=nCoJ7F5ybPXPuFwY1uZUlhPRdW1iP6SLhKd2xhtPexk,2520
31
+ airflow/providers/edge3/plugins/www/pnpm-lock.yaml,sha256=LsnLQxBd0YNVsDt0p2pmPgJXDkAjAQxvKfrwOWb5iBo,221704
35
32
  airflow/providers/edge3/plugins/www/testsSetup.ts,sha256=x1L_lXmigZgufra1L32Xcci_lLifbaG_tP6vx6gPscc,852
36
33
  airflow/providers/edge3/plugins/www/tsconfig.app.json,sha256=zpihgvrBvwjOwtHddJtYUi7Gp26diFtNYmJ7XlM3GUU,753
37
34
  airflow/providers/edge3/plugins/www/tsconfig.json,sha256=jZfUc2grkJB0eRDSFPEPfmBblsr__nGAww3ojidM0ho,158
@@ -39,24 +36,25 @@ airflow/providers/edge3/plugins/www/tsconfig.lib.json,sha256=Z5M3uhtIZ0Uc9CFjc7F
39
36
  airflow/providers/edge3/plugins/www/tsconfig.node.json,sha256=On9I0qUPqRSyxJNKP5OlnWX_rYR1CKZV8A3IgF1UxvE,680
40
37
  airflow/providers/edge3/plugins/www/vite.config.ts,sha256=mxAyXyZhIaFA46v7DY4yAo__y6gs9YXuIIPEhN-6xis,2971
41
38
  airflow/providers/edge3/plugins/www/dist/main.d.ts,sha256=eZKjnWzeXgUOt4RhqL-a2YYXWpSCboNcEQs5ZykL0kk,10
42
- airflow/providers/edge3/plugins/www/dist/main.umd.cjs,sha256=Lutfx5SiT9Ol1N2guPWJ9A3i3cohRXPLG4IXYsHAqSA,563729
43
- airflow/providers/edge3/plugins/www/openapi-gen/queries/common.ts,sha256=mnY7x73LFNTprAZjwPRbl9W1VSmKXPflqtaQa4ocOxw,3531
44
- airflow/providers/edge3/plugins/www/openapi-gen/queries/ensureQueryData.ts,sha256=CCvoih7AKo7voklUkF6EjcjMMVB0HOTY53mBFn2Nly0,1317
39
+ airflow/providers/edge3/plugins/www/dist/main.umd.cjs,sha256=-1OZSMOxgfufuceeVkfDGs9R7haZ6S7SF6oWDtQS09Q,607654
40
+ airflow/providers/edge3/plugins/www/openapi-gen/queries/common.ts,sha256=8_JCD7ZPhld5Mkf8qVlMZC4Ai-T-KRsxbZe4vhA_Gj4,3780
41
+ airflow/providers/edge3/plugins/www/openapi-gen/queries/ensureQueryData.ts,sha256=NVtfnBCRXCFppIh_7oPtwExL4n0xd3fCcFwVcsc9EMs,1612
45
42
  airflow/providers/edge3/plugins/www/openapi-gen/queries/index.ts,sha256=p941sYs7pyF4XLKPxPgBXIko0H6s2U4sowFygzJ6Jos,114
46
43
  airflow/providers/edge3/plugins/www/openapi-gen/queries/infiniteQueries.ts,sha256=1Oy_tZ9ORQp_IbfL50MHgh9kYHXNxn2p89eVsxG-RtQ,61
47
- airflow/providers/edge3/plugins/www/openapi-gen/queries/prefetch.ts,sha256=pRKqxicGVetBFpV1UCWI9p5i5_EI2jCfOHgR44JhDRs,1301
48
- airflow/providers/edge3/plugins/www/openapi-gen/queries/queries.ts,sha256=XQUk9_HwXC3A-3X_QeiB5V_Q3n1jv6Cql__-x4CPmBM,9616
49
- airflow/providers/edge3/plugins/www/openapi-gen/queries/suspense.ts,sha256=fB73K0oi6HFwvqVz8q3zM-lOp6H4EMS2zt3Lqii59cA,2186
44
+ airflow/providers/edge3/plugins/www/openapi-gen/queries/prefetch.ts,sha256=7OIiJHGH_8Jr4MtkhjYGMM3SiFRYA3kAwPxLx_yOJnY,1596
45
+ airflow/providers/edge3/plugins/www/openapi-gen/queries/queries.ts,sha256=QTzA2hSZp9Db5DHabIMC5ucPC2Pk4Hr9ZCWAoiMff54,9873
46
+ airflow/providers/edge3/plugins/www/openapi-gen/queries/suspense.ts,sha256=sMmiKl0vVB_M-ZTNfM96mUkhUjwmr34773aXzExYB-s,2483
50
47
  airflow/providers/edge3/plugins/www/openapi-gen/requests/index.ts,sha256=eykx9J6S_c0q9PV3cHOSrSw9OnGo7njAdBjYO3VA_N8,326
51
- airflow/providers/edge3/plugins/www/openapi-gen/requests/schemas.gen.ts,sha256=5x9zAxJcNwBnRPR4gfNbSTmwWAo1NpuoBwN3Fzr5Ilg,20065
52
- airflow/providers/edge3/plugins/www/openapi-gen/requests/services.gen.ts,sha256=x02frfqDlIJ6qez5CJRPpESVFBvfUO03FRCES_eqzWM,15207
53
- airflow/providers/edge3/plugins/www/openapi-gen/requests/types.gen.ts,sha256=qP3NbFB6BjQfg3PnSIXbS1ZF94HZc7jNyhMZTz05OQo,19003
48
+ airflow/providers/edge3/plugins/www/openapi-gen/requests/schemas.gen.ts,sha256=d7KIc4B0oywC4WVfPl1WYe_1cjKkBysbe1FW4phjb88,20199
49
+ airflow/providers/edge3/plugins/www/openapi-gen/requests/services.gen.ts,sha256=6bmi0cU8cq8MIeHlWpW8stVKPbm01iFrjHXVxxSUQUs,15749
50
+ airflow/providers/edge3/plugins/www/openapi-gen/requests/types.gen.ts,sha256=pM5Vafr7mz2S6-6vIZUPSsPc8ylmVjvM6bZWrUyPsK4,19670
54
51
  airflow/providers/edge3/plugins/www/openapi-gen/requests/core/ApiError.ts,sha256=lfUGx_azgmK9WTL4eCD6q3MSHgi9kwbORAtzKpRD_pU,611
55
52
  airflow/providers/edge3/plugins/www/openapi-gen/requests/core/ApiRequestOptions.ts,sha256=TXwm2FFITqANuXL9C6kdYUtG6TJEuQWtERQOrbS1zxA,617
56
53
  airflow/providers/edge3/plugins/www/openapi-gen/requests/core/ApiResult.ts,sha256=i4pH_Yw7ZHyZmsb4PIXn8LhRqJVMFIp4fZ6OkPO32k4,166
57
54
  airflow/providers/edge3/plugins/www/openapi-gen/requests/core/CancelablePromise.ts,sha256=ZjI34GKHYGvnzNuJLdyVYjUq7BXe3KmDrIQATCsbF8w,3258
58
55
  airflow/providers/edge3/plugins/www/openapi-gen/requests/core/OpenAPI.ts,sha256=Gu0_JlDV061xLt7NF2w9zb2gpP84-rybL86sgX71Ef0,1477
59
56
  airflow/providers/edge3/plugins/www/openapi-gen/requests/core/request.ts,sha256=jG833drJAZFBKN9hnEL6RIRmAfys9eb5rC8p99wBWXk,9598
57
+ airflow/providers/edge3/plugins/www/src/constants.ts,sha256=431h7ZAwkQbZd4evYw7eGcEnj3z_PP2cPOtHTHb3GT0,1580
60
58
  airflow/providers/edge3/plugins/www/src/dev.tsx,sha256=5sZlduF3IFFXKZMxV06hLsxhcCuWNzUMM4Ni1RITG8w,1114
61
59
  airflow/providers/edge3/plugins/www/src/main.tsx,sha256=mY1QGUj7UNDq1H0AbG5lOK1Z3889iQrtPGOfwOBEb3A,1999
62
60
  airflow/providers/edge3/plugins/www/src/theme.ts,sha256=6Fbo0Mwbah6HTupBYyUqOt_T8DAZtDG2UABtOoxUe1w,21458
@@ -67,6 +65,7 @@ airflow/providers/edge3/plugins/www/src/components/MaintenanceEditCommentButton.
67
65
  airflow/providers/edge3/plugins/www/src/components/MaintenanceEnterButton.tsx,sha256=uJTKGJgWHATpSTMhshUkmGgTt0vLxOtwACRnOe5glyU,3641
68
66
  airflow/providers/edge3/plugins/www/src/components/MaintenanceExitButton.tsx,sha256=zkKv9UfPiXVr2y3wBwTnpM_kV-i2cc0CkNVH9izXpRw,3183
69
67
  airflow/providers/edge3/plugins/www/src/components/RemoveQueueButton.tsx,sha256=L6S9v0Z7kNShiyQN6UnjZXnrVOvWHT-yO4y4ImTB-qo,4792
68
+ airflow/providers/edge3/plugins/www/src/components/SearchBar.tsx,sha256=EiWCFTrrv7gWpL_hTmONUKPNw305erXh0M7YqREWWjs,3088
70
69
  airflow/providers/edge3/plugins/www/src/components/StateBadge.tsx,sha256=rORPnRI5h2oJaOGffnW7x4EgP6O_IbHAqA_6jO3DQUw,1506
71
70
  airflow/providers/edge3/plugins/www/src/components/StateIcon.tsx,sha256=Bdrl_DOjV5lN4fXHVmxLK_OjNpODQiy2Fqk3iA5Z87s,2131
72
71
  airflow/providers/edge3/plugins/www/src/components/WorkerDeleteButton.tsx,sha256=4JPuKGcDAXqsFMEBeO2rZm9BDjpCTLMjOuBFh2VY8mM,3529
@@ -76,16 +75,23 @@ airflow/providers/edge3/plugins/www/src/components/WorkerStateBadge.tsx,sha256=t
76
75
  airflow/providers/edge3/plugins/www/src/components/WorkerStateIcon.tsx,sha256=kJ3HgTLlQb5xBph9Cb-LxYLO-d7DMMURBbq-asfXDo0,2158
77
76
  airflow/providers/edge3/plugins/www/src/components/ui/Alert.tsx,sha256=mE0yClICatcUqESJEWFxbVZsBrWBAZqeaSqAzHdIDe8,2199
78
77
  airflow/providers/edge3/plugins/www/src/components/ui/CloseButton.tsx,sha256=ZsaWKOHXz5Ic20l9nxy1IUNFJqvTXEn6Tnz6LVha1ZM,1341
78
+ airflow/providers/edge3/plugins/www/src/components/ui/InputGroup.tsx,sha256=Y_gxx3-9BsTP06_oiWTyl5m6Pb7a3hQgtdqJesntfdM,2160
79
79
  airflow/providers/edge3/plugins/www/src/components/ui/ScrollToAnchor.tsx,sha256=iznVBnAu5kbGY-F8YoDu1ZXrm_K-0mnqsfVCv0adVP8,1653
80
80
  airflow/providers/edge3/plugins/www/src/components/ui/createToaster.ts,sha256=kuOy0Zs_gLXSWJguySQALqjn1r5KPB90Hci8sVKbjrE,955
81
- airflow/providers/edge3/plugins/www/src/components/ui/index.ts,sha256=oMFdotQy8u1LqSJRZ_oZ_pyXVbA17pmWKG1V5hOT7wA,902
81
+ airflow/providers/edge3/plugins/www/src/components/ui/index.ts,sha256=GccUh_146-YLbfRMJjqzzTGGuOsd3Dmd3ki-toBTCN8,989
82
+ airflow/providers/edge3/plugins/www/src/components/ui/Select/Content.tsx,sha256=e35M3IEyiirP4QqoOY3MM7RKFWQ3qM40pQM5NgdEXIk,1402
83
+ airflow/providers/edge3/plugins/www/src/components/ui/Select/Item.tsx,sha256=0bdl9cwbLO2zc0-hasCgGYfIj0b8O9v1exnZtk5OwOg,1349
84
+ airflow/providers/edge3/plugins/www/src/components/ui/Select/Root.tsx,sha256=VYOv90n_3y3V5ySKEMYl9nR9i3v52lGxg-L04fJ2rIw,1099
85
+ airflow/providers/edge3/plugins/www/src/components/ui/Select/Trigger.tsx,sha256=aO1F0eyXgBCcf6ZaQRWs5w0qjQLxuJZZYX4eeVlEnCA,1955
86
+ airflow/providers/edge3/plugins/www/src/components/ui/Select/ValueText.tsx,sha256=k4TkFTTk4r_HzRkRPYlJO8YipwszweHnhMN8ETWtR-0,1792
87
+ airflow/providers/edge3/plugins/www/src/components/ui/Select/index.ts,sha256=IysguJmt3M1e5sBCAHhM7TK7bR2T-ee4kHQW621ypsg,1144
82
88
  airflow/providers/edge3/plugins/www/src/context/colorMode/ColorModeProvider.tsx,sha256=D9tDe9sYEQvCSQ_3fmf6zCaS9rZnzWoZrvb3qrJ0qf0,1024
83
89
  airflow/providers/edge3/plugins/www/src/context/colorMode/index.ts,sha256=nTdA6xva8PrXEybO-JdQN4oSY9GHlHCPvUwREzJvhDM,879
84
90
  airflow/providers/edge3/plugins/www/src/context/colorMode/useColorMode.tsx,sha256=YYcXELSveM_10fOwZeCh9yxiN8H7essKz1QDiy9Jio8,1122
85
91
  airflow/providers/edge3/plugins/www/src/layouts/EdgeLayout.tsx,sha256=17S8T1rnKA9416bz1yTeybK4_U_ENx2PbnezyN9PcXg,1532
86
92
  airflow/providers/edge3/plugins/www/src/layouts/NavTabs.tsx,sha256=BA1BHI6VAu_8uB3hkCtEhrvKjxoE5taPQUAI2_1UXHQ,2040
87
93
  airflow/providers/edge3/plugins/www/src/pages/JobsPage.tsx,sha256=tBgeEsd5TRDkwcsH2x3oOCMKyC4ak6GzfRbAZK6vjLI,4801
88
- airflow/providers/edge3/plugins/www/src/pages/WorkerPage.tsx,sha256=nvEuqk0tr1Y_JMGJTYDzmdadwB-LiJ4OrdmqNfHhiwA,5070
94
+ airflow/providers/edge3/plugins/www/src/pages/WorkerPage.tsx,sha256=M8t8B5WfZHXRmTKYuVR1f3XIXG-QNIaw2EdCkZJUjpo,8403
89
95
  airflow/providers/edge3/plugins/www/src/res/README.md,sha256=v9BEjvcB_pOcCP0bCL8wZ00xovBdzSk79FPFlqM9ZoQ,1010
90
96
  airflow/providers/edge3/plugins/www/src/res/cloud-computer-dark.svg,sha256=o_HFnxsF9M8BbBgIMXuAv3gO0Wc7owQDg5hvw-Pz3ek,368
91
97
  airflow/providers/edge3/plugins/www/src/res/cloud-computer.svg,sha256=oRbCGtHKdKwIqa3_540Np4Td5fkhu1YQ0n--OCRrkyw,365
@@ -94,20 +100,19 @@ airflow/providers/edge3/plugins/www/src/utils/index.ts,sha256=h1cm1iCT0LPIY_VzgK
94
100
  airflow/providers/edge3/plugins/www/src/utils/useContainerWidth.ts,sha256=lLNc0NGM9y9ao538_MvbTiOBK3UYhNfBPX_PvRslCSg,1386
95
101
  airflow/providers/edge3/worker_api/__init__.py,sha256=nnPvxWGTEKZ9YyB1Yd7P9IvDOenK01LVHm22Owwxj3g,839
96
102
  airflow/providers/edge3/worker_api/app.py,sha256=yM2S2JLYE2lS4kN88XYnbeKKRa8vqVVhRq10yA_X0ig,3003
97
- airflow/providers/edge3/worker_api/auth.py,sha256=nmwfUz-nokUKyQp-UKwlMn-i2U5AXzq7c8Xfrt_bGeU,4867
98
- airflow/providers/edge3/worker_api/datamodels.py,sha256=FAiXqnrSN8zH4YE2fUMjXfXcH9cHlhRh4uZvvr936Ys,6696
103
+ airflow/providers/edge3/worker_api/auth.py,sha256=e6e9ZLIXP7qDwtsp_H2ZHEKpELsv7C8VZF6N_Qd68nI,4113
104
+ airflow/providers/edge3/worker_api/datamodels.py,sha256=OsBalmLfAzrxEe66FZQI3yJ186tnTfg75yxVS0vtdfk,6674
99
105
  airflow/providers/edge3/worker_api/datamodels_ui.py,sha256=yPEdtZ7noV5BBNXvA9F-pqVDq7UxTIKUdoUf3_FTDdE,2795
106
+ airflow/providers/edge3/worker_api/v2-edge-generated.yaml,sha256=bcyJE_k2Mlc8Xn9bWSCG2A1ofhlpnvuz9LHWaMdRd_E,41191
100
107
  airflow/providers/edge3/worker_api/routes/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
101
- airflow/providers/edge3/worker_api/routes/_v2_compat.py,sha256=R5w5XPBnOCr9AV-DXZFOP60CRaI9JwTR_kSXwMzt7HU,4576
102
- airflow/providers/edge3/worker_api/routes/_v2_routes.py,sha256=xcbf6RdOHx5zOl9JlIAW9nQhiy3ju-EIyq1tbXGJSYc,10800
103
- airflow/providers/edge3/worker_api/routes/health.py,sha256=1nRn_lvGhaMkGKGeEJbD_p7tJdMbC1LhEmwuQbqI9oE,1076
104
- airflow/providers/edge3/worker_api/routes/jobs.py,sha256=oFf7E4IBX39npRyptISPy5ApgnKmXOwMJMefvF5iIcw,5678
105
- airflow/providers/edge3/worker_api/routes/logs.py,sha256=uk0SZ5hAimj3sAcq1FYCDu0AXYNeTeyjZDGBvw-986E,4945
106
- airflow/providers/edge3/worker_api/routes/ui.py,sha256=yjdNQ7N0h7g7rSzsi4r5inwi4rxlHCdmtYA-ZTWRu6k,9970
107
- airflow/providers/edge3/worker_api/routes/worker.py,sha256=PWgD77rTOCqRGGp5TU4wYPbbu64aCbUrCgwLJEm9iQ8,9199
108
- apache_airflow_providers_edge3-1.5.0.dist-info/entry_points.txt,sha256=7WUIGfd3o9NvvbK5trbZxNXTgYGc6pqg74wZPigbx5o,206
109
- apache_airflow_providers_edge3-1.5.0.dist-info/licenses/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
110
- apache_airflow_providers_edge3-1.5.0.dist-info/licenses/NOTICE,sha256=E3-_E02gwwSEFzeeWPKmnIjOoos3hW28CLISV6sYrbQ,168
111
- apache_airflow_providers_edge3-1.5.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
112
- apache_airflow_providers_edge3-1.5.0.dist-info/METADATA,sha256=0oUpblIB7mlnq-nR4YShJZdjLLY8TGvbxuVaAs5Oeys,6124
113
- apache_airflow_providers_edge3-1.5.0.dist-info/RECORD,,
108
+ airflow/providers/edge3/worker_api/routes/health.py,sha256=LTYvGxvs_OKcyEP6hFSw3J-bnBFP6soXmJlIKlkAyBI,1057
109
+ airflow/providers/edge3/worker_api/routes/jobs.py,sha256=IXkVVnvdi46GlBTsS1CIzk6LzjZX1mfzXRCZqXiNuOg,5881
110
+ airflow/providers/edge3/worker_api/routes/logs.py,sha256=k-5JYyl1n_G7Bi3iAOg6SG0bljr78_TaEWtY9X1y5Yc,5039
111
+ airflow/providers/edge3/worker_api/routes/ui.py,sha256=dnlNZRUNw8WFMwL_oKKMAtu5vKlAeSQHTA_ko7n2raU,10491
112
+ airflow/providers/edge3/worker_api/routes/worker.py,sha256=BqyKNe8U0X2GPDhAL5OmVAN5pC14yumbRCldBKL866g,9877
113
+ apache_airflow_providers_edge3-2.0.0.dist-info/entry_points.txt,sha256=7WUIGfd3o9NvvbK5trbZxNXTgYGc6pqg74wZPigbx5o,206
114
+ apache_airflow_providers_edge3-2.0.0.dist-info/licenses/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
115
+ apache_airflow_providers_edge3-2.0.0.dist-info/licenses/NOTICE,sha256=E3-_E02gwwSEFzeeWPKmnIjOoos3hW28CLISV6sYrbQ,168
116
+ apache_airflow_providers_edge3-2.0.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
117
+ apache_airflow_providers_edge3-2.0.0.dist-info/METADATA,sha256=R9aRlSiGWrjCDsGPMWWyJxR3E8zPM0xVG1gkkhRIdlg,6121
118
+ apache_airflow_providers_edge3-2.0.0.dist-info/RECORD,,
@@ -1,19 +0,0 @@
1
- # Licensed to the Apache Software Foundation (ASF) under one
2
- # or more contributor license agreements. See the NOTICE file
3
- # distributed with this work for additional information
4
- # regarding copyright ownership. The ASF licenses this file
5
- # to you under the Apache License, Version 2.0 (the
6
- # "License"); you may not use this file except in compliance
7
- # with the License. You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing,
12
- # software distributed under the License is distributed on an
13
- # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
- # KIND, either express or implied. See the License for the
15
- # specific language governing permissions and limitations
16
- # under the License.
17
- """OpenAPI Specs for Connexion API in Airflow 2.10.x."""
18
-
19
- # Note: This module folder is to be removed once Airflow 2.10.x support is removed.