line-pay-merchant
Advanced tools
Comparing version 0.8.0 to 0.9.0
@@ -0,1 +1,10 @@ | ||
# [0.9.0](https://github.com/enylin/line-pay-merchant/compare/v0.8.0...v0.9.0) (2022-06-09) | ||
### Features | ||
* **docs:** add Google Analytics to document website ([a1d47c0](https://github.com/enylin/line-pay-merchant/commit/a1d47c0a552dbe5410f5ea2faef7077040e0604c)) | ||
# [0.8.0](https://github.com/enylin/line-pay-merchant/compare/v0.7.0...v0.8.0) (2022-02-10) | ||
@@ -2,0 +11,0 @@ |
@@ -1,3 +0,4 @@ | ||
import { defineUserConfig } from 'vuepress' | ||
import type { DefaultThemeOptions } from 'vuepress' | ||
import { defineUserConfig, defaultTheme } from 'vuepress' | ||
import { sitemapPlugin } from 'vuepress-plugin-sitemap2' | ||
import { googleAnalyticsPlugin } from '@vuepress/plugin-google-analytics' | ||
import path from 'path' | ||
@@ -15,3 +16,3 @@ | ||
}, | ||
"datePublished" : "2022-01-09T06:15:47", | ||
"datePublished" : "2022-06-09T06:15:47", | ||
"publisher" : { | ||
@@ -31,3 +32,3 @@ "@type" : "Organization", | ||
export default defineUserConfig<DefaultThemeOptions>({ | ||
export default defineUserConfig({ | ||
// site config | ||
@@ -57,5 +58,13 @@ base: '/line-pay-merchant/', | ||
plugins: [ | ||
googleAnalyticsPlugin({ | ||
id: 'G-Z8SDFSHFWV' | ||
}), | ||
sitemapPlugin({ | ||
hostname: 'https://enylin.github.io/line-pay-merchant' | ||
}) | ||
], | ||
// theme and its config | ||
theme: '@vuepress/theme-default', | ||
themeConfig: { | ||
theme: defaultTheme({ | ||
navbar: [ | ||
@@ -150,3 +159,3 @@ { | ||
} | ||
} | ||
}) | ||
}) |
@@ -21,7 +21,7 @@ # Check Payment Status API | ||
@[code{6-18} ts](@/line-pay-api/check-payment-status.ts) | ||
@[code{6-17} ts](@/line-pay-api/check-payment-status.ts) | ||
### Response Body | ||
@[code{21-44} ts](@/line-pay-api/check-payment-status.ts) | ||
@[code{20-43} ts](@/line-pay-api/check-payment-status.ts) | ||
@@ -54,5 +54,4 @@ ### Return Code | ||
.send({ | ||
params: { | ||
transactionId: '2021121600698709510' | ||
} | ||
transactionId: '2021121600698709510', | ||
params: {} | ||
}) | ||
@@ -59,0 +58,0 @@ ``` |
@@ -56,5 +56,4 @@ # Check RegKey API | ||
.send({ | ||
params: { | ||
regKey: 'RK9A2BA1942EQTO' | ||
} | ||
regKey: 'RK9A2BA1942EQTO', | ||
params: {} | ||
}) | ||
@@ -61,0 +60,0 @@ ``` |
{ | ||
"name": "line-pay-merchant", | ||
"version": "0.8.0", | ||
"version": "0.9.0", | ||
"description": "LINE Pay Merchant API V3", | ||
@@ -66,2 +66,3 @@ "main": "dist/index.js", | ||
"@vuepress/plugin-back-to-top": "^2.0.0-beta.30", | ||
"@vuepress/plugin-google-analytics": "^2.0.0-beta.46", | ||
"axios-mock-adapter": "^1.20.0", | ||
@@ -82,3 +83,4 @@ "commitizen": "^4.2.4", | ||
"typescript": "^4.5.2", | ||
"vuepress": "^2.0.0-beta.29" | ||
"vuepress": "^2.0.0-beta.46", | ||
"vuepress-plugin-sitemap2": "^2.0.0-beta.79" | ||
}, | ||
@@ -91,3 +93,3 @@ "config": { | ||
"dependencies": { | ||
"axios": "^0.24.0", | ||
"axios": "^0.26.0", | ||
"crypto-js": "^4.1.1", | ||
@@ -94,0 +96,0 @@ "uuid": "^8.3.2" |
Sorry, the diff of this file is not supported yet
7152
362320
28
177
+ Addedaxios@0.26.1(transitive)
- Removedaxios@0.24.0(transitive)
Updatedaxios@^0.26.0