diff --git a/docs/README.md b/docs/README.md index 28fbd83a..927b7eb7 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,124 +1,4 @@ seamapi / [Exports](modules.md) -# Javascript / Typescript Seam API Library & CLI - -Control locks, lights and other internet of things devices with Seam's simple API! - -Check out [the generated typescript docs](./docs/modules.md) or some examples: -- [Getting Started Guide with Examples](https://docs.seam.co/github-seam-api-docs/device-guides/get-started-with-august-locks) -- [CLI Usage](#cli-usage) -- [Library Usage](#library-usage) -- [Receiving Webhooks](#receiving-webhooks) - -## Usage - -This package contains both a library and a CLI tool. - -### CLI Usage - -Install with `yarn global add seamapi` or `npm install -g seamapi`. - -Then: -```bash -export SEAM_API_KEY= # you can also pass this as an argument to the CLI - -seam workspaces list -``` - -### Library Usage - -Install with `yarn add seamapi` or `npm install seamapi -s`. - -Then: -```ts -// Replace with -// const { Seam } = require("seamapi") -// if not using ES6 modules and/or TypeScript. -import Seam from "seamapi"; - -// Seam will automatically use the SEAM_API_KEY environment variable if you -// don't provide an apiKey to `new Seam()` -const seam = new Seam(); - -const myLock = await seam.locks.get({ name: "My Lock" }); -const myLockId = myLock.device_id -await seam.locks.lockDoor(myLockId); - -console.log(await seam.locks.list()) -/* -[ - { - device_id: '1815b031-e531-432a-9ae6-b3f2cfb77cab', - device_type: 'smartthings_lock', - capabilities_supported: [ 'access_code', 'lock' ], - properties: { - locked: true, - online: true, - name: 'My Lock' - }, - connected_account_id: '1696fff5-b791-4e30-b039-d8110c78231c', - workspace_id: '2ff17969-b283-426f-9e8f-045323615eee', - created_at: '2022-02-25T08:47:56.486Z' - } -] -*/ - -await seam.accessCodes.create({ - name: "Some Access Code", - code: "1234", - device_id: someLockId, -}); - -console.log(await seam.accessCodes.list({ device_id: myLockId })) -/* -[ - { - access_code_id: '6a556ffe-3253-4c31-804e-2c0a32d9015f', - code: '1234', - name: 'Some Access Code', - type: 'ongoing', - status: 'set', - created_at: '2022-02-25T18:46:20.318Z' - } -] -*/ -``` - -### Receiving Webhooks - -Although you don't need to use this package when receiving webhooks, we **strongly** recommend that you do. Using the included helper class will verify payloads (preventing malicious requests) and return a well-typed event. - -`SeamWebhook` is a thin wrapper around the `Webhook` class from the [Svix library](https://docs.svix.com/receiving/verifying-payloads/how). - -Example for Express: - -```ts -// Replace with -// const { SeamWebhook } = require("seamapi") -// if not using ES6 modules and/or TypeScript. -import { SeamWebhook } from "seamapi"; - -import bodyParser from "body-parser"; - -// Get this from the Seam dashboard -const secret = "sample-secret"; - -app.post('/webhook', bodyParser.raw({type: 'application/json'}), (req, res) => { - const payload = req.body; - const headers = req.headers; - - const wh = new SeamWebhook(secret); - let msg; - try { - msg = wh.verify(payload, headers); - } catch (err) { - res.status(400).json({}); - } - - // Do something with the message... - - res.json({}); -}); -``` - -For examples using other frameworks, see the [Svix docs](https://docs.svix.com/receiving/verifying-payloads/how#framework-specific-examples). +This package has moved to [seam](https://www.npmjs.com/package/seam). +Please refer to the [migration guide](https://github.com/seamapi/javascript/releases/tag/v1.0.0). diff --git a/docs/classes/Seam.md b/docs/classes/Seam.md index 37ec31fc..f9d10df7 100644 --- a/docs/classes/Seam.md +++ b/docs/classes/Seam.md @@ -54,7 +54,7 @@ Routes.constructor #### Defined in -[src/seam-connect/client.ts:73](https://github.com/seamapi/javascript/blob/main/src/seam-connect/client.ts#L73) +[src/seam-connect/client.ts:73](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/client.ts#L73) ## Properties @@ -87,7 +87,7 @@ Routes.accessCodes #### Defined in -[src/seam-connect/routes.ts:328](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L328) +[src/seam-connect/routes.ts:328](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L328) ___ @@ -107,7 +107,7 @@ Routes.actionAttempts #### Defined in -[src/seam-connect/routes.ts:476](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L476) +[src/seam-connect/routes.ts:476](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L476) ___ @@ -117,7 +117,7 @@ ___ #### Defined in -[src/seam-connect/client.ts:71](https://github.com/seamapi/javascript/blob/main/src/seam-connect/client.ts#L71) +[src/seam-connect/client.ts:71](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/client.ts#L71) ___ @@ -141,7 +141,7 @@ Routes.clientSessions #### Defined in -[src/seam-connect/routes.ts:542](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L542) +[src/seam-connect/routes.ts:542](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L542) ___ @@ -164,7 +164,7 @@ Routes.connectWebviews #### Defined in -[src/seam-connect/routes.ts:296](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L296) +[src/seam-connect/routes.ts:296](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L296) ___ @@ -186,7 +186,7 @@ Routes.connectedAccounts #### Defined in -[src/seam-connect/routes.ts:451](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L451) +[src/seam-connect/routes.ts:451](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L451) ___ @@ -206,7 +206,7 @@ Routes.deviceModels #### Defined in -[src/seam-connect/routes.ts:581](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L581) +[src/seam-connect/routes.ts:581](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L581) ___ @@ -234,7 +234,7 @@ Routes.devices #### Defined in -[src/seam-connect/routes.ts:226](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L226) +[src/seam-connect/routes.ts:226](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L226) ___ @@ -255,7 +255,7 @@ Routes.events #### Defined in -[src/seam-connect/routes.ts:278](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L278) +[src/seam-connect/routes.ts:278](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L278) ___ @@ -278,7 +278,7 @@ Routes.locks #### Defined in -[src/seam-connect/routes.ts:191](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L191) +[src/seam-connect/routes.ts:191](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L191) ___ @@ -301,7 +301,7 @@ Routes.noiseThresholds #### Defined in -[src/seam-connect/routes.ts:486](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L486) +[src/seam-connect/routes.ts:486](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L486) ___ @@ -335,7 +335,7 @@ Routes.thermostats #### Defined in -[src/seam-connect/routes.ts:601](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L601) +[src/seam-connect/routes.ts:601](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L601) ___ @@ -358,7 +358,7 @@ Routes.webhooks #### Defined in -[src/seam-connect/routes.ts:517](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L517) +[src/seam-connect/routes.ts:517](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L517) ___ @@ -380,7 +380,7 @@ Routes.workspaces #### Defined in -[src/seam-connect/routes.ts:175](https://github.com/seamapi/javascript/blob/main/src/seam-connect/routes.ts#L175) +[src/seam-connect/routes.ts:175](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/routes.ts#L175) ## Methods @@ -410,7 +410,7 @@ Routes.makeRequest #### Defined in -[src/seam-connect/client.ts:110](https://github.com/seamapi/javascript/blob/main/src/seam-connect/client.ts#L110) +[src/seam-connect/client.ts:110](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/client.ts#L110) ___ @@ -435,4 +435,4 @@ ___ #### Defined in -[src/seam-connect/client.ts:116](https://github.com/seamapi/javascript/blob/main/src/seam-connect/client.ts#L116) +[src/seam-connect/client.ts:116](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/client.ts#L116) diff --git a/docs/classes/SeamAPIError.md b/docs/classes/SeamAPIError.md index 658be742..809dfad5 100644 --- a/docs/classes/SeamAPIError.md +++ b/docs/classes/SeamAPIError.md @@ -50,7 +50,7 @@ Error.constructor #### Defined in -[src/lib/api-error.ts:8](https://github.com/seamapi/javascript/blob/main/src/lib/api-error.ts#L8) +[src/lib/api-error.ts:8](https://github.com/seamapi/javascript-legacy/blob/main/src/lib/api-error.ts#L8) ## Properties @@ -171,7 +171,7 @@ node_modules/@types/node/globals.d.ts:13 #### Defined in -[src/lib/api-error.ts:20](https://github.com/seamapi/javascript/blob/main/src/lib/api-error.ts#L20) +[src/lib/api-error.ts:20](https://github.com/seamapi/javascript-legacy/blob/main/src/lib/api-error.ts#L20) ___ diff --git a/docs/classes/SeamActionAttemptError.md b/docs/classes/SeamActionAttemptError.md index e0e45c1b..65e555bc 100644 --- a/docs/classes/SeamActionAttemptError.md +++ b/docs/classes/SeamActionAttemptError.md @@ -49,7 +49,7 @@ Error.constructor #### Defined in -[src/lib/api-error.ts:26](https://github.com/seamapi/javascript/blob/main/src/lib/api-error.ts#L26) +[src/lib/api-error.ts:26](https://github.com/seamapi/javascript-legacy/blob/main/src/lib/api-error.ts#L26) ## Properties @@ -160,7 +160,7 @@ node_modules/@types/node/globals.d.ts:13 #### Defined in -[src/lib/api-error.ts:38](https://github.com/seamapi/javascript/blob/main/src/lib/api-error.ts#L38) +[src/lib/api-error.ts:38](https://github.com/seamapi/javascript-legacy/blob/main/src/lib/api-error.ts#L38) ___ diff --git a/docs/classes/SeamMalformedInputError.md b/docs/classes/SeamMalformedInputError.md index 382075bb..0b7018b8 100644 --- a/docs/classes/SeamMalformedInputError.md +++ b/docs/classes/SeamMalformedInputError.md @@ -46,7 +46,7 @@ Error.constructor #### Defined in -[src/lib/api-error.ts:44](https://github.com/seamapi/javascript/blob/main/src/lib/api-error.ts#L44) +[src/lib/api-error.ts:44](https://github.com/seamapi/javascript-legacy/blob/main/src/lib/api-error.ts#L44) ## Properties @@ -155,7 +155,7 @@ node_modules/@types/node/globals.d.ts:13 #### Defined in -[src/lib/api-error.ts:52](https://github.com/seamapi/javascript/blob/main/src/lib/api-error.ts#L52) +[src/lib/api-error.ts:52](https://github.com/seamapi/javascript-legacy/blob/main/src/lib/api-error.ts#L52) ___ diff --git a/docs/classes/SeamOS.md b/docs/classes/SeamOS.md index 97a08430..b145ef26 100644 --- a/docs/classes/SeamOS.md +++ b/docs/classes/SeamOS.md @@ -50,7 +50,7 @@ #### Defined in -[src/seam-os/client.ts:52](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L52) +[src/seam-os/client.ts:52](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L52) ## Properties @@ -70,7 +70,7 @@ #### Defined in -[src/seam-os/client.ts:179](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L179) +[src/seam-os/client.ts:179](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L179) ___ @@ -91,7 +91,7 @@ ___ #### Defined in -[src/seam-os/client.ts:187](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L187) +[src/seam-os/client.ts:187](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L187) ___ @@ -101,7 +101,7 @@ ___ #### Defined in -[src/seam-os/client.ts:50](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L50) +[src/seam-os/client.ts:50](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L50) ___ @@ -127,7 +127,7 @@ ___ #### Defined in -[src/seam-os/client.ts:203](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L203) +[src/seam-os/client.ts:203](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L203) ___ @@ -147,7 +147,7 @@ ___ #### Defined in -[src/seam-os/client.ts:227](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L227) +[src/seam-os/client.ts:227](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L227) ___ @@ -168,7 +168,7 @@ ___ #### Defined in -[src/seam-os/client.ts:238](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L238) +[src/seam-os/client.ts:238](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L238) ___ @@ -184,7 +184,7 @@ ___ #### Defined in -[src/seam-os/client.ts:223](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L223) +[src/seam-os/client.ts:223](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L223) ___ @@ -208,7 +208,7 @@ ___ #### Defined in -[src/seam-os/client.ts:177](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L177) +[src/seam-os/client.ts:177](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L177) ___ @@ -224,7 +224,7 @@ ___ #### Defined in -[src/seam-os/client.ts:250](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L250) +[src/seam-os/client.ts:250](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L250) ___ @@ -241,7 +241,7 @@ ___ #### Defined in -[src/seam-os/client.ts:254](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L254) +[src/seam-os/client.ts:254](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L254) ___ @@ -258,7 +258,7 @@ ___ #### Defined in -[src/seam-os/client.ts:259](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L259) +[src/seam-os/client.ts:259](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L259) ___ @@ -276,7 +276,7 @@ ___ #### Defined in -[src/seam-os/client.ts:264](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L264) +[src/seam-os/client.ts:264](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L264) ___ @@ -304,7 +304,7 @@ ___ #### Defined in -[src/seam-os/client.ts:154](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L154) +[src/seam-os/client.ts:154](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L154) ___ @@ -326,7 +326,7 @@ ___ #### Defined in -[src/seam-os/client.ts:270](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L270) +[src/seam-os/client.ts:270](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L270) ___ @@ -347,7 +347,7 @@ ___ #### Defined in -[src/seam-os/client.ts:280](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L280) +[src/seam-os/client.ts:280](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L280) ## Methods @@ -385,7 +385,7 @@ ___ #### Defined in -[src/seam-os/client.ts:146](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L146) +[src/seam-os/client.ts:146](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L146) ___ @@ -423,7 +423,7 @@ ___ #### Defined in -[src/seam-os/client.ts:108](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L108) +[src/seam-os/client.ts:108](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L108) ___ @@ -463,7 +463,7 @@ ___ #### Defined in -[src/seam-os/client.ts:131](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L131) +[src/seam-os/client.ts:131](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L131) ___ @@ -503,7 +503,7 @@ ___ #### Defined in -[src/seam-os/client.ts:116](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L116) +[src/seam-os/client.ts:116](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L116) ___ @@ -530,7 +530,7 @@ ___ #### Defined in -[src/seam-os/client.ts:93](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L93) +[src/seam-os/client.ts:93](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L93) ___ @@ -557,7 +557,7 @@ ___ #### Defined in -[src/seam-os/client.ts:83](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L83) +[src/seam-os/client.ts:83](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L83) ___ @@ -585,4 +585,4 @@ ___ #### Defined in -[src/seam-os/client.ts:100](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L100) +[src/seam-os/client.ts:100](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L100) diff --git a/docs/classes/SeamWebhook.md b/docs/classes/SeamWebhook.md index e2853fa2..738e0257 100644 --- a/docs/classes/SeamWebhook.md +++ b/docs/classes/SeamWebhook.md @@ -34,7 +34,7 @@ Create a new instance of SeamWebhook. #### Defined in -[src/webhooks.ts:14](https://github.com/seamapi/javascript/blob/main/src/webhooks.ts#L14) +[src/webhooks.ts:14](https://github.com/seamapi/javascript-legacy/blob/main/src/webhooks.ts#L14) ## Properties @@ -44,7 +44,7 @@ Create a new instance of SeamWebhook. #### Defined in -[src/webhooks.ts:8](https://github.com/seamapi/javascript/blob/main/src/webhooks.ts#L8) +[src/webhooks.ts:8](https://github.com/seamapi/javascript-legacy/blob/main/src/webhooks.ts#L8) ## Methods @@ -69,4 +69,4 @@ event #### Defined in -[src/webhooks.ts:24](https://github.com/seamapi/javascript/blob/main/src/webhooks.ts#L24) +[src/webhooks.ts:24](https://github.com/seamapi/javascript-legacy/blob/main/src/webhooks.ts#L24) diff --git a/docs/interfaces/APIErrorResponse.md b/docs/interfaces/APIErrorResponse.md index 36629ec3..36182642 100644 --- a/docs/interfaces/APIErrorResponse.md +++ b/docs/interfaces/APIErrorResponse.md @@ -18,7 +18,7 @@ #### Defined in -[src/types/globals.ts:4](https://github.com/seamapi/javascript/blob/main/src/types/globals.ts#L4) +[src/types/globals.ts:4](https://github.com/seamapi/javascript-legacy/blob/main/src/types/globals.ts#L4) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/types/globals.ts:3](https://github.com/seamapi/javascript/blob/main/src/types/globals.ts#L3) +[src/types/globals.ts:3](https://github.com/seamapi/javascript-legacy/blob/main/src/types/globals.ts#L3) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/types/globals.ts:2](https://github.com/seamapi/javascript/blob/main/src/types/globals.ts#L2) +[src/types/globals.ts:2](https://github.com/seamapi/javascript-legacy/blob/main/src/types/globals.ts#L2) diff --git a/docs/interfaces/AccessCodeBase.md b/docs/interfaces/AccessCodeBase.md index d9333610..71cf451a 100644 --- a/docs/interfaces/AccessCodeBase.md +++ b/docs/interfaces/AccessCodeBase.md @@ -33,7 +33,7 @@ #### Defined in -[src/types/models.ts:459](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L459) +[src/types/models.ts:459](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L459) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/types/models.ts:468](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L468) +[src/types/models.ts:468](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L468) ___ @@ -63,7 +63,7 @@ ___ #### Defined in -[src/types/models.ts:462](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L462) +[src/types/models.ts:462](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L462) ___ @@ -73,7 +73,7 @@ ___ #### Defined in -[src/types/models.ts:460](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L460) +[src/types/models.ts:460](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L460) ___ @@ -83,7 +83,7 @@ ___ #### Defined in -[src/types/models.ts:466](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L466) +[src/types/models.ts:466](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L466) ___ @@ -93,7 +93,7 @@ ___ #### Defined in -[src/types/models.ts:463](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L463) +[src/types/models.ts:463](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L463) ___ @@ -103,7 +103,7 @@ ___ #### Defined in -[src/types/models.ts:465](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L465) +[src/types/models.ts:465](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L465) ___ @@ -113,7 +113,7 @@ ___ #### Defined in -[src/types/models.ts:461](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L461) +[src/types/models.ts:461](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L461) ___ @@ -123,7 +123,7 @@ ___ #### Defined in -[src/types/models.ts:464](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L464) +[src/types/models.ts:464](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L464) ___ @@ -133,4 +133,4 @@ ___ #### Defined in -[src/types/models.ts:467](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L467) +[src/types/models.ts:467](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L467) diff --git a/docs/interfaces/AccessCodeCreateBaseRequest.md b/docs/interfaces/AccessCodeCreateBaseRequest.md index 1479419f..e0243bb1 100644 --- a/docs/interfaces/AccessCodeCreateBaseRequest.md +++ b/docs/interfaces/AccessCodeCreateBaseRequest.md @@ -32,7 +32,7 @@ #### Defined in -[src/types/route-requests.ts:58](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L58) +[src/types/route-requests.ts:58](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L58) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/types/route-requests.ts:56](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L56) +[src/types/route-requests.ts:56](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L56) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/types/route-requests.ts:57](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L57) +[src/types/route-requests.ts:57](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L57) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[src/types/route-requests.ts:54](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L54) +[src/types/route-requests.ts:54](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L54) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/types/route-requests.ts:60](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L60) +[src/types/route-requests.ts:60](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L60) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[src/types/route-requests.ts:61](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L61) +[src/types/route-requests.ts:61](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L61) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[src/types/route-requests.ts:62](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L62) +[src/types/route-requests.ts:62](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L62) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[src/types/route-requests.ts:55](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L55) +[src/types/route-requests.ts:55](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L55) ___ @@ -112,4 +112,4 @@ ___ #### Defined in -[src/types/route-requests.ts:59](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L59) +[src/types/route-requests.ts:59](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L59) diff --git a/docs/interfaces/AccessCodeCreateMultipleOngoingRequest.md b/docs/interfaces/AccessCodeCreateMultipleOngoingRequest.md index 26ced0cb..2bb87979 100644 --- a/docs/interfaces/AccessCodeCreateMultipleOngoingRequest.md +++ b/docs/interfaces/AccessCodeCreateMultipleOngoingRequest.md @@ -28,7 +28,7 @@ AccessCodeCreateMultipleBaseRequest.behavior\_when\_code\_cannot\_be\_shared #### Defined in -[src/types/route-requests.ts:81](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L81) +[src/types/route-requests.ts:81](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L81) ___ @@ -42,7 +42,7 @@ AccessCodeCreateMultipleBaseRequest.device\_ids #### Defined in -[src/types/route-requests.ts:79](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L79) +[src/types/route-requests.ts:79](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L79) ___ @@ -56,4 +56,4 @@ AccessCodeCreateMultipleBaseRequest.name #### Defined in -[src/types/route-requests.ts:80](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L80) +[src/types/route-requests.ts:80](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L80) diff --git a/docs/interfaces/AccessCodeCreateMultipleResponse.md b/docs/interfaces/AccessCodeCreateMultipleResponse.md index 3ca6892c..605725bf 100644 --- a/docs/interfaces/AccessCodeCreateMultipleResponse.md +++ b/docs/interfaces/AccessCodeCreateMultipleResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:102](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L102) +[src/types/route-responses.ts:102](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L102) diff --git a/docs/interfaces/AccessCodeCreateMultipleScheduledRequest.md b/docs/interfaces/AccessCodeCreateMultipleScheduledRequest.md index 72c9e72b..777197a1 100644 --- a/docs/interfaces/AccessCodeCreateMultipleScheduledRequest.md +++ b/docs/interfaces/AccessCodeCreateMultipleScheduledRequest.md @@ -30,7 +30,7 @@ AccessCodeCreateMultipleBaseRequest.behavior\_when\_code\_cannot\_be\_shared #### Defined in -[src/types/route-requests.ts:81](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L81) +[src/types/route-requests.ts:81](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L81) ___ @@ -44,7 +44,7 @@ AccessCodeCreateMultipleBaseRequest.device\_ids #### Defined in -[src/types/route-requests.ts:79](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L79) +[src/types/route-requests.ts:79](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L79) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/types/route-requests.ts:90](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L90) +[src/types/route-requests.ts:90](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L90) ___ @@ -68,7 +68,7 @@ AccessCodeCreateMultipleBaseRequest.name #### Defined in -[src/types/route-requests.ts:80](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L80) +[src/types/route-requests.ts:80](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L80) ___ @@ -78,4 +78,4 @@ ___ #### Defined in -[src/types/route-requests.ts:89](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L89) +[src/types/route-requests.ts:89](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L89) diff --git a/docs/interfaces/AccessCodeCreateOngoingRequest.md b/docs/interfaces/AccessCodeCreateOngoingRequest.md index f41f7495..d438e616 100644 --- a/docs/interfaces/AccessCodeCreateOngoingRequest.md +++ b/docs/interfaces/AccessCodeCreateOngoingRequest.md @@ -34,7 +34,7 @@ #### Defined in -[src/types/route-requests.ts:58](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L58) +[src/types/route-requests.ts:58](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L58) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[src/types/route-requests.ts:56](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L56) +[src/types/route-requests.ts:56](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L56) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[src/types/route-requests.ts:57](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L57) +[src/types/route-requests.ts:57](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L57) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/types/route-requests.ts:54](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L54) +[src/types/route-requests.ts:54](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L54) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[src/types/route-requests.ts:60](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L60) +[src/types/route-requests.ts:60](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L60) ___ @@ -104,7 +104,7 @@ ___ #### Defined in -[src/types/route-requests.ts:61](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L61) +[src/types/route-requests.ts:61](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L61) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[src/types/route-requests.ts:62](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L62) +[src/types/route-requests.ts:62](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L62) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[src/types/route-requests.ts:55](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L55) +[src/types/route-requests.ts:55](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L55) ___ @@ -146,4 +146,4 @@ ___ #### Defined in -[src/types/route-requests.ts:59](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L59) +[src/types/route-requests.ts:59](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L59) diff --git a/docs/interfaces/AccessCodeCreateResponse.md b/docs/interfaces/AccessCodeCreateResponse.md index 5e644feb..d2cf977c 100644 --- a/docs/interfaces/AccessCodeCreateResponse.md +++ b/docs/interfaces/AccessCodeCreateResponse.md @@ -29,7 +29,7 @@ #### Defined in -[src/types/route-responses.ts:85](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L85) +[src/types/route-responses.ts:85](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L85) ___ @@ -43,4 +43,4 @@ ___ #### Defined in -[src/types/route-responses.ts:143](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L143) +[src/types/route-responses.ts:143](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L143) diff --git a/docs/interfaces/AccessCodeCreateScheduledRequest.md b/docs/interfaces/AccessCodeCreateScheduledRequest.md index 7df49523..5cf5de45 100644 --- a/docs/interfaces/AccessCodeCreateScheduledRequest.md +++ b/docs/interfaces/AccessCodeCreateScheduledRequest.md @@ -36,7 +36,7 @@ #### Defined in -[src/types/route-requests.ts:58](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L58) +[src/types/route-requests.ts:58](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L58) ___ @@ -50,7 +50,7 @@ ___ #### Defined in -[src/types/route-requests.ts:56](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L56) +[src/types/route-requests.ts:56](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L56) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/types/route-requests.ts:57](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L57) +[src/types/route-requests.ts:57](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L57) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/types/route-requests.ts:54](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L54) +[src/types/route-requests.ts:54](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L54) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/types/route-requests.ts:71](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L71) +[src/types/route-requests.ts:71](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L71) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[src/types/route-requests.ts:60](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L60) +[src/types/route-requests.ts:60](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L60) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[src/types/route-requests.ts:61](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L61) +[src/types/route-requests.ts:61](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L61) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[src/types/route-requests.ts:62](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L62) +[src/types/route-requests.ts:62](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L62) ___ @@ -144,7 +144,7 @@ ___ #### Defined in -[src/types/route-requests.ts:55](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L55) +[src/types/route-requests.ts:55](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L55) ___ @@ -154,7 +154,7 @@ ___ #### Defined in -[src/types/route-requests.ts:70](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L70) +[src/types/route-requests.ts:70](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L70) ___ @@ -168,4 +168,4 @@ ___ #### Defined in -[src/types/route-requests.ts:59](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L59) +[src/types/route-requests.ts:59](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L59) diff --git a/docs/interfaces/AccessCodeError.md b/docs/interfaces/AccessCodeError.md index 83a7f626..63c14182 100644 --- a/docs/interfaces/AccessCodeError.md +++ b/docs/interfaces/AccessCodeError.md @@ -28,7 +28,7 @@ #### Defined in -[src/types/models.ts:211](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L211) +[src/types/models.ts:211](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L211) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/types/models.ts:455](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L455) +[src/types/models.ts:455](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L455) ___ @@ -52,4 +52,4 @@ ___ #### Defined in -[src/types/models.ts:212](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L212) +[src/types/models.ts:212](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L212) diff --git a/docs/interfaces/AccessCodeGetResponse.md b/docs/interfaces/AccessCodeGetResponse.md index d23b7228..d13d68dd 100644 --- a/docs/interfaces/AccessCodeGetResponse.md +++ b/docs/interfaces/AccessCodeGetResponse.md @@ -22,4 +22,4 @@ #### Defined in -[src/types/route-responses.ts:85](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L85) +[src/types/route-responses.ts:85](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L85) diff --git a/docs/interfaces/AccessCodeUpdateBaseRequest.md b/docs/interfaces/AccessCodeUpdateBaseRequest.md index a1f6ce20..940dbd30 100644 --- a/docs/interfaces/AccessCodeUpdateBaseRequest.md +++ b/docs/interfaces/AccessCodeUpdateBaseRequest.md @@ -17,7 +17,7 @@ #### Defined in -[src/types/route-requests.ts:99](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L99) +[src/types/route-requests.ts:99](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L99) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/types/route-requests.ts:98](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L98) +[src/types/route-requests.ts:98](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L98) diff --git a/docs/interfaces/AccessCodeUpdateResponse.md b/docs/interfaces/AccessCodeUpdateResponse.md index 52f570a8..96b2bfff 100644 --- a/docs/interfaces/AccessCodeUpdateResponse.md +++ b/docs/interfaces/AccessCodeUpdateResponse.md @@ -26,4 +26,4 @@ #### Defined in -[src/types/route-responses.ts:139](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L139) +[src/types/route-responses.ts:139](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L139) diff --git a/docs/interfaces/AccessCodesListResponse.md b/docs/interfaces/AccessCodesListResponse.md index 19c362df..ec44c9af 100644 --- a/docs/interfaces/AccessCodesListResponse.md +++ b/docs/interfaces/AccessCodesListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:82](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L82) +[src/types/route-responses.ts:82](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L82) diff --git a/docs/interfaces/ActionAttemptCreateResponse.md b/docs/interfaces/ActionAttemptCreateResponse.md index ca32fa95..8d57c4ac 100644 --- a/docs/interfaces/ActionAttemptCreateResponse.md +++ b/docs/interfaces/ActionAttemptCreateResponse.md @@ -28,4 +28,4 @@ #### Defined in -[src/types/route-responses.ts:139](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L139) +[src/types/route-responses.ts:139](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L139) diff --git a/docs/interfaces/ActionAttemptGetResponse.md b/docs/interfaces/ActionAttemptGetResponse.md index 099eb723..491b582f 100644 --- a/docs/interfaces/ActionAttemptGetResponse.md +++ b/docs/interfaces/ActionAttemptGetResponse.md @@ -28,4 +28,4 @@ #### Defined in -[src/types/route-responses.ts:143](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L143) +[src/types/route-responses.ts:143](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L143) diff --git a/docs/interfaces/ActionAttemptResultTypeMap.md b/docs/interfaces/ActionAttemptResultTypeMap.md index ff65a1b1..2020af97 100644 --- a/docs/interfaces/ActionAttemptResultTypeMap.md +++ b/docs/interfaces/ActionAttemptResultTypeMap.md @@ -36,7 +36,7 @@ Record.CREATE\_ACCESS\_CODE #### Defined in -[src/types/models.ts:418](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L418) +[src/types/models.ts:418](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L418) ___ @@ -86,4 +86,4 @@ Record.UPDATE\_ACCESS\_CODE #### Defined in -[src/types/models.ts:419](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L419) +[src/types/models.ts:419](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L419) diff --git a/docs/interfaces/ActionAttemptWithError.md b/docs/interfaces/ActionAttemptWithError.md index b07a00bb..a24ee007 100644 --- a/docs/interfaces/ActionAttemptWithError.md +++ b/docs/interfaces/ActionAttemptWithError.md @@ -36,7 +36,7 @@ ActionAttemptBase.action\_attempt\_id #### Defined in -[src/types/models.ts:392](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L392) +[src/types/models.ts:392](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L392) ___ @@ -50,7 +50,7 @@ ActionAttemptBase.action\_type #### Defined in -[src/types/models.ts:393](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L393) +[src/types/models.ts:393](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L393) ___ @@ -71,7 +71,7 @@ ActionAttemptBase.error #### Defined in -[src/types/models.ts:410](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L410) +[src/types/models.ts:410](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L410) ___ @@ -85,7 +85,7 @@ ActionAttemptBase.result #### Defined in -[src/types/models.ts:409](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L409) +[src/types/models.ts:409](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L409) ___ @@ -99,4 +99,4 @@ ActionAttemptBase.status #### Defined in -[src/types/models.ts:408](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L408) +[src/types/models.ts:408](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L408) diff --git a/docs/interfaces/BaseThermostatDeviceProperties.md b/docs/interfaces/BaseThermostatDeviceProperties.md index 4e5a7fed..5bbddd45 100644 --- a/docs/interfaces/BaseThermostatDeviceProperties.md +++ b/docs/interfaces/BaseThermostatDeviceProperties.md @@ -43,7 +43,7 @@ #### Defined in -[src/types/models.ts:119](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L119) +[src/types/models.ts:119](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L119) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/types/models.ts:110](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L110) +[src/types/models.ts:110](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L110) ___ @@ -74,7 +74,7 @@ CommonDeviceProperties.battery #### Defined in -[src/types/models.ts:230](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L230) +[src/types/models.ts:230](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L230) ___ @@ -84,7 +84,7 @@ ___ #### Defined in -[src/types/models.ts:109](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L109) +[src/types/models.ts:109](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L109) ___ @@ -94,7 +94,7 @@ ___ #### Defined in -[src/types/models.ts:108](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L108) +[src/types/models.ts:108](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L108) ___ @@ -104,7 +104,7 @@ ___ #### Defined in -[src/types/models.ts:116](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L116) +[src/types/models.ts:116](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L116) ___ @@ -114,7 +114,7 @@ ___ #### Defined in -[src/types/models.ts:117](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L117) +[src/types/models.ts:117](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L117) ___ @@ -124,7 +124,7 @@ ___ #### Defined in -[src/types/models.ts:114](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L114) +[src/types/models.ts:114](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L114) ___ @@ -138,7 +138,7 @@ CommonDeviceProperties.image\_alt\_text #### Defined in -[src/types/models.ts:235](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L235) +[src/types/models.ts:235](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L235) ___ @@ -152,7 +152,7 @@ CommonDeviceProperties.image\_url #### Defined in -[src/types/models.ts:234](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L234) +[src/types/models.ts:234](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L234) ___ @@ -162,7 +162,7 @@ ___ #### Defined in -[src/types/models.ts:118](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L118) +[src/types/models.ts:118](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L118) ___ @@ -172,7 +172,7 @@ ___ #### Defined in -[src/types/models.ts:112](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L112) +[src/types/models.ts:112](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L112) ___ @@ -182,7 +182,7 @@ ___ #### Defined in -[src/types/models.ts:113](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L113) +[src/types/models.ts:113](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L113) ___ @@ -192,7 +192,7 @@ ___ #### Defined in -[src/types/models.ts:111](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L111) +[src/types/models.ts:111](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L111) ___ @@ -202,7 +202,7 @@ ___ #### Defined in -[src/types/models.ts:115](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L115) +[src/types/models.ts:115](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L115) ___ @@ -216,7 +216,7 @@ CommonDeviceProperties.manufacturer #### Defined in -[src/types/models.ts:224](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L224) +[src/types/models.ts:224](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L224) ___ @@ -237,7 +237,7 @@ CommonDeviceProperties.model #### Defined in -[src/types/models.ts:225](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L225) +[src/types/models.ts:225](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L225) ___ @@ -251,7 +251,7 @@ CommonDeviceProperties.name #### Defined in -[src/types/models.ts:223](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L223) +[src/types/models.ts:223](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L223) ___ @@ -265,7 +265,7 @@ CommonDeviceProperties.online #### Defined in -[src/types/models.ts:229](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L229) +[src/types/models.ts:229](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L229) ___ @@ -275,7 +275,7 @@ ___ #### Defined in -[src/types/models.ts:107](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L107) +[src/types/models.ts:107](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L107) ___ @@ -285,7 +285,7 @@ ___ #### Defined in -[src/types/models.ts:106](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L106) +[src/types/models.ts:106](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L106) ___ @@ -295,4 +295,4 @@ ___ #### Defined in -[src/types/models.ts:105](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L105) +[src/types/models.ts:105](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L105) diff --git a/docs/interfaces/ClientSession.md b/docs/interfaces/ClientSession.md index da983a20..afc9e500 100644 --- a/docs/interfaces/ClientSession.md +++ b/docs/interfaces/ClientSession.md @@ -22,7 +22,7 @@ #### Defined in -[src/types/models.ts:558](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L558) +[src/types/models.ts:558](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L558) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/types/models.ts:557](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L557) +[src/types/models.ts:557](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L557) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/types/models.ts:556](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L556) +[src/types/models.ts:556](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L556) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/types/models.ts:561](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L561) +[src/types/models.ts:561](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L561) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[src/types/models.ts:555](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L555) +[src/types/models.ts:555](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L555) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/types/models.ts:559](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L559) +[src/types/models.ts:559](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L559) ___ @@ -82,4 +82,4 @@ ___ #### Defined in -[src/types/models.ts:560](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L560) +[src/types/models.ts:560](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L560) diff --git a/docs/interfaces/ClimateSettingScheduleCreateResponse.md b/docs/interfaces/ClimateSettingScheduleCreateResponse.md index a7406df3..d88d2763 100644 --- a/docs/interfaces/ClimateSettingScheduleCreateResponse.md +++ b/docs/interfaces/ClimateSettingScheduleCreateResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:204](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L204) +[src/types/route-responses.ts:204](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L204) diff --git a/docs/interfaces/ClimateSettingScheduleGetResponse.md b/docs/interfaces/ClimateSettingScheduleGetResponse.md index 9f11a1a3..76dd5e35 100644 --- a/docs/interfaces/ClimateSettingScheduleGetResponse.md +++ b/docs/interfaces/ClimateSettingScheduleGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:200](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L200) +[src/types/route-responses.ts:200](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L200) diff --git a/docs/interfaces/ClimateSettingScheduleUpdateResponse.md b/docs/interfaces/ClimateSettingScheduleUpdateResponse.md index 00720b8c..1da40e54 100644 --- a/docs/interfaces/ClimateSettingScheduleUpdateResponse.md +++ b/docs/interfaces/ClimateSettingScheduleUpdateResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:208](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L208) +[src/types/route-responses.ts:208](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L208) diff --git a/docs/interfaces/ClimateSettingSchedulesListResponse.md b/docs/interfaces/ClimateSettingSchedulesListResponse.md index 15334519..960c0569 100644 --- a/docs/interfaces/ClimateSettingSchedulesListResponse.md +++ b/docs/interfaces/ClimateSettingSchedulesListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:196](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L196) +[src/types/route-responses.ts:196](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L196) diff --git a/docs/interfaces/ConnectWebview.md b/docs/interfaces/ConnectWebview.md index 8e82b671..91f4be48 100644 --- a/docs/interfaces/ConnectWebview.md +++ b/docs/interfaces/ConnectWebview.md @@ -32,7 +32,7 @@ #### Defined in -[src/types/models.ts:440](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L440) +[src/types/models.ts:440](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L440) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/types/models.ts:438](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L438) +[src/types/models.ts:438](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L438) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/types/models.ts:442](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L442) +[src/types/models.ts:442](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L442) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[src/types/models.ts:441](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L441) +[src/types/models.ts:441](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L441) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/types/models.ts:450](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L450) +[src/types/models.ts:450](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L450) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[src/types/models.ts:435](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L435) +[src/types/models.ts:435](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L435) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[src/types/models.ts:446](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L446) +[src/types/models.ts:446](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L446) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[src/types/models.ts:443](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L443) +[src/types/models.ts:443](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L443) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[src/types/models.ts:451](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L451) +[src/types/models.ts:451](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L451) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[src/types/models.ts:448](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L448) +[src/types/models.ts:448](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L448) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[src/types/models.ts:447](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L447) +[src/types/models.ts:447](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L447) ___ @@ -142,7 +142,7 @@ ___ #### Defined in -[src/types/models.ts:437](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L437) +[src/types/models.ts:437](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L437) ___ @@ -152,7 +152,7 @@ ___ #### Defined in -[src/types/models.ts:444](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L444) +[src/types/models.ts:444](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L444) ___ @@ -162,7 +162,7 @@ ___ #### Defined in -[src/types/models.ts:439](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L439) +[src/types/models.ts:439](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L439) ___ @@ -172,7 +172,7 @@ ___ #### Defined in -[src/types/models.ts:445](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L445) +[src/types/models.ts:445](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L445) ___ @@ -182,7 +182,7 @@ ___ #### Defined in -[src/types/models.ts:449](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L449) +[src/types/models.ts:449](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L449) ___ @@ -192,4 +192,4 @@ ___ #### Defined in -[src/types/models.ts:436](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L436) +[src/types/models.ts:436](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L436) diff --git a/docs/interfaces/ConnectWebviewCreateRequest.md b/docs/interfaces/ConnectWebviewCreateRequest.md index 56e05a34..4aa7cae8 100644 --- a/docs/interfaces/ConnectWebviewCreateRequest.md +++ b/docs/interfaces/ConnectWebviewCreateRequest.md @@ -23,7 +23,7 @@ #### Defined in -[src/types/route-requests.ts:12](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L12) +[src/types/route-requests.ts:12](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L12) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/types/route-requests.ts:18](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L18) +[src/types/route-requests.ts:18](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L18) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/types/route-requests.ts:17](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L17) +[src/types/route-requests.ts:17](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L17) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/types/route-requests.ts:16](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L16) +[src/types/route-requests.ts:16](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L16) ___ @@ -63,7 +63,7 @@ ___ #### Defined in -[src/types/route-requests.ts:15](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L15) +[src/types/route-requests.ts:15](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L15) ___ @@ -73,7 +73,7 @@ ___ #### Defined in -[src/types/route-requests.ts:14](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L14) +[src/types/route-requests.ts:14](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L14) ___ @@ -83,7 +83,7 @@ ___ #### Defined in -[src/types/route-requests.ts:13](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L13) +[src/types/route-requests.ts:13](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L13) ___ @@ -93,4 +93,4 @@ ___ #### Defined in -[src/types/route-requests.ts:19](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L19) +[src/types/route-requests.ts:19](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L19) diff --git a/docs/interfaces/ConnectWebviewCreateResponse.md b/docs/interfaces/ConnectWebviewCreateResponse.md index 653fb01e..24a8fc89 100644 --- a/docs/interfaces/ConnectWebviewCreateResponse.md +++ b/docs/interfaces/ConnectWebviewCreateResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:74](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L74) +[src/types/route-responses.ts:74](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L74) diff --git a/docs/interfaces/ConnectWebviewDeleteRequest.md b/docs/interfaces/ConnectWebviewDeleteRequest.md index 63b0e9e9..f88010b0 100644 --- a/docs/interfaces/ConnectWebviewDeleteRequest.md +++ b/docs/interfaces/ConnectWebviewDeleteRequest.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-requests.ts:23](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L23) +[src/types/route-requests.ts:23](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L23) diff --git a/docs/interfaces/ConnectWebviewGetResponse.md b/docs/interfaces/ConnectWebviewGetResponse.md index 9b64ba15..f1f41c17 100644 --- a/docs/interfaces/ConnectWebviewGetResponse.md +++ b/docs/interfaces/ConnectWebviewGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:71](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L71) +[src/types/route-responses.ts:71](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L71) diff --git a/docs/interfaces/ConnectWebviewsListResponse.md b/docs/interfaces/ConnectWebviewsListResponse.md index 616a9ada..c498b82e 100644 --- a/docs/interfaces/ConnectWebviewsListResponse.md +++ b/docs/interfaces/ConnectWebviewsListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:68](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L68) +[src/types/route-responses.ts:68](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L68) diff --git a/docs/interfaces/ConnectedAccount.md b/docs/interfaces/ConnectedAccount.md index 7f283a2d..dee59eee 100644 --- a/docs/interfaces/ConnectedAccount.md +++ b/docs/interfaces/ConnectedAccount.md @@ -22,7 +22,7 @@ #### Defined in -[src/types/models.ts:529](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L529) +[src/types/models.ts:529](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L529) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/types/models.ts:526](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L526) +[src/types/models.ts:526](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L526) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/types/models.ts:527](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L527) +[src/types/models.ts:527](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L527) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/types/models.ts:532](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L532) +[src/types/models.ts:532](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L532) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[src/types/models.ts:530](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L530) +[src/types/models.ts:530](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L530) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/types/models.ts:528](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L528) +[src/types/models.ts:528](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L528) ___ @@ -82,4 +82,4 @@ ___ #### Defined in -[src/types/models.ts:531](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L531) +[src/types/models.ts:531](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L531) diff --git a/docs/interfaces/ConnectedAccountError.md b/docs/interfaces/ConnectedAccountError.md index ba30714a..1d3a7000 100644 --- a/docs/interfaces/ConnectedAccountError.md +++ b/docs/interfaces/ConnectedAccountError.md @@ -28,7 +28,7 @@ #### Defined in -[src/types/models.ts:211](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L211) +[src/types/models.ts:211](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L211) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/types/models.ts:522](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L522) +[src/types/models.ts:522](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L522) ___ @@ -52,4 +52,4 @@ ___ #### Defined in -[src/types/models.ts:212](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L212) +[src/types/models.ts:212](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L212) diff --git a/docs/interfaces/ConnectedAccountsDeleteRequest.md b/docs/interfaces/ConnectedAccountsDeleteRequest.md index f6d2a873..5a2d4442 100644 --- a/docs/interfaces/ConnectedAccountsDeleteRequest.md +++ b/docs/interfaces/ConnectedAccountsDeleteRequest.md @@ -27,7 +27,7 @@ ConnectedAccountBaseRequest.connected\_account\_id #### Defined in -[src/types/route-requests.ts:27](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L27) +[src/types/route-requests.ts:27](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L27) ___ @@ -41,4 +41,4 @@ ConnectedAccountBaseRequest.email #### Defined in -[src/types/route-requests.ts:28](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L28) +[src/types/route-requests.ts:28](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L28) diff --git a/docs/interfaces/ConnectedAccountsGetRequest.md b/docs/interfaces/ConnectedAccountsGetRequest.md index c1592458..8bbc21e0 100644 --- a/docs/interfaces/ConnectedAccountsGetRequest.md +++ b/docs/interfaces/ConnectedAccountsGetRequest.md @@ -27,7 +27,7 @@ ConnectedAccountBaseRequest.connected\_account\_id #### Defined in -[src/types/route-requests.ts:27](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L27) +[src/types/route-requests.ts:27](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L27) ___ @@ -41,4 +41,4 @@ ConnectedAccountBaseRequest.email #### Defined in -[src/types/route-requests.ts:28](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L28) +[src/types/route-requests.ts:28](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L28) diff --git a/docs/interfaces/ConnectedAccountsGetResponse.md b/docs/interfaces/ConnectedAccountsGetResponse.md index 9f38b2cd..1a537616 100644 --- a/docs/interfaces/ConnectedAccountsGetResponse.md +++ b/docs/interfaces/ConnectedAccountsGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:122](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L122) +[src/types/route-responses.ts:122](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L122) diff --git a/docs/interfaces/ConnectedAccountsListResponse.md b/docs/interfaces/ConnectedAccountsListResponse.md index de101406..09bed05a 100644 --- a/docs/interfaces/ConnectedAccountsListResponse.md +++ b/docs/interfaces/ConnectedAccountsListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:119](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L119) +[src/types/route-responses.ts:119](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L119) diff --git a/docs/interfaces/Device.md b/docs/interfaces/Device.md index 1594f2a2..7db03c06 100644 --- a/docs/interfaces/Device.md +++ b/docs/interfaces/Device.md @@ -33,7 +33,7 @@ #### Defined in -[src/types/models.ts:257](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L257) +[src/types/models.ts:257](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L257) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/types/models.ts:256](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L256) +[src/types/models.ts:256](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L256) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/types/models.ts:260](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L260) +[src/types/models.ts:260](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L260) ___ @@ -63,7 +63,7 @@ ___ #### Defined in -[src/types/models.ts:251](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L251) +[src/types/models.ts:251](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L251) ___ @@ -73,7 +73,7 @@ ___ #### Defined in -[src/types/models.ts:255](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L255) +[src/types/models.ts:255](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L255) ___ @@ -83,7 +83,7 @@ ___ #### Defined in -[src/types/models.ts:258](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L258) +[src/types/models.ts:258](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L258) ___ @@ -93,7 +93,7 @@ ___ #### Defined in -[src/types/models.ts:261](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L261) +[src/types/models.ts:261](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L261) ___ @@ -103,7 +103,7 @@ ___ #### Defined in -[src/types/models.ts:254](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L254) +[src/types/models.ts:254](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L254) ___ @@ -113,7 +113,7 @@ ___ #### Defined in -[src/types/models.ts:253](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L253) +[src/types/models.ts:253](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L253) ___ @@ -123,7 +123,7 @@ ___ #### Defined in -[src/types/models.ts:259](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L259) +[src/types/models.ts:259](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L259) ___ @@ -133,4 +133,4 @@ ___ #### Defined in -[src/types/models.ts:252](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L252) +[src/types/models.ts:252](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L252) diff --git a/docs/interfaces/DeviceError.md b/docs/interfaces/DeviceError.md index 992cda77..f9904bab 100644 --- a/docs/interfaces/DeviceError.md +++ b/docs/interfaces/DeviceError.md @@ -28,7 +28,7 @@ #### Defined in -[src/types/models.ts:211](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L211) +[src/types/models.ts:211](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L211) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/types/models.ts:244](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L244) +[src/types/models.ts:244](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L244) ___ @@ -52,4 +52,4 @@ ___ #### Defined in -[src/types/models.ts:212](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L212) +[src/types/models.ts:212](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L212) diff --git a/docs/interfaces/DeviceGetResponse.md b/docs/interfaces/DeviceGetResponse.md index 44cbfdd1..e6825a57 100644 --- a/docs/interfaces/DeviceGetResponse.md +++ b/docs/interfaces/DeviceGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:50](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L50) +[src/types/route-responses.ts:50](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L50) diff --git a/docs/interfaces/DeviceModel.md b/docs/interfaces/DeviceModel.md index 0effbedb..aac00b44 100644 --- a/docs/interfaces/DeviceModel.md +++ b/docs/interfaces/DeviceModel.md @@ -23,7 +23,7 @@ #### Defined in -[src/types/models.ts:583](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L583) +[src/types/models.ts:583](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L583) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/types/models.ts:581](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L581) +[src/types/models.ts:581](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L581) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/types/models.ts:584](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L584) +[src/types/models.ts:584](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L584) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/types/models.ts:578](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L578) +[src/types/models.ts:578](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L578) ___ @@ -63,7 +63,7 @@ ___ #### Defined in -[src/types/models.ts:580](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L580) +[src/types/models.ts:580](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L580) ___ @@ -73,7 +73,7 @@ ___ #### Defined in -[src/types/models.ts:579](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L579) +[src/types/models.ts:579](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L579) ___ @@ -83,7 +83,7 @@ ___ #### Defined in -[src/types/models.ts:585](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L585) +[src/types/models.ts:585](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L585) ___ @@ -93,4 +93,4 @@ ___ #### Defined in -[src/types/models.ts:582](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L582) +[src/types/models.ts:582](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L582) diff --git a/docs/interfaces/DeviceProvider.md b/docs/interfaces/DeviceProvider.md index 379ba34f..08e36b7d 100644 --- a/docs/interfaces/DeviceProvider.md +++ b/docs/interfaces/DeviceProvider.md @@ -19,7 +19,7 @@ #### Defined in -[src/types/models.ts:285](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L285) +[src/types/models.ts:285](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L285) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/types/models.ts:286](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L286) +[src/types/models.ts:286](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L286) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/types/models.ts:287](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L287) +[src/types/models.ts:287](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L287) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/types/models.ts:288](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L288) +[src/types/models.ts:288](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L288) diff --git a/docs/interfaces/DeviceProvidersListRequest.md b/docs/interfaces/DeviceProvidersListRequest.md index e1f23268..2834c235 100644 --- a/docs/interfaces/DeviceProvidersListRequest.md +++ b/docs/interfaces/DeviceProvidersListRequest.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-requests.ts:50](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L50) +[src/types/route-requests.ts:50](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L50) diff --git a/docs/interfaces/DeviceProvidersListResponse.md b/docs/interfaces/DeviceProvidersListResponse.md index 73852cb3..4e669517 100644 --- a/docs/interfaces/DeviceProvidersListResponse.md +++ b/docs/interfaces/DeviceProvidersListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:63](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L63) +[src/types/route-responses.ts:63](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L63) diff --git a/docs/interfaces/DevicesListRequest.md b/docs/interfaces/DevicesListRequest.md index d881c98b..699e958f 100644 --- a/docs/interfaces/DevicesListRequest.md +++ b/docs/interfaces/DevicesListRequest.md @@ -24,7 +24,7 @@ #### Defined in -[src/types/route-requests.ts:40](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L40) +[src/types/route-requests.ts:40](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L40) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/types/route-requests.ts:38](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L38) +[src/types/route-requests.ts:38](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L38) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/types/route-requests.ts:39](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L39) +[src/types/route-requests.ts:39](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L39) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/types/route-requests.ts:46](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L46) +[src/types/route-requests.ts:46](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L46) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/types/route-requests.ts:44](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L44) +[src/types/route-requests.ts:44](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L44) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/types/route-requests.ts:41](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L41) +[src/types/route-requests.ts:41](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L41) ___ @@ -84,7 +84,7 @@ ___ #### Defined in -[src/types/route-requests.ts:42](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L42) +[src/types/route-requests.ts:42](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L42) ___ @@ -94,7 +94,7 @@ ___ #### Defined in -[src/types/route-requests.ts:45](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L45) +[src/types/route-requests.ts:45](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L45) ___ @@ -104,4 +104,4 @@ ___ #### Defined in -[src/types/route-requests.ts:43](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L43) +[src/types/route-requests.ts:43](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L43) diff --git a/docs/interfaces/DevicesListResponse.md b/docs/interfaces/DevicesListResponse.md index 64102333..6d6d284e 100644 --- a/docs/interfaces/DevicesListResponse.md +++ b/docs/interfaces/DevicesListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:47](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L47) +[src/types/route-responses.ts:47](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L47) diff --git a/docs/interfaces/ErroredAPIResponse.md b/docs/interfaces/ErroredAPIResponse.md index 8340633f..b47461d6 100644 --- a/docs/interfaces/ErroredAPIResponse.md +++ b/docs/interfaces/ErroredAPIResponse.md @@ -17,7 +17,7 @@ #### Defined in -[src/types/globals.ts:13](https://github.com/seamapi/javascript/blob/main/src/types/globals.ts#L13) +[src/types/globals.ts:13](https://github.com/seamapi/javascript-legacy/blob/main/src/types/globals.ts#L13) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/types/globals.ts:12](https://github.com/seamapi/javascript/blob/main/src/types/globals.ts#L12) +[src/types/globals.ts:12](https://github.com/seamapi/javascript-legacy/blob/main/src/types/globals.ts#L12) diff --git a/docs/interfaces/EventGetRequest.md b/docs/interfaces/EventGetRequest.md index 5d46fadd..6c011252 100644 --- a/docs/interfaces/EventGetRequest.md +++ b/docs/interfaces/EventGetRequest.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-requests.ts:207](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L207) +[src/types/route-requests.ts:207](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L207) diff --git a/docs/interfaces/EventGetResponse.md b/docs/interfaces/EventGetResponse.md index ae579195..4b2942b3 100644 --- a/docs/interfaces/EventGetResponse.md +++ b/docs/interfaces/EventGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:152](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L152) +[src/types/route-responses.ts:152](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L152) diff --git a/docs/interfaces/EventsListRequest.md b/docs/interfaces/EventsListRequest.md index 47dd7897..f72abaae 100644 --- a/docs/interfaces/EventsListRequest.md +++ b/docs/interfaces/EventsListRequest.md @@ -21,7 +21,7 @@ #### Defined in -[src/types/route-requests.ts:216](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L216) +[src/types/route-requests.ts:216](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L216) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/types/route-requests.ts:213](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L213) +[src/types/route-requests.ts:213](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L213) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/types/route-requests.ts:212](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L212) +[src/types/route-requests.ts:212](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L212) ___ @@ -51,7 +51,7 @@ ___ #### Defined in -[src/types/route-requests.ts:215](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L215) +[src/types/route-requests.ts:215](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L215) ___ @@ -61,7 +61,7 @@ ___ #### Defined in -[src/types/route-requests.ts:214](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L214) +[src/types/route-requests.ts:214](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L214) ___ @@ -71,4 +71,4 @@ ___ #### Defined in -[src/types/route-requests.ts:211](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L211) +[src/types/route-requests.ts:211](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L211) diff --git a/docs/interfaces/EventsListResponse.md b/docs/interfaces/EventsListResponse.md index ca63c19d..61b6e16b 100644 --- a/docs/interfaces/EventsListResponse.md +++ b/docs/interfaces/EventsListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:148](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L148) +[src/types/route-responses.ts:148](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L148) diff --git a/docs/interfaces/ExtendedAxiosRequestConfig.md b/docs/interfaces/ExtendedAxiosRequestConfig.md index f0161421..47815dc7 100644 --- a/docs/interfaces/ExtendedAxiosRequestConfig.md +++ b/docs/interfaces/ExtendedAxiosRequestConfig.md @@ -135,7 +135,7 @@ ___ #### Defined in -[src/seam-os/client.ts:46](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L46) +[src/seam-os/client.ts:46](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L46) ___ @@ -257,7 +257,7 @@ ___ #### Defined in -[src/seam-os/client.ts:44](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L44) +[src/seam-os/client.ts:44](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L44) ___ @@ -271,7 +271,7 @@ Omit.params #### Defined in -[src/seam-os/client.ts:45](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L45) +[src/seam-os/client.ts:45](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L45) ___ @@ -421,7 +421,7 @@ ___ #### Defined in -[src/seam-os/client.ts:43](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L43) +[src/seam-os/client.ts:43](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L43) ___ diff --git a/docs/interfaces/LockGetResponse.md b/docs/interfaces/LockGetResponse.md index 9c1938d1..20dd6385 100644 --- a/docs/interfaces/LockGetResponse.md +++ b/docs/interfaces/LockGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:42](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L42) +[src/types/route-responses.ts:42](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L42) diff --git a/docs/interfaces/LockProperties.md b/docs/interfaces/LockProperties.md index ee86f706..c77a82c1 100644 --- a/docs/interfaces/LockProperties.md +++ b/docs/interfaces/LockProperties.md @@ -54,7 +54,7 @@ #### Defined in -[src/types/models.ts:330](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L330) +[src/types/models.ts:330](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L330) ___ @@ -75,7 +75,7 @@ CommonDeviceProperties.battery #### Defined in -[src/types/models.ts:230](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L230) +[src/types/models.ts:230](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L230) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/types/models.ts:312](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L312) +[src/types/models.ts:312](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L312) ___ @@ -95,7 +95,7 @@ ___ #### Defined in -[src/types/models.ts:319](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L319) +[src/types/models.ts:319](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L319) ___ @@ -105,7 +105,7 @@ ___ #### Defined in -[src/types/models.ts:311](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L311) +[src/types/models.ts:311](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L311) ___ @@ -115,7 +115,7 @@ ___ #### Defined in -[src/types/models.ts:316](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L316) +[src/types/models.ts:316](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L316) ___ @@ -129,7 +129,7 @@ CommonDeviceProperties.image\_alt\_text #### Defined in -[src/types/models.ts:235](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L235) +[src/types/models.ts:235](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L235) ___ @@ -143,7 +143,7 @@ CommonDeviceProperties.image\_url #### Defined in -[src/types/models.ts:234](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L234) +[src/types/models.ts:234](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L234) ___ @@ -159,7 +159,7 @@ ___ #### Defined in -[src/types/models.ts:313](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L313) +[src/types/models.ts:313](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L313) ___ @@ -169,7 +169,7 @@ ___ #### Defined in -[src/types/models.ts:310](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L310) +[src/types/models.ts:310](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L310) ___ @@ -183,7 +183,7 @@ CommonDeviceProperties.manufacturer #### Defined in -[src/types/models.ts:224](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L224) +[src/types/models.ts:224](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L224) ___ @@ -193,7 +193,7 @@ ___ #### Defined in -[src/types/models.ts:318](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L318) +[src/types/models.ts:318](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L318) ___ @@ -214,7 +214,7 @@ CommonDeviceProperties.model #### Defined in -[src/types/models.ts:225](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L225) +[src/types/models.ts:225](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L225) ___ @@ -228,7 +228,7 @@ CommonDeviceProperties.name #### Defined in -[src/types/models.ts:223](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L223) +[src/types/models.ts:223](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L223) ___ @@ -244,7 +244,7 @@ ___ #### Defined in -[src/types/models.ts:340](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L340) +[src/types/models.ts:340](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L340) ___ @@ -258,7 +258,7 @@ CommonDeviceProperties.online #### Defined in -[src/types/models.ts:229](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L229) +[src/types/models.ts:229](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L229) ___ @@ -278,7 +278,7 @@ ___ #### Defined in -[src/types/models.ts:322](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L322) +[src/types/models.ts:322](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L322) ___ @@ -288,7 +288,7 @@ ___ #### Defined in -[src/types/models.ts:320](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L320) +[src/types/models.ts:320](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L320) ___ @@ -298,7 +298,7 @@ ___ #### Defined in -[src/types/models.ts:344](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L344) +[src/types/models.ts:344](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L344) ___ @@ -308,7 +308,7 @@ ___ #### Defined in -[src/types/models.ts:317](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L317) +[src/types/models.ts:317](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L317) ___ @@ -325,4 +325,4 @@ ___ #### Defined in -[src/types/models.ts:346](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L346) +[src/types/models.ts:346](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L346) diff --git a/docs/interfaces/LocksListResponse.md b/docs/interfaces/LocksListResponse.md index 0acf24ab..c20dcb84 100644 --- a/docs/interfaces/LocksListResponse.md +++ b/docs/interfaces/LocksListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:38](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L38) +[src/types/route-responses.ts:38](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L38) diff --git a/docs/interfaces/ManagedAccessCodeBase.md b/docs/interfaces/ManagedAccessCodeBase.md index 5bf39fc3..6c2c1cc7 100644 --- a/docs/interfaces/ManagedAccessCodeBase.md +++ b/docs/interfaces/ManagedAccessCodeBase.md @@ -42,7 +42,7 @@ #### Defined in -[src/types/models.ts:459](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L459) +[src/types/models.ts:459](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L459) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/types/models.ts:468](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L468) +[src/types/models.ts:468](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L468) ___ @@ -80,7 +80,7 @@ ___ #### Defined in -[src/types/models.ts:462](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L462) +[src/types/models.ts:462](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L462) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[src/types/models.ts:476](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L476) +[src/types/models.ts:476](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L476) ___ @@ -104,7 +104,7 @@ ___ #### Defined in -[src/types/models.ts:460](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L460) +[src/types/models.ts:460](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L460) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[src/types/models.ts:466](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L466) +[src/types/models.ts:466](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L466) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[src/types/models.ts:463](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L463) +[src/types/models.ts:463](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L463) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[src/types/models.ts:465](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L465) +[src/types/models.ts:465](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L465) ___ @@ -156,7 +156,7 @@ ___ #### Defined in -[src/types/models.ts:475](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L475) +[src/types/models.ts:475](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L475) ___ @@ -166,7 +166,7 @@ ___ #### Defined in -[src/types/models.ts:477](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L477) +[src/types/models.ts:477](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L477) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[src/types/models.ts:461](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L461) +[src/types/models.ts:461](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L461) ___ @@ -194,7 +194,7 @@ ___ #### Defined in -[src/types/models.ts:464](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L464) +[src/types/models.ts:464](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L464) ___ @@ -208,4 +208,4 @@ ___ #### Defined in -[src/types/models.ts:467](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L467) +[src/types/models.ts:467](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L467) diff --git a/docs/interfaces/NoiseSensorDeviceProperties.md b/docs/interfaces/NoiseSensorDeviceProperties.md index eb1cb5c9..35c92c88 100644 --- a/docs/interfaces/NoiseSensorDeviceProperties.md +++ b/docs/interfaces/NoiseSensorDeviceProperties.md @@ -43,7 +43,7 @@ CommonDeviceProperties.battery #### Defined in -[src/types/models.ts:230](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L230) +[src/types/models.ts:230](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L230) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/types/models.ts:48](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L48) +[src/types/models.ts:48](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L48) ___ @@ -67,7 +67,7 @@ CommonDeviceProperties.image\_alt\_text #### Defined in -[src/types/models.ts:235](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L235) +[src/types/models.ts:235](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L235) ___ @@ -81,7 +81,7 @@ CommonDeviceProperties.image\_url #### Defined in -[src/types/models.ts:234](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L234) +[src/types/models.ts:234](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L234) ___ @@ -95,7 +95,7 @@ CommonDeviceProperties.manufacturer #### Defined in -[src/types/models.ts:224](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L224) +[src/types/models.ts:224](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L224) ___ @@ -128,7 +128,7 @@ ___ #### Defined in -[src/types/models.ts:56](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L56) +[src/types/models.ts:56](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L56) ___ @@ -149,7 +149,7 @@ CommonDeviceProperties.model #### Defined in -[src/types/models.ts:225](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L225) +[src/types/models.ts:225](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L225) ___ @@ -163,7 +163,7 @@ CommonDeviceProperties.name #### Defined in -[src/types/models.ts:223](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L223) +[src/types/models.ts:223](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L223) ___ @@ -173,7 +173,7 @@ ___ #### Defined in -[src/types/models.ts:47](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L47) +[src/types/models.ts:47](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L47) ___ @@ -193,7 +193,7 @@ ___ #### Defined in -[src/types/models.ts:49](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L49) +[src/types/models.ts:49](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L49) ___ @@ -207,4 +207,4 @@ CommonDeviceProperties.online #### Defined in -[src/types/models.ts:229](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L229) +[src/types/models.ts:229](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L229) diff --git a/docs/interfaces/OngoingAccessCode.md b/docs/interfaces/OngoingAccessCode.md index f1d2e799..3a6a5e36 100644 --- a/docs/interfaces/OngoingAccessCode.md +++ b/docs/interfaces/OngoingAccessCode.md @@ -41,7 +41,7 @@ #### Defined in -[src/types/models.ts:459](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L459) +[src/types/models.ts:459](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L459) ___ @@ -65,7 +65,7 @@ ___ #### Defined in -[src/types/models.ts:468](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L468) +[src/types/models.ts:468](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L468) ___ @@ -79,7 +79,7 @@ ___ #### Defined in -[src/types/models.ts:462](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L462) +[src/types/models.ts:462](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L462) ___ @@ -93,7 +93,7 @@ ___ #### Defined in -[src/types/models.ts:476](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L476) +[src/types/models.ts:476](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L476) ___ @@ -103,7 +103,7 @@ ___ #### Defined in -[src/types/models.ts:482](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L482) +[src/types/models.ts:482](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L482) ___ @@ -117,7 +117,7 @@ ___ #### Defined in -[src/types/models.ts:460](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L460) +[src/types/models.ts:460](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L460) ___ @@ -131,7 +131,7 @@ ___ #### Defined in -[src/types/models.ts:466](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L466) +[src/types/models.ts:466](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L466) ___ @@ -145,7 +145,7 @@ ___ #### Defined in -[src/types/models.ts:463](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L463) +[src/types/models.ts:463](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L463) ___ @@ -159,7 +159,7 @@ ___ #### Defined in -[src/types/models.ts:465](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L465) +[src/types/models.ts:465](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L465) ___ @@ -173,7 +173,7 @@ ___ #### Defined in -[src/types/models.ts:475](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L475) +[src/types/models.ts:475](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L475) ___ @@ -187,7 +187,7 @@ ___ #### Defined in -[src/types/models.ts:477](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L477) +[src/types/models.ts:477](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L477) ___ @@ -201,7 +201,7 @@ ___ #### Defined in -[src/types/models.ts:461](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L461) +[src/types/models.ts:461](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L461) ___ @@ -215,7 +215,7 @@ ___ #### Defined in -[src/types/models.ts:464](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L464) +[src/types/models.ts:464](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L464) ___ @@ -225,7 +225,7 @@ ___ #### Defined in -[src/types/models.ts:483](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L483) +[src/types/models.ts:483](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L483) ___ @@ -235,7 +235,7 @@ ___ #### Defined in -[src/types/models.ts:481](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L481) +[src/types/models.ts:481](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L481) ___ @@ -249,4 +249,4 @@ ___ #### Defined in -[src/types/models.ts:467](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L467) +[src/types/models.ts:467](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L467) diff --git a/docs/interfaces/PendingActionAttempt.md b/docs/interfaces/PendingActionAttempt.md index b195c312..a2905ec8 100644 --- a/docs/interfaces/PendingActionAttempt.md +++ b/docs/interfaces/PendingActionAttempt.md @@ -36,7 +36,7 @@ ActionAttemptBase.action\_attempt\_id #### Defined in -[src/types/models.ts:392](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L392) +[src/types/models.ts:392](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L392) ___ @@ -50,7 +50,7 @@ ActionAttemptBase.action\_type #### Defined in -[src/types/models.ts:393](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L393) +[src/types/models.ts:393](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L393) ___ @@ -64,7 +64,7 @@ ActionAttemptBase.error #### Defined in -[src/types/models.ts:403](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L403) +[src/types/models.ts:403](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L403) ___ @@ -78,7 +78,7 @@ ActionAttemptBase.result #### Defined in -[src/types/models.ts:402](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L402) +[src/types/models.ts:402](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L402) ___ @@ -92,4 +92,4 @@ ActionAttemptBase.status #### Defined in -[src/types/models.ts:401](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L401) +[src/types/models.ts:401](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L401) diff --git a/docs/interfaces/PullBackupAccessCodeResponse.md b/docs/interfaces/PullBackupAccessCodeResponse.md index edd6fcd7..2946bc01 100644 --- a/docs/interfaces/PullBackupAccessCodeResponse.md +++ b/docs/interfaces/PullBackupAccessCodeResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:106](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L106) +[src/types/route-responses.ts:106](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L106) diff --git a/docs/interfaces/SeamAPIErrorMetadata.md b/docs/interfaces/SeamAPIErrorMetadata.md index b60472c2..fc380d05 100644 --- a/docs/interfaces/SeamAPIErrorMetadata.md +++ b/docs/interfaces/SeamAPIErrorMetadata.md @@ -18,7 +18,7 @@ #### Defined in -[src/lib/api-error.ts:4](https://github.com/seamapi/javascript/blob/main/src/lib/api-error.ts#L4) +[src/lib/api-error.ts:4](https://github.com/seamapi/javascript-legacy/blob/main/src/lib/api-error.ts#L4) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/lib/api-error.ts:3](https://github.com/seamapi/javascript/blob/main/src/lib/api-error.ts#L3) +[src/lib/api-error.ts:3](https://github.com/seamapi/javascript-legacy/blob/main/src/lib/api-error.ts#L3) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/lib/api-error.ts:2](https://github.com/seamapi/javascript/blob/main/src/lib/api-error.ts#L2) +[src/lib/api-error.ts:2](https://github.com/seamapi/javascript-legacy/blob/main/src/lib/api-error.ts#L2) diff --git a/docs/interfaces/SeamClientOptions.md b/docs/interfaces/SeamClientOptions.md index f3ec86b6..231b2a45 100644 --- a/docs/interfaces/SeamClientOptions.md +++ b/docs/interfaces/SeamClientOptions.md @@ -20,7 +20,7 @@ #### Defined in -[src/seam-connect/client.ts:21](https://github.com/seamapi/javascript/blob/main/src/seam-connect/client.ts#L21) +[src/seam-connect/client.ts:21](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/client.ts#L21) ___ @@ -32,7 +32,7 @@ Extended options to pass to Axios #### Defined in -[src/seam-connect/client.ts:36](https://github.com/seamapi/javascript/blob/main/src/seam-connect/client.ts#L36) +[src/seam-connect/client.ts:36](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/client.ts#L36) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/seam-connect/client.ts:23](https://github.com/seamapi/javascript/blob/main/src/seam-connect/client.ts#L23) +[src/seam-connect/client.ts:23](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/client.ts#L23) ___ @@ -54,7 +54,7 @@ Seam Endpoint to use, defaults to https://connect.getseam.com #### Defined in -[src/seam-connect/client.ts:27](https://github.com/seamapi/javascript/blob/main/src/seam-connect/client.ts#L27) +[src/seam-connect/client.ts:27](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/client.ts#L27) ___ @@ -67,4 +67,4 @@ or undefined #### Defined in -[src/seam-connect/client.ts:32](https://github.com/seamapi/javascript/blob/main/src/seam-connect/client.ts#L32) +[src/seam-connect/client.ts:32](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/client.ts#L32) diff --git a/docs/interfaces/SeamError.md b/docs/interfaces/SeamError.md index b5f3372f..b55bdffe 100644 --- a/docs/interfaces/SeamError.md +++ b/docs/interfaces/SeamError.md @@ -27,7 +27,7 @@ #### Defined in -[src/types/models.ts:211](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L211) +[src/types/models.ts:211](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L211) ___ @@ -37,4 +37,4 @@ ___ #### Defined in -[src/types/models.ts:212](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L212) +[src/types/models.ts:212](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L212) diff --git a/docs/interfaces/SeamOSClientOptions.md b/docs/interfaces/SeamOSClientOptions.md index 95e2c658..3048103c 100644 --- a/docs/interfaces/SeamOSClientOptions.md +++ b/docs/interfaces/SeamOSClientOptions.md @@ -19,7 +19,7 @@ #### Defined in -[src/seam-os/client.ts:8](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L8) +[src/seam-os/client.ts:8](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L8) ___ @@ -31,7 +31,7 @@ Extended options to pass to Axios #### Defined in -[src/seam-os/client.ts:21](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L21) +[src/seam-os/client.ts:21](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L21) ___ @@ -43,7 +43,7 @@ Seam Endpoint to use, defaults to https://connect.getseam.com #### Defined in -[src/seam-os/client.ts:12](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L12) +[src/seam-os/client.ts:12](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L12) ___ @@ -56,4 +56,4 @@ or undefined #### Defined in -[src/seam-os/client.ts:17](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L17) +[src/seam-os/client.ts:17](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L17) diff --git a/docs/interfaces/SeamOSRouteTypes.Routes.md b/docs/interfaces/SeamOSRouteTypes.Routes.md index f92313e5..8725406e 100644 --- a/docs/interfaces/SeamOSRouteTypes.Routes.md +++ b/docs/interfaces/SeamOSRouteTypes.Routes.md @@ -114,7 +114,7 @@ #### Defined in -[src/seam-os/routes.ts:2](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L2) +[src/seam-os/routes.ts:2](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L2) ___ @@ -137,7 +137,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:39](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L39) +[src/seam-os/routes.ts:39](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L39) ___ @@ -161,7 +161,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:50](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L50) +[src/seam-os/routes.ts:50](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L50) ___ @@ -186,7 +186,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:83](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L83) +[src/seam-os/routes.ts:83](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L83) ___ @@ -210,7 +210,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:118](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L118) +[src/seam-os/routes.ts:118](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L118) ___ @@ -236,7 +236,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:130](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L130) +[src/seam-os/routes.ts:130](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L130) ___ @@ -260,7 +260,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:167](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L167) +[src/seam-os/routes.ts:167](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L167) ___ @@ -288,7 +288,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:179](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L179) +[src/seam-os/routes.ts:179](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L179) ___ @@ -331,7 +331,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:195](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L195) +[src/seam-os/routes.ts:195](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L195) ___ @@ -366,7 +366,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:234](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L234) +[src/seam-os/routes.ts:234](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L234) ___ @@ -389,7 +389,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:259](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L259) +[src/seam-os/routes.ts:259](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L259) ___ @@ -423,7 +423,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:270](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L270) +[src/seam-os/routes.ts:270](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L270) ___ @@ -451,7 +451,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:294](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L294) +[src/seam-os/routes.ts:294](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L294) ___ @@ -477,7 +477,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:312](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L312) +[src/seam-os/routes.ts:312](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L312) ___ @@ -501,7 +501,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:338](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L338) +[src/seam-os/routes.ts:338](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L338) ___ @@ -523,7 +523,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:357](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L357) +[src/seam-os/routes.ts:357](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L357) ___ @@ -547,7 +547,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:403](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L403) +[src/seam-os/routes.ts:403](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L403) ___ @@ -569,7 +569,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:415](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L415) +[src/seam-os/routes.ts:415](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L415) ___ @@ -613,7 +613,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:432](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L432) +[src/seam-os/routes.ts:432](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L432) ___ @@ -636,7 +636,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:467](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L467) +[src/seam-os/routes.ts:467](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L467) ___ @@ -677,7 +677,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:478](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L478) +[src/seam-os/routes.ts:478](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L478) ___ @@ -709,7 +709,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:510](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L510) +[src/seam-os/routes.ts:510](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L510) ___ @@ -733,7 +733,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:532](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L532) +[src/seam-os/routes.ts:532](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L532) ___ @@ -757,7 +757,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:564](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L564) +[src/seam-os/routes.ts:564](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L564) ___ @@ -781,7 +781,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:581](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L581) +[src/seam-os/routes.ts:581](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L581) ___ @@ -805,7 +805,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:593](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L593) +[src/seam-os/routes.ts:593](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L593) ___ @@ -832,7 +832,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:605](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L605) +[src/seam-os/routes.ts:605](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L605) ___ @@ -857,7 +857,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:620](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L620) +[src/seam-os/routes.ts:620](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L620) ___ @@ -887,7 +887,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:633](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L633) +[src/seam-os/routes.ts:633](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L633) ___ @@ -910,7 +910,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:653](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L653) +[src/seam-os/routes.ts:653](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L653) ___ @@ -939,7 +939,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:664](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L664) +[src/seam-os/routes.ts:664](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L664) ___ @@ -962,7 +962,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:683](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L683) +[src/seam-os/routes.ts:683](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L683) ___ @@ -987,7 +987,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:700](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L700) +[src/seam-os/routes.ts:700](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L700) ___ @@ -1010,7 +1010,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:713](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L713) +[src/seam-os/routes.ts:713](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L713) ___ @@ -1045,7 +1045,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:724](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L724) +[src/seam-os/routes.ts:724](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L724) ___ @@ -1070,7 +1070,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:751](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L751) +[src/seam-os/routes.ts:751](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L751) ___ @@ -1100,7 +1100,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:766](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L766) +[src/seam-os/routes.ts:766](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L766) ___ @@ -1127,7 +1127,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:797](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L797) +[src/seam-os/routes.ts:797](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L797) ___ @@ -1149,7 +1149,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:816](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L816) +[src/seam-os/routes.ts:816](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L816) ___ @@ -1181,7 +1181,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:837](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L837) +[src/seam-os/routes.ts:837](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L837) ___ @@ -1209,7 +1209,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:859](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L859) +[src/seam-os/routes.ts:859](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L859) ___ @@ -1231,7 +1231,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1008](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1008) +[src/seam-os/routes.ts:1008](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1008) ___ @@ -1263,7 +1263,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1017](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1017) +[src/seam-os/routes.ts:1017](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1017) ___ @@ -1286,7 +1286,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1051](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1051) +[src/seam-os/routes.ts:1051](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1051) ___ @@ -1320,7 +1320,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1062](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1062) +[src/seam-os/routes.ts:1062](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1062) ___ @@ -1344,7 +1344,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1092](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1092) +[src/seam-os/routes.ts:1092](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1092) ___ @@ -1369,7 +1369,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1108](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1108) +[src/seam-os/routes.ts:1108](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1108) ___ @@ -1393,7 +1393,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1139](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1139) +[src/seam-os/routes.ts:1139](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1139) ___ @@ -1417,7 +1417,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1151](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1151) +[src/seam-os/routes.ts:1151](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1151) ___ @@ -1450,7 +1450,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1163](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1163) +[src/seam-os/routes.ts:1163](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1163) ___ @@ -1473,7 +1473,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1186](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1186) +[src/seam-os/routes.ts:1186](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1186) ___ @@ -1504,7 +1504,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1197](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1197) +[src/seam-os/routes.ts:1197](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1197) ___ @@ -1528,7 +1528,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1218](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1218) +[src/seam-os/routes.ts:1218](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1218) ___ @@ -1557,7 +1557,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1239](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1239) +[src/seam-os/routes.ts:1239](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1239) ___ @@ -1585,7 +1585,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1258](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1258) +[src/seam-os/routes.ts:1258](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1258) ___ @@ -1619,7 +1619,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1276](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1276) +[src/seam-os/routes.ts:1276](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1276) ___ @@ -1641,7 +1641,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1300](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1300) +[src/seam-os/routes.ts:1300](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1300) ___ @@ -1665,7 +1665,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1319](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1319) +[src/seam-os/routes.ts:1319](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1319) ___ @@ -1688,7 +1688,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1337](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1337) +[src/seam-os/routes.ts:1337](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1337) ___ @@ -1711,7 +1711,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1348](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1348) +[src/seam-os/routes.ts:1348](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1348) ___ @@ -1734,7 +1734,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1367](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1367) +[src/seam-os/routes.ts:1367](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1367) ___ @@ -1758,7 +1758,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1378](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1378) +[src/seam-os/routes.ts:1378](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1378) ___ @@ -1781,7 +1781,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1390](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1390) +[src/seam-os/routes.ts:1390](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1390) ___ @@ -1805,7 +1805,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1401](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1401) +[src/seam-os/routes.ts:1401](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1401) ___ @@ -1830,7 +1830,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1413](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1413) +[src/seam-os/routes.ts:1413](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1413) ___ @@ -1854,7 +1854,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1428](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1428) +[src/seam-os/routes.ts:1428](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1428) ___ @@ -1882,7 +1882,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1440](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1440) +[src/seam-os/routes.ts:1440](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1440) ___ @@ -1905,7 +1905,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1458](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1458) +[src/seam-os/routes.ts:1458](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1458) ___ @@ -1933,7 +1933,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1469](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1469) +[src/seam-os/routes.ts:1469](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1469) ___ @@ -1956,7 +1956,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1487](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1487) +[src/seam-os/routes.ts:1487](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1487) ___ @@ -1980,7 +1980,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1503](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1503) +[src/seam-os/routes.ts:1503](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1503) ___ @@ -2004,7 +2004,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1515](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1515) +[src/seam-os/routes.ts:1515](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1515) ___ @@ -2027,7 +2027,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1527](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1527) +[src/seam-os/routes.ts:1527](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1527) ___ @@ -2057,7 +2057,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1538](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1538) +[src/seam-os/routes.ts:1538](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1538) ___ @@ -2081,7 +2081,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1558](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1558) +[src/seam-os/routes.ts:1558](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1558) ___ @@ -2107,7 +2107,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1576](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1576) +[src/seam-os/routes.ts:1576](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1576) ___ @@ -2130,7 +2130,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1598](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1598) +[src/seam-os/routes.ts:1598](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1598) ___ @@ -2154,7 +2154,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1613](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1613) +[src/seam-os/routes.ts:1613](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1613) ___ @@ -2179,4 +2179,4 @@ ___ #### Defined in -[src/seam-os/routes.ts:1630](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1630) +[src/seam-os/routes.ts:1630](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1630) diff --git a/docs/interfaces/SeamWarning.md b/docs/interfaces/SeamWarning.md index 8591707a..294462ff 100644 --- a/docs/interfaces/SeamWarning.md +++ b/docs/interfaces/SeamWarning.md @@ -17,7 +17,7 @@ #### Defined in -[src/types/models.ts:217](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L217) +[src/types/models.ts:217](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L217) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/types/models.ts:216](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L216) +[src/types/models.ts:216](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L216) diff --git a/docs/interfaces/SuccessfulActionAttempt.md b/docs/interfaces/SuccessfulActionAttempt.md index 3f15079a..2ab2f5d2 100644 --- a/docs/interfaces/SuccessfulActionAttempt.md +++ b/docs/interfaces/SuccessfulActionAttempt.md @@ -36,7 +36,7 @@ ActionAttemptBase.action\_attempt\_id #### Defined in -[src/types/models.ts:392](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L392) +[src/types/models.ts:392](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L392) ___ @@ -50,7 +50,7 @@ ActionAttemptBase.action\_type #### Defined in -[src/types/models.ts:393](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L393) +[src/types/models.ts:393](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L393) ___ @@ -64,7 +64,7 @@ ActionAttemptBase.error #### Defined in -[src/types/models.ts:425](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L425) +[src/types/models.ts:425](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L425) ___ @@ -78,7 +78,7 @@ ActionAttemptBase.result #### Defined in -[src/types/models.ts:426](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L426) +[src/types/models.ts:426](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L426) ___ @@ -92,4 +92,4 @@ ActionAttemptBase.status #### Defined in -[src/types/models.ts:424](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L424) +[src/types/models.ts:424](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L424) diff --git a/docs/interfaces/ThermostatGetResponse.md b/docs/interfaces/ThermostatGetResponse.md index 408a1900..7361ab38 100644 --- a/docs/interfaces/ThermostatGetResponse.md +++ b/docs/interfaces/ThermostatGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:191](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L191) +[src/types/route-responses.ts:191](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L191) diff --git a/docs/interfaces/ThermostatsListResponse.md b/docs/interfaces/ThermostatsListResponse.md index 8dd3da8f..d8090d4a 100644 --- a/docs/interfaces/ThermostatsListResponse.md +++ b/docs/interfaces/ThermostatsListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:188](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L188) +[src/types/route-responses.ts:188](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L188) diff --git a/docs/interfaces/TimeBoundAccessCode.md b/docs/interfaces/TimeBoundAccessCode.md index cfe4822f..720d4a5e 100644 --- a/docs/interfaces/TimeBoundAccessCode.md +++ b/docs/interfaces/TimeBoundAccessCode.md @@ -46,7 +46,7 @@ #### Defined in -[src/types/models.ts:459](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L459) +[src/types/models.ts:459](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L459) ___ @@ -70,7 +70,7 @@ ___ #### Defined in -[src/types/models.ts:468](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L468) +[src/types/models.ts:468](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L468) ___ @@ -84,7 +84,7 @@ ___ #### Defined in -[src/types/models.ts:462](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L462) +[src/types/models.ts:462](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L462) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/types/models.ts:476](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L476) +[src/types/models.ts:476](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L476) ___ @@ -108,7 +108,7 @@ ___ #### Defined in -[src/types/models.ts:488](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L488) +[src/types/models.ts:488](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L488) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[src/types/models.ts:460](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L460) +[src/types/models.ts:460](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L460) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[src/types/models.ts:491](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L491) +[src/types/models.ts:491](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L491) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[src/types/models.ts:466](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L466) +[src/types/models.ts:466](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L466) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[src/types/models.ts:463](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L463) +[src/types/models.ts:463](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L463) ___ @@ -174,7 +174,7 @@ ___ #### Defined in -[src/types/models.ts:465](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L465) +[src/types/models.ts:465](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L465) ___ @@ -188,7 +188,7 @@ ___ #### Defined in -[src/types/models.ts:475](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L475) +[src/types/models.ts:475](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L475) ___ @@ -198,7 +198,7 @@ ___ #### Defined in -[src/types/models.ts:492](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L492) +[src/types/models.ts:492](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L492) ___ @@ -208,7 +208,7 @@ ___ #### Defined in -[src/types/models.ts:493](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L493) +[src/types/models.ts:493](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L493) ___ @@ -218,7 +218,7 @@ ___ #### Defined in -[src/types/models.ts:494](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L494) +[src/types/models.ts:494](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L494) ___ @@ -232,7 +232,7 @@ ___ #### Defined in -[src/types/models.ts:477](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L477) +[src/types/models.ts:477](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L477) ___ @@ -246,7 +246,7 @@ ___ #### Defined in -[src/types/models.ts:461](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L461) +[src/types/models.ts:461](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L461) ___ @@ -260,7 +260,7 @@ ___ #### Defined in -[src/types/models.ts:464](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L464) +[src/types/models.ts:464](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L464) ___ @@ -270,7 +270,7 @@ ___ #### Defined in -[src/types/models.ts:490](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L490) +[src/types/models.ts:490](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L490) ___ @@ -280,7 +280,7 @@ ___ #### Defined in -[src/types/models.ts:489](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L489) +[src/types/models.ts:489](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L489) ___ @@ -290,7 +290,7 @@ ___ #### Defined in -[src/types/models.ts:487](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L487) +[src/types/models.ts:487](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L487) ___ @@ -304,4 +304,4 @@ ___ #### Defined in -[src/types/models.ts:467](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L467) +[src/types/models.ts:467](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L467) diff --git a/docs/interfaces/UnmanagedAccessCodeBase.md b/docs/interfaces/UnmanagedAccessCodeBase.md index a1d3411f..160d8589 100644 --- a/docs/interfaces/UnmanagedAccessCodeBase.md +++ b/docs/interfaces/UnmanagedAccessCodeBase.md @@ -41,7 +41,7 @@ #### Defined in -[src/types/models.ts:459](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L459) +[src/types/models.ts:459](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L459) ___ @@ -65,7 +65,7 @@ ___ #### Defined in -[src/types/models.ts:468](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L468) +[src/types/models.ts:468](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L468) ___ @@ -79,7 +79,7 @@ ___ #### Defined in -[src/types/models.ts:462](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L462) +[src/types/models.ts:462](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L462) ___ @@ -89,7 +89,7 @@ ___ #### Defined in -[src/types/models.ts:501](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L501) +[src/types/models.ts:501](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L501) ___ @@ -103,7 +103,7 @@ ___ #### Defined in -[src/types/models.ts:460](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L460) +[src/types/models.ts:460](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L460) ___ @@ -117,7 +117,7 @@ ___ #### Defined in -[src/types/models.ts:466](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L466) +[src/types/models.ts:466](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L466) ___ @@ -131,7 +131,7 @@ ___ #### Defined in -[src/types/models.ts:463](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L463) +[src/types/models.ts:463](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L463) ___ @@ -145,7 +145,7 @@ ___ #### Defined in -[src/types/models.ts:465](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L465) +[src/types/models.ts:465](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L465) ___ @@ -159,7 +159,7 @@ ___ #### Defined in -[src/types/models.ts:461](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L461) +[src/types/models.ts:461](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L461) ___ @@ -173,7 +173,7 @@ ___ #### Defined in -[src/types/models.ts:464](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L464) +[src/types/models.ts:464](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L464) ___ @@ -183,7 +183,7 @@ ___ #### Defined in -[src/types/models.ts:500](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L500) +[src/types/models.ts:500](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L500) ___ @@ -197,4 +197,4 @@ ___ #### Defined in -[src/types/models.ts:467](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L467) +[src/types/models.ts:467](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L467) diff --git a/docs/interfaces/UnmanagedAccessCodesGetResponse.md b/docs/interfaces/UnmanagedAccessCodesGetResponse.md index 044a630d..b70dc59f 100644 --- a/docs/interfaces/UnmanagedAccessCodesGetResponse.md +++ b/docs/interfaces/UnmanagedAccessCodesGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:114](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L114) +[src/types/route-responses.ts:114](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L114) diff --git a/docs/interfaces/UnmanagedAccessCodesListResponse.md b/docs/interfaces/UnmanagedAccessCodesListResponse.md index cfd1e370..5f557f86 100644 --- a/docs/interfaces/UnmanagedAccessCodesListResponse.md +++ b/docs/interfaces/UnmanagedAccessCodesListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:111](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L111) +[src/types/route-responses.ts:111](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L111) diff --git a/docs/interfaces/UnmanagedDeviceGetResponse.md b/docs/interfaces/UnmanagedDeviceGetResponse.md index 0f7b9e76..0d29b7c9 100644 --- a/docs/interfaces/UnmanagedDeviceGetResponse.md +++ b/docs/interfaces/UnmanagedDeviceGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:55](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L55) +[src/types/route-responses.ts:55](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L55) diff --git a/docs/interfaces/UnmanagedDeviceListResponse.md b/docs/interfaces/UnmanagedDeviceListResponse.md index 0452e15a..1bae4bf9 100644 --- a/docs/interfaces/UnmanagedDeviceListResponse.md +++ b/docs/interfaces/UnmanagedDeviceListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:58](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L58) +[src/types/route-responses.ts:58](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L58) diff --git a/docs/interfaces/UnmanagedOngoingAccessCode.md b/docs/interfaces/UnmanagedOngoingAccessCode.md index 01eea73a..1ffbbcaa 100644 --- a/docs/interfaces/UnmanagedOngoingAccessCode.md +++ b/docs/interfaces/UnmanagedOngoingAccessCode.md @@ -38,7 +38,7 @@ #### Defined in -[src/types/models.ts:459](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L459) +[src/types/models.ts:459](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L459) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[src/types/models.ts:468](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L468) +[src/types/models.ts:468](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L468) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/types/models.ts:462](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L462) +[src/types/models.ts:462](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L462) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[src/types/models.ts:501](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L501) +[src/types/models.ts:501](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L501) ___ @@ -104,7 +104,7 @@ ___ #### Defined in -[src/types/models.ts:460](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L460) +[src/types/models.ts:460](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L460) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[src/types/models.ts:466](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L466) +[src/types/models.ts:466](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L466) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[src/types/models.ts:463](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L463) +[src/types/models.ts:463](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L463) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[src/types/models.ts:465](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L465) +[src/types/models.ts:465](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L465) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[src/types/models.ts:461](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L461) +[src/types/models.ts:461](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L461) ___ @@ -174,7 +174,7 @@ ___ #### Defined in -[src/types/models.ts:464](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L464) +[src/types/models.ts:464](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L464) ___ @@ -188,7 +188,7 @@ ___ #### Defined in -[src/types/models.ts:500](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L500) +[src/types/models.ts:500](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L500) ___ @@ -198,7 +198,7 @@ ___ #### Defined in -[src/types/models.ts:505](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L505) +[src/types/models.ts:505](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L505) ___ @@ -212,4 +212,4 @@ ___ #### Defined in -[src/types/models.ts:467](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L467) +[src/types/models.ts:467](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L467) diff --git a/docs/interfaces/UnmanagedTimeBoundAccessCode.md b/docs/interfaces/UnmanagedTimeBoundAccessCode.md index 11c4436f..4cff0e76 100644 --- a/docs/interfaces/UnmanagedTimeBoundAccessCode.md +++ b/docs/interfaces/UnmanagedTimeBoundAccessCode.md @@ -40,7 +40,7 @@ #### Defined in -[src/types/models.ts:459](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L459) +[src/types/models.ts:459](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L459) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/types/models.ts:468](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L468) +[src/types/models.ts:468](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L468) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/types/models.ts:462](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L462) +[src/types/models.ts:462](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L462) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[src/types/models.ts:501](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L501) +[src/types/models.ts:501](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L501) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[src/types/models.ts:460](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L460) +[src/types/models.ts:460](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L460) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[src/types/models.ts:510](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L510) +[src/types/models.ts:510](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L510) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[src/types/models.ts:466](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L466) +[src/types/models.ts:466](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L466) ___ @@ -144,7 +144,7 @@ ___ #### Defined in -[src/types/models.ts:463](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L463) +[src/types/models.ts:463](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L463) ___ @@ -158,7 +158,7 @@ ___ #### Defined in -[src/types/models.ts:465](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L465) +[src/types/models.ts:465](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L465) ___ @@ -172,7 +172,7 @@ ___ #### Defined in -[src/types/models.ts:461](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L461) +[src/types/models.ts:461](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L461) ___ @@ -186,7 +186,7 @@ ___ #### Defined in -[src/types/models.ts:464](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L464) +[src/types/models.ts:464](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L464) ___ @@ -196,7 +196,7 @@ ___ #### Defined in -[src/types/models.ts:509](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L509) +[src/types/models.ts:509](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L509) ___ @@ -210,7 +210,7 @@ ___ #### Defined in -[src/types/models.ts:500](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L500) +[src/types/models.ts:500](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L500) ___ @@ -220,7 +220,7 @@ ___ #### Defined in -[src/types/models.ts:508](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L508) +[src/types/models.ts:508](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L508) ___ @@ -234,4 +234,4 @@ ___ #### Defined in -[src/types/models.ts:467](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L467) +[src/types/models.ts:467](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L467) diff --git a/docs/interfaces/UserIdentifier.md b/docs/interfaces/UserIdentifier.md index 0ed12d58..d648298c 100644 --- a/docs/interfaces/UserIdentifier.md +++ b/docs/interfaces/UserIdentifier.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/models.ts:518](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L518) +[src/types/models.ts:518](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L518) diff --git a/docs/interfaces/Webhook.md b/docs/interfaces/Webhook.md index 0fae1033..c4e35f79 100644 --- a/docs/interfaces/Webhook.md +++ b/docs/interfaces/Webhook.md @@ -19,7 +19,7 @@ #### Defined in -[src/types/models.ts:538](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L538) +[src/types/models.ts:538](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L538) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/types/models.ts:539](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L539) +[src/types/models.ts:539](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L539) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/types/models.ts:537](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L537) +[src/types/models.ts:537](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L537) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/types/models.ts:536](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L536) +[src/types/models.ts:536](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L536) diff --git a/docs/interfaces/WebhookGetResponse.md b/docs/interfaces/WebhookGetResponse.md index c9ab114a..d321e178 100644 --- a/docs/interfaces/WebhookGetResponse.md +++ b/docs/interfaces/WebhookGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:131](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L131) +[src/types/route-responses.ts:131](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L131) diff --git a/docs/interfaces/WebhookListResponse.md b/docs/interfaces/WebhookListResponse.md index c8072ad3..5d849ae7 100644 --- a/docs/interfaces/WebhookListResponse.md +++ b/docs/interfaces/WebhookListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:127](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L127) +[src/types/route-responses.ts:127](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L127) diff --git a/docs/interfaces/Workspace.md b/docs/interfaces/Workspace.md index 0a42dc48..32306cf8 100644 --- a/docs/interfaces/Workspace.md +++ b/docs/interfaces/Workspace.md @@ -19,7 +19,7 @@ #### Defined in -[src/types/models.ts:6](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L6) +[src/types/models.ts:6](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L6) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/types/models.ts:8](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L8) +[src/types/models.ts:8](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L8) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/types/models.ts:7](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L7) +[src/types/models.ts:7](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L7) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/types/models.ts:5](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L5) +[src/types/models.ts:5](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L5) diff --git a/docs/interfaces/WorkspaceGetResponse.md b/docs/interfaces/WorkspaceGetResponse.md index 9636fe09..1898e618 100644 --- a/docs/interfaces/WorkspaceGetResponse.md +++ b/docs/interfaces/WorkspaceGetResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:28](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L28) +[src/types/route-responses.ts:28](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L28) diff --git a/docs/interfaces/WorkspaceResetSandboxResponse.md b/docs/interfaces/WorkspaceResetSandboxResponse.md index 03545f55..7edc5505 100644 --- a/docs/interfaces/WorkspaceResetSandboxResponse.md +++ b/docs/interfaces/WorkspaceResetSandboxResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:33](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L33) +[src/types/route-responses.ts:33](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L33) diff --git a/docs/interfaces/WorkspacesListResponse.md b/docs/interfaces/WorkspacesListResponse.md index e99e2885..954b7073 100644 --- a/docs/interfaces/WorkspacesListResponse.md +++ b/docs/interfaces/WorkspacesListResponse.md @@ -16,4 +16,4 @@ #### Defined in -[src/types/route-responses.ts:25](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L25) +[src/types/route-responses.ts:25](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L25) diff --git a/docs/modules.md b/docs/modules.md index 8b38423b..7b25d725 100644 --- a/docs/modules.md +++ b/docs/modules.md @@ -234,7 +234,7 @@ Renames and re-exports [Seam](classes/Seam.md) #### Defined in -[src/types/globals.ts:16](https://github.com/seamapi/javascript/blob/main/src/types/globals.ts#L16) +[src/types/globals.ts:16](https://github.com/seamapi/javascript-legacy/blob/main/src/types/globals.ts#L16) ___ @@ -244,7 +244,7 @@ ___ #### Defined in -[src/types/models.ts:497](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L497) +[src/types/models.ts:497](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L497) ___ @@ -254,7 +254,7 @@ ___ #### Defined in -[src/types/models.ts:301](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L301) +[src/types/models.ts:301](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L301) ___ @@ -272,7 +272,7 @@ ___ #### Defined in -[src/types/route-requests.ts:78](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L78) +[src/types/route-requests.ts:78](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L78) ___ @@ -282,7 +282,7 @@ ___ #### Defined in -[src/types/route-requests.ts:93](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L93) +[src/types/route-requests.ts:93](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L93) ___ @@ -292,7 +292,7 @@ ___ #### Defined in -[src/types/route-requests.ts:74](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L74) +[src/types/route-requests.ts:74](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L74) ___ @@ -309,7 +309,7 @@ ___ #### Defined in -[src/types/route-requests.ts:131](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L131) +[src/types/route-requests.ts:131](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L131) ___ @@ -325,7 +325,7 @@ ___ #### Defined in -[src/types/route-requests.ts:120](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L120) +[src/types/route-requests.ts:120](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L120) ___ @@ -343,7 +343,7 @@ ___ #### Defined in -[src/types/route-responses.ts:94](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L94) +[src/types/route-responses.ts:94](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L94) ___ @@ -361,7 +361,7 @@ ___ #### Defined in -[src/types/route-requests.ts:136](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L136) +[src/types/route-requests.ts:136](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L136) ___ @@ -371,7 +371,7 @@ ___ #### Defined in -[src/types/route-requests.ts:102](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L102) +[src/types/route-requests.ts:102](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L102) ___ @@ -381,7 +381,7 @@ ___ #### Defined in -[src/types/route-requests.ts:116](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L116) +[src/types/route-requests.ts:116](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L116) ___ @@ -391,7 +391,7 @@ ___ #### Defined in -[src/types/route-requests.ts:109](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L109) +[src/types/route-requests.ts:109](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L109) ___ @@ -401,7 +401,7 @@ ___ #### Defined in -[src/types/route-requests.ts:124](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L124) +[src/types/route-requests.ts:124](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L124) ___ @@ -417,7 +417,7 @@ ___ #### Defined in -[src/types/models.ts:429](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L429) +[src/types/models.ts:429](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L429) ___ @@ -427,7 +427,7 @@ ___ #### Defined in -[src/types/models.ts:384](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L384) +[src/types/models.ts:384](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L384) ___ @@ -439,7 +439,7 @@ ___ #### Defined in -[src/types/models.ts:353](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L353) +[src/types/models.ts:353](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L353) ___ @@ -449,7 +449,7 @@ ___ #### Defined in -[src/types/models.ts:220](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L220) +[src/types/models.ts:220](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L220) ___ @@ -467,7 +467,7 @@ ___ #### Defined in -[src/types/route-requests.ts:253](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L253) +[src/types/route-requests.ts:253](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L253) ___ @@ -483,7 +483,7 @@ ___ #### Defined in -[src/types/route-responses.ts:162](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L162) +[src/types/route-responses.ts:162](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L162) ___ @@ -499,7 +499,7 @@ ___ #### Defined in -[src/types/route-requests.ts:265](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L265) +[src/types/route-requests.ts:265](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L265) ___ @@ -509,7 +509,7 @@ ___ #### Defined in -[src/types/route-requests.ts:269](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L269) +[src/types/route-requests.ts:269](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L269) ___ @@ -519,7 +519,7 @@ ___ #### Defined in -[src/types/route-responses.ts:177](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L177) +[src/types/route-responses.ts:177](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L177) ___ @@ -536,7 +536,7 @@ ___ #### Defined in -[src/types/route-requests.ts:271](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L271) +[src/types/route-requests.ts:271](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L271) ___ @@ -552,7 +552,7 @@ ___ #### Defined in -[src/types/route-responses.ts:166](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L166) +[src/types/route-responses.ts:166](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L166) ___ @@ -570,7 +570,7 @@ ___ #### Defined in -[src/types/route-requests.ts:259](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L259) +[src/types/route-requests.ts:259](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L259) ___ @@ -586,7 +586,7 @@ ___ #### Defined in -[src/types/route-responses.ts:170](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L170) +[src/types/route-responses.ts:170](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L170) ___ @@ -598,7 +598,7 @@ ___ #### Defined in -[src/types/route-responses.ts:180](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L180) +[src/types/route-responses.ts:180](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L180) ___ @@ -621,7 +621,7 @@ ___ #### Defined in -[src/types/models.ts:94](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L94) +[src/types/models.ts:94](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L94) ___ @@ -631,7 +631,7 @@ ___ #### Defined in -[src/types/models.ts:596](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L596) +[src/types/models.ts:596](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L596) ___ @@ -641,7 +641,7 @@ ___ #### Defined in -[src/types/models.ts:588](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L588) +[src/types/models.ts:588](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L588) ___ @@ -651,7 +651,7 @@ ___ #### Defined in -[src/types/route-requests.ts:294](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L294) +[src/types/route-requests.ts:294](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L294) ___ @@ -667,7 +667,7 @@ ___ #### Defined in -[src/types/route-requests.ts:301](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L301) +[src/types/route-requests.ts:301](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L301) ___ @@ -677,7 +677,7 @@ ___ #### Defined in -[src/types/route-responses.ts:211](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L211) +[src/types/route-responses.ts:211](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L211) ___ @@ -694,7 +694,7 @@ ___ #### Defined in -[src/types/route-requests.ts:289](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L289) +[src/types/route-requests.ts:289](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L289) ___ @@ -704,7 +704,7 @@ ___ #### Defined in -[src/types/route-requests.ts:296](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L296) +[src/types/route-requests.ts:296](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L296) ___ @@ -720,7 +720,7 @@ ___ #### Defined in -[src/types/route-requests.ts:285](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L285) +[src/types/route-requests.ts:285](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L285) ___ @@ -730,7 +730,7 @@ ___ #### Defined in -[src/types/models.ts:355](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L355) +[src/types/models.ts:355](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L355) ___ @@ -756,7 +756,7 @@ ___ #### Defined in -[src/types/models.ts:222](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L222) +[src/types/models.ts:222](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L222) ___ @@ -766,7 +766,7 @@ ___ #### Defined in -[src/types/models.ts:143](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L143) +[src/types/models.ts:143](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L143) ___ @@ -776,7 +776,7 @@ ___ #### Defined in -[src/types/globals.ts:18](https://github.com/seamapi/javascript/blob/main/src/types/globals.ts#L18) +[src/types/globals.ts:18](https://github.com/seamapi/javascript-legacy/blob/main/src/types/globals.ts#L18) ___ @@ -792,7 +792,7 @@ ___ #### Defined in -[src/types/route-requests.ts:189](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L189) +[src/types/route-requests.ts:189](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L189) ___ @@ -802,7 +802,7 @@ ___ #### Defined in -[src/types/route-requests.ts:173](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L173) +[src/types/route-requests.ts:173](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L173) ___ @@ -819,7 +819,7 @@ ___ #### Defined in -[src/types/models.ts:238](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L238) +[src/types/models.ts:238](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L238) ___ @@ -838,7 +838,7 @@ ___ #### Defined in -[src/types/route-requests.ts:276](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L276) +[src/types/route-requests.ts:276](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L276) ___ @@ -854,7 +854,7 @@ ___ #### Defined in -[src/types/route-responses.ts:182](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L182) +[src/types/route-responses.ts:182](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L182) ___ @@ -864,7 +864,7 @@ ___ #### Defined in -[src/types/models.ts:163](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L163) +[src/types/models.ts:163](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L163) ___ @@ -884,7 +884,7 @@ ___ #### Defined in -[src/types/route-requests.ts:181](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L181) +[src/types/route-requests.ts:181](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L181) ___ @@ -894,7 +894,7 @@ ___ #### Defined in -[src/types/models.ts:552](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L552) +[src/types/models.ts:552](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L552) ___ @@ -904,7 +904,7 @@ ___ #### Defined in -[src/types/models.ts:92](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L92) +[src/types/models.ts:92](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L92) ___ @@ -914,7 +914,7 @@ ___ #### Defined in -[src/types/models.ts:153](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L153) +[src/types/models.ts:153](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L153) ___ @@ -924,7 +924,7 @@ ___ #### Defined in -[src/types/models.ts:148](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L148) +[src/types/models.ts:148](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L148) ___ @@ -934,7 +934,7 @@ ___ #### Defined in -[src/types/models.ts:91](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L91) +[src/types/models.ts:91](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L91) ___ @@ -944,7 +944,7 @@ ___ #### Defined in -[src/types/models.ts:356](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L356) +[src/types/models.ts:356](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L356) ___ @@ -954,7 +954,7 @@ ___ #### Defined in -[src/types/models.ts:38](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L38) +[src/types/models.ts:38](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L38) ___ @@ -966,7 +966,7 @@ ___ #### Defined in -[src/types/models.ts:171](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L171) +[src/types/models.ts:171](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L171) ___ @@ -976,7 +976,7 @@ ___ #### Defined in -[src/types/models.ts:357](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L357) +[src/types/models.ts:357](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L357) ___ @@ -986,7 +986,7 @@ ___ #### Defined in -[src/types/models.ts:44](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L44) +[src/types/models.ts:44](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L44) ___ @@ -1008,7 +1008,7 @@ ___ #### Defined in -[src/types/models.ts:564](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L564) +[src/types/models.ts:564](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L564) ___ @@ -1029,7 +1029,7 @@ ___ #### Defined in -[src/types/route-requests.ts:223](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L223) +[src/types/route-requests.ts:223](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L223) ___ @@ -1046,7 +1046,7 @@ ___ #### Defined in -[src/types/route-requests.ts:248](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L248) +[src/types/route-requests.ts:248](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L248) ___ @@ -1062,7 +1062,7 @@ ___ #### Defined in -[src/types/route-requests.ts:219](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L219) +[src/types/route-requests.ts:219](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L219) ___ @@ -1078,7 +1078,7 @@ ___ #### Defined in -[src/types/route-responses.ts:156](https://github.com/seamapi/javascript/blob/main/src/types/route-responses.ts#L156) +[src/types/route-responses.ts:156](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-responses.ts#L156) ___ @@ -1100,7 +1100,7 @@ ___ #### Defined in -[src/types/route-requests.ts:235](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L235) +[src/types/route-requests.ts:235](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L235) ___ @@ -1110,7 +1110,7 @@ ___ #### Defined in -[src/types/models.ts:205](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L205) +[src/types/models.ts:205](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L205) ___ @@ -1122,7 +1122,7 @@ This type can allow for other provider categories as they are added #### Defined in -[src/types/models.ts:208](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L208) +[src/types/models.ts:208](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L208) ___ @@ -1138,7 +1138,7 @@ ___ #### Defined in -[src/types/route-requests.ts:169](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L169) +[src/types/route-requests.ts:169](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L169) ___ @@ -1148,7 +1148,7 @@ ___ #### Defined in -[src/types/webhook-events.ts:9](https://github.com/seamapi/javascript/blob/main/src/types/webhook-events.ts#L9) +[src/types/webhook-events.ts:9](https://github.com/seamapi/javascript-legacy/blob/main/src/types/webhook-events.ts#L9) ___ @@ -1164,7 +1164,7 @@ ___ #### Defined in -[src/types/globals.ts:7](https://github.com/seamapi/javascript/blob/main/src/types/globals.ts#L7) +[src/types/globals.ts:7](https://github.com/seamapi/javascript-legacy/blob/main/src/types/globals.ts#L7) ___ @@ -1183,7 +1183,7 @@ ___ #### Defined in -[src/types/route-requests.ts:326](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L326) +[src/types/route-requests.ts:326](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L326) ___ @@ -1193,7 +1193,7 @@ ___ #### Defined in -[src/types/models.ts:361](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L361) +[src/types/models.ts:361](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L361) ___ @@ -1203,7 +1203,7 @@ ___ #### Defined in -[src/types/models.ts:158](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L158) +[src/types/models.ts:158](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L158) ___ @@ -1213,7 +1213,7 @@ ___ #### Defined in -[src/types/models.ts:89](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L89) +[src/types/models.ts:89](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L89) ___ @@ -1234,7 +1234,7 @@ ___ #### Defined in -[src/types/route-requests.ts:333](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L333) +[src/types/route-requests.ts:333](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L333) ___ @@ -1253,7 +1253,7 @@ ___ #### Defined in -[src/types/route-requests.ts:319](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L319) +[src/types/route-requests.ts:319](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L319) ___ @@ -1270,7 +1270,7 @@ ___ #### Defined in -[src/types/route-requests.ts:342](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L342) +[src/types/route-requests.ts:342](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L342) ___ @@ -1288,7 +1288,7 @@ ___ #### Defined in -[src/types/route-requests.ts:313](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L313) +[src/types/route-requests.ts:313](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L313) ___ @@ -1306,7 +1306,7 @@ ___ #### Defined in -[src/types/route-requests.ts:307](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L307) +[src/types/route-requests.ts:307](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L307) ___ @@ -1316,7 +1316,7 @@ ___ #### Defined in -[src/types/models.ts:513](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L513) +[src/types/models.ts:513](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L513) ___ @@ -1334,7 +1334,7 @@ ___ #### Defined in -[src/types/route-requests.ts:163](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L163) +[src/types/route-requests.ts:163](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L163) ___ @@ -1351,7 +1351,7 @@ ___ #### Defined in -[src/types/route-requests.ts:148](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L148) +[src/types/route-requests.ts:148](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L148) ___ @@ -1369,7 +1369,7 @@ ___ #### Defined in -[src/types/route-requests.ts:142](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L142) +[src/types/route-requests.ts:142](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L142) ___ @@ -1387,7 +1387,7 @@ ___ #### Defined in -[src/types/route-requests.ts:157](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L157) +[src/types/route-requests.ts:157](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L157) ___ @@ -1403,7 +1403,7 @@ ___ #### Defined in -[src/types/route-requests.ts:153](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L153) +[src/types/route-requests.ts:153](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L153) ___ @@ -1413,7 +1413,7 @@ ___ #### Defined in -[src/types/models.ts:264](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L264) +[src/types/models.ts:264](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L264) ___ @@ -1430,7 +1430,7 @@ ___ #### Defined in -[src/types/route-requests.ts:201](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L201) +[src/types/route-requests.ts:201](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L201) ___ @@ -1446,7 +1446,7 @@ ___ #### Defined in -[src/types/route-requests.ts:197](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L197) +[src/types/route-requests.ts:197](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L197) ___ @@ -1462,7 +1462,7 @@ ___ #### Defined in -[src/types/route-requests.ts:193](https://github.com/seamapi/javascript/blob/main/src/types/route-requests.ts#L193) +[src/types/route-requests.ts:193](https://github.com/seamapi/javascript-legacy/blob/main/src/types/route-requests.ts#L193) ## Variables @@ -1472,7 +1472,7 @@ ___ #### Defined in -[src/types/models.ts:11](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L11) +[src/types/models.ts:11](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L11) ___ @@ -1484,7 +1484,7 @@ ___ #### Defined in -[src/types/models.ts:169](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L169) +[src/types/models.ts:169](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L169) ___ @@ -1494,7 +1494,7 @@ ___ #### Defined in -[src/types/models.ts:40](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L40) +[src/types/models.ts:40](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L40) ___ @@ -1504,7 +1504,7 @@ ___ #### Defined in -[src/types/models.ts:173](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L173) +[src/types/models.ts:173](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L173) ___ @@ -1514,7 +1514,7 @@ ___ #### Defined in -[src/types/models.ts:84](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L84) +[src/types/models.ts:84](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L84) ## Functions @@ -1534,7 +1534,7 @@ ___ #### Defined in -[src/seam-connect/client.ts:39](https://github.com/seamapi/javascript/blob/main/src/seam-connect/client.ts#L39) +[src/seam-connect/client.ts:39](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-connect/client.ts#L39) ___ @@ -1554,7 +1554,7 @@ ___ #### Defined in -[src/seam-os/client.ts:24](https://github.com/seamapi/javascript/blob/main/src/seam-os/client.ts#L24) +[src/seam-os/client.ts:24](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/client.ts#L24) ___ @@ -1574,7 +1574,7 @@ device is LockDevice #### Defined in -[src/types/models.ts:366](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L366) +[src/types/models.ts:366](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L366) ___ @@ -1594,7 +1594,7 @@ device is NoiseSensorDevice #### Defined in -[src/types/models.ts:372](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L372) +[src/types/models.ts:372](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L372) ___ @@ -1614,4 +1614,4 @@ device is ThermostatDevice #### Defined in -[src/types/models.ts:378](https://github.com/seamapi/javascript/blob/main/src/types/models.ts#L378) +[src/types/models.ts:378](https://github.com/seamapi/javascript-legacy/blob/main/src/types/models.ts#L378) diff --git a/docs/modules/SeamOSRouteTypes.md b/docs/modules/SeamOSRouteTypes.md index 2206d4af..56559e92 100644 --- a/docs/modules/SeamOSRouteTypes.md +++ b/docs/modules/SeamOSRouteTypes.md @@ -28,7 +28,7 @@ #### Defined in -[src/seam-os/routes.ts:1648](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1648) +[src/seam-os/routes.ts:1648](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1648) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/seam-os/routes.ts:1651](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1651) +[src/seam-os/routes.ts:1651](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1651) ___ @@ -60,4 +60,4 @@ ___ #### Defined in -[src/seam-os/routes.ts:1645](https://github.com/seamapi/javascript/blob/main/src/seam-os/routes.ts#L1645) +[src/seam-os/routes.ts:1645](https://github.com/seamapi/javascript-legacy/blob/main/src/seam-os/routes.ts#L1645) diff --git a/package-lock.json b/package-lock.json index 61724404..4d31d14f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "seamapi", - "version": "8.24.0", + "version": "9.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "seamapi", - "version": "8.24.0", + "version": "9.0.0", "license": "MIT", "dependencies": { "axios": "0.25.0", diff --git a/package.json b/package.json index 633d8d8f..d95c5df6 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "iot", "device" ], - "version": "8.24.0", + "version": "9.0.0", "license": "MIT", "sideEffects": false, "main": "./cjs-wrapper.js",