@cinerino/sdk 3.22.0-alpha.4 → 3.24.0-alpha.0
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/CHANGELOG.md +21 -4
- package/example/browser/lib/bundle.js +88 -203
- package/example/playground/.gcloudignore +17 -0
- package/example/playground/.gitignore +15 -0
- package/example/playground/app.js +81 -0
- package/example/playground/package.json +26 -0
- package/example/playground/public/index.html +573 -0
- package/example/playground/public/lib/bundle.js +22916 -0
- package/example/playground/public/signIn.html +18 -0
- package/example/playground/public/signOut.html +15 -0
- package/example/playground/test/app.test.js +15 -0
- package/example/src/person/manageProfile.ts +6 -6
- package/example/src/st/person/getProfile.ts +38 -0
- package/example/src/st/person/searchMyOrders.ts +51 -0
- package/example/src/st/searchMovies.ts +52 -0
- package/example/src/st/searchScreeningEventSeries.ts +54 -0
- package/lib/auth/oAuth2client.js +2 -2
- package/lib/bundle.js +129 -205
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -8,12 +8,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
|
8
8
|
|
|
9
9
|
### Added
|
|
10
10
|
|
|
11
|
+
- イベントIDと確認番号での注文照会を追加
|
|
12
|
+
|
|
11
13
|
### Changed
|
|
12
14
|
|
|
13
|
-
-
|
|
14
|
-
- 決済承認レスポンスを最適化
|
|
15
|
-
- ttts予約承認を標準予約承認パラメータにも対応
|
|
16
|
-
- 予約承認にexpectsMinimalResponseパラメータを追加
|
|
15
|
+
- 経理レポート検索条件拡張
|
|
17
16
|
|
|
18
17
|
### Deprecated
|
|
19
18
|
|
|
@@ -23,6 +22,24 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
|
23
22
|
|
|
24
23
|
### Security
|
|
25
24
|
|
|
25
|
+
## v3.23.0 - 2021-10-04
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- プロダクトのcreateIfNotExistを追加
|
|
30
|
+
|
|
31
|
+
## v3.22.0 - 2021-09-26
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- 口座ルーティングを最適化(:accountTypeを削除)
|
|
36
|
+
- 決済承認レスポンスを最適化
|
|
37
|
+
- 予約承認にexpectsMinimalResponseパラメータを追加
|
|
38
|
+
|
|
39
|
+
### Removed
|
|
40
|
+
|
|
41
|
+
- ttts専用注文取引サービスを廃止
|
|
42
|
+
|
|
26
43
|
## v3.21.0 - 2021-09-13
|
|
27
44
|
|
|
28
45
|
### Removed
|