@luvio/compiler 0.99.0 → 0.100.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.
@@ -37,7 +37,7 @@ function iterateThroughResponseKeys(importContext) {
37
37
  const ${constants_2.FIELD_DATA_IDENTIFIER} = data[${constants_2.FIELD_DATA_KEY_IDENTIFIER}];
38
38
  const ${constants_2.REQUESTED_FIELD_IDENTIFIER} = ${getRequestedFieldImport}(${constants_2.FIELD_DATA_KEY_IDENTIFIER}, ${REQUESTED_FIELDS_IDENTIFIER});
39
39
  if(${constants_2.REQUESTED_FIELD_IDENTIFIER} === undefined) {
40
- break; // TODO: (W-11132802) We got a field back we didn't ask for. Call handleUnknownField.
40
+ continue; // TODO: (W-11132802) We got a field back we didn't ask for. Call handleUnknownField.
41
41
  }
42
42
  if(${constants_2.IS_MAPPED_FIELD_IDENTIFIER}(${constants_2.REQUESTED_FIELD_IDENTIFIER})) {
43
43
  continue; // Skips scalar fields that are mapped to RAML.
package/package.json CHANGED
@@ -1,16 +1,33 @@
1
1
  {
2
2
  "name": "@luvio/compiler",
3
- "version": "0.99.0",
3
+ "version": "0.100.0",
4
4
  "description": "Luvio Compiler",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/salesforce/luvio.git",
8
+ "directory": "packages/@luvio/compiler"
9
+ },
10
+ "license": "MIT",
5
11
  "main": "dist/main.js",
6
12
  "types": "dist/main.d.ts",
7
- "license": "MIT",
13
+ "files": [
14
+ "dist/",
15
+ "resources/"
16
+ ],
8
17
  "scripts": {
9
- "clean": "rm -rf dist `find ./src/__tests__/fixtures/ -type d -name generated`",
10
18
  "build": "tsc",
19
+ "clean": "rm -rf dist `find ./src/__tests__/fixtures/ -type d -name generated`",
11
20
  "test": "jest",
12
- "test:debug": "node --inspect-brk ../../../node_modules/jest/bin/jest.js --config ./jest.config.js --runInBand",
13
- "test-generated": "jest --config ./jest.generated.config.js"
21
+ "test-generated": "jest --config ./jest.generated.config.js",
22
+ "test:debug": "node --inspect-brk ../../../node_modules/jest/bin/jest.js --config ./jest.config.js --runInBand"
23
+ },
24
+ "dependencies": {
25
+ "@luvio/graphql-parser": "0.100.0",
26
+ "amf-client-js": "4.2.0"
27
+ },
28
+ "devDependencies": {
29
+ "@luvio/adapter-test-library": "0.100.0",
30
+ "@luvio/engine": "0.100.0"
14
31
  },
15
32
  "nx": {
16
33
  "targets": {
@@ -25,17 +42,5 @@
25
42
  ]
26
43
  }
27
44
  }
28
- },
29
- "files": [
30
- "dist/",
31
- "resources/"
32
- ],
33
- "dependencies": {
34
- "@luvio/graphql-parser": "0.99.0",
35
- "amf-client-js": "4.2.0"
36
- },
37
- "devDependencies": {
38
- "@luvio/adapter-test-library": "0.99.0",
39
- "@luvio/engine": "0.99.0"
40
45
  }
41
46
  }