Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
32 changes: 0 additions & 32 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
32 changes: 0 additions & 32 deletions openapi_filtered.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pyyaml >= 6.0