@nestia/fetcher 3.11.0-dev.20240813-11 → 3.11.0-dev.20240814

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,4 +1,3 @@
1
- import { Primitive } from "./Primitive";
2
1
  /**
3
2
  * Propagation type.
4
3
  *
@@ -58,7 +57,7 @@ export declare namespace IPropagation {
58
57
  export interface IBranch<Success extends boolean, StatusValue, BodyData> {
59
58
  success: Success;
60
59
  status: StatusValue extends "2XX" | "3XX" | "4XX" | "5XX" ? StatusRange<StatusValue> : StatusValue extends number ? StatusValue : never;
61
- data: Primitive<BodyData>;
60
+ data: BodyData;
62
61
  headers: Record<string, string | string[]>;
63
62
  }
64
63
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestia/fetcher",
3
- "version": "3.11.0-dev.20240813-11",
3
+ "version": "3.11.0-dev.20240814",
4
4
  "description": "Fetcher library of Nestia SDK",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -43,6 +43,6 @@
43
43
  "src"
44
44
  ],
45
45
  "dependencies": {
46
- "@samchon/openapi": "^0.4.4"
46
+ "@samchon/openapi": "^0.4.5"
47
47
  }
48
48
  }
@@ -1,5 +1,3 @@
1
- import { Primitive } from "./Primitive";
2
-
3
1
  /**
4
2
  * Propagation type.
5
3
  *
@@ -73,7 +71,7 @@ export namespace IPropagation {
73
71
  : StatusValue extends number
74
72
  ? StatusValue
75
73
  : never;
76
- data: Primitive<BodyData>;
74
+ data: BodyData;
77
75
  headers: Record<string, string | string[]>;
78
76
  }
79
77