@tmdjr/document-contracts 0.0.21 → 0.0.23

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.
@@ -287,7 +287,6 @@ export interface components {
287
287
  };
288
288
  CreateWorkshopPageDto: {
289
289
  workshopId: string;
290
- workshopGroupId: string;
291
290
  /** @default Page */
292
291
  name: string;
293
292
  /** @default 0 */
@@ -307,7 +306,7 @@ export interface components {
307
306
  EditPageNameUpdateWorkshopDto: {
308
307
  _id: string;
309
308
  name: string;
310
- workshopGroupId: string;
309
+ workshopId: string;
311
310
  };
312
311
  WorkshopDto: {
313
312
  _id: string;
@@ -1,6 +1,5 @@
1
1
  export type CreateWorkshopPageDto = {
2
2
  workshopId: string;
3
- workshopGroupId: string;
4
3
  name?: string;
5
4
  sortId?: number;
6
5
  pageType?: string;
@@ -1,5 +1,5 @@
1
1
  export type EditPageNameUpdateWorkshopDto = {
2
2
  _id: string;
3
3
  name: string;
4
- workshopGroupId: string;
4
+ workshopId: string;
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmdjr/document-contracts",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "description": "Types & runtime enums generated from NGX document spec",
5
5
  "license": "MIT",
6
6
  "private": false,