@tmdjr/document-contracts 0.0.15 → 0.0.17
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/document.types.d.ts
CHANGED
|
@@ -286,6 +286,7 @@ export interface components {
|
|
|
286
286
|
deletedCount: number;
|
|
287
287
|
};
|
|
288
288
|
CreateWorkshopPageDto: {
|
|
289
|
+
workshopId: string;
|
|
289
290
|
workshopGroupId: string;
|
|
290
291
|
/** @default Page */
|
|
291
292
|
name: string;
|
|
@@ -317,6 +318,11 @@ export interface components {
|
|
|
317
318
|
page: components["schemas"]["WorkshopPageDto"];
|
|
318
319
|
workshopId: string;
|
|
319
320
|
};
|
|
321
|
+
EditPageNameUpdateWorkshopDto: {
|
|
322
|
+
_id: string;
|
|
323
|
+
name: string;
|
|
324
|
+
workshopGroupId: string;
|
|
325
|
+
};
|
|
320
326
|
WorkshopDto: {
|
|
321
327
|
_id: string;
|
|
322
328
|
workshopDocumentGroupId: string;
|
|
@@ -523,7 +529,7 @@ export interface operations {
|
|
|
523
529
|
};
|
|
524
530
|
requestBody: {
|
|
525
531
|
content: {
|
|
526
|
-
"application/json": components["schemas"]["
|
|
532
|
+
"application/json": components["schemas"]["EditPageNameUpdateWorkshopDto"];
|
|
527
533
|
};
|
|
528
534
|
};
|
|
529
535
|
responses: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type { CreateWorkshopDto } from './models/CreateWorkshopDto';
|
|
2
2
|
export type { CreateWorkshopPageDto } from './models/CreateWorkshopPageDto';
|
|
3
3
|
export type { DeleteResultDto } from './models/DeleteResultDto';
|
|
4
|
+
export type { EditPageNameUpdateWorkshopDto } from './models/EditPageNameUpdateWorkshopDto';
|
|
4
5
|
export type { PageParamsDto } from './models/PageParamsDto';
|
|
5
6
|
export type { SectionDto } from './models/SectionDto';
|
|
6
7
|
export type { SectionsMapDto } from './models/SectionsMapDto';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|