@mathrunet/masamune 1.8.2 → 1.8.4
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 +18 -0
- package/dist/functions.d.ts +44 -44
- package/dist/functions.js +21 -21
- package/dist/functions.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/model_field_value.d.ts +26 -0
- package/dist/lib/model_field_value.js +31 -0
- package/dist/lib/model_field_value.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [1.8.4](https://github.com/mathrunet/node_masamune/compare/v1.8.3...v1.8.4) (2023-11-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### fix
|
|
5
|
+
|
|
6
|
+
* Added ModelTimestamp. ([2ff6bcf](https://github.com/mathrunet/node_masamune/commit/2ff6bcf1f76c8f1ae6f5033b2907a0467f415b4a))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [1.8.3](https://github.com/mathrunet/node_masamune/compare/v1.8.2...v1.8.3) (2023-11-14)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### fix
|
|
14
|
+
|
|
15
|
+
* Modified to allow empty parameters to be specified. ([7f923bc](https://github.com/mathrunet/node_masamune/commit/7f923bcbfcc17079e423db2cbcea7c0da512d2ed))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
1
19
|
## [1.8.2](https://github.com/mathrunet/node_masamune/compare/v1.8.1...v1.8.2) (2023-11-09)
|
|
2
20
|
|
|
3
21
|
|
package/dist/functions.d.ts
CHANGED
|
@@ -10,33 +10,33 @@ export declare const Functions: {
|
|
|
10
10
|
*
|
|
11
11
|
* PUSH通知を送信するためのFunction。
|
|
12
12
|
*/
|
|
13
|
-
readonly sendNotification: ({ timeoutSeconds }
|
|
14
|
-
timeoutSeconds
|
|
13
|
+
readonly sendNotification: ({ timeoutSeconds }?: {
|
|
14
|
+
timeoutSeconds?: number | undefined;
|
|
15
15
|
}) => data.FunctionsData;
|
|
16
16
|
/**
|
|
17
17
|
* Function for periodic processing.
|
|
18
18
|
*
|
|
19
19
|
* 定期的に処理するためのFunction。
|
|
20
20
|
*/
|
|
21
|
-
readonly scheduler: ({ schedule, timeoutSeconds }
|
|
22
|
-
schedule
|
|
23
|
-
timeoutSeconds
|
|
21
|
+
readonly scheduler: ({ schedule, timeoutSeconds }?: {
|
|
22
|
+
schedule?: string | undefined;
|
|
23
|
+
timeoutSeconds?: number | undefined;
|
|
24
24
|
}) => data.FunctionsData;
|
|
25
25
|
/**
|
|
26
26
|
* The text is generated using Open AI's GPT.
|
|
27
27
|
*
|
|
28
28
|
* Open AIのChat GPTを利用して文章を生成します。
|
|
29
29
|
*/
|
|
30
|
-
readonly openAIChatGPT: ({ timeoutSeconds }
|
|
31
|
-
timeoutSeconds
|
|
30
|
+
readonly openAIChatGPT: ({ timeoutSeconds }?: {
|
|
31
|
+
timeoutSeconds?: number | undefined;
|
|
32
32
|
}) => data.FunctionsData;
|
|
33
33
|
/**
|
|
34
34
|
* Obtain an Agora.io security token.
|
|
35
35
|
*
|
|
36
36
|
* Agora.ioのセキュリティトークンを取得します。
|
|
37
37
|
*/
|
|
38
|
-
readonly agoraToken: ({ timeoutSeconds }
|
|
39
|
-
timeoutSeconds
|
|
38
|
+
readonly agoraToken: ({ timeoutSeconds }?: {
|
|
39
|
+
timeoutSeconds?: number | undefined;
|
|
40
40
|
}) => data.FunctionsData;
|
|
41
41
|
/**
|
|
42
42
|
* Convert files generated by Agora.io's cloud recording into an easy-to-handle format from within the app.
|
|
@@ -47,8 +47,8 @@ export declare const Functions: {
|
|
|
47
47
|
*
|
|
48
48
|
* FirebaseStorageにファイルが保存されたタイミングで実行されます。
|
|
49
49
|
*/
|
|
50
|
-
readonly agoraCloudRecording: ({ timeoutSeconds }
|
|
51
|
-
timeoutSeconds
|
|
50
|
+
readonly agoraCloudRecording: ({ timeoutSeconds }?: {
|
|
51
|
+
timeoutSeconds?: number | undefined;
|
|
52
52
|
}) => data.FunctionsData;
|
|
53
53
|
/**
|
|
54
54
|
* Performs various Stripe processes.
|
|
@@ -59,8 +59,8 @@ export declare const Functions: {
|
|
|
59
59
|
*
|
|
60
60
|
* Firestoreとの連携が必須です。Firestoreも利用可能にしてください。
|
|
61
61
|
*/
|
|
62
|
-
readonly stripe: ({ timeoutSeconds }
|
|
63
|
-
timeoutSeconds
|
|
62
|
+
readonly stripe: ({ timeoutSeconds }?: {
|
|
63
|
+
timeoutSeconds?: number | undefined;
|
|
64
64
|
}) => data.FunctionsData;
|
|
65
65
|
/**
|
|
66
66
|
* Receives and processes webhooks from Stripe.
|
|
@@ -75,8 +75,8 @@ export declare const Functions: {
|
|
|
75
75
|
*
|
|
76
76
|
* Firestoreとの連携が必須です。Firestoreも利用可能にしてください。
|
|
77
77
|
*/
|
|
78
|
-
readonly stripeWebhook: ({ timeoutSeconds }
|
|
79
|
-
timeoutSeconds
|
|
78
|
+
readonly stripeWebhook: ({ timeoutSeconds }?: {
|
|
79
|
+
timeoutSeconds?: number | undefined;
|
|
80
80
|
}) => data.FunctionsData;
|
|
81
81
|
/**
|
|
82
82
|
* Receive and process webhooks for Stripe Connect.
|
|
@@ -95,8 +95,8 @@ export declare const Functions: {
|
|
|
95
95
|
*
|
|
96
96
|
* Firestoreとの連携が必須です。Firestoreも利用可能にしてください。
|
|
97
97
|
*/
|
|
98
|
-
readonly stripeWebhookConnect: ({ timeoutSeconds }
|
|
99
|
-
timeoutSeconds
|
|
98
|
+
readonly stripeWebhookConnect: ({ timeoutSeconds }?: {
|
|
99
|
+
timeoutSeconds?: number | undefined;
|
|
100
100
|
}) => data.FunctionsData;
|
|
101
101
|
/**
|
|
102
102
|
* Webhook for proper redirection when 3D Secure authentication is required.
|
|
@@ -111,24 +111,24 @@ export declare const Functions: {
|
|
|
111
111
|
*
|
|
112
112
|
* [returnUrl]にこちらを設定してください。
|
|
113
113
|
*/
|
|
114
|
-
readonly stripeWebhookSecure: ({ timeoutSeconds }
|
|
115
|
-
timeoutSeconds
|
|
114
|
+
readonly stripeWebhookSecure: ({ timeoutSeconds }?: {
|
|
115
|
+
timeoutSeconds?: number | undefined;
|
|
116
116
|
}) => data.FunctionsData;
|
|
117
117
|
/**
|
|
118
118
|
* Send email via Gmail.
|
|
119
119
|
*
|
|
120
120
|
* Gmailでメールを送信します。
|
|
121
121
|
*/
|
|
122
|
-
readonly gmail: ({ timeoutSeconds }
|
|
123
|
-
timeoutSeconds
|
|
122
|
+
readonly gmail: ({ timeoutSeconds }?: {
|
|
123
|
+
timeoutSeconds?: number | undefined;
|
|
124
124
|
}) => data.FunctionsData;
|
|
125
125
|
/**
|
|
126
126
|
* Send mail through SendGrid.
|
|
127
127
|
*
|
|
128
128
|
* SendGridでメールを送信します。
|
|
129
129
|
*/
|
|
130
|
-
readonly sendGrid: ({ timeoutSeconds }
|
|
131
|
-
timeoutSeconds
|
|
130
|
+
readonly sendGrid: ({ timeoutSeconds }?: {
|
|
131
|
+
timeoutSeconds?: number | undefined;
|
|
132
132
|
}) => data.FunctionsData;
|
|
133
133
|
/**
|
|
134
134
|
* After being redirected from [android_auth_code], you will get a refresh token to connect to Google's API. Applications Library System Users Volumes bin cores dev etc home opt private sbin tmp usr var Execute [android_auth_code] after registering the required information.
|
|
@@ -136,8 +136,8 @@ export declare const Functions: {
|
|
|
136
136
|
* [android_auth_code]からリダイレクトされた後、GoogleのAPIに接続するためのリフレッシュトークンを取得します。
|
|
137
137
|
* 必要情報を登録した後[android_auth_code]を実行してください。
|
|
138
138
|
*/
|
|
139
|
-
readonly androidAuthCode: ({ timeoutSeconds }
|
|
140
|
-
timeoutSeconds
|
|
139
|
+
readonly androidAuthCode: ({ timeoutSeconds }?: {
|
|
140
|
+
timeoutSeconds?: number | undefined;
|
|
141
141
|
}) => data.FunctionsData;
|
|
142
142
|
/**
|
|
143
143
|
* After being redirected from [android_auth_code], you will get a refresh token to connect to Google's API. Applications Library System Users Volumes bin cores dev etc home opt private sbin tmp usr var Execute [android_auth_code] after registering the required information.
|
|
@@ -145,72 +145,72 @@ export declare const Functions: {
|
|
|
145
145
|
* [android_auth_code]からリダイレクトされた後、GoogleのAPIに接続するためのリフレッシュトークンを取得します。
|
|
146
146
|
* 必要情報を登録した後[android_auth_code]を実行してください。
|
|
147
147
|
*/
|
|
148
|
-
readonly androidToken: ({ timeoutSeconds }
|
|
149
|
-
timeoutSeconds
|
|
148
|
+
readonly androidToken: ({ timeoutSeconds }?: {
|
|
149
|
+
timeoutSeconds?: number | undefined;
|
|
150
150
|
}) => data.FunctionsData;
|
|
151
151
|
/**
|
|
152
152
|
* Performs a consumption-type in-app purchase. The value of the field in the document specified in [path] is added to [value].
|
|
153
153
|
*
|
|
154
154
|
* 消費型のアプリ内課金を行います。[path]に指定したドキュメント内のフィールドの値を[value]に加算します。
|
|
155
155
|
*/
|
|
156
|
-
readonly consumableVerifyAndroid: ({ timeoutSeconds }
|
|
157
|
-
timeoutSeconds
|
|
156
|
+
readonly consumableVerifyAndroid: ({ timeoutSeconds }?: {
|
|
157
|
+
timeoutSeconds?: number | undefined;
|
|
158
158
|
}) => data.FunctionsData;
|
|
159
159
|
/**
|
|
160
160
|
* Performs a consumption-type in-app purchase. The value of the field in the document specified in [path] is added to [value].
|
|
161
161
|
*
|
|
162
162
|
* 消費型のアプリ内課金を行います。[path]に指定したドキュメント内のフィールドの値を[value]に加算します。
|
|
163
163
|
*/
|
|
164
|
-
readonly consumableVerifyIOS: ({ timeoutSeconds }
|
|
165
|
-
timeoutSeconds
|
|
164
|
+
readonly consumableVerifyIOS: ({ timeoutSeconds }?: {
|
|
165
|
+
timeoutSeconds?: number | undefined;
|
|
166
166
|
}) => data.FunctionsData;
|
|
167
167
|
/**
|
|
168
168
|
* Performs non-consumable in-app purchases. Unlock by setting the value of the field in the document specified in [path] to `true`.
|
|
169
169
|
*
|
|
170
170
|
* 非消費型のアプリ内課金を行います。[path]に指定したドキュメント内のフィールドの値を`true`にすることでアンロックを行います。
|
|
171
171
|
*/
|
|
172
|
-
readonly nonconsumableVerifyAndroid: ({ timeoutSeconds }
|
|
173
|
-
timeoutSeconds
|
|
172
|
+
readonly nonconsumableVerifyAndroid: ({ timeoutSeconds }?: {
|
|
173
|
+
timeoutSeconds?: number | undefined;
|
|
174
174
|
}) => data.FunctionsData;
|
|
175
175
|
/**
|
|
176
176
|
* Performs non-consumable in-app purchases. Unlock by setting the value of the field in the document specified in [path] to `true`.
|
|
177
177
|
*
|
|
178
178
|
* 非消費型のアプリ内課金を行います。[path]に指定したドキュメント内のフィールドの値を`true`にすることでアンロックを行います。
|
|
179
179
|
*/
|
|
180
|
-
readonly nonconsumableVerifyIOS: ({ timeoutSeconds }
|
|
181
|
-
timeoutSeconds
|
|
180
|
+
readonly nonconsumableVerifyIOS: ({ timeoutSeconds }?: {
|
|
181
|
+
timeoutSeconds?: number | undefined;
|
|
182
182
|
}) => data.FunctionsData;
|
|
183
183
|
/**
|
|
184
184
|
* This is a webhook endpoint for Android. you can create a `purchasing` topic in GCP's pub/sub and set the principal to "google-play-developer-notifications@system.gserviceaccount.com" to receive notifications.
|
|
185
185
|
*
|
|
186
186
|
* Android用のWebhookのエンドポイントです。GCPのpub/subに`purchasing`のトピックを作成しプリンシパルに「google-play-developer-notifications@system.gserviceaccount.com」を設定することで通知を受け取ることができるようになります。
|
|
187
187
|
*/
|
|
188
|
-
readonly purchaseWebhookAndroid: ({ topic, timeoutSeconds }
|
|
189
|
-
topic
|
|
190
|
-
timeoutSeconds
|
|
188
|
+
readonly purchaseWebhookAndroid: ({ topic, timeoutSeconds }?: {
|
|
189
|
+
topic?: string | undefined;
|
|
190
|
+
timeoutSeconds?: number | undefined;
|
|
191
191
|
}) => data.FunctionsData;
|
|
192
192
|
/**
|
|
193
193
|
* Webhook endpoint for IOS, which allows you to receive notifications by setting the endpoint in AppStoreConnect's [App]->[App Information]->[App Store Server Notification].
|
|
194
194
|
*
|
|
195
195
|
* IOS用のWebhookのエンドポイントです。AppStoreConnectの[App]->[App情報]->[App Storeサーバ通知]にエンドポイントを設定することで通知を受け取ることができるようになります。
|
|
196
196
|
*/
|
|
197
|
-
readonly purchaseWebhookIOS: ({ timeoutSeconds }
|
|
198
|
-
timeoutSeconds
|
|
197
|
+
readonly purchaseWebhookIOS: ({ timeoutSeconds }?: {
|
|
198
|
+
timeoutSeconds?: number | undefined;
|
|
199
199
|
}) => data.FunctionsData;
|
|
200
200
|
/**
|
|
201
201
|
* Verify subscriptions and add data.
|
|
202
202
|
*
|
|
203
203
|
* サブスクリプションの検証とデータの追加を行います。
|
|
204
204
|
*/
|
|
205
|
-
readonly subscriptionVerifyAndroid: ({ timeoutSeconds }
|
|
206
|
-
timeoutSeconds
|
|
205
|
+
readonly subscriptionVerifyAndroid: ({ timeoutSeconds }?: {
|
|
206
|
+
timeoutSeconds?: number | undefined;
|
|
207
207
|
}) => data.FunctionsData;
|
|
208
208
|
/**
|
|
209
209
|
* Verify subscriptions and add data.
|
|
210
210
|
*
|
|
211
211
|
* サブスクリプションの検証とデータの追加を行います。
|
|
212
212
|
*/
|
|
213
|
-
readonly subscriptionVerifyIOS: ({ timeoutSeconds }
|
|
214
|
-
timeoutSeconds
|
|
213
|
+
readonly subscriptionVerifyIOS: ({ timeoutSeconds }?: {
|
|
214
|
+
timeoutSeconds?: number | undefined;
|
|
215
215
|
}) => data.FunctionsData;
|
|
216
216
|
};
|
package/dist/functions.js
CHANGED
|
@@ -36,25 +36,25 @@ exports.Functions = {
|
|
|
36
36
|
*
|
|
37
37
|
* PUSH通知を送信するためのFunction。
|
|
38
38
|
*/
|
|
39
|
-
sendNotification: ({ timeoutSeconds = 60 }) => new data.FunctionsData("send_notification", require("./functions/send_notification"), timeoutSeconds),
|
|
39
|
+
sendNotification: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("send_notification", require("./functions/send_notification"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
40
40
|
/**
|
|
41
41
|
* Function for periodic processing.
|
|
42
42
|
*
|
|
43
43
|
* 定期的に処理するためのFunction。
|
|
44
44
|
*/
|
|
45
|
-
scheduler: ({ schedule = "every 1 minutes", timeoutSeconds = 60 }) => new data.FunctionsData("scheduler", require("./functions/scheduler"), timeoutSeconds, { "schedule": schedule }),
|
|
45
|
+
scheduler: ({ schedule = "every 1 minutes", timeoutSeconds = 60 } = {}) => new data.FunctionsData("scheduler", require("./functions/scheduler"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60, { "schedule": schedule !== null && schedule !== void 0 ? schedule : "every 1 minutes" }),
|
|
46
46
|
/**
|
|
47
47
|
* The text is generated using Open AI's GPT.
|
|
48
48
|
*
|
|
49
49
|
* Open AIのChat GPTを利用して文章を生成します。
|
|
50
50
|
*/
|
|
51
|
-
openAIChatGPT: ({ timeoutSeconds = 60 }) => new data.FunctionsData("openai_chat_gpt", require("./functions/openai_chat_gpt"), timeoutSeconds),
|
|
51
|
+
openAIChatGPT: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("openai_chat_gpt", require("./functions/openai_chat_gpt"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
52
52
|
/**
|
|
53
53
|
* Obtain an Agora.io security token.
|
|
54
54
|
*
|
|
55
55
|
* Agora.ioのセキュリティトークンを取得します。
|
|
56
56
|
*/
|
|
57
|
-
agoraToken: ({ timeoutSeconds = 60 }) => new data.FunctionsData("agora_token", require("./functions/agora_token"), timeoutSeconds),
|
|
57
|
+
agoraToken: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("agora_token", require("./functions/agora_token"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
58
58
|
/**
|
|
59
59
|
* Convert files generated by Agora.io's cloud recording into an easy-to-handle format from within the app.
|
|
60
60
|
*
|
|
@@ -64,7 +64,7 @@ exports.Functions = {
|
|
|
64
64
|
*
|
|
65
65
|
* FirebaseStorageにファイルが保存されたタイミングで実行されます。
|
|
66
66
|
*/
|
|
67
|
-
agoraCloudRecording: ({ timeoutSeconds = 60 }) => new data.FunctionsData("agora_cloud_recording", require("./functions/agora_cloud_recording"), timeoutSeconds),
|
|
67
|
+
agoraCloudRecording: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("agora_cloud_recording", require("./functions/agora_cloud_recording"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
68
68
|
/**
|
|
69
69
|
* Performs various Stripe processes.
|
|
70
70
|
*
|
|
@@ -74,7 +74,7 @@ exports.Functions = {
|
|
|
74
74
|
*
|
|
75
75
|
* Firestoreとの連携が必須です。Firestoreも利用可能にしてください。
|
|
76
76
|
*/
|
|
77
|
-
stripe: ({ timeoutSeconds = 60 }) => new data.FunctionsData("stripe", require("./functions/stripe"), timeoutSeconds),
|
|
77
|
+
stripe: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("stripe", require("./functions/stripe"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
78
78
|
/**
|
|
79
79
|
* Receives and processes webhooks from Stripe.
|
|
80
80
|
*
|
|
@@ -88,7 +88,7 @@ exports.Functions = {
|
|
|
88
88
|
*
|
|
89
89
|
* Firestoreとの連携が必須です。Firestoreも利用可能にしてください。
|
|
90
90
|
*/
|
|
91
|
-
stripeWebhook: ({ timeoutSeconds = 60 }) => new data.FunctionsData("stripe_webhook", require("./functions/stripe_webhook"), timeoutSeconds),
|
|
91
|
+
stripeWebhook: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("stripe_webhook", require("./functions/stripe_webhook"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
92
92
|
/**
|
|
93
93
|
* Receive and process webhooks for Stripe Connect.
|
|
94
94
|
*
|
|
@@ -106,7 +106,7 @@ exports.Functions = {
|
|
|
106
106
|
*
|
|
107
107
|
* Firestoreとの連携が必須です。Firestoreも利用可能にしてください。
|
|
108
108
|
*/
|
|
109
|
-
stripeWebhookConnect: ({ timeoutSeconds = 60 }) => new data.FunctionsData("stripe_webhook_connect", require("./functions/stripe_webhook_connect"), timeoutSeconds),
|
|
109
|
+
stripeWebhookConnect: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("stripe_webhook_connect", require("./functions/stripe_webhook_connect"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
110
110
|
/**
|
|
111
111
|
* Webhook for proper redirection when 3D Secure authentication is required.
|
|
112
112
|
*
|
|
@@ -120,80 +120,80 @@ exports.Functions = {
|
|
|
120
120
|
*
|
|
121
121
|
* [returnUrl]にこちらを設定してください。
|
|
122
122
|
*/
|
|
123
|
-
stripeWebhookSecure: ({ timeoutSeconds = 60 }) => new data.FunctionsData("stripe_webhook_secure", require("./functions/stripe_webhook_secure"), timeoutSeconds),
|
|
123
|
+
stripeWebhookSecure: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("stripe_webhook_secure", require("./functions/stripe_webhook_secure"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
124
124
|
/**
|
|
125
125
|
* Send email via Gmail.
|
|
126
126
|
*
|
|
127
127
|
* Gmailでメールを送信します。
|
|
128
128
|
*/
|
|
129
|
-
gmail: ({ timeoutSeconds = 60 }) => new data.FunctionsData("gmail", require("./functions/gmail"), timeoutSeconds),
|
|
129
|
+
gmail: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("gmail", require("./functions/gmail"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
130
130
|
/**
|
|
131
131
|
* Send mail through SendGrid.
|
|
132
132
|
*
|
|
133
133
|
* SendGridでメールを送信します。
|
|
134
134
|
*/
|
|
135
|
-
sendGrid: ({ timeoutSeconds = 60 }) => new data.FunctionsData("send_grid", require("./functions/send_grid"), timeoutSeconds),
|
|
135
|
+
sendGrid: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("send_grid", require("./functions/send_grid"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
136
136
|
/**
|
|
137
137
|
* After being redirected from [android_auth_code], you will get a refresh token to connect to Google's API. Applications Library System Users Volumes bin cores dev etc home opt private sbin tmp usr var Execute [android_auth_code] after registering the required information.
|
|
138
138
|
*
|
|
139
139
|
* [android_auth_code]からリダイレクトされた後、GoogleのAPIに接続するためのリフレッシュトークンを取得します。
|
|
140
140
|
* 必要情報を登録した後[android_auth_code]を実行してください。
|
|
141
141
|
*/
|
|
142
|
-
androidAuthCode: ({ timeoutSeconds = 60 }) => new data.FunctionsData("android_auth_code", require("./functions/android_auth_code"), timeoutSeconds),
|
|
142
|
+
androidAuthCode: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("android_auth_code", require("./functions/android_auth_code"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
143
143
|
/**
|
|
144
144
|
* After being redirected from [android_auth_code], you will get a refresh token to connect to Google's API. Applications Library System Users Volumes bin cores dev etc home opt private sbin tmp usr var Execute [android_auth_code] after registering the required information.
|
|
145
145
|
*
|
|
146
146
|
* [android_auth_code]からリダイレクトされた後、GoogleのAPIに接続するためのリフレッシュトークンを取得します。
|
|
147
147
|
* 必要情報を登録した後[android_auth_code]を実行してください。
|
|
148
148
|
*/
|
|
149
|
-
androidToken: ({ timeoutSeconds = 60 }) => new data.FunctionsData("android_token", require("./functions/android_token"), timeoutSeconds),
|
|
149
|
+
androidToken: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("android_token", require("./functions/android_token"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
150
150
|
/**
|
|
151
151
|
* Performs a consumption-type in-app purchase. The value of the field in the document specified in [path] is added to [value].
|
|
152
152
|
*
|
|
153
153
|
* 消費型のアプリ内課金を行います。[path]に指定したドキュメント内のフィールドの値を[value]に加算します。
|
|
154
154
|
*/
|
|
155
|
-
consumableVerifyAndroid: ({ timeoutSeconds = 60 }) => new data.FunctionsData("consumable_verify_android", require("./functions/consumable_verify_android"), timeoutSeconds),
|
|
155
|
+
consumableVerifyAndroid: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("consumable_verify_android", require("./functions/consumable_verify_android"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
156
156
|
/**
|
|
157
157
|
* Performs a consumption-type in-app purchase. The value of the field in the document specified in [path] is added to [value].
|
|
158
158
|
*
|
|
159
159
|
* 消費型のアプリ内課金を行います。[path]に指定したドキュメント内のフィールドの値を[value]に加算します。
|
|
160
160
|
*/
|
|
161
|
-
consumableVerifyIOS: ({ timeoutSeconds = 60 }) => new data.FunctionsData("consumable_verify_ios", require("./functions/consumable_verify_ios"), timeoutSeconds),
|
|
161
|
+
consumableVerifyIOS: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("consumable_verify_ios", require("./functions/consumable_verify_ios"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
162
162
|
/**
|
|
163
163
|
* Performs non-consumable in-app purchases. Unlock by setting the value of the field in the document specified in [path] to `true`.
|
|
164
164
|
*
|
|
165
165
|
* 非消費型のアプリ内課金を行います。[path]に指定したドキュメント内のフィールドの値を`true`にすることでアンロックを行います。
|
|
166
166
|
*/
|
|
167
|
-
nonconsumableVerifyAndroid: ({ timeoutSeconds = 60 }) => new data.FunctionsData("nonconsumable_verify_android", require("./functions/nonconsumable_verify_android"), timeoutSeconds),
|
|
167
|
+
nonconsumableVerifyAndroid: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("nonconsumable_verify_android", require("./functions/nonconsumable_verify_android"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
168
168
|
/**
|
|
169
169
|
* Performs non-consumable in-app purchases. Unlock by setting the value of the field in the document specified in [path] to `true`.
|
|
170
170
|
*
|
|
171
171
|
* 非消費型のアプリ内課金を行います。[path]に指定したドキュメント内のフィールドの値を`true`にすることでアンロックを行います。
|
|
172
172
|
*/
|
|
173
|
-
nonconsumableVerifyIOS: ({ timeoutSeconds = 60 }) => new data.FunctionsData("nonconsumable_verify_ios", require("./functions/nonconsumable_verify_ios"), timeoutSeconds),
|
|
173
|
+
nonconsumableVerifyIOS: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("nonconsumable_verify_ios", require("./functions/nonconsumable_verify_ios"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
174
174
|
/**
|
|
175
175
|
* This is a webhook endpoint for Android. you can create a `purchasing` topic in GCP's pub/sub and set the principal to "google-play-developer-notifications@system.gserviceaccount.com" to receive notifications.
|
|
176
176
|
*
|
|
177
177
|
* Android用のWebhookのエンドポイントです。GCPのpub/subに`purchasing`のトピックを作成しプリンシパルに「google-play-developer-notifications@system.gserviceaccount.com」を設定することで通知を受け取ることができるようになります。
|
|
178
178
|
*/
|
|
179
|
-
purchaseWebhookAndroid: ({ topic = "purchasing", timeoutSeconds = 60 }) => new data.FunctionsData("purchase_webhook_android", require("./functions/purchase_webhook_android"), timeoutSeconds, { "topic": topic }),
|
|
179
|
+
purchaseWebhookAndroid: ({ topic = "purchasing", timeoutSeconds = 60 } = {}) => new data.FunctionsData("purchase_webhook_android", require("./functions/purchase_webhook_android"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60, { "topic": topic !== null && topic !== void 0 ? topic : "purchasing" }),
|
|
180
180
|
/**
|
|
181
181
|
* Webhook endpoint for IOS, which allows you to receive notifications by setting the endpoint in AppStoreConnect's [App]->[App Information]->[App Store Server Notification].
|
|
182
182
|
*
|
|
183
183
|
* IOS用のWebhookのエンドポイントです。AppStoreConnectの[App]->[App情報]->[App Storeサーバ通知]にエンドポイントを設定することで通知を受け取ることができるようになります。
|
|
184
184
|
*/
|
|
185
|
-
purchaseWebhookIOS: ({ timeoutSeconds = 60 }) => new data.FunctionsData("purchase_webhook_ios", require("./functions/purchase_webhook_ios"), timeoutSeconds),
|
|
185
|
+
purchaseWebhookIOS: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("purchase_webhook_ios", require("./functions/purchase_webhook_ios"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
186
186
|
/**
|
|
187
187
|
* Verify subscriptions and add data.
|
|
188
188
|
*
|
|
189
189
|
* サブスクリプションの検証とデータの追加を行います。
|
|
190
190
|
*/
|
|
191
|
-
subscriptionVerifyAndroid: ({ timeoutSeconds = 60 }) => new data.FunctionsData("subscription_verify_android", require("./functions/subscription_verify_android"), timeoutSeconds),
|
|
191
|
+
subscriptionVerifyAndroid: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("subscription_verify_android", require("./functions/subscription_verify_android"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
192
192
|
/**
|
|
193
193
|
* Verify subscriptions and add data.
|
|
194
194
|
*
|
|
195
195
|
* サブスクリプションの検証とデータの追加を行います。
|
|
196
196
|
*/
|
|
197
|
-
subscriptionVerifyIOS: ({ timeoutSeconds = 60 }) => new data.FunctionsData("subscription_verify_ios", require("./functions/subscription_verify_ios"), timeoutSeconds),
|
|
197
|
+
subscriptionVerifyIOS: ({ timeoutSeconds = 60 } = {}) => new data.FunctionsData("subscription_verify_ios", require("./functions/subscription_verify_ios"), timeoutSeconds !== null && timeoutSeconds !== void 0 ? timeoutSeconds : 60),
|
|
198
198
|
};
|
|
199
199
|
//# sourceMappingURL=functions.js.map
|
package/dist/functions.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"functions.js","sourceRoot":"","sources":["../src/functions.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2DAA6C;AAE7C;;;;GAIG;AACU,QAAA,SAAS,GAAG;IACvB;;;;OAIG;IACH,gBAAgB,EAAE,CAAC,EAAE,cAAc,GAAG,EAAE,
|
|
1
|
+
{"version":3,"file":"functions.js","sourceRoot":"","sources":["../src/functions.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,sDAAwC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,sDAAwC;AAGxC,8CAA4B;AAC5B,4CAA0B;AAC1B,qDAAmC;AACnC,uEAAqD;AACrD,sEAAoD;AACpD,mEAAiD;AACjD,0DAAwC;AACxC,8CAA4B;AAC5B,gEAA8C;AAC9C,qDAAqC;AACrC,4DAA4C;AAC5C,wEAAwD;AAExD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,MAAM,CAAC,OAAY,EAAE,MAAuB,EAAE,eAAqC;IAC/F,KAAK,CAAC,aAAa,EAAE,CAAC;IACtB,KAAK,MAAM,IAAI,IAAI,eAAe,EAAE;QAChC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,IAAI,OAAO,CAAC,GAAG,CAAC,aAAa,KAAK,IAAI,CAAC,EAAE,EAAE;YACrE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;SACpD;KACJ;AACL,CAAC;AAPD,wBAOC"}
|
|
@@ -53,4 +53,30 @@ export declare class ModelFieldValue {
|
|
|
53
53
|
}): {
|
|
54
54
|
[key: string]: any;
|
|
55
55
|
};
|
|
56
|
+
/**
|
|
57
|
+
* Class for generating data for `ModelTimestamp`.
|
|
58
|
+
*
|
|
59
|
+
* `ModelTimestamp`用のデータを生成するためのクラス。
|
|
60
|
+
*
|
|
61
|
+
* @param {string} key
|
|
62
|
+
* Data key.
|
|
63
|
+
*
|
|
64
|
+
* データのキー。
|
|
65
|
+
*
|
|
66
|
+
* @param {Date} date
|
|
67
|
+
* Date and time.
|
|
68
|
+
*
|
|
69
|
+
* 日時。
|
|
70
|
+
*
|
|
71
|
+
* @returns { [key: string]: any }
|
|
72
|
+
* Data for `ModelCounter`.
|
|
73
|
+
*
|
|
74
|
+
* `ModelCounter`用のデータ。
|
|
75
|
+
*/
|
|
76
|
+
static modelTimestamp({ key, date, }: {
|
|
77
|
+
key: string;
|
|
78
|
+
date?: Date | undefined;
|
|
79
|
+
}): {
|
|
80
|
+
[key: string]: any;
|
|
81
|
+
};
|
|
56
82
|
}
|
|
@@ -68,6 +68,37 @@ class ModelFieldValue {
|
|
|
68
68
|
};
|
|
69
69
|
return res;
|
|
70
70
|
}
|
|
71
|
+
/**
|
|
72
|
+
* Class for generating data for `ModelTimestamp`.
|
|
73
|
+
*
|
|
74
|
+
* `ModelTimestamp`用のデータを生成するためのクラス。
|
|
75
|
+
*
|
|
76
|
+
* @param {string} key
|
|
77
|
+
* Data key.
|
|
78
|
+
*
|
|
79
|
+
* データのキー。
|
|
80
|
+
*
|
|
81
|
+
* @param {Date} date
|
|
82
|
+
* Date and time.
|
|
83
|
+
*
|
|
84
|
+
* 日時。
|
|
85
|
+
*
|
|
86
|
+
* @returns { [key: string]: any }
|
|
87
|
+
* Data for `ModelCounter`.
|
|
88
|
+
*
|
|
89
|
+
* `ModelCounter`用のデータ。
|
|
90
|
+
*/
|
|
91
|
+
static modelTimestamp({ key, date, }) {
|
|
92
|
+
const res = {};
|
|
93
|
+
date !== null && date !== void 0 ? date : (date = new Date());
|
|
94
|
+
res[key] = date;
|
|
95
|
+
res[`#${key}`] = {
|
|
96
|
+
"@time": date.getTime(),
|
|
97
|
+
"@target": key,
|
|
98
|
+
"@type": "ModelTimestamp",
|
|
99
|
+
};
|
|
100
|
+
return res;
|
|
101
|
+
}
|
|
71
102
|
}
|
|
72
103
|
exports.ModelFieldValue = ModelFieldValue;
|
|
73
104
|
//# sourceMappingURL=model_field_value.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model_field_value.js","sourceRoot":"","sources":["../../src/lib/model_field_value.ts"],"names":[],"mappings":";;;AACA;;;;GAIG;AACH,MAAa,eAAe;IACxB;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,UAAU,CAAC,EACd,IAAI,GAGP;QACG,MAAM,GAAG,GAA2B,EAAE,CAAC;QACvC,MAAM,MAAM,GAA+B,EAAE,CAAC;QAC9C,IAAI,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,2BAA2B,EAAE,CAAC,iBAAiB,EAAE,CAAC,UAAU,EAAE,CAAC,yBAAyB,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;YAC3I,MAAM,MAAM,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC;YACxB,IAAI,MAAM,CAAC,MAAM,IAAI,CAAC,EAAE;gBACpB,OAAO;aACV;YACD,MAAM,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;QAC1B,CAAC,CAAC,CAAC;QACH,GAAG,CAAC,SAAS,CAAC,GAAG,MAAM,CAAC;QACxB,OAAO,GAAG,CAAC;IACf,CAAC;IACD;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,MAAM,CAAC,YAAY,CAAC,EAChB,GAAG,EAAE,KAAK,EAAE,SAAS,GAGxB;QACG,MAAM,GAAG,GAA2B,EAAE,CAAC;QACvC,GAAG,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;QACjB,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,GAAG;YACb,YAAY,EAAE,SAAS,aAAT,SAAS,cAAT,SAAS,GAAI,CAAC;YAC5B,SAAS,EAAE,GAAG;YACd,OAAO,EAAE,cAAc;YACvB,QAAQ,EAAE,KAAK;SAClB,CAAC;QACF,OAAO,GAAG,CAAC;IACf,CAAC;CACJ;
|
|
1
|
+
{"version":3,"file":"model_field_value.js","sourceRoot":"","sources":["../../src/lib/model_field_value.ts"],"names":[],"mappings":";;;AACA;;;;GAIG;AACH,MAAa,eAAe;IACxB;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,UAAU,CAAC,EACd,IAAI,GAGP;QACG,MAAM,GAAG,GAA2B,EAAE,CAAC;QACvC,MAAM,MAAM,GAA+B,EAAE,CAAC;QAC9C,IAAI,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,2BAA2B,EAAE,CAAC,iBAAiB,EAAE,CAAC,UAAU,EAAE,CAAC,yBAAyB,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;YAC3I,MAAM,MAAM,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC;YACxB,IAAI,MAAM,CAAC,MAAM,IAAI,CAAC,EAAE;gBACpB,OAAO;aACV;YACD,MAAM,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;QAC1B,CAAC,CAAC,CAAC;QACH,GAAG,CAAC,SAAS,CAAC,GAAG,MAAM,CAAC;QACxB,OAAO,GAAG,CAAC;IACf,CAAC;IACD;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,MAAM,CAAC,YAAY,CAAC,EAChB,GAAG,EAAE,KAAK,EAAE,SAAS,GAGxB;QACG,MAAM,GAAG,GAA2B,EAAE,CAAC;QACvC,GAAG,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;QACjB,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,GAAG;YACb,YAAY,EAAE,SAAS,aAAT,SAAS,cAAT,SAAS,GAAI,CAAC;YAC5B,SAAS,EAAE,GAAG;YACd,OAAO,EAAE,cAAc;YACvB,QAAQ,EAAE,KAAK;SAClB,CAAC;QACF,OAAO,GAAG,CAAC;IACf,CAAC;IAED;;;;;;;;;;;;;;;;;;;OAmBG;IACH,MAAM,CAAC,cAAc,CAAC,EAClB,GAAG,EAAE,IAAI,GAGZ;QACG,MAAM,GAAG,GAA2B,EAAE,CAAC;QACvC,IAAI,aAAJ,IAAI,cAAJ,IAAI,IAAJ,IAAI,GAAK,IAAI,IAAI,EAAE,EAAC;QACpB,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;QAChB,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,GAAG;YACb,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;YACvB,SAAS,EAAE,GAAG;YACd,OAAO,EAAE,gBAAgB;SAC5B,CAAC;QACF,OAAO,GAAG,CAAC;IACf,CAAC;CACJ;AA1GD,0CA0GC"}
|