expo-backend-types 0.59.0-EXPO-405-EB-Rutas-necesarias.6 → 0.59.0-EXPO-405-EB-Rutas-necesarias.8
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/src/role/exports.js
CHANGED
@@ -14,6 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./dto/allocate-participant-role.dto"), exports);
|
18
|
+
__exportStar(require("./dto/allocate-production-role.dto"), exports);
|
17
19
|
__exportStar(require("./dto/create-role.dto"), exports);
|
18
20
|
__exportStar(require("./dto/delete-role.dto"), exports);
|
19
21
|
__exportStar(require("./dto/find-all-role.dto"), exports);
|
package/dist/types/schema.d.ts
CHANGED
@@ -4598,6 +4598,12 @@ export interface components {
|
|
4598
4598
|
created_at: string;
|
4599
4599
|
updated_at: string;
|
4600
4600
|
};
|
4601
|
+
AllocateParticipantRoleDto: {
|
4602
|
+
roleIds: {
|
4603
|
+
id: string;
|
4604
|
+
}[];
|
4605
|
+
profileId: string;
|
4606
|
+
};
|
4601
4607
|
AllocateParticipantRoleResponseDto: {
|
4602
4608
|
id: string;
|
4603
4609
|
shortId: number;
|
@@ -8399,7 +8405,11 @@ export interface operations {
|
|
8399
8405
|
path?: never;
|
8400
8406
|
cookie?: never;
|
8401
8407
|
};
|
8402
|
-
requestBody
|
8408
|
+
requestBody: {
|
8409
|
+
content: {
|
8410
|
+
"application/json": components["schemas"]["AllocateParticipantRoleDto"];
|
8411
|
+
};
|
8412
|
+
};
|
8403
8413
|
responses: {
|
8404
8414
|
200: {
|
8405
8415
|
headers: {
|