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.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 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