@tmdjr/document-contracts 0.0.13 → 0.0.14
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
|
@@ -244,7 +244,7 @@ export interface components {
|
|
|
244
244
|
[key: string]: components["schemas"]["SectionDto"];
|
|
245
245
|
};
|
|
246
246
|
};
|
|
247
|
-
|
|
247
|
+
Workshop: Record<string, never>;
|
|
248
248
|
WorkshopDocumentIdentifierDto: {
|
|
249
249
|
/** @description Object id of the workshop-document. */
|
|
250
250
|
_id: string;
|
|
@@ -362,7 +362,7 @@ export interface operations {
|
|
|
362
362
|
[name: string]: unknown;
|
|
363
363
|
};
|
|
364
364
|
content: {
|
|
365
|
-
"application/json": components["schemas"]["
|
|
365
|
+
"application/json": components["schemas"]["Workshop"][];
|
|
366
366
|
};
|
|
367
367
|
};
|
|
368
368
|
};
|
|
@@ -385,7 +385,7 @@ export interface operations {
|
|
|
385
385
|
[name: string]: unknown;
|
|
386
386
|
};
|
|
387
387
|
content: {
|
|
388
|
-
"application/json": components["schemas"]["
|
|
388
|
+
"application/json": components["schemas"]["Workshop"];
|
|
389
389
|
};
|
|
390
390
|
};
|
|
391
391
|
};
|
|
@@ -408,7 +408,7 @@ export interface operations {
|
|
|
408
408
|
[name: string]: unknown;
|
|
409
409
|
};
|
|
410
410
|
content: {
|
|
411
|
-
"application/json": components["schemas"]["
|
|
411
|
+
"application/json": components["schemas"]["Workshop"];
|
|
412
412
|
};
|
|
413
413
|
};
|
|
414
414
|
};
|
|
@@ -450,7 +450,7 @@ export interface operations {
|
|
|
450
450
|
[name: string]: unknown;
|
|
451
451
|
};
|
|
452
452
|
content: {
|
|
453
|
-
"application/json": components["schemas"]["
|
|
453
|
+
"application/json": components["schemas"]["Workshop"][];
|
|
454
454
|
};
|
|
455
455
|
};
|
|
456
456
|
};
|
|
@@ -473,7 +473,7 @@ export interface operations {
|
|
|
473
473
|
[name: string]: unknown;
|
|
474
474
|
};
|
|
475
475
|
content: {
|
|
476
|
-
"application/json": components["schemas"]["
|
|
476
|
+
"application/json": components["schemas"]["Workshop"];
|
|
477
477
|
};
|
|
478
478
|
};
|
|
479
479
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export type { PageParamsDto } from './models/PageParamsDto';
|
|
|
4
4
|
export type { SectionDto } from './models/SectionDto';
|
|
5
5
|
export type { SectionsMapDto } from './models/SectionsMapDto';
|
|
6
6
|
export type { UpdateWorkshopDto } from './models/UpdateWorkshopDto';
|
|
7
|
-
export type {
|
|
7
|
+
export type { Workshop } from './models/Workshop';
|
|
8
8
|
export type { WorkshopDocumentDto } from './models/WorkshopDocumentDto';
|
|
9
9
|
export type { WorkshopDocumentIdentifierDto } from './models/WorkshopDocumentIdentifierDto';
|
|
10
10
|
export type { WorkshopDto } from './models/WorkshopDto';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Workshop = {};
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type WorkshopDoc = {};
|
|
File without changes
|