@carto/api-client 0.2.2-alpha.1 → 0.2.2
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/build/api-client.cjs +1382 -12
- package/build/api-client.cjs.map +1 -1
- package/build/api-client.modern.js +1382 -13
- package/build/api-client.modern.js.map +1 -1
- package/build/constants.d.ts +2 -0
- package/package.json +4 -5
- package/src/constants.ts +3 -0
- package/src/global.d.ts +6 -0
- package/src/models/model.ts +0 -1
package/build/constants.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"repository": "github:CartoDB/carto-api-client",
|
|
5
5
|
"author": "Don McCurdy <donmccurdy@carto.com>",
|
|
6
6
|
"packageManager": "yarn@4.3.1",
|
|
7
|
-
"version": "0.2.2
|
|
7
|
+
"version": "0.2.2",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"node >= 18"
|
|
30
30
|
],
|
|
31
31
|
"scripts": {
|
|
32
|
-
"build": "microbundle --format cjs,modern --no-compress --define
|
|
33
|
-
"build:watch": "microbundle watch --format cjs,modern --no-compress --define
|
|
32
|
+
"build": "microbundle --format cjs,modern --no-compress --define __CARTO_API_CLIENT_VERSION=$npm_package_version",
|
|
33
|
+
"build:watch": "microbundle watch --format cjs,modern --no-compress --define __CARTO_API_CLIENT_VERSION=$npm_package_version",
|
|
34
34
|
"dev": "concurrently \"yarn build:watch\" \"vite --config examples/vite.config.ts --open\"",
|
|
35
35
|
"test": "vitest run --typecheck",
|
|
36
36
|
"test:watch": "vitest watch --typecheck",
|
|
@@ -98,6 +98,5 @@
|
|
|
98
98
|
"@turf/invariant": "^7.1.0",
|
|
99
99
|
"@turf/union": "^7.1.0",
|
|
100
100
|
"@types/geojson": "^7946.0.14"
|
|
101
|
-
}
|
|
102
|
-
"stableVersion": "0.2.1"
|
|
101
|
+
}
|
|
103
102
|
}
|
package/src/constants.ts
CHANGED
package/src/global.d.ts
ADDED
package/src/models/model.ts
CHANGED