@mathrunet/masamune_cloudflare 3.1.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 +361 -0
- package/LICENSE +21 -0
- package/README.md +70 -0
- package/dist/functions/test.d.ts +1 -0
- package/dist/functions/test.js +71 -0
- package/dist/functions/test.js.map +1 -0
- package/dist/functions.d.ts +15 -0
- package/dist/functions.js +18 -0
- package/dist/functions.js.map +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +77 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/api.d.ts +183 -0
- package/dist/lib/api.js +144 -0
- package/dist/lib/api.js.map +1 -0
- package/dist/lib/exntensions/firestore.extension.d.ts +247 -0
- package/dist/lib/exntensions/firestore.extension.js +386 -0
- package/dist/lib/exntensions/firestore.extension.js.map +1 -0
- package/dist/lib/exntensions/string.extension.d.ts +214 -0
- package/dist/lib/exntensions/string.extension.js +223 -0
- package/dist/lib/exntensions/string.extension.js.map +1 -0
- package/dist/lib/model_field_value/converters/basic_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/basic_converter.js +51 -0
- package/dist/lib/model_field_value/converters/basic_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/enum_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/enum_converter.js +51 -0
- package/dist/lib/model_field_value/converters/enum_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_counter_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_counter_converter.js +216 -0
- package/dist/lib/model_field_value/converters/model_counter_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_date_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_date_converter.js +271 -0
- package/dist/lib/model_field_value/converters/model_date_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_date_range_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_date_range_converter.js +225 -0
- package/dist/lib/model_field_value/converters/model_date_range_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_geo_value_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_geo_value_converter.js +216 -0
- package/dist/lib/model_field_value/converters/model_geo_value_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_image_uri_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_image_uri_converter.js +184 -0
- package/dist/lib/model_field_value/converters/model_image_uri_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_locale_converter.d.ts +51 -0
- package/dist/lib/model_field_value/converters/model_locale_converter.js +228 -0
- package/dist/lib/model_field_value/converters/model_locale_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_localized_value_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_localized_value_converter.js +145 -0
- package/dist/lib/model_field_value/converters/model_localized_value_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_ref_base_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_ref_base_converter.js +159 -0
- package/dist/lib/model_field_value/converters/model_ref_base_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_search_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_search_converter.js +138 -0
- package/dist/lib/model_field_value/converters/model_search_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_server_command_base_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_server_command_base_converter.js +119 -0
- package/dist/lib/model_field_value/converters/model_server_command_base_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_time_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_time_converter.js +271 -0
- package/dist/lib/model_field_value/converters/model_time_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_time_range_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_time_range_converter.js +225 -0
- package/dist/lib/model_field_value/converters/model_time_range_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_timestamp_converter.d.ts +66 -0
- package/dist/lib/model_field_value/converters/model_timestamp_converter.js +297 -0
- package/dist/lib/model_field_value/converters/model_timestamp_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_timestamp_range_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_timestamp_range_converter.js +225 -0
- package/dist/lib/model_field_value/converters/model_timestamp_range_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_token_converter.d.ts +48 -0
- package/dist/lib/model_field_value/converters/model_token_converter.js +137 -0
- package/dist/lib/model_field_value/converters/model_token_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_uri_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_uri_converter.js +184 -0
- package/dist/lib/model_field_value/converters/model_uri_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_vector_value_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_vector_value_converter.js +125 -0
- package/dist/lib/model_field_value/converters/model_vector_value_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/model_video_uri_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/model_video_uri_converter.js +184 -0
- package/dist/lib/model_field_value/converters/model_video_uri_converter.js.map +1 -0
- package/dist/lib/model_field_value/converters/null_converter.d.ts +49 -0
- package/dist/lib/model_field_value/converters/null_converter.js +72 -0
- package/dist/lib/model_field_value/converters/null_converter.js.map +1 -0
- package/dist/lib/model_field_value/default_model_field_value_converter.d.ts +155 -0
- package/dist/lib/model_field_value/default_model_field_value_converter.js +303 -0
- package/dist/lib/model_field_value/default_model_field_value_converter.js.map +1 -0
- package/dist/lib/model_field_value/model_field_value.d.ts +467 -0
- package/dist/lib/model_field_value/model_field_value.js +665 -0
- package/dist/lib/model_field_value/model_field_value.js.map +1 -0
- package/dist/lib/model_field_value/model_field_value_converter.d.ts +117 -0
- package/dist/lib/model_field_value/model_field_value_converter.js +49 -0
- package/dist/lib/model_field_value/model_field_value_converter.js.map +1 -0
- package/dist/lib/regions.d.ts +6 -0
- package/dist/lib/regions.js +3 -0
- package/dist/lib/regions.js.map +1 -0
- package/dist/lib/src/call_process_function_base.d.ts +39 -0
- package/dist/lib/src/call_process_function_base.js +72 -0
- package/dist/lib/src/call_process_function_base.js.map +1 -0
- package/dist/lib/src/firebase_loader.d.ts +30 -0
- package/dist/lib/src/firebase_loader.js +96 -0
- package/dist/lib/src/firebase_loader.js.map +1 -0
- package/dist/lib/src/firestore_base.d.ts +114 -0
- package/dist/lib/src/firestore_base.js +363 -0
- package/dist/lib/src/firestore_base.js.map +1 -0
- package/dist/lib/src/firestore_triggered_process_function_base.d.ts +40 -0
- package/dist/lib/src/firestore_triggered_process_function_base.js +72 -0
- package/dist/lib/src/firestore_triggered_process_function_base.js.map +1 -0
- package/dist/lib/src/functions_base.d.ts +327 -0
- package/dist/lib/src/functions_base.js +63 -0
- package/dist/lib/src/functions_base.js.map +1 -0
- package/dist/lib/src/functions_data.d.ts +10 -0
- package/dist/lib/src/functions_data.js +19 -0
- package/dist/lib/src/functions_data.js.map +1 -0
- package/dist/lib/src/request_process_function_base.d.ts +39 -0
- package/dist/lib/src/request_process_function_base.js +70 -0
- package/dist/lib/src/request_process_function_base.js.map +1 -0
- package/dist/lib/src/request_process_workders_base.d.ts +37 -0
- package/dist/lib/src/request_process_workders_base.js +27 -0
- package/dist/lib/src/request_process_workders_base.js.map +1 -0
- package/dist/lib/src/schedule_process_function_base.d.ts +33 -0
- package/dist/lib/src/schedule_process_function_base.js +71 -0
- package/dist/lib/src/schedule_process_function_base.js.map +1 -0
- package/dist/lib/src/sql_api_base.d.ts +185 -0
- package/dist/lib/src/sql_api_base.js +83 -0
- package/dist/lib/src/sql_api_base.js.map +1 -0
- package/dist/lib/src/workers_base.d.ts +74 -0
- package/dist/lib/src/workers_base.js +57 -0
- package/dist/lib/src/workers_base.js.map +1 -0
- package/dist/lib/src/workers_data.d.ts +10 -0
- package/dist/lib/src/workers_data.js +21 -0
- package/dist/lib/src/workers_data.js.map +1 -0
- package/dist/lib/utils.d.ts +82 -0
- package/dist/lib/utils.js +141 -0
- package/dist/lib/utils.js.map +1 -0
- package/dist/workers/test.d.ts +1 -0
- package/dist/workers/test.js +14 -0
- package/dist/workers/test.js.map +1 -0
- package/package.json +53 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,361 @@
|
|
|
1
|
+
# 3.1.0 (2026-06-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### chore
|
|
5
|
+
|
|
6
|
+
* Add debug log. ([4b94bb5](https://github.com/mathrunet/node_masamune/commit/4b94bb5380e8c12a08d120fbd8614cb7d9a460d7))
|
|
7
|
+
* Add debug log. ([c54a5e7](https://github.com/mathrunet/node_masamune/commit/c54a5e709141b320530df097d83408c195db5696))
|
|
8
|
+
* Add error messages. ([d7f2b00](https://github.com/mathrunet/node_masamune/commit/d7f2b00590761aac98b25f03c1a36f2ee20be5c7))
|
|
9
|
+
* Add log. ([189fd83](https://github.com/mathrunet/node_masamune/commit/189fd832d8660cac5d83ef24fcc0d341c640af45))
|
|
10
|
+
* Add Node.js 20 engine requirement to all package.json files ([1e60d25](https://github.com/mathrunet/node_masamune/commit/1e60d25b2c44e1efd398a6a1229d2ba3f46da1f5))
|
|
11
|
+
* Add publish to npm run. ([58da6fb](https://github.com/mathrunet/node_masamune/commit/58da6fb5c9261c359943b4d3f1dce767e6ff713b))
|
|
12
|
+
* Adding the convertTo method ([8d842ac](https://github.com/mathrunet/node_masamune/commit/8d842ac99fe31f63204391817eb206737c855249))
|
|
13
|
+
* Bump version to 3.9.3 and add new hooks for job execution in WorkflowJobRunnerFunctionBase ([010f0c3](https://github.com/mathrunet/node_masamune/commit/010f0c3c4999874f2e8a5e994993e8a31791d3a2))
|
|
14
|
+
* Change the copyright year. ([0f7378d](https://github.com/mathrunet/node_masamune/commit/0f7378d663ddf2cc6666a0a1a43f245a476a22f3))
|
|
15
|
+
* Change the placement of JS. ([d29b7cf](https://github.com/mathrunet/node_masamune/commit/d29b7cfbe95ddc10d1bd99df9cf372a9ba024920))
|
|
16
|
+
* Changed package name. ([5acd023](https://github.com/mathrunet/node_masamune/commit/5acd0235504eb7b2d9760f2a0a9971e69cc52f2b))
|
|
17
|
+
* command was added. ([bff8928](https://github.com/mathrunet/node_masamune/commit/bff8928505d5e411e061dcc45051463a7381e1b9))
|
|
18
|
+
* Comment Deleted ([a4a7ee3](https://github.com/mathrunet/node_masamune/commit/a4a7ee3490b18e9d66f6f44efb5edc3b405e265a))
|
|
19
|
+
* comment-adding ([0247405](https://github.com/mathrunet/node_masamune/commit/0247405486aafdaa053581c746e21d41442c859d))
|
|
20
|
+
* comment-adding ([a32f048](https://github.com/mathrunet/node_masamune/commit/a32f048a8d93c14411094624102ecbfcae19a49c))
|
|
21
|
+
* Comments back. ([c792490](https://github.com/mathrunet/node_masamune/commit/c79249018320f02f965037e99120157892a4aa07))
|
|
22
|
+
* Console logs are displayed. ([b7d7fed](https://github.com/mathrunet/node_masamune/commit/b7d7fed26e3e8067640b531b49f55f34a676fa1c))
|
|
23
|
+
* Create test files. ([357849a](https://github.com/mathrunet/node_masamune/commit/357849a6244c8a6167a0188945cc40a7c282c703))
|
|
24
|
+
* debug ([e698323](https://github.com/mathrunet/node_masamune/commit/e698323be390a66f1f09f684492e14db6706decf))
|
|
25
|
+
* Debug. ([5c274fc](https://github.com/mathrunet/node_masamune/commit/5c274fc1e3d0f1e0f25c09904cb4aee960a27f48))
|
|
26
|
+
* Definition of interface. ([2ac14be](https://github.com/mathrunet/node_masamune/commit/2ac14bec10077e90c25562a70d2cf32a61ae6fd0))
|
|
27
|
+
* Definition of interface. ([c5dcba7](https://github.com/mathrunet/node_masamune/commit/c5dcba7e17e38aa3ec1b159d9f3715c273182e64))
|
|
28
|
+
* Definition of interface. ([f19bfa6](https://github.com/mathrunet/node_masamune/commit/f19bfa64cf54474c93423a11175c259a4751db4a))
|
|
29
|
+
* Definition of interface. ([0caf4d0](https://github.com/mathrunet/node_masamune/commit/0caf4d0e78f785d49e6ae820f90322dd7b182458))
|
|
30
|
+
* Definition of interface. ([3822d83](https://github.com/mathrunet/node_masamune/commit/3822d83efcb63db43463897c6c8a4c2e5e54cf07))
|
|
31
|
+
* Definition of interface. ([b7a94f1](https://github.com/mathrunet/node_masamune/commit/b7a94f1c925099f79914e9629417566a6a1df393))
|
|
32
|
+
* Definition of interface. ([5503b76](https://github.com/mathrunet/node_masamune/commit/5503b76e104eb92609c070f8c698e958d62c845e))
|
|
33
|
+
* Definition of interface. ([e7a3b5f](https://github.com/mathrunet/node_masamune/commit/e7a3b5f2b491d533d7432a68ead0494732064670))
|
|
34
|
+
* Definition of interface. ([ceebea8](https://github.com/mathrunet/node_masamune/commit/ceebea8e58b3a75b80f0bb4756f8ccbe0a57cb96))
|
|
35
|
+
* Definition of interface. ([a573eba](https://github.com/mathrunet/node_masamune/commit/a573ebafae1630f211057d4c1bfd19b651382936))
|
|
36
|
+
* Definition of interface. ([1868f42](https://github.com/mathrunet/node_masamune/commit/1868f42f4fe61e3d34413a5913ffdd7ba1ddb6f9))
|
|
37
|
+
* Definition of interface. ([7fe670b](https://github.com/mathrunet/node_masamune/commit/7fe670b4466999f45a260f4fa31f7430ad297203))
|
|
38
|
+
* Definition of interface. ([b305bbd](https://github.com/mathrunet/node_masamune/commit/b305bbdc965c9e0b06b7a13d5c5c39a24d2125cb))
|
|
39
|
+
* Delete MarketingPipeline. ([0b69d79](https://github.com/mathrunet/node_masamune/commit/0b69d792fcc22319dbc3f0bfe83cc01ec389074b))
|
|
40
|
+
* Delete unnecessary comments. ([b28d8e1](https://github.com/mathrunet/node_masamune/commit/b28d8e1c214fb4b42d97a46ce98382eb5298ccaf))
|
|
41
|
+
* Delete unnecessary files. ([12975a1](https://github.com/mathrunet/node_masamune/commit/12975a1189839d269fd24f4b01b10cc182ef5650))
|
|
42
|
+
* Deleted because a katana remained. ([845a8d9](https://github.com/mathrunet/node_masamune/commit/845a8d932962689919db12d8b67baf757bf49f59))
|
|
43
|
+
* Edit .gitignore. ([de837ef](https://github.com/mathrunet/node_masamune/commit/de837ef8e831c6fba55e8fa94c0e33fa6cf8b7ff))
|
|
44
|
+
* Erase comments. ([5620bdb](https://github.com/mathrunet/node_masamune/commit/5620bdba511708097a48e7b07f56748965443eb1))
|
|
45
|
+
* Fixed a bug in the command. ([fef7d3c](https://github.com/mathrunet/node_masamune/commit/fef7d3c59b10e0e912920be9802389ebd45759fe))
|
|
46
|
+
* Grant logs ([4a1d2f0](https://github.com/mathrunet/node_masamune/commit/4a1d2f092b15d9b52a91ad210cbda1067ea2dc25))
|
|
47
|
+
* Initial commit. ([6f97dfe](https://github.com/mathrunet/node_masamune/commit/6f97dfe06413957d19792c7f535e0285045372fe))
|
|
48
|
+
* Log output. ([557826a](https://github.com/mathrunet/node_masamune/commit/557826a5be81c931a00565ee5a128346f5ca9a9a))
|
|
49
|
+
* Output the error contents. ([1d394b3](https://github.com/mathrunet/node_masamune/commit/1d394b327490c8e4af9127b668257c5c74951746))
|
|
50
|
+
* Package update. ([4d16cf5](https://github.com/mathrunet/node_masamune/commit/4d16cf5ab3b82ca65af20b38a3f471a54c9b87e2))
|
|
51
|
+
* Package update. ([e00d076](https://github.com/mathrunet/node_masamune/commit/e00d0766cc62d7fa7073dac9cf7c2c80ddb0d89f))
|
|
52
|
+
* Package update. ([8891b4e](https://github.com/mathrunet/node_masamune/commit/8891b4e1995dd931d3055d329fdd0513d3eae23a))
|
|
53
|
+
* Package update. ([440dbe9](https://github.com/mathrunet/node_masamune/commit/440dbe90ed555f4d7e260a204ef4463e14e6623c))
|
|
54
|
+
* Package update. ([4a3e6e7](https://github.com/mathrunet/node_masamune/commit/4a3e6e725e1e61777be17b09e14d7ec2a015b2e6))
|
|
55
|
+
* Package update. ([71bf417](https://github.com/mathrunet/node_masamune/commit/71bf41769e3b292e6288dbb6bb813f5f18b8a474))
|
|
56
|
+
* Package update. ([27b1b6b](https://github.com/mathrunet/node_masamune/commit/27b1b6b84478989844c655695323c849c684dd51))
|
|
57
|
+
* Package update. ([203fee8](https://github.com/mathrunet/node_masamune/commit/203fee8cabfc6bea866ef4fce949d3c170f0be8d))
|
|
58
|
+
* Remove comments ([eb83a5f](https://github.com/mathrunet/node_masamune/commit/eb83a5f6fdc1d8c6a03ce691cf11e8d3fbfdb85e))
|
|
59
|
+
* Scrutinize log output ([5eaa4a2](https://github.com/mathrunet/node_masamune/commit/5eaa4a2042f8b714b3f48e44cc44c8f86549212e))
|
|
60
|
+
* Update @mathrunet/katana to version 3.9.1 ([d8e32a1](https://github.com/mathrunet/node_masamune/commit/d8e32a1f238ed3b29003bd83799fde57a054c063))
|
|
61
|
+
* Update Masamune package to version 3.8.3 ([8e8155e](https://github.com/mathrunet/node_masamune/commit/8e8155e3380f05fb05abdb087c9bfff0b05c1795))
|
|
62
|
+
* Update masamune package version ([f4998d6](https://github.com/mathrunet/node_masamune/commit/f4998d654dee28f2f12c5d2d8b9c861563825dbd))
|
|
63
|
+
* Update Node.js engine to v22 and bump development dependencies across packages. ([d840a0f](https://github.com/mathrunet/node_masamune/commit/d840a0f503230f80edbdf01f9516841cff36798d))
|
|
64
|
+
* update TypeScript compilation target to es2022 in tsconfig files across packages ([99253dd](https://github.com/mathrunet/node_masamune/commit/99253dd84a09e1c6026b9a6b88b6fef1ca2f4d14))
|
|
65
|
+
* Update. ([370300f](https://github.com/mathrunet/node_masamune/commit/370300f93798fe50af3ed6ee60c04d37585ab869))
|
|
66
|
+
* Upgrade `@mathrunet/katana` to `3.9.4` and update `@mathrunet/masamune` dependencies. ([4eb3e8f](https://github.com/mathrunet/node_masamune/commit/4eb3e8ffcd17334eb380ea780605eb1f925b8eea))
|
|
67
|
+
* Workflow base class completed. ([04b3da4](https://github.com/mathrunet/node_masamune/commit/04b3da430a997861e8d8409b115f7205bc0f5b7e))
|
|
68
|
+
* コメントを削除 ([900f3b9](https://github.com/mathrunet/node_masamune/commit/900f3b98417ebe17c9d9f481223d493db4892d13))
|
|
69
|
+
|
|
70
|
+
### docs
|
|
71
|
+
|
|
72
|
+
* Add Github badge. ([e6ac32a](https://github.com/mathrunet/node_masamune/commit/e6ac32af8f1e5059e89267622589b279ff9a05fd))
|
|
73
|
+
* Added GithubSponsors to ReadMe. ([4c4b3f9](https://github.com/mathrunet/node_masamune/commit/4c4b3f9a28870aea7bcd38afaa0b64315ab8ed66))
|
|
74
|
+
* Added ReadMe link. ([06ab906](https://github.com/mathrunet/node_masamune/commit/06ab906478297cff54ef9130e8be643f7716bac8))
|
|
75
|
+
* Comment Change. ([d48a8f1](https://github.com/mathrunet/node_masamune/commit/d48a8f1c233285e3b1be8c1fb76634d81a132e63))
|
|
76
|
+
* Corrected keywords. ([2be21a6](https://github.com/mathrunet/node_masamune/commit/2be21a6276413769aedd9e83e53da3cab79a6e4c))
|
|
77
|
+
* Corrected variable names in the documentation. ([e17c24f](https://github.com/mathrunet/node_masamune/commit/e17c24f39ca0e578dbd846d034640caf4a6762cb))
|
|
78
|
+
* Move development, requirements, and setup guide documents to masamune_asset_pipeline package. ([1aa4ccb](https://github.com/mathrunet/node_masamune/commit/1aa4ccb995791c34de7901e98554aaca80bf22cc))
|
|
79
|
+
* ReadMe changes. ([8e55b7d](https://github.com/mathrunet/node_masamune/commit/8e55b7d10d6d3f8f61ff09541fafbfb9ea52b73a))
|
|
80
|
+
* ReadMe creation. ([6f91ba9](https://github.com/mathrunet/node_masamune/commit/6f91ba97d8c8e3f7d41a6299d95e51a69b90fe1c))
|
|
81
|
+
|
|
82
|
+
### feat
|
|
83
|
+
|
|
84
|
+
* Add aggregation method. ([e50fc35](https://github.com/mathrunet/node_masamune/commit/e50fc35bc00657bf2b82cdfd2d643f1fd70d9091))
|
|
85
|
+
* Add AI analysis. ([d9206af](https://github.com/mathrunet/node_masamune/commit/d9206af4408551579e0403abe0d613c7739e4916))
|
|
86
|
+
* Add an asset method. ([5136f81](https://github.com/mathrunet/node_masamune/commit/5136f81f2acf5d2b71f0cdc42a3a953f8c62c959))
|
|
87
|
+
* Add an interface and methods for repository analysis to the GitHub client, and create document files for bug lists and tasks. ([f7cf613](https://github.com/mathrunet/node_masamune/commit/f7cf6137b95b9040ea55f1b6fb6d029e188926ef))
|
|
88
|
+
* Add CallProcessFunctionBase. ([f5c72ab](https://github.com/mathrunet/node_masamune/commit/f5c72ab340239039e3ae4e63f1babe8cf4953f58))
|
|
89
|
+
* Add comprehensive JSDoc documentation to marketing functions ([7ea0e10](https://github.com/mathrunet/node_masamune/commit/7ea0e109f07440e8a73214650ad67953bb8b3878))
|
|
90
|
+
* Add convertTo methods to remaining TypeScript converters ([36c5630](https://github.com/mathrunet/node_masamune/commit/36c56306e2f1418ec447af29883147854ae49fba))
|
|
91
|
+
* Add Github summary function. ([3320b2e](https://github.com/mathrunet/node_masamune/commit/3320b2e894b7f85e61a5f891b2d3095bf53d79bd))
|
|
92
|
+
* Add GoogleToken. ([953ae3b](https://github.com/mathrunet/node_masamune/commit/953ae3bef001cfbec2eb2795bab727ee7d1c87cf))
|
|
93
|
+
* Add HLS function. ([bfa96e5](https://github.com/mathrunet/node_masamune/commit/bfa96e5b176180e84dafea9b75612bcd68fb3424))
|
|
94
|
+
* Add JobRunner ([e78dffd](https://github.com/mathrunet/node_masamune/commit/e78dffd214f9fc7e92309eb43e3aaf8450f3bd38))
|
|
95
|
+
* Add JobRunner. ([3eb5a6a](https://github.com/mathrunet/node_masamune/commit/3eb5a6a06afb7e12c6a39cbce5a2328c70eb74d5))
|
|
96
|
+
* Add locale information. ([146b89c](https://github.com/mathrunet/node_masamune/commit/146b89c353a743f00c80078f84f8063632d4cc21))
|
|
97
|
+
* Add locale. ([a27a8b4](https://github.com/mathrunet/node_masamune/commit/a27a8b4cd8b000d26f3511d9d5099284cefac08b))
|
|
98
|
+
* Add logging concept. ([fe5f4ed](https://github.com/mathrunet/node_masamune/commit/fe5f4ed24272ea045a33a237730629c610ff53b4))
|
|
99
|
+
* Add Lyria background music generation, Google Cloud Text-to-Speech integration, updated test configuration, and new development documentation. ([d234b83](https://github.com/mathrunet/node_masamune/commit/d234b83b0ab706bfa3c93f2f887755aa022baa48))
|
|
100
|
+
* Add Markdown Report ([38506ac](https://github.com/mathrunet/node_masamune/commit/38506ac023a481163fed0154a6b90f372a4d9539))
|
|
101
|
+
* Add Market Research Action ([a41d85b](https://github.com/mathrunet/node_masamune/commit/a41d85bee88fe9d23952f281b3ca8d5390bbb15c))
|
|
102
|
+
* add marketing pipeline for data collection and scheduling, and update short video generation tests to include narration and BGM. ([4020466](https://github.com/mathrunet/node_masamune/commit/402046616c18ae3c65fe0eb43e1a103a95f1cc04))
|
|
103
|
+
* Add masamune_store_asset. ([9f6e45f](https://github.com/mathrunet/node_masamune/commit/9f6e45febae9330196978e4e04218a78fdcaf547))
|
|
104
|
+
* Add multimodal text generation and related workflows for image, video, and music generation ([875acbc](https://github.com/mathrunet/node_masamune/commit/875acbc906cb8f6cf31dfb39168195d097b4bab2))
|
|
105
|
+
* Add PDF creation function. ([de349b3](https://github.com/mathrunet/node_masamune/commit/de349b382bacd325929b2c6fa8330dbe7fe12b98))
|
|
106
|
+
* Add removeOnlyEmoji method to String prototype and update usage in ModelFieldValue class ([dccecf8](https://github.com/mathrunet/node_masamune/commit/dccecf844ad7602e5acedfb4653620ac80c017cb))
|
|
107
|
+
* Add required type. ([d92208c](https://github.com/mathrunet/node_masamune/commit/d92208cdb1e7340d2b9258a6a090123f581bf5d9))
|
|
108
|
+
* add scheduler notification tests and update general test utilities and Firestore tests. ([710e462](https://github.com/mathrunet/node_masamune/commit/710e46287e7eb7fea6dd461e0d5354ce2f1bbfd2))
|
|
109
|
+
* Add short video generation function using Gemini 2.5 Flash and FFmpeg, including tests, documentation, and updated ignore rules for temporary files. ([7e6cde2](https://github.com/mathrunet/node_masamune/commit/7e6cde28f7760c54058cb1e2073c6e97f552d39e))
|
|
110
|
+
* Add SqlApiBase. ([ff6c5b2](https://github.com/mathrunet/node_masamune/commit/ff6c5b28905402f326904eb4052e86db82be4778))
|
|
111
|
+
* Add to ModelFieldValue. ([954a8c6](https://github.com/mathrunet/node_masamune/commit/954a8c66804d8c3f65b810d773597d3acb5de442))
|
|
112
|
+
* Add TTS workflow. ([f23572e](https://github.com/mathrunet/node_masamune/commit/f23572e4340d39f9b9a4025e8e5d60223fd5d26f))
|
|
113
|
+
* Added a series of Stripe features. ([4d430b7](https://github.com/mathrunet/node_masamune/commit/4d430b7df07e363c452877fcd21cc043d309ff6c))
|
|
114
|
+
* Added Algolia data synchronization. ([65c3dbb](https://github.com/mathrunet/node_masamune/commit/65c3dbb5ac3162868ed6517e2e63a2946bfb5f34))
|
|
115
|
+
* Added Api methods. ([dc34146](https://github.com/mathrunet/node_masamune/commit/dc34146e396f0db2595b09c63acfaa78dd70b7a8))
|
|
116
|
+
* Added AppStore, FirebaseAnalytics. ([43475b9](https://github.com/mathrunet/node_masamune/commit/43475b967224ad1921607eb769b5ab50095a2f49))
|
|
117
|
+
* Added charts, storage, and PDF generation services to the marketing pipeline, improved video effects, and introduced bug list documentation. ([5ac0fd5](https://github.com/mathrunet/node_masamune/commit/5ac0fd5d6e0d1cfeaeae0b422e2d099f7c863bc4))
|
|
118
|
+
* Added developer collection feature to the App Store. ([3966758](https://github.com/mathrunet/node_masamune/commit/39667586602592d59c4b5b17f5a7b7334ced9b25))
|
|
119
|
+
* Added document creation functionality. ([9d8374e](https://github.com/mathrunet/node_masamune/commit/9d8374eb5495a2b3ee705e41c8faf6c9731c1885))
|
|
120
|
+
* Added functionality for Agora.io. ([29630f4](https://github.com/mathrunet/node_masamune/commit/29630f4c35a8aa266d5275b86b40e4759d50fca6))
|
|
121
|
+
* Added Functions for ChatGPT. ([87170e6](https://github.com/mathrunet/node_masamune/commit/87170e6c1f14e0727a3656472923fc12885e8e27))
|
|
122
|
+
* Added Functions for mobile billing. ([62309a4](https://github.com/mathrunet/node_masamune/commit/62309a47dbde32101c521f3c0510f53c109f3844))
|
|
123
|
+
* Added Functions for sending mail. ([7efe881](https://github.com/mathrunet/node_masamune/commit/7efe881e3481ebd6f651c5a1c1127a4d8399c9b8))
|
|
124
|
+
* Added functions to utilize external models and external storage. ([e2eff76](https://github.com/mathrunet/node_masamune/commit/e2eff76225e5e7e0c0d20075e12059c91bba07a1))
|
|
125
|
+
* Added Gemini image generation workflow. ([f8ed9a3](https://github.com/mathrunet/node_masamune/commit/f8ed9a364fbb413b85a14f650d034bb8ded78977))
|
|
126
|
+
* Added GeocodingAPI. ([3f3f9a3](https://github.com/mathrunet/node_masamune/commit/3f3f9a3c355a0ecda013a7b34f6c8e2b06d70d8a))
|
|
127
|
+
* Added notification schedule for documents. ([1663136](https://github.com/mathrunet/node_masamune/commit/1663136faa20be0c95037ea048a89d5ec1d9224f))
|
|
128
|
+
* Added Notifications. ([165c63a](https://github.com/mathrunet/node_masamune/commit/165c63a0fe942606837fc32fc5eace678e37e6f0))
|
|
129
|
+
* Added PDF design specification feature. ([bd8b256](https://github.com/mathrunet/node_masamune/commit/bd8b25656c40a24a912478a28402833320be66ad))
|
|
130
|
+
* Added string processing. ([2421fdc](https://github.com/mathrunet/node_masamune/commit/2421fdc2bd3dfa96e9c3f0439a3bb2eba43d5048))
|
|
131
|
+
* Added user deletion function. ([05ce7dd](https://github.com/mathrunet/node_masamune/commit/05ce7dd2876c1bc5493916162c0d1125221aab8f))
|
|
132
|
+
* Added uuid functionality available. ([5b4fa76](https://github.com/mathrunet/node_masamune/commit/5b4fa76a3daef6f915f18ba60e7d00867de4517e))
|
|
133
|
+
* Added v7 support for Uuid. ([fa12b77](https://github.com/mathrunet/node_masamune/commit/fa12b7766d879d14f1d021ecfa1d6b17012df5f7))
|
|
134
|
+
* Added workflow to retrieve developer information from Google Play. ([c862ffd](https://github.com/mathrunet/node_masamune/commit/c862ffd39031fb7e4a69b512a7aeaab6916fb41f))
|
|
135
|
+
* Allow region to be specified externally. ([782d805](https://github.com/mathrunet/node_masamune/commit/782d805ac88c3991eabb3017f78cca083dd42f33))
|
|
136
|
+
* Allow service accounts to be set in the options. ([72b57c1](https://github.com/mathrunet/node_masamune/commit/72b57c10486de8509653bf68dbf3860ade18fde5))
|
|
137
|
+
* Batch functionality in Notification. ([87aca9e](https://github.com/mathrunet/node_masamune/commit/87aca9e4c9c8b54e991f7abb70293f3371f6092d))
|
|
138
|
+
* Change the structure of FunctionData. ([0ce6dd3](https://github.com/mathrunet/node_masamune/commit/0ce6dd341ad27202ea433d9f83edfce13d4a18ec))
|
|
139
|
+
* Changed Android receipt verification to authentication by service account. ([c7b92f3](https://github.com/mathrunet/node_masamune/commit/c7b92f371b2d9e938ea25b4e0f3e268a894e169e))
|
|
140
|
+
* Compatible with FirebaseFunctionsV2. ([df2cc6d](https://github.com/mathrunet/node_masamune/commit/df2cc6d050fe249781fe42afb5633e6d39b32f74))
|
|
141
|
+
* Create a class for ModelFieldValue. ([9d1d107](https://github.com/mathrunet/node_masamune/commit/9d1d10737d850d409e0f217d7055b73b3e8cca7f))
|
|
142
|
+
* Create a market pipeline. ([7ce61fe](https://github.com/mathrunet/node_masamune/commit/7ce61feae9829bd7e8d969ef967f39f3f9ba0cfe))
|
|
143
|
+
* Create a SendNotificationSchedule. ([681a05e](https://github.com/mathrunet/node_masamune/commit/681a05e8f3c4546e0eff070462e364eb974a693d))
|
|
144
|
+
* Delete the Katana package. ([9c0d166](https://github.com/mathrunet/node_masamune/commit/9c0d1660ca60cbc72c7b7f742138352470a6e54c))
|
|
145
|
+
* Develop an AI analysis service ([0a3d8c7](https://github.com/mathrunet/node_masamune/commit/0a3d8c7cbff6e23b524ca78b8bcbc674b2045bcf))
|
|
146
|
+
* Enabled building of ModelVectorValue. ([fda90fe](https://github.com/mathrunet/node_masamune/commit/fda90fe53681498614acc47c59ce48072507d067))
|
|
147
|
+
* Enhance detailed research to guide content creation, determine asset type, and add new documentation files. ([bf6125a](https://github.com/mathrunet/node_masamune/commit/bf6125a2e35f7b52f9a84468770901a98ef226be))
|
|
148
|
+
* Enhance image generation capabilities with Imagen 3 integration and update Gemini configurations ([bda7635](https://github.com/mathrunet/node_masamune/commit/bda7635c7e97f17959013db516b92400e07b93e5))
|
|
149
|
+
* GitHub integration test implementation ([f1ffead](https://github.com/mathrunet/node_masamune/commit/f1ffead3e4f4f761fd7416789c050afe4d3e29a8))
|
|
150
|
+
* Gmail stopped working, so I deleted it. ([ac11383](https://github.com/mathrunet/node_masamune/commit/ac11383a5199e64b3e09cc83318fdfc84759b8e5))
|
|
151
|
+
* Gmail stopped working, so I deleted it. ([c415079](https://github.com/mathrunet/node_masamune/commit/c4150799abeb996b0a08e3d9b7dccb232a2404f2))
|
|
152
|
+
* Google Play Console data acquisition function implementation ([28ad81f](https://github.com/mathrunet/node_masamune/commit/28ad81ff6451c922ff16c40e52646571d2d39d60))
|
|
153
|
+
* implement broad/detailed research and asset creation functions, alongside new documentation and tests ([0c1c05d](https://github.com/mathrunet/node_masamune/commit/0c1c05da72d25219080ac98809322b13667b047c))
|
|
154
|
+
* implement Firebase function to generate short video metadata using Vertex AI, including tests and development documentation. ([2251993](https://github.com/mathrunet/node_masamune/commit/22519933c8b1f84fc7ae26a5754c6c02d96b5969))
|
|
155
|
+
* Implement retry mechanism for Vertex AI API calls in ResearchMarket function and enhance error handling ([ac03efe](https://github.com/mathrunet/node_masamune/commit/ac03efe06d7958ad7ebc9a405cf31c351a3b4298))
|
|
156
|
+
* Implementation of data retrieval API. ([df9ad88](https://github.com/mathrunet/node_masamune/commit/df9ad88da46ccb85cea4172ed8c0107ea2c431f7))
|
|
157
|
+
* Initial commit. ([26b8a08](https://github.com/mathrunet/node_masamune/commit/26b8a08df3582fd80dc7ecc204654f6b7f5c9098))
|
|
158
|
+
* Initial commit. ([5e83638](https://github.com/mathrunet/node_masamune/commit/5e836385d1789fff488396c67ace73d7f55205e8))
|
|
159
|
+
* Initial commit. ([b9200aa](https://github.com/mathrunet/node_masamune/commit/b9200aa75f64e6890a946f7de0a49fd823143651))
|
|
160
|
+
* Integrate Katana and Masamune. ([4ce88c7](https://github.com/mathrunet/node_masamune/commit/4ce88c72b863bf94f1b7b1957969df22e6a44abe))
|
|
161
|
+
* Introducing the AppCheck option. ([45cfda7](https://github.com/mathrunet/node_masamune/commit/45cfda7ce850ae239707d001da4fb4c75679e6de))
|
|
162
|
+
* ModelFieldValue specification change. ([148f423](https://github.com/mathrunet/node_masamune/commit/148f4236d835707280870f5b8ddc5a51577699bd))
|
|
163
|
+
* Package separation. And monorepo management. ([2647952](https://github.com/mathrunet/node_masamune/commit/2647952ad48823ac0c3d578a366f4af0bf60bcc1))
|
|
164
|
+
* Package Update. ([f66513b](https://github.com/mathrunet/node_masamune/commit/f66513bf5b510e1f9acdab0942d1a243705c9056))
|
|
165
|
+
* ProcessFunctionBaseを作成 ([ecc5da7](https://github.com/mathrunet/node_masamune/commit/ecc5da70f3f7e687309511923ba6156022ebb951))
|
|
166
|
+
* refactor short video BGM handling to use `bgmTracks` array and introduce `masamune_marketing_pipeline`. ([6fe3878](https://github.com/mathrunet/node_masamune/commit/6fe3878bf02ecc40008a3aa7f10dd13a78a028e7))
|
|
167
|
+
* Support for sending multiple tokens. ([6d16257](https://github.com/mathrunet/node_masamune/commit/6d16257242a9ad9d8b0709992c30892eb80fdb10))
|
|
168
|
+
* Supports iOS StoreKit 2 validation. ([62450c5](https://github.com/mathrunet/node_masamune/commit/62450c566e33f97b0112bb55b1e3f34ea0d3a25e))
|
|
169
|
+
* Supports multiple databases. ([cff6b10](https://github.com/mathrunet/node_masamune/commit/cff6b10b4bce122252fd3936f1e11d0a23d50c9c))
|
|
170
|
+
* The region can be specified by option. ([df36f5f](https://github.com/mathrunet/node_masamune/commit/df36f5fc62c494bb94a9e44b91c13d764c48c93f))
|
|
171
|
+
* Timeout parameters can now be added. ([183f68f](https://github.com/mathrunet/node_masamune/commit/183f68f7ae67c8c569a210670a6aef5d44a2f489))
|
|
172
|
+
* Topic is now configurable. ([36b70ec](https://github.com/mathrunet/node_masamune/commit/36b70ecd53db9d34a3fc19561158a08b1bb09e6e))
|
|
173
|
+
* Update Masamune package versions to 3.8.0. ([318f89a](https://github.com/mathrunet/node_masamune/commit/318f89a7427dfa71149026207eae19c4ff845edc))
|
|
174
|
+
* Various main function implementations ([b643bcd](https://github.com/mathrunet/node_masamune/commit/b643bcd47211efadbd2350f93ff9034449767ab5))
|
|
175
|
+
|
|
176
|
+
### fix
|
|
177
|
+
|
|
178
|
+
* Account name support. ([63f9ce7](https://github.com/mathrunet/node_masamune/commit/63f9ce7e64477bdd00f5d177cf5032898cad4af3))
|
|
179
|
+
* Add a flag to `sendNotification` to control whether to display logs. ([87d31cb](https://github.com/mathrunet/node_masamune/commit/87d31cba2a06fbda27f235d8f59a5b7e2f35ad42))
|
|
180
|
+
* Add a link to the Notification. ([94d809c](https://github.com/mathrunet/node_masamune/commit/94d809cfd46be72632ef1454cbd8214cf1174a1c))
|
|
181
|
+
* Add a new value to the Project. ([4f934e5](https://github.com/mathrunet/node_masamune/commit/4f934e5f6517bffc8b4e5f6d04f9e09add2e943c))
|
|
182
|
+
* Add Database ID. ([396e302](https://github.com/mathrunet/node_masamune/commit/396e302b986e20812890a703e796e22d2e318c03))
|
|
183
|
+
* Add methods such as load and save to ModelRefBase. ([cbf9eb2](https://github.com/mathrunet/node_masamune/commit/cbf9eb29d802990dcffe0c3322b3d41365b8a9a4))
|
|
184
|
+
* Add missing packages. ([389630b](https://github.com/mathrunet/node_masamune/commit/389630b2baec8ee634e105690343a7ff5edc30bb))
|
|
185
|
+
* Add ModelFieldValue for searchable. ([62913e7](https://github.com/mathrunet/node_masamune/commit/62913e7c84eb6f33b134cb4e0429e6245aaf3d50))
|
|
186
|
+
* Add ModelFieldValue interface. ([0ff33aa](https://github.com/mathrunet/node_masamune/commit/0ff33aa6f1331569658a3fd629b1329eafef8c50))
|
|
187
|
+
* Add success at the end. ([5611d82](https://github.com/mathrunet/node_masamune/commit/5611d82f2dac3bc0fc55caea49a26e40a6a89458))
|
|
188
|
+
* Add toSearchableMap. ([71ffb6e](https://github.com/mathrunet/node_masamune/commit/71ffb6ee537fc53a954a096b874a54d46b6fdf1a))
|
|
189
|
+
* Added a converter for data to be stored in Algolia. ([3c0f7bc](https://github.com/mathrunet/node_masamune/commit/3c0f7bc6f74cde7ad52dab1e554dedb320ffe958))
|
|
190
|
+
* Added base class for Firestore trigger. ([b71e3e9](https://github.com/mathrunet/node_masamune/commit/b71e3e9cebf82736df2d88ee92e6631cd479661d))
|
|
191
|
+
* Added because there is no type. ([f1bac47](https://github.com/mathrunet/node_masamune/commit/f1bac474d835a9581c2340c57f6da9bf8aad539a))
|
|
192
|
+
* Added flag for paused. ([61f1ff8](https://github.com/mathrunet/node_masamune/commit/61f1ff86109b2d7f65b65f819cd20c7e7b91f8ea))
|
|
193
|
+
* Added ModelTimestamp. ([2ff6bcf](https://github.com/mathrunet/node_masamune/commit/2ff6bcf1f76c8f1ae6f5033b2907a0467f415b4a))
|
|
194
|
+
* Added the ability to output FieldValue of ModelLocale. ([d6302e5](https://github.com/mathrunet/node_masamune/commit/d6302e50ab75243679b9ae0bbaa7108dfb8f888a))
|
|
195
|
+
* Adjust UUID specifications ([4ead298](https://github.com/mathrunet/node_masamune/commit/4ead298714fbb6968f640aa9537f2c6901f2fe3b))
|
|
196
|
+
* Align the Key of UserId. ([5eec039](https://github.com/mathrunet/node_masamune/commit/5eec0398a794cab15c71760b45b328452eb50dbe))
|
|
197
|
+
* Align the time key with the command key. ([f6e92a0](https://github.com/mathrunet/node_masamune/commit/f6e92a0b97528147d2d1eb4bee9a1fc73b358ada))
|
|
198
|
+
* Allow exports to be passed to deploy. ([bbf2c8b](https://github.com/mathrunet/node_masamune/commit/bbf2c8b50b036356a0630160fe1505dd04ca09c2))
|
|
199
|
+
* Apply Algolia to firestore. ([77157c4](https://github.com/mathrunet/node_masamune/commit/77157c41fa320bb624779e9d18ef5a0cab3ecf04))
|
|
200
|
+
* Audio-related fixes ([9e2440b](https://github.com/mathrunet/node_masamune/commit/9e2440b9e78c15ecc9d495da5ed0f173250bf88c))
|
|
201
|
+
* Billing logs are now stored. ([0e84b8d](https://github.com/mathrunet/node_masamune/commit/0e84b8d1bbf1ef4d6ea953cc88a964402b6468a5))
|
|
202
|
+
* bug fix ([aedf7c5](https://github.com/mathrunet/node_masamune/commit/aedf7c5dbafd7575f621bbc23ae91b0a2688f616))
|
|
203
|
+
* Bug fix. ([14d3ba4](https://github.com/mathrunet/node_masamune/commit/14d3ba4df05b723eb95768dc90a683f38fb8baa3))
|
|
204
|
+
* Bug fix. ([c410ed7](https://github.com/mathrunet/node_masamune/commit/c410ed7229662f7726a658baa5620d5f7849d5ce))
|
|
205
|
+
* Bug fixes. ([8cd7f92](https://github.com/mathrunet/node_masamune/commit/8cd7f92aaaea9da295fa232262e8df896c87e1d5))
|
|
206
|
+
* Bug fixes. ([c69e10f](https://github.com/mathrunet/node_masamune/commit/c69e10fd6f1285a33bb8ecd43bd8fa5571cc0980))
|
|
207
|
+
* Bug fixes. ([e01bedc](https://github.com/mathrunet/node_masamune/commit/e01bedc17a6d5b996c189184551bed77d5a81191))
|
|
208
|
+
* Bug in not being able to use homebrew functions. ([57f0823](https://github.com/mathrunet/node_masamune/commit/57f0823701bf87f84ce0112361334685aaad62a5))
|
|
209
|
+
* Cannot convert to JSON, so please fix. ([bec09af](https://github.com/mathrunet/node_masamune/commit/bec09afe18e4a6c4944ba95e765e744fa45ce47a))
|
|
210
|
+
* Change Display Order ([09448b3](https://github.com/mathrunet/node_masamune/commit/09448b380616a82b1e65053350bcdece4d39b132))
|
|
211
|
+
* Change error object handling ([d49aed4](https://github.com/mathrunet/node_masamune/commit/d49aed435c381c6b537a6a23accdf73125b4aa61))
|
|
212
|
+
* Change GitHub analysis method ([abc2336](https://github.com/mathrunet/node_masamune/commit/abc233693cad2070a57db4d0472a16781d00c0c9))
|
|
213
|
+
* Change in billing status. ([95cac67](https://github.com/mathrunet/node_masamune/commit/95cac67c4abfd6761a5a1f400310408c0df69670))
|
|
214
|
+
* Change key because it is not included in the search. ([c56a3b4](https://github.com/mathrunet/node_masamune/commit/c56a3b423f84848d5a101d2b726624d5edb0232d))
|
|
215
|
+
* Change process arguments. ([17fca7b](https://github.com/mathrunet/node_masamune/commit/17fca7b72ccc8ecf7576e5a0772b2d05f197940d))
|
|
216
|
+
* Change the key of the title. ([137a47e](https://github.com/mathrunet/node_masamune/commit/137a47ece9a1ce5fbbfa9bedd96bb734b7986b65))
|
|
217
|
+
* Change the location of initializeApp. ([5c82d2a](https://github.com/mathrunet/node_masamune/commit/5c82d2a63ed4af60246969349236aa9f2841c8a8))
|
|
218
|
+
* Changed license. ([b77a5f2](https://github.com/mathrunet/node_masamune/commit/b77a5f24019b1ff94188aaa1f6053d968152148e))
|
|
219
|
+
* Changed line breaks. ([a38d02b](https://github.com/mathrunet/node_masamune/commit/a38d02bb5b1696e539368f15efdb3c17a14b087f))
|
|
220
|
+
* Changed the function name of notification. ([c1a152c](https://github.com/mathrunet/node_masamune/commit/c1a152cd3398325a7149bf4a852fe368088e4f16))
|
|
221
|
+
* Changed the order of type checks. ([a05e2d7](https://github.com/mathrunet/node_masamune/commit/a05e2d79cdd567a33a31a2bc544e8ae9e51deeb2))
|
|
222
|
+
* Changed the position of the JS definition. ([1aadcb7](https://github.com/mathrunet/node_masamune/commit/1aadcb7e975060e8e15ff80139757bc552edee2e))
|
|
223
|
+
* Changed the specification of the notification destination. ([933258d](https://github.com/mathrunet/node_masamune/commit/933258dcd43bee5e3175b32863b2f905af6e8b6f))
|
|
224
|
+
* Changed to a condition where _done is null. ([4ffe3d3](https://github.com/mathrunet/node_masamune/commit/4ffe3d37a145ddb82243462ccb26db6d61247c86))
|
|
225
|
+
* Changed to return all. ([db69ae6](https://github.com/mathrunet/node_masamune/commit/db69ae67fa65d2e9b83a5b80bb4c00dc37d9e430))
|
|
226
|
+
* Comment out. ([6c4191e](https://github.com/mathrunet/node_masamune/commit/6c4191e416d35594500a3bb00e0fb00bf7aab479))
|
|
227
|
+
* comment-adding ([c3d7864](https://github.com/mathrunet/node_masamune/commit/c3d7864ede2fa60359eb64a8542abf930b80f121))
|
|
228
|
+
* Config changes. ([b459970](https://github.com/mathrunet/node_masamune/commit/b45997023ff0f2d763dd41fe16bf0263cac056cb))
|
|
229
|
+
* Consider null in send_notification. ([643c800](https://github.com/mathrunet/node_masamune/commit/643c800cc565e1a6856ea8fd46854fe0d6841015))
|
|
230
|
+
* Consolidate notification_scheduler to scheduler. ([7252676](https://github.com/mathrunet/node_masamune/commit/72526768bf9ba790dfdeadb1e97fa31d40198c18))
|
|
231
|
+
* Corrected an error that appeared in the log. ([538688c](https://github.com/mathrunet/node_masamune/commit/538688c9815e20470a309e11f62ed83464c269f0))
|
|
232
|
+
* Corrected the `timestamp` key as it was incorrect. ([302d56f](https://github.com/mathrunet/node_masamune/commit/302d56f0ee152d625df4cf850ab7c6a0ff943c68))
|
|
233
|
+
* Corrected the position again. ([8cbd924](https://github.com/mathrunet/node_masamune/commit/8cbd924b9bb558843dde97cb32fbdd0cc77f62a9))
|
|
234
|
+
* Corrected the wrong name for env. ([8dae0f7](https://github.com/mathrunet/node_masamune/commit/8dae0f79e18fda07966dc1e7318663ff691ae3ef))
|
|
235
|
+
* Corrected to use the specified firestoreInstance. ([9b7d832](https://github.com/mathrunet/node_masamune/commit/9b7d832ac644b1f8f45eb5132eee45bd7d33711b))
|
|
236
|
+
* Correction of command names in Functions. ([dc3721c](https://github.com/mathrunet/node_masamune/commit/dc3721cd5719e4b654a9a3142f924ce475fdeefd))
|
|
237
|
+
* Correction of PDF report. ([56bc89e](https://github.com/mathrunet/node_masamune/commit/56bc89ed74cdd1a76691717591ae3f75f043b40e))
|
|
238
|
+
* Corresponding to IOS grade changes. ([dd33ce5](https://github.com/mathrunet/node_masamune/commit/dd33ce59ed6965ac89850bf9fb43969aaf34ce37))
|
|
239
|
+
* Create E2E tests. ([e33ed27](https://github.com/mathrunet/node_masamune/commit/e33ed2702cc6d2771036fd3bc8e5c4de811229e7))
|
|
240
|
+
* Data for debugging is given. ([76b28b3](https://github.com/mathrunet/node_masamune/commit/76b28b3624f7d58a396cb119af628b630de68ac5))
|
|
241
|
+
* DatabaseId can be specified in FirestoreTriggeredProcessFunctionBase. ([44c56e4](https://github.com/mathrunet/node_masamune/commit/44c56e42de16b328b2639e41af68e256fa36e73f))
|
|
242
|
+
* Define default fields. ([a2d8393](https://github.com/mathrunet/node_masamune/commit/a2d83932c4f1b8bf5288f8ee21b04c131d98e9c8))
|
|
243
|
+
* Drop the version of node-fetch to eliminate the error. ([36b2a89](https://github.com/mathrunet/node_masamune/commit/36b2a895943e4081d8cc51750172e594c73fe637))
|
|
244
|
+
* Enable logging for Firestore value conversion processes in default model field value converter ([71fa63e](https://github.com/mathrunet/node_masamune/commit/71fa63ebed9d358f67832cbeee1f702246d9b790))
|
|
245
|
+
* Enabled setting an expiration date. ([3e109fd](https://github.com/mathrunet/node_masamune/commit/3e109fde06deb84d782daa41a8df9858b0760bd8))
|
|
246
|
+
* Explicitly pass the Firebase Admin app during Firestore and Storage initialization, and update the version. ([9169415](https://github.com/mathrunet/node_masamune/commit/9169415adb873a0ce1534a5762158d84ca477212))
|
|
247
|
+
* Export the Loader. ([5050efe](https://github.com/mathrunet/node_masamune/commit/5050efe82895649103a68f8108e82173017c23c8))
|
|
248
|
+
* Field is not needed for Count. ([2d5197d](https://github.com/mathrunet/node_masamune/commit/2d5197dd83cdcfa85fae77267989b4e062781227))
|
|
249
|
+
* Field names were inconsistent, so they were corrected. ([1eedb8c](https://github.com/mathrunet/node_masamune/commit/1eedb8c7d0b0cd59eaeeed6833c41dfd8bd94707))
|
|
250
|
+
* Firebase is now initialized. ([9cc8a3e](https://github.com/mathrunet/node_masamune/commit/9cc8a3eb26cf8448cad405c61145c2538d371bd8))
|
|
251
|
+
* Firestore interface change. ([027e464](https://github.com/mathrunet/node_masamune/commit/027e4647febaac184123ad5d8d7dc0ea452e3df7))
|
|
252
|
+
* Fix npmignore. ([5e4bd1e](https://github.com/mathrunet/node_masamune/commit/5e4bd1e25d2e930354f0621f167f9ff692f30689))
|
|
253
|
+
* Fix the ServiceAccount key as it's unusable. ([e5fd4ce](https://github.com/mathrunet/node_masamune/commit/e5fd4ce8dc98eefd487e59f4611d8d57d9957f4c))
|
|
254
|
+
* Fix typo. ([a7a55bb](https://github.com/mathrunet/node_masamune/commit/a7a55bb4b3d3df021d192a9fa811c7506aa4bd81))
|
|
255
|
+
* Fix URL for AndroidPurchaseValidate. ([c5234e7](https://github.com/mathrunet/node_masamune/commit/c5234e7634efca9cd31088c600695fd236073a11))
|
|
256
|
+
* Fixed a bug in ID. ([f23a605](https://github.com/mathrunet/node_masamune/commit/f23a605ae3b7058b780c06a735cf2cac843f034b))
|
|
257
|
+
* Fixed a bug in the search target string. ([1d53a49](https://github.com/mathrunet/node_masamune/commit/1d53a4988598e3b6907b32ed00f822def1c27110))
|
|
258
|
+
* Fixed a bug in the way data is saved. ([c4e1558](https://github.com/mathrunet/node_masamune/commit/c4e1558b69dcd96657e5d25d553a74dfe28c3d8c))
|
|
259
|
+
* Fixed a bug in the way parameters are taken. ([1e54462](https://github.com/mathrunet/node_masamune/commit/1e5446294c73169e519e1d001dc1ba97ee9eea5c))
|
|
260
|
+
* Fixed a bug that caused an error when `resItem` was not an array. ([1e70363](https://github.com/mathrunet/node_masamune/commit/1e703635636fc7cd739ecbe27a579bf0f004660f))
|
|
261
|
+
* Fixed a bug that caused duplicate keys. ([31332c1](https://github.com/mathrunet/node_masamune/commit/31332c1bb4799c2bd6ad0956d99db5c31aac9dba))
|
|
262
|
+
* Fixed a bug that caused forced cancellation when canceling. ([d1d249b](https://github.com/mathrunet/node_masamune/commit/d1d249b4bd5e36e71bf40dfd698ec365d45bb204))
|
|
263
|
+
* Fixed a bug that caused no response to requests. ([1f94470](https://github.com/mathrunet/node_masamune/commit/1f9447014bcc725b9c359ca46279dcaa56ed650f))
|
|
264
|
+
* Fixed a bug that prevented successful deployment. ([c05dea1](https://github.com/mathrunet/node_masamune/commit/c05dea119d27de35cb265caff7ed37f4d5207281))
|
|
265
|
+
* Fixed a bug that Topic and Token could not be found. ([530a991](https://github.com/mathrunet/node_masamune/commit/530a991eeb5946d4ac82c5f9c7bc3a667605d783))
|
|
266
|
+
* Fixed a bug where tests were failing. ([cdab6ca](https://github.com/mathrunet/node_masamune/commit/cdab6ca41aa5d39987dc484819a802fa9b2aa732))
|
|
267
|
+
* Fixed a circular reference that seems to be happening. ([fdf1349](https://github.com/mathrunet/node_masamune/commit/fdf13493db02d8c6bafd120846f0db6a7aebe137))
|
|
268
|
+
* Fixed a missing data error. ([cd63c50](https://github.com/mathrunet/node_masamune/commit/cd63c50dc58d13fe4388652675f28c6e6239f822))
|
|
269
|
+
* Fixed an error in simultaneous registration. ([a688b64](https://github.com/mathrunet/node_masamune/commit/a688b64caee7a76e61d33c9891ee1c00b85ec38d))
|
|
270
|
+
* Fixed an issue where usage was not being added. ([ae0a9ee](https://github.com/mathrunet/node_masamune/commit/ae0a9ee1224d7bdc019140bd5889cbcab5e8bdd2))
|
|
271
|
+
* Fixed API for badges. ([78ee4af](https://github.com/mathrunet/node_masamune/commit/78ee4af51be2d61262750aa718ddda996ddf37f4))
|
|
272
|
+
* Fixed build failures. ([6010815](https://github.com/mathrunet/node_masamune/commit/60108159c6901eaa4d9571153aa5e0584dcb5d92))
|
|
273
|
+
* Fixed ConvertFrom and ConvertTo as they were incorrect. ([0c87aec](https://github.com/mathrunet/node_masamune/commit/0c87aeca0f2f1242afdf4c665b3a854400eecb9b))
|
|
274
|
+
* Fixed errors around constructors. ([8f7e53e](https://github.com/mathrunet/node_masamune/commit/8f7e53ea9fbf66248fe02bf61fefd2a643d94d6d))
|
|
275
|
+
* Fixed incorrect `convertFrom`. ([5cd046f](https://github.com/mathrunet/node_masamune/commit/5cd046f34ec1f332f2f845d5e73ab4f460b08d78))
|
|
276
|
+
* Fixed missing export. ([f8948be](https://github.com/mathrunet/node_masamune/commit/f8948bee2d089c6df7a1b2e34bab844413f42e87))
|
|
277
|
+
* Fixed Sendgrid bug. ([c9baa20](https://github.com/mathrunet/node_masamune/commit/c9baa2061aaccfa753d3cf948c814ec56494d178))
|
|
278
|
+
* Fixed: Parameters were not passed. ([2e3a7ba](https://github.com/mathrunet/node_masamune/commit/2e3a7ba20e7808a29b6558501c913594da5f8d4e))
|
|
279
|
+
* Fixes to the scheduler. ([12c30d9](https://github.com/mathrunet/node_masamune/commit/12c30d92a1b24edddef7754769095bf6ea558cea))
|
|
280
|
+
* Functions options can be specified in detail. ([efbf625](https://github.com/mathrunet/node_masamune/commit/efbf6250228cb0fc3a19e462c1bf69491abbfbc2))
|
|
281
|
+
* I made it output. ([6d17645](https://github.com/mathrunet/node_masamune/commit/6d1764546c2c68b3af61148eac9ca1635e9fddf7))
|
|
282
|
+
* I made sure to get the errors right. ([f00fe56](https://github.com/mathrunet/node_masamune/commit/f00fe56951d2a1ec5f4433bd50db08636d42a79f))
|
|
283
|
+
* I tried to get Console out. ([df230e0](https://github.com/mathrunet/node_masamune/commit/df230e0662e0bdefa9e84752939f46d7a50a0e89))
|
|
284
|
+
* implement AI-driven music prompt improvement for Lyria BGM generation failures and add marketing pipeline requirements. ([81cfd3b](https://github.com/mathrunet/node_masamune/commit/81cfd3bd114669360c0bef465f81f5b4fad8804d))
|
|
285
|
+
* Implemented logging. ([945f56b](https://github.com/mathrunet/node_masamune/commit/945f56bb3b9a1c7650bb6232b2196fb4cac85bee))
|
|
286
|
+
* Import bug fix. ([daefec0](https://github.com/mathrunet/node_masamune/commit/daefec055ad6bd1727d1df561cad25ce793f91c2))
|
|
287
|
+
* Include type definition files in the package ([5b005a0](https://github.com/mathrunet/node_masamune/commit/5b005a078561cd50a698122e39479c7cf1407872))
|
|
288
|
+
* Initialize Firebase Admin SDK if not already initialized when loading Firestore or Storage. ([678c1bd](https://github.com/mathrunet/node_masamune/commit/678c1bd1896ddd3fe0e541e9eeea29797b63e300))
|
|
289
|
+
* Interface adjustment. ([82d64f3](https://github.com/mathrunet/node_masamune/commit/82d64f3420f98b57a3dc66300c70b8cd646c8e98))
|
|
290
|
+
* Log check ([fe8d62a](https://github.com/mathrunet/node_masamune/commit/fe8d62ae69555b2a80235d3549df70b7122304cb))
|
|
291
|
+
* Maintenance of default parameters for Functions. ([f22fa85](https://github.com/mathrunet/node_masamune/commit/f22fa858b3032614d69033a89168387eaed315e9))
|
|
292
|
+
* Make UsCentral default. ([97196cf](https://github.com/mathrunet/node_masamune/commit/97196cf042dedde97d7f98c6d7836b30ec9ee7fe))
|
|
293
|
+
* ModelTimestamp bug fix. ([1852f4e](https://github.com/mathrunet/node_masamune/commit/1852f4e40ad26e4ddf5ba9042b23f5edca8f7f0b))
|
|
294
|
+
* Modified to allow empty parameters to be specified. ([7f923bc](https://github.com/mathrunet/node_masamune/commit/7f923bcbfcc17079e423db2cbcea7c0da512d2ed))
|
|
295
|
+
* Modify the ActionCommand interface. ([84a6543](https://github.com/mathrunet/node_masamune/commit/84a6543224353227f3ae35e2d74c9726bffaeca5))
|
|
296
|
+
* Move `@types/node-fetch` from devDependencies to dependencies. ([d5bc8be](https://github.com/mathrunet/node_masamune/commit/d5bc8be021d25469d9fb58d6b73f8471883969c8))
|
|
297
|
+
* Name the parameter. ([1393a59](https://github.com/mathrunet/node_masamune/commit/1393a598e7c25835b13f869d8c3a153bcda9311e))
|
|
298
|
+
* Notification test. ([f9ee6bc](https://github.com/mathrunet/node_masamune/commit/f9ee6bcc51e68c01f673868b888774eb5e2075c4))
|
|
299
|
+
* Option Interfacing ([9fede77](https://github.com/mathrunet/node_masamune/commit/9fede77e87e9f4313445951c9b23a23472c0fa92))
|
|
300
|
+
* Package modifications. ([94807d9](https://github.com/mathrunet/node_masamune/commit/94807d976e18ea7a4e7c42453b9dd6147c21d289))
|
|
301
|
+
* Package update ([038b6c5](https://github.com/mathrunet/node_masamune/commit/038b6c51885e6e59bc469e9728e790e2021f6e05))
|
|
302
|
+
* Package Update ([2709b18](https://github.com/mathrunet/node_masamune/commit/2709b18899189e6373baf08c141cd10e0b9afa34))
|
|
303
|
+
* Package update. ([9acad0a](https://github.com/mathrunet/node_masamune/commit/9acad0a058338a75e700e53b0a94e4bc0fcf3c3e))
|
|
304
|
+
* Package Update. ([4c3bac3](https://github.com/mathrunet/node_masamune/commit/4c3bac34781dec6225fbf4de923292b602624519))
|
|
305
|
+
* Push notifications do not generate errors. ([1cf06f4](https://github.com/mathrunet/node_masamune/commit/1cf06f42197b59fb9edaf9938bcf796cbb335e0c))
|
|
306
|
+
* README modifications. ([f2ae4c4](https://github.com/mathrunet/node_masamune/commit/f2ae4c4dc9b3f0ea9ac26e59d49ea86858942d4e))
|
|
307
|
+
* refactoring ([8bb1a74](https://github.com/mathrunet/node_masamune/commit/8bb1a74be569e700b9a937ebd8dcb19f8da37731))
|
|
308
|
+
* remove debug logs from Firebase loaders and bump package version. ([36e721e](https://github.com/mathrunet/node_masamune/commit/36e721ec6cc597aced1fc91105f9a04625cde0d2))
|
|
309
|
+
* Remove FormHeader. ([dedb0ef](https://github.com/mathrunet/node_masamune/commit/dedb0ef9abcdc027c9ab98b31ecbe472b731eb93))
|
|
310
|
+
* Remove unnecessary logs. ([e43db79](https://github.com/mathrunet/node_masamune/commit/e43db79051e753488e0875d867e9a78a1b942e6d))
|
|
311
|
+
* Remove uuid package. ([3aee2ee](https://github.com/mathrunet/node_masamune/commit/3aee2ee193044ef233a9aa65c69ce61862e000b9))
|
|
312
|
+
* Removed unremovable emojis. ([c33a18f](https://github.com/mathrunet/node_masamune/commit/c33a18f9baaa981f8b28cae1820aaa64fbce2767))
|
|
313
|
+
* Rename response data. ([23d40ed](https://github.com/mathrunet/node_masamune/commit/23d40ed1b0ebdee5b2b7473ff28fc12e11f27ec8))
|
|
314
|
+
* Rename. ([546a33b](https://github.com/mathrunet/node_masamune/commit/546a33b473f71a442d97bbe08b98997747a267cc))
|
|
315
|
+
* Resolved undefined error. ([0bc3678](https://github.com/mathrunet/node_masamune/commit/0bc367854f67302699290b4186ef0617dcb7391e))
|
|
316
|
+
* Responding to market research. ([3d6206c](https://github.com/mathrunet/node_masamune/commit/3d6206c73612d57b71e026decce1ef45e5983519))
|
|
317
|
+
* Response to Suspension ([63ad4c5](https://github.com/mathrunet/node_masamune/commit/63ad4c54e8b4771b64d85bcb9f2c9d3b950155f4))
|
|
318
|
+
* Save metadata on save. ([4cd3404](https://github.com/mathrunet/node_masamune/commit/4cd340499f47c1da850b9dfd77abac84c6ca8230))
|
|
319
|
+
* Set initial options. ([96558ec](https://github.com/mathrunet/node_masamune/commit/96558ecc35f4577b3c83f8069684efb46beb0432))
|
|
320
|
+
* Set the return value to CallProcessFunctionBase ([900c892](https://github.com/mathrunet/node_masamune/commit/900c89290bf9418d17a86a6f2e1a00b754b61964))
|
|
321
|
+
* Set the value of MaxInstances to 100. ([076b75d](https://github.com/mathrunet/node_masamune/commit/076b75d453792d8f3eb2a019b1abce154b2edb2c))
|
|
322
|
+
* Set the value of Ref. ([0a196cf](https://github.com/mathrunet/node_masamune/commit/0a196cf66bf4a08d694715c2b6a2694768d1ae69))
|
|
323
|
+
* Setup badges and sounds for PUSH notifications. ([45eb7e4](https://github.com/mathrunet/node_masamune/commit/45eb7e43eb7a0a2c905aa567e3656ae8865d7b49))
|
|
324
|
+
* Some functions are exported. ([6864a06](https://github.com/mathrunet/node_masamune/commit/6864a06f7c43a2fa99774ebd2a5cb595728c9751))
|
|
325
|
+
* Specify an optional value. ([7c34ac0](https://github.com/mathrunet/node_masamune/commit/7c34ac0c99b3988987cc40d269f8e970f1ffb3b9))
|
|
326
|
+
* Suggestions and multiple designations of Regions are now possible. ([036c1d7](https://github.com/mathrunet/node_masamune/commit/036c1d723db1c0f57f3be34d17765c0b99926a17))
|
|
327
|
+
* Support changes to ActionCommand. ([f20a9c4](https://github.com/mathrunet/node_masamune/commit/f20a9c497fb5d017158f54987c9ebd222b767395))
|
|
328
|
+
* test maintenance. ([998743a](https://github.com/mathrunet/node_masamune/commit/998743a290d04545c4266e70ceb517c0727f71cc))
|
|
329
|
+
* The array type was wrong, so it was corrected. ([befbc78](https://github.com/mathrunet/node_masamune/commit/befbc784dc25202d65b6f51b4cd6584cd7e7c57f))
|
|
330
|
+
* The number of badges defaults to 0. ([d656826](https://github.com/mathrunet/node_masamune/commit/d6568264e119c3477bdd246eb679e74a744b4989))
|
|
331
|
+
* The problem with InitializeApp ended up being somewhere else, so we put it back. ([7cefd39](https://github.com/mathrunet/node_masamune/commit/7cefd39071c4d5fa43b01bd7744a91a101db5a04))
|
|
332
|
+
* Transfers are also deleted when deleting an account. ([fcc275c](https://github.com/mathrunet/node_masamune/commit/fcc275c87359e04c782f89471bb5e7603b19757c))
|
|
333
|
+
* Update Android adaptive icon size to 1024px for foreground and background generation. ([62b23d0](https://github.com/mathrunet/node_masamune/commit/62b23d05e2289053819cbe9002ca0edf50934075))
|
|
334
|
+
* Update converter implementations to use a single result variable instead of an object for storing results ([3dd647f](https://github.com/mathrunet/node_masamune/commit/3dd647fccc5656346f93584b9161438ec2d0eb57))
|
|
335
|
+
* Update dependency versions for `@mathrunet/katana` ([d4a9aea](https://github.com/mathrunet/node_masamune/commit/d4a9aeadb6541d808618098c5a4b2eaf72bf7d50))
|
|
336
|
+
* Update test environment variable files and .gitignore for asset generation ([03a1979](https://github.com/mathrunet/node_masamune/commit/03a1979dedae29c33f420cd2d6dcfbff92a9321f))
|
|
337
|
+
* Update version to 3.9.9 and add ModelFieldValueConvert class for data conversion with geoHash functionality ([c1f3265](https://github.com/mathrunet/node_masamune/commit/c1f3265fb063df1c303e9e96b7bad372964f19be))
|
|
338
|
+
* ver.1.6.5. ([33bb2ec](https://github.com/mathrunet/node_masamune/commit/33bb2ec9f27c208926b093699d65d1c74ad854e7))
|
|
339
|
+
* Video bug fix. ([0fa5f9f](https://github.com/mathrunet/node_masamune/commit/0fa5f9f8ef2cda5420a54db9445f72e9b1f4d6e6))
|
|
340
|
+
|
|
341
|
+
### refactor
|
|
342
|
+
|
|
343
|
+
* Remove debug log statements from FirestoreNullConverter ([b110a47](https://github.com/mathrunet/node_masamune/commit/b110a47faac178d79e4810221a0c89a943417f59))
|
|
344
|
+
* Remove various cloud functions and tests, and add new tests for short video generation functionality. ([b5a2f34](https://github.com/mathrunet/node_masamune/commit/b5a2f34d474218c76cb25fdc1f6c0fe3b6c13413))
|
|
345
|
+
* Save the interface to a separate file. ([141f8bd](https://github.com/mathrunet/node_masamune/commit/141f8bdf6b06538de2512e52b7fedb58366c4e8b))
|
|
346
|
+
|
|
347
|
+
### test
|
|
348
|
+
|
|
349
|
+
* Add tests ([52c8ad3](https://github.com/mathrunet/node_masamune/commit/52c8ad3952b375c72338b0b22c3e89ddfd0e3789))
|
|
350
|
+
* Complete AndroidToken test. ([3064805](https://github.com/mathrunet/node_masamune/commit/3064805ab63ee58d06d3e9ddb872d136166679eb))
|
|
351
|
+
* Conduct Firestore-related testing. ([0bd245c](https://github.com/mathrunet/node_masamune/commit/0bd245c2243cb1b59b6174f3432b4196378ae4ba))
|
|
352
|
+
* Create a test. ([335d957](https://github.com/mathrunet/node_masamune/commit/335d957c3f2ef10c56f5c588eb288cb2f2c88490))
|
|
353
|
+
* Create tests. ([aa57c66](https://github.com/mathrunet/node_masamune/commit/aa57c665a0ebca77173c7beb778a8e5305f53fd1))
|
|
354
|
+
* Creating a test. ([b7daa4e](https://github.com/mathrunet/node_masamune/commit/b7daa4ec115c742c4b5e4a5221d8a493aa0f114c))
|
|
355
|
+
* Creating tests. ([2a91c82](https://github.com/mathrunet/node_masamune/commit/2a91c824c4cf584fac10f9ac61d9bf4f103c5196))
|
|
356
|
+
* Extend the timeout for the short video generation test. ([9e46c82](https://github.com/mathrunet/node_masamune/commit/9e46c828c791d933b32344842e63830782aa0fa5))
|
|
357
|
+
* Fixes to pass tests. ([a656689](https://github.com/mathrunet/node_masamune/commit/a6566898613d76cd1027a319cda4f605044db151))
|
|
358
|
+
* Test code implementation. ([7f40834](https://github.com/mathrunet/node_masamune/commit/7f40834936b13a1b54b792b1c47f7c1ae2319502))
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 mathru (https://mathru.net)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://mathru.net">
|
|
3
|
+
<img width="240px" src="https://raw.githubusercontent.com/mathrunet/node_masamune/main/.github/images/icon.png" alt="Masamune logo" style="border-radius: 32px"s><br/>
|
|
4
|
+
</a>
|
|
5
|
+
<h1 align="center">Masamune Framework</h1>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<a href="https://github.com/mathrunet">
|
|
10
|
+
<img src="https://img.shields.io/static/v1?label=GitHub&message=Follow&logo=GitHub&color=333333&link=https://github.com/mathrunet" alt="Follow on GitHub" />
|
|
11
|
+
</a>
|
|
12
|
+
<a href="https://x.com/mathru">
|
|
13
|
+
<img src="https://img.shields.io/static/v1?label=@mathru&message=Follow&logo=X&color=0F1419&link=https://x.com/mathru" alt="Follow on X" />
|
|
14
|
+
</a>
|
|
15
|
+
<a href="https://www.youtube.com/c/mathrunetchannel">
|
|
16
|
+
<img src="https://img.shields.io/static/v1?label=YouTube&message=Follow&logo=YouTube&color=FF0000&link=https://www.youtube.com/c/mathrunetchannel" alt="Follow on YouTube" />
|
|
17
|
+
</a>
|
|
18
|
+
<a href="https://github.com/invertase/melos">
|
|
19
|
+
<img src="https://img.shields.io/static/v1?label=maintained%20with&message=melos&color=FF1493&link=https://github.com/invertase/melos" alt="Maintained with Melos" />
|
|
20
|
+
</a>
|
|
21
|
+
</p>
|
|
22
|
+
|
|
23
|
+
<p align="center">
|
|
24
|
+
<a href="https://github.com/sponsors/mathrunet"><img src="https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=ff69b4&link=https://github.com/sponsors/mathrunet" alt="GitHub Sponsor" /></a>
|
|
25
|
+
</p>
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
[[GitHub]](https://github.com/mathrunet) | [[YouTube]](https://www.youtube.com/c/mathrunetchannel) | [[Packages]](https://pub.dev/publishers/mathru.net/packages) | [[X]](https://x.com/mathru) | [[LinkedIn]](https://www.linkedin.com/in/mathrunet/) | [[mathru.net]](https://mathru.net)
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
Just load the package in index.ts and pass the predefined data to the methods to implement the server side.
|
|
34
|
+
|
|
35
|
+
Also, [katana_functions_firebase](https://pub.dev/packages/katana_functions_firebase/score) can be used to execute server-side functions from methods defined on the client side, allowing for safe implementation.
|
|
36
|
+
|
|
37
|
+
# Installation
|
|
38
|
+
|
|
39
|
+
Install the following packages
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npm install @mathrunet/masamune
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
# Implementation
|
|
46
|
+
|
|
47
|
+
Import the package as follows and pass the value of `exports` and the list of functions you wish to define to the `deploy` function.
|
|
48
|
+
|
|
49
|
+
```dart
|
|
50
|
+
import * as m from "@mathrunet/masamune";
|
|
51
|
+
|
|
52
|
+
// Define [m.Functions.xxxx] for the functions to be added to Functions.
|
|
53
|
+
//
|
|
54
|
+
// Functionsに追加する機能を[m.Functions.xxxx]を定義してください。
|
|
55
|
+
m.deploy(
|
|
56
|
+
exports,
|
|
57
|
+
[
|
|
58
|
+
// Function for PUSH Notification.
|
|
59
|
+
m.TestFunctions.test,
|
|
60
|
+
],
|
|
61
|
+
);
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Functions passed to deploy are deployed to Cloud Functions for Firebase.
|
|
65
|
+
|
|
66
|
+
# GitHub Sponsors
|
|
67
|
+
|
|
68
|
+
Sponsors are always welcome. Thank you for your support!
|
|
69
|
+
|
|
70
|
+
[https://github.com/sponsors/mathrunet](https://github.com/sponsors/mathrunet)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const functions = __importStar(require("firebase-functions/v2"));
|
|
37
|
+
const firebase_loader_1 = require("../lib/src/firebase_loader");
|
|
38
|
+
/**
|
|
39
|
+
* Endpoints for testing.
|
|
40
|
+
*
|
|
41
|
+
* テストを行うためのエンドポイントです。
|
|
42
|
+
*/
|
|
43
|
+
module.exports = (regions, options, data) => functions.https.onCall({
|
|
44
|
+
region: options.region ?? regions,
|
|
45
|
+
timeoutSeconds: options.timeoutSeconds,
|
|
46
|
+
memory: options.memory,
|
|
47
|
+
minInstances: options.minInstances,
|
|
48
|
+
concurrency: options.concurrency,
|
|
49
|
+
maxInstances: options.maxInstances,
|
|
50
|
+
serviceAccount: options?.serviceAccount ?? undefined,
|
|
51
|
+
enforceAppCheck: options.enforceAppCheck ?? undefined,
|
|
52
|
+
consumeAppCheckToken: options.consumeAppCheckToken ?? undefined,
|
|
53
|
+
}, async (query) => {
|
|
54
|
+
try {
|
|
55
|
+
const path = query.data.path;
|
|
56
|
+
if (!path) {
|
|
57
|
+
return {};
|
|
58
|
+
}
|
|
59
|
+
const firestoreDatabaseIds = options.firestoreDatabaseIds ?? [""];
|
|
60
|
+
for (const databaseId of firestoreDatabaseIds) {
|
|
61
|
+
const firestoreInstance = (0, firebase_loader_1.firestoreLoader)(databaseId);
|
|
62
|
+
const doc = await firestoreInstance.doc(path).load();
|
|
63
|
+
return { ...doc.data() };
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
catch (err) {
|
|
67
|
+
console.error(err);
|
|
68
|
+
throw err;
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
//# sourceMappingURL=test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../src/functions/test.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iEAAmD;AAEnD,gEAA6D;AAE7D;;;;GAIG;AACH,MAAM,CAAC,OAAO,GAAG,CACf,OAAiB,EACjB,OAA6B,EAC7B,IAA4B,EAC5B,EAAE,CAAC,SAAS,CAAC,KAAK,CAAC,MAAM,CACzB;IACE,MAAM,EAAE,OAAO,CAAC,MAAM,IAAI,OAAO;IACjC,cAAc,EAAE,OAAO,CAAC,cAAc;IACtC,MAAM,EAAE,OAAO,CAAC,MAAM;IACtB,YAAY,EAAE,OAAO,CAAC,YAAY;IAClC,WAAW,EAAE,OAAO,CAAC,WAAW;IAChC,YAAY,EAAE,OAAO,CAAC,YAAY;IAClC,cAAc,EAAE,OAAO,EAAE,cAAc,IAAI,SAAS;IACpD,eAAe,EAAE,OAAO,CAAC,eAAe,IAAI,SAAS;IACrD,oBAAoB,EAAE,OAAO,CAAC,oBAAoB,IAAI,SAAS;CAChE,EACD,KAAK,EAAE,KAAK,EAAE,EAAE;IACd,IAAI,CAAC;QACH,MAAM,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC;QAC7B,IAAI,CAAC,IAAI,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;QACZ,CAAC;QACD,MAAM,oBAAoB,GAAG,OAAO,CAAC,oBAAoB,IAAI,CAAC,EAAE,CAAC,CAAC;QAClE,KAAK,MAAM,UAAU,IAAI,oBAAoB,EAAE,CAAC;YAC9C,MAAM,iBAAiB,GAAG,IAAA,iCAAe,EAAC,UAAU,CAAC,CAAC;YACtD,MAAM,GAAG,GAAG,MAAM,iBAAiB,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,CAAC;YACrD,OAAO,EAAE,GAAG,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC;QAC3B,CAAC;IACH,CAAC;IAAC,OAAO,GAAG,EAAE,CAAC;QACb,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QACnB,MAAM,GAAG,CAAC;IACZ,CAAC;AACH,CAAC,CACF,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { WorkersOptions } from "./lib/src/workers_base";
|
|
2
|
+
import { WorkersData } from "./lib/src/workers_data";
|
|
3
|
+
/**
|
|
4
|
+
* Define a list of applicable Workers for Cloudflare Workers.
|
|
5
|
+
*
|
|
6
|
+
* Cloudflare Workers用の適用可能なWorkerの一覧を定義します。
|
|
7
|
+
*/
|
|
8
|
+
export declare const Workers: {
|
|
9
|
+
/**
|
|
10
|
+
* Endpoints for testing.
|
|
11
|
+
*
|
|
12
|
+
* テストを行うためのエンドポイントです。
|
|
13
|
+
*/
|
|
14
|
+
readonly test: (options?: WorkersOptions) => WorkersData;
|
|
15
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Workers = void 0;
|
|
4
|
+
const workers_data_1 = require("./lib/src/workers_data");
|
|
5
|
+
/**
|
|
6
|
+
* Define a list of applicable Workers for Cloudflare Workers.
|
|
7
|
+
*
|
|
8
|
+
* Cloudflare Workers用の適用可能なWorkerの一覧を定義します。
|
|
9
|
+
*/
|
|
10
|
+
exports.Workers = {
|
|
11
|
+
/**
|
|
12
|
+
* Endpoints for testing.
|
|
13
|
+
*
|
|
14
|
+
* テストを行うためのエンドポイントです。
|
|
15
|
+
*/
|
|
16
|
+
test: (options = {}) => new workers_data_1.WorkersData({ path: "/test", func: require("./workers/test"), options: options }),
|
|
17
|
+
};
|
|
18
|
+
//# sourceMappingURL=functions.js.map
|