@globalscoutme/api-client 1.0.3 → 1.0.6

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.
@@ -0,0 +1,2 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+ export {};
package/index.ts CHANGED
@@ -113,3 +113,5 @@ export type {
113
113
  UserAchievementResponseDto,
114
114
  VideoResponseDto,
115
115
  } from './types.gen.js';
116
+
117
+ export { client, type CreateClientConfig } from './client.gen.js';
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@globalscoutme/api-client",
3
- "version": "1.0.3",
3
+ "version": "1.0.6",
4
4
  "description": "GlobalScoutMe API client (generated)",
5
5
  "author": "GlobalScoutMe",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",
8
- "main": "./index.ts",
8
+ "main": "./dist/index.js",
9
9
  "types": "./index.ts",
10
10
  "keywords": ["api-client","typescript"],
11
11
  "dependencies": {
package/tsconfig.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "module": "esnext",
5
+ "moduleResolution": "bundler",
6
+ "declaration": true,
7
+ "outDir": "./dist",
8
+ "strict": false,
9
+ "skipLibCheck": true,
10
+ "esModuleInterop": true,
11
+ "allowSyntheticDefaultImports": true
12
+ },
13
+ "include": ["./**/*.ts"],
14
+ "exclude": ["dist", "node_modules"]
15
+ }