@ezetgalaxy/titan 26.15.3 → 26.16.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/README.md +1 -1
- package/index.js +16 -722
- package/package.json +10 -6
- package/packages/cli/index.js +141 -0
- package/templates/common/.env +1 -0
- package/templates/common/Dockerfile +21 -65
- package/templates/common/_dockerignore +4 -8
- package/templates/common/_gitignore +4 -11
- package/templates/extension/package.json +24 -21
- package/templates/js/app/actions/getuser.js +9 -0
- package/templates/js/package.json +6 -5
- package/templates/rust-js/app/actions/getuser.js +9 -0
- package/templates/rust-js/package.json +6 -4
- package/templates/rust-ts/app/actions/getuser.ts +9 -0
- package/templates/rust-ts/package.json +6 -4
- package/templates/ts/app/actions/getuser.ts +9 -0
- package/templates/ts/package.json +6 -5
- package/titanpl-sdk/index.js +0 -0
- package/titanpl-sdk/package.json +39 -36
- package/titanpl-sdk/templates/server/Cargo.toml +2 -0
- package/titanpl-sdk/templates/server/src/extensions/builtin.rs +247 -137
- package/titanpl-sdk/templates/server/src/extensions/external.rs +338 -338
- package/titanpl-sdk/templates/server/src/extensions/mod.rs +1 -0
- package/titanpl-sdk/templates/server/src/extensions/titan_core.js +19 -4
- package/titanpl-sdk/templates/titan/bundle.js +259 -259
- package/titanpl-sdk/templates/titan/error-box.js +277 -277
- package/templates/js/app/actions/hello.js +0 -5
- package/templates/js/server/Cargo.toml +0 -50
- package/templates/js/server/src/action_management.rs +0 -175
- package/templates/js/server/src/errors.rs +0 -12
- package/templates/js/server/src/extensions/builtin.rs +0 -928
- package/templates/js/server/src/extensions/external.rs +0 -338
- package/templates/js/server/src/extensions/mod.rs +0 -579
- package/templates/js/server/src/extensions/titan_core.js +0 -234
- package/templates/js/server/src/fast_path.rs +0 -719
- package/templates/js/server/src/main.rs +0 -607
- package/templates/js/server/src/runtime.rs +0 -284
- package/templates/js/server/src/utils.rs +0 -33
- package/templates/js/titan/bundle.js +0 -259
- package/templates/js/titan/dev.js +0 -390
- package/templates/js/titan/error-box.js +0 -277
- package/templates/js/titan/titan.js +0 -129
- package/templates/rust-js/app/actions/hello.js +0 -5
- package/templates/rust-js/server/Cargo.toml +0 -39
- package/templates/rust-js/server/src/action_management.rs +0 -131
- package/templates/rust-js/server/src/errors.rs +0 -10
- package/templates/rust-js/server/src/extensions.rs +0 -854
- package/templates/rust-js/server/src/main.rs +0 -437
- package/templates/rust-js/server/src/utils.rs +0 -33
- package/templates/rust-ts/app/actions/hello.ts +0 -11
- package/templates/rust-ts/server/Cargo.toml +0 -39
- package/templates/rust-ts/server/src/action_management.rs +0 -131
- package/templates/rust-ts/server/src/errors.rs +0 -51
- package/templates/rust-ts/server/src/extensions.rs +0 -854
- package/templates/rust-ts/server/src/main.rs +0 -468
- package/templates/rust-ts/server/src/utils.rs +0 -33
- package/templates/ts/app/actions/hello.ts +0 -11
- package/templates/ts/server/Cargo.toml +0 -50
- package/templates/ts/server/src/action_management.rs +0 -175
- package/templates/ts/server/src/errors.rs +0 -12
- package/templates/ts/server/src/extensions/builtin.rs +0 -928
- package/templates/ts/server/src/extensions/external.rs +0 -338
- package/templates/ts/server/src/extensions/mod.rs +0 -579
- package/templates/ts/server/src/extensions/titan_core.js +0 -234
- package/templates/ts/server/src/fast_path.rs +0 -719
- package/templates/ts/server/src/main.rs +0 -607
- package/templates/ts/server/src/runtime.rs +0 -284
- package/templates/ts/server/src/utils.rs +0 -33
- package/templates/ts/titan/builder.js +0 -121
- package/templates/ts/titan/bundle.js +0 -123
- package/templates/ts/titan/dev.js +0 -454
- package/templates/ts/titan/titan.d.ts +0 -17
- package/templates/ts/titan/titan.js +0 -124