@rivascva/dt-idl 1.1.148 → 1.1.150

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.ts CHANGED
@@ -1731,7 +1731,15 @@ interface operations$1 {
1731
1731
  };
1732
1732
  };
1733
1733
  responses: {
1734
- 204: components$1["responses"]["NoContent"];
1734
+ /** @description Success */
1735
+ 200: {
1736
+ headers: {
1737
+ [name: string]: unknown;
1738
+ };
1739
+ content: {
1740
+ "application/json": components$1["schemas"]["User"];
1741
+ };
1742
+ };
1735
1743
  400: components$1["responses"]["BadRequest"];
1736
1744
  500: components$1["responses"]["InternalServerError"];
1737
1745
  };
@@ -1752,6 +1760,7 @@ interface operations$1 {
1752
1760
  responses: {
1753
1761
  204: components$1["responses"]["NoContent"];
1754
1762
  400: components$1["responses"]["BadRequest"];
1763
+ 404: components$1["responses"]["NotFound"];
1755
1764
  500: components$1["responses"]["InternalServerError"];
1756
1765
  };
1757
1766
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.148",
3
+ "version": "1.1.150",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -223,8 +223,12 @@ paths:
223
223
  schema:
224
224
  $ref: '#/components/schemas/UpdateUserDevicePayload'
225
225
  responses:
226
- 204:
227
- $ref: '#/components/responses/NoContent'
226
+ 200:
227
+ description: Success
228
+ content:
229
+ application/json:
230
+ schema:
231
+ $ref: '#/components/schemas/User'
228
232
  400:
229
233
  $ref: '#/components/responses/BadRequest'
230
234
  500:
@@ -248,6 +252,8 @@ paths:
248
252
  $ref: '#/components/responses/NoContent'
249
253
  400:
250
254
  $ref: '#/components/responses/BadRequest'
255
+ 404:
256
+ $ref: '#/components/responses/NotFound'
251
257
  500:
252
258
  $ref: '#/components/responses/InternalServerError'
253
259
 
@@ -531,7 +531,15 @@ export interface operations {
531
531
  };
532
532
  };
533
533
  responses: {
534
- 204: components["responses"]["NoContent"];
534
+ /** @description Success */
535
+ 200: {
536
+ headers: {
537
+ [name: string]: unknown;
538
+ };
539
+ content: {
540
+ "application/json": components["schemas"]["User"];
541
+ };
542
+ };
535
543
  400: components["responses"]["BadRequest"];
536
544
  500: components["responses"]["InternalServerError"];
537
545
  };
@@ -552,6 +560,7 @@ export interface operations {
552
560
  responses: {
553
561
  204: components["responses"]["NoContent"];
554
562
  400: components["responses"]["BadRequest"];
563
+ 404: components["responses"]["NotFound"];
555
564
  500: components["responses"]["InternalServerError"];
556
565
  };
557
566
  };