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
18 changes: 0 additions & 18 deletions lib_template/api_doc.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,6 @@ Method | HTTP request | Description

### Example

{{#hasAuthMethods}}
{{#authMethods}}
{{#isBasic}}
{{#isBasicBasic}}
* Basic Authentication ({{name}}):
{{/isBasicBasic}}
{{#isBasicBearer}}
* Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} Authentication ({{name}}):
{{/isBasicBearer}}
{{/isBasic}}
{{#isApiKey}}
* Api Key Authentication ({{name}}):
{{/isApiKey }}
{{#isOAuth}}
* OAuth Authentication ({{name}}):
{{/isOAuth }}
{{/authMethods}}
{{/hasAuthMethods}}
{{> api_doc_example }}

### Parameters
Expand Down
2 changes: 0 additions & 2 deletions src/docs/AlertApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ Get list of defined Alerts

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_alerts200_response import GetAlerts200Response
Expand Down
6 changes: 0 additions & 6 deletions src/docs/BillingAccountApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ Get Billing Account Information

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_billing_account200_response import (
Expand Down Expand Up @@ -69,8 +67,6 @@ Get Billing Account Balance history, only enterprise supported

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_billing_account_balance_history200_response import (
Expand Down Expand Up @@ -133,8 +129,6 @@ Get Billing Accounts accessible by the api_key

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_billing_accounts200_response import (
Expand Down
54 changes: 0 additions & 54 deletions src/docs/DeviceApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ Add a Note to a .db notefile. if noteID is '-' then payload is ignored and empty

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.note_input import NoteInput
Expand Down Expand Up @@ -103,8 +101,6 @@ Adds a Note to a Notefile, creating the Notefile if it doesn't yet exist.

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.note_input import NoteInput
Expand Down Expand Up @@ -162,8 +158,6 @@ Creates an empty Notefile on the device.

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.rest import ApiException
Expand Down Expand Up @@ -214,8 +208,6 @@ Delete Device

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.rest import ApiException
Expand Down Expand Up @@ -264,8 +256,6 @@ Delete environment variable of a device

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.environment_variables import EnvironmentVariables
Expand Down Expand Up @@ -324,8 +314,6 @@ Delete a note from a .db or .qi notefile

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.rest import ApiException
Expand Down Expand Up @@ -380,8 +368,6 @@ Deletes Notefiles and the Notes they contain.

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.delete_notefiles_request import DeleteNotefilesRequest
Expand Down Expand Up @@ -437,8 +423,6 @@ Disable Device

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.rest import ApiException
Expand Down Expand Up @@ -487,8 +471,6 @@ Enable Device

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.rest import ApiException
Expand Down Expand Up @@ -537,8 +519,6 @@ Get a note from a .db or .qi notefile

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_db_note200_response import GetDbNote200Response
Expand Down Expand Up @@ -605,8 +585,6 @@ Get Device

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.device import Device
Expand Down Expand Up @@ -658,8 +636,6 @@ Get environment variable hierarchy for a device

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.env_tree_json_node import EnvTreeJsonNode
Expand Down Expand Up @@ -717,8 +693,6 @@ Get environment variables of a device

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_device_environment_variables_by_pin200_response import (
Expand Down Expand Up @@ -838,8 +812,6 @@ Get Device Health Log

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_device_health_log200_response import (
Expand Down Expand Up @@ -907,8 +879,6 @@ Get Device Latest Events

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_device_latest_events200_response import (
Expand Down Expand Up @@ -964,8 +934,6 @@ Get Data Plans associated with the device, this include the primary sim, any ext

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_device_plans200_response import GetDevicePlans200Response
Expand Down Expand Up @@ -1017,8 +985,6 @@ Get Device Public Key

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_device_public_key200_response import (
Expand Down Expand Up @@ -1074,8 +1040,6 @@ Get Device Public Keys of a Project

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_device_public_keys200_response import (
Expand Down Expand Up @@ -1133,8 +1097,6 @@ Get Device Sessions

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_device_sessions200_response import (
Expand Down Expand Up @@ -1206,8 +1168,6 @@ Get Devices of a Project

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_devices200_response import GetDevices200Response
Expand Down Expand Up @@ -1298,8 +1258,6 @@ Get Devices of a Fleet within a Project

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_devices200_response import GetDevices200Response
Expand Down Expand Up @@ -1390,8 +1348,6 @@ For .qi files, returns the queued up notes. For .db files, returns all notes in

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_notefile200_response import GetNotefile200Response
Expand Down Expand Up @@ -1458,8 +1414,6 @@ Lists .qi and .db files for the device

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.notefile import Notefile
Expand Down Expand Up @@ -1521,8 +1475,6 @@ Provision Device for a Project

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.provision_device_request import ProvisionDeviceRequest
Expand Down Expand Up @@ -1580,8 +1532,6 @@ Set environment variables of a device

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.environment_variables import EnvironmentVariables
Expand Down Expand Up @@ -1705,8 +1655,6 @@ Send a signal from Notehub to a Notecard.

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.body import Body
Expand Down Expand Up @@ -1765,8 +1713,6 @@ Update a note in a .db or .qi notefile

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.note_input import NoteInput
Expand Down
10 changes: 0 additions & 10 deletions src/docs/EventApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ Get Events of a Project

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_events200_response import GetEvents200Response
Expand Down Expand Up @@ -125,8 +123,6 @@ Get Events of a Project by cursor

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_events_by_cursor200_response import (
Expand Down Expand Up @@ -201,8 +197,6 @@ Get Events of a Fleet

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_events200_response import GetEvents200Response
Expand Down Expand Up @@ -308,8 +302,6 @@ Get Events of a Fleet by cursor

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.get_events_by_cursor200_response import (
Expand Down Expand Up @@ -390,8 +382,6 @@ Get Route Logs by Event UID

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.route_log import RouteLog
Expand Down
6 changes: 0 additions & 6 deletions src/docs/ExternalDevicesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ Creates an event using specified webhook

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.event import Event
Expand Down Expand Up @@ -72,8 +70,6 @@ Closes the session for the specified device if open

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.device_session import DeviceSession
Expand Down Expand Up @@ -128,8 +124,6 @@ Create a Session for the specified device. | If a session is currently open it w

### Example

- Bearer Authentication (personalAccessToken):

```python
import notehub_py
from notehub_py.models.device_session import DeviceSession
Expand Down
Loading
Loading