@financial-times/cp-content-pipeline-client 0.6.25 → 0.6.26
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 +24 -0
- package/lib/client-version.d.ts +1 -1
- package/lib/client-version.js +1 -1
- package/lib/generated/index.d.ts +148816 -52911
- 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 -21
- package/src/schema-version.ts +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -204,6 +204,30 @@
|
|
|
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.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)
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
### Features
|
|
211
|
+
|
|
212
|
+
* add access level field to Content interface ([4e7ffe9](https://github.com/Financial-Times/cp-content-pipeline/commit/4e7ffe989d75dfeb4bc4a0485a37a7f5886850ce))
|
|
213
|
+
* add field to get article text ([57be303](https://github.com/Financial-Times/cp-content-pipeline/commit/57be303734acec095435da4e2c4bc8f36fb0b0ce))
|
|
214
|
+
* add fields to article query that JSON-LD and Open Graph require ([584c180](https://github.com/Financial-Times/cp-content-pipeline/commit/584c1807547daf4a72a3fc35a7f32af72ac30c88))
|
|
215
|
+
* add GraphQL fields to render the package navigator ([69527f5](https://github.com/Financial-Times/cp-content-pipeline/commit/69527f54039d6e5251973313b3ffde414ad5692f))
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
### Bug Fixes
|
|
219
|
+
|
|
220
|
+
* avoid converting from XML to the content tree twice in one query ([273af2e](https://github.com/Financial-Times/cp-content-pipeline/commit/273af2e596c3e03eecaf55b2edf8800cf6fbb4f8))
|
|
221
|
+
* get vanity URLs for package container articles ([1f7fa9f](https://github.com/Financial-Times/cp-content-pipeline/commit/1f7fa9f9a1444a42c59acbd0105c54e39d70d8b7))
|
|
222
|
+
* resolve altText of images ([f293528](https://github.com/Financial-Times/cp-content-pipeline/commit/f29352821793b68f6667adbe71c6b2077beaabef))
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
### Dependencies
|
|
226
|
+
|
|
227
|
+
* The following workspace dependencies were updated
|
|
228
|
+
* devDependencies
|
|
229
|
+
* @financial-times/cp-content-pipeline-schema bumped from ^0.7.23 to ^0.7.24
|
|
230
|
+
|
|
207
231
|
## [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
232
|
|
|
209
233
|
|
package/lib/client-version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.6.
|
|
1
|
+
export declare const version = "0.6.26";
|
package/lib/client-version.js
CHANGED