@ibiliaze/stringman 3.14.0 → 3.14.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/dist/seat.d.ts CHANGED
@@ -11,5 +11,5 @@ export declare const getFromItemId: (itemId: string) => {
11
11
  fixtureId: string;
12
12
  sectionId: string;
13
13
  seatId: string;
14
- categoryId: String;
14
+ categoryId: string;
15
15
  };
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@ibiliaze/stringman",
3
- "version": "3.14.0",
3
+ "version": "3.14.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
8
  "build": "tsc",
9
9
  "pub": "npm publish --access public",
10
- "git": "git add .; git commit -m 'changes'; git tag -a v3.14.0 -m 'v3.14.0'; git push origin v3.14.0; git push",
10
+ "git": "git add .; git commit -m 'changes'; git tag -a v3.14.1 -m 'v3.14.1'; git push origin v3.14.1; git push",
11
11
  "push": "npm run build; npm run git; npm run pub"
12
12
  },
13
13
  "author": "Ibi Hasanli",
package/src/seat.ts CHANGED
@@ -17,4 +17,4 @@ export const getItemId = ({
17
17
 
18
18
  export const getFromItemId = (
19
19
  itemId: string
20
- ): { fixtureId: string; sectionId: string; seatId: string; categoryId: String } => JSON.parse(itemId);
20
+ ): { fixtureId: string; sectionId: string; seatId: string; categoryId: string } => JSON.parse(itemId);