From 56e25ba6e0f05a591e8ea9224198ce9c0cb4a3d4 Mon Sep 17 00:00:00 2001 From: Takashi Kaneda Date: Wed, 31 May 2017 23:29:08 +0900 Subject: [PATCH 1/2] add src/* test/* to .npmignore --- .npmignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.npmignore b/.npmignore index e69de29..58913cc 100644 --- a/.npmignore +++ b/.npmignore @@ -0,0 +1,2 @@ +src/* +test/* From 56f8e4fd62b7189095fc97aed760b45deb7f3217 Mon Sep 17 00:00:00 2001 From: Takashi Kaneda Date: Wed, 31 May 2017 23:41:15 +0900 Subject: [PATCH 2/2] modify README and package description and version --- README.md | 3 ++- package.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 826ac02..849fdff 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![dependencies Status](https://david-dm.org/kndt84/aws-api-gateway-client/status.svg)](https://david-dm.org/kndt84/aws-api-gateway-client) # Overview -Node.js module for AWS API gateway client based on auto-generated JavaScript SDK for browsers. In addition, this module generalizes endpoint specific methods. +A module for AWS API gateway client based on auto-generated JavaScript SDK. This module can be used not only for Node.js but for front-end. Reference: https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-generate-sdk.html @@ -69,6 +69,7 @@ var apigClient = apigClientFactory.newClient({ secretKey: 'SECRET_KEY', sessionToken: 'SESSION_TOKEN', //OPTIONAL: If you are using temporary credentials you must include the session token region: 'eu-west-1' // OPTIONAL: The region where the API is deployed, by default this parameter is set to us-east-1 + systemClockOffset: 0 // OPTIONAL: An offset value in milliseconds to apply to signing time }); ``` diff --git a/package.json b/package.json index 2eef1a3..8744c2e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "aws-api-gateway-client", - "version": "0.2.5", - "description": "Node.js moduel for AWS API Gateway client", + "version": "0.2.6", + "description": "A moduel for AWS API Gateway client", "repository": { "type": "git", "url": "git+https://github.com/kndt84/aws-api-gateway-client.git"