@extk/expressive 0.2.1 → 0.2.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.
package/dist/index.d.mts CHANGED
@@ -46,7 +46,7 @@ type Content = {
46
46
  type Param = {
47
47
  in: 'path' | 'query' | 'headers';
48
48
  name: string;
49
- desciption: string;
49
+ description: string;
50
50
  required: boolean;
51
51
  schema: Schema;
52
52
  };
package/dist/index.d.ts CHANGED
@@ -46,7 +46,7 @@ type Content = {
46
46
  type Param = {
47
47
  in: 'path' | 'query' | 'headers';
48
48
  name: string;
49
- desciption: string;
49
+ description: string;
50
50
  required: boolean;
51
51
  schema: Schema;
52
52
  };
package/dist/index.js CHANGED
@@ -154,7 +154,7 @@ function param(inP, id, schema, required = true, description = "", name) {
154
154
  return {
155
155
  in: inP,
156
156
  name: name ?? id,
157
- desciption: description,
157
+ description,
158
158
  required,
159
159
  schema
160
160
  };
package/dist/index.mjs CHANGED
@@ -89,7 +89,7 @@ function param(inP, id, schema, required = true, description = "", name) {
89
89
  return {
90
90
  in: inP,
91
91
  name: name ?? id,
92
- desciption: description,
92
+ description,
93
93
  required,
94
94
  schema
95
95
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extk/expressive",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"