Skip to content

Commit 9b8a32e

Browse files
committed
downgrade ans version
1 parent 15a3a08 commit 9b8a32e

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @code.store/arcxp-sdk-ts
22

3+
## 5.3.3
4+
5+
### Patch Changes
6+
7+
- downgrade ans version
8+
39
## 5.3.2
410

511
### Patch Changes

ans-schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"additionalProperties": false,
88
"properties": {
99
"gallery_root": {
10-
"$ref": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.12/gallery.json"
10+
"$ref": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.11/gallery.json"
1111
},
1212
"story_root": {
13-
"$ref": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.12/story.json"
13+
"$ref": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.11/story.json"
1414
},
1515
"video_root": {
16-
"$ref": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.12/video.json"
16+
"$ref": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.11/video.json"
1717
}
1818
},
1919
"required": ["gallery_root", "story_root", "video_root"]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code.store/arcxp-sdk-ts",
3-
"version": "5.3.2",
3+
"version": "5.3.3",
44
"description": "A strongly typed set of ArcXP API's and utilities reduce the amount of work required to develop with ArcXP, starting with reducing the boilerplate code you have to write.",
55
"type": "module",
66
"main": "./dist/index.js",

src/types/ans-types.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export type GloballyUniqueIDTrait = string;
1212
/**
1313
* The version of ANS that this object was serialized as, in major.minor.patch format. For top-level content objects, this is a required trait.
1414
*/
15-
export type DescribesTheANSVersionOfThisObject = '0.10.12';
15+
export type DescribesTheANSVersionOfThisObject = '0.10.11';
1616
/**
1717
* A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.
1818
*/
@@ -852,7 +852,7 @@ export interface Taxonomy {
852852
*/
853853
custom_entities?: CustomEntity[];
854854
/**
855-
* Deprecated in 0.10.12. (See `primary_section` instead.) A primary site object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.
855+
* Deprecated in 0.10.11. (See `primary_section` instead.) A primary site object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.
856856
*/
857857
primary_site?:
858858
| Site
@@ -876,7 +876,7 @@ export interface Taxonomy {
876876
[k: string]: unknown;
877877
});
878878
/**
879-
* Deprecated in 0.10.12. (See `sections` instead.) A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.
879+
* Deprecated in 0.10.11. (See `sections` instead.) A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.
880880
*/
881881
sites?: (
882882
| Site
@@ -1294,7 +1294,7 @@ export interface OwnerInformation {
12941294
*/
12951295
id?: string;
12961296
/**
1297-
* Deprecated in 0.10.12. See `distributor.name`. (Formerly: The human-readable name of original producer of content. Distinguishes between Wires, Staff and other sources.)
1297+
* Deprecated in 0.10.11. See `distributor.name`. (Formerly: The human-readable name of original producer of content. Distinguishes between Wires, Staff and other sources.)
12981298
*/
12991299
name?: string;
13001300
/**
@@ -1589,11 +1589,11 @@ export interface Source {
15891589
*/
15901590
source_id?: string;
15911591
/**
1592-
* Deprecated in 0.10.12. See `distributor.category` and `distributor.subcategory`. (Formerly: The method used to enter this content. E.g. 'staff', 'wires'.)
1592+
* Deprecated in 0.10.11. See `distributor.category` and `distributor.subcategory`. (Formerly: The method used to enter this content. E.g. 'staff', 'wires'.)
15931593
*/
15941594
source_type?: string;
15951595
/**
1596-
* Deprecated in 0.10.12. See `distributor.name`. (Formerly: The human-readable name of the organization who first produced this content. E.g., 'Reuters'.)
1596+
* Deprecated in 0.10.11. See `distributor.name`. (Formerly: The human-readable name of the organization who first produced this content. E.g., 'Reuters'.)
15971597
*/
15981598
name?: string;
15991599
/**

0 commit comments

Comments
 (0)