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

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,88 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.17.1-next.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [7827779]
8
+ - @forge/manifest@4.19.0-next.5
9
+
10
+ ## 3.17.1-next.10
11
+
12
+ ### Patch Changes
13
+
14
+ - ea21bdd: Bumping dependencies via Renovate:
15
+
16
+ - @graphql-tools/schema
17
+ - graphql-tools
18
+
19
+ ## 3.17.1-next.9
20
+
21
+ ### Patch Changes
22
+
23
+ - a30d4a3: Bumping dependencies via Renovate:
24
+
25
+ - @types/ignore-walk
26
+
27
+ ## 3.17.1-next.8
28
+
29
+ ### Patch Changes
30
+
31
+ - a777103: Minor refactoring
32
+ - Updated dependencies [161031c]
33
+ - @forge/manifest@4.19.0-next.4
34
+
35
+ ## 3.17.1-next.7
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies [8a1848c]
40
+ - @forge/manifest@4.19.0-next.3
41
+
42
+ ## 3.17.1-next.6
43
+
44
+ ### Patch Changes
45
+
46
+ - 388380b: Bumping dependencies via Renovate:
47
+
48
+ - inquirer
49
+
50
+ ## 3.17.1-next.5
51
+
52
+ ### Patch Changes
53
+
54
+ - 9e74985: Bumping dependencies via Renovate:
55
+
56
+ - @sentry/node
57
+
58
+ - 94ce678: Bumping dependencies via Renovate:
59
+
60
+ - fp-ts
61
+
62
+ - Updated dependencies [06a3e19]
63
+ - @forge/manifest@4.18.1-next.2
64
+
65
+ ## 3.17.1-next.4
66
+
67
+ ### Patch Changes
68
+
69
+ - ac89229: Bumping dependencies via Renovate:
70
+
71
+ - @atlassian/xen-test-util
72
+
73
+ ## 3.17.1-next.3
74
+
75
+ ### Patch Changes
76
+
77
+ - 2cba32e: Fixes for error reporting
78
+
79
+ ## 3.17.1-next.2
80
+
81
+ ### Patch Changes
82
+
83
+ - Updated dependencies [4640d4f]
84
+ - @forge/manifest@4.18.1-next.1
85
+
3
86
  ## 3.17.1-next.1
4
87
 
5
88
  ### 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
  }