@carto/api-client 0.0.1-0 → 0.0.1-1

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 ADDED
@@ -0,0 +1,7 @@
1
+ # CHANGELOG
2
+
3
+ ## 0.0
4
+
5
+ ### 0.0.1 (UNRELEASED)
6
+
7
+ - Initial release
package/README.md CHANGED
@@ -1,24 +1,23 @@
1
1
  # `@carto/api-client`
2
2
 
3
- ## References
3
+ WORK IN PROGRESS.
4
4
 
5
- - [Product feature brief](https://docs.google.com/document/d/1ZWiVB_rgXf1WAEF1TjJgEHxp92kREYQrWG3O8jYV0Zk/edit)
6
- - [Architecture document](https://app.shortcut.com/cartoteam/write/IkRvYyI6I3V1aWQgIjY2MzE1NDU0LTIyZTAtNDI4YS04NzMzLTc3YzZjN2I2MjVjYSI=?commentId=e509d33c6cdedf90599a5d3a937336d8e&commentThreadId=e7dbf03c9bd7b0fd3de40ebacbea67ee9)
5
+ ## Installation
7
6
 
8
- ## Quickstart
7
+ Install `@carto/api-client`:
9
8
 
10
9
  ```bash
11
- # install dependencies
12
- yarn
10
+ npm install --save @carto/api-client
11
+ ```
13
12
 
14
- # build package once
15
- yarn build
13
+ ## Documentation
16
14
 
17
- # build package and watch for changes
18
- yarn build --watch
15
+ WORK IN PROGRESS.
19
16
 
20
- # build package, watch for changes, and start a local server for examples
21
- yarn dev
22
- ```
17
+ ## Versioning
18
+
19
+ Package versioning follows [Semantic Versioning 2.0.0](https://semver.org/).
20
+
21
+ ## License
23
22
 
24
- After running `yarn dev`, a browser window should open with links to examples. Unless a different port number is required, the local URL will be `localhost:5173`.
23
+ UNLICENSED. WORK IN PROGRESS.
@@ -666,7 +666,7 @@ const V3_MINOR_VERSION = '3.4';
666
666
  const MAX_GET_LENGTH = 8192;
667
667
  const DEFAULT_PARAMETERS = {
668
668
  v: V3_MINOR_VERSION,
669
- deckglVersion: "0.0.1-0"
669
+ deckglVersion: "0.0.1-1"
670
670
  };
671
671
  const DEFAULT_HEADERS = {
672
672
  Accept: 'application/json',
@@ -617,7 +617,7 @@ const V3_MINOR_VERSION = '3.4';
617
617
  const MAX_GET_LENGTH = 8192;
618
618
  const DEFAULT_PARAMETERS = {
619
619
  v: V3_MINOR_VERSION,
620
- deckglVersion: "0.0.1-0"
620
+ deckglVersion: "0.0.1-1"
621
621
  };
622
622
  const DEFAULT_HEADERS = {
623
623
  Accept: 'application/json',
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@carto/api-client",
3
- "version": "0.0.1-0",
3
+ "version": "0.0.1-1",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "tag": "alpha"
7
7
  },
8
- "packageManager": "yarn@4.2.2",
8
+ "packageManager": "yarn@4.3.1",
9
9
  "author": "Don McCurdy <donmccurdy@carto.com>",
10
10
  "license": "UNLICENSED",
11
11
  "type": "module",
@@ -85,5 +85,5 @@
85
85
  "vitest": "1.6.0",
86
86
  "vue": "^3.4.27"
87
87
  },
88
- "stableVersion": "0.0.0"
88
+ "stableVersion": "0.0.1-0"
89
89
  }