@nrafinia/csmesh 0.8.2 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,14 +23,14 @@ Built for AI coding agents and developers who are tired of multi-turn "file-hopp
|
|
|
23
23
|
```bash
|
|
24
24
|
$ csmesh trace PaymentController.Post --budget 600
|
|
25
25
|
|
|
26
|
-
PaymentController.Post {http:POST /charge} Api/PaymentController.cs:14
|
|
27
|
-
-> CreatePaymentCommandHandler.Handle [mediatr via Send(CreatePaymentCommand)] App/CreatePaymentCommand.cs:18
|
|
26
|
+
PaymentController.Post {http:POST /charge} Api/PaymentController.cs:14-26
|
|
27
|
+
-> CreatePaymentCommandHandler.Handle [mediatr via Send(CreatePaymentCommand)] App/CreatePaymentCommand.cs:18-31
|
|
28
28
|
-> IPaymentGateway.Authorize Infra/Repositories.cs:11
|
|
29
|
-
-> StripeGateway.Authorize [impl, di-bound] Infra/Repositories.cs:29
|
|
29
|
+
-> StripeGateway.Authorize [impl, di-bound] Infra/Repositories.cs:29-33
|
|
30
30
|
-> IPaymentRepository.Add Infra/Repositories.cs:7
|
|
31
|
-
-> PaymentRepository.Add [impl, di-bound] Infra/Repositories.cs:17
|
|
32
|
-
-> AppDbContext.SavePayment Infra/Repositories.cs:
|
|
33
|
-
-> InMemoryPaymentRepository.Add [impl] Infra/Repositories.cs:
|
|
31
|
+
-> PaymentRepository.Add [impl, di-bound] Infra/Repositories.cs:17-22
|
|
32
|
+
-> AppDbContext.SavePayment Infra/Repositories.cs:35-40
|
|
33
|
+
-> InMemoryPaymentRepository.Add [impl] Infra/Repositories.cs:24-27
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
|
|
@@ -209,8 +209,8 @@ Anything below the threshold prints its score and origin inline rather than blen
|
|
|
209
209
|
```text
|
|
210
210
|
$ csmesh impl IStore --budget 300
|
|
211
211
|
IStore -- 2 implementation(s)
|
|
212
|
-
SqlStore [di:scoped, ?0.75 assembly-scan] src/Data/SqlStore.cs:12 @ src/Api/Startup.cs:41
|
|
213
|
-
InMemoryStore [test] tests/Fakes/InMemoryStore.cs:8
|
|
212
|
+
SqlStore [di:scoped, ?0.75 assembly-scan] src/Data/SqlStore.cs:12-40 @ src/Api/Startup.cs:41
|
|
213
|
+
InMemoryStore [test] tests/Fakes/InMemoryStore.cs:8-20
|
|
214
214
|
```
|
|
215
215
|
|
|
216
216
|
And what csmesh could not resolve is an answer too, not a silence:
|
package/package.json
CHANGED