@zauru-sdk/graphql 1.0.9 → 1.0.48

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,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./GraphQL.queries.js"), exports);
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export * from "./GraphQL.queries";
1
+ export * from "./GraphQL.queries.js";
package/package.json CHANGED
@@ -1,23 +1,26 @@
1
1
  {
2
2
  "name": "@zauru-sdk/graphql",
3
- "version": "1.0.9",
3
+ "version": "1.0.48",
4
4
  "description": "Queries de uso común para las aplicación de Zauru.",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
5
+ "main": "./dist/cjs/index.js",
6
+ "module": "./dist/esm/index.js",
7
+ "types": "./dist/index.d.ts",
7
8
  "publishConfig": {
8
9
  "access": "public"
9
10
  },
10
11
  "scripts": {
11
- "build": "tsc",
12
+ "build": "npm run build:cjs && npm run build:esm",
13
+ "build:cjs": "tsc -p tsconfig.cjs.json",
14
+ "build:esm": "tsc -p tsconfig.esm.json",
12
15
  "test": "echo \"Error: no test specified\" && exit 1"
13
16
  },
17
+ "files": [
18
+ "dist"
19
+ ],
14
20
  "author": "Oscar Cuéllar",
15
21
  "license": "MIT",
16
22
  "devDependencies": {
17
23
  "typescript": "^5.1.6"
18
24
  },
19
- "engines": {
20
- "node": ">=18.0.0"
21
- },
22
- "gitHead": "d5b8e3d9b606d6e275135e4624a27f44d9da7caf"
25
+ "gitHead": "c3258d6237a2008f3456955f4d28c38c94a9ebeb"
23
26
  }
package/CHANGELOG.md DELETED
@@ -1,56 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [1.0.9](https://github.com/intuitiva/zauru-typescript-sdk/compare/v1.0.8...v1.0.9) (2024-03-16)
7
-
8
- **Note:** Version bump only for package @zauru-sdk/graphql
9
-
10
-
11
-
12
-
13
-
14
- ## [1.0.7](https://github.com/intuitiva/zauru-typescript-sdk/compare/v1.0.6...v1.0.7) (2024-03-16)
15
-
16
- **Note:** Version bump only for package @zauru-sdk/graphql
17
-
18
-
19
-
20
-
21
-
22
- ## [1.0.5](https://github.com/intuitiva/zauru-typescript-sdk/compare/v1.0.4...v1.0.5) (2024-03-16)
23
-
24
- **Note:** Version bump only for package @zauru-sdk/graphql
25
-
26
-
27
-
28
-
29
-
30
- ## [1.0.4](https://github.com/intuitiva/zauru-typescript-sdk/compare/v1.0.3...v1.0.4) (2024-03-15)
31
-
32
- **Note:** Version bump only for package @zauru-sdk/graphql
33
-
34
-
35
-
36
-
37
-
38
- ## [1.0.3](https://github.com/intuitiva/zauru-typescript-sdk/compare/v1.0.2...v1.0.3) (2024-03-15)
39
-
40
- **Note:** Version bump only for package @zauru-sdk/graphql
41
-
42
-
43
-
44
-
45
-
46
- ## [1.0.2](https://github.com/intuitiva/zauru-typescript-sdk/compare/v1.0.1...v1.0.2) (2024-03-15)
47
-
48
- **Note:** Version bump only for package @zauru-sdk/graphql
49
-
50
-
51
-
52
-
53
-
54
- ## 1.0.1 (2024-03-15)
55
-
56
- **Note:** Version bump only for package @zauru-sdk/graphql
package/dist/index.js DELETED
@@ -1 +0,0 @@
1
- export * from "./GraphQL.queries";
package/src/index.ts DELETED
@@ -1 +0,0 @@
1
- export * from "./GraphQL.queries";
package/tsconfig.json DELETED
@@ -1,22 +0,0 @@
1
- {
2
- "include": ["env.d.ts", "**/*.ts", "**/*.tsx"],
3
- "compilerOptions": {
4
- "allowSyntheticDefaultImports": true,
5
- "lib": ["ES2022"],
6
- "isolatedModules": true,
7
- "esModuleInterop": true,
8
- "target": "ES2022",
9
- "strict": true,
10
- "allowJs": true,
11
- "skipLibCheck": true,
12
- "forceConsistentCasingInFileNames": true,
13
- "baseUrl": ".",
14
- "outDir": "./dist",
15
- "rootDir": "./src",
16
- "declaration": true,
17
- "declarationDir": "./dist",
18
- "paths": {
19
- "~/*": ["./src/*"]
20
- }
21
- }
22
- }