Skip to content

Commit 07d3778

Browse files
update version in package.json
1 parent 7ac2ca0 commit 07d3778

15 files changed

+530
-404
lines changed

.eslintrc

+15-17
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,20 @@
2323
"no-useless-constructor": 0,
2424
"max-classes-per-file": 0,
2525
"lines-between-class-members": 0,
26-
"spaced-comment": [
27-
2,
28-
"always"
29-
],
30-
"indent": [
26+
"no-confusing-arrow": "off",
27+
"function-paren-newline": "off",
28+
"comma-dangle": [
3129
"error",
32-
2
30+
{
31+
"arrays": "only-multiline",
32+
"objects": "only-multiline",
33+
"imports": "only-multiline",
34+
"exports": "only-multiline",
35+
"functions": "never"
36+
}
3337
],
38+
"spaced-comment": [2, "always"],
39+
"indent": ["error", 2],
3440
"quotes": [
3541
2,
3642
"single",
@@ -56,21 +62,13 @@
5662
"class-methods-use-this": "off",
5763
"no-throw-literal": "off",
5864
"no-shadow": "off",
59-
"@typescript-eslint/no-shadow": [
60-
"warn"
61-
],
65+
"@typescript-eslint/no-shadow": ["warn"]
6266
},
6367
"settings": {
6468
"import/resolver": {
6569
"node": {
66-
"paths": [
67-
"src"
68-
],
69-
"extensions": [
70-
".js",
71-
".jsx",
72-
".ts"
73-
]
70+
"paths": ["src"],
71+
"extensions": [".js", ".jsx", ".ts"]
7472
}
7573
}
7674
}

.prettierrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"tabWidth": 2,
33
"useTabs": false,
44
"singleQuote": true,
5-
"trailingComma": "all"
5+
"trailingComma": "none"
66
}

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
# [3.13.24] - 17-06-2024
5+
# [3.13.25] - 17-06-2024
66

77
### Added
88

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@inplayer-org/inplayer.js",
3-
"version": "3.13.24",
3+
"version": "3.13.25",
44
"author": "InPlayer",
55
"license": "MIT",
66
"description": "A Javascript SDK for Inplayer's RESTful API",

src/constants/index.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const API = {
4242
getExternalAsset: (
4343
assetType: string,
4444
externalId: string,
45-
merchantUuid?: string,
45+
merchantUuid?: string
4646
): string => {
4747
let url = `/items/assets/external/${assetType}/${externalId}`;
4848
if (merchantUuid) {
@@ -94,7 +94,7 @@ export const API = {
9494
page: number,
9595
startDate?: string,
9696
endDate?: string,
97-
type?: string,
97+
type?: string
9898
): string => {
9999
let url = `/payments/transactions?exclude=store-payment&size=${size}&page=${page}`;
100100

@@ -148,7 +148,7 @@ export const API = {
148148
merchantUuid: string,
149149
page: number,
150150
size: number,
151-
filter: string,
151+
filter: string
152152
): string =>
153153
`/v2/nfts/${merchantUuid}?filter=${filter}&page=${page}&size=${size}`,
154154
getMerchantNFT: (merchantUuid: string, nftId: number): string =>
@@ -160,5 +160,5 @@ export const API = {
160160
makeReservation: (merchantUuid: string, nftId: number): string =>
161161
`/v2/nfts/${merchantUuid}/${nftId}/reserve`,
162162

163-
featureFlags: '/v2/features',
163+
featureFlags: '/v2/features'
164164
};

0 commit comments

Comments
 (0)