@financial-times/cp-content-pipeline-client 0.6.25 → 0.6.27
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 +38 -0
- package/lib/client-version.d.ts +1 -1
- package/lib/client-version.js +1 -1
- package/lib/generated/index.d.ts +148816 -52910
- package/lib/generated/index.js +46 -3
- package/lib/generated/index.js.map +1 -1
- package/lib/schema-version.d.ts +1 -1
- package/lib/schema-version.js +1 -1
- package/package.json +2 -2
- package/queries/article.graphql +40 -2
- package/src/client-version.ts +1 -1
- package/src/generated/index.ts +116 -20
- package/src/schema-version.ts +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -204,6 +204,44 @@
|
|
|
204
204
|
* devDependencies
|
|
205
205
|
* @financial-times/cp-content-pipeline-schema bumped from ^0.7.22 to ^0.7.23
|
|
206
206
|
|
|
207
|
+
## [0.6.27](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v0.6.26...cp-content-pipeline-client-v0.6.27) (2023-08-02)
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
### Bug Fixes
|
|
211
|
+
|
|
212
|
+
* restore the theme field on the Teaser type ([4f7960c](https://github.com/Financial-Times/cp-content-pipeline/commit/4f7960c559969647a3f2b014c9e4d10585101075))
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
### Dependencies
|
|
216
|
+
|
|
217
|
+
* The following workspace dependencies were updated
|
|
218
|
+
* devDependencies
|
|
219
|
+
* @financial-times/cp-content-pipeline-schema bumped from ^0.7.24 to ^0.7.25
|
|
220
|
+
|
|
221
|
+
## [0.6.26](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v0.6.25...cp-content-pipeline-client-v0.6.26) (2023-08-01)
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
### Features
|
|
225
|
+
|
|
226
|
+
* add access level field to Content interface ([4e7ffe9](https://github.com/Financial-Times/cp-content-pipeline/commit/4e7ffe989d75dfeb4bc4a0485a37a7f5886850ce))
|
|
227
|
+
* add field to get article text ([57be303](https://github.com/Financial-Times/cp-content-pipeline/commit/57be303734acec095435da4e2c4bc8f36fb0b0ce))
|
|
228
|
+
* add fields to article query that JSON-LD and Open Graph require ([584c180](https://github.com/Financial-Times/cp-content-pipeline/commit/584c1807547daf4a72a3fc35a7f32af72ac30c88))
|
|
229
|
+
* add GraphQL fields to render the package navigator ([69527f5](https://github.com/Financial-Times/cp-content-pipeline/commit/69527f54039d6e5251973313b3ffde414ad5692f))
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
### Bug Fixes
|
|
233
|
+
|
|
234
|
+
* avoid converting from XML to the content tree twice in one query ([273af2e](https://github.com/Financial-Times/cp-content-pipeline/commit/273af2e596c3e03eecaf55b2edf8800cf6fbb4f8))
|
|
235
|
+
* get vanity URLs for package container articles ([1f7fa9f](https://github.com/Financial-Times/cp-content-pipeline/commit/1f7fa9f9a1444a42c59acbd0105c54e39d70d8b7))
|
|
236
|
+
* resolve altText of images ([f293528](https://github.com/Financial-Times/cp-content-pipeline/commit/f29352821793b68f6667adbe71c6b2077beaabef))
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
### Dependencies
|
|
240
|
+
|
|
241
|
+
* The following workspace dependencies were updated
|
|
242
|
+
* devDependencies
|
|
243
|
+
* @financial-times/cp-content-pipeline-schema bumped from ^0.7.23 to ^0.7.24
|
|
244
|
+
|
|
207
245
|
## [0.6.23](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v0.6.22...cp-content-pipeline-client-v0.6.23) (2023-07-25)
|
|
208
246
|
|
|
209
247
|
|
package/lib/client-version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.6.
|
|
1
|
+
export declare const version = "0.6.27";
|
package/lib/client-version.js
CHANGED