Skip to content

Commit

Permalink
Build fixes and bump to version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hide-on-bush-x committed Apr 18, 2022
1 parent 6a9f913 commit 02a6422
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@masa-finance/tools",
"version": "0.1.0",
"version": "0.1.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/common/rest/accounts/index.ts
Expand Up @@ -18,6 +18,7 @@ const parameters: Parameter[] = [
description: '32',
required: 'yes',
default: 'test',
dataType: "string"
},
];

Expand Down
1 change: 1 addition & 0 deletions src/common/rest/auth/index.ts
Expand Up @@ -21,6 +21,7 @@ const parameters: Parameter[] = [
description: '32',
required: 'yes',
default: 'test',
dataType: 'string'
},
];

Expand Down
9 changes: 8 additions & 1 deletion src/common/rest/post-country/index.ts
Expand Up @@ -21,48 +21,55 @@ const parameters: Parameter[] = [
description: '',
required: 'yes',
default: '',
dataType: 'string',
},
{
key: 2,
name: 'phoneCode',
description: '',
required: 'yes',
default: '',
dataType: 'string',
},
{
key: 3,
name: 'iso2',
description: '',
required: 'yes',
default: '',
dataType: 'string',
},
{
key: 4,
name: 'iso3',
description: '',
required: 'yes',
default: '',
dataType: 'string',
},
{
key: 5,
name: 'abbreviation',
description: '',
required: 'yes',
default: '',
dataType: 'string',
},
{
key: 6,
name: 'name',
description: '',
required: 'yes',
default: '',
dataType: 'string',
},
{
key: 7,
name: 'version',
description: '',
required: 'yes',
default: '',
dataType: 'number',
},
];

Expand All @@ -73,4 +80,4 @@ export const metadata: MethodMetadata = {
name: path,
method: 'POST',
parameters,
};
};
1 change: 1 addition & 0 deletions src/common/rest/post-vezgo-accounts/index.ts
Expand Up @@ -21,6 +21,7 @@ const parameters: Parameter[] = [
description: 'accounts list',
required: 'yes',
default: '',
dataType: 'string',
},
];

Expand Down
1 change: 1 addition & 0 deletions src/common/rest/post-vezgo-transactions/index.ts
Expand Up @@ -21,6 +21,7 @@ const parameters: Parameter[] = [
description: 'transactions list',
required: 'yes',
default: '',
dataType: 'string'
},
];

Expand Down

0 comments on commit 02a6422

Please sign in to comment.