From 8e2b8abd2e9026fdcea3f315fd2f66e7d1711b94 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 27 Jan 2026 21:55:20 +0000 Subject: [PATCH 1/2] feat: Update OpenAPI file replicated from Notehub commit 3d4b541 --- openapi.yaml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index 325cd50..b9fd0ba 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -533,22 +533,6 @@ paths: - personalAccessToken: [] tags: - device - '/v1/projects/{projectOrProductUID}/devices/{deviceUID}/disable-connectivity-assurance': - post: - operationId: DisableDeviceConnectivityAssurance - description: Disable Connectivity Assurance - parameters: - - $ref: '#/components/parameters/projectOrProductUIDParam' - - $ref: '#/components/parameters/deviceUIDParam' - responses: - '200': - description: Successful operation - default: - $ref: '#/components/responses/ErrorResponse' - security: - - personalAccessToken: [] - tags: - - device '/v1/projects/{projectOrProductUID}/devices/{deviceUID}/enable': post: operationId: EnableDevice @@ -565,22 +549,6 @@ paths: - personalAccessToken: [] tags: - device - '/v1/projects/{projectOrProductUID}/devices/{deviceUID}/enable-connectivity-assurance': - post: - operationId: EnableDeviceConnectivityAssurance - description: Enable Connectivity Assurance - parameters: - - $ref: '#/components/parameters/projectOrProductUIDParam' - - $ref: '#/components/parameters/deviceUIDParam' - responses: - '200': - description: Successful operation - default: - $ref: '#/components/responses/ErrorResponse' - security: - - personalAccessToken: [] - tags: - - device '/v1/projects/{projectOrProductUID}/devices/{deviceUID}/environment_hierarchy': get: operationId: GetDeviceEnvironmentHierarchy From 74b5cba15915f54229198ae59e93c78104980c9c Mon Sep 17 00:00:00 2001 From: TJ VanToll Date: Fri, 13 Feb 2026 08:08:56 -0500 Subject: [PATCH 2/2] regen --- README.md | 6 ++++++ config.json | 2 +- openapi_filtered.yaml | 32 -------------------------------- requirements-dev.txt | 1 + 4 files changed, 8 insertions(+), 33 deletions(-) create mode 100644 requirements-dev.txt diff --git a/README.md b/README.md index 9bcd179..494da21 100644 --- a/README.md +++ b/README.md @@ -201,6 +201,12 @@ Follow the installation instructions for Python and pip, and see the note about npm install @openapitools/openapi-generator-cli -g ``` +You'll also need to install Python development dependencies required by the `scripts.py` file: + +```bash +pip3 install -r requirements-dev.txt +``` + Now you should be ready to work with the package locally or make changes and modifications. ### Modifying the Project diff --git a/config.json b/config.json index 586c245..feec4e9 100644 --- a/config.json +++ b/config.json @@ -2,5 +2,5 @@ "packageName": "notehub_py", "packageUrl": "https://github.com/blues/notehub-py", "projectName": "notehub-py", - "packageVersion": "5.0.0" + "packageVersion": "6.0.0" } diff --git a/openapi_filtered.yaml b/openapi_filtered.yaml index 348b3b9..83a182e 100644 --- a/openapi_filtered.yaml +++ b/openapi_filtered.yaml @@ -548,22 +548,6 @@ paths: - personalAccessToken: [] tags: - device - /v1/projects/{projectOrProductUID}/devices/{deviceUID}/disable-connectivity-assurance: - post: - operationId: DisableDeviceConnectivityAssurance - description: Disable Connectivity Assurance - parameters: - - $ref: '#/components/parameters/projectOrProductUIDParam' - - $ref: '#/components/parameters/deviceUIDParam' - responses: - '200': - description: Successful operation - default: - $ref: '#/components/responses/ErrorResponse' - security: - - personalAccessToken: [] - tags: - - device /v1/projects/{projectOrProductUID}/devices/{deviceUID}/enable: post: operationId: EnableDevice @@ -580,22 +564,6 @@ paths: - personalAccessToken: [] tags: - device - /v1/projects/{projectOrProductUID}/devices/{deviceUID}/enable-connectivity-assurance: - post: - operationId: EnableDeviceConnectivityAssurance - description: Enable Connectivity Assurance - parameters: - - $ref: '#/components/parameters/projectOrProductUIDParam' - - $ref: '#/components/parameters/deviceUIDParam' - responses: - '200': - description: Successful operation - default: - $ref: '#/components/responses/ErrorResponse' - security: - - personalAccessToken: [] - tags: - - device /v1/projects/{projectOrProductUID}/devices/{deviceUID}/environment_hierarchy: get: operationId: GetDeviceEnvironmentHierarchy diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..31d61cb --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1 @@ +pyyaml >= 6.0