@tomgiee/tsdp 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +0 -39
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -83,42 +83,3 @@ const result = validateSdp(session, {
83
83
  skipSemanticValidation: false,
84
84
  });
85
85
  ```
86
-
87
- ## API
88
-
89
- ### Core Functions
90
-
91
- - `parseSessionDescription(input: string)` - Parse SDP string to session object
92
- - `serializeSessionDescription(session)` - Serialize session object to SDP string
93
- - `validateSdp(session, options?)` - Validate session with optional configuration
94
-
95
- ### Builders
96
-
97
- - `SessionBuilder` - Fluent builder for session descriptions
98
- - `MediaBuilder` - Fluent builder for media descriptions
99
- - `audioBuilder()` - Pre-configured audio media builder
100
- - `videoBuilder()` - Pre-configured video media builder
101
-
102
- ### Types
103
-
104
- - `SessionDescription` - Complete SDP session
105
- - `MediaDescription` - Media stream description
106
- - `Attribute` - SDP attribute (property or value)
107
- - `ValidationResult` - Validation result with errors
108
-
109
- ## Development
110
-
111
- ```bash
112
- # Install dependencies
113
- pnpm install
114
-
115
- # Run tests
116
- pnpm test
117
-
118
- # Build
119
- pnpm build
120
- ```
121
-
122
- ## License
123
-
124
- MIT
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "@tomgiee/tsdp",
4
- "version": "1.0.1",
4
+ "version": "1.0.2",
5
5
  "description": "RFC 8866-compliant SDP parser, serializer, and validator for TypeScript",
6
6
  "author": "Thomas Giesler <tgiesler@brassnode.net>",
7
7
  "license": "MIT",