File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -149,3 +149,14 @@ const staging = new Glide({
149
149
/* ... */
150
150
});
151
151
```
152
+
153
+ Or with the package:
154
+
155
+ ``` ts
156
+ import * as glide from " @glideapps/tables" ;
157
+
158
+ const staging = glide .withConfig ({
159
+ endpoint: " https://staging.heyglide.com/api/container" ,
160
+ /* ... */
161
+ });
162
+ ```
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @glideapps/tables" ,
3
- "version" : " 1.0.11 " ,
3
+ "version" : " 1.0.12 " ,
4
4
"description" : " Client for Glide API" ,
5
5
"main" : " dist/cjs/index.js" ,
6
6
"module" : " dist/es6/index.js" ,
Original file line number Diff line number Diff line change @@ -6,5 +6,6 @@ export const app = defaultClient.app.bind(defaultClient);
6
6
export const table = defaultClient . table . bind ( defaultClient ) ;
7
7
export const getApps = defaultClient . getApps . bind ( defaultClient ) ;
8
8
export const getAppNamed = defaultClient . getAppNamed . bind ( defaultClient ) ;
9
+ export const withConfig = defaultClient . with . bind ( defaultClient ) ;
9
10
10
11
export { RowOf , AppManifest } from "./types" ;
You can’t perform that action at this time.
0 commit comments