@looker/sdk-codegen 21.8.2 → 21.9.2
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 +153 -167
- package/README.md +0 -1
- package/lib/codeGen.d.ts +15 -1
- package/lib/codeGen.js +23 -6
- package/lib/codeGen.js.map +1 -1
- package/lib/codeGenerators.d.ts +3 -3
- package/lib/codeGenerators.js +2 -4
- package/lib/codeGenerators.js.map +1 -1
- package/lib/csharp.gen.d.ts +1 -1
- package/lib/csharp.gen.js +2 -2
- package/lib/csharp.gen.js.map +1 -1
- package/lib/declarationInfo.d.ts +3 -3
- package/lib/declarationInfo.js +1 -2
- package/lib/declarationInfo.js.map +1 -1
- package/lib/esm/codeGen.js +33 -23
- package/lib/esm/codeGen.js.map +1 -1
- package/lib/esm/codeGenerators.js +17 -28
- package/lib/esm/codeGenerators.js.map +1 -1
- package/lib/esm/csharp.gen.js +11 -18
- package/lib/esm/csharp.gen.js.map +1 -1
- package/lib/esm/declarationInfo.js +3 -10
- package/lib/esm/declarationInfo.js.map +1 -1
- package/lib/esm/exampleInfo.js +9 -24
- package/lib/esm/exampleInfo.js.map +1 -1
- package/lib/esm/go.gen.js +11 -18
- package/lib/esm/go.gen.js.map +1 -1
- package/lib/esm/index.js +13 -148
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/kotlin.gen.js +11 -18
- package/lib/esm/kotlin.gen.js.map +1 -1
- package/lib/esm/pseudo.gen.js +6 -13
- package/lib/esm/pseudo.gen.js.map +1 -1
- package/lib/esm/python.gen.js +13 -20
- package/lib/esm/python.gen.js.map +1 -1
- package/lib/esm/sdkModels.js +431 -116
- package/lib/esm/sdkModels.js.map +1 -1
- package/lib/esm/specConverter.js +31 -59
- package/lib/esm/specConverter.js.map +1 -1
- package/lib/esm/specDiff.js +19 -36
- package/lib/esm/specDiff.js.map +1 -1
- package/lib/esm/swift.gen.js +17 -24
- package/lib/esm/swift.gen.js.map +1 -1
- package/lib/esm/typescript.gen.js +168 -31
- package/lib/esm/typescript.gen.js.map +1 -1
- package/lib/exampleInfo.d.ts +8 -20
- package/lib/exampleInfo.js +1 -2
- package/lib/exampleInfo.js.map +1 -1
- package/lib/go.gen.js +3 -3
- package/lib/go.gen.js.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/kotlin.gen.d.ts +1 -1
- package/lib/kotlin.gen.js +2 -2
- package/lib/kotlin.gen.js.map +1 -1
- package/lib/pseudo.gen.js +2 -2
- package/lib/pseudo.gen.js.map +1 -1
- package/lib/python.gen.js +4 -4
- package/lib/python.gen.js.map +1 -1
- package/lib/sdkModels.d.ts +33 -13
- package/lib/sdkModels.js +397 -46
- package/lib/sdkModels.js.map +1 -1
- package/lib/specConverter.d.ts +9 -12
- package/lib/specConverter.js +14 -22
- package/lib/specConverter.js.map +1 -1
- package/lib/specDiff.d.ts +4 -4
- package/lib/specDiff.js +6 -8
- package/lib/specDiff.js.map +1 -1
- package/lib/swift.gen.js +2 -2
- package/lib/swift.gen.js.map +1 -1
- package/lib/typescript.gen.d.ts +13 -0
- package/lib/typescript.gen.js +157 -13
- package/lib/typescript.gen.js.map +1 -1
- package/package.json +8 -7
- package/lib/esm/testUtils/index.js +0 -17
- package/lib/esm/testUtils/index.js.map +0 -1
- package/lib/esm/testUtils/testUtils.js +0 -66
- package/lib/esm/testUtils/testUtils.js.map +0 -1
- package/lib/testUtils/index.js +0 -17
- package/lib/testUtils/index.js.map +0 -1
- package/lib/testUtils/testUtils.js +0 -66
- package/lib/testUtils/testUtils.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,406 +5,392 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
### Dependencies
|
|
9
|
+
|
|
10
|
+
- The following workspace dependencies were updated
|
|
11
|
+
- dependencies
|
|
12
|
+
- @looker/sdk-rtl bumped from ^21.6.0 to ^21.6.1
|
|
13
|
+
|
|
14
|
+
## [21.9.2](https://github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.9.1...sdk-codegen-v21.9.2) (2024-09-14)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* fix release 24.16.2 ([#1505](https://github.com/looker-open-source/sdk-codegen/issues/1505)) ([1cd1806](https://github.com/looker-open-source/sdk-codegen/commit/1cd180615901d2daf1fb112b41f2a72d2caacf61))
|
|
20
|
+
|
|
21
|
+
|
|
8
22
|
### Dependencies
|
|
9
23
|
|
|
10
24
|
* The following workspace dependencies were updated
|
|
11
25
|
* dependencies
|
|
12
|
-
* @looker/sdk-rtl bumped from
|
|
26
|
+
* @looker/sdk-rtl bumped from 21.6.2 to 21.6.3
|
|
27
|
+
* devDependencies
|
|
28
|
+
* @looker/sdk-codegen-utils bumped from 21.0.12 to 21.0.13
|
|
13
29
|
|
|
14
|
-
## [21.
|
|
30
|
+
## [21.9.1](https://github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.9.0...sdk-codegen-v21.9.1) (2024-09-11)
|
|
15
31
|
|
|
16
32
|
|
|
17
33
|
### Bug Fixes
|
|
18
34
|
|
|
19
|
-
*
|
|
35
|
+
* Remove the requests package from the TypeScript SDK ([#1491](https://github.com/looker-open-source/sdk-codegen/issues/1491)) ([670377c](https://github.com/looker-open-source/sdk-codegen/commit/670377c46a546bbd8dcc6679b8aeb041da1b4670)), closes [#1439](https://github.com/looker-open-source/sdk-codegen/issues/1439)
|
|
20
36
|
|
|
21
|
-
|
|
37
|
+
|
|
38
|
+
### Dependencies
|
|
39
|
+
|
|
40
|
+
* The following workspace dependencies were updated
|
|
41
|
+
* dependencies
|
|
42
|
+
* @looker/sdk-rtl bumped from 21.6.1 to 21.6.2
|
|
43
|
+
* devDependencies
|
|
44
|
+
* @looker/sdk-codegen-utils bumped from 21.0.11 to 21.0.12
|
|
45
|
+
|
|
46
|
+
## [21.9.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.8.2...sdk-codegen-v21.9.0) (2024-08-12)
|
|
22
47
|
|
|
23
48
|
|
|
24
49
|
### Features
|
|
25
50
|
|
|
26
|
-
*
|
|
51
|
+
* update Go SDK to accept auth session interface ([#1488](https://github.com/looker-open-source/sdk-codegen/issues/1488)) ([aee5bf3](https://github.com/looker-open-source/sdk-codegen/commit/aee5bf3133fbca988b57a31ac9c7d82fa58d5d9b))
|
|
52
|
+
|
|
53
|
+
## [21.8.2](https://github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.8.1...sdk-codegen-v21.8.2) (2023-09-21)
|
|
54
|
+
|
|
55
|
+
### Bug Fixes
|
|
56
|
+
|
|
57
|
+
- add mdls import to makeTheCall when mdls is used ([#1355](https://github.com/looker-open-source/sdk-codegen/issues/1355)) ([4f5ed2b](https://github.com/looker-open-source/sdk-codegen/commit/4f5ed2be97cc1462b980c20c2e9140cee087865f))
|
|
27
58
|
|
|
59
|
+
## [21.8.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.7.4...sdk-codegen-v21.8.0) (2023-02-22)
|
|
60
|
+
|
|
61
|
+
### Features
|
|
62
|
+
|
|
63
|
+
- keep all body parameters toggle in API Explorer requests ([#1245](https://github.com/looker-open-source/sdk-codegen/issues/1245)) ([043ed3f](https://github.com/looker-open-source/sdk-codegen/commit/043ed3ff12cba4f821604b5b668d7301ed4aa6d1))
|
|
28
64
|
|
|
29
65
|
### Dependencies
|
|
30
66
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
67
|
+
- The following workspace dependencies were updated
|
|
68
|
+
- dependencies
|
|
69
|
+
- @looker/sdk-rtl bumped from ^21.5.0 to ^21.6.0
|
|
34
70
|
|
|
35
71
|
### [21.7.4](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.7.3...sdk-codegen-v21.7.4) (2022-12-09)
|
|
36
72
|
|
|
37
|
-
|
|
38
73
|
### Dependencies
|
|
39
74
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
75
|
+
- The following workspace dependencies were updated
|
|
76
|
+
- dependencies
|
|
77
|
+
- @looker/sdk-rtl bumped from ^21.4.0 to ^21.5.0
|
|
43
78
|
|
|
44
79
|
### [21.7.3](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.7.2...sdk-codegen-v21.7.3) (2022-11-10)
|
|
45
80
|
|
|
46
|
-
|
|
47
81
|
### Bug Fixes
|
|
48
82
|
|
|
49
|
-
|
|
83
|
+
- spec parsing unit tests ([#1207](https://www.github.com/looker-open-source/sdk-codegen/issues/1207)) ([4e86291](https://www.github.com/looker-open-source/sdk-codegen/commit/4e862913b555c6294798d11eaa012b7f72736ecb))
|
|
50
84
|
|
|
51
85
|
### [21.7.2](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.7.1...sdk-codegen-v21.7.2) (2022-10-17)
|
|
52
86
|
|
|
53
|
-
|
|
54
87
|
### Bug Fixes
|
|
55
88
|
|
|
56
|
-
|
|
89
|
+
- various path navigation issues ([#1190](https://www.github.com/looker-open-source/sdk-codegen/issues/1190)) ([e73da3d](https://www.github.com/looker-open-source/sdk-codegen/commit/e73da3d39960cb528947c21202318b84d586ce1f))
|
|
57
90
|
|
|
58
91
|
### [21.7.1](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.7.0...sdk-codegen-v21.7.1) (2022-09-21)
|
|
59
92
|
|
|
60
|
-
|
|
61
93
|
### Dependencies
|
|
62
94
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
95
|
+
- The following workspace dependencies were updated
|
|
96
|
+
- dependencies
|
|
97
|
+
- @looker/sdk-rtl bumped from ^21.3.4 to ^21.4.0
|
|
66
98
|
|
|
67
99
|
## [21.7.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.6.0...sdk-codegen-v21.7.0) (2022-07-29)
|
|
68
100
|
|
|
69
|
-
|
|
70
101
|
### Features
|
|
71
102
|
|
|
72
|
-
|
|
103
|
+
- keep SDK request interfaces distinct ([#1125](https://www.github.com/looker-open-source/sdk-codegen/issues/1125)) ([50e925c](https://www.github.com/looker-open-source/sdk-codegen/commit/50e925c90eb3c5ffefc8e8535131471e2f2d0334))
|
|
73
104
|
|
|
74
105
|
## [21.6.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.5.2...sdk-codegen-v21.6.0) (2022-07-07)
|
|
75
106
|
|
|
76
|
-
|
|
77
107
|
### Features
|
|
78
108
|
|
|
79
|
-
|
|
80
|
-
|
|
109
|
+
- generate SDK 22.6 ([#1102](https://www.github.com/looker-open-source/sdk-codegen/issues/1102)) ([2162860](https://www.github.com/looker-open-source/sdk-codegen/commit/2162860f0bf292bce0a79f8115f7c9fc5628057f))
|
|
81
110
|
|
|
82
111
|
### Bug Fixes
|
|
83
112
|
|
|
84
|
-
|
|
85
|
-
|
|
113
|
+
- remove generated files from examples index ([#1076](https://www.github.com/looker-open-source/sdk-codegen/issues/1076)) ([d75bce8](https://www.github.com/looker-open-source/sdk-codegen/commit/d75bce8dc25d41fd6bc5e2e513782eaa6009fd10))
|
|
86
114
|
|
|
87
115
|
### Dependencies
|
|
88
116
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
117
|
+
- The following workspace dependencies were updated
|
|
118
|
+
- dependencies
|
|
119
|
+
- @looker/sdk-rtl bumped from ^21.3.3 to ^21.3.4
|
|
92
120
|
|
|
93
121
|
### [21.5.2](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.5.1...sdk-codegen-v21.5.2) (2022-04-07)
|
|
94
122
|
|
|
95
|
-
|
|
96
123
|
### Dependencies
|
|
97
124
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
125
|
+
- The following workspace dependencies were updated
|
|
126
|
+
- dependencies
|
|
127
|
+
- @looker/sdk-rtl bumped from ^21.3.2 to ^21.3.3
|
|
101
128
|
|
|
102
129
|
## [21.5.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.4.0...sdk-codegen-v21.5.0) (2022-03-04)
|
|
103
130
|
|
|
104
|
-
|
|
105
131
|
### Features
|
|
106
132
|
|
|
107
|
-
|
|
108
|
-
|
|
133
|
+
- generate code deprecation tags ([#1006](https://www.github.com/looker-open-source/sdk-codegen/issues/1006)) ([afd4b66](https://www.github.com/looker-open-source/sdk-codegen/commit/afd4b66ffbd11cdacd19fe1353c9e5bf381fe932))
|
|
109
134
|
|
|
110
135
|
### Bug Fixes
|
|
111
136
|
|
|
112
|
-
|
|
137
|
+
- remove python version upper bound ([#1015](https://www.github.com/looker-open-source/sdk-codegen/issues/1015)) ([b1650a1](https://www.github.com/looker-open-source/sdk-codegen/commit/b1650a1a8a56c52a7a06ca5c9cef02300af7289e))
|
|
113
138
|
|
|
114
139
|
## [21.4.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.3.1...sdk-codegen-v21.4.0) (2022-02-14)
|
|
115
140
|
|
|
116
|
-
|
|
117
141
|
### ⚠ BREAKING CHANGES
|
|
118
142
|
|
|
119
|
-
|
|
143
|
+
- SDK support for 22.0
|
|
120
144
|
|
|
121
145
|
### Features
|
|
122
146
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
147
|
+
- fuzzy JSON value handling for the Swift SDK ([#961](https://www.github.com/looker-open-source/sdk-codegen/issues/961)) ([0b6b696](https://www.github.com/looker-open-source/sdk-codegen/commit/0b6b696742d67d1abc0cf69dfbf820f5a28d0f86))
|
|
148
|
+
- SDK build for 22.0. ([#959](https://www.github.com/looker-open-source/sdk-codegen/issues/959)) ([de651b3](https://www.github.com/looker-open-source/sdk-codegen/commit/de651b373978fd3689429c0cbdb364a2820fe211))
|
|
149
|
+
- SDK support for 22.0 ([5f9930c](https://www.github.com/looker-open-source/sdk-codegen/commit/5f9930c0b0f7bde59f0b9b47f882ae1f3ff9e490))
|
|
127
150
|
|
|
128
151
|
### Bug Fixes
|
|
129
152
|
|
|
130
|
-
|
|
153
|
+
- Update go codegen to set object as interface{} ([#980](https://www.github.com/looker-open-source/sdk-codegen/issues/980)) ([007989d](https://www.github.com/looker-open-source/sdk-codegen/commit/007989d6c438fa42ec261f5b216f2d933b489742))
|
|
131
154
|
|
|
132
155
|
### [21.3.1](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.2.0...sdk-codegen-v21.3.1) (2022-01-27)
|
|
133
156
|
|
|
134
|
-
|
|
135
157
|
### Features
|
|
136
158
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
159
|
+
- add http method to IRawResponse ([#925](https://www.github.com/looker-open-source/sdk-codegen/issues/925)) ([25cef47](https://www.github.com/looker-open-source/sdk-codegen/commit/25cef47fa61a5f15565560b48f5e0c45a0cd9b44))
|
|
160
|
+
- support string or numeric JSON format for numeric IDs in Swift ([#937](https://www.github.com/looker-open-source/sdk-codegen/issues/937)) ([1487d8a](https://www.github.com/looker-open-source/sdk-codegen/commit/1487d8a38432cef2e994d14001df18659522ca90))
|
|
140
161
|
|
|
141
162
|
### Bug Fixes
|
|
142
163
|
|
|
143
|
-
|
|
164
|
+
- enum naming and registration ([#918](https://www.github.com/looker-open-source/sdk-codegen/issues/918)) ([9d4a6cb](https://www.github.com/looker-open-source/sdk-codegen/commit/9d4a6cbfac5defad3a35389e2d46947d2135d349))
|
|
144
165
|
|
|
145
166
|
### [21.3.1](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.3.0...sdk-codegen-v21.3.1) (2021-12-20)
|
|
146
167
|
|
|
147
|
-
|
|
148
168
|
### Dependencies
|
|
149
169
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
170
|
+
- The following workspace dependencies were updated
|
|
171
|
+
- dependencies
|
|
172
|
+
- @looker/sdk-rtl bumped from ^21.3.0 to ^21.3.1
|
|
153
173
|
|
|
154
174
|
## [21.3.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.2.1...sdk-codegen-v21.3.0) (2021-12-16)
|
|
155
175
|
|
|
156
|
-
|
|
157
176
|
### Features
|
|
158
177
|
|
|
159
|
-
|
|
160
|
-
|
|
178
|
+
- add http method to IRawResponse ([#925](https://www.github.com/looker-open-source/sdk-codegen/issues/925)) ([25cef47](https://www.github.com/looker-open-source/sdk-codegen/commit/25cef47fa61a5f15565560b48f5e0c45a0cd9b44))
|
|
161
179
|
|
|
162
180
|
### Dependencies
|
|
163
181
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
182
|
+
- The following workspace dependencies were updated
|
|
183
|
+
- dependencies
|
|
184
|
+
- @looker/sdk-rtl bumped from ^21.2.0 to ^21.3.0
|
|
167
185
|
|
|
168
186
|
### [21.2.1](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.2.0...sdk-codegen-v21.2.1) (2021-12-06)
|
|
169
187
|
|
|
170
|
-
|
|
171
188
|
### Bug Fixes
|
|
172
189
|
|
|
173
|
-
|
|
190
|
+
- enum naming and registration ([#918](https://www.github.com/looker-open-source/sdk-codegen/issues/918)) ([9d4a6cb](https://www.github.com/looker-open-source/sdk-codegen/commit/9d4a6cbfac5defad3a35389e2d46947d2135d349))
|
|
174
191
|
|
|
175
192
|
## [21.2.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.1.1...sdk-codegen-v21.2.0) (2021-11-10)
|
|
176
193
|
|
|
177
|
-
|
|
178
194
|
### Features
|
|
179
195
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
196
|
+
- create @looker/extension-utils ([#886](https://www.github.com/looker-open-source/sdk-codegen/issues/886)) ([9d1720d](https://www.github.com/looker-open-source/sdk-codegen/commit/9d1720d9a4cec00c45195dd9c716d9a2a929264f))
|
|
197
|
+
- Looker 21.20 bindings ([#899](https://www.github.com/looker-open-source/sdk-codegen/issues/899)) ([304d0d0](https://www.github.com/looker-open-source/sdk-codegen/commit/304d0d0688349efad0499d37609605e14df7e97d))
|
|
183
198
|
|
|
184
199
|
### Dependencies
|
|
185
200
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
201
|
+
- The following workspace dependencies were updated
|
|
202
|
+
- dependencies
|
|
203
|
+
- @looker/sdk-rtl bumped from ^21.1.1 to ^21.2.0
|
|
189
204
|
|
|
190
205
|
### [21.1.1](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.1.0...sdk-codegen-v21.1.1) (2021-10-27)
|
|
191
206
|
|
|
192
|
-
|
|
193
207
|
### Bug Fixes
|
|
194
208
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
209
|
+
- another TS SDK error handling tweak ([#873](https://www.github.com/looker-open-source/sdk-codegen/issues/873)) ([1c04952](https://www.github.com/looker-open-source/sdk-codegen/commit/1c049527e22926fa7fe0ae011ab4595520005e2f))
|
|
210
|
+
- do not "reserve" type names ending in [] ([#876](https://www.github.com/looker-open-source/sdk-codegen/issues/876)) ([bab56ef](https://www.github.com/looker-open-source/sdk-codegen/commit/bab56ef1c60389d04e8a1e4973afde0d0b75d5ec))
|
|
198
211
|
|
|
199
212
|
### Dependencies
|
|
200
213
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
214
|
+
- The following workspace dependencies were updated
|
|
215
|
+
- dependencies
|
|
216
|
+
- @looker/sdk-rtl bumped from ^21.1.0 to ^21.1.1
|
|
204
217
|
|
|
205
218
|
## [21.1.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.25...sdk-codegen-v21.1.0) (2021-10-19)
|
|
206
219
|
|
|
207
|
-
|
|
208
220
|
### Features
|
|
209
221
|
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
222
|
+
- closest path match for API Explorer ([#811](https://www.github.com/looker-open-source/sdk-codegen/issues/811)) ([45fd26f](https://www.github.com/looker-open-source/sdk-codegen/commit/45fd26fb0f325fa90edfec72f835ed3a79b9afeb))
|
|
223
|
+
- makeTheCall for Kotlin and type tagging ([#833](https://www.github.com/looker-open-source/sdk-codegen/issues/833)) ([2ca950e](https://www.github.com/looker-open-source/sdk-codegen/commit/2ca950e16c9c172d3e67de58261df16e424efaa3))
|
|
224
|
+
- support either string or numeric JSON values with AnyString ([#848](https://www.github.com/looker-open-source/sdk-codegen/issues/848)) ([9b428f5](https://www.github.com/looker-open-source/sdk-codegen/commit/9b428f5dc871477402f1683cffaadfad55501878))
|
|
225
|
+
- Update Kotlin SDK to use Gson instead of Jackson ([#836](https://www.github.com/looker-open-source/sdk-codegen/issues/836)) ([4d1f789](https://www.github.com/looker-open-source/sdk-codegen/commit/4d1f789fa3b97b0808f06d5d547c96de3ca890ff))
|
|
215
226
|
|
|
216
227
|
### Bug Fixes
|
|
217
228
|
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
229
|
+
- intrinsic type params are not Partial<T> ([#819](https://www.github.com/looker-open-source/sdk-codegen/issues/819)) ([4b31490](https://www.github.com/looker-open-source/sdk-codegen/commit/4b31490f7ce5c9593854e56518245c5399ea9548))
|
|
230
|
+
- Property names with special characters in Kotlin SDK ([#838](https://www.github.com/looker-open-source/sdk-codegen/issues/838)) ([40b6b24](https://www.github.com/looker-open-source/sdk-codegen/commit/40b6b24bfedf8ba16b5dbae2abbbdce2f73c1ffd))
|
|
231
|
+
- request content initialization and filtering for RunIt requests ([#852](https://www.github.com/looker-open-source/sdk-codegen/issues/852)) ([474ee93](https://www.github.com/looker-open-source/sdk-codegen/commit/474ee9365dafe6549826a9f627ac0a79dc0e9a56))
|
|
232
|
+
- stack overflow for type tagging during codegen ([#845](https://www.github.com/looker-open-source/sdk-codegen/issues/845)) ([4ece1b3](https://www.github.com/looker-open-source/sdk-codegen/commit/4ece1b374d9d4b73c1f3fd0512ab54da209c6be6))
|
|
223
233
|
|
|
224
234
|
### Dependencies
|
|
225
235
|
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
236
|
+
- The following workspace dependencies were updated
|
|
237
|
+
- dependencies
|
|
238
|
+
- @looker/sdk-rtl bumped from ^21.0.20 to ^21.1.0
|
|
229
239
|
|
|
230
240
|
### [21.0.25](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.24...sdk-codegen-v21.0.25) (2021-09-01)
|
|
231
241
|
|
|
232
|
-
|
|
233
242
|
### Bug Fixes
|
|
234
243
|
|
|
235
|
-
|
|
236
|
-
|
|
244
|
+
- spec refresh ([#801](https://www.github.com/looker-open-source/sdk-codegen/issues/801)) ([a10245a](https://www.github.com/looker-open-source/sdk-codegen/commit/a10245aa7ea180670d9d8219810aab88eb50854d))
|
|
237
245
|
|
|
238
246
|
### Dependencies
|
|
239
247
|
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
248
|
+
- The following workspace dependencies were updated
|
|
249
|
+
- dependencies
|
|
250
|
+
- @looker/sdk-rtl bumped from ^21.0.19 to ^21.0.20
|
|
243
251
|
|
|
244
252
|
### [21.0.24](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.23...sdk-codegen-v21.0.24) (2021-08-11)
|
|
245
253
|
|
|
246
|
-
|
|
247
254
|
### Features
|
|
248
255
|
|
|
249
|
-
|
|
256
|
+
- fetch API specifications for stand-alone API Explorer ([#789](https://www.github.com/looker-open-source/sdk-codegen/issues/789)) ([f7be1fb](https://www.github.com/looker-open-source/sdk-codegen/commit/f7be1fb589570137c5ab39304910c57f721de8fb))
|
|
250
257
|
|
|
251
258
|
### [21.0.23](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.22...sdk-codegen-v21.0.23) (2021-07-30)
|
|
252
259
|
|
|
253
|
-
|
|
254
260
|
### Bug Fixes
|
|
255
261
|
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
262
|
+
- improved writeable type support ([#766](https://www.github.com/looker-open-source/sdk-codegen/issues/766)) ([be91bd8](https://www.github.com/looker-open-source/sdk-codegen/commit/be91bd8e772f9a64c47486b317f1ac1f6ef14327))
|
|
263
|
+
- remove unused net/url import from go ([#767](https://www.github.com/looker-open-source/sdk-codegen/issues/767)) ([35d912c](https://www.github.com/looker-open-source/sdk-codegen/commit/35d912c1e31e5817a2b6a81084753a66a4860338)), closes [#765](https://www.github.com/looker-open-source/sdk-codegen/issues/765)
|
|
259
264
|
|
|
260
265
|
### Dependencies
|
|
261
266
|
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
267
|
+
- The following workspace dependencies were updated
|
|
268
|
+
- dependencies
|
|
269
|
+
- @looker/sdk-rtl bumped from ^21.0.18 to ^21.0.19
|
|
265
270
|
|
|
266
271
|
### [21.0.22](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.21...sdk-codegen-v21.0.22) (2021-07-09)
|
|
267
272
|
|
|
268
|
-
|
|
269
273
|
### Dependencies
|
|
270
274
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
275
|
+
- The following workspace dependencies were updated
|
|
276
|
+
- dependencies
|
|
277
|
+
- @looker/sdk-rtl bumped from ^21.0.17 to ^21.0.18
|
|
274
278
|
|
|
275
279
|
### [21.0.21](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.20...sdk-codegen-v21.0.21) (2021-07-08)
|
|
276
280
|
|
|
277
|
-
|
|
278
281
|
### Dependencies
|
|
279
282
|
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
+
- The following workspace dependencies were updated
|
|
284
|
+
- dependencies
|
|
285
|
+
- @looker/sdk-rtl bumped from ^21.0.16 to ^21.0.17
|
|
283
286
|
|
|
284
287
|
### [21.0.20](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.19...sdk-codegen-v21.0.20) (2021-07-02)
|
|
285
288
|
|
|
286
|
-
|
|
287
289
|
### Bug Fixes
|
|
288
290
|
|
|
289
|
-
|
|
290
|
-
|
|
291
|
+
- python remove runtime asserts ([#703](https://www.github.com/looker-open-source/sdk-codegen/issues/703)) ([9b963c3](https://www.github.com/looker-open-source/sdk-codegen/commit/9b963c3367905f907e7867df1446f56e18284c3b)), closes [#695](https://www.github.com/looker-open-source/sdk-codegen/issues/695)
|
|
291
292
|
|
|
292
293
|
### Dependencies
|
|
293
294
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
295
|
+
- The following workspace dependencies were updated
|
|
296
|
+
- dependencies
|
|
297
|
+
- @looker/sdk-rtl bumped from ^21.0.15 to ^21.0.16
|
|
297
298
|
|
|
298
299
|
### [21.0.19](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.18...sdk-codegen-v21.0.19) (2021-07-01)
|
|
299
300
|
|
|
300
|
-
|
|
301
301
|
### Dependencies
|
|
302
302
|
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
303
|
+
- The following workspace dependencies were updated
|
|
304
|
+
- dependencies
|
|
305
|
+
- @looker/sdk-rtl bumped from ^21.0.14 to ^21.0.15
|
|
306
306
|
|
|
307
307
|
### [21.0.18](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.17...sdk-codegen-v21.0.18) (2021-06-30)
|
|
308
308
|
|
|
309
|
-
|
|
310
309
|
### Dependencies
|
|
311
310
|
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
311
|
+
- The following workspace dependencies were updated
|
|
312
|
+
- dependencies
|
|
313
|
+
- @looker/sdk-rtl bumped from ^21.0.13 to ^21.0.14
|
|
315
314
|
|
|
316
315
|
### [21.0.17](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.16...sdk-codegen-v21.0.17) (2021-06-16)
|
|
317
316
|
|
|
318
|
-
|
|
319
317
|
### Features
|
|
320
318
|
|
|
321
|
-
|
|
322
|
-
|
|
319
|
+
- reduce size of apix bundle ([#676](https://www.github.com/looker-open-source/sdk-codegen/issues/676)) ([0d74f6a](https://www.github.com/looker-open-source/sdk-codegen/commit/0d74f6a7814b509416a9d2558c16439a4859b543))
|
|
320
|
+
- two-way type references ([#684](https://www.github.com/looker-open-source/sdk-codegen/issues/684)) ([fbc0565](https://www.github.com/looker-open-source/sdk-codegen/commit/fbc0565c4c8fe3d1488bd246e244bed56f1412a9))
|
|
323
321
|
|
|
324
322
|
### [21.0.16](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.15...sdk-codegen-v21.0.16) (2021-05-05)
|
|
325
323
|
|
|
326
|
-
|
|
327
324
|
### Bug Fixes
|
|
328
325
|
|
|
329
|
-
|
|
330
|
-
|
|
326
|
+
- use "TypeScript" and "JavaScript" everywhere ([#644](https://www.github.com/looker-open-source/sdk-codegen/issues/644)) ([c15031c](https://www.github.com/looker-open-source/sdk-codegen/commit/c15031cee189556adbd9e18641e7c992e86e3611))
|
|
331
327
|
|
|
332
328
|
### Dependencies
|
|
333
329
|
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
330
|
+
- The following workspace dependencies were updated
|
|
331
|
+
- dependencies
|
|
332
|
+
- @looker/sdk-rtl bumped from ^21.0.12 to ^21.0.13
|
|
337
333
|
|
|
338
334
|
### [21.0.15](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.14...sdk-codegen-v21.0.15) (2021-04-27)
|
|
339
335
|
|
|
340
|
-
|
|
341
336
|
### Bug Fixes
|
|
342
337
|
|
|
343
|
-
|
|
338
|
+
- added a missing "import type" statement to the TS SDK ([#632](https://www.github.com/looker-open-source/sdk-codegen/issues/632)) ([59c0f3d](https://www.github.com/looker-open-source/sdk-codegen/commit/59c0f3d418ca557c65e5690435ee2eca96c5231d))
|
|
344
339
|
|
|
345
340
|
### [21.0.14](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.13...sdk-codegen-v21.0.14) (2021-04-26)
|
|
346
341
|
|
|
347
|
-
|
|
348
342
|
### Features
|
|
349
343
|
|
|
350
|
-
|
|
344
|
+
- add noComment toggle to code generators ([#627](https://www.github.com/looker-open-source/sdk-codegen/issues/627)) ([90bbecb](https://www.github.com/looker-open-source/sdk-codegen/commit/90bbecbeb31c66bda31f6d14abcc50288e6d7ea1)), closes [#626](https://www.github.com/looker-open-source/sdk-codegen/issues/626)
|
|
351
345
|
|
|
352
346
|
### [21.0.13](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.12...sdk-codegen-v21.0.13) (2021-04-21)
|
|
353
347
|
|
|
354
|
-
|
|
355
348
|
### Features
|
|
356
349
|
|
|
357
|
-
|
|
358
|
-
|
|
350
|
+
- adds 'SDK Examples' data table ([#602](https://www.github.com/looker-open-source/sdk-codegen/issues/602)) ([3678c96](https://www.github.com/looker-open-source/sdk-codegen/commit/3678c96cc7c2edadd00013b66711c917a62d1000))
|
|
359
351
|
|
|
360
352
|
### Bug Fixes
|
|
361
353
|
|
|
362
|
-
|
|
354
|
+
- updated TypeScript, C#, Go language names in codeGenerators.ts ([#610](https://www.github.com/looker-open-source/sdk-codegen/issues/610)) ([13fb42b](https://www.github.com/looker-open-source/sdk-codegen/commit/13fb42b6bfa651a137e75b04fc6ee00620705ede))
|
|
363
355
|
|
|
364
356
|
### [21.0.12](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.11...sdk-codegen-v21.0.12) (2021-04-15)
|
|
365
357
|
|
|
366
|
-
|
|
367
358
|
### Features
|
|
368
359
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
360
|
+
- add source declaration links to API Explorer ([#578](https://www.github.com/looker-open-source/sdk-codegen/issues/578)) ([ce0e588](https://www.github.com/looker-open-source/sdk-codegen/commit/ce0e588787bdbc2e8ca4aadd44c31dc3ba1a0ef1))
|
|
361
|
+
- TypeScript SDK tree-shaking support ([#580](https://www.github.com/looker-open-source/sdk-codegen/issues/580)) ([8b7f2f0](https://www.github.com/looker-open-source/sdk-codegen/commit/8b7f2f00ab1a765a04bd460a1ca88e9b7bd66a98))
|
|
372
362
|
|
|
373
363
|
### Bug Fixes
|
|
374
364
|
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
365
|
+
- add missing bumper method to ICodeGen ([#575](https://www.github.com/looker-open-source/sdk-codegen/issues/575)) ([2a87467](https://www.github.com/looker-open-source/sdk-codegen/commit/2a87467ae9297d062257eaced6ebd09cd6d78856))
|
|
366
|
+
- add warning about python sdk login_user breaking change in 21.4.0 ([#579](https://www.github.com/looker-open-source/sdk-codegen/issues/579)) ([c74d447](https://www.github.com/looker-open-source/sdk-codegen/commit/c74d447e53d81c84d2182960f00ad2d3191b9cef))
|
|
367
|
+
- **ApiExplorer:** Added support for Golang syntax highlighting ([#563](https://www.github.com/looker-open-source/sdk-codegen/issues/563)) ([e2ae33e](https://www.github.com/looker-open-source/sdk-codegen/commit/e2ae33eb1d63b0f8d9987bf86bbed64641d4bea3))
|
|
368
|
+
- recursive search of direct type references ([#591](https://www.github.com/looker-open-source/sdk-codegen/issues/591)) ([9af2e37](https://www.github.com/looker-open-source/sdk-codegen/commit/9af2e3755fb4f7f987cc6980ed57e15f504295ba))
|
|
380
369
|
|
|
381
370
|
### Dependencies
|
|
382
371
|
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
372
|
+
- The following workspace dependencies were updated
|
|
373
|
+
- dependencies
|
|
374
|
+
- @looker/sdk-rtl bumped from ^21.0.11 to ^21.0.12
|
|
386
375
|
|
|
387
376
|
### [21.0.11](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-v21.0.10...sdk-codegen-v21.0.11) (2021-04-02)
|
|
388
377
|
|
|
389
|
-
|
|
390
378
|
### Features
|
|
391
379
|
|
|
392
|
-
|
|
393
|
-
|
|
380
|
+
- Added --versions option to the code generator ([#514](https://www.github.com/looker-open-source/sdk-codegen/issues/514)) ([ee6f3e8](https://www.github.com/looker-open-source/sdk-codegen/commit/ee6f3e8f55e300df1a75c9be89b47f067bc08dee))
|
|
394
381
|
|
|
395
382
|
### Bug Fixes
|
|
396
383
|
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
384
|
+
- legacy generator was broken ([#540](https://www.github.com/looker-open-source/sdk-codegen/issues/540)) ([212cfce](https://www.github.com/looker-open-source/sdk-codegen/commit/212cfce4745ea663322b2338d91315cefec451a9))
|
|
385
|
+
- python sdk login, login_user, logout methods ([#545](https://www.github.com/looker-open-source/sdk-codegen/issues/545)) ([e55086c](https://www.github.com/looker-open-source/sdk-codegen/commit/e55086c81401092e8dbd93e273ba101e2e3efe95))
|
|
386
|
+
- TypeScript SDK generator import logic ([#547](https://www.github.com/looker-open-source/sdk-codegen/issues/547)) ([c5aa033](https://www.github.com/looker-open-source/sdk-codegen/commit/c5aa033c749a2db8a0f98d5b8f49dc287fad06a2))
|
|
401
387
|
|
|
402
388
|
### Dependencies
|
|
403
389
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
390
|
+
- The following workspace dependencies were updated
|
|
391
|
+
- dependencies
|
|
392
|
+
- @looker/sdk-codegen-utils bumped from ^21.0.10 to ^21.0.11
|
|
393
|
+
- @looker/sdk-rtl bumped from ^21.0.10 to ^21.0.11
|
|
408
394
|
|
|
409
395
|
## [0.3.5-alpha.5]
|
|
410
396
|
|
package/README.md
CHANGED