@orpc/openapi-client 0.0.0-next.b45a533 → 0.0.0-next.ba53a01
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.
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import { Segment } from '@orpc/shared';
|
|
2
2
|
|
|
3
|
-
type
|
|
4
|
-
declare class
|
|
5
|
-
serialize(data: unknown, segments?: Segment[], result?:
|
|
6
|
-
deserialize(serialized:
|
|
3
|
+
type StandardBracketNotationSerialized = [string, unknown][];
|
|
4
|
+
declare class StandardBracketNotationSerializer {
|
|
5
|
+
serialize(data: unknown, segments?: Segment[], result?: StandardBracketNotationSerialized): StandardBracketNotationSerialized;
|
|
6
|
+
deserialize(serialized: StandardBracketNotationSerialized): Record<string, unknown> | unknown[];
|
|
7
7
|
stringifyPath(segments: readonly Segment[]): string;
|
|
8
8
|
parsePath(path: string): string[];
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
type
|
|
12
|
-
declare class
|
|
11
|
+
type StandardOpenAPIJsonSerialized = [json: unknown, hasBlob: boolean];
|
|
12
|
+
declare class StandardOpenAPIJsonSerializer {
|
|
13
13
|
serialize(data: unknown, hasBlobRef?: {
|
|
14
14
|
value: boolean;
|
|
15
|
-
}):
|
|
15
|
+
}): StandardOpenAPIJsonSerialized;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
declare class
|
|
18
|
+
declare class StandardOpenAPISerializer {
|
|
19
19
|
#private;
|
|
20
20
|
private readonly jsonSerializer;
|
|
21
21
|
private readonly bracketNotation;
|
|
22
|
-
constructor(jsonSerializer
|
|
22
|
+
constructor(jsonSerializer: StandardOpenAPIJsonSerializer, bracketNotation: StandardBracketNotationSerializer);
|
|
23
23
|
serialize(data: unknown): unknown;
|
|
24
24
|
deserialize(data: unknown): unknown;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
export { type
|
|
27
|
+
export { type StandardBracketNotationSerialized, StandardBracketNotationSerializer, type StandardOpenAPIJsonSerialized, StandardOpenAPIJsonSerializer, StandardOpenAPISerializer };
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import { Segment } from '@orpc/shared';
|
|
2
2
|
|
|
3
|
-
type
|
|
4
|
-
declare class
|
|
5
|
-
serialize(data: unknown, segments?: Segment[], result?:
|
|
6
|
-
deserialize(serialized:
|
|
3
|
+
type StandardBracketNotationSerialized = [string, unknown][];
|
|
4
|
+
declare class StandardBracketNotationSerializer {
|
|
5
|
+
serialize(data: unknown, segments?: Segment[], result?: StandardBracketNotationSerialized): StandardBracketNotationSerialized;
|
|
6
|
+
deserialize(serialized: StandardBracketNotationSerialized): Record<string, unknown> | unknown[];
|
|
7
7
|
stringifyPath(segments: readonly Segment[]): string;
|
|
8
8
|
parsePath(path: string): string[];
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
type
|
|
12
|
-
declare class
|
|
11
|
+
type StandardOpenAPIJsonSerialized = [json: unknown, hasBlob: boolean];
|
|
12
|
+
declare class StandardOpenAPIJsonSerializer {
|
|
13
13
|
serialize(data: unknown, hasBlobRef?: {
|
|
14
14
|
value: boolean;
|
|
15
|
-
}):
|
|
15
|
+
}): StandardOpenAPIJsonSerialized;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
declare class
|
|
18
|
+
declare class StandardOpenAPISerializer {
|
|
19
19
|
#private;
|
|
20
20
|
private readonly jsonSerializer;
|
|
21
21
|
private readonly bracketNotation;
|
|
22
|
-
constructor(jsonSerializer
|
|
22
|
+
constructor(jsonSerializer: StandardOpenAPIJsonSerializer, bracketNotation: StandardBracketNotationSerializer);
|
|
23
23
|
serialize(data: unknown): unknown;
|
|
24
24
|
deserialize(data: unknown): unknown;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
export { type
|
|
27
|
+
export { type StandardBracketNotationSerialized, StandardBracketNotationSerializer, type StandardOpenAPIJsonSerialized, StandardOpenAPIJsonSerializer, StandardOpenAPISerializer };
|
|
@@ -2,7 +2,7 @@ import { isObject, isAsyncIteratorObject } from '@orpc/shared';
|
|
|
2
2
|
import { mapEventIterator, toORPCError, ORPCError } from '@orpc/client';
|
|
3
3
|
import { ErrorEvent } from '@orpc/standard-server';
|
|
4
4
|
|
|
5
|
-
class
|
|
5
|
+
class StandardBracketNotationSerializer {
|
|
6
6
|
serialize(data, segments = [], result = []) {
|
|
7
7
|
if (Array.isArray(data)) {
|
|
8
8
|
data.forEach((item, i) => {
|
|
@@ -121,7 +121,7 @@ function isValidArrayIndex(value) {
|
|
|
121
121
|
return /^0$|^[1-9]\d*$/.test(value);
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
class
|
|
124
|
+
class StandardOpenAPIJsonSerializer {
|
|
125
125
|
serialize(data, hasBlobRef = { value: false }) {
|
|
126
126
|
if (data instanceof Blob) {
|
|
127
127
|
hasBlobRef.value = true;
|
|
@@ -157,8 +157,8 @@ class OpenAPIJsonSerializer {
|
|
|
157
157
|
}
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
-
class
|
|
161
|
-
constructor(jsonSerializer
|
|
160
|
+
class StandardOpenAPISerializer {
|
|
161
|
+
constructor(jsonSerializer, bracketNotation) {
|
|
162
162
|
this.jsonSerializer = jsonSerializer;
|
|
163
163
|
this.bracketNotation = bracketNotation;
|
|
164
164
|
}
|
|
@@ -213,4 +213,4 @@ class OpenAPISerializer {
|
|
|
213
213
|
}
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
-
export {
|
|
216
|
+
export { StandardBracketNotationSerializer, StandardOpenAPIJsonSerializer, StandardOpenAPISerializer };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/openapi-client",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-next.
|
|
4
|
+
"version": "0.0.0-next.ba53a01",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
|
7
7
|
"repository": {
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"dist"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@orpc/
|
|
33
|
-
"@orpc/standard-server": "0.0.0-next.
|
|
34
|
-
"@orpc/
|
|
32
|
+
"@orpc/shared": "0.0.0-next.ba53a01",
|
|
33
|
+
"@orpc/standard-server": "0.0.0-next.ba53a01",
|
|
34
|
+
"@orpc/client": "0.0.0-next.ba53a01"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "unbuild",
|