@forge/cli-shared 3.17.1-next.1 → 3.17.1-next.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,81 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.17.1-next.10
4
+
5
+ ### Patch Changes
6
+
7
+ - ea21bdd: Bumping dependencies via Renovate:
8
+
9
+ - @graphql-tools/schema
10
+ - graphql-tools
11
+
12
+ ## 3.17.1-next.9
13
+
14
+ ### Patch Changes
15
+
16
+ - a30d4a3: Bumping dependencies via Renovate:
17
+
18
+ - @types/ignore-walk
19
+
20
+ ## 3.17.1-next.8
21
+
22
+ ### Patch Changes
23
+
24
+ - a777103: Minor refactoring
25
+ - Updated dependencies [161031c]
26
+ - @forge/manifest@4.19.0-next.4
27
+
28
+ ## 3.17.1-next.7
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies [8a1848c]
33
+ - @forge/manifest@4.19.0-next.3
34
+
35
+ ## 3.17.1-next.6
36
+
37
+ ### Patch Changes
38
+
39
+ - 388380b: Bumping dependencies via Renovate:
40
+
41
+ - inquirer
42
+
43
+ ## 3.17.1-next.5
44
+
45
+ ### Patch Changes
46
+
47
+ - 9e74985: Bumping dependencies via Renovate:
48
+
49
+ - @sentry/node
50
+
51
+ - 94ce678: Bumping dependencies via Renovate:
52
+
53
+ - fp-ts
54
+
55
+ - Updated dependencies [06a3e19]
56
+ - @forge/manifest@4.18.1-next.2
57
+
58
+ ## 3.17.1-next.4
59
+
60
+ ### Patch Changes
61
+
62
+ - ac89229: Bumping dependencies via Renovate:
63
+
64
+ - @atlassian/xen-test-util
65
+
66
+ ## 3.17.1-next.3
67
+
68
+ ### Patch Changes
69
+
70
+ - 2cba32e: Fixes for error reporting
71
+
72
+ ## 3.17.1-next.2
73
+
74
+ ### Patch Changes
75
+
76
+ - Updated dependencies [4640d4f]
77
+ - @forge/manifest@4.18.1-next.1
78
+
3
79
  ## 3.17.1-next.1
4
80
 
5
81
  ### Patch Changes
@@ -1 +1 @@
1
- {"version":3,"file":"create-app-graphql-client.d.ts","sourceRoot":"","sources":["../../src/apps/create-app-graphql-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,aAAa,EAA+C,MAAM,YAAY,CAAC;AAGlG,OAAO,EAAE,eAAe,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAExF,qBAAa,oBAAqB,SAAQ,KAAK;CAAG;AAElD,qBAAa,sBAAuB,YAAW,eAAe;IAChD,OAAO,CAAC,QAAQ,CAAC,aAAa;gBAAb,aAAa,EAAE,aAAa;IAE5C,SAAS,CAAC,KAAK,EAAE,oBAAoB,GAAG,OAAO,CAAC,eAAe,CAAC;CA6C9E"}
1
+ {"version":3,"file":"create-app-graphql-client.d.ts","sourceRoot":"","sources":["../../src/apps/create-app-graphql-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,aAAa,EAA+C,MAAM,YAAY,CAAC;AAGlG,OAAO,EAAE,eAAe,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAExF,qBAAa,oBAAqB,SAAQ,KAAK;CAAG;AAElD,qBAAa,sBAAuB,YAAW,eAAe;IAChD,OAAO,CAAC,QAAQ,CAAC,aAAa;gBAAb,aAAa,EAAE,aAAa;IAE5C,SAAS,CAAC,KAAK,EAAE,oBAAoB,GAAG,OAAO,CAAC,eAAe,CAAC;CA8C9E"}
@@ -19,6 +19,7 @@ class CreateAppGraphQLClient {
19
19
  message
20
20
  extensions {
21
21
  errorType
22
+ statusCode
22
23
  }
23
24
  }
24
25
  app {
@@ -9,7 +9,7 @@ class ConfigFileSectionReader {
9
9
  }
10
10
  async readConfigSection(key, schema) {
11
11
  const config = await this.configReader.readConfig();
12
- const keyedSchema = t.interface({ [key]: schema });
12
+ const keyedSchema = t.type({ [key]: schema });
13
13
  if (keyedSchema.is(config)) {
14
14
  return config[key];
15
15
  }