Skip to content

Commit d691100

Browse files
committed
XmlProcessor, tests, biome upd
1 parent 7e2bd11 commit d691100

File tree

48 files changed

+679
-102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+679
-102
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.0
4+
5+
### Minor Changes
6+
7+
- XmlProcessor, tests, biome upd
8+
39
## 5.2.0
410

511
### Minor Changes

biome.json

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
3-
"organizeImports": {
4-
"enabled": true
2+
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
3+
"assist": {
4+
"actions": {
5+
"source": {
6+
"organizeImports": "on"
7+
}
8+
}
59
},
610
"javascript": {
711
"formatter": {
@@ -35,6 +39,17 @@
3539
}
3640
},
3741
"files": {
38-
"ignore": [".gitkeep", "*.tsbuildinfo", ".vscode", "tmp", "dist", "node_modules", "./src/debug.ts", "coverage"]
42+
"ignoreUnknown": false,
43+
"includes": [
44+
"**",
45+
"!.gitkeep",
46+
"!*.tsbuildinfo",
47+
"!.vscode",
48+
"!tmp",
49+
"!node_modules",
50+
"!src/debug.ts",
51+
"!dist",
52+
"!coverage"
53+
]
3954
}
4055
}

package.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code.store/arcxp-sdk-ts",
3-
"version": "5.2.0",
3+
"version": "5.3.0",
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",
@@ -24,7 +24,9 @@
2424
"url": "git+https://github.com/code-store-platform/arcxp-sdk-ts.git"
2525
},
2626
"homepage": "https://github.com/code-store-platform/arcxp-sdk-ts",
27-
"files": ["dist"],
27+
"files": [
28+
"dist"
29+
],
2830
"scripts": {
2931
"build": "tsc --noEmit && rollup -c",
3032
"format": "npx @biomejs/biome format --write .",
@@ -35,7 +37,11 @@
3537
"gen:ts": "npx tsx ./src/scripts/json-schema-to-ts.ts",
3638
"cs": "npx changeset && npx changeset version"
3739
},
38-
"keywords": ["ArcXP", "SDK", "Code.Store"],
40+
"keywords": [
41+
"ArcXP",
42+
"SDK",
43+
"Code.Store"
44+
],
3945
"author": "code.store",
4046
"license": "MIT",
4147
"dependencies": {
@@ -47,10 +53,11 @@
4753
"html-entities": "^2.5.2",
4854
"node-html-parser": "^7.0.1",
4955
"uuid": "^9.0.1",
50-
"ws": "^8.14.0"
56+
"ws": "^8.14.0",
57+
"xmldoc": "^2.0.3"
5158
},
5259
"devDependencies": {
53-
"@biomejs/biome": "^1.9.4",
60+
"@biomejs/biome": "^2.3.13",
5461
"@changesets/changelog-github": "^0.4.8",
5562
"@changesets/cli": "^2.26.2",
5663
"@rollup/plugin-alias": "^5.1.1",

pnpm-lock.yaml

Lines changed: 55 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/api/author/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type ArcAPIOptions, ArcAbstractAPI } from '../abstract-api.js';
1+
import { ArcAbstractAPI, type ArcAPIOptions } from '../abstract-api.js';
22
import type { ListAuthorsParams, ListAuthorsResponse } from './types.js';
33

44
export class ArcAuthor extends ArcAbstractAPI {

src/api/content-ops/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type ArcAPIOptions, ArcAbstractAPI } from '../abstract-api.js';
1+
import { ArcAbstractAPI, type ArcAPIOptions } from '../abstract-api.js';
22
import type { ScheduleOperationPayload, UnscheduleOperationPayload } from './types.js';
33

44
export class ArcContentOps extends ArcAbstractAPI {

src/api/content/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { ANS } from '../../types/index.js';
2-
import { type ArcAPIOptions, ArcAbstractAPI } from '../abstract-api.js';
2+
import { ArcAbstractAPI, type ArcAPIOptions } from '../abstract-api.js';
33
import type {
44
GetStoriesByIdsParams,
55
GetStoryParams,

src/api/custom/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { AxiosRequestConfig, AxiosResponse } from 'axios';
2-
import { type ArcAPIOptions, ArcAbstractAPI } from '../abstract-api.js';
2+
import { ArcAbstractAPI, type ArcAPIOptions } from '../abstract-api.js';
33

44
export interface RequestConfig extends AxiosRequestConfig {}
55

src/api/developer-retail/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type ArcAPIOptions, ArcAbstractAPI } from '../abstract-api.js';
1+
import { ArcAbstractAPI, type ArcAPIOptions } from '../abstract-api.js';
22
import type {
33
GetAllRetailCampaignCategoriesParams,
44
GetAllRetailCampaignCategoriesResponse,

src/api/draft/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { ANS, CirculationReference } from '../../types/index.js';
2-
import { type ArcAPIOptions, ArcAbstractAPI } from '../abstract-api.js';
2+
import { ArcAbstractAPI, type ArcAPIOptions } from '../abstract-api.js';
33
import type {
44
Circulations,
55
CreateDocumentRedirectPayload,

0 commit comments

Comments
 (0)