@voxgig/sdkgen 1.3.7 → 1.3.9
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/bin/voxgig-sdkgen +1 -1
- package/dist/cmp/AgentGuide.d.ts +2 -0
- package/dist/cmp/AgentGuide.js +124 -0
- package/dist/cmp/AgentGuide.js.map +1 -0
- package/dist/cmp/AgentGuideContent.d.ts +25 -0
- package/dist/cmp/AgentGuideContent.js +248 -0
- package/dist/cmp/AgentGuideContent.js.map +1 -0
- package/dist/cmp/AgentGuideFeature.d.ts +2 -0
- package/dist/cmp/AgentGuideFeature.js +92 -0
- package/dist/cmp/AgentGuideFeature.js.map +1 -0
- package/dist/cmp/AgentGuideTop.d.ts +2 -0
- package/dist/cmp/AgentGuideTop.js +97 -0
- package/dist/cmp/AgentGuideTop.js.map +1 -0
- package/dist/cmp/ReadmeTop.js +16 -3
- package/dist/cmp/ReadmeTop.js.map +1 -1
- package/dist/sdkgen.d.ts +4 -1
- package/dist/sdkgen.js +8 -2
- package/dist/sdkgen.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/project/.sdk/model/feature/audit.aontu +22 -0
- package/project/.sdk/model/feature/cache.aontu +23 -0
- package/project/.sdk/model/feature/clienttrack.aontu +20 -0
- package/project/.sdk/model/feature/debug.aontu +25 -0
- package/project/.sdk/model/feature/feature-index.aontu +20 -1
- package/project/.sdk/model/feature/idempotency.aontu +21 -0
- package/project/.sdk/model/feature/metrics.aontu +20 -0
- package/project/.sdk/model/feature/netsim.aontu +36 -0
- package/project/.sdk/model/feature/paging.aontu +23 -0
- package/project/.sdk/model/feature/proxy.aontu +23 -0
- package/project/.sdk/model/feature/ratelimit.aontu +21 -0
- package/project/.sdk/model/feature/rbac.aontu +24 -0
- package/project/.sdk/model/feature/retry.aontu +23 -0
- package/project/.sdk/model/feature/streaming.aontu +22 -0
- package/project/.sdk/model/feature/telemetry.aontu +21 -0
- package/project/.sdk/model/feature/timeout.aontu +18 -0
- package/project/.sdk/model/target/c.aontu +37 -0
- package/project/.sdk/model/target/clojure.aontu +36 -0
- package/project/.sdk/model/target/cpp.aontu +35 -0
- package/project/.sdk/model/target/csharp.aontu +35 -0
- package/project/.sdk/model/target/dart.aontu +34 -0
- package/project/.sdk/model/target/elixir.aontu +33 -0
- package/project/.sdk/model/target/go-cli.aontu +5 -4
- package/project/.sdk/model/target/go-mcp.aontu +5 -4
- package/project/.sdk/model/target/haskell.aontu +47 -0
- package/project/.sdk/model/target/java.aontu +37 -0
- package/project/.sdk/model/target/kotlin.aontu +37 -0
- package/project/.sdk/model/target/ocaml.aontu +36 -0
- package/project/.sdk/model/target/perl.aontu +37 -0
- package/project/.sdk/model/target/rust.aontu +37 -0
- package/project/.sdk/model/target/scala.aontu +37 -0
- package/project/.sdk/model/target/swift.aontu +35 -0
- package/project/.sdk/model/target/zig.aontu +27 -0
- package/project/.sdk/src/cmp/c/Config_c.ts +109 -0
- package/project/.sdk/src/cmp/c/EntityBase_c.ts +61 -0
- package/project/.sdk/src/cmp/c/EntityOperation_c.ts +41 -0
- package/project/.sdk/src/cmp/c/Entity_c.ts +85 -0
- package/project/.sdk/src/cmp/c/Gitignore_c.ts +29 -0
- package/project/.sdk/src/cmp/c/MainEntity_c.ts +31 -0
- package/project/.sdk/src/cmp/c/Main_c.ts +83 -0
- package/project/.sdk/src/cmp/c/Package_c.ts +17 -0
- package/project/.sdk/src/cmp/c/TestDirect_c.ts +227 -0
- package/project/.sdk/src/cmp/c/TestEntity_c.ts +82 -0
- package/project/.sdk/src/cmp/c/Test_c.ts +51 -0
- package/project/.sdk/src/cmp/c/fragment/Entity.fragment.c +265 -0
- package/project/.sdk/src/cmp/c/fragment/EntityCreateOp.fragment.c +27 -0
- package/project/.sdk/src/cmp/c/fragment/EntityListOp.fragment.c +24 -0
- package/project/.sdk/src/cmp/c/fragment/EntityLoadOp.fragment.c +29 -0
- package/project/.sdk/src/cmp/c/fragment/EntityRemoveOp.fragment.c +29 -0
- package/project/.sdk/src/cmp/c/fragment/EntityUpdateOp.fragment.c +29 -0
- package/project/.sdk/src/cmp/c/fragment/Main.fragment.c +220 -0
- package/project/.sdk/src/cmp/c/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/c/utility_c.ts +102 -0
- package/project/.sdk/src/cmp/clojure/Config_clojure.ts +94 -0
- package/project/.sdk/src/cmp/clojure/EntityOperation_clojure.ts +35 -0
- package/project/.sdk/src/cmp/clojure/Entity_clojure.ts +77 -0
- package/project/.sdk/src/cmp/clojure/Gitignore_clojure.ts +28 -0
- package/project/.sdk/src/cmp/clojure/MainEntity_clojure.ts +21 -0
- package/project/.sdk/src/cmp/clojure/Main_clojure.ts +88 -0
- package/project/.sdk/src/cmp/clojure/Package_clojure.ts +41 -0
- package/project/.sdk/src/cmp/clojure/Test_clojure.ts +120 -0
- package/project/.sdk/src/cmp/clojure/fragment/Entity.fragment.clj +158 -0
- package/project/.sdk/src/cmp/clojure/fragment/EntityCreateOp.fragment.clj +14 -0
- package/project/.sdk/src/cmp/clojure/fragment/EntityListOp.fragment.clj +17 -0
- package/project/.sdk/src/cmp/clojure/fragment/EntityLoadOp.fragment.clj +15 -0
- package/project/.sdk/src/cmp/clojure/fragment/EntityRemoveOp.fragment.clj +15 -0
- package/project/.sdk/src/cmp/clojure/fragment/EntityUpdateOp.fragment.clj +15 -0
- package/project/.sdk/src/cmp/clojure/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/clojure/utility_clojure.ts +82 -0
- package/project/.sdk/src/cmp/cpp/Config_cpp.ts +136 -0
- package/project/.sdk/src/cmp/cpp/EntityBase_cpp.ts +51 -0
- package/project/.sdk/src/cmp/cpp/EntityOperation_cpp.ts +37 -0
- package/project/.sdk/src/cmp/cpp/Entity_cpp.ts +78 -0
- package/project/.sdk/src/cmp/cpp/Gitignore_cpp.ts +27 -0
- package/project/.sdk/src/cmp/cpp/MainEntity_cpp.ts +35 -0
- package/project/.sdk/src/cmp/cpp/Main_cpp.ts +84 -0
- package/project/.sdk/src/cmp/cpp/Package_cpp.ts +17 -0
- package/project/.sdk/src/cmp/cpp/TestDirect_cpp.ts +258 -0
- package/project/.sdk/src/cmp/cpp/TestEntity_cpp.ts +454 -0
- package/project/.sdk/src/cmp/cpp/Test_cpp.ts +36 -0
- package/project/.sdk/src/cmp/cpp/fragment/Entity.fragment.cpp +40 -0
- package/project/.sdk/src/cmp/cpp/fragment/EntityCreateOp.fragment.cpp +22 -0
- package/project/.sdk/src/cmp/cpp/fragment/EntityListOp.fragment.cpp +21 -0
- package/project/.sdk/src/cmp/cpp/fragment/EntityLoadOp.fragment.cpp +25 -0
- package/project/.sdk/src/cmp/cpp/fragment/EntityRemoveOp.fragment.cpp +21 -0
- package/project/.sdk/src/cmp/cpp/fragment/EntityUpdateOp.fragment.cpp +22 -0
- package/project/.sdk/src/cmp/cpp/fragment/Main.fragment.cpp +43 -0
- package/project/.sdk/src/cmp/cpp/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/cpp/utility_cpp.ts +83 -0
- package/project/.sdk/src/cmp/csharp/Config_csharp.ts +134 -0
- package/project/.sdk/src/cmp/csharp/EntityBase_csharp.ts +39 -0
- package/project/.sdk/src/cmp/csharp/EntityOperation_csharp.ts +41 -0
- package/project/.sdk/src/cmp/csharp/Entity_csharp.ts +85 -0
- package/project/.sdk/src/cmp/csharp/Gitignore_csharp.ts +38 -0
- package/project/.sdk/src/cmp/csharp/MainEntity_csharp.ts +36 -0
- package/project/.sdk/src/cmp/csharp/Main_csharp.ts +91 -0
- package/project/.sdk/src/cmp/csharp/Package_csharp.ts +101 -0
- package/project/.sdk/src/cmp/csharp/SdkError_csharp.ts +42 -0
- package/project/.sdk/src/cmp/csharp/TestDirect_csharp.ts +560 -0
- package/project/.sdk/src/cmp/csharp/TestEntity_csharp.ts +618 -0
- package/project/.sdk/src/cmp/csharp/Test_csharp.ts +38 -0
- package/project/.sdk/src/cmp/csharp/fragment/Entity.fragment.cs +28 -0
- package/project/.sdk/src/cmp/csharp/fragment/EntityBase.fragment.cs +268 -0
- package/project/.sdk/src/cmp/csharp/fragment/EntityCreateOp.fragment.cs +37 -0
- package/project/.sdk/src/cmp/csharp/fragment/EntityListOp.fragment.cs +35 -0
- package/project/.sdk/src/cmp/csharp/fragment/EntityLoadOp.fragment.cs +41 -0
- package/project/.sdk/src/cmp/csharp/fragment/EntityRemoveOp.fragment.cs +41 -0
- package/project/.sdk/src/cmp/csharp/fragment/EntityUpdateOp.fragment.cs +41 -0
- package/project/.sdk/src/cmp/csharp/fragment/Main.fragment.cs +278 -0
- package/project/.sdk/src/cmp/csharp/fragment/SdkError.fragment.cs +21 -0
- package/project/.sdk/src/cmp/csharp/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/csharp/utility_csharp.ts +143 -0
- package/project/.sdk/src/cmp/dart/Config_dart.ts +99 -0
- package/project/.sdk/src/cmp/dart/EntityBase_dart.ts +34 -0
- package/project/.sdk/src/cmp/dart/EntityOperation_dart.ts +43 -0
- package/project/.sdk/src/cmp/dart/EntityTypes_dart.ts +190 -0
- package/project/.sdk/src/cmp/dart/Entity_dart.ts +79 -0
- package/project/.sdk/src/cmp/dart/Gitignore_dart.ts +34 -0
- package/project/.sdk/src/cmp/dart/MainEntity_dart.ts +33 -0
- package/project/.sdk/src/cmp/dart/Main_dart.ts +105 -0
- package/project/.sdk/src/cmp/dart/Package_dart.ts +81 -0
- package/project/.sdk/src/cmp/dart/SdkError_dart.ts +42 -0
- package/project/.sdk/src/cmp/dart/TestDirect_dart.ts +498 -0
- package/project/.sdk/src/cmp/dart/TestEntity_dart.ts +552 -0
- package/project/.sdk/src/cmp/dart/Test_dart.ts +105 -0
- package/project/.sdk/src/cmp/dart/fragment/Config.fragment.dart +48 -0
- package/project/.sdk/src/cmp/dart/fragment/Direct.test.fragment.dart +25 -0
- package/project/.sdk/src/cmp/dart/fragment/Entity.fragment.dart +31 -0
- package/project/.sdk/src/cmp/dart/fragment/Entity.test.fragment.dart +67 -0
- package/project/.sdk/src/cmp/dart/fragment/EntityBase.fragment.dart +285 -0
- package/project/.sdk/src/cmp/dart/fragment/EntityCreateOp.fragment.dart +90 -0
- package/project/.sdk/src/cmp/dart/fragment/EntityListOp.fragment.dart +90 -0
- package/project/.sdk/src/cmp/dart/fragment/EntityLoadOp.fragment.dart +94 -0
- package/project/.sdk/src/cmp/dart/fragment/EntityRemoveOp.fragment.dart +94 -0
- package/project/.sdk/src/cmp/dart/fragment/EntityUpdateOp.fragment.dart +94 -0
- package/project/.sdk/src/cmp/dart/fragment/Main.fragment.dart +240 -0
- package/project/.sdk/src/cmp/dart/fragment/SdkError.fragment.dart +18 -0
- package/project/.sdk/src/cmp/dart/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/dart/utility_dart.ts +86 -0
- package/project/.sdk/src/cmp/elixir/Config_elixir.ts +101 -0
- package/project/.sdk/src/cmp/elixir/EntityOperation_elixir.ts +27 -0
- package/project/.sdk/src/cmp/elixir/Entity_elixir.ts +54 -0
- package/project/.sdk/src/cmp/elixir/Gitignore_elixir.ts +28 -0
- package/project/.sdk/src/cmp/elixir/MainEntity_elixir.ts +26 -0
- package/project/.sdk/src/cmp/elixir/Main_elixir.ts +124 -0
- package/project/.sdk/src/cmp/elixir/Package_elixir.ts +64 -0
- package/project/.sdk/src/cmp/elixir/TestDirect_elixir.ts +95 -0
- package/project/.sdk/src/cmp/elixir/TestEntity_elixir.ts +115 -0
- package/project/.sdk/src/cmp/elixir/Test_elixir.ts +47 -0
- package/project/.sdk/src/cmp/elixir/fragment/Entity.fragment.ex +37 -0
- package/project/.sdk/src/cmp/elixir/fragment/EntityCreateOp.fragment.ex +28 -0
- package/project/.sdk/src/cmp/elixir/fragment/EntityListOp.fragment.ex +30 -0
- package/project/.sdk/src/cmp/elixir/fragment/EntityLoadOp.fragment.ex +32 -0
- package/project/.sdk/src/cmp/elixir/fragment/EntityRemoveOp.fragment.ex +32 -0
- package/project/.sdk/src/cmp/elixir/fragment/EntityUpdateOp.fragment.ex +30 -0
- package/project/.sdk/src/cmp/elixir/fragment/Main.fragment.ex +218 -0
- package/project/.sdk/src/cmp/elixir/fragment/Pipeline.fragment.ex +62 -0
- package/project/.sdk/src/cmp/elixir/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/elixir/utility_elixir.ts +85 -0
- package/project/.sdk/src/cmp/go/TestEntity_go.ts +54 -0
- package/project/.sdk/src/cmp/go/fragment/Entity.fragment.go +133 -0
- package/project/.sdk/src/cmp/go/fragment/Main.fragment.go +14 -8
- package/project/.sdk/src/cmp/go-cli/Main_go-cli.ts +20 -2
- package/project/.sdk/src/cmp/go-mcp/Main_go-mcp.ts +42 -2
- package/project/.sdk/src/cmp/haskell/Config_haskell.ts +115 -0
- package/project/.sdk/src/cmp/haskell/Entity_haskell.ts +13 -0
- package/project/.sdk/src/cmp/haskell/Gitignore_haskell.ts +27 -0
- package/project/.sdk/src/cmp/haskell/Main_haskell.ts +123 -0
- package/project/.sdk/src/cmp/haskell/Package_haskell.ts +58 -0
- package/project/.sdk/src/cmp/haskell/Test_haskell.ts +263 -0
- package/project/.sdk/src/cmp/haskell/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/haskell/utility_haskell.ts +105 -0
- package/project/.sdk/src/cmp/java/Config_java.ts +138 -0
- package/project/.sdk/src/cmp/java/EntityBase_java.ts +50 -0
- package/project/.sdk/src/cmp/java/EntityOperation_java.ts +48 -0
- package/project/.sdk/src/cmp/java/Entity_java.ts +95 -0
- package/project/.sdk/src/cmp/java/Gitignore_java.ts +37 -0
- package/project/.sdk/src/cmp/java/MainEntity_java.ts +41 -0
- package/project/.sdk/src/cmp/java/Main_java.ts +100 -0
- package/project/.sdk/src/cmp/java/Package_java.ts +126 -0
- package/project/.sdk/src/cmp/java/SdkError_java.ts +49 -0
- package/project/.sdk/src/cmp/java/TestDirect_java.ts +509 -0
- package/project/.sdk/src/cmp/java/TestEntity_java.ts +599 -0
- package/project/.sdk/src/cmp/java/Test_java.ts +42 -0
- package/project/.sdk/src/cmp/java/fragment/Entity.fragment.java +35 -0
- package/project/.sdk/src/cmp/java/fragment/EntityBase.fragment.java +235 -0
- package/project/.sdk/src/cmp/java/fragment/EntityCreateOp.fragment.java +42 -0
- package/project/.sdk/src/cmp/java/fragment/EntityListOp.fragment.java +39 -0
- package/project/.sdk/src/cmp/java/fragment/EntityLoadOp.fragment.java +45 -0
- package/project/.sdk/src/cmp/java/fragment/EntityRemoveOp.fragment.java +45 -0
- package/project/.sdk/src/cmp/java/fragment/EntityUpdateOp.fragment.java +45 -0
- package/project/.sdk/src/cmp/java/fragment/Main.fragment.java +34 -0
- package/project/.sdk/src/cmp/java/fragment/SdkError.fragment.java +27 -0
- package/project/.sdk/src/cmp/java/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/java/utility_java.ts +102 -0
- package/project/.sdk/src/cmp/js/Config_js.ts +4 -2
- package/project/.sdk/src/cmp/js/TestEntity_js.ts +1 -0
- package/project/.sdk/src/cmp/js/fragment/Entity.test.fragment.js +32 -1
- package/project/.sdk/src/cmp/js/fragment/EntityBase.fragment.js +81 -0
- package/project/.sdk/src/cmp/js/fragment/Main.fragment.js +10 -5
- package/project/.sdk/src/cmp/kotlin/Config_kotlin.ts +128 -0
- package/project/.sdk/src/cmp/kotlin/EntityBase_kotlin.ts +50 -0
- package/project/.sdk/src/cmp/kotlin/EntityOperation_kotlin.ts +48 -0
- package/project/.sdk/src/cmp/kotlin/Entity_kotlin.ts +93 -0
- package/project/.sdk/src/cmp/kotlin/Gitignore_kotlin.ts +41 -0
- package/project/.sdk/src/cmp/kotlin/MainEntity_kotlin.ts +40 -0
- package/project/.sdk/src/cmp/kotlin/Main_kotlin.ts +94 -0
- package/project/.sdk/src/cmp/kotlin/Package_kotlin.ts +110 -0
- package/project/.sdk/src/cmp/kotlin/SdkError_kotlin.ts +48 -0
- package/project/.sdk/src/cmp/kotlin/TestDirect_kotlin.ts +479 -0
- package/project/.sdk/src/cmp/kotlin/TestEntity_kotlin.ts +567 -0
- package/project/.sdk/src/cmp/kotlin/Test_kotlin.ts +42 -0
- package/project/.sdk/src/cmp/kotlin/fragment/Entity.fragment.kt +28 -0
- package/project/.sdk/src/cmp/kotlin/fragment/EntityBase.fragment.kt +195 -0
- package/project/.sdk/src/cmp/kotlin/fragment/EntityCreateOp.fragment.kt +37 -0
- package/project/.sdk/src/cmp/kotlin/fragment/EntityListOp.fragment.kt +34 -0
- package/project/.sdk/src/cmp/kotlin/fragment/EntityLoadOp.fragment.kt +40 -0
- package/project/.sdk/src/cmp/kotlin/fragment/EntityRemoveOp.fragment.kt +40 -0
- package/project/.sdk/src/cmp/kotlin/fragment/EntityUpdateOp.fragment.kt +40 -0
- package/project/.sdk/src/cmp/kotlin/fragment/Main.fragment.kt +28 -0
- package/project/.sdk/src/cmp/kotlin/fragment/SdkError.fragment.kt +24 -0
- package/project/.sdk/src/cmp/kotlin/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/kotlin/utility_kotlin.ts +101 -0
- package/project/.sdk/src/cmp/lua/Entity_lua.ts +7 -2
- package/project/.sdk/src/cmp/lua/TestEntity_lua.ts +47 -0
- package/project/.sdk/src/cmp/lua/fragment/Entity.fragment.lua +137 -0
- package/project/.sdk/src/cmp/lua/fragment/Main.fragment.lua +9 -6
- package/project/.sdk/src/cmp/ocaml/Config_ocaml.ts +114 -0
- package/project/.sdk/src/cmp/ocaml/EntityOperation_ocaml.ts +63 -0
- package/project/.sdk/src/cmp/ocaml/Entity_ocaml.ts +152 -0
- package/project/.sdk/src/cmp/ocaml/Gitignore_ocaml.ts +37 -0
- package/project/.sdk/src/cmp/ocaml/MainEntity_ocaml.ts +28 -0
- package/project/.sdk/src/cmp/ocaml/Main_ocaml.ts +111 -0
- package/project/.sdk/src/cmp/ocaml/Package_ocaml.ts +47 -0
- package/project/.sdk/src/cmp/ocaml/SdkError_ocaml.ts +42 -0
- package/project/.sdk/src/cmp/ocaml/TestDirect_ocaml.ts +47 -0
- package/project/.sdk/src/cmp/ocaml/TestEntity_ocaml.ts +130 -0
- package/project/.sdk/src/cmp/ocaml/Test_ocaml.ts +35 -0
- package/project/.sdk/src/cmp/ocaml/fragment/RunOp.fragment.ml +32 -0
- package/project/.sdk/src/cmp/ocaml/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/ocaml/utility_ocaml.ts +129 -0
- package/project/.sdk/src/cmp/perl/Config_perl.ts +127 -0
- package/project/.sdk/src/cmp/perl/EntityOperation_perl.ts +42 -0
- package/project/.sdk/src/cmp/perl/Entity_perl.ts +84 -0
- package/project/.sdk/src/cmp/perl/Gitignore_perl.ts +32 -0
- package/project/.sdk/src/cmp/perl/MainEntity_perl.ts +34 -0
- package/project/.sdk/src/cmp/perl/Main_perl.ts +140 -0
- package/project/.sdk/src/cmp/perl/Package_perl.ts +63 -0
- package/project/.sdk/src/cmp/perl/TestDirect_perl.ts +433 -0
- package/project/.sdk/src/cmp/perl/TestEntity_perl.ts +515 -0
- package/project/.sdk/src/cmp/perl/Test_perl.ts +54 -0
- package/project/.sdk/src/cmp/perl/fragment/Entity.fragment.pm +235 -0
- package/project/.sdk/src/cmp/perl/fragment/EntityCreateOp.fragment.pm +31 -0
- package/project/.sdk/src/cmp/perl/fragment/EntityListOp.fragment.pm +43 -0
- package/project/.sdk/src/cmp/perl/fragment/EntityLoadOp.fragment.pm +34 -0
- package/project/.sdk/src/cmp/perl/fragment/EntityRemoveOp.fragment.pm +32 -0
- package/project/.sdk/src/cmp/perl/fragment/EntityUpdateOp.fragment.pm +32 -0
- package/project/.sdk/src/cmp/perl/fragment/Main.fragment.pm +263 -0
- package/project/.sdk/src/cmp/perl/fragment/SdkError.fragment.pm +27 -0
- package/project/.sdk/src/cmp/perl/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/perl/utility_perl.ts +30 -0
- package/project/.sdk/src/cmp/php/TestEntity_php.ts +45 -0
- package/project/.sdk/src/cmp/php/fragment/Entity.fragment.php +124 -0
- package/project/.sdk/src/cmp/php/fragment/Main.fragment.php +13 -6
- package/project/.sdk/src/cmp/py/Entity_py.ts +8 -2
- package/project/.sdk/src/cmp/py/TestEntity_py.ts +40 -0
- package/project/.sdk/src/cmp/py/fragment/Entity.fragment.py +135 -28
- package/project/.sdk/src/cmp/py/fragment/Main.fragment.py +9 -6
- package/project/.sdk/src/cmp/rb/Entity_rb.ts +8 -2
- package/project/.sdk/src/cmp/rb/ReadmeExamplesTest_rb.ts +4 -1
- package/project/.sdk/src/cmp/rb/TestEntity_rb.ts +42 -0
- package/project/.sdk/src/cmp/rb/fragment/Entity.fragment.rb +122 -23
- package/project/.sdk/src/cmp/rb/fragment/Main.fragment.rb +9 -6
- package/project/.sdk/src/cmp/rust/Config_rust.ts +118 -0
- package/project/.sdk/src/cmp/rust/EntityBase_rust.ts +59 -0
- package/project/.sdk/src/cmp/rust/EntityOperation_rust.ts +44 -0
- package/project/.sdk/src/cmp/rust/Entity_rust.ts +94 -0
- package/project/.sdk/src/cmp/rust/Gitignore_rust.ts +29 -0
- package/project/.sdk/src/cmp/rust/MainEntity_rust.ts +37 -0
- package/project/.sdk/src/cmp/rust/Main_rust.ts +146 -0
- package/project/.sdk/src/cmp/rust/Package_rust.ts +80 -0
- package/project/.sdk/src/cmp/rust/SdkError_rust.ts +42 -0
- package/project/.sdk/src/cmp/rust/TestDirect_rust.ts +448 -0
- package/project/.sdk/src/cmp/rust/TestEntity_rust.ts +635 -0
- package/project/.sdk/src/cmp/rust/Test_rust.ts +51 -0
- package/project/.sdk/src/cmp/rust/fragment/Entity.fragment.rs +288 -0
- package/project/.sdk/src/cmp/rust/fragment/EntityCreateOp.fragment.rs +29 -0
- package/project/.sdk/src/cmp/rust/fragment/EntityListOp.fragment.rs +26 -0
- package/project/.sdk/src/cmp/rust/fragment/EntityLoadOp.fragment.rs +35 -0
- package/project/.sdk/src/cmp/rust/fragment/EntityRemoveOp.fragment.rs +35 -0
- package/project/.sdk/src/cmp/rust/fragment/EntityUpdateOp.fragment.rs +35 -0
- package/project/.sdk/src/cmp/rust/fragment/Main.fragment.rs +296 -0
- package/project/.sdk/src/cmp/rust/fragment/SdkError.fragment.rs +34 -0
- package/project/.sdk/src/cmp/rust/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/rust/utility_rust.ts +104 -0
- package/project/.sdk/src/cmp/scala/Config_scala.ts +126 -0
- package/project/.sdk/src/cmp/scala/EntityBase_scala.ts +50 -0
- package/project/.sdk/src/cmp/scala/EntityOperation_scala.ts +46 -0
- package/project/.sdk/src/cmp/scala/Entity_scala.ts +87 -0
- package/project/.sdk/src/cmp/scala/Gitignore_scala.ts +31 -0
- package/project/.sdk/src/cmp/scala/MainEntity_scala.ts +40 -0
- package/project/.sdk/src/cmp/scala/Main_scala.ts +93 -0
- package/project/.sdk/src/cmp/scala/Package_scala.ts +22 -0
- package/project/.sdk/src/cmp/scala/TestDirect_scala.ts +233 -0
- package/project/.sdk/src/cmp/scala/TestEntity_scala.ts +397 -0
- package/project/.sdk/src/cmp/scala/Test_scala.ts +93 -0
- package/project/.sdk/src/cmp/scala/fragment/Entity.fragment.scala +24 -0
- package/project/.sdk/src/cmp/scala/fragment/EntityBase.fragment.scala +169 -0
- package/project/.sdk/src/cmp/scala/fragment/EntityCreateOp.fragment.scala +32 -0
- package/project/.sdk/src/cmp/scala/fragment/EntityListOp.fragment.scala +28 -0
- package/project/.sdk/src/cmp/scala/fragment/EntityLoadOp.fragment.scala +33 -0
- package/project/.sdk/src/cmp/scala/fragment/EntityRemoveOp.fragment.scala +33 -0
- package/project/.sdk/src/cmp/scala/fragment/EntityUpdateOp.fragment.scala +33 -0
- package/project/.sdk/src/cmp/scala/fragment/Main.fragment.scala +27 -0
- package/project/.sdk/src/cmp/scala/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/scala/utility_scala.ts +99 -0
- package/project/.sdk/src/cmp/swift/Config_swift.ts +127 -0
- package/project/.sdk/src/cmp/swift/EntityBase_swift.ts +38 -0
- package/project/.sdk/src/cmp/swift/EntityOperation_swift.ts +39 -0
- package/project/.sdk/src/cmp/swift/Entity_swift.ts +86 -0
- package/project/.sdk/src/cmp/swift/Gitignore_swift.ts +32 -0
- package/project/.sdk/src/cmp/swift/MainEntity_swift.ts +35 -0
- package/project/.sdk/src/cmp/swift/Main_swift.ts +94 -0
- package/project/.sdk/src/cmp/swift/Package_swift.ts +66 -0
- package/project/.sdk/src/cmp/swift/SdkError_swift.ts +41 -0
- package/project/.sdk/src/cmp/swift/TestDirect_swift.ts +84 -0
- package/project/.sdk/src/cmp/swift/TestEntity_swift.ts +84 -0
- package/project/.sdk/src/cmp/swift/Test_swift.ts +39 -0
- package/project/.sdk/src/cmp/swift/fragment/Entity.fragment.swift +23 -0
- package/project/.sdk/src/cmp/swift/fragment/EntityBase.fragment.swift +202 -0
- package/project/.sdk/src/cmp/swift/fragment/EntityCreateOp.fragment.swift +23 -0
- package/project/.sdk/src/cmp/swift/fragment/EntityListOp.fragment.swift +21 -0
- package/project/.sdk/src/cmp/swift/fragment/EntityLoadOp.fragment.swift +24 -0
- package/project/.sdk/src/cmp/swift/fragment/EntityRemoveOp.fragment.swift +24 -0
- package/project/.sdk/src/cmp/swift/fragment/EntityUpdateOp.fragment.swift +24 -0
- package/project/.sdk/src/cmp/swift/fragment/Main.fragment.swift +211 -0
- package/project/.sdk/src/cmp/swift/fragment/SdkError.fragment.swift +22 -0
- package/project/.sdk/src/cmp/swift/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/swift/utility_swift.ts +76 -0
- package/project/.sdk/src/cmp/ts/Config_ts.ts +4 -2
- package/project/.sdk/src/cmp/ts/Package_ts.ts +17 -2
- package/project/.sdk/src/cmp/ts/fragment/EntityBase.fragment.ts +81 -0
- package/project/.sdk/src/cmp/ts/fragment/Main.fragment.ts +10 -5
- package/project/.sdk/src/cmp/zig/Config_zig.ts +113 -0
- package/project/.sdk/src/cmp/zig/EntityOperation_zig.ts +39 -0
- package/project/.sdk/src/cmp/zig/Entity_zig.ts +89 -0
- package/project/.sdk/src/cmp/zig/Gitignore_zig.ts +27 -0
- package/project/.sdk/src/cmp/zig/MainEntity_zig.ts +38 -0
- package/project/.sdk/src/cmp/zig/Main_zig.ts +78 -0
- package/project/.sdk/src/cmp/zig/Test_zig.ts +114 -0
- package/project/.sdk/src/cmp/zig/fragment/Entity.fragment.zig +278 -0
- package/project/.sdk/src/cmp/zig/fragment/EntityCreateOp.fragment.zig +24 -0
- package/project/.sdk/src/cmp/zig/fragment/EntityListOp.fragment.zig +21 -0
- package/project/.sdk/src/cmp/zig/fragment/EntityLoadOp.fragment.zig +26 -0
- package/project/.sdk/src/cmp/zig/fragment/EntityRemoveOp.fragment.zig +26 -0
- package/project/.sdk/src/cmp/zig/fragment/EntityUpdateOp.fragment.zig +26 -0
- package/project/.sdk/src/cmp/zig/fragment/Main.fragment.zig +258 -0
- package/project/.sdk/src/cmp/zig/tsconfig.json +15 -0
- package/project/.sdk/src/cmp/zig/utility_zig.ts +95 -0
- package/project/.sdk/tm/c/LICENSE +22 -0
- package/project/.sdk/tm/c/Makefile +50 -0
- package/project/.sdk/tm/c/VERSION +1 -0
- package/project/.sdk/tm/c/core/context.c +145 -0
- package/project/.sdk/tm/c/core/control.c +19 -0
- package/project/.sdk/tm/c/core/error.c +24 -0
- package/project/.sdk/tm/c/core/helpers.c +228 -0
- package/project/.sdk/tm/c/core/operation.c +34 -0
- package/project/.sdk/tm/c/core/point.c +49 -0
- package/project/.sdk/tm/c/core/response.c +29 -0
- package/project/.sdk/tm/c/core/result.c +60 -0
- package/project/.sdk/tm/c/core/sdk.h +514 -0
- package/project/.sdk/tm/c/core/spec.c +94 -0
- package/project/.sdk/tm/c/core/utility.c +74 -0
- package/project/.sdk/tm/c/feature/audit.c +134 -0
- package/project/.sdk/tm/c/feature/base.c +40 -0
- package/project/.sdk/tm/c/feature/cache.c +262 -0
- package/project/.sdk/tm/c/feature/clienttrack.c +144 -0
- package/project/.sdk/tm/c/feature/debug.c +230 -0
- package/project/.sdk/tm/c/feature/idempotency.c +164 -0
- package/project/.sdk/tm/c/feature/log.c +79 -0
- package/project/.sdk/tm/c/feature/metrics.c +177 -0
- package/project/.sdk/tm/c/feature/netsim.c +211 -0
- package/project/.sdk/tm/c/feature/paging.c +223 -0
- package/project/.sdk/tm/c/feature/proxy.c +249 -0
- package/project/.sdk/tm/c/feature/ratelimit.c +124 -0
- package/project/.sdk/tm/c/feature/rbac.c +167 -0
- package/project/.sdk/tm/c/feature/retry.c +164 -0
- package/project/.sdk/tm/c/feature/streaming.c +147 -0
- package/project/.sdk/tm/c/feature/support.c +115 -0
- package/project/.sdk/tm/c/feature/telemetry.c +205 -0
- package/project/.sdk/tm/c/feature/test.c +385 -0
- package/project/.sdk/tm/c/feature/timeout.c +106 -0
- package/project/.sdk/tm/c/src/feature/README.md +1 -0
- package/project/.sdk/tm/c/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/c/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/c/tests/ctest.h +58 -0
- package/project/.sdk/tm/c/tests/feature_harness.h +441 -0
- package/project/.sdk/tm/c/tests/feature_test.c +1210 -0
- package/project/.sdk/tm/c/tests/pipeline_test.c +561 -0
- package/project/.sdk/tm/c/tests/primary_utility_test.c +573 -0
- package/project/.sdk/tm/c/tests/runner.h +274 -0
- package/project/.sdk/tm/c/tests/sdk_pipeline_test.c +89 -0
- package/project/.sdk/tm/c/tests/struct_corpus_test.c +939 -0
- package/project/.sdk/tm/c/utility/clean.c +20 -0
- package/project/.sdk/tm/c/utility/done.c +26 -0
- package/project/.sdk/tm/c/utility/feature_add.c +42 -0
- package/project/.sdk/tm/c/utility/feature_hook.c +22 -0
- package/project/.sdk/tm/c/utility/feature_init.c +22 -0
- package/project/.sdk/tm/c/utility/fetcher.c +78 -0
- package/project/.sdk/tm/c/utility/jsonparse.c +11 -0
- package/project/.sdk/tm/c/utility/make_context.c +7 -0
- package/project/.sdk/tm/c/utility/make_error.c +66 -0
- package/project/.sdk/tm/c/utility/make_fetch_def.c +43 -0
- package/project/.sdk/tm/c/utility/make_options.c +179 -0
- package/project/.sdk/tm/c/utility/make_point.c +109 -0
- package/project/.sdk/tm/c/utility/make_request.c +62 -0
- package/project/.sdk/tm/c/utility/make_response.c +45 -0
- package/project/.sdk/tm/c/utility/make_result.c +61 -0
- package/project/.sdk/tm/c/utility/make_spec.c +60 -0
- package/project/.sdk/tm/c/utility/make_url.c +88 -0
- package/project/.sdk/tm/c/utility/param.c +58 -0
- package/project/.sdk/tm/c/utility/prepare_auth.c +65 -0
- package/project/.sdk/tm/c/utility/prepare_body.c +12 -0
- package/project/.sdk/tm/c/utility/prepare_headers.c +13 -0
- package/project/.sdk/tm/c/utility/prepare_method.c +16 -0
- package/project/.sdk/tm/c/utility/prepare_params.c +30 -0
- package/project/.sdk/tm/c/utility/prepare_path.c +17 -0
- package/project/.sdk/tm/c/utility/prepare_query.c +37 -0
- package/project/.sdk/tm/c/utility/result_basic.c +43 -0
- package/project/.sdk/tm/c/utility/result_body.c +17 -0
- package/project/.sdk/tm/c/utility/result_headers.c +17 -0
- package/project/.sdk/tm/c/utility/struct/inject.c +703 -0
- package/project/.sdk/tm/c/utility/struct/re_util.c +221 -0
- package/project/.sdk/tm/c/utility/struct/regex.c +1103 -0
- package/project/.sdk/tm/c/utility/struct/regex.h +84 -0
- package/project/.sdk/tm/c/utility/struct/transform.c +2224 -0
- package/project/.sdk/tm/c/utility/struct/utility.c +1971 -0
- package/project/.sdk/tm/c/utility/struct/value.c +640 -0
- package/project/.sdk/tm/c/utility/struct/value.h +273 -0
- package/project/.sdk/tm/c/utility/struct/value_io.c +366 -0
- package/project/.sdk/tm/c/utility/struct/value_io.h +31 -0
- package/project/.sdk/tm/c/utility/struct/voxgig_struct.h +216 -0
- package/project/.sdk/tm/c/utility/transform_request.c +21 -0
- package/project/.sdk/tm/c/utility/transform_response.c +36 -0
- package/project/.sdk/tm/clojure/LICENSE +22 -0
- package/project/.sdk/tm/clojure/Makefile +15 -0
- package/project/.sdk/tm/clojure/VERSION +1 -0
- package/project/.sdk/tm/clojure/src/feature/README.md +1 -0
- package/project/.sdk/tm/clojure/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/clojure/src/sdk/client.clj +119 -0
- package/project/.sdk/tm/clojure/src/sdk/core.clj +901 -0
- package/project/.sdk/tm/clojure/src/sdk/features.clj +1027 -0
- package/project/.sdk/tm/clojure/src/voxgig/struct.clj +1734 -0
- package/project/.sdk/tm/clojure/test/sdk/test/feature.clj +596 -0
- package/project/.sdk/tm/clojure/test/sdk/test/netsim.clj +42 -0
- package/project/.sdk/tm/clojure/test/sdk/test/pipeline.clj +314 -0
- package/project/.sdk/tm/clojure/test/sdk/test/primary.clj +52 -0
- package/project/.sdk/tm/clojure/test/sdk/test/struct_corpus.clj +337 -0
- package/project/.sdk/tm/clojure/test/sdk/test_runner.clj +39 -0
- package/project/.sdk/tm/clojure/test/sdk/testutil.clj +35 -0
- package/project/.sdk/tm/cpp/LICENSE +22 -0
- package/project/.sdk/tm/cpp/Makefile +36 -0
- package/project/.sdk/tm/cpp/VERSION +1 -0
- package/project/.sdk/tm/cpp/core/sdk.hpp +16 -0
- package/project/.sdk/tm/cpp/core/struct.hpp +225 -0
- package/project/.sdk/tm/cpp/core/types.hpp +1105 -0
- package/project/.sdk/tm/cpp/feature/audit.hpp +107 -0
- package/project/.sdk/tm/cpp/feature/base.hpp +34 -0
- package/project/.sdk/tm/cpp/feature/cache.hpp +189 -0
- package/project/.sdk/tm/cpp/feature/clienttrack.hpp +105 -0
- package/project/.sdk/tm/cpp/feature/debug.hpp +157 -0
- package/project/.sdk/tm/cpp/feature/idempotency.hpp +119 -0
- package/project/.sdk/tm/cpp/feature/log.hpp +90 -0
- package/project/.sdk/tm/cpp/feature/metrics.hpp +103 -0
- package/project/.sdk/tm/cpp/feature/netsim.hpp +152 -0
- package/project/.sdk/tm/cpp/feature/options.hpp +156 -0
- package/project/.sdk/tm/cpp/feature/paging.hpp +156 -0
- package/project/.sdk/tm/cpp/feature/proxy.hpp +145 -0
- package/project/.sdk/tm/cpp/feature/ratelimit.hpp +87 -0
- package/project/.sdk/tm/cpp/feature/rbac.hpp +108 -0
- package/project/.sdk/tm/cpp/feature/retry.hpp +130 -0
- package/project/.sdk/tm/cpp/feature/streaming.hpp +98 -0
- package/project/.sdk/tm/cpp/feature/telemetry.hpp +139 -0
- package/project/.sdk/tm/cpp/feature/test.hpp +289 -0
- package/project/.sdk/tm/cpp/feature/timeout.hpp +88 -0
- package/project/.sdk/tm/cpp/src/feature/README.md +1 -0
- package/project/.sdk/tm/cpp/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/test/custom_utility_test.cpp +57 -0
- package/project/.sdk/tm/cpp/test/exists_test.cpp +16 -0
- package/project/.sdk/tm/cpp/test/feature_test.cpp +911 -0
- package/project/.sdk/tm/cpp/test/harness.hpp +344 -0
- package/project/.sdk/tm/cpp/test/netsim_test.cpp +48 -0
- package/project/.sdk/tm/cpp/test/pipeline_test.cpp +526 -0
- package/project/.sdk/tm/cpp/test/primary_utility_test.cpp +841 -0
- package/project/.sdk/tm/cpp/test/runner_support.hpp +437 -0
- package/project/.sdk/tm/cpp/test/sdk-test-control.json +19 -0
- package/project/.sdk/tm/cpp/test/struct_corpus_test.cpp +494 -0
- package/project/.sdk/tm/cpp/test/struct_runner.hpp +314 -0
- package/project/.sdk/tm/cpp/test/testlib.hpp +82 -0
- package/project/.sdk/tm/cpp/utility/pipeline.hpp +1054 -0
- package/project/.sdk/tm/cpp/utility/voxgigstruct/value.hpp +525 -0
- package/project/.sdk/tm/cpp/utility/voxgigstruct/value_io.hpp +315 -0
- package/project/.sdk/tm/cpp/utility/voxgigstruct/voxgig_struct.hpp +3379 -0
- package/project/.sdk/tm/csharp/LICENSE +22 -0
- package/project/.sdk/tm/csharp/Makefile +43 -0
- package/project/.sdk/tm/csharp/VERSION +1 -0
- package/project/.sdk/tm/csharp/core/Context.cs +257 -0
- package/project/.sdk/tm/csharp/core/Control.cs +17 -0
- package/project/.sdk/tm/csharp/core/Helpers.cs +61 -0
- package/project/.sdk/tm/csharp/core/Operation.cs +51 -0
- package/project/.sdk/tm/csharp/core/Point.cs +68 -0
- package/project/.sdk/tm/csharp/core/Response.cs +45 -0
- package/project/.sdk/tm/csharp/core/Result.cs +63 -0
- package/project/.sdk/tm/csharp/core/Spec.cs +81 -0
- package/project/.sdk/tm/csharp/core/Types.cs +21 -0
- package/project/.sdk/tm/csharp/core/Utility.cs +88 -0
- package/project/.sdk/tm/csharp/feature/AuditFeature.cs +116 -0
- package/project/.sdk/tm/csharp/feature/BaseFeature.cs +39 -0
- package/project/.sdk/tm/csharp/feature/CacheFeature.cs +186 -0
- package/project/.sdk/tm/csharp/feature/ClienttrackFeature.cs +103 -0
- package/project/.sdk/tm/csharp/feature/DebugFeature.cs +157 -0
- package/project/.sdk/tm/csharp/feature/FeatureOptions.cs +197 -0
- package/project/.sdk/tm/csharp/feature/IdempotencyFeature.cs +97 -0
- package/project/.sdk/tm/csharp/feature/LogFeature.cs +109 -0
- package/project/.sdk/tm/csharp/feature/MetricsFeature.cs +117 -0
- package/project/.sdk/tm/csharp/feature/NetsimFeature.cs +200 -0
- package/project/.sdk/tm/csharp/feature/PagingFeature.cs +187 -0
- package/project/.sdk/tm/csharp/feature/ProxyFeature.cs +138 -0
- package/project/.sdk/tm/csharp/feature/RatelimitFeature.cs +89 -0
- package/project/.sdk/tm/csharp/feature/RbacFeature.cs +124 -0
- package/project/.sdk/tm/csharp/feature/RetryFeature.cs +174 -0
- package/project/.sdk/tm/csharp/feature/StreamingFeature.cs +93 -0
- package/project/.sdk/tm/csharp/feature/TelemetryFeature.cs +145 -0
- package/project/.sdk/tm/csharp/feature/TestFeature.cs +368 -0
- package/project/.sdk/tm/csharp/feature/TimeoutFeature.cs +69 -0
- package/project/.sdk/tm/csharp/src/feature/README.md +1 -0
- package/project/.sdk/tm/csharp/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/csharp/test/CustomUtilityTest.cs +51 -0
- package/project/.sdk/tm/csharp/test/ExistsTest.cs +17 -0
- package/project/.sdk/tm/csharp/test/FeatureTest.cs +1653 -0
- package/project/.sdk/tm/csharp/test/NetsimTest.cs +67 -0
- package/project/.sdk/tm/csharp/test/PipelineTest.cs +605 -0
- package/project/.sdk/tm/csharp/test/PrimaryUtilityTest.cs +957 -0
- package/project/.sdk/tm/csharp/test/Runner.cs +626 -0
- package/project/.sdk/tm/csharp/test/StructRunner.cs +276 -0
- package/project/.sdk/tm/csharp/test/StructUtilityTest.cs +1273 -0
- package/project/.sdk/tm/csharp/test/sdk-test-control.json +19 -0
- package/project/.sdk/tm/csharp/utility/Clean.cs +11 -0
- package/project/.sdk/tm/csharp/utility/Done.cs +28 -0
- package/project/.sdk/tm/csharp/utility/FeatureAdd.cs +54 -0
- package/project/.sdk/tm/csharp/utility/FeatureHook.cs +35 -0
- package/project/.sdk/tm/csharp/utility/FeatureInit.cs +28 -0
- package/project/.sdk/tm/csharp/utility/Fetcher.cs +181 -0
- package/project/.sdk/tm/csharp/utility/MakeContext.cs +11 -0
- package/project/.sdk/tm/csharp/utility/MakeError.cs +69 -0
- package/project/.sdk/tm/csharp/utility/MakeFetchDef.cs +38 -0
- package/project/.sdk/tm/csharp/utility/MakeOptions.cs +203 -0
- package/project/.sdk/tm/csharp/utility/MakePoint.cs +127 -0
- package/project/.sdk/tm/csharp/utility/MakeRequest.cs +87 -0
- package/project/.sdk/tm/csharp/utility/MakeResponse.cs +55 -0
- package/project/.sdk/tm/csharp/utility/MakeResult.cs +64 -0
- package/project/.sdk/tm/csharp/utility/MakeSpec.cs +64 -0
- package/project/.sdk/tm/csharp/utility/MakeUrl.cs +54 -0
- package/project/.sdk/tm/csharp/utility/Param.cs +67 -0
- package/project/.sdk/tm/csharp/utility/PrepareAuth.cs +54 -0
- package/project/.sdk/tm/csharp/utility/PrepareBody.cs +19 -0
- package/project/.sdk/tm/csharp/utility/PrepareHeaders.cs +22 -0
- package/project/.sdk/tm/csharp/utility/PrepareMethod.cs +22 -0
- package/project/.sdk/tm/csharp/utility/PrepareParams.cs +38 -0
- package/project/.sdk/tm/csharp/utility/PreparePath.cs +18 -0
- package/project/.sdk/tm/csharp/utility/PrepareQuery.cs +40 -0
- package/project/.sdk/tm/csharp/utility/Register.cs +41 -0
- package/project/.sdk/tm/csharp/utility/ResultBasic.cs +39 -0
- package/project/.sdk/tm/csharp/utility/ResultBody.cs +22 -0
- package/project/.sdk/tm/csharp/utility/ResultHeaders.cs +26 -0
- package/project/.sdk/tm/csharp/utility/TransformRequest.cs +39 -0
- package/project/.sdk/tm/csharp/utility/TransformResponse.cs +53 -0
- package/project/.sdk/tm/csharp/utility/struct/Struct.cs +3582 -0
- package/project/.sdk/tm/dart/LICENSE +22 -0
- package/project/.sdk/tm/dart/Makefile +50 -0
- package/project/.sdk/tm/dart/lib/Context.dart +150 -0
- package/project/.sdk/tm/dart/lib/Control.dart +15 -0
- package/project/.sdk/tm/dart/lib/Operation.dart +31 -0
- package/project/.sdk/tm/dart/lib/Point.dart +43 -0
- package/project/.sdk/tm/dart/lib/Response.dart +32 -0
- package/project/.sdk/tm/dart/lib/Result.dart +39 -0
- package/project/.sdk/tm/dart/lib/Spec.dart +49 -0
- package/project/.sdk/tm/dart/lib/feature/audit/AuditFeature.dart +103 -0
- package/project/.sdk/tm/dart/lib/feature/base/BaseFeature.dart +76 -0
- package/project/.sdk/tm/dart/lib/feature/cache/CacheFeature.dart +152 -0
- package/project/.sdk/tm/dart/lib/feature/clienttrack/ClienttrackFeature.dart +104 -0
- package/project/.sdk/tm/dart/lib/feature/debug/DebugFeature.dart +153 -0
- package/project/.sdk/tm/dart/lib/feature/idempotency/IdempotencyFeature.dart +92 -0
- package/project/.sdk/tm/dart/lib/feature/log/LogFeature.dart +85 -0
- package/project/.sdk/tm/dart/lib/feature/metrics/MetricsFeature.dart +103 -0
- package/project/.sdk/tm/dart/lib/feature/netsim/NetsimFeature.dart +186 -0
- package/project/.sdk/tm/dart/lib/feature/paging/PagingFeature.dart +145 -0
- package/project/.sdk/tm/dart/lib/feature/proxy/ProxyFeature.dart +118 -0
- package/project/.sdk/tm/dart/lib/feature/ratelimit/RatelimitFeature.dart +103 -0
- package/project/.sdk/tm/dart/lib/feature/rbac/RbacFeature.dart +121 -0
- package/project/.sdk/tm/dart/lib/feature/retry/RetryFeature.dart +155 -0
- package/project/.sdk/tm/dart/lib/feature/streaming/StreamingFeature.dart +97 -0
- package/project/.sdk/tm/dart/lib/feature/telemetry/TelemetryFeature.dart +136 -0
- package/project/.sdk/tm/dart/lib/feature/test/TestFeature.dart +270 -0
- package/project/.sdk/tm/dart/lib/feature/timeout/TimeoutFeature.dart +104 -0
- package/project/.sdk/tm/dart/lib/utility/CleanUtility.dart +12 -0
- package/project/.sdk/tm/dart/lib/utility/DoneUtility.dart +18 -0
- package/project/.sdk/tm/dart/lib/utility/ErrUtility.dart +46 -0
- package/project/.sdk/tm/dart/lib/utility/FeatureAddUtility.dart +35 -0
- package/project/.sdk/tm/dart/lib/utility/FeatureHookUtility.dart +20 -0
- package/project/.sdk/tm/dart/lib/utility/FeatureInitUtility.dart +9 -0
- package/project/.sdk/tm/dart/lib/utility/FetcherUtility.dart +95 -0
- package/project/.sdk/tm/dart/lib/utility/MakeContextUtility.dart +6 -0
- package/project/.sdk/tm/dart/lib/utility/MakeErrorUtility.dart +67 -0
- package/project/.sdk/tm/dart/lib/utility/MakeFetchDefUtility.dart +42 -0
- package/project/.sdk/tm/dart/lib/utility/MakeOptionsUtility.dart +147 -0
- package/project/.sdk/tm/dart/lib/utility/MakePointUtility.dart +84 -0
- package/project/.sdk/tm/dart/lib/utility/MakeRequestUtility.dart +63 -0
- package/project/.sdk/tm/dart/lib/utility/MakeResponseUtility.dart +54 -0
- package/project/.sdk/tm/dart/lib/utility/MakeResultUtility.dart +49 -0
- package/project/.sdk/tm/dart/lib/utility/MakeSpecUtility.dart +61 -0
- package/project/.sdk/tm/dart/lib/utility/MakeUrlUtility.dart +51 -0
- package/project/.sdk/tm/dart/lib/utility/ParamUtility.dart +56 -0
- package/project/.sdk/tm/dart/lib/utility/PrepareAuthUtility.dart +46 -0
- package/project/.sdk/tm/dart/lib/utility/PrepareBodyUtility.dart +19 -0
- package/project/.sdk/tm/dart/lib/utility/PrepareHeadersUtility.dart +11 -0
- package/project/.sdk/tm/dart/lib/utility/PrepareMethodUtility.dart +15 -0
- package/project/.sdk/tm/dart/lib/utility/PrepareParamsUtility.dart +23 -0
- package/project/.sdk/tm/dart/lib/utility/PreparePathUtility.dart +9 -0
- package/project/.sdk/tm/dart/lib/utility/PrepareQueryUtility.dart +18 -0
- package/project/.sdk/tm/dart/lib/utility/ResultBasicUtility.dart +29 -0
- package/project/.sdk/tm/dart/lib/utility/ResultBodyUtility.dart +15 -0
- package/project/.sdk/tm/dart/lib/utility/ResultHeadersUtility.dart +18 -0
- package/project/.sdk/tm/dart/lib/utility/StructUtility.dart +127 -0
- package/project/.sdk/tm/dart/lib/utility/TransformRequestUtility.dart +28 -0
- package/project/.sdk/tm/dart/lib/utility/TransformResponseUtility.dart +44 -0
- package/project/.sdk/tm/dart/lib/utility/Utility.dart +230 -0
- package/project/.sdk/tm/dart/lib/utility/voxgig_struct.dart +2456 -0
- package/project/.sdk/tm/dart/src/feature/README.md +3 -0
- package/project/.sdk/tm/dart/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/dart/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/dart/test/custom_test.dart +65 -0
- package/project/.sdk/tm/dart/test/exists_test.dart +12 -0
- package/project/.sdk/tm/dart/test/feature/harness.dart +329 -0
- package/project/.sdk/tm/dart/test/feature_test.dart +1139 -0
- package/project/.sdk/tm/dart/test/harness.dart +153 -0
- package/project/.sdk/tm/dart/test/netsim_test.dart +48 -0
- package/project/.sdk/tm/dart/test/pipeline_test.dart +608 -0
- package/project/.sdk/tm/dart/test/primary_test.dart +411 -0
- package/project/.sdk/tm/dart/test/runner.dart +406 -0
- package/project/.sdk/tm/dart/test/sdk-test-control.json +19 -0
- package/project/.sdk/tm/dart/test/struct_corpus.dart +531 -0
- package/project/.sdk/tm/dart/test/struct_test.dart +41 -0
- package/project/.sdk/tm/dart/test/utility.dart +159 -0
- package/project/.sdk/tm/elixir/LICENSE +21 -0
- package/project/.sdk/tm/elixir/Makefile +15 -0
- package/project/.sdk/tm/elixir/VERSION +1 -0
- package/project/.sdk/tm/elixir/lib/projectname/context.ex +138 -0
- package/project/.sdk/tm/elixir/lib/projectname/core.ex +125 -0
- package/project/.sdk/tm/elixir/lib/projectname/entity_base.ex +155 -0
- package/project/.sdk/tm/elixir/lib/projectname/error.ex +16 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/audit.ex +125 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/cache.ex +170 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/clienttrack.ex +136 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/debug.ex +232 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/idempotency.ex +107 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/log.ex +62 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/metrics.ex +130 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/netsim.ex +213 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/paging.ex +191 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/proxy.ex +142 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/ratelimit.ex +81 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/rbac.ex +139 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/retry.ex +150 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/streaming.ex +107 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/telemetry.ex +172 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/test.ex +285 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/timeout.ex +64 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature.ex +90 -0
- package/project/.sdk/tm/elixir/lib/projectname/helpers.ex +66 -0
- package/project/.sdk/tm/elixir/lib/projectname/json.ex +115 -0
- package/project/.sdk/tm/elixir/lib/projectname/utility.ex +1257 -0
- package/project/.sdk/tm/elixir/lib/utility/struct/voxgig_struct.ex +2615 -0
- package/project/.sdk/tm/elixir/src/feature/README.md +3 -0
- package/project/.sdk/tm/elixir/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/elixir/test/feature_test.exs +879 -0
- package/project/.sdk/tm/elixir/test/netsim_test.exs +58 -0
- package/project/.sdk/tm/elixir/test/pipeline_test.exs +558 -0
- package/project/.sdk/tm/elixir/test/primary_utility_test.exs +133 -0
- package/project/.sdk/tm/elixir/test/stream_test.exs +119 -0
- package/project/.sdk/tm/elixir/test/struct_corpus_test.exs +18 -0
- package/project/.sdk/tm/elixir/test/support/feature_harness.ex +346 -0
- package/project/.sdk/tm/elixir/test/support/struct_corpus.ex +677 -0
- package/project/.sdk/tm/elixir/test/test_helper.exs +1 -0
- package/project/.sdk/tm/go/core/context.go +10 -0
- package/project/.sdk/tm/go/core/control.go +2 -0
- package/project/.sdk/tm/go/core/result.go +6 -0
- package/project/.sdk/tm/go/core/types.go +1 -0
- package/project/.sdk/tm/go/feature/audit_feature.go +110 -0
- package/project/.sdk/tm/go/feature/base_feature.go +8 -0
- package/project/.sdk/tm/go/feature/cache_feature.go +171 -0
- package/project/.sdk/tm/go/feature/clienttrack_feature.go +100 -0
- package/project/.sdk/tm/go/feature/debug_feature.go +159 -0
- package/project/.sdk/tm/go/feature/feature_options.go +204 -0
- package/project/.sdk/tm/go/feature/idempotency_feature.go +115 -0
- package/project/.sdk/tm/go/feature/metrics_feature.go +112 -0
- package/project/.sdk/tm/go/feature/netsim_feature.go +184 -0
- package/project/.sdk/tm/go/feature/paging_feature.go +173 -0
- package/project/.sdk/tm/go/feature/proxy_feature.go +121 -0
- package/project/.sdk/tm/go/feature/ratelimit_feature.go +88 -0
- package/project/.sdk/tm/go/feature/rbac_feature.go +126 -0
- package/project/.sdk/tm/go/feature/retry_feature.go +165 -0
- package/project/.sdk/tm/go/feature/streaming_feature.go +119 -0
- package/project/.sdk/tm/go/feature/telemetry_feature.go +142 -0
- package/project/.sdk/tm/go/feature/test_feature.go +78 -3
- package/project/.sdk/tm/go/feature/timeout_feature.go +88 -0
- package/project/.sdk/tm/go/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/go/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/go/test/feature_test.go +1465 -0
- package/project/.sdk/tm/go/test/netsim_test.go +70 -0
- package/project/.sdk/tm/go/test/pipeline_test.go +571 -0
- package/project/.sdk/tm/go/utility/feature_add.go +38 -0
- package/project/.sdk/tm/go/utility/fetcher.go +13 -1
- package/project/.sdk/tm/go/utility/make_error.go +8 -0
- package/project/.sdk/tm/go/utility/make_options.go +62 -0
- package/project/.sdk/tm/go/utility/make_point.go +6 -0
- package/project/.sdk/tm/go-cli/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/go-cli/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/go-mcp/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/LICENSE +21 -0
- package/project/.sdk/tm/haskell/Makefile +22 -0
- package/project/.sdk/tm/haskell/VERSION +1 -0
- package/project/.sdk/tm/haskell/src/SdkFeatures.hs +1278 -0
- package/project/.sdk/tm/haskell/src/SdkHelpers.hs +337 -0
- package/project/.sdk/tm/haskell/src/SdkRuntime.hs +1007 -0
- package/project/.sdk/tm/haskell/src/SdkTypes.hs +186 -0
- package/project/.sdk/tm/haskell/src/VoxgigStruct.hs +2299 -0
- package/project/.sdk/tm/haskell/src/Vregex.hs +237 -0
- package/project/.sdk/tm/haskell/src/feature/README.md +5 -0
- package/project/.sdk/tm/haskell/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/haskell/test/Harness.hs +276 -0
- package/project/.sdk/tm/haskell/test/Runner.hs +47 -0
- package/project/.sdk/tm/haskell/test/StructCorpus.hs +449 -0
- package/project/.sdk/tm/haskell/test/TCustomUtility.hs +38 -0
- package/project/.sdk/tm/haskell/test/TFeature.hs +794 -0
- package/project/.sdk/tm/haskell/test/TNetsim.hs +50 -0
- package/project/.sdk/tm/haskell/test/TPipeline.hs +334 -0
- package/project/.sdk/tm/haskell/test/TPrimaryUtility.hs +386 -0
- package/project/.sdk/tm/haskell/test/TestJson.hs +107 -0
- package/project/.sdk/tm/haskell/test/Testutil.hs +59 -0
- package/project/.sdk/tm/java/LICENSE +22 -0
- package/project/.sdk/tm/java/Makefile +44 -0
- package/project/.sdk/tm/java/VERSION +1 -0
- package/project/.sdk/tm/java/core/Context.java +269 -0
- package/project/.sdk/tm/java/core/Control.java +23 -0
- package/project/.sdk/tm/java/core/Entity.java +13 -0
- package/project/.sdk/tm/java/core/Feature.java +45 -0
- package/project/.sdk/tm/java/core/FeaturePlacement.java +13 -0
- package/project/.sdk/tm/java/core/Helpers.java +50 -0
- package/project/.sdk/tm/java/core/Operation.java +47 -0
- package/project/.sdk/tm/java/core/Point.java +90 -0
- package/project/.sdk/tm/java/core/Response.java +48 -0
- package/project/.sdk/tm/java/core/Result.java +64 -0
- package/project/.sdk/tm/java/core/SdkClient.java +280 -0
- package/project/.sdk/tm/java/core/SdkEntity.java +28 -0
- package/project/.sdk/tm/java/core/Spec.java +84 -0
- package/project/.sdk/tm/java/core/Utility.java +128 -0
- package/project/.sdk/tm/java/feature/AuditFeature.java +113 -0
- package/project/.sdk/tm/java/feature/BaseFeature.java +91 -0
- package/project/.sdk/tm/java/feature/CacheFeature.java +184 -0
- package/project/.sdk/tm/java/feature/ClienttrackFeature.java +103 -0
- package/project/.sdk/tm/java/feature/DebugFeature.java +163 -0
- package/project/.sdk/tm/java/feature/FeatureOptions.java +204 -0
- package/project/.sdk/tm/java/feature/IdempotencyFeature.java +115 -0
- package/project/.sdk/tm/java/feature/LogFeature.java +143 -0
- package/project/.sdk/tm/java/feature/MetricsFeature.java +115 -0
- package/project/.sdk/tm/java/feature/NetsimFeature.java +181 -0
- package/project/.sdk/tm/java/feature/PagingFeature.java +178 -0
- package/project/.sdk/tm/java/feature/ProxyFeature.java +122 -0
- package/project/.sdk/tm/java/feature/RatelimitFeature.java +83 -0
- package/project/.sdk/tm/java/feature/RbacFeature.java +132 -0
- package/project/.sdk/tm/java/feature/RetryFeature.java +156 -0
- package/project/.sdk/tm/java/feature/StreamingFeature.java +110 -0
- package/project/.sdk/tm/java/feature/TelemetryFeature.java +146 -0
- package/project/.sdk/tm/java/feature/TestFeature.java +333 -0
- package/project/.sdk/tm/java/feature/TimeoutFeature.java +89 -0
- package/project/.sdk/tm/java/src/feature/README.md +1 -0
- package/project/.sdk/tm/java/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/java/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/java/test/CustomUtilityTest.java +59 -0
- package/project/.sdk/tm/java/test/ExistsTest.java +16 -0
- package/project/.sdk/tm/java/test/FeatureHarness.java +448 -0
- package/project/.sdk/tm/java/test/FeatureTest.java +1018 -0
- package/project/.sdk/tm/java/test/NetsimTest.java +59 -0
- package/project/.sdk/tm/java/test/PipelineTest.java +618 -0
- package/project/.sdk/tm/java/test/PrimaryUtilityTest.java +864 -0
- package/project/.sdk/tm/java/test/RunnerSupport.java +545 -0
- package/project/.sdk/tm/java/test/StructCorpusTest.java +351 -0
- package/project/.sdk/tm/java/test/StructRunner.java +281 -0
- package/project/.sdk/tm/java/test/sdk-test-control.json +19 -0
- package/project/.sdk/tm/java/utility/Clean.java +12 -0
- package/project/.sdk/tm/java/utility/Done.java +29 -0
- package/project/.sdk/tm/java/utility/FeatureAdd.java +59 -0
- package/project/.sdk/tm/java/utility/FeatureHookUtil.java +72 -0
- package/project/.sdk/tm/java/utility/FeatureInit.java +35 -0
- package/project/.sdk/tm/java/utility/Fetcher.java +170 -0
- package/project/.sdk/tm/java/utility/Json.java +268 -0
- package/project/.sdk/tm/java/utility/MakeContext.java +14 -0
- package/project/.sdk/tm/java/utility/MakeError.java +81 -0
- package/project/.sdk/tm/java/utility/MakeFetchDef.java +48 -0
- package/project/.sdk/tm/java/utility/MakeOptions.java +168 -0
- package/project/.sdk/tm/java/utility/MakePoint.java +118 -0
- package/project/.sdk/tm/java/utility/MakeRequest.java +83 -0
- package/project/.sdk/tm/java/utility/MakeResponse.java +54 -0
- package/project/.sdk/tm/java/utility/MakeResult.java +68 -0
- package/project/.sdk/tm/java/utility/MakeSpec.java +69 -0
- package/project/.sdk/tm/java/utility/MakeUrl.java +67 -0
- package/project/.sdk/tm/java/utility/Param.java +74 -0
- package/project/.sdk/tm/java/utility/PrepareAuth.java +66 -0
- package/project/.sdk/tm/java/utility/PrepareBody.java +16 -0
- package/project/.sdk/tm/java/utility/PrepareHeaders.java +28 -0
- package/project/.sdk/tm/java/utility/PrepareMethod.java +28 -0
- package/project/.sdk/tm/java/utility/PrepareParams.java +50 -0
- package/project/.sdk/tm/java/utility/PreparePath.java +26 -0
- package/project/.sdk/tm/java/utility/PrepareQuery.java +54 -0
- package/project/.sdk/tm/java/utility/Register.java +41 -0
- package/project/.sdk/tm/java/utility/ResultBasic.java +36 -0
- package/project/.sdk/tm/java/utility/ResultBody.java +23 -0
- package/project/.sdk/tm/java/utility/ResultHeaders.java +36 -0
- package/project/.sdk/tm/java/utility/TransformRequest.java +35 -0
- package/project/.sdk/tm/java/utility/TransformResponse.java +52 -0
- package/project/.sdk/tm/java/utility/struct/Struct.java +3550 -0
- package/project/.sdk/tm/js/src/feature/audit/AuditFeature.js +96 -0
- package/project/.sdk/tm/js/src/feature/cache/CacheFeature.js +150 -0
- package/project/.sdk/tm/js/src/feature/clienttrack/ClienttrackFeature.js +104 -0
- package/project/.sdk/tm/js/src/feature/debug/DebugFeature.js +132 -0
- package/project/.sdk/tm/js/src/feature/idempotency/IdempotencyFeature.js +95 -0
- package/project/.sdk/tm/js/src/feature/metrics/MetricsFeature.js +102 -0
- package/project/.sdk/tm/js/src/feature/netsim/NetsimFeature.js +187 -0
- package/project/.sdk/tm/js/src/feature/paging/PagingFeature.js +139 -0
- package/project/.sdk/tm/js/src/feature/proxy/ProxyFeature.js +110 -0
- package/project/.sdk/tm/js/src/feature/ratelimit/RatelimitFeature.js +106 -0
- package/project/.sdk/tm/js/src/feature/rbac/RbacFeature.js +102 -0
- package/project/.sdk/tm/js/src/feature/retry/RetryFeature.js +158 -0
- package/project/.sdk/tm/js/src/feature/streaming/StreamingFeature.js +96 -0
- package/project/.sdk/tm/js/src/feature/telemetry/TelemetryFeature.js +128 -0
- package/project/.sdk/tm/js/src/feature/test/TestFeature.js +58 -1
- package/project/.sdk/tm/js/src/feature/timeout/TimeoutFeature.js +101 -0
- package/project/.sdk/tm/js/src/utility/FeatureHookUtility.js +4 -1
- package/project/.sdk/tm/js/src/utility/MakeErrorUtility.js +9 -0
- package/project/.sdk/tm/js/src/utility/MakeOptionsUtility.js +31 -1
- package/project/.sdk/tm/js/test/feature/harness.js +275 -0
- package/project/.sdk/tm/js/test/feature.test.js +772 -0
- package/project/.sdk/tm/js/test/netsim.test.js +43 -0
- package/project/.sdk/tm/js/test/pipeline.test.js +382 -0
- package/project/.sdk/tm/kotlin/LICENSE +22 -0
- package/project/.sdk/tm/kotlin/Makefile +43 -0
- package/project/.sdk/tm/kotlin/VERSION +1 -0
- package/project/.sdk/tm/kotlin/core/Context.kt +247 -0
- package/project/.sdk/tm/kotlin/core/Control.kt +21 -0
- package/project/.sdk/tm/kotlin/core/Helpers.kt +49 -0
- package/project/.sdk/tm/kotlin/core/Interfaces.kt +88 -0
- package/project/.sdk/tm/kotlin/core/Operation.kt +43 -0
- package/project/.sdk/tm/kotlin/core/Point.kt +83 -0
- package/project/.sdk/tm/kotlin/core/Response.kt +43 -0
- package/project/.sdk/tm/kotlin/core/Result.kt +61 -0
- package/project/.sdk/tm/kotlin/core/SdkClient.kt +266 -0
- package/project/.sdk/tm/kotlin/core/Spec.kt +76 -0
- package/project/.sdk/tm/kotlin/core/Utility.kt +93 -0
- package/project/.sdk/tm/kotlin/feature/AuditFeature.kt +96 -0
- package/project/.sdk/tm/kotlin/feature/BaseFeature.kt +57 -0
- package/project/.sdk/tm/kotlin/feature/CacheFeature.kt +167 -0
- package/project/.sdk/tm/kotlin/feature/ClienttrackFeature.kt +84 -0
- package/project/.sdk/tm/kotlin/feature/DebugFeature.kt +141 -0
- package/project/.sdk/tm/kotlin/feature/FeatureOptions.kt +191 -0
- package/project/.sdk/tm/kotlin/feature/IdempotencyFeature.kt +98 -0
- package/project/.sdk/tm/kotlin/feature/LogFeature.kt +92 -0
- package/project/.sdk/tm/kotlin/feature/MetricsFeature.kt +96 -0
- package/project/.sdk/tm/kotlin/feature/NetsimFeature.kt +162 -0
- package/project/.sdk/tm/kotlin/feature/PagingFeature.kt +143 -0
- package/project/.sdk/tm/kotlin/feature/ProxyFeature.kt +109 -0
- package/project/.sdk/tm/kotlin/feature/RatelimitFeature.kt +77 -0
- package/project/.sdk/tm/kotlin/feature/RbacFeature.kt +100 -0
- package/project/.sdk/tm/kotlin/feature/RetryFeature.kt +140 -0
- package/project/.sdk/tm/kotlin/feature/StreamingFeature.kt +90 -0
- package/project/.sdk/tm/kotlin/feature/TelemetryFeature.kt +118 -0
- package/project/.sdk/tm/kotlin/feature/TestFeature.kt +306 -0
- package/project/.sdk/tm/kotlin/feature/TimeoutFeature.kt +74 -0
- package/project/.sdk/tm/kotlin/src/feature/README.md +1 -0
- package/project/.sdk/tm/kotlin/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/kotlin/test/CustomUtilityTest.kt +51 -0
- package/project/.sdk/tm/kotlin/test/ExistsTest.kt +15 -0
- package/project/.sdk/tm/kotlin/test/FeatureHarness.kt +380 -0
- package/project/.sdk/tm/kotlin/test/FeatureTest.kt +924 -0
- package/project/.sdk/tm/kotlin/test/NetsimTest.kt +50 -0
- package/project/.sdk/tm/kotlin/test/PipelineTest.kt +556 -0
- package/project/.sdk/tm/kotlin/test/PrimaryUtilityTest.kt +829 -0
- package/project/.sdk/tm/kotlin/test/RunnerSupport.kt +477 -0
- package/project/.sdk/tm/kotlin/test/StructCorpusTest.kt +297 -0
- package/project/.sdk/tm/kotlin/test/StructRunner.kt +177 -0
- package/project/.sdk/tm/kotlin/test/sdk-test-control.json +19 -0
- package/project/.sdk/tm/kotlin/utility/CoreUtil.kt +96 -0
- package/project/.sdk/tm/kotlin/utility/FeatureUtil.kt +121 -0
- package/project/.sdk/tm/kotlin/utility/Fetcher.kt +156 -0
- package/project/.sdk/tm/kotlin/utility/Json.kt +237 -0
- package/project/.sdk/tm/kotlin/utility/MakeOptions.kt +152 -0
- package/project/.sdk/tm/kotlin/utility/MakePoint.kt +108 -0
- package/project/.sdk/tm/kotlin/utility/MakeReqRes.kt +152 -0
- package/project/.sdk/tm/kotlin/utility/MakeSpecUrl.kt +142 -0
- package/project/.sdk/tm/kotlin/utility/Prepare.kt +236 -0
- package/project/.sdk/tm/kotlin/utility/Register.kt +39 -0
- package/project/.sdk/tm/kotlin/utility/ResultTransform.kt +109 -0
- package/project/.sdk/tm/kotlin/utility/struct/Struct.kt +2697 -0
- package/project/.sdk/tm/lua/feature/audit_feature.lua +132 -0
- package/project/.sdk/tm/lua/feature/cache_feature.lua +188 -0
- package/project/.sdk/tm/lua/feature/clienttrack_feature.lua +127 -0
- package/project/.sdk/tm/lua/feature/debug_feature.lua +194 -0
- package/project/.sdk/tm/lua/feature/idempotency_feature.lua +127 -0
- package/project/.sdk/tm/lua/feature/metrics_feature.lua +135 -0
- package/project/.sdk/tm/lua/feature/netsim_feature.lua +205 -0
- package/project/.sdk/tm/lua/feature/paging_feature.lua +180 -0
- package/project/.sdk/tm/lua/feature/proxy_feature.lua +147 -0
- package/project/.sdk/tm/lua/feature/ratelimit_feature.lua +120 -0
- package/project/.sdk/tm/lua/feature/rbac_feature.lua +141 -0
- package/project/.sdk/tm/lua/feature/retry_feature.lua +188 -0
- package/project/.sdk/tm/lua/feature/streaming_feature.lua +143 -0
- package/project/.sdk/tm/lua/feature/telemetry_feature.lua +159 -0
- package/project/.sdk/tm/lua/feature/test_feature.lua +85 -1
- package/project/.sdk/tm/lua/feature/timeout_feature.lua +94 -0
- package/project/.sdk/tm/lua/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/lua/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/lua/test/feature_test.lua +1244 -0
- package/project/.sdk/tm/lua/test/netsim_test.lua +61 -0
- package/project/.sdk/tm/lua/test/pipeline_test.lua +613 -0
- package/project/.sdk/tm/lua/utility/feature_add.lua +28 -1
- package/project/.sdk/tm/lua/utility/make_error.lua +9 -0
- package/project/.sdk/tm/lua/utility/make_options.lua +58 -0
- package/project/.sdk/tm/lua/utility/make_point.lua +8 -1
- package/project/.sdk/tm/ocaml/LICENSE +21 -0
- package/project/.sdk/tm/ocaml/Makefile +58 -0
- package/project/.sdk/tm/ocaml/VERSION +1 -0
- package/project/.sdk/tm/ocaml/sdk_features.ml +1127 -0
- package/project/.sdk/tm/ocaml/sdk_helpers.ml +110 -0
- package/project/.sdk/tm/ocaml/sdk_runtime.ml +942 -0
- package/project/.sdk/tm/ocaml/sdk_types.ml +259 -0
- package/project/.sdk/tm/ocaml/src/feature/README.md +1 -0
- package/project/.sdk/tm/ocaml/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/test/custom_utility.ml +30 -0
- package/project/.sdk/tm/ocaml/test/harness.ml +198 -0
- package/project/.sdk/tm/ocaml/test/struct_corpus.ml +487 -0
- package/project/.sdk/tm/ocaml/test/t_feature.ml +533 -0
- package/project/.sdk/tm/ocaml/test/t_main.ml +5 -0
- package/project/.sdk/tm/ocaml/test/t_pipeline.ml +354 -0
- package/project/.sdk/tm/ocaml/test/testutil.ml +57 -0
- package/project/.sdk/tm/ocaml/utility/voxgig_struct.ml +1858 -0
- package/project/.sdk/tm/ocaml/utility/vregex.ml +254 -0
- package/project/.sdk/tm/perl/LICENSE +22 -0
- package/project/.sdk/tm/perl/Makefile +57 -0
- package/project/.sdk/tm/perl/core/context.pm +138 -0
- package/project/.sdk/tm/perl/core/control.pm +22 -0
- package/project/.sdk/tm/perl/core/error.pm +30 -0
- package/project/.sdk/tm/perl/core/helpers.pm +142 -0
- package/project/.sdk/tm/perl/core/operation.pm +47 -0
- package/project/.sdk/tm/perl/core/response.pm +40 -0
- package/project/.sdk/tm/perl/core/result.pm +45 -0
- package/project/.sdk/tm/perl/core/spec.pm +33 -0
- package/project/.sdk/tm/perl/core/utility_type.pm +32 -0
- package/project/.sdk/tm/perl/feature/audit_feature.pm +128 -0
- package/project/.sdk/tm/perl/feature/base_feature.pm +41 -0
- package/project/.sdk/tm/perl/feature/cache_feature.pm +168 -0
- package/project/.sdk/tm/perl/feature/clienttrack_feature.pm +126 -0
- package/project/.sdk/tm/perl/feature/debug_feature.pm +168 -0
- package/project/.sdk/tm/perl/feature/idempotency_feature.pm +104 -0
- package/project/.sdk/tm/perl/feature/log_feature.pm +77 -0
- package/project/.sdk/tm/perl/feature/metrics_feature.pm +124 -0
- package/project/.sdk/tm/perl/feature/netsim_feature.pm +215 -0
- package/project/.sdk/tm/perl/feature/paging_feature.pm +158 -0
- package/project/.sdk/tm/perl/feature/proxy_feature.pm +128 -0
- package/project/.sdk/tm/perl/feature/ratelimit_feature.pm +126 -0
- package/project/.sdk/tm/perl/feature/rbac_feature.pm +124 -0
- package/project/.sdk/tm/perl/feature/retry_feature.pm +153 -0
- package/project/.sdk/tm/perl/feature/streaming_feature.pm +112 -0
- package/project/.sdk/tm/perl/feature/telemetry_feature.pm +155 -0
- package/project/.sdk/tm/perl/feature/test_feature.pm +314 -0
- package/project/.sdk/tm/perl/feature/timeout_feature.pm +110 -0
- package/project/.sdk/tm/perl/lib/Voxgig/Struct.pm +2897 -0
- package/project/.sdk/tm/perl/src/feature/README.md +3 -0
- package/project/.sdk/tm/perl/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/perl/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/perl/t/feature.t +1054 -0
- package/project/.sdk/tm/perl/t/netsim.t +55 -0
- package/project/.sdk/tm/perl/t/pipeline.t +632 -0
- package/project/.sdk/tm/perl/t/primary_utility.t +1023 -0
- package/project/.sdk/tm/perl/t/runner.pm +140 -0
- package/project/.sdk/tm/perl/t/sdk-test-control.json +19 -0
- package/project/.sdk/tm/perl/t/stream.t +132 -0
- package/project/.sdk/tm/perl/t/struct_runner.pm +275 -0
- package/project/.sdk/tm/perl/t/struct_utility.t +438 -0
- package/project/.sdk/tm/perl/utility/clean.pm +15 -0
- package/project/.sdk/tm/perl/utility/done.pm +34 -0
- package/project/.sdk/tm/perl/utility/feature_add.pm +47 -0
- package/project/.sdk/tm/perl/utility/feature_hook.pm +25 -0
- package/project/.sdk/tm/perl/utility/feature_init.pm +33 -0
- package/project/.sdk/tm/perl/utility/fetcher.pm +112 -0
- package/project/.sdk/tm/perl/utility/make_context.pm +22 -0
- package/project/.sdk/tm/perl/utility/make_error.pm +74 -0
- package/project/.sdk/tm/perl/utility/make_fetch_def.pm +46 -0
- package/project/.sdk/tm/perl/utility/make_options.pm +123 -0
- package/project/.sdk/tm/perl/utility/make_point.pm +104 -0
- package/project/.sdk/tm/perl/utility/make_request.pm +66 -0
- package/project/.sdk/tm/perl/utility/make_response.pm +38 -0
- package/project/.sdk/tm/perl/utility/make_result.pm +53 -0
- package/project/.sdk/tm/perl/utility/make_spec.pm +71 -0
- package/project/.sdk/tm/perl/utility/make_url.pm +63 -0
- package/project/.sdk/tm/perl/utility/param.pm +65 -0
- package/project/.sdk/tm/perl/utility/prepare_auth.pm +56 -0
- package/project/.sdk/tm/perl/utility/prepare_body.pm +17 -0
- package/project/.sdk/tm/perl/utility/prepare_headers.pm +27 -0
- package/project/.sdk/tm/perl/utility/prepare_method.pm +25 -0
- package/project/.sdk/tm/perl/utility/prepare_params.pm +41 -0
- package/project/.sdk/tm/perl/utility/prepare_path.pm +29 -0
- package/project/.sdk/tm/perl/utility/prepare_query.pm +40 -0
- package/project/.sdk/tm/perl/utility/register.pm +53 -0
- package/project/.sdk/tm/perl/utility/result_basic.pm +38 -0
- package/project/.sdk/tm/perl/utility/result_body.pm +28 -0
- package/project/.sdk/tm/perl/utility/result_headers.pm +32 -0
- package/project/.sdk/tm/perl/utility/transform_request.pm +30 -0
- package/project/.sdk/tm/perl/utility/transform_response.pm +43 -0
- package/project/.sdk/tm/php/core/Result.php +10 -0
- package/project/.sdk/tm/php/feature/AuditFeature.php +125 -0
- package/project/.sdk/tm/php/feature/BaseFeature.php +6 -0
- package/project/.sdk/tm/php/feature/CacheFeature.php +158 -0
- package/project/.sdk/tm/php/feature/ClienttrackFeature.php +126 -0
- package/project/.sdk/tm/php/feature/DebugFeature.php +167 -0
- package/project/.sdk/tm/php/feature/IdempotencyFeature.php +102 -0
- package/project/.sdk/tm/php/feature/MetricsFeature.php +122 -0
- package/project/.sdk/tm/php/feature/NetsimFeature.php +190 -0
- package/project/.sdk/tm/php/feature/PagingFeature.php +153 -0
- package/project/.sdk/tm/php/feature/ProxyFeature.php +136 -0
- package/project/.sdk/tm/php/feature/RatelimitFeature.php +116 -0
- package/project/.sdk/tm/php/feature/RbacFeature.php +133 -0
- package/project/.sdk/tm/php/feature/RetryFeature.php +159 -0
- package/project/.sdk/tm/php/feature/StreamingFeature.php +107 -0
- package/project/.sdk/tm/php/feature/TelemetryFeature.php +156 -0
- package/project/.sdk/tm/php/feature/TestFeature.php +80 -1
- package/project/.sdk/tm/php/feature/TimeoutFeature.php +95 -0
- package/project/.sdk/tm/php/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/php/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/php/test/FeatureTest.php +1259 -0
- package/project/.sdk/tm/php/test/NetsimTest.php +53 -0
- package/project/.sdk/tm/php/test/PipelineTest.php +674 -0
- package/project/.sdk/tm/php/utility/FeatureAdd.php +32 -1
- package/project/.sdk/tm/php/utility/MakeError.php +9 -0
- package/project/.sdk/tm/php/utility/MakeOptions.php +46 -0
- package/project/.sdk/tm/php/utility/MakePoint.php +7 -0
- package/project/.sdk/tm/py/core/context.py +4 -0
- package/project/.sdk/tm/py/core/control.py +3 -0
- package/project/.sdk/tm/py/feature/audit_feature.py +98 -0
- package/project/.sdk/tm/py/feature/cache_feature.py +138 -0
- package/project/.sdk/tm/py/feature/clienttrack_feature.py +97 -0
- package/project/.sdk/tm/py/feature/debug_feature.py +134 -0
- package/project/.sdk/tm/py/feature/idempotency_feature.py +89 -0
- package/project/.sdk/tm/py/feature/metrics_feature.py +93 -0
- package/project/.sdk/tm/py/feature/netsim_feature.py +170 -0
- package/project/.sdk/tm/py/feature/paging_feature.py +134 -0
- package/project/.sdk/tm/py/feature/proxy_feature.py +104 -0
- package/project/.sdk/tm/py/feature/ratelimit_feature.py +98 -0
- package/project/.sdk/tm/py/feature/rbac_feature.py +102 -0
- package/project/.sdk/tm/py/feature/retry_feature.py +142 -0
- package/project/.sdk/tm/py/feature/streaming_feature.py +84 -0
- package/project/.sdk/tm/py/feature/telemetry_feature.py +128 -0
- package/project/.sdk/tm/py/feature/test_feature.py +70 -1
- package/project/.sdk/tm/py/feature/timeout_feature.py +78 -0
- package/project/.sdk/tm/py/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/py/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/py/test/feature_harness.py +336 -0
- package/project/.sdk/tm/py/test/test_feature.py +807 -0
- package/project/.sdk/tm/py/test/test_netsim.py +52 -0
- package/project/.sdk/tm/py/test/test_pipeline.py +606 -0
- package/project/.sdk/tm/py/utility/feature_add.py +25 -1
- package/project/.sdk/tm/py/utility/make_error.py +8 -0
- package/project/.sdk/tm/py/utility/make_options.py +32 -0
- package/project/.sdk/tm/py/utility/make_point.py +8 -2
- package/project/.sdk/tm/py/utility/make_request.py +6 -2
- package/project/.sdk/tm/py/utility/make_response.py +6 -2
- package/project/.sdk/tm/py/utility/make_result.py +6 -2
- package/project/.sdk/tm/py/utility/make_spec.py +6 -2
- package/project/.sdk/tm/rb/core/context.rb +2 -0
- package/project/.sdk/tm/rb/core/control.rb +5 -1
- package/project/.sdk/tm/rb/core/result.rb +2 -1
- package/project/.sdk/tm/rb/feature/audit_feature.rb +103 -0
- package/project/.sdk/tm/rb/feature/base_feature.rb +5 -0
- package/project/.sdk/tm/rb/feature/cache_feature.rb +133 -0
- package/project/.sdk/tm/rb/feature/clienttrack_feature.rb +91 -0
- package/project/.sdk/tm/rb/feature/debug_feature.rb +138 -0
- package/project/.sdk/tm/rb/feature/idempotency_feature.rb +78 -0
- package/project/.sdk/tm/rb/feature/metrics_feature.rb +91 -0
- package/project/.sdk/tm/rb/feature/netsim_feature.rb +167 -0
- package/project/.sdk/tm/rb/feature/paging_feature.rb +120 -0
- package/project/.sdk/tm/rb/feature/proxy_feature.rb +93 -0
- package/project/.sdk/tm/rb/feature/ratelimit_feature.rb +95 -0
- package/project/.sdk/tm/rb/feature/rbac_feature.rb +96 -0
- package/project/.sdk/tm/rb/feature/retry_feature.rb +116 -0
- package/project/.sdk/tm/rb/feature/streaming_feature.rb +85 -0
- package/project/.sdk/tm/rb/feature/telemetry_feature.rb +122 -0
- package/project/.sdk/tm/rb/feature/test_feature.rb +65 -1
- package/project/.sdk/tm/rb/feature/timeout_feature.rb +74 -0
- package/project/.sdk/tm/rb/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/rb/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/rb/test/feature_test.rb +1031 -0
- package/project/.sdk/tm/rb/test/netsim_test.rb +48 -0
- package/project/.sdk/tm/rb/test/pipeline_test.rb +584 -0
- package/project/.sdk/tm/rb/utility/feature_add.rb +28 -1
- package/project/.sdk/tm/rb/utility/make_error.rb +8 -0
- package/project/.sdk/tm/rb/utility/make_options.rb +35 -0
- package/project/.sdk/tm/rb/utility/make_point.rb +7 -1
- package/project/.sdk/tm/rust/LICENSE +22 -0
- package/project/.sdk/tm/rust/Makefile +41 -0
- package/project/.sdk/tm/rust/VERSION +1 -0
- package/project/.sdk/tm/rust/core/context.rs +320 -0
- package/project/.sdk/tm/rust/core/control.rs +37 -0
- package/project/.sdk/tm/rust/core/helpers.rs +168 -0
- package/project/.sdk/tm/rust/core/mod.rs +18 -0
- package/project/.sdk/tm/rust/core/operation.rs +35 -0
- package/project/.sdk/tm/rust/core/point.rs +68 -0
- package/project/.sdk/tm/rust/core/response.rs +38 -0
- package/project/.sdk/tm/rust/core/result.rs +90 -0
- package/project/.sdk/tm/rust/core/spec.rs +109 -0
- package/project/.sdk/tm/rust/core/types.rs +105 -0
- package/project/.sdk/tm/rust/core/utility_type.rs +184 -0
- package/project/.sdk/tm/rust/feature/audit.rs +138 -0
- package/project/.sdk/tm/rust/feature/base.rs +49 -0
- package/project/.sdk/tm/rust/feature/cache.rs +198 -0
- package/project/.sdk/tm/rust/feature/clienttrack.rs +154 -0
- package/project/.sdk/tm/rust/feature/debug.rs +188 -0
- package/project/.sdk/tm/rust/feature/idempotency.rs +139 -0
- package/project/.sdk/tm/rust/feature/log.rs +114 -0
- package/project/.sdk/tm/rust/feature/metrics.rs +136 -0
- package/project/.sdk/tm/rust/feature/mod.rs +24 -0
- package/project/.sdk/tm/rust/feature/netsim.rs +233 -0
- package/project/.sdk/tm/rust/feature/paging.rs +209 -0
- package/project/.sdk/tm/rust/feature/proxy.rs +165 -0
- package/project/.sdk/tm/rust/feature/ratelimit.rs +116 -0
- package/project/.sdk/tm/rust/feature/rbac.rs +152 -0
- package/project/.sdk/tm/rust/feature/retry.rs +190 -0
- package/project/.sdk/tm/rust/feature/streaming.rs +124 -0
- package/project/.sdk/tm/rust/feature/support.rs +145 -0
- package/project/.sdk/tm/rust/feature/telemetry.rs +185 -0
- package/project/.sdk/tm/rust/feature/test.rs +397 -0
- package/project/.sdk/tm/rust/feature/timeout.rs +103 -0
- package/project/.sdk/tm/rust/src/feature/README.md +1 -0
- package/project/.sdk/tm/rust/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/rust/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/rust/tests/common/mod.rs +969 -0
- package/project/.sdk/tm/rust/tests/custom_utility_test.rs +69 -0
- package/project/.sdk/tm/rust/tests/feature_test.rs +1864 -0
- package/project/.sdk/tm/rust/tests/netsim_test.rs +78 -0
- package/project/.sdk/tm/rust/tests/pipeline_test.rs +699 -0
- package/project/.sdk/tm/rust/tests/primary_utility_test.rs +999 -0
- package/project/.sdk/tm/rust/tests/sdk-test-control.json +19 -0
- package/project/.sdk/tm/rust/tests/struct_runner/mod.rs +424 -0
- package/project/.sdk/tm/rust/tests/struct_utility_test.rs +733 -0
- package/project/.sdk/tm/rust/utility/clean.rs +13 -0
- package/project/.sdk/tm/rust/utility/done.rs +31 -0
- package/project/.sdk/tm/rust/utility/feature_add.rs +46 -0
- package/project/.sdk/tm/rust/utility/feature_hook.rs +18 -0
- package/project/.sdk/tm/rust/utility/feature_init.rs +26 -0
- package/project/.sdk/tm/rust/utility/fetcher.rs +142 -0
- package/project/.sdk/tm/rust/utility/jsonparse.rs +211 -0
- package/project/.sdk/tm/rust/utility/make_context.rs +7 -0
- package/project/.sdk/tm/rust/utility/make_error.rs +79 -0
- package/project/.sdk/tm/rust/utility/make_fetch_def.rs +42 -0
- package/project/.sdk/tm/rust/utility/make_options.rs +175 -0
- package/project/.sdk/tm/rust/utility/make_point.rs +116 -0
- package/project/.sdk/tm/rust/utility/make_request.rs +73 -0
- package/project/.sdk/tm/rust/utility/make_response.rs +56 -0
- package/project/.sdk/tm/rust/utility/make_result.rs +64 -0
- package/project/.sdk/tm/rust/utility/make_spec.rs +70 -0
- package/project/.sdk/tm/rust/utility/make_url.rs +83 -0
- package/project/.sdk/tm/rust/utility/mod.rs +36 -0
- package/project/.sdk/tm/rust/utility/param.rs +67 -0
- package/project/.sdk/tm/rust/utility/prepare_auth.rs +65 -0
- package/project/.sdk/tm/rust/utility/prepare_body.rs +14 -0
- package/project/.sdk/tm/rust/utility/prepare_headers.rs +23 -0
- package/project/.sdk/tm/rust/utility/prepare_method.rs +18 -0
- package/project/.sdk/tm/rust/utility/prepare_params.rs +33 -0
- package/project/.sdk/tm/rust/utility/prepare_path.rs +17 -0
- package/project/.sdk/tm/rust/utility/prepare_query.rs +47 -0
- package/project/.sdk/tm/rust/utility/result_basic.rs +35 -0
- package/project/.sdk/tm/rust/utility/result_body.rs +26 -0
- package/project/.sdk/tm/rust/utility/result_headers.rs +24 -0
- package/project/.sdk/tm/rust/utility/transform_request.rs +31 -0
- package/project/.sdk/tm/rust/utility/transform_response.rs +55 -0
- package/project/.sdk/tm/rust/utility/voxgigstruct/consts.rs +122 -0
- package/project/.sdk/tm/rust/utility/voxgigstruct/major.rs +2688 -0
- package/project/.sdk/tm/rust/utility/voxgigstruct/mini.rs +1081 -0
- package/project/.sdk/tm/rust/utility/voxgigstruct/mod.rs +70 -0
- package/project/.sdk/tm/rust/utility/voxgigstruct/ordered_map.rs +159 -0
- package/project/.sdk/tm/rust/utility/voxgigstruct/re.rs +1229 -0
- package/project/.sdk/tm/rust/utility/voxgigstruct/value.rs +372 -0
- package/project/.sdk/tm/scala/LICENSE +22 -0
- package/project/.sdk/tm/scala/Makefile +24 -0
- package/project/.sdk/tm/scala/VERSION +1 -0
- package/project/.sdk/tm/scala/core/Context.scala +160 -0
- package/project/.sdk/tm/scala/core/Contracts.scala +76 -0
- package/project/.sdk/tm/scala/core/Control.scala +23 -0
- package/project/.sdk/tm/scala/core/Helpers.scala +38 -0
- package/project/.sdk/tm/scala/core/Operation.scala +37 -0
- package/project/.sdk/tm/scala/core/Point.scala +44 -0
- package/project/.sdk/tm/scala/core/Response.scala +37 -0
- package/project/.sdk/tm/scala/core/Result.scala +42 -0
- package/project/.sdk/tm/scala/core/SdkClient.scala +220 -0
- package/project/.sdk/tm/scala/core/SdkError.scala +15 -0
- package/project/.sdk/tm/scala/core/Spec.scala +39 -0
- package/project/.sdk/tm/scala/core/Types.scala +31 -0
- package/project/.sdk/tm/scala/core/Utility.scala +85 -0
- package/project/.sdk/tm/scala/feature/AuditFeature.scala +101 -0
- package/project/.sdk/tm/scala/feature/BaseFeature.scala +21 -0
- package/project/.sdk/tm/scala/feature/CacheFeature.scala +181 -0
- package/project/.sdk/tm/scala/feature/ClienttrackFeature.scala +93 -0
- package/project/.sdk/tm/scala/feature/DebugFeature.scala +149 -0
- package/project/.sdk/tm/scala/feature/FeatureOptions.scala +111 -0
- package/project/.sdk/tm/scala/feature/IdempotencyFeature.scala +106 -0
- package/project/.sdk/tm/scala/feature/LogFeature.scala +64 -0
- package/project/.sdk/tm/scala/feature/MetricsFeature.scala +105 -0
- package/project/.sdk/tm/scala/feature/NetsimFeature.scala +134 -0
- package/project/.sdk/tm/scala/feature/PagingFeature.scala +170 -0
- package/project/.sdk/tm/scala/feature/ProxyFeature.scala +113 -0
- package/project/.sdk/tm/scala/feature/RatelimitFeature.scala +58 -0
- package/project/.sdk/tm/scala/feature/RbacFeature.scala +90 -0
- package/project/.sdk/tm/scala/feature/RetryFeature.scala +104 -0
- package/project/.sdk/tm/scala/feature/StreamingFeature.scala +98 -0
- package/project/.sdk/tm/scala/feature/TelemetryFeature.scala +129 -0
- package/project/.sdk/tm/scala/feature/TestFeature.scala +253 -0
- package/project/.sdk/tm/scala/feature/TimeoutFeature.scala +57 -0
- package/project/.sdk/tm/scala/sdktest/SdkTestMain.scala +766 -0
- package/project/.sdk/tm/scala/sdktest/SdkTestSupport.scala +93 -0
- package/project/.sdk/tm/scala/sdktest/StructCorpus.scala +0 -0
- package/project/.sdk/tm/scala/sdktest/sdk-test-control.json +19 -0
- package/project/.sdk/tm/scala/src/feature/README.md +1 -0
- package/project/.sdk/tm/scala/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/scala/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/scala/utility/FeatureUtils.scala +68 -0
- package/project/.sdk/tm/scala/utility/Fetcher.scala +129 -0
- package/project/.sdk/tm/scala/utility/Json.java +268 -0
- package/project/.sdk/tm/scala/utility/Make.scala +463 -0
- package/project/.sdk/tm/scala/utility/MakeSpec.scala +49 -0
- package/project/.sdk/tm/scala/utility/Misc.scala +68 -0
- package/project/.sdk/tm/scala/utility/Prepare.scala +142 -0
- package/project/.sdk/tm/scala/utility/Register.scala +38 -0
- package/project/.sdk/tm/scala/utility/Results.scala +63 -0
- package/project/.sdk/tm/scala/utility/StructUtility.scala +29 -0
- package/project/.sdk/tm/scala/utility/Transform.scala +52 -0
- package/project/.sdk/tm/scala/utility/struct/Struct.java +3550 -0
- package/project/.sdk/tm/scala/utility/struct/voxgig_struct.scala +1833 -0
- package/project/.sdk/tm/swift/LICENSE +22 -0
- package/project/.sdk/tm/swift/Makefile +41 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Constants.swift +113 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Inject.swift +260 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Injection.swift +111 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/JSON.swift +327 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Merge.swift +55 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Minor.swift +601 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/OrderedDictionary.swift +79 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Path.swift +157 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Select.swift +259 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Transform.swift +462 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Validate.swift +378 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Value.swift +184 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/Struct/Walk.swift +44 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/core/Context.swift +161 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/core/Control.swift +20 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/core/Operation.swift +27 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/core/Point.swift +37 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/core/Response.swift +29 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/core/Result.swift +41 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/core/Spec.swift +36 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/core/Support.swift +98 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/core/Types.swift +25 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/core/Utility.swift +81 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/AuditFeature.swift +99 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/BaseFeature.swift +60 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/CacheFeature.swift +164 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/ClienttrackFeature.swift +95 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/DebugFeature.swift +126 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/FeatureOptions.swift +96 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/IdempotencyFeature.swift +80 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/LogFeature.swift +69 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/MetricsFeature.swift +103 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/NetsimFeature.swift +177 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/PagingFeature.swift +154 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/ProxyFeature.swift +122 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/RatelimitFeature.swift +79 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/RbacFeature.swift +103 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/RetryFeature.swift +150 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/StreamingFeature.swift +82 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/TelemetryFeature.swift +119 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/TestFeature.swift +257 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/TimeoutFeature.swift +83 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/utility/Feature.swift +56 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/utility/Fetcher.swift +107 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/utility/Make.swift +321 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/utility/MakeError.swift +56 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/utility/MakeOptions.swift +151 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/utility/Prepare.swift +157 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/utility/Register.swift +40 -0
- package/project/.sdk/tm/swift/Sources/ProjectNameSDK/utility/ResultUtil.swift +107 -0
- package/project/.sdk/tm/swift/Tests/ProjectNameSDKTests/CustomUtilityTest.swift +44 -0
- package/project/.sdk/tm/swift/Tests/ProjectNameSDKTests/ExistsTest.swift +12 -0
- package/project/.sdk/tm/swift/Tests/ProjectNameSDKTests/FeatureTest.swift +1049 -0
- package/project/.sdk/tm/swift/Tests/ProjectNameSDKTests/NetsimTest.swift +50 -0
- package/project/.sdk/tm/swift/Tests/ProjectNameSDKTests/PipelineTest.swift +398 -0
- package/project/.sdk/tm/swift/Tests/ProjectNameSDKTests/PrimaryUtilityTest.swift +750 -0
- package/project/.sdk/tm/swift/Tests/ProjectNameSDKTests/Runner.swift +237 -0
- package/project/.sdk/tm/swift/Tests/ProjectNameSDKTests/StructUtilityTest.swift +523 -0
- package/project/.sdk/tm/swift/VERSION +1 -0
- package/project/.sdk/tm/swift/src/feature/README.md +6 -0
- package/project/.sdk/tm/swift/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/swift/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/ts/Makefile +6 -1
- package/project/.sdk/tm/ts/src/feature/audit/AuditFeature.ts +98 -0
- package/project/.sdk/tm/ts/src/feature/cache/CacheFeature.ts +152 -0
- package/project/.sdk/tm/ts/src/feature/clienttrack/ClienttrackFeature.ts +106 -0
- package/project/.sdk/tm/ts/src/feature/debug/DebugFeature.ts +134 -0
- package/project/.sdk/tm/ts/src/feature/idempotency/IdempotencyFeature.ts +97 -0
- package/project/.sdk/tm/ts/src/feature/metrics/MetricsFeature.ts +104 -0
- package/project/.sdk/tm/ts/src/feature/netsim/NetsimFeature.ts +189 -0
- package/project/.sdk/tm/ts/src/feature/paging/PagingFeature.ts +141 -0
- package/project/.sdk/tm/ts/src/feature/proxy/ProxyFeature.ts +112 -0
- package/project/.sdk/tm/ts/src/feature/ratelimit/RatelimitFeature.ts +108 -0
- package/project/.sdk/tm/ts/src/feature/rbac/RbacFeature.ts +104 -0
- package/project/.sdk/tm/ts/src/feature/retry/RetryFeature.ts +160 -0
- package/project/.sdk/tm/ts/src/feature/streaming/StreamingFeature.ts +98 -0
- package/project/.sdk/tm/ts/src/feature/telemetry/TelemetryFeature.ts +130 -0
- package/project/.sdk/tm/ts/src/feature/test/TestFeature.ts +58 -1
- package/project/.sdk/tm/ts/src/feature/timeout/TimeoutFeature.ts +103 -0
- package/project/.sdk/tm/ts/src/utility/FeatureHookUtility.ts +4 -1
- package/project/.sdk/tm/ts/src/utility/MakeErrorUtility.ts +9 -0
- package/project/.sdk/tm/ts/src/utility/MakeOptionsUtility.ts +31 -1
- package/project/.sdk/tm/ts/test/feature/harness.ts +293 -0
- package/project/.sdk/tm/ts/test/feature.test.ts +772 -0
- package/project/.sdk/tm/ts/test/netsim.test.ts +43 -0
- package/project/.sdk/tm/ts/test/pipeline.test.ts +382 -0
- package/project/.sdk/tm/zig/LICENSE +21 -0
- package/project/.sdk/tm/zig/Makefile +31 -0
- package/project/.sdk/tm/zig/VERSION +1 -0
- package/project/.sdk/tm/zig/build.zig +58 -0
- package/project/.sdk/tm/zig/build.zig.zon +11 -0
- package/project/.sdk/tm/zig/core/context.zig +258 -0
- package/project/.sdk/tm/zig/core/control.zig +26 -0
- package/project/.sdk/tm/zig/core/error.zig +28 -0
- package/project/.sdk/tm/zig/core/helpers.zig +326 -0
- package/project/.sdk/tm/zig/core/mem.zig +20 -0
- package/project/.sdk/tm/zig/core/operation.zig +34 -0
- package/project/.sdk/tm/zig/core/point.zig +63 -0
- package/project/.sdk/tm/zig/core/response.zig +32 -0
- package/project/.sdk/tm/zig/core/result.zig +73 -0
- package/project/.sdk/tm/zig/core/spec.zig +68 -0
- package/project/.sdk/tm/zig/core/types.zig +101 -0
- package/project/.sdk/tm/zig/core/utility.zig +1115 -0
- package/project/.sdk/tm/zig/feature/audit.zig +131 -0
- package/project/.sdk/tm/zig/feature/base.zig +52 -0
- package/project/.sdk/tm/zig/feature/cache.zig +216 -0
- package/project/.sdk/tm/zig/feature/clienttrack.zig +129 -0
- package/project/.sdk/tm/zig/feature/debug.zig +191 -0
- package/project/.sdk/tm/zig/feature/idempotency.zig +121 -0
- package/project/.sdk/tm/zig/feature/log.zig +93 -0
- package/project/.sdk/tm/zig/feature/metrics.zig +145 -0
- package/project/.sdk/tm/zig/feature/netsim.zig +186 -0
- package/project/.sdk/tm/zig/feature/paging.zig +201 -0
- package/project/.sdk/tm/zig/feature/proxy.zig +180 -0
- package/project/.sdk/tm/zig/feature/ratelimit.zig +123 -0
- package/project/.sdk/tm/zig/feature/rbac.zig +126 -0
- package/project/.sdk/tm/zig/feature/retry.zig +167 -0
- package/project/.sdk/tm/zig/feature/streaming.zig +127 -0
- package/project/.sdk/tm/zig/feature/support.zig +128 -0
- package/project/.sdk/tm/zig/feature/telemetry.zig +165 -0
- package/project/.sdk/tm/zig/feature/test.zig +315 -0
- package/project/.sdk/tm/zig/feature/timeout.zig +105 -0
- package/project/.sdk/tm/zig/root.zig +74 -0
- package/project/.sdk/tm/zig/src/feature/README.md +1 -0
- package/project/.sdk/tm/zig/src/feature/audit/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/base/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/cache/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/clienttrack/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/debug/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/idempotency/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/log/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/metrics/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/netsim/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/paging/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/proxy/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/ratelimit/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/rbac/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/retry/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/streaming/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/telemetry/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/test/.gitkeep +0 -0
- package/project/.sdk/tm/zig/src/feature/timeout/.gitkeep +0 -0
- package/project/.sdk/tm/zig/test/feature_test.zig +1045 -0
- package/project/.sdk/tm/zig/test/fh.zig +531 -0
- package/project/.sdk/tm/zig/test/gotcha_test.zig +230 -0
- package/project/.sdk/tm/zig/test/pipeline_test.zig +493 -0
- package/project/.sdk/tm/zig/test/primary_utility_test.zig +346 -0
- package/project/.sdk/tm/zig/test/struct_corpus.zig +1145 -0
- package/project/.sdk/tm/zig/test/struct_runner.zig +226 -0
- package/project/.sdk/tm/zig/utility/jsonparse.zig +13 -0
- package/project/.sdk/tm/zig/utility/voxgigstruct/regex.zig +779 -0
- package/project/.sdk/tm/zig/utility/voxgigstruct/struct.zig +4400 -0
- package/src/cmp/AgentGuide.ts +150 -0
- package/src/cmp/AgentGuideContent.ts +286 -0
- package/src/cmp/AgentGuideFeature.ts +107 -0
- package/src/cmp/AgentGuideTop.ts +121 -0
- package/src/cmp/ReadmeTop.ts +16 -3
- package/src/sdkgen.ts +6 -0
|
@@ -0,0 +1,1027 @@
|
|
|
1
|
+
;; ProjectName SDK features (generated by @voxgig/sdkgen).
|
|
2
|
+
;;
|
|
3
|
+
;; Each feature is an atom wrapping a map. Metadata (:name :active :version
|
|
4
|
+
;; :_options) lives under keyword keys; the pipeline hook methods live under
|
|
5
|
+
;; string keys ("init", "PrePoint", "PreRequest", ...) so the language-neutral
|
|
6
|
+
;; feature-hook dispatch can look them up by hook name; per-feature mutable
|
|
7
|
+
;; state (counters, caches, spans, seeds) lives in the SAME atom under keyword
|
|
8
|
+
;; keys, mutated in place by the hook closures. Transport-wrapping features
|
|
9
|
+
;; replace ctx.utility.fetcher in their init; hook features implement stage
|
|
10
|
+
;; hooks. All features are inactive by default and self-gate on
|
|
11
|
+
;; options["active"].
|
|
12
|
+
|
|
13
|
+
(ns sdk.features
|
|
14
|
+
(:require [sdk.core :as core]
|
|
15
|
+
[voxgig.struct :as vs]
|
|
16
|
+
[clojure.string :as str]))
|
|
17
|
+
|
|
18
|
+
(defn- mget
|
|
19
|
+
([m k] (when (instance? java.util.Map m) (.get ^java.util.Map m k)))
|
|
20
|
+
([m k d] (let [v (mget m k)] (if (nil? v) d v))))
|
|
21
|
+
|
|
22
|
+
(defn- opt
|
|
23
|
+
([fa k] (mget (:options @fa) k))
|
|
24
|
+
([fa k d] (mget (:options @fa) k d)))
|
|
25
|
+
|
|
26
|
+
(defn- active? [fa] (true? (:active @fa)))
|
|
27
|
+
(defn- opts-active? [options] (= true (mget options "active")))
|
|
28
|
+
|
|
29
|
+
(defn- now-ms [fa]
|
|
30
|
+
(let [n (opt fa "now")] (if (fn? n) (n) (System/currentTimeMillis))))
|
|
31
|
+
|
|
32
|
+
(defn- sleep-ms [fa ms]
|
|
33
|
+
(when (and (some? ms) (number? ms) (> ms 0))
|
|
34
|
+
(let [s (opt fa "sleep")]
|
|
35
|
+
(if (fn? s) (s ms) (Thread/sleep (long ms))))))
|
|
36
|
+
|
|
37
|
+
(defn- track-get [fa k] (core/client-track (:client @fa) k))
|
|
38
|
+
(defn- track-set! [fa k v] (core/client-track-set! (:client @fa) k v))
|
|
39
|
+
(defn- track-ensure! [fa k default]
|
|
40
|
+
(or (track-get fa k) (track-set! fa k default)))
|
|
41
|
+
|
|
42
|
+
;; A feature atom seeded with the common metadata.
|
|
43
|
+
(defn- new-feature [name active version]
|
|
44
|
+
(atom {:name name :active active :version (or version "0.0.1") :_options nil
|
|
45
|
+
:client nil :options (vs/jm)}))
|
|
46
|
+
|
|
47
|
+
;; ---------------------------------------------------------------------------
|
|
48
|
+
;; base
|
|
49
|
+
;; ---------------------------------------------------------------------------
|
|
50
|
+
|
|
51
|
+
(defn base-feature []
|
|
52
|
+
(let [fa (new-feature "base" true "0.0.1")]
|
|
53
|
+
(swap! fa assoc "init" (fn [_ctx _options] nil))
|
|
54
|
+
fa))
|
|
55
|
+
|
|
56
|
+
;; ---------------------------------------------------------------------------
|
|
57
|
+
;; log
|
|
58
|
+
;; ---------------------------------------------------------------------------
|
|
59
|
+
|
|
60
|
+
(defn log-feature []
|
|
61
|
+
(let [fa (new-feature "log" true "0.0.1")
|
|
62
|
+
loghook (fn [ctx hook]
|
|
63
|
+
(when (:logger @fa)
|
|
64
|
+
(let [opname (if (core/oget ctx :op) (core/op-name (core/oget ctx :op)) "")]
|
|
65
|
+
(binding [*out* *err*]
|
|
66
|
+
(println (str "[INFO] hook=" hook " op=" opname))))))]
|
|
67
|
+
(swap! fa assoc
|
|
68
|
+
"init" (fn [ctx options]
|
|
69
|
+
(swap! fa assoc :client (core/oget ctx :client) :options options
|
|
70
|
+
:active (opts-active? options))
|
|
71
|
+
(when (active? fa)
|
|
72
|
+
(swap! fa assoc :logger (if (mget options "logger") (mget options "logger") *err*))))
|
|
73
|
+
"PostConstruct" (fn [ctx] (loghook ctx "PostConstruct"))
|
|
74
|
+
"PostConstructEntity" (fn [ctx] (loghook ctx "PostConstructEntity"))
|
|
75
|
+
"SetData" (fn [ctx] (loghook ctx "SetData"))
|
|
76
|
+
"GetData" (fn [ctx] (loghook ctx "GetData"))
|
|
77
|
+
"SetMatch" (fn [ctx] (loghook ctx "SetMatch"))
|
|
78
|
+
"GetMatch" (fn [ctx] (loghook ctx "GetMatch"))
|
|
79
|
+
"PrePoint" (fn [ctx] (loghook ctx "PrePoint"))
|
|
80
|
+
"PreSpec" (fn [ctx] (loghook ctx "PreSpec"))
|
|
81
|
+
"PreRequest" (fn [ctx] (loghook ctx "PreRequest"))
|
|
82
|
+
"PreResponse" (fn [ctx] (loghook ctx "PreResponse"))
|
|
83
|
+
"PreResult" (fn [ctx] (loghook ctx "PreResult")))
|
|
84
|
+
fa))
|
|
85
|
+
|
|
86
|
+
;; ---------------------------------------------------------------------------
|
|
87
|
+
;; test — installs the in-memory mock transport (optionally net-simulated).
|
|
88
|
+
;; ---------------------------------------------------------------------------
|
|
89
|
+
|
|
90
|
+
(declare test-build-args make-netsim)
|
|
91
|
+
|
|
92
|
+
(defn test-feature []
|
|
93
|
+
(let [fa (new-feature "test" true "0.0.1")]
|
|
94
|
+
(swap! fa assoc
|
|
95
|
+
"init"
|
|
96
|
+
(fn [ctx options]
|
|
97
|
+
(swap! fa assoc :client (core/oget ctx :client) :options options)
|
|
98
|
+
(let [entity (let [e (vs/getprop options "entity")] (if (vs/ismap e) e (vs/jm)))]
|
|
99
|
+
(core/client-set-mode! (core/oget ctx :client) "test")
|
|
100
|
+
;; Ensure entity ids are correct (id = key at depth 2).
|
|
101
|
+
(vs/walk entity (fn [key val _parent path]
|
|
102
|
+
(when (and (= (vs/size path) 2) (vs/ismap val) key)
|
|
103
|
+
(.put ^java.util.Map val "id" key))
|
|
104
|
+
val))
|
|
105
|
+
(let [test-fetcher
|
|
106
|
+
(fn [fctx _fullurl _fetchdef]
|
|
107
|
+
(let [respond (fn [status data extra]
|
|
108
|
+
(let [out (vs/jm "status" status "statusText" "OK"
|
|
109
|
+
"json" (fn [] data) "body" "not-used")]
|
|
110
|
+
(when extra (doseq [item (or (vs/items extra) [])]
|
|
111
|
+
(.put ^java.util.Map out (vs/getprop item 0) (vs/getprop item 1))))
|
|
112
|
+
[out nil]))
|
|
113
|
+
op (core/oget fctx :op)
|
|
114
|
+
entmap (let [em (vs/getprop entity (core/op-entity op))] (if (vs/ismap em) em (vs/jm)))
|
|
115
|
+
resolve-match (fn [explicit]
|
|
116
|
+
(if (and (vs/ismap explicit) (pos? (vs/size explicit))) explicit
|
|
117
|
+
(loop [srcs [(core/oget fctx :match) (core/oget fctx :data)]]
|
|
118
|
+
(if (empty? srcs) (vs/jm)
|
|
119
|
+
(let [src (first srcs)
|
|
120
|
+
v (when src (vs/getprop src "id"))]
|
|
121
|
+
(if (and (some? v) (not= v "__UNDEFINED__")) (vs/jm "id" v)
|
|
122
|
+
(recur (rest srcs))))))))
|
|
123
|
+
opn (core/op-name op)]
|
|
124
|
+
(cond
|
|
125
|
+
(= opn "load")
|
|
126
|
+
(let [args (test-build-args fctx op (resolve-match (core/oget fctx :reqmatch)))
|
|
127
|
+
found (vs/select entmap args)
|
|
128
|
+
ent (vs/getelem found 0)]
|
|
129
|
+
(if (nil? ent) (respond 404 nil (vs/jm "statusText" "Not found"))
|
|
130
|
+
(do (vs/delprop ent "$KEY") (respond 200 (vs/clone ent) nil))))
|
|
131
|
+
(= opn "list")
|
|
132
|
+
(let [args (test-build-args fctx op (core/oget fctx :reqmatch))
|
|
133
|
+
found (vs/select entmap args)]
|
|
134
|
+
(if (nil? found) (respond 404 nil (vs/jm "statusText" "Not found"))
|
|
135
|
+
(do (when (vs/islist found) (doseq [item (vec found)] (vs/delprop item "$KEY")))
|
|
136
|
+
(respond 200 (vs/clone found) nil))))
|
|
137
|
+
(= opn "update")
|
|
138
|
+
(let [update-match (vs/jm)
|
|
139
|
+
reqdata (core/oget fctx :reqdata)]
|
|
140
|
+
(when (vs/ismap reqdata)
|
|
141
|
+
(when (contains? (into #{} (vs/keysof reqdata)) "id")
|
|
142
|
+
(.put ^java.util.Map update-match "id" (vs/getprop reqdata "id")))
|
|
143
|
+
(when-let [am (core/op-alias op)]
|
|
144
|
+
(let [alias-id (vs/getprop am "id")]
|
|
145
|
+
(when (and alias-id (contains? (into #{} (vs/keysof reqdata)) alias-id))
|
|
146
|
+
(.put ^java.util.Map update-match alias-id (vs/getprop reqdata alias-id))))))
|
|
147
|
+
(let [update-match (if (zero? (vs/size update-match)) (resolve-match (vs/jm)) update-match)
|
|
148
|
+
args (test-build-args fctx op update-match)
|
|
149
|
+
found (vs/select entmap args)
|
|
150
|
+
ent0 (vs/getelem found 0)
|
|
151
|
+
ent (if (and (nil? ent0) (vs/ismap entmap) (pos? (vs/size entmap)))
|
|
152
|
+
(first (filter vs/ismap (map #(vs/getprop entmap %) (vs/keysof entmap))))
|
|
153
|
+
ent0)]
|
|
154
|
+
(if (nil? ent) (respond 404 nil (vs/jm "statusText" "Not found"))
|
|
155
|
+
(do (when (and (vs/ismap ent) reqdata)
|
|
156
|
+
(doseq [item (or (vs/items reqdata) [])]
|
|
157
|
+
(.put ^java.util.Map ent (vs/getprop item 0) (vs/getprop item 1))))
|
|
158
|
+
(vs/delprop ent "$KEY")
|
|
159
|
+
(respond 200 (vs/clone ent) nil)))))
|
|
160
|
+
(= opn "remove")
|
|
161
|
+
(let [args (test-build-args fctx op (resolve-match (core/oget fctx :reqmatch)))
|
|
162
|
+
found (vs/select entmap args)
|
|
163
|
+
ent (vs/getelem found 0)]
|
|
164
|
+
(when (vs/ismap ent) (vs/delprop entmap (vs/getprop ent "id")))
|
|
165
|
+
(respond 200 nil nil))
|
|
166
|
+
(= opn "create")
|
|
167
|
+
(do (test-build-args fctx op (core/oget fctx :reqdata))
|
|
168
|
+
(let [id (or ((core/uget fctx :param) fctx "id")
|
|
169
|
+
(format "%04x%04x%04x%04x" (rand-int 0x10000) (rand-int 0x10000) (rand-int 0x10000) (rand-int 0x10000)))
|
|
170
|
+
ent (vs/clone (core/oget fctx :reqdata))]
|
|
171
|
+
(if (vs/ismap ent)
|
|
172
|
+
(do (.put ^java.util.Map ent "id" id)
|
|
173
|
+
(when (string? id) (.put ^java.util.Map entmap (str id) ent))
|
|
174
|
+
(vs/delprop ent "$KEY")
|
|
175
|
+
(respond 200 (vs/clone ent) nil))
|
|
176
|
+
(respond 200 ent nil))))
|
|
177
|
+
:else (respond 404 nil (vs/jm "statusText" "Unknown operation")))))
|
|
178
|
+
net (let [nn (vs/getprop options "net")] (when (vs/ismap nn) nn))]
|
|
179
|
+
(core/oset! (core/oget ctx :utility) :fetcher
|
|
180
|
+
(if (nil? net) test-fetcher (make-netsim fa net test-fetcher)))))))
|
|
181
|
+
fa))
|
|
182
|
+
|
|
183
|
+
(defn- test-build-args [ctx op args]
|
|
184
|
+
(let [opname (core/op-name op)
|
|
185
|
+
points (vs/getpath (core/oget ctx :config)
|
|
186
|
+
(str "entity." (core/entity-get-name (core/oget ctx :entity)) ".op." opname ".points"))
|
|
187
|
+
point (vs/getelem points -1)
|
|
188
|
+
params-path (vs/getpath point "args.params")
|
|
189
|
+
reqd-params (vs/select params-path (vs/jm "reqd" true))
|
|
190
|
+
reqd (vs/transform reqd-params (vs/jt "`$EACH`" "" "`$KEY.name`"))
|
|
191
|
+
qand (vs/jt)]
|
|
192
|
+
(when args
|
|
193
|
+
(doseq [key (or (vs/keysof args) [])]
|
|
194
|
+
(let [is-id (= key "id")
|
|
195
|
+
selected (vs/select reqd key)
|
|
196
|
+
is-reqd (not (vs/isempty selected))]
|
|
197
|
+
(when (or is-id is-reqd)
|
|
198
|
+
(let [v ((core/uget ctx :param) ctx key)
|
|
199
|
+
ka (when (core/op-alias op) (vs/getprop (core/op-alias op) key))
|
|
200
|
+
qor (vs/jt (vs/jm key v))]
|
|
201
|
+
(when (string? ka) (.add ^java.util.List qor (vs/jm ka v)))
|
|
202
|
+
(.add ^java.util.List qand (vs/jm "`$OR`" qor)))))))
|
|
203
|
+
(let [q (vs/jm "`$AND`" qand)]
|
|
204
|
+
(when-let [ex (core/oget (core/oget ctx :ctrl) :explain)] (.put ^java.util.Map ex "test" (vs/jm "query" q)))
|
|
205
|
+
q)))
|
|
206
|
+
|
|
207
|
+
(defn- make-netsim [fa net inner]
|
|
208
|
+
(swap! fa assoc :netcalls 0)
|
|
209
|
+
(let [pick-latency (fn []
|
|
210
|
+
(let [l (mget net "latency")]
|
|
211
|
+
(cond (nil? l) 0
|
|
212
|
+
(number? l) (if (< l 0) 0 l)
|
|
213
|
+
:else (let [mn (long (or (mget l "min") 0))
|
|
214
|
+
mx (if (nil? (mget l "max")) mn (long (mget l "max")))]
|
|
215
|
+
(if (<= mx mn) mn (+ mn (bit-shift-right (- mx mn) 1)))))))
|
|
216
|
+
do-sleep (fn [ms] (when (and (some? ms) (number? ms) (> ms 0))
|
|
217
|
+
(let [s (mget net "sleep")] (if (fn? s) (s ms) (Thread/sleep (long ms))))))]
|
|
218
|
+
(fn [fctx fullurl fetchdef]
|
|
219
|
+
(swap! fa update :netcalls inc)
|
|
220
|
+
(let [call (:netcalls @fa)]
|
|
221
|
+
(cond
|
|
222
|
+
(= true (mget net "offline"))
|
|
223
|
+
(do (do-sleep (pick-latency))
|
|
224
|
+
[nil (core/ctx-error fctx "netsim_offline" (str "Simulated network offline (URL was: \"" fullurl "\")"))])
|
|
225
|
+
(<= call (long (mget net "errorTimes" 0)))
|
|
226
|
+
(do (do-sleep (pick-latency))
|
|
227
|
+
[nil (core/ctx-error fctx "netsim_conn" (str "Simulated connection error (call " call ")"))])
|
|
228
|
+
(<= call (long (mget net "failTimes" 0)))
|
|
229
|
+
(do (do-sleep (pick-latency))
|
|
230
|
+
[(vs/jm "status" (mget net "failStatus" 503) "statusText" "Simulated Failure"
|
|
231
|
+
"body" "not-used" "json" (fn [] nil) "headers" (vs/jm)) nil])
|
|
232
|
+
:else (do (do-sleep (pick-latency)) (inner fctx fullurl fetchdef)))))))
|
|
233
|
+
|
|
234
|
+
;; ---------------------------------------------------------------------------
|
|
235
|
+
;; Transport-wrapping helper.
|
|
236
|
+
;; ---------------------------------------------------------------------------
|
|
237
|
+
|
|
238
|
+
(defn- wrap-fetcher! [ctx wrapper]
|
|
239
|
+
(let [utility (core/oget ctx :utility)
|
|
240
|
+
inner (core/oget utility :fetcher)]
|
|
241
|
+
(core/oset! utility :fetcher (fn [fctx url fd] (wrapper fctx url fd inner)))))
|
|
242
|
+
|
|
243
|
+
;; ---------------------------------------------------------------------------
|
|
244
|
+
;; retry
|
|
245
|
+
;; ---------------------------------------------------------------------------
|
|
246
|
+
|
|
247
|
+
(defn- retry-retryable? [fa res err]
|
|
248
|
+
(cond (some? err) true
|
|
249
|
+
(nil? res) true
|
|
250
|
+
:else (let [status (when (vs/ismap res) (vs/getprop res "status"))]
|
|
251
|
+
(if (number? status)
|
|
252
|
+
(let [statuses (or (opt fa "statuses") (vs/jt 408 425 429 500 502 503 504))]
|
|
253
|
+
(boolean (some #(= (long %) (long status)) (vec statuses))))
|
|
254
|
+
false))))
|
|
255
|
+
|
|
256
|
+
(defn- retry-after-ms [res]
|
|
257
|
+
(when (vs/ismap res)
|
|
258
|
+
(let [headers (vs/getprop res "headers")]
|
|
259
|
+
(when (vs/ismap headers)
|
|
260
|
+
(let [v (atom nil)]
|
|
261
|
+
(doseq [item (or (vs/items headers) [])]
|
|
262
|
+
(when (= (str/lower-case (str (vs/getprop item 0))) "retry-after")
|
|
263
|
+
(reset! v (vs/getprop item 1))))
|
|
264
|
+
(when (some? @v)
|
|
265
|
+
(try (long (* (Double/parseDouble (str @v)) 1000)) (catch Exception _ nil))))))))
|
|
266
|
+
|
|
267
|
+
(defn- retry-backoff [fa res attempt min-delay max-delay factor]
|
|
268
|
+
(let [ra (retry-after-ms res)]
|
|
269
|
+
(if (some? ra) (min max-delay ra)
|
|
270
|
+
(let [base (* min-delay (Math/pow factor attempt))
|
|
271
|
+
jitter (if (= false (opt fa "jitter")) 0 (long (Math/floor (* (rand) min-delay))))]
|
|
272
|
+
(min max-delay (+ base jitter))))))
|
|
273
|
+
|
|
274
|
+
(defn retry-feature []
|
|
275
|
+
(let [fa (new-feature "retry" false "0.0.1")
|
|
276
|
+
with-retry
|
|
277
|
+
(fn [ctx url fetchdef inner]
|
|
278
|
+
(let [max (long (opt fa "retries" 2))
|
|
279
|
+
min-delay (opt fa "minDelay" 50)
|
|
280
|
+
max-delay (opt fa "maxDelay" 2000)
|
|
281
|
+
factor (opt fa "factor" 2)]
|
|
282
|
+
(loop [attempt 0]
|
|
283
|
+
(let [[res err] (inner ctx url fetchdef)]
|
|
284
|
+
(if (or (not (retry-retryable? fa res err)) (>= attempt max))
|
|
285
|
+
[res err]
|
|
286
|
+
(let [wait (retry-backoff fa res attempt min-delay max-delay factor)]
|
|
287
|
+
(let [track (track-ensure! fa "_retry" (vs/jm "attempts" 0 "retries" (vs/jt)))]
|
|
288
|
+
(.put ^java.util.Map track "attempts" (inc (long (mget track "attempts"))))
|
|
289
|
+
(.add ^java.util.List (mget track "retries")
|
|
290
|
+
(vs/jm "attempt" (inc attempt)
|
|
291
|
+
"status" (when (vs/ismap res) (vs/getprop res "status"))
|
|
292
|
+
"error" (when (some? err) (core/err-msg err)) "wait" wait)))
|
|
293
|
+
(sleep-ms fa wait)
|
|
294
|
+
(recur (inc attempt))))))))]
|
|
295
|
+
(swap! fa assoc
|
|
296
|
+
"init" (fn [ctx options]
|
|
297
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
298
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options))
|
|
299
|
+
(when (active? fa)
|
|
300
|
+
(wrap-fetcher! ctx (fn [fctx url fd inner] (with-retry fctx url fd inner))))))
|
|
301
|
+
fa))
|
|
302
|
+
|
|
303
|
+
;; ---------------------------------------------------------------------------
|
|
304
|
+
;; timeout
|
|
305
|
+
;; ---------------------------------------------------------------------------
|
|
306
|
+
|
|
307
|
+
(defn timeout-feature []
|
|
308
|
+
(let [fa (new-feature "timeout" false "0.0.1")
|
|
309
|
+
track! (fn [ms]
|
|
310
|
+
(let [t (track-ensure! fa "_timeout" (vs/jm "count" 0 "ms" ms))]
|
|
311
|
+
(.put ^java.util.Map t "count" (inc (long (mget t "count"))))))
|
|
312
|
+
with-timeout
|
|
313
|
+
(fn [ctx url fetchdef inner]
|
|
314
|
+
(let [ms (opt fa "ms" 30000)]
|
|
315
|
+
(if (<= ms 0) (inner ctx url fetchdef)
|
|
316
|
+
(let [now (opt fa "now")]
|
|
317
|
+
(if (fn? now)
|
|
318
|
+
(let [start (now) r (inner ctx url fetchdef)]
|
|
319
|
+
(if (> (- (now) start) ms)
|
|
320
|
+
(do (track! ms) [nil (core/ctx-error ctx "timeout" (str "Request exceeded timeout of " ms "ms"))])
|
|
321
|
+
r))
|
|
322
|
+
(let [fut (future (inner ctx url fetchdef))
|
|
323
|
+
r (deref fut (long ms) ::timeout)]
|
|
324
|
+
(if (= r ::timeout)
|
|
325
|
+
(do (future-cancel fut) (track! ms)
|
|
326
|
+
[nil (core/ctx-error ctx "timeout" (str "Request exceeded timeout of " ms "ms"))])
|
|
327
|
+
r)))))))]
|
|
328
|
+
(swap! fa assoc
|
|
329
|
+
"init" (fn [ctx options]
|
|
330
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
331
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options))
|
|
332
|
+
(when (active? fa)
|
|
333
|
+
(wrap-fetcher! ctx (fn [fctx url fd inner] (with-timeout fctx url fd inner))))))
|
|
334
|
+
fa))
|
|
335
|
+
|
|
336
|
+
;; ---------------------------------------------------------------------------
|
|
337
|
+
;; ratelimit
|
|
338
|
+
;; ---------------------------------------------------------------------------
|
|
339
|
+
|
|
340
|
+
(defn ratelimit-feature []
|
|
341
|
+
(let [fa (new-feature "ratelimit" false "0.0.1")
|
|
342
|
+
track! (fn [wait-ms]
|
|
343
|
+
(let [t (track-ensure! fa "_ratelimit" (vs/jm "throttled" 0 "waitMs" 0))]
|
|
344
|
+
(.put ^java.util.Map t "throttled" (inc (long (mget t "throttled"))))
|
|
345
|
+
(.put ^java.util.Map t "waitMs" (+ (long (mget t "waitMs")) (long wait-ms)))))
|
|
346
|
+
acquire (fn [_ctx]
|
|
347
|
+
(let [rate (opt fa "rate" 5)
|
|
348
|
+
burst (opt fa "burst" rate)
|
|
349
|
+
now (now-ms fa)
|
|
350
|
+
elapsed (- now (:last @fa))]
|
|
351
|
+
(swap! fa assoc :last now)
|
|
352
|
+
(swap! fa assoc :tokens (min burst (+ (:tokens @fa) (* (/ elapsed 1000.0) rate))))
|
|
353
|
+
(if (>= (:tokens @fa) 1)
|
|
354
|
+
(swap! fa update :tokens dec)
|
|
355
|
+
(let [needed (- 1 (:tokens @fa))
|
|
356
|
+
wait-ms (long (Math/ceil (* (/ needed (double rate)) 1000)))]
|
|
357
|
+
(track! wait-ms)
|
|
358
|
+
(sleep-ms fa wait-ms)
|
|
359
|
+
(swap! fa assoc :last (now-ms fa) :tokens 0)))))]
|
|
360
|
+
(swap! fa assoc
|
|
361
|
+
"init" (fn [ctx options]
|
|
362
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
363
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options))
|
|
364
|
+
(when (active? fa)
|
|
365
|
+
(let [burst (opt fa "burst" (opt fa "rate" 5))]
|
|
366
|
+
(swap! fa assoc :tokens burst :last (now-ms fa)))
|
|
367
|
+
(wrap-fetcher! ctx (fn [fctx url fd inner] (acquire fctx) (inner fctx url fd))))))
|
|
368
|
+
fa))
|
|
369
|
+
|
|
370
|
+
;; ---------------------------------------------------------------------------
|
|
371
|
+
;; cache
|
|
372
|
+
;; ---------------------------------------------------------------------------
|
|
373
|
+
|
|
374
|
+
(defn cache-feature []
|
|
375
|
+
(let [fa (new-feature "cache" false "0.0.1")
|
|
376
|
+
track! (fn [kind]
|
|
377
|
+
(let [t (track-ensure! fa "_cache" (vs/jm "hit" 0 "miss" 0 "bypass" 0))]
|
|
378
|
+
(.put ^java.util.Map t kind (inc (long (mget t kind))))))
|
|
379
|
+
cacheable? (fn [res] (and (vs/ismap res)
|
|
380
|
+
(let [s (vs/getprop res "status")] (and (number? s) (>= s 200) (< s 300)))))
|
|
381
|
+
snapshot (fn [res]
|
|
382
|
+
(let [jf (vs/getprop res "json")
|
|
383
|
+
data (when (fn? jf) (try (jf) (catch Throwable _ nil)))
|
|
384
|
+
headers (if (vs/ismap (vs/getprop res "headers")) (vs/clone (vs/getprop res "headers")) (vs/jm))]
|
|
385
|
+
(vs/jm "status" (vs/getprop res "status") "statusText" (vs/getprop res "statusText")
|
|
386
|
+
"data" data "headers" headers)))
|
|
387
|
+
replay (fn [snap]
|
|
388
|
+
(let [data (mget snap "data")]
|
|
389
|
+
(vs/jm "status" (mget snap "status") "statusText" (mget snap "statusText")
|
|
390
|
+
"body" "not-used" "json" (fn [] data)
|
|
391
|
+
"headers" (if (vs/ismap (mget snap "headers")) (vs/clone (mget snap "headers")) (vs/jm)))))
|
|
392
|
+
evict! (fn []
|
|
393
|
+
(let [max (opt fa "max" 256)]
|
|
394
|
+
(while (>= (count (:store @fa)) max)
|
|
395
|
+
(let [oldest (first (keys (:store @fa)))]
|
|
396
|
+
(if (nil? oldest) (swap! fa assoc :store {})
|
|
397
|
+
(swap! fa update :store dissoc oldest))))))
|
|
398
|
+
through (fn [ctx url fetchdef inner]
|
|
399
|
+
(let [method (str/upper-case (str (or (and (vs/ismap fetchdef) (vs/getprop fetchdef "method")) "GET")))
|
|
400
|
+
methods (or (opt fa "methods") (vs/jt "GET"))]
|
|
401
|
+
(if (not (some #(= % method) (vec methods)))
|
|
402
|
+
(inner ctx url fetchdef)
|
|
403
|
+
(let [key (str method " " url)
|
|
404
|
+
now (now-ms fa)
|
|
405
|
+
hit (get (:store @fa) key)]
|
|
406
|
+
(if (and (some? hit) (> (mget hit "expiry") now))
|
|
407
|
+
(do (track! "hit") [(replay (mget hit "snapshot")) nil])
|
|
408
|
+
(let [[res err] (inner ctx url fetchdef)]
|
|
409
|
+
(if (and (nil? err) (cacheable? res))
|
|
410
|
+
(let [snap (snapshot res)
|
|
411
|
+
ttl (opt fa "ttl" 5000)]
|
|
412
|
+
(evict!)
|
|
413
|
+
(swap! fa update :store assoc key (vs/jm "expiry" (+ now ttl) "snapshot" snap))
|
|
414
|
+
(track! "miss")
|
|
415
|
+
[(replay snap) nil])
|
|
416
|
+
(do (track! "bypass") [res err]))))))))]
|
|
417
|
+
(swap! fa assoc
|
|
418
|
+
"init" (fn [ctx options]
|
|
419
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
420
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options) :store {})
|
|
421
|
+
(when (active? fa)
|
|
422
|
+
(wrap-fetcher! ctx (fn [fctx url fd inner] (through fctx url fd inner))))))
|
|
423
|
+
fa))
|
|
424
|
+
|
|
425
|
+
;; ---------------------------------------------------------------------------
|
|
426
|
+
;; idempotency
|
|
427
|
+
;; ---------------------------------------------------------------------------
|
|
428
|
+
|
|
429
|
+
(defn idempotency-feature []
|
|
430
|
+
(let [fa (new-feature "idempotency" false "0.0.1")
|
|
431
|
+
mutating? (fn [ctx]
|
|
432
|
+
(let [methods (or (opt fa "methods") (vs/jt "POST" "PUT" "PATCH" "DELETE"))
|
|
433
|
+
spec (core/oget ctx :spec)
|
|
434
|
+
method (if (and spec (core/oget spec :method)) (str/upper-case (str (core/oget spec :method))) "")]
|
|
435
|
+
(if (and (seq method) (some #(= % method) (vec methods))) true
|
|
436
|
+
(let [opname (when (core/oget ctx :op) (core/op-name (core/oget ctx :op)))
|
|
437
|
+
ops (or (opt fa "ops") (vs/jt "create" "update" "remove"))]
|
|
438
|
+
(boolean (some #(= % opname) (vec ops)))))))
|
|
439
|
+
existing (fn [headers header]
|
|
440
|
+
(let [lower (str/lower-case header) v (atom nil)]
|
|
441
|
+
(doseq [item (or (vs/items headers) [])]
|
|
442
|
+
(when (= (str/lower-case (str (vs/getprop item 0))) lower) (reset! v (vs/getprop item 1))))
|
|
443
|
+
@v))
|
|
444
|
+
genkey (fn []
|
|
445
|
+
(let [kg (opt fa "keygen")]
|
|
446
|
+
(if (fn? kg) (kg)
|
|
447
|
+
(let [h (fn [] (Long/toHexString (long (rand-int 0x10000000))))]
|
|
448
|
+
(subs (apply str (take 24 (concat (str (h) (h) (h) (h)) (repeat "0")))) 0 24)))))]
|
|
449
|
+
(swap! fa assoc
|
|
450
|
+
"init" (fn [ctx options]
|
|
451
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
452
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options)))
|
|
453
|
+
"PreRequest" (fn [ctx]
|
|
454
|
+
(when (active? fa)
|
|
455
|
+
(let [spec (core/oget ctx :spec)]
|
|
456
|
+
(when (and spec (mutating? ctx))
|
|
457
|
+
(let [header (opt fa "header" "Idempotency-Key")]
|
|
458
|
+
(when (nil? (core/oget spec :headers)) (core/oset! spec :headers (vs/jm)))
|
|
459
|
+
(when (nil? (existing (core/oget spec :headers) header))
|
|
460
|
+
(let [key (genkey)]
|
|
461
|
+
(.put ^java.util.Map (core/oget spec :headers) header key)
|
|
462
|
+
(let [track (track-ensure! fa "_idempotency" (vs/jm "issued" 0 "last" nil))]
|
|
463
|
+
(.put ^java.util.Map track "issued" (inc (long (mget track "issued"))))
|
|
464
|
+
(.put ^java.util.Map track "last" key))))))))))
|
|
465
|
+
fa))
|
|
466
|
+
|
|
467
|
+
;; ---------------------------------------------------------------------------
|
|
468
|
+
;; paging
|
|
469
|
+
;; ---------------------------------------------------------------------------
|
|
470
|
+
|
|
471
|
+
(defn- header-of [headers name]
|
|
472
|
+
(let [lower (str/lower-case name) v (atom nil)]
|
|
473
|
+
(doseq [item (or (vs/items headers) [])]
|
|
474
|
+
(when (= (str/lower-case (str (vs/getprop item 0))) lower) (reset! v (vs/getprop item 1))))
|
|
475
|
+
@v))
|
|
476
|
+
|
|
477
|
+
(defn- to-num [v]
|
|
478
|
+
(when (some? v)
|
|
479
|
+
(let [s (str v)]
|
|
480
|
+
(or (try (Long/parseLong s) (catch Exception _ nil))
|
|
481
|
+
(try (Double/parseDouble s) (catch Exception _ nil))))))
|
|
482
|
+
|
|
483
|
+
(defn paging-feature []
|
|
484
|
+
(let [fa (new-feature "paging" false "0.0.1")
|
|
485
|
+
list? (fn [ctx] (let [ops (or (opt fa "ops") (vs/jt "list"))
|
|
486
|
+
opn (when (core/oget ctx :op) (core/op-name (core/oget ctx :op)))]
|
|
487
|
+
(boolean (some #(= % opn) (vec ops)))))]
|
|
488
|
+
(swap! fa assoc
|
|
489
|
+
"init" (fn [ctx options]
|
|
490
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
491
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options)))
|
|
492
|
+
"PreRequest"
|
|
493
|
+
(fn [ctx]
|
|
494
|
+
(when (and (active? fa) (list? ctx))
|
|
495
|
+
(let [spec (core/oget ctx :spec)]
|
|
496
|
+
(when spec
|
|
497
|
+
(when (nil? (core/oget spec :query)) (core/oset! spec :query (vs/jm)))
|
|
498
|
+
(let [q (core/oget spec :query)
|
|
499
|
+
page-param (opt fa "pageParam" "page")
|
|
500
|
+
limit-param (opt fa "limitParam" "limit")
|
|
501
|
+
cursor-param (opt fa "cursorParam" "cursor")
|
|
502
|
+
ctrl (core/oget ctx :ctrl)
|
|
503
|
+
paging (let [p (when ctrl (core/oget ctrl :paging))] (if (vs/ismap p) p (vs/jm)))]
|
|
504
|
+
(cond
|
|
505
|
+
(some? (mget paging "cursor")) (.put ^java.util.Map q cursor-param (mget paging "cursor"))
|
|
506
|
+
(nil? (mget q page-param))
|
|
507
|
+
(.put ^java.util.Map q page-param (if (nil? (mget paging "page")) (opt fa "startPage" 1) (mget paging "page"))))
|
|
508
|
+
(when (and (some? (opt fa "limit")) (nil? (mget q limit-param)))
|
|
509
|
+
(.put ^java.util.Map q limit-param (opt fa "limit"))))))))
|
|
510
|
+
"PreResult"
|
|
511
|
+
(fn [ctx]
|
|
512
|
+
(when (and (active? fa) (list? ctx))
|
|
513
|
+
(let [result (core/oget ctx :result)]
|
|
514
|
+
(when result
|
|
515
|
+
(let [headers (or (core/oget result :headers) (vs/jm))
|
|
516
|
+
body (core/oget result :body)
|
|
517
|
+
paging (vs/jm "page" (to-num (header-of headers "x-page"))
|
|
518
|
+
"totalCount" (to-num (header-of headers "x-total-count"))
|
|
519
|
+
"nextPage" (to-num (header-of headers "x-next-page"))
|
|
520
|
+
"next" nil "cursor" nil "hasMore" false)
|
|
521
|
+
link (header-of headers "link")]
|
|
522
|
+
(when (some? link)
|
|
523
|
+
(when-let [m (re-find #"(?i)<([^>]+)>\s*;\s*rel=\"?next\"?" (str link))]
|
|
524
|
+
(.put ^java.util.Map paging "next" (nth m 1))))
|
|
525
|
+
(when (vs/ismap body)
|
|
526
|
+
(when (some? (mget body "next")) (when (nil? (mget paging "next")) (.put ^java.util.Map paging "next" (mget body "next"))))
|
|
527
|
+
(when (some? (mget body "cursor")) (.put ^java.util.Map paging "cursor" (mget body "cursor")))
|
|
528
|
+
(when (some? (mget body "nextCursor")) (.put ^java.util.Map paging "cursor" (mget body "nextCursor")))
|
|
529
|
+
(let [hm (mget body "hasMore")] (when (or (= hm true) (= hm false)) (.put ^java.util.Map paging "hasMore" hm))))
|
|
530
|
+
(.put ^java.util.Map paging "hasMore"
|
|
531
|
+
(boolean (or (mget paging "hasMore") (some? (mget paging "next"))
|
|
532
|
+
(some? (mget paging "cursor")) (some? (mget paging "nextPage")))))
|
|
533
|
+
(core/oset! result :paging paging)
|
|
534
|
+
(track-set! fa "_paging" (vs/jm "last" paging)))))))
|
|
535
|
+
)
|
|
536
|
+
fa))
|
|
537
|
+
|
|
538
|
+
;; ---------------------------------------------------------------------------
|
|
539
|
+
;; streaming
|
|
540
|
+
;; ---------------------------------------------------------------------------
|
|
541
|
+
|
|
542
|
+
(defn streaming-feature []
|
|
543
|
+
(let [fa (new-feature "streaming" false "0.0.1")
|
|
544
|
+
streamable? (fn [ctx] (let [ops (or (opt fa "ops") (vs/jt "list"))
|
|
545
|
+
opn (when (core/oget ctx :op) (core/op-name (core/oget ctx :op)))]
|
|
546
|
+
(boolean (some #(= % opn) (vec ops)))))
|
|
547
|
+
make-stream (fn [result]
|
|
548
|
+
;; A lazy sequence realised on demand from result.resdata.
|
|
549
|
+
(fn []
|
|
550
|
+
(let [chunk-delay (opt fa "chunkDelay" 0)
|
|
551
|
+
chunk-size (opt fa "chunkSize" 0)
|
|
552
|
+
items (let [rd (core/oget result :resdata)] (if (vs/islist rd) (vec rd) []))]
|
|
553
|
+
(if (> chunk-size 0)
|
|
554
|
+
(mapv (fn [batch] (when (> chunk-delay 0) (sleep-ms fa chunk-delay)) batch)
|
|
555
|
+
(mapv vec (partition-all chunk-size items)))
|
|
556
|
+
(mapv (fn [item] (when (> chunk-delay 0) (sleep-ms fa chunk-delay)) item) items)))))]
|
|
557
|
+
(swap! fa assoc
|
|
558
|
+
"init" (fn [ctx options]
|
|
559
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
560
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options)))
|
|
561
|
+
"PreResult"
|
|
562
|
+
(fn [ctx]
|
|
563
|
+
(when (and (active? fa) (streamable? ctx))
|
|
564
|
+
(let [result (core/oget ctx :result)]
|
|
565
|
+
(when result
|
|
566
|
+
(core/oset! result :streaming true)
|
|
567
|
+
(core/oset! result :stream (make-stream result))
|
|
568
|
+
(let [t (track-ensure! fa "_streaming" (vs/jm "opened" 0))]
|
|
569
|
+
(.put ^java.util.Map t "opened" (inc (long (mget t "opened"))))))))))
|
|
570
|
+
fa))
|
|
571
|
+
|
|
572
|
+
;; ---------------------------------------------------------------------------
|
|
573
|
+
;; proxy
|
|
574
|
+
;; ---------------------------------------------------------------------------
|
|
575
|
+
|
|
576
|
+
(defn proxy-feature []
|
|
577
|
+
(let [fa (new-feature "proxy" false "0.0.1")
|
|
578
|
+
bypass? (fn [url]
|
|
579
|
+
(let [no-proxy (:no-proxy @fa)]
|
|
580
|
+
(if (empty? no-proxy) false
|
|
581
|
+
(let [host (if-let [m (re-find #"(?i)\A[a-z]+://([^/:]+)" url)] (nth m 1) url)]
|
|
582
|
+
(boolean (some (fn [np] (or (= np "*") (= host np)
|
|
583
|
+
(str/ends-with? host (str "." (str/replace np #"\A\." ""))))) no-proxy))))))
|
|
584
|
+
route (fn [url fetchdef]
|
|
585
|
+
(if (or (nil? (:url @fa)) (bypass? url)) fetchdef
|
|
586
|
+
(let [out (if (vs/ismap fetchdef) (vs/clone fetchdef) (vs/jm))]
|
|
587
|
+
(.put ^java.util.Map out "proxy" (:url @fa))
|
|
588
|
+
(let [agent (opt fa "agent")]
|
|
589
|
+
(when (fn? agent)
|
|
590
|
+
(let [made (agent (:url @fa) url)]
|
|
591
|
+
(.put ^java.util.Map out "dispatcher" made)
|
|
592
|
+
(.put ^java.util.Map out "agent" made))))
|
|
593
|
+
(let [t (track-ensure! fa "_proxy" (vs/jm "routed" 0 "url" (:url @fa)))]
|
|
594
|
+
(.put ^java.util.Map t "routed" (inc (long (mget t "routed")))))
|
|
595
|
+
out)))]
|
|
596
|
+
(swap! fa assoc
|
|
597
|
+
"init" (fn [ctx options]
|
|
598
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
599
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options))
|
|
600
|
+
(when (active? fa)
|
|
601
|
+
(let [url0 (opt fa "url")
|
|
602
|
+
no-proxy0 (opt fa "noProxy")
|
|
603
|
+
from-env (= true (opt fa "fromEnv"))
|
|
604
|
+
url (if from-env (or url0 (System/getenv "HTTPS_PROXY") (System/getenv "https_proxy")
|
|
605
|
+
(System/getenv "HTTP_PROXY") (System/getenv "http_proxy")) url0)
|
|
606
|
+
no-proxy1 (if from-env (or no-proxy0 (System/getenv "NO_PROXY") (System/getenv "no_proxy")) no-proxy0)
|
|
607
|
+
no-proxy (->> (cond (string? no-proxy1) (str/split no-proxy1 #"\s*,\s*")
|
|
608
|
+
(vs/islist no-proxy1) (vec no-proxy1)
|
|
609
|
+
:else [])
|
|
610
|
+
(remove (fn [s] (or (nil? s) (= s "")))))]
|
|
611
|
+
(swap! fa assoc :url url :no-proxy (vec no-proxy)))
|
|
612
|
+
(wrap-fetcher! ctx (fn [fctx url fd inner] (inner fctx url (route url fd)))))))
|
|
613
|
+
fa))
|
|
614
|
+
|
|
615
|
+
;; ---------------------------------------------------------------------------
|
|
616
|
+
;; telemetry
|
|
617
|
+
;; ---------------------------------------------------------------------------
|
|
618
|
+
|
|
619
|
+
(defn telemetry-feature []
|
|
620
|
+
(let [fa (new-feature "telemetry" false "0.0.1")
|
|
621
|
+
telem (fn [] (track-get fa "_telemetry"))
|
|
622
|
+
gen-id2 (fn [kind]
|
|
623
|
+
(let [idgen (opt fa "idgen")]
|
|
624
|
+
(if (fn? idgen) (idgen kind)
|
|
625
|
+
(do (swap! fa update :seq inc)
|
|
626
|
+
(let [n (let [h (Long/toHexString (long (:seq @fa)))]
|
|
627
|
+
(str (apply str (repeat (max 0 (- 4 (count h))) "0")) h))
|
|
628
|
+
padded (apply str n (repeat (max 0 (- 16 (count n))) "0"))]
|
|
629
|
+
(str (if (= kind "trace") "t" "s") (subs padded 0 16)))))))
|
|
630
|
+
close (fn [ctx ok]
|
|
631
|
+
(let [span (get (:spans @fa) ctx)]
|
|
632
|
+
(when span
|
|
633
|
+
(swap! fa update :spans dissoc ctx)
|
|
634
|
+
(.put ^java.util.Map span "end" (now-ms fa))
|
|
635
|
+
(.put ^java.util.Map span "durationMs" (max 0 (- (mget span "end") (mget span "start"))))
|
|
636
|
+
(.put ^java.util.Map span "ok" ok)
|
|
637
|
+
(when-let [t (telem)]
|
|
638
|
+
(.put ^java.util.Map t "active" (dec (long (mget t "active"))))
|
|
639
|
+
(.add ^java.util.List (mget t "spans") span))
|
|
640
|
+
(let [exporter (opt fa "exporter")]
|
|
641
|
+
(when (fn? exporter) (try (exporter span) (catch Throwable _ nil)))))))]
|
|
642
|
+
(swap! fa assoc :spans {} :seq 0)
|
|
643
|
+
(swap! fa assoc
|
|
644
|
+
"init" (fn [ctx options]
|
|
645
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
646
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options) :spans {} :seq 0)
|
|
647
|
+
(when (active? fa)
|
|
648
|
+
(when (nil? (track-get fa "_telemetry"))
|
|
649
|
+
(track-set! fa "_telemetry" (vs/jm "spans" (vs/jt) "active" 0)))))
|
|
650
|
+
"PrePoint"
|
|
651
|
+
(fn [ctx]
|
|
652
|
+
(when (active? fa)
|
|
653
|
+
(let [op (core/oget ctx :op)
|
|
654
|
+
span (vs/jm "traceId" (gen-id2 "trace") "spanId" (gen-id2 "span")
|
|
655
|
+
"name" (str (if op (core/op-entity op) "_") "." (if op (core/op-name op) "_"))
|
|
656
|
+
"start" (now-ms fa) "end" nil "durationMs" nil "ok" nil)]
|
|
657
|
+
(swap! fa update :spans assoc ctx span)
|
|
658
|
+
(when-let [t (telem)] (.put ^java.util.Map t "active" (inc (long (mget t "active"))))))))
|
|
659
|
+
"PreRequest"
|
|
660
|
+
(fn [ctx]
|
|
661
|
+
(when (active? fa)
|
|
662
|
+
(let [span (get (:spans @fa) ctx) spec (core/oget ctx :spec)]
|
|
663
|
+
(when (and span spec)
|
|
664
|
+
(when (nil? (core/oget spec :headers)) (core/oset! spec :headers (vs/jm)))
|
|
665
|
+
(let [h (or (opt fa "headers") (vs/jm)) headers (core/oget spec :headers)]
|
|
666
|
+
(.put ^java.util.Map headers (or (mget h "trace") "X-Trace-Id") (mget span "traceId"))
|
|
667
|
+
(.put ^java.util.Map headers (or (mget h "span") "X-Span-Id") (mget span "spanId"))
|
|
668
|
+
(.put ^java.util.Map headers (or (mget h "parent") "traceparent")
|
|
669
|
+
(str "00-" (mget span "traceId") "-" (mget span "spanId") "-01")))))))
|
|
670
|
+
"PreDone"
|
|
671
|
+
(fn [ctx]
|
|
672
|
+
(when (active? fa)
|
|
673
|
+
(let [result (core/oget ctx :result)
|
|
674
|
+
ok (and (some? result) (= true (core/oget result :ok)) (nil? (core/oget result :err)))]
|
|
675
|
+
(close ctx ok))))
|
|
676
|
+
"PreUnexpected" (fn [ctx] (when (active? fa) (close ctx false))))
|
|
677
|
+
fa))
|
|
678
|
+
|
|
679
|
+
;; ---------------------------------------------------------------------------
|
|
680
|
+
;; metrics
|
|
681
|
+
;; ---------------------------------------------------------------------------
|
|
682
|
+
|
|
683
|
+
(defn metrics-feature []
|
|
684
|
+
(let [fa (new-feature "metrics" false "0.0.1")
|
|
685
|
+
bump! (fn [bucket ok dur]
|
|
686
|
+
(.put ^java.util.Map bucket "count" (inc (long (mget bucket "count"))))
|
|
687
|
+
(.put ^java.util.Map bucket (if ok "ok" "err") (inc (long (mget bucket (if ok "ok" "err")))))
|
|
688
|
+
(.put ^java.util.Map bucket "totalMs" (+ (long (mget bucket "totalMs")) (long dur)))
|
|
689
|
+
(when (> dur (mget bucket "maxMs")) (.put ^java.util.Map bucket "maxMs" dur)))
|
|
690
|
+
record! (fn [ctx ok]
|
|
691
|
+
(when (contains? (:starts @fa) ctx)
|
|
692
|
+
(let [start (get (:starts @fa) ctx)
|
|
693
|
+
_ (swap! fa update :starts dissoc ctx)
|
|
694
|
+
dur (if (nil? start) 0 (max 0 (- (now-ms fa) start)))
|
|
695
|
+
m (track-get fa "_metrics")]
|
|
696
|
+
(when m
|
|
697
|
+
(let [op (core/oget ctx :op)
|
|
698
|
+
key (str (if op (core/op-entity op) "_") "." (if op (core/op-name op) "_"))
|
|
699
|
+
opm (or (mget (mget m "ops") key)
|
|
700
|
+
(let [b (vs/jm "count" 0 "ok" 0 "err" 0 "totalMs" 0 "maxMs" 0)]
|
|
701
|
+
(.put ^java.util.Map (mget m "ops") key b) b))]
|
|
702
|
+
(bump! (mget m "total") ok dur)
|
|
703
|
+
(bump! opm ok dur))))))]
|
|
704
|
+
(swap! fa assoc :starts {})
|
|
705
|
+
(swap! fa assoc
|
|
706
|
+
"init" (fn [ctx options]
|
|
707
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
708
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options) :starts {})
|
|
709
|
+
(when (active? fa)
|
|
710
|
+
(when (nil? (track-get fa "_metrics"))
|
|
711
|
+
(track-set! fa "_metrics"
|
|
712
|
+
(vs/jm "total" (vs/jm "count" 0 "ok" 0 "err" 0 "totalMs" 0 "maxMs" 0) "ops" (vs/jm))))))
|
|
713
|
+
"PrePoint" (fn [ctx] (when (active? fa) (swap! fa update :starts assoc ctx (now-ms fa))))
|
|
714
|
+
"PreDone" (fn [ctx]
|
|
715
|
+
(when (active? fa)
|
|
716
|
+
(let [result (core/oget ctx :result)
|
|
717
|
+
ok (and (some? result) (= true (core/oget result :ok)) (nil? (core/oget result :err)))]
|
|
718
|
+
(record! ctx ok))))
|
|
719
|
+
"PreUnexpected" (fn [ctx] (when (active? fa) (record! ctx false))))
|
|
720
|
+
fa))
|
|
721
|
+
|
|
722
|
+
;; ---------------------------------------------------------------------------
|
|
723
|
+
;; debug
|
|
724
|
+
;; ---------------------------------------------------------------------------
|
|
725
|
+
|
|
726
|
+
(def REDACT-DEFAULT ["authorization" "cookie" "set-cookie" "api-key" "apikey" "x-api-key" "idempotency-key"])
|
|
727
|
+
|
|
728
|
+
(defn debug-feature []
|
|
729
|
+
(let [fa (new-feature "debug" false "0.0.1")
|
|
730
|
+
redact (fn [headers]
|
|
731
|
+
(if (nil? headers) (vs/jm)
|
|
732
|
+
(let [patterns (or (opt fa "redact") REDACT-DEFAULT)
|
|
733
|
+
pset (into #{} (map str (vec patterns)))
|
|
734
|
+
out (vs/jm)]
|
|
735
|
+
(doseq [item (or (vs/items headers) [])]
|
|
736
|
+
(let [k (vs/getprop item 0) v (vs/getprop item 1)]
|
|
737
|
+
(.put ^java.util.Map out k (if (contains? pset (str/lower-case (str k))) "<redacted>" v))))
|
|
738
|
+
out)))
|
|
739
|
+
finish (fn [ctx ok]
|
|
740
|
+
(let [entry (get (:entries @fa) ctx)]
|
|
741
|
+
(when entry
|
|
742
|
+
(swap! fa update :entries dissoc ctx)
|
|
743
|
+
(let [result (core/oget ctx :result)]
|
|
744
|
+
(.put ^java.util.Map entry "ok" (boolean (and ok (or (nil? result) (= true (core/oget result :ok))))))
|
|
745
|
+
(.put ^java.util.Map entry "durationMs" (max 0 (- (now-ms fa) (mget entry "start"))))
|
|
746
|
+
(when (and (nil? (mget entry "status")) result)
|
|
747
|
+
(.put ^java.util.Map entry "status" (core/oget result :status)))
|
|
748
|
+
(let [track (track-ensure! fa "_debug" (vs/jm "entries" (vs/jt)))
|
|
749
|
+
buf (mget track "entries")
|
|
750
|
+
max (opt fa "max" 100)]
|
|
751
|
+
(.add ^java.util.List buf entry)
|
|
752
|
+
(while (> (.size ^java.util.List buf) max) (.remove ^java.util.List buf 0))
|
|
753
|
+
(let [on-entry (opt fa "on_entry")]
|
|
754
|
+
(when (fn? on-entry) (try (on-entry entry) (catch Throwable _ nil)))))))))]
|
|
755
|
+
(swap! fa assoc :entries {})
|
|
756
|
+
(swap! fa assoc
|
|
757
|
+
"init" (fn [ctx options]
|
|
758
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
759
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options) :entries {})
|
|
760
|
+
(when (active? fa)
|
|
761
|
+
(when (nil? (track-get fa "_debug")) (track-set! fa "_debug" (vs/jm "entries" (vs/jt))))))
|
|
762
|
+
"PreRequest"
|
|
763
|
+
(fn [ctx]
|
|
764
|
+
(when (active? fa)
|
|
765
|
+
(let [spec (core/oget ctx :spec)
|
|
766
|
+
op (core/oget ctx :op)
|
|
767
|
+
url (when spec (if (= "" (str (core/oget spec :url))) (core/oget spec :path) (core/oget spec :url)))
|
|
768
|
+
method (when spec (core/oget spec :method))
|
|
769
|
+
headers (when spec (core/oget spec :headers))
|
|
770
|
+
entry (vs/jm "op" (str (if op (core/op-entity op) "_") "." (if op (core/op-name op) "_"))
|
|
771
|
+
"method" method "url" url "headers" (redact headers) "start" (now-ms fa)
|
|
772
|
+
"status" nil "ok" nil "durationMs" nil "error" nil)]
|
|
773
|
+
(swap! fa update :entries assoc ctx entry))))
|
|
774
|
+
"PreResponse"
|
|
775
|
+
(fn [ctx]
|
|
776
|
+
(when (active? fa)
|
|
777
|
+
(let [entry (get (:entries @fa) ctx) response (core/oget ctx :response)]
|
|
778
|
+
(when (and entry response)
|
|
779
|
+
(.put ^java.util.Map entry "status" (core/oget response :status))
|
|
780
|
+
(when (and (or (nil? (mget entry "url")) (= "" (str (mget entry "url")))) (core/oget ctx :spec))
|
|
781
|
+
(.put ^java.util.Map entry "url" (core/oget (core/oget ctx :spec) :url)))))))
|
|
782
|
+
"PreDone" (fn [ctx] (when (active? fa) (finish ctx true)))
|
|
783
|
+
"PreUnexpected"
|
|
784
|
+
(fn [ctx]
|
|
785
|
+
(when (active? fa)
|
|
786
|
+
(let [entry (get (:entries @fa) ctx) ctrl (core/oget ctx :ctrl)]
|
|
787
|
+
(when (and entry ctrl (core/oget ctrl :err))
|
|
788
|
+
(.put ^java.util.Map entry "error" (core/err-msg (core/oget ctrl :err)))))
|
|
789
|
+
(finish ctx false))))
|
|
790
|
+
fa))
|
|
791
|
+
|
|
792
|
+
;; ---------------------------------------------------------------------------
|
|
793
|
+
;; audit
|
|
794
|
+
;; ---------------------------------------------------------------------------
|
|
795
|
+
|
|
796
|
+
(defn audit-feature []
|
|
797
|
+
(let [fa (new-feature "audit" false "0.0.1")
|
|
798
|
+
actor (fn [ctx]
|
|
799
|
+
(let [ctrl (core/oget ctx :ctrl)]
|
|
800
|
+
(if (and ctrl (some? (core/oget ctrl :actor))) (core/oget ctrl :actor)
|
|
801
|
+
(opt fa "actor" "anonymous"))))
|
|
802
|
+
emit (fn [ctx outcome]
|
|
803
|
+
(when-not (contains? (:seen @fa) ctx)
|
|
804
|
+
(swap! fa update :seen conj ctx)
|
|
805
|
+
(swap! fa update :seq inc)
|
|
806
|
+
(let [op (core/oget ctx :op)
|
|
807
|
+
result (core/oget ctx :result)
|
|
808
|
+
record (vs/jm "seq" (:seq @fa) "ts" (now-ms fa) "actor" (actor ctx)
|
|
809
|
+
"entity" (if op (core/op-entity op) "_") "op" (if op (core/op-name op) "_")
|
|
810
|
+
"outcome" outcome "status" (when result (core/oget result :status))
|
|
811
|
+
"correlationId" (core/oget ctx :id))
|
|
812
|
+
track (track-ensure! fa "_audit" (vs/jm "records" (vs/jt)))
|
|
813
|
+
recs (mget track "records")
|
|
814
|
+
max (opt fa "max" 1000)]
|
|
815
|
+
(.add ^java.util.List recs record)
|
|
816
|
+
(while (> (.size ^java.util.List recs) max) (.remove ^java.util.List recs 0))
|
|
817
|
+
(let [sink (opt fa "sink")] (when (fn? sink) (try (sink record) (catch Throwable _ nil)))))))]
|
|
818
|
+
(swap! fa assoc :seq 0 :seen #{})
|
|
819
|
+
(swap! fa assoc
|
|
820
|
+
"init" (fn [ctx options]
|
|
821
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
822
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options) :seq 0 :seen #{})
|
|
823
|
+
(when (active? fa)
|
|
824
|
+
(when (nil? (track-get fa "_audit")) (track-set! fa "_audit" (vs/jm "records" (vs/jt))))))
|
|
825
|
+
"PreDone" (fn [ctx]
|
|
826
|
+
(when (active? fa)
|
|
827
|
+
(let [result (core/oget ctx :result)
|
|
828
|
+
ok (and (some? result) (= true (core/oget result :ok)) (nil? (core/oget result :err)))]
|
|
829
|
+
(emit ctx (if ok "ok" "error")))))
|
|
830
|
+
"PreUnexpected" (fn [ctx] (when (active? fa) (emit ctx "error"))))
|
|
831
|
+
fa))
|
|
832
|
+
|
|
833
|
+
;; ---------------------------------------------------------------------------
|
|
834
|
+
;; clienttrack
|
|
835
|
+
;; ---------------------------------------------------------------------------
|
|
836
|
+
|
|
837
|
+
(defn clienttrack-feature []
|
|
838
|
+
(let [fa (new-feature "clienttrack" false "0.0.1")
|
|
839
|
+
client-name (fn [] (str (opt fa "clientName" "ProjectName-SDK") "/" (opt fa "clientVersion" "0.0.1")))
|
|
840
|
+
gen-id (fn [kind]
|
|
841
|
+
(let [idgen (opt fa "idgen")]
|
|
842
|
+
(if (fn? idgen) (idgen kind)
|
|
843
|
+
(let [h (fn [] (Long/toHexString (long (rand-int 0x10000000))))
|
|
844
|
+
s (str (subs kind 0 1) "-" (h) (h) (h))]
|
|
845
|
+
(subs s 0 (min 20 (count s)))))))
|
|
846
|
+
setk (fn [headers name value]
|
|
847
|
+
(let [lower (str/lower-case name)]
|
|
848
|
+
(when-not (some (fn [k] (= (str/lower-case (str k)) lower)) (or (vs/keysof headers) []))
|
|
849
|
+
(.put ^java.util.Map headers name value))))]
|
|
850
|
+
(swap! fa assoc :session "" :requests 0)
|
|
851
|
+
(swap! fa assoc
|
|
852
|
+
"init" (fn [ctx options]
|
|
853
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
854
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options) :requests 0))
|
|
855
|
+
"PostConstruct"
|
|
856
|
+
(fn [_ctx]
|
|
857
|
+
(when (active? fa)
|
|
858
|
+
(swap! fa assoc :session (or (opt fa "sessionId") (gen-id "session")))
|
|
859
|
+
(track-set! fa "_clienttrack" (vs/jm "session" (:session @fa) "requests" 0 "clientName" (client-name)))))
|
|
860
|
+
"PreRequest"
|
|
861
|
+
(fn [ctx]
|
|
862
|
+
(when (active? fa)
|
|
863
|
+
(let [spec (core/oget ctx :spec)]
|
|
864
|
+
(when spec
|
|
865
|
+
(when (nil? (core/oget spec :headers)) (core/oset! spec :headers (vs/jm)))
|
|
866
|
+
(when (= "" (:session @fa)) (swap! fa assoc :session (or (opt fa "sessionId") (gen-id "session"))))
|
|
867
|
+
(let [h (or (opt fa "headers") (vs/jm))
|
|
868
|
+
headers (core/oget spec :headers)]
|
|
869
|
+
(swap! fa update :requests inc)
|
|
870
|
+
(let [request-id (gen-id "request")]
|
|
871
|
+
(setk headers (or (mget h "agent") "User-Agent") (client-name))
|
|
872
|
+
(setk headers (or (mget h "client") "X-Client-Id") (:session @fa))
|
|
873
|
+
(.put ^java.util.Map headers (or (mget h "request") "X-Request-Id") request-id)
|
|
874
|
+
(let [track (track-ensure! fa "_clienttrack"
|
|
875
|
+
(vs/jm "session" (:session @fa) "requests" 0 "clientName" (client-name)))]
|
|
876
|
+
(.put ^java.util.Map track "requests" (:requests @fa))
|
|
877
|
+
(.put ^java.util.Map track "lastRequestId" request-id)))))))))
|
|
878
|
+
fa))
|
|
879
|
+
|
|
880
|
+
;; ---------------------------------------------------------------------------
|
|
881
|
+
;; rbac — PrePoint short-circuit (gotcha #2).
|
|
882
|
+
;; ---------------------------------------------------------------------------
|
|
883
|
+
|
|
884
|
+
(defn rbac-feature []
|
|
885
|
+
(let [fa (new-feature "rbac" false "0.0.1")
|
|
886
|
+
required (fn [ctx]
|
|
887
|
+
(let [rules (or (opt fa "rules") (vs/jm))
|
|
888
|
+
entity (cond (and (core/oget ctx :entity) (core/entity-get-name (core/oget ctx :entity)))
|
|
889
|
+
(core/entity-get-name (core/oget ctx :entity))
|
|
890
|
+
(core/oget ctx :op) (core/op-entity (core/oget ctx :op))
|
|
891
|
+
:else "")
|
|
892
|
+
opname (if (core/oget ctx :op) (core/op-name (core/oget ctx :op)) "")]
|
|
893
|
+
(cond
|
|
894
|
+
(some? (mget rules (str entity "." opname))) (mget rules (str entity "." opname))
|
|
895
|
+
(some? (mget rules opname)) (mget rules opname)
|
|
896
|
+
(some? (mget rules "*")) (mget rules "*")
|
|
897
|
+
:else nil)))
|
|
898
|
+
track! (fn [ctx req allowed]
|
|
899
|
+
(let [t (track-ensure! fa "_rbac" (vs/jm "allowed" 0 "denied" 0 "last" nil))]
|
|
900
|
+
(.put ^java.util.Map t (if allowed "allowed" "denied") (inc (long (mget t (if allowed "allowed" "denied")))))
|
|
901
|
+
(.put ^java.util.Map t "last" (vs/jm "required" req "allowed" allowed
|
|
902
|
+
"op" (when (core/oget ctx :op) (core/op-name (core/oget ctx :op)))))))
|
|
903
|
+
reject (fn [ctx req]
|
|
904
|
+
(track! ctx req false)
|
|
905
|
+
(let [op (core/oget ctx :op)
|
|
906
|
+
opname (if (and op (seq (core/op-name op))) (core/op-name op) "?")
|
|
907
|
+
err (core/ctx-error ctx "rbac_denied" (str "Permission \"" req "\" required for operation \"" opname "\""))]
|
|
908
|
+
;; Short-circuit endpoint resolution; make_point surfaces this
|
|
909
|
+
;; error before any network use.
|
|
910
|
+
(core/out-set! ctx "point" err)
|
|
911
|
+
err))]
|
|
912
|
+
(swap! fa assoc :granted {})
|
|
913
|
+
(swap! fa assoc
|
|
914
|
+
"init" (fn [ctx options]
|
|
915
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
916
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options))
|
|
917
|
+
(let [perms (opt fa "permissions")]
|
|
918
|
+
(swap! fa assoc :granted (if (vs/islist perms) (into {} (map (fn [p] [p true]) (vec perms))) {}))))
|
|
919
|
+
"PrePoint"
|
|
920
|
+
(fn [ctx]
|
|
921
|
+
(when (active? fa)
|
|
922
|
+
(let [req (required ctx)]
|
|
923
|
+
(cond
|
|
924
|
+
(nil? req) (when (= true (opt fa "deny")) (reject ctx "<default-deny>"))
|
|
925
|
+
(or (get (:granted @fa) "*") (get (:granted @fa) req)) (do (track! ctx req true) nil)
|
|
926
|
+
:else (reject ctx req))))))
|
|
927
|
+
fa))
|
|
928
|
+
|
|
929
|
+
;; ---------------------------------------------------------------------------
|
|
930
|
+
;; netsim — seeded LCG + exact error codes (gotcha #6).
|
|
931
|
+
;; ---------------------------------------------------------------------------
|
|
932
|
+
|
|
933
|
+
(defn netsim-feature []
|
|
934
|
+
(let [fa (new-feature "netsim" false "0.0.1")
|
|
935
|
+
lcg-rand (fn []
|
|
936
|
+
(swap! fa update :seed (fn [s] (bit-and (+ (* (long s) 1103515245) 12345) 0x7fffffff)))
|
|
937
|
+
(/ (double (:seed @fa)) 0x7fffffff))
|
|
938
|
+
pick-latency (fn []
|
|
939
|
+
(let [l (opt fa "latency")]
|
|
940
|
+
(cond (nil? l) 0
|
|
941
|
+
(number? l) (if (< l 0) 0 l)
|
|
942
|
+
:else (let [mn (long (or (mget l "min") 0))
|
|
943
|
+
mx (if (nil? (mget l "max")) mn (long (mget l "max")))]
|
|
944
|
+
(if (<= mx mn) mn (+ mn (long (Math/floor (* (lcg-rand) (- mx mn))))))))))
|
|
945
|
+
do-sleep (fn [ms] (sleep-ms fa ms))
|
|
946
|
+
respond (fn [status data extra]
|
|
947
|
+
(let [out (vs/jm "status" status "statusText" "OK" "json" (fn [] data) "body" "not-used" "headers" (vs/jm))]
|
|
948
|
+
(when (vs/ismap extra)
|
|
949
|
+
(doseq [item (or (vs/items extra) [])]
|
|
950
|
+
(let [k (vs/getprop item 0) v (vs/getprop item 1)]
|
|
951
|
+
(if (and (= k "headers") (vs/ismap v))
|
|
952
|
+
(let [headers (vs/jm)]
|
|
953
|
+
(doseq [hitem (or (vs/items v) [])]
|
|
954
|
+
(.put ^java.util.Map headers (str/lower-case (str (vs/getprop hitem 0))) (vs/getprop hitem 1)))
|
|
955
|
+
(.put ^java.util.Map out "headers" headers))
|
|
956
|
+
(.put ^java.util.Map out k v)))))
|
|
957
|
+
out))
|
|
958
|
+
track! (fn [ctx applied]
|
|
959
|
+
(let [t (track-ensure! fa "_netsim" (vs/jm "calls" 0 "applied" (vs/jt)))]
|
|
960
|
+
(.put ^java.util.Map t "calls" (inc (long (mget t "calls"))))
|
|
961
|
+
(.add ^java.util.List (mget t "applied") applied)
|
|
962
|
+
(when-let [ex (core/oget (core/oget ctx :ctrl) :explain)] (.put ^java.util.Map ex "netsim" t))))
|
|
963
|
+
simulate
|
|
964
|
+
(fn [ctx url fetchdef inner]
|
|
965
|
+
(swap! fa update :calls inc)
|
|
966
|
+
(let [call (:calls @fa) applied (vs/jm)]
|
|
967
|
+
(cond
|
|
968
|
+
(= true (opt fa "offline"))
|
|
969
|
+
(do (do-sleep (pick-latency)) (.put ^java.util.Map applied "offline" true) (track! ctx applied)
|
|
970
|
+
[nil (core/ctx-error ctx "netsim_offline" (str "Simulated network offline (URL was: \"" url "\")"))])
|
|
971
|
+
(<= call (long (opt fa "errorTimes" 0)))
|
|
972
|
+
(do (do-sleep (pick-latency)) (.put ^java.util.Map applied "error" true) (track! ctx applied)
|
|
973
|
+
[nil (core/ctx-error ctx "netsim_conn" (str "Simulated connection error (call " call ")"))])
|
|
974
|
+
(<= call (long (opt fa "rateLimitTimes" 0)))
|
|
975
|
+
(do (do-sleep (pick-latency)) (.put ^java.util.Map applied "rateLimited" true) (track! ctx applied)
|
|
976
|
+
[(respond 429 nil (vs/jm "statusText" "Too Many Requests"
|
|
977
|
+
"headers" (vs/jm "retry-after" (str (opt fa "retryAfter" 0))))) nil])
|
|
978
|
+
:else
|
|
979
|
+
(let [fail-status (opt fa "failStatus" 503)
|
|
980
|
+
fail-by-count (<= call (long (opt fa "failTimes" 0)))
|
|
981
|
+
fail-every (long (opt fa "failEvery" 0))
|
|
982
|
+
fail-by-every (and (> fail-every 0) (zero? (mod call fail-every)))
|
|
983
|
+
fail-rate (let [r (opt fa "failRate")] (if (number? r) r 0))
|
|
984
|
+
fail-by-rate (and (> fail-rate 0) (< (lcg-rand) fail-rate))]
|
|
985
|
+
(if (or fail-by-count fail-by-every fail-by-rate)
|
|
986
|
+
(do (do-sleep (pick-latency)) (.put ^java.util.Map applied "failStatus" fail-status) (track! ctx applied)
|
|
987
|
+
[(respond fail-status nil (vs/jm "statusText" "Simulated Failure")) nil])
|
|
988
|
+
(let [latency (pick-latency)]
|
|
989
|
+
(.put ^java.util.Map applied "latency" latency) (track! ctx applied)
|
|
990
|
+
(do-sleep latency)
|
|
991
|
+
(inner ctx url fetchdef)))))))]
|
|
992
|
+
(swap! fa assoc :calls 0 :seed 1)
|
|
993
|
+
(swap! fa assoc
|
|
994
|
+
"init" (fn [ctx options]
|
|
995
|
+
(let [seed0 (long (or (mget options "seed") 0))]
|
|
996
|
+
(swap! fa assoc :client (core/oget ctx :client)
|
|
997
|
+
:options (if (vs/ismap options) options (vs/jm)) :active (opts-active? options)
|
|
998
|
+
:seed (if (= 0 seed0) 1 seed0) :calls 0))
|
|
999
|
+
(when (active? fa)
|
|
1000
|
+
(wrap-fetcher! ctx (fn [fctx url fd inner] (simulate fctx url fd inner))))))
|
|
1001
|
+
fa))
|
|
1002
|
+
|
|
1003
|
+
;; ---------------------------------------------------------------------------
|
|
1004
|
+
;; Factory
|
|
1005
|
+
;; ---------------------------------------------------------------------------
|
|
1006
|
+
|
|
1007
|
+
(defn make-feature [name]
|
|
1008
|
+
(case name
|
|
1009
|
+
"base" (base-feature)
|
|
1010
|
+
"log" (log-feature)
|
|
1011
|
+
"test" (test-feature)
|
|
1012
|
+
"retry" (retry-feature)
|
|
1013
|
+
"timeout" (timeout-feature)
|
|
1014
|
+
"ratelimit" (ratelimit-feature)
|
|
1015
|
+
"cache" (cache-feature)
|
|
1016
|
+
"idempotency" (idempotency-feature)
|
|
1017
|
+
"paging" (paging-feature)
|
|
1018
|
+
"streaming" (streaming-feature)
|
|
1019
|
+
"proxy" (proxy-feature)
|
|
1020
|
+
"telemetry" (telemetry-feature)
|
|
1021
|
+
"metrics" (metrics-feature)
|
|
1022
|
+
"debug" (debug-feature)
|
|
1023
|
+
"audit" (audit-feature)
|
|
1024
|
+
"clienttrack" (clienttrack-feature)
|
|
1025
|
+
"rbac" (rbac-feature)
|
|
1026
|
+
"netsim" (netsim-feature)
|
|
1027
|
+
(base-feature)))
|