@or-sdk/sdk-api 0.23.5 → 0.23.6-beta.436.0

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.
@@ -4,3 +4,4 @@ export declare class SdkApi extends Base {
4
4
  constructor(params: SdkApiConfig);
5
5
  makeRequest<T>(params: CalApiParams): Promise<T>;
6
6
  }
7
+ //# sourceMappingURL=SdkApi.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SdkApi.d.ts","sourceRoot":"","sources":["../../src/SdkApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAUvC,qBAAa,MAAO,SAAQ,IAAI;gBAOlB,MAAM,EAAE,YAAY;IAYzB,WAAW,CAAC,CAAC,EAAE,MAAM,EAAE,YAAY,GAAG,OAAO,CAAC,CAAC,CAAC;CAGxD"}
@@ -1 +1,2 @@
1
1
  export declare const SERVICE_KEY = "sdk-api";
2
+ //# sourceMappingURL=constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,YAAY,CAAC"}
@@ -1,2 +1,3 @@
1
1
  export { SdkApi } from './SdkApi';
2
2
  export * from './types';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,cAAc,SAAS,CAAC"}
@@ -5,3 +5,4 @@ export declare type SdkApiConfig = {
5
5
  accountId?: string;
6
6
  sdkUrl?: string;
7
7
  };
8
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAErC,oBAAY,YAAY,GAAG;IAIzB,KAAK,EAAE,KAAK,CAAC;IAKb,YAAY,CAAC,EAAE,MAAM,CAAC;IAKtB,SAAS,CAAC,EAAE,MAAM,CAAC;IAKnB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC"}
package/package.json CHANGED
@@ -1,20 +1,23 @@
1
1
  {
2
- "version": "0.23.5",
3
2
  "name": "@or-sdk/sdk-api",
3
+ "version": "0.23.6-beta.436.0",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
7
7
  "scripts": {
8
- "build": "npm run clean && concurrently \"npm run build:cjs\" \"npm run build:esm\" \"npm run build:types\"",
9
- "build:watch": "concurrently -r --hide 1,2 \"npm run build:watch:cjs\" \"npm run build:watch:esm\" \"npm run build:watch:types\"",
8
+ "build": "npm run clean && npm run build:esm && npm run build:cjs",
10
9
  "build:cjs": "tsc --project tsconfig.json",
11
- "build:watch:cjs": "tsc --project tsconfig.json -w",
12
10
  "build:esm": "tsc --project tsconfig.esm.json",
13
- "build:watch:esm": "tsc --project tsconfig.esm.json -w",
14
11
  "build:types": "tsc --project tsconfig.types.json",
12
+ "build:watch": "concurrently -r --hide 1,2 \"npm run build:watch:cjs\" \"npm run build:watch:esm\" \"npm run build:watch:types\"",
13
+ "build:watch:cjs": "tsc --project tsconfig.json -w",
14
+ "build:watch:esm": "tsc --project tsconfig.esm.json -w",
15
15
  "build:watch:types": "tsc --project tsconfig.types.json -w",
16
16
  "clean": "rm -rf ./dist",
17
- "dev": "tsc --project tsconfig.dev.json -w"
17
+ "dev": "npm run build:watch:esm"
18
+ },
19
+ "dependencies": {
20
+ "@or-sdk/base": "^0.25.1-beta.436.0"
18
21
  },
19
22
  "devDependencies": {
20
23
  "concurrently": "^6.4.0",
@@ -22,9 +25,5 @@
22
25
  },
23
26
  "publishConfig": {
24
27
  "access": "public"
25
- },
26
- "dependencies": {
27
- "@or-sdk/base": "^0.25.0"
28
- },
29
- "gitHead": "a9bf0b2923fd377bfce8b298eaf823ad0c9f8160"
28
+ }
30
29
  }
package/tsconfig.dev.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "extends": "./tsconfig.esm.json",
3
3
  "compilerOptions": {
4
- "outDir": "./dist/types",
4
+ "declarationDir": "./dist/types",
5
5
  "rootDir": "./src",
6
- "declaration": true,
6
+ "declaration": true
7
7
  }
8
8
  }
package/tsconfig.esm.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "extends": "../../tsconfig.json",
3
3
  "compilerOptions": {
4
+ "outDir": "./dist/esm",
5
+ "declarationDir": "./dist/types",
4
6
  "module": "ES6",
5
7
  "target": "es6",
6
- "outDir": "./dist/esm/",
7
- "rootDir": "./src"
8
+ "rootDir": "./src",
9
+ "declaration": true,
10
+ "declarationMap": true
8
11
  }
9
- }
12
+ }
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "extends": "../../tsconfig.json",
3
3
  "compilerOptions": {
4
- "outDir": "./dist/types/",
4
+ "outDir": "./dist/types",
5
5
  "rootDir": "./src",
6
6
  "declaration": true,
7
+ "declarationMap": true,
7
8
  "emitDeclarationOnly": true
8
9
  }
9
10
  }