expo-backend-types 0.5.0-EXPO-283-EB-Respuesta-Enlatada.5 → 0.5.0-EXPO-283-EB-Respuesta-Enlatada.6
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/types/schema.d.ts +6 -2
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -1302,7 +1302,9 @@ export interface operations {
|
|
1302
1302
|
parameters: {
|
1303
1303
|
query?: never;
|
1304
1304
|
header?: never;
|
1305
|
-
path
|
1305
|
+
path: {
|
1306
|
+
id: string;
|
1307
|
+
};
|
1306
1308
|
cookie?: never;
|
1307
1309
|
};
|
1308
1310
|
requestBody?: never;
|
@@ -1329,7 +1331,9 @@ export interface operations {
|
|
1329
1331
|
parameters: {
|
1330
1332
|
query?: never;
|
1331
1333
|
header?: never;
|
1332
|
-
path
|
1334
|
+
path: {
|
1335
|
+
id: string;
|
1336
|
+
};
|
1333
1337
|
cookie?: never;
|
1334
1338
|
};
|
1335
1339
|
requestBody?: never;
|