Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4bfd437

Browse files
committedJan 11, 2024
fix: 📦 updates axios version
1 parent ef3995d commit 4bfd437

File tree

4 files changed

+162
-241
lines changed

4 files changed

+162
-241
lines changed
 

‎.talismanrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
threshold: medium
22
fileignoreconfig:
33
- filename: package-lock.json
4-
checksum: 9a7bec9513834a0fc7db31b9a312ec35980600415c04f0d404e1370cfce1ef1b
4+
checksum: 2a2327aabd3f6eacf41a8e8bb3dd5afdab892683cfd15aac308f43c14108b824
55
version: ""

‎lib/stack/asset/index.js

+14-14
Original file line numberDiff line numberDiff line change
@@ -206,20 +206,20 @@ export function Asset (http, data = {}) {
206206
}
207207
}
208208
/**
209-
* @description The Query on Asset will allow to fetch details of all or specific Asset.
210-
* @memberof Asset
211-
* @param {Object} params - URI parameters
212-
* @prop {Object} params.query - Queries that you can use to fetch filtered results.
213-
* @func query
214-
* @returns {Array<Asset>} Array of Asset.
215-
*
216-
* @example
217-
* import * as contentstack from '@contentstack/management'
218-
* const client = contentstack.client()
219-
*
220-
* client.stack({ api_key: 'api_key'}).asset().query({ query: { filename: 'Asset Name' } }).find()
221-
* .then((asset) => console.log(asset))
222-
*/
209+
* @description The Query on Asset will allow to fetch details of all or specific Asset.
210+
* @memberof Asset
211+
* @param {Object} params - URI parameters
212+
* @prop {Object} params.query - Queries that you can use to fetch filtered results.
213+
* @func query
214+
* @returns {Array<Asset>} Array of Asset.
215+
*
216+
* @example
217+
* import * as contentstack from '@contentstack/management'
218+
* const client = contentstack.client()
219+
*
220+
* client.stack({ api_key: 'api_key'}).asset().query({ query: { filename: 'Asset Name' } }).find()
221+
* .then((asset) => console.log(asset))
222+
*/
223223
this.query = query({ http: http, wrapperCollection: AssetCollection })
224224
}
225225
/**

‎package-lock.json

+146-224
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"author": "Contentstack",
5151
"license": "MIT",
5252
"dependencies": {
53-
"axios": "^1.6.0",
53+
"axios": "^1.6.5",
5454
"form-data": "^3.0.1",
5555
"lodash": "^4.17.21",
5656
"qs": "^6.11.2"
@@ -98,7 +98,6 @@
9898
"rimraf": "^2.7.1",
9999
"sinon": "^7.3.2",
100100
"string-replace-loader": "^3.1.0",
101-
"taffydb": "^2.7.3",
102101
"ts-jest": "^28.0.3",
103102
"typescript": "^4.7.2",
104103
"webpack": "^5.72.1",

0 commit comments

Comments
 (0)
Please sign in to comment.