Browse Source
Merge pull request #17976 from abpframework/auto-merge/rel-7-4/2249
Merge branch dev with rel-7.4
pull/17978/head
Masum ULU
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
2 deletions
-
npm/ng-packs/packages/core/src/lib/models/dtos.ts
-
npm/ng-packs/packages/core/src/lib/utils/file-utils.ts
|
|
|
@ -136,7 +136,7 @@ export class AuditedEntityDto<TPrimaryKey = string> extends CreationAuditedEntit |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** @deprecated the class signature will change in v8.0 */ |
|
|
|
export class AuditedEntityWithUserDto< |
|
|
|
TPrimaryKey = string, |
|
|
|
TUserDto = any, |
|
|
|
@ -158,7 +158,7 @@ export class FullAuditedEntityDto<TPrimaryKey = string> extends AuditedEntityDto |
|
|
|
super(initialValues); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** @deprecated the class signature will change in v8.0 */ |
|
|
|
export class FullAuditedEntityWithUserDto< |
|
|
|
TPrimaryKey = string, |
|
|
|
TUserDto = any |
|
|
|
|
|
|
|
@ -1,3 +1,4 @@ |
|
|
|
/** @deprecated the method will change in v8.0 */ |
|
|
|
export function downloadBlob(blob: Blob, filename: string) { |
|
|
|
const blobUrl = URL.createObjectURL(blob); |
|
|
|
|
|
|
|
|