@code.store/arcxp-sdk-ts 5.1.6 → 5.1.8

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.
@@ -1,6 +1,6 @@
1
1
  declare const _default: {
2
2
  fs: () => Promise<typeof import("node:fs")>;
3
- path: () => Promise<typeof import("path")>;
3
+ path: () => Promise<import("path").PlatformPath>;
4
4
  form_data: () => Promise<typeof import("form-data")>;
5
5
  };
6
6
  export default _default;
@@ -1,6 +1,9 @@
1
+ import fs from 'node:fs';
2
+ import path from 'node:path';
3
+ import FormData from 'form-data';
1
4
  declare const modules: {
2
- fs: () => Promise<typeof import("node:fs")>;
3
- path: () => Promise<typeof import("node:path")>;
4
- form_data: () => Promise<typeof import("form-data")>;
5
+ fs: () => Promise<typeof fs>;
6
+ path: () => Promise<path.PlatformPath>;
7
+ form_data: () => Promise<typeof FormData>;
5
8
  };
6
9
  export default modules;
package/package.json CHANGED
@@ -1,10 +1,14 @@
1
1
  {
2
2
  "name": "@code.store/arcxp-sdk-ts",
3
- "version": "5.1.6",
3
+ "version": "5.1.8",
4
4
  "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.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
8
+ "publishConfig": {
9
+ "access": "public",
10
+ "provenance": true
11
+ },
8
12
  "exports": {
9
13
  ".": {
10
14
  "types": "./dist/index.d.ts",
@@ -17,12 +21,10 @@
17
21
  "pnpm": ">=10.x"
18
22
  },
19
23
  "repository": {
20
- "url": "https://github.com/code-store-platform/arcxp-sdk-ts"
24
+ "url": "git+https://github.com/code-store-platform/arcxp-sdk-ts.git"
21
25
  },
22
26
  "homepage": "https://github.com/code-store-platform/arcxp-sdk-ts",
23
- "files": [
24
- "dist"
25
- ],
27
+ "files": ["dist"],
26
28
  "scripts": {
27
29
  "build": "tsc --noEmit && rollup -c",
28
30
  "format": "npx @biomejs/biome format --write .",
@@ -33,11 +35,7 @@
33
35
  "gen:ts": "npx tsx ./src/scripts/json-schema-to-ts.ts",
34
36
  "cs": "npx changeset && npx changeset version"
35
37
  },
36
- "keywords": [
37
- "ArcXP",
38
- "SDK",
39
- "Code.Store"
40
- ],
38
+ "keywords": ["ArcXP", "SDK", "Code.Store"],
41
39
  "author": "code.store",
42
40
  "license": "MIT",
43
41
  "dependencies": {