@punks/backend-entity-manager 0.0.414 → 0.0.416
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/cjs/index.js +14 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/abstractions/serializer.d.ts +1 -1
- package/dist/cjs/types/platforms/nest/decorators/tasks.d.ts +1 -0
- package/dist/esm/index.js +14 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/abstractions/serializer.d.ts +1 -1
- package/dist/esm/types/platforms/nest/decorators/tasks.d.ts +1 -0
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -41,7 +41,7 @@ export type EntitySerializerColumnDefinition<TSheetItem> = {
|
|
|
41
41
|
idColumn?: boolean;
|
|
42
42
|
sheetParser?: EntitySerializerSheetCustomParser;
|
|
43
43
|
array?: boolean;
|
|
44
|
-
arraySeparator?: string;
|
|
44
|
+
arraySeparator?: string | RegExp;
|
|
45
45
|
};
|
|
46
46
|
export type EntitySerializerSheetOptions = {
|
|
47
47
|
name?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -189,7 +189,7 @@ type EntitySerializerColumnDefinition<TSheetItem> = {
|
|
|
189
189
|
idColumn?: boolean;
|
|
190
190
|
sheetParser?: EntitySerializerSheetCustomParser;
|
|
191
191
|
array?: boolean;
|
|
192
|
-
arraySeparator?: string;
|
|
192
|
+
arraySeparator?: string | RegExp;
|
|
193
193
|
};
|
|
194
194
|
type EntitySerializerSheetOptions = {
|
|
195
195
|
name?: string;
|
|
@@ -1641,6 +1641,7 @@ type TaskSettings = {
|
|
|
1641
1641
|
cronExpression?: string;
|
|
1642
1642
|
concurrency: TaskConcurrency;
|
|
1643
1643
|
description?: string;
|
|
1644
|
+
displayName?: string;
|
|
1644
1645
|
};
|
|
1645
1646
|
type TaskProps = TaskSettings & {
|
|
1646
1647
|
name: string;
|