@tmdjr/document-contracts 0.0.16 → 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
|
@@ -318,6 +318,11 @@ export interface components {
|
|
|
318
318
|
page: components["schemas"]["WorkshopPageDto"];
|
|
319
319
|
workshopId: string;
|
|
320
320
|
};
|
|
321
|
+
EditPageNameUpdateWorkshopDto: {
|
|
322
|
+
_id: string;
|
|
323
|
+
name: string;
|
|
324
|
+
workshopGroupId: string;
|
|
325
|
+
};
|
|
321
326
|
WorkshopDto: {
|
|
322
327
|
_id: string;
|
|
323
328
|
workshopDocumentGroupId: string;
|
|
@@ -524,7 +529,7 @@ export interface operations {
|
|
|
524
529
|
};
|
|
525
530
|
requestBody: {
|
|
526
531
|
content: {
|
|
527
|
-
"application/json": components["schemas"]["
|
|
532
|
+
"application/json": components["schemas"]["EditPageNameUpdateWorkshopDto"];
|
|
528
533
|
};
|
|
529
534
|
};
|
|
530
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 {};
|