@sparkstudio/accounts-sdk 1.1.38 → 1.1.44

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/README.md CHANGED
@@ -1,73 +1,73 @@
1
- # React + TypeScript + Vite
2
-
3
- This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
-
5
- Currently, two official plugins are available:
6
-
7
- - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh
8
- - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9
-
10
- ## React Compiler
11
-
12
- The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
13
-
14
- ## Expanding the ESLint configuration
15
-
16
- If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
17
-
18
- ```js
19
- export default defineConfig([
20
- globalIgnores(['dist']),
21
- {
22
- files: ['**/*.{ts,tsx}'],
23
- extends: [
24
- // Other configs...
25
-
26
- // Remove tseslint.configs.recommended and replace with this
27
- tseslint.configs.recommendedTypeChecked,
28
- // Alternatively, use this for stricter rules
29
- tseslint.configs.strictTypeChecked,
30
- // Optionally, add this for stylistic rules
31
- tseslint.configs.stylisticTypeChecked,
32
-
33
- // Other configs...
34
- ],
35
- languageOptions: {
36
- parserOptions: {
37
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
38
- tsconfigRootDir: import.meta.dirname,
39
- },
40
- // other options...
41
- },
42
- },
43
- ])
44
- ```
45
-
46
- You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
47
-
48
- ```js
49
- // eslint.config.js
50
- import reactX from 'eslint-plugin-react-x'
51
- import reactDom from 'eslint-plugin-react-dom'
52
-
53
- export default defineConfig([
54
- globalIgnores(['dist']),
55
- {
56
- files: ['**/*.{ts,tsx}'],
57
- extends: [
58
- // Other configs...
59
- // Enable lint rules for React
60
- reactX.configs['recommended-typescript'],
61
- // Enable lint rules for React DOM
62
- reactDom.configs.recommended,
63
- ],
64
- languageOptions: {
65
- parserOptions: {
66
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
67
- tsconfigRootDir: import.meta.dirname,
68
- },
69
- // other options...
70
- },
71
- },
72
- ])
73
- ```
1
+ # React + TypeScript + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9
+
10
+ ## React Compiler
11
+
12
+ The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
13
+
14
+ ## Expanding the ESLint configuration
15
+
16
+ If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
17
+
18
+ ```js
19
+ export default defineConfig([
20
+ globalIgnores(['dist']),
21
+ {
22
+ files: ['**/*.{ts,tsx}'],
23
+ extends: [
24
+ // Other configs...
25
+
26
+ // Remove tseslint.configs.recommended and replace with this
27
+ tseslint.configs.recommendedTypeChecked,
28
+ // Alternatively, use this for stricter rules
29
+ tseslint.configs.strictTypeChecked,
30
+ // Optionally, add this for stylistic rules
31
+ tseslint.configs.stylisticTypeChecked,
32
+
33
+ // Other configs...
34
+ ],
35
+ languageOptions: {
36
+ parserOptions: {
37
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
38
+ tsconfigRootDir: import.meta.dirname,
39
+ },
40
+ // other options...
41
+ },
42
+ },
43
+ ])
44
+ ```
45
+
46
+ You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
47
+
48
+ ```js
49
+ // eslint.config.js
50
+ import reactX from 'eslint-plugin-react-x'
51
+ import reactDom from 'eslint-plugin-react-dom'
52
+
53
+ export default defineConfig([
54
+ globalIgnores(['dist']),
55
+ {
56
+ files: ['**/*.{ts,tsx}'],
57
+ extends: [
58
+ // Other configs...
59
+ // Enable lint rules for React
60
+ reactX.configs['recommended-typescript'],
61
+ // Enable lint rules for React DOM
62
+ reactDom.configs.recommended,
63
+ ],
64
+ languageOptions: {
65
+ parserOptions: {
66
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
67
+ tsconfigRootDir: import.meta.dirname,
68
+ },
69
+ // other options...
70
+ },
71
+ },
72
+ ])
73
+ ```
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts","../src/api/Controllers/Home.ts","../src/api/Controllers/Users.ts","../src/api/SparkStudioAccountsSDK.ts"],"sourcesContent":["export * from \"./api/SparkStudioAccountsSDK\";","\n\n /**\n * Auto-generated client for the Home controller.\n */\nexport class Home {\n private baseUrl: string;\n\n constructor(baseUrl: string) {\n this.baseUrl = baseUrl;\n }\n\n}","\nimport type { UserDTO } from \"../DTOs/UserDTO\";\n\n /**\n * Auto-generated client for the Users controller.\n */\nexport class Users {\n private baseUrl: string;\n\n constructor(baseUrl: string) {\n this.baseUrl = baseUrl;\n }\n\n public async GetUser(id: string ): Promise<UserDTO> {\n const url = `${this.baseUrl}/api/Users/GetUser/` + id + ``\n\n // Construct the request options\n const requestOptions: RequestInit = {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json'\n }, \n };\n\n // Perform the fetch request\n const response = await fetch(url, requestOptions);\n\n // Throw an error if the response is not successful\n if (!response.ok) throw new Error(await response.text());\n\n // Return the parsed response\n return await response.json();\n } \n public async CreateUser(userDTO: UserDTO ): Promise<UserDTO> {\n const url = `${this.baseUrl}/api/Users/CreateUser`\n\n // Construct the request options\n const requestOptions: RequestInit = {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json'\n }, \n body: JSON.stringify(userDTO) \n };\n\n // Perform the fetch request\n const response = await fetch(url, requestOptions);\n\n // Throw an error if the response is not successful\n if (!response.ok) throw new Error(await response.text());\n\n // Return the parsed response\n return await response.json();\n } \n}","\nimport { Home } from \"./Controllers/Home\";\nimport { Users } from \"./Controllers/Users\";\n\n /**\n * Auto-generated API client.\n */\nexport class SparkStudioAccountsSDK {\n\n public home: Home;\n public users: Users;\n\n constructor(baseUrl: string) { \n this.home = new Home(baseUrl);\n this.users = new Users(baseUrl);\n }\n}\n\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACKO,IAAM,OAAN,MAAW;AAAA,EAGd,YAAY,SAAiB;AACzB,SAAK,UAAU;AAAA,EACnB;AAEJ;;;ACNO,IAAM,QAAN,MAAY;AAAA,EAGf,YAAY,SAAiB;AACzB,SAAK,UAAU;AAAA,EACnB;AAAA,EAEA,MAAa,QAAQ,IAA+B;AAChD,UAAM,MAAM,GAAG,KAAK,OAAO,wBAAwB;AAGnD,UAAM,iBAA8B;AAAA,MAChC,QAAQ;AAAA,MACR,SAAS;AAAA,QACL,gBAAgB;AAAA,MACpB;AAAA,IACJ;AAGA,UAAM,WAAW,MAAM,MAAM,KAAK,cAAc;AAGhD,QAAI,CAAC,SAAS,GAAI,OAAM,IAAI,MAAM,MAAM,SAAS,KAAK,CAAC;AAGvD,WAAO,MAAM,SAAS,KAAK;AAAA,EAC/B;AAAA,EACA,MAAa,WAAW,SAAqC;AACzD,UAAM,MAAM,GAAG,KAAK,OAAO;AAG3B,UAAM,iBAA8B;AAAA,MAChC,QAAQ;AAAA,MACR,SAAS;AAAA,QACL,gBAAgB;AAAA,MACpB;AAAA,MACA,MAAM,KAAK,UAAU,OAAO;AAAA,IAChC;AAGA,UAAM,WAAW,MAAM,MAAM,KAAK,cAAc;AAGhD,QAAI,CAAC,SAAS,GAAI,OAAM,IAAI,MAAM,MAAM,SAAS,KAAK,CAAC;AAGvD,WAAO,MAAM,SAAS,KAAK;AAAA,EAC/B;AACJ;;;AC/CO,IAAM,yBAAN,MAA6B;AAAA,EAKhC,YAAY,SAAiB;AACzB,SAAK,OAAO,IAAI,KAAK,OAAO;AAC5B,SAAK,QAAQ,IAAI,MAAM,OAAO;AAAA,EAClC;AACJ;","names":[]}
1
+ {"version":3,"sources":["../src/index.ts","../src/api/Controllers/Home.ts","../src/api/Controllers/Users.ts","../src/api/SparkStudioAccountsSDK.ts"],"sourcesContent":["export * from \"./api/SparkStudioAccountsSDK\";","\r\n\r\n /**\r\n * Auto-generated client for the Home controller.\r\n */\r\nexport class Home {\r\n private baseUrl: string;\r\n\r\n constructor(baseUrl: string) {\r\n this.baseUrl = baseUrl;\r\n }\r\n\r\n}","\r\nimport type { UserDTO } from \"../DTOs/UserDTO\";\r\n\r\n /**\r\n * Auto-generated client for the Users controller.\r\n */\r\nexport class Users {\r\n private baseUrl: string;\r\n\r\n constructor(baseUrl: string) {\r\n this.baseUrl = baseUrl;\r\n }\r\n\r\n public async GetUser(id: string ): Promise<UserDTO> {\r\n const url = `${this.baseUrl}/api/Users/GetUser/` + id + ``\r\n\r\n // Construct the request options\r\n const requestOptions: RequestInit = {\r\n method: 'GET',\r\n headers: {\r\n 'Content-Type': 'application/json'\r\n }, \r\n };\r\n\r\n // Perform the fetch request\r\n const response = await fetch(url, requestOptions);\r\n\r\n // Throw an error if the response is not successful\r\n if (!response.ok) throw new Error(await response.text());\r\n\r\n // Return the parsed response\r\n return await response.json();\r\n } \r\n public async CreateUser(userDTO: UserDTO ): Promise<UserDTO> {\r\n const url = `${this.baseUrl}/api/Users/CreateUser`\r\n\r\n // Construct the request options\r\n const requestOptions: RequestInit = {\r\n method: 'POST',\r\n headers: {\r\n 'Content-Type': 'application/json'\r\n }, \r\n body: JSON.stringify(userDTO) \r\n };\r\n\r\n // Perform the fetch request\r\n const response = await fetch(url, requestOptions);\r\n\r\n // Throw an error if the response is not successful\r\n if (!response.ok) throw new Error(await response.text());\r\n\r\n // Return the parsed response\r\n return await response.json();\r\n } \r\n}","\r\nimport { Home } from \"./Controllers/Home\";\r\nimport { Users } from \"./Controllers/Users\";\r\n\r\n /**\r\n * Auto-generated API client.\r\n */\r\nexport class SparkStudioAccountsSDK {\r\n\r\n public home: Home;\r\n public users: Users;\r\n\r\n constructor(baseUrl: string) { \r\n this.home = new Home(baseUrl);\r\n this.users = new Users(baseUrl);\r\n }\r\n}\r\n\r\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACKO,IAAM,OAAN,MAAW;AAAA,EAGd,YAAY,SAAiB;AACzB,SAAK,UAAU;AAAA,EACnB;AAEJ;;;ACNO,IAAM,QAAN,MAAY;AAAA,EAGf,YAAY,SAAiB;AACzB,SAAK,UAAU;AAAA,EACnB;AAAA,EAEA,MAAa,QAAQ,IAA+B;AAChD,UAAM,MAAM,GAAG,KAAK,OAAO,wBAAwB;AAGnD,UAAM,iBAA8B;AAAA,MAChC,QAAQ;AAAA,MACR,SAAS;AAAA,QACL,gBAAgB;AAAA,MACpB;AAAA,IACJ;AAGA,UAAM,WAAW,MAAM,MAAM,KAAK,cAAc;AAGhD,QAAI,CAAC,SAAS,GAAI,OAAM,IAAI,MAAM,MAAM,SAAS,KAAK,CAAC;AAGvD,WAAO,MAAM,SAAS,KAAK;AAAA,EAC/B;AAAA,EACA,MAAa,WAAW,SAAqC;AACzD,UAAM,MAAM,GAAG,KAAK,OAAO;AAG3B,UAAM,iBAA8B;AAAA,MAChC,QAAQ;AAAA,MACR,SAAS;AAAA,QACL,gBAAgB;AAAA,MACpB;AAAA,MACA,MAAM,KAAK,UAAU,OAAO;AAAA,IAChC;AAGA,UAAM,WAAW,MAAM,MAAM,KAAK,cAAc;AAGhD,QAAI,CAAC,SAAS,GAAI,OAAM,IAAI,MAAM,MAAM,SAAS,KAAK,CAAC;AAGvD,WAAO,MAAM,SAAS,KAAK;AAAA,EAC/B;AACJ;;;AC/CO,IAAM,yBAAN,MAA6B;AAAA,EAKhC,YAAY,SAAiB;AACzB,SAAK,OAAO,IAAI,KAAK,OAAO;AAC5B,SAAK,QAAQ,IAAI,MAAM,OAAO;AAAA,EAClC;AACJ;","names":[]}
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/api/Controllers/Home.ts","../src/api/Controllers/Users.ts","../src/api/SparkStudioAccountsSDK.ts"],"sourcesContent":["\n\n /**\n * Auto-generated client for the Home controller.\n */\nexport class Home {\n private baseUrl: string;\n\n constructor(baseUrl: string) {\n this.baseUrl = baseUrl;\n }\n\n}","\nimport type { UserDTO } from \"../DTOs/UserDTO\";\n\n /**\n * Auto-generated client for the Users controller.\n */\nexport class Users {\n private baseUrl: string;\n\n constructor(baseUrl: string) {\n this.baseUrl = baseUrl;\n }\n\n public async GetUser(id: string ): Promise<UserDTO> {\n const url = `${this.baseUrl}/api/Users/GetUser/` + id + ``\n\n // Construct the request options\n const requestOptions: RequestInit = {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json'\n }, \n };\n\n // Perform the fetch request\n const response = await fetch(url, requestOptions);\n\n // Throw an error if the response is not successful\n if (!response.ok) throw new Error(await response.text());\n\n // Return the parsed response\n return await response.json();\n } \n public async CreateUser(userDTO: UserDTO ): Promise<UserDTO> {\n const url = `${this.baseUrl}/api/Users/CreateUser`\n\n // Construct the request options\n const requestOptions: RequestInit = {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json'\n }, \n body: JSON.stringify(userDTO) \n };\n\n // Perform the fetch request\n const response = await fetch(url, requestOptions);\n\n // Throw an error if the response is not successful\n if (!response.ok) throw new Error(await response.text());\n\n // Return the parsed response\n return await response.json();\n } \n}","\nimport { Home } from \"./Controllers/Home\";\nimport { Users } from \"./Controllers/Users\";\n\n /**\n * Auto-generated API client.\n */\nexport class SparkStudioAccountsSDK {\n\n public home: Home;\n public users: Users;\n\n constructor(baseUrl: string) { \n this.home = new Home(baseUrl);\n this.users = new Users(baseUrl);\n }\n}\n\n"],"mappings":";AAKO,IAAM,OAAN,MAAW;AAAA,EAGd,YAAY,SAAiB;AACzB,SAAK,UAAU;AAAA,EACnB;AAEJ;;;ACNO,IAAM,QAAN,MAAY;AAAA,EAGf,YAAY,SAAiB;AACzB,SAAK,UAAU;AAAA,EACnB;AAAA,EAEA,MAAa,QAAQ,IAA+B;AAChD,UAAM,MAAM,GAAG,KAAK,OAAO,wBAAwB;AAGnD,UAAM,iBAA8B;AAAA,MAChC,QAAQ;AAAA,MACR,SAAS;AAAA,QACL,gBAAgB;AAAA,MACpB;AAAA,IACJ;AAGA,UAAM,WAAW,MAAM,MAAM,KAAK,cAAc;AAGhD,QAAI,CAAC,SAAS,GAAI,OAAM,IAAI,MAAM,MAAM,SAAS,KAAK,CAAC;AAGvD,WAAO,MAAM,SAAS,KAAK;AAAA,EAC/B;AAAA,EACA,MAAa,WAAW,SAAqC;AACzD,UAAM,MAAM,GAAG,KAAK,OAAO;AAG3B,UAAM,iBAA8B;AAAA,MAChC,QAAQ;AAAA,MACR,SAAS;AAAA,QACL,gBAAgB;AAAA,MACpB;AAAA,MACA,MAAM,KAAK,UAAU,OAAO;AAAA,IAChC;AAGA,UAAM,WAAW,MAAM,MAAM,KAAK,cAAc;AAGhD,QAAI,CAAC,SAAS,GAAI,OAAM,IAAI,MAAM,MAAM,SAAS,KAAK,CAAC;AAGvD,WAAO,MAAM,SAAS,KAAK;AAAA,EAC/B;AACJ;;;AC/CO,IAAM,yBAAN,MAA6B;AAAA,EAKhC,YAAY,SAAiB;AACzB,SAAK,OAAO,IAAI,KAAK,OAAO;AAC5B,SAAK,QAAQ,IAAI,MAAM,OAAO;AAAA,EAClC;AACJ;","names":[]}
1
+ {"version":3,"sources":["../src/api/Controllers/Home.ts","../src/api/Controllers/Users.ts","../src/api/SparkStudioAccountsSDK.ts"],"sourcesContent":["\r\n\r\n /**\r\n * Auto-generated client for the Home controller.\r\n */\r\nexport class Home {\r\n private baseUrl: string;\r\n\r\n constructor(baseUrl: string) {\r\n this.baseUrl = baseUrl;\r\n }\r\n\r\n}","\r\nimport type { UserDTO } from \"../DTOs/UserDTO\";\r\n\r\n /**\r\n * Auto-generated client for the Users controller.\r\n */\r\nexport class Users {\r\n private baseUrl: string;\r\n\r\n constructor(baseUrl: string) {\r\n this.baseUrl = baseUrl;\r\n }\r\n\r\n public async GetUser(id: string ): Promise<UserDTO> {\r\n const url = `${this.baseUrl}/api/Users/GetUser/` + id + ``\r\n\r\n // Construct the request options\r\n const requestOptions: RequestInit = {\r\n method: 'GET',\r\n headers: {\r\n 'Content-Type': 'application/json'\r\n }, \r\n };\r\n\r\n // Perform the fetch request\r\n const response = await fetch(url, requestOptions);\r\n\r\n // Throw an error if the response is not successful\r\n if (!response.ok) throw new Error(await response.text());\r\n\r\n // Return the parsed response\r\n return await response.json();\r\n } \r\n public async CreateUser(userDTO: UserDTO ): Promise<UserDTO> {\r\n const url = `${this.baseUrl}/api/Users/CreateUser`\r\n\r\n // Construct the request options\r\n const requestOptions: RequestInit = {\r\n method: 'POST',\r\n headers: {\r\n 'Content-Type': 'application/json'\r\n }, \r\n body: JSON.stringify(userDTO) \r\n };\r\n\r\n // Perform the fetch request\r\n const response = await fetch(url, requestOptions);\r\n\r\n // Throw an error if the response is not successful\r\n if (!response.ok) throw new Error(await response.text());\r\n\r\n // Return the parsed response\r\n return await response.json();\r\n } \r\n}","\r\nimport { Home } from \"./Controllers/Home\";\r\nimport { Users } from \"./Controllers/Users\";\r\n\r\n /**\r\n * Auto-generated API client.\r\n */\r\nexport class SparkStudioAccountsSDK {\r\n\r\n public home: Home;\r\n public users: Users;\r\n\r\n constructor(baseUrl: string) { \r\n this.home = new Home(baseUrl);\r\n this.users = new Users(baseUrl);\r\n }\r\n}\r\n\r\n"],"mappings":";AAKO,IAAM,OAAN,MAAW;AAAA,EAGd,YAAY,SAAiB;AACzB,SAAK,UAAU;AAAA,EACnB;AAEJ;;;ACNO,IAAM,QAAN,MAAY;AAAA,EAGf,YAAY,SAAiB;AACzB,SAAK,UAAU;AAAA,EACnB;AAAA,EAEA,MAAa,QAAQ,IAA+B;AAChD,UAAM,MAAM,GAAG,KAAK,OAAO,wBAAwB;AAGnD,UAAM,iBAA8B;AAAA,MAChC,QAAQ;AAAA,MACR,SAAS;AAAA,QACL,gBAAgB;AAAA,MACpB;AAAA,IACJ;AAGA,UAAM,WAAW,MAAM,MAAM,KAAK,cAAc;AAGhD,QAAI,CAAC,SAAS,GAAI,OAAM,IAAI,MAAM,MAAM,SAAS,KAAK,CAAC;AAGvD,WAAO,MAAM,SAAS,KAAK;AAAA,EAC/B;AAAA,EACA,MAAa,WAAW,SAAqC;AACzD,UAAM,MAAM,GAAG,KAAK,OAAO;AAG3B,UAAM,iBAA8B;AAAA,MAChC,QAAQ;AAAA,MACR,SAAS;AAAA,QACL,gBAAgB;AAAA,MACpB;AAAA,MACA,MAAM,KAAK,UAAU,OAAO;AAAA,IAChC;AAGA,UAAM,WAAW,MAAM,MAAM,KAAK,cAAc;AAGhD,QAAI,CAAC,SAAS,GAAI,OAAM,IAAI,MAAM,MAAM,SAAS,KAAK,CAAC;AAGvD,WAAO,MAAM,SAAS,KAAK;AAAA,EAC/B;AACJ;;;AC/CO,IAAM,yBAAN,MAA6B;AAAA,EAKhC,YAAY,SAAiB;AACzB,SAAK,OAAO,IAAI,KAAK,OAAO;AAC5B,SAAK,QAAQ,IAAI,MAAM,OAAO;AAAA,EAClC;AACJ;","names":[]}
package/package.json CHANGED
@@ -1,28 +1,28 @@
1
- {
2
- "name": "@sparkstudio/accounts-sdk",
3
- "version": "1.1.38",
4
- "type": "module",
5
- "main": "./dist/index.cjs",
6
- "module": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js",
12
- "require": "./dist/index.cjs"
13
- }
14
- },
15
- "files": [
16
- "dist",
17
- "README.md",
18
- "LICENSE"
19
- ],
20
- "scripts": {
21
- "build": "tsup",
22
- "test": "echo \"(no tests)\""
23
- },
24
- "dependencies": {
25
- "tsup": "^8.5.1",
26
- "typescript": "^5.9.3"
27
- }
28
- }
1
+ {
2
+ "name": "@sparkstudio/accounts-sdk",
3
+ "version": "1.1.44",
4
+ "type": "module",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsup",
22
+ "test": "echo \"(no tests)\""
23
+ },
24
+ "dependencies": {
25
+ "tsup": "^8.5.1",
26
+ "typescript": "^5.9.3"
27
+ }
28
+ }