@thymian/core-testing 0.1.1 → 0.1.2-canary.20260408-c479a4a
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 +45 -3
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
|
+
<!-- HEADER:START - Do not remove or modify this section -->
|
|
2
|
+
<div align="center">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/thymianofficial/thymian/main/astro-docs/src/assets/logo.svg" alt="Thymian Logo" width="200"/>
|
|
4
|
+
|
|
1
5
|
# Thymian
|
|
2
6
|
|
|
3
|
-
Add resilience and HTTP conformance to your API development workflow
|
|
7
|
+
**Add resilience and HTTP conformance to your API development workflow**
|
|
8
|
+
|
|
9
|
+
[](https://github.com/thymianofficial/thymian/blob/main/LICENSE)
|
|
10
|
+
[](https://github.com/thymianofficial/thymian/actions/workflows/ci.yaml)
|
|
11
|
+
[](https://thymian.dev)
|
|
12
|
+
[](https://discord.gg/TRSwCxbz9f)
|
|
13
|
+
[](https://www.reddit.com/r/ThymianOfficial/)
|
|
14
|
+
[](https://x.com/thymiandev)
|
|
15
|
+
|
|
16
|
+
</div>
|
|
17
|
+
<!-- HEADER:END -->
|
|
4
18
|
|
|
5
19
|
## @thymian/core-testing
|
|
6
20
|
|
|
@@ -280,6 +294,34 @@ describe('transformFormat', () => {
|
|
|
280
294
|
});
|
|
281
295
|
```
|
|
282
296
|
|
|
283
|
-
|
|
297
|
+
> **Getting started with Thymian?** See the [main Thymian package](https://www.npmjs.com/package/thymian) for quick installation and first-run instructions.
|
|
298
|
+
|
|
299
|
+
<!-- FOOTER:START - Do not remove or modify this section -->
|
|
300
|
+
|
|
301
|
+
## 📚 Documentation
|
|
302
|
+
|
|
303
|
+
- **[Getting Started](https://thymian.dev/introduction/getting-started)** - Set up Thymian in minutes
|
|
304
|
+
- **[Documentation](https://thymian.dev)** - Comprehensive guides and API reference
|
|
305
|
+
- **[CLI Reference](https://thymian.dev/references/cli)** - Complete CLI command documentation
|
|
306
|
+
- **[HTTP Rules](https://thymian.dev/guides/http-rules/how-to-use-rules)** - Learn about HTTP conformance validation
|
|
307
|
+
|
|
308
|
+
## 🏢 Enterprise Support
|
|
309
|
+
|
|
310
|
+
Get professional consulting and dedicated support from the creators of Thymian. We offer:
|
|
311
|
+
|
|
312
|
+
- API design and governance strategies
|
|
313
|
+
- HTTP standards compliance auditing
|
|
314
|
+
- Custom plugin development
|
|
315
|
+
- Custom rule development
|
|
316
|
+
- Team training and workshops
|
|
317
|
+
|
|
318
|
+
**[Learn more about Enterprise Support](https://thymian.dev/enterprise)** | **Email: [support@thymian.dev](mailto:support@thymian.dev)**
|
|
319
|
+
|
|
320
|
+
---
|
|
321
|
+
|
|
322
|
+
<div align="center">
|
|
323
|
+
|
|
324
|
+
**Shipped with 🌱 by [qupaya](https://qupaya.com)**
|
|
284
325
|
|
|
285
|
-
|
|
326
|
+
</div>
|
|
327
|
+
<!-- FOOTER:END -->
|
package/package.json
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thymian/core-testing",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2-canary.20260408-c479a4a",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
|
+
"bugs": {
|
|
6
|
+
"url": "https://github.com/thymianofficial/thymian/issues"
|
|
7
|
+
},
|
|
8
|
+
"homepage": "https://thymian.dev",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/thymianofficial/thymian.git",
|
|
12
|
+
"directory": "packages/core-testing"
|
|
13
|
+
},
|
|
5
14
|
"publishConfig": {
|
|
6
15
|
"access": "public"
|
|
7
16
|
},
|
|
@@ -29,9 +38,9 @@
|
|
|
29
38
|
"tslib": "^2.3.0"
|
|
30
39
|
},
|
|
31
40
|
"devDependencies": {
|
|
32
|
-
"@thymian/core": "0.1.
|
|
41
|
+
"@thymian/core": "0.1.2-canary.20260408-c479a4a"
|
|
33
42
|
},
|
|
34
43
|
"peerDependencies": {
|
|
35
|
-
"@thymian/core": "0.1.
|
|
44
|
+
"@thymian/core": "0.1.2-canary.20260408-c479a4a"
|
|
36
45
|
}
|
|
37
46
|
}
|