Skip to content

Commit 10da58f

Browse files
committed
Release 0.9.1
1 parent 3569434 commit 10da58f

File tree

16 files changed

+244
-105
lines changed

16 files changed

+244
-105
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scoutos",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"private": false,
55
"repository": "https://github.com/scoutos/scoutos-typescript-sdk",
66
"main": "./index.js",

reference.md

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1589,7 +1589,7 @@ await client.tables.create("collection_id");
15891589
</dl>
15901590
</details>
15911591

1592-
<details><summary><code>client.tables.<a href="/src/api/resources/tables/client/Client.ts">get</a>(collection_id, table_id) -> Scout.TablesGetResponse</code></summary>
1592+
<details><summary><code>client.tables.<a href="/src/api/resources/tables/client/Client.ts">get</a>(collection_id, table_id) -> Scout.CollectionServiceHandlersGetTableResponse</code></summary>
15931593
<dl>
15941594
<dd>
15951595

@@ -1780,6 +1780,62 @@ await client.tables.delete("collection_id", "table_id");
17801780
</dl>
17811781
</details>
17821782

1783+
<details><summary><code>client.tables.<a href="/src/api/resources/tables/client/Client.ts">getSchema</a>(collection_id, table_id) -> Scout.TablesGetSchemaResponse</code></summary>
1784+
<dl>
1785+
<dd>
1786+
1787+
#### 🔌 Usage
1788+
1789+
<dl>
1790+
<dd>
1791+
1792+
<dl>
1793+
<dd>
1794+
1795+
```typescript
1796+
await client.tables.getSchema("collection_id", "table_id");
1797+
```
1798+
1799+
</dd>
1800+
</dl>
1801+
</dd>
1802+
</dl>
1803+
1804+
#### ⚙️ Parameters
1805+
1806+
<dl>
1807+
<dd>
1808+
1809+
<dl>
1810+
<dd>
1811+
1812+
**collection_id:** `string`
1813+
1814+
</dd>
1815+
</dl>
1816+
1817+
<dl>
1818+
<dd>
1819+
1820+
**table_id:** `string`
1821+
1822+
</dd>
1823+
</dl>
1824+
1825+
<dl>
1826+
<dd>
1827+
1828+
**requestOptions:** `Tables.RequestOptions`
1829+
1830+
</dd>
1831+
</dl>
1832+
</dd>
1833+
</dl>
1834+
1835+
</dd>
1836+
</dl>
1837+
</details>
1838+
17831839
<details><summary><code>client.tables.<a href="/src/api/resources/tables/client/Client.ts">sync</a>(collection_id, table_id, { ...params }) -> Scout.CollectionServiceHandlersTableSyncResponse</code></summary>
17841840
<dl>
17851841
<dd>

src/api/resources/collections/client/Client.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ export class Collections {
6262
Authorization: await this._getAuthorizationHeader(),
6363
"X-Fern-Language": "JavaScript",
6464
"X-Fern-SDK-Name": "scoutos",
65-
"X-Fern-SDK-Version": "0.9.0",
66-
"User-Agent": "scoutos/0.9.0",
65+
"X-Fern-SDK-Version": "0.9.1",
66+
"User-Agent": "scoutos/0.9.1",
6767
"X-Fern-Runtime": core.RUNTIME.type,
6868
"X-Fern-Runtime-Version": core.RUNTIME.version,
6969
},
@@ -142,8 +142,8 @@ export class Collections {
142142
Authorization: await this._getAuthorizationHeader(),
143143
"X-Fern-Language": "JavaScript",
144144
"X-Fern-SDK-Name": "scoutos",
145-
"X-Fern-SDK-Version": "0.9.0",
146-
"User-Agent": "scoutos/0.9.0",
145+
"X-Fern-SDK-Version": "0.9.1",
146+
"User-Agent": "scoutos/0.9.1",
147147
"X-Fern-Runtime": core.RUNTIME.type,
148148
"X-Fern-Runtime-Version": core.RUNTIME.version,
149149
},
@@ -222,8 +222,8 @@ export class Collections {
222222
Authorization: await this._getAuthorizationHeader(),
223223
"X-Fern-Language": "JavaScript",
224224
"X-Fern-SDK-Name": "scoutos",
225-
"X-Fern-SDK-Version": "0.9.0",
226-
"User-Agent": "scoutos/0.9.0",
225+
"X-Fern-SDK-Version": "0.9.1",
226+
"User-Agent": "scoutos/0.9.1",
227227
"X-Fern-Runtime": core.RUNTIME.type,
228228
"X-Fern-Runtime-Version": core.RUNTIME.version,
229229
},
@@ -303,8 +303,8 @@ export class Collections {
303303
Authorization: await this._getAuthorizationHeader(),
304304
"X-Fern-Language": "JavaScript",
305305
"X-Fern-SDK-Name": "scoutos",
306-
"X-Fern-SDK-Version": "0.9.0",
307-
"User-Agent": "scoutos/0.9.0",
306+
"X-Fern-SDK-Version": "0.9.1",
307+
"User-Agent": "scoutos/0.9.1",
308308
"X-Fern-Runtime": core.RUNTIME.type,
309309
"X-Fern-Runtime-Version": core.RUNTIME.version,
310310
},
@@ -385,8 +385,8 @@ export class Collections {
385385
Authorization: await this._getAuthorizationHeader(),
386386
"X-Fern-Language": "JavaScript",
387387
"X-Fern-SDK-Name": "scoutos",
388-
"X-Fern-SDK-Version": "0.9.0",
389-
"User-Agent": "scoutos/0.9.0",
388+
"X-Fern-SDK-Version": "0.9.1",
389+
"User-Agent": "scoutos/0.9.1",
390390
"X-Fern-Runtime": core.RUNTIME.type,
391391
"X-Fern-Runtime-Version": core.RUNTIME.version,
392392
},

src/api/resources/copilots/client/Client.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ export class Copilots {
7676
Authorization: await this._getAuthorizationHeader(),
7777
"X-Fern-Language": "JavaScript",
7878
"X-Fern-SDK-Name": "scoutos",
79-
"X-Fern-SDK-Version": "0.9.0",
80-
"User-Agent": "scoutos/0.9.0",
79+
"X-Fern-SDK-Version": "0.9.1",
80+
"User-Agent": "scoutos/0.9.1",
8181
"X-Fern-Runtime": core.RUNTIME.type,
8282
"X-Fern-Runtime-Version": core.RUNTIME.version,
8383
},
@@ -156,8 +156,8 @@ export class Copilots {
156156
Authorization: await this._getAuthorizationHeader(),
157157
"X-Fern-Language": "JavaScript",
158158
"X-Fern-SDK-Name": "scoutos",
159-
"X-Fern-SDK-Version": "0.9.0",
160-
"User-Agent": "scoutos/0.9.0",
159+
"X-Fern-SDK-Version": "0.9.1",
160+
"User-Agent": "scoutos/0.9.1",
161161
"X-Fern-Runtime": core.RUNTIME.type,
162162
"X-Fern-Runtime-Version": core.RUNTIME.version,
163163
},
@@ -238,8 +238,8 @@ export class Copilots {
238238
Authorization: await this._getAuthorizationHeader(),
239239
"X-Fern-Language": "JavaScript",
240240
"X-Fern-SDK-Name": "scoutos",
241-
"X-Fern-SDK-Version": "0.9.0",
242-
"User-Agent": "scoutos/0.9.0",
241+
"X-Fern-SDK-Version": "0.9.1",
242+
"User-Agent": "scoutos/0.9.1",
243243
"X-Fern-Runtime": core.RUNTIME.type,
244244
"X-Fern-Runtime-Version": core.RUNTIME.version,
245245
},
@@ -319,8 +319,8 @@ export class Copilots {
319319
Authorization: await this._getAuthorizationHeader(),
320320
"X-Fern-Language": "JavaScript",
321321
"X-Fern-SDK-Name": "scoutos",
322-
"X-Fern-SDK-Version": "0.9.0",
323-
"User-Agent": "scoutos/0.9.0",
322+
"X-Fern-SDK-Version": "0.9.1",
323+
"User-Agent": "scoutos/0.9.1",
324324
"X-Fern-Runtime": core.RUNTIME.type,
325325
"X-Fern-Runtime-Version": core.RUNTIME.version,
326326
},
@@ -399,8 +399,8 @@ export class Copilots {
399399
Authorization: await this._getAuthorizationHeader(),
400400
"X-Fern-Language": "JavaScript",
401401
"X-Fern-SDK-Name": "scoutos",
402-
"X-Fern-SDK-Version": "0.9.0",
403-
"User-Agent": "scoutos/0.9.0",
402+
"X-Fern-SDK-Version": "0.9.1",
403+
"User-Agent": "scoutos/0.9.1",
404404
"X-Fern-Runtime": core.RUNTIME.type,
405405
"X-Fern-Runtime-Version": core.RUNTIME.version,
406406
},

src/api/resources/documents/client/Client.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ export class Documents {
5454
Authorization: await this._getAuthorizationHeader(),
5555
"X-Fern-Language": "JavaScript",
5656
"X-Fern-SDK-Name": "scoutos",
57-
"X-Fern-SDK-Version": "0.9.0",
58-
"User-Agent": "scoutos/0.9.0",
57+
"X-Fern-SDK-Version": "0.9.1",
58+
"User-Agent": "scoutos/0.9.1",
5959
"X-Fern-Runtime": core.RUNTIME.type,
6060
"X-Fern-Runtime-Version": core.RUNTIME.version,
6161
},
@@ -139,8 +139,8 @@ export class Documents {
139139
Authorization: await this._getAuthorizationHeader(),
140140
"X-Fern-Language": "JavaScript",
141141
"X-Fern-SDK-Name": "scoutos",
142-
"X-Fern-SDK-Version": "0.9.0",
143-
"User-Agent": "scoutos/0.9.0",
142+
"X-Fern-SDK-Version": "0.9.1",
143+
"User-Agent": "scoutos/0.9.1",
144144
"X-Fern-Runtime": core.RUNTIME.type,
145145
"X-Fern-Runtime-Version": core.RUNTIME.version,
146146
},
@@ -225,8 +225,8 @@ export class Documents {
225225
Authorization: await this._getAuthorizationHeader(),
226226
"X-Fern-Language": "JavaScript",
227227
"X-Fern-SDK-Name": "scoutos",
228-
"X-Fern-SDK-Version": "0.9.0",
229-
"User-Agent": "scoutos/0.9.0",
228+
"X-Fern-SDK-Version": "0.9.1",
229+
"User-Agent": "scoutos/0.9.1",
230230
"X-Fern-Runtime": core.RUNTIME.type,
231231
"X-Fern-Runtime-Version": core.RUNTIME.version,
232232
},
@@ -314,8 +314,8 @@ export class Documents {
314314
Authorization: await this._getAuthorizationHeader(),
315315
"X-Fern-Language": "JavaScript",
316316
"X-Fern-SDK-Name": "scoutos",
317-
"X-Fern-SDK-Version": "0.9.0",
318-
"User-Agent": "scoutos/0.9.0",
317+
"X-Fern-SDK-Version": "0.9.1",
318+
"User-Agent": "scoutos/0.9.1",
319319
"X-Fern-Runtime": core.RUNTIME.type,
320320
"X-Fern-Runtime-Version": core.RUNTIME.version,
321321
},
@@ -400,8 +400,8 @@ export class Documents {
400400
Authorization: await this._getAuthorizationHeader(),
401401
"X-Fern-Language": "JavaScript",
402402
"X-Fern-SDK-Name": "scoutos",
403-
"X-Fern-SDK-Version": "0.9.0",
404-
"User-Agent": "scoutos/0.9.0",
403+
"X-Fern-SDK-Version": "0.9.1",
404+
"User-Agent": "scoutos/0.9.1",
405405
"X-Fern-Runtime": core.RUNTIME.type,
406406
"X-Fern-Runtime-Version": core.RUNTIME.version,
407407
},
@@ -487,8 +487,8 @@ export class Documents {
487487
Authorization: await this._getAuthorizationHeader(),
488488
"X-Fern-Language": "JavaScript",
489489
"X-Fern-SDK-Name": "scoutos",
490-
"X-Fern-SDK-Version": "0.9.0",
491-
"User-Agent": "scoutos/0.9.0",
490+
"X-Fern-SDK-Version": "0.9.1",
491+
"User-Agent": "scoutos/0.9.1",
492492
"X-Fern-Runtime": core.RUNTIME.type,
493493
"X-Fern-Runtime-Version": core.RUNTIME.version,
494494
},

src/api/resources/environments/client/Client.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ export class Environments {
5454
Authorization: await this._getAuthorizationHeader(),
5555
"X-Fern-Language": "JavaScript",
5656
"X-Fern-SDK-Name": "scoutos",
57-
"X-Fern-SDK-Version": "0.9.0",
58-
"User-Agent": "scoutos/0.9.0",
57+
"X-Fern-SDK-Version": "0.9.1",
58+
"User-Agent": "scoutos/0.9.1",
5959
"X-Fern-Runtime": core.RUNTIME.type,
6060
"X-Fern-Runtime-Version": core.RUNTIME.version,
6161
},
@@ -145,8 +145,8 @@ export class Environments {
145145
Authorization: await this._getAuthorizationHeader(),
146146
"X-Fern-Language": "JavaScript",
147147
"X-Fern-SDK-Name": "scoutos",
148-
"X-Fern-SDK-Version": "0.9.0",
149-
"User-Agent": "scoutos/0.9.0",
148+
"X-Fern-SDK-Version": "0.9.1",
149+
"User-Agent": "scoutos/0.9.1",
150150
"X-Fern-Runtime": core.RUNTIME.type,
151151
"X-Fern-Runtime-Version": core.RUNTIME.version,
152152
},

src/api/resources/revisions/client/Client.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ export class Revisions {
5454
Authorization: await this._getAuthorizationHeader(),
5555
"X-Fern-Language": "JavaScript",
5656
"X-Fern-SDK-Name": "scoutos",
57-
"X-Fern-SDK-Version": "0.9.0",
58-
"User-Agent": "scoutos/0.9.0",
57+
"X-Fern-SDK-Version": "0.9.1",
58+
"User-Agent": "scoutos/0.9.1",
5959
"X-Fern-Runtime": core.RUNTIME.type,
6060
"X-Fern-Runtime-Version": core.RUNTIME.version,
6161
},
@@ -135,8 +135,8 @@ export class Revisions {
135135
Authorization: await this._getAuthorizationHeader(),
136136
"X-Fern-Language": "JavaScript",
137137
"X-Fern-SDK-Name": "scoutos",
138-
"X-Fern-SDK-Version": "0.9.0",
139-
"User-Agent": "scoutos/0.9.0",
138+
"X-Fern-SDK-Version": "0.9.1",
139+
"User-Agent": "scoutos/0.9.1",
140140
"X-Fern-Runtime": core.RUNTIME.type,
141141
"X-Fern-Runtime-Version": core.RUNTIME.version,
142142
},
@@ -216,8 +216,8 @@ export class Revisions {
216216
Authorization: await this._getAuthorizationHeader(),
217217
"X-Fern-Language": "JavaScript",
218218
"X-Fern-SDK-Name": "scoutos",
219-
"X-Fern-SDK-Version": "0.9.0",
220-
"User-Agent": "scoutos/0.9.0",
219+
"X-Fern-SDK-Version": "0.9.1",
220+
"User-Agent": "scoutos/0.9.1",
221221
"X-Fern-Runtime": core.RUNTIME.type,
222222
"X-Fern-Runtime-Version": core.RUNTIME.version,
223223
},

0 commit comments

Comments
 (0)