@graphen.ai/aiia-sdk 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/browser.d.ts CHANGED
@@ -166,9 +166,7 @@ declare interface InitOptions {
166
166
  debug?: boolean | "all" | "none" | ("info" | "error" | "warn")[];
167
167
  }
168
168
 
169
- export declare function initSdk(options?: Omit<InitOptions, "webserver" | "port"> & {
170
- workletUrl?: string | undefined;
171
- }): AiiaSdk;
169
+ export declare function initSdk(options?: Omit<InitOptions, "webserver" | "port">): AiiaSdk;
172
170
 
173
171
  declare type LayoutID = string | number;
174
172
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphen.ai/aiia-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "Jay Huang",
@@ -41,7 +41,8 @@
41
41
  "watch": "rollup -c -w",
42
42
  "types:extract": "npm run types:extract:browser && npm run types:extract:node && npm run clean:type",
43
43
  "types:extract:browser": "api-extractor run --local --config api-extractor.browser.json",
44
- "types:extract:node": "api-extractor run --local --config api-extractor.node.json"
44
+ "types:extract:node": "api-extractor run --local --config api-extractor.node.json",
45
+ "publish": "npm run build && npm publish --access public"
45
46
  },
46
47
  "devDependencies": {
47
48
  "@microsoft/api-extractor": "^7.52.11",