rez_core 5.0.126 → 5.0.128

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "5.0.126",
3
+ "version": "5.0.128",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -42,11 +42,11 @@ export class FieldMapper extends BaseEntity {
42
42
 
43
43
  @Column({
44
44
  name: 'is_lov_present',
45
- type: 'int',
45
+ type: 'boolean',
46
46
  nullable: true,
47
- default: 0,
47
+ default: false,
48
48
  })
49
- is_lov_present: number;
49
+ is_lov_present: boolean;
50
50
 
51
51
  @Column({ name: 'seq', type: 'int', nullable: true })
52
52
  seq: number;
@@ -154,6 +154,7 @@ export class MediaDataService extends EntityServiceImpl {
154
154
  Bucket: this.bucketName,
155
155
  Key: mediaData.media_url,
156
156
  Expires: Number(expiresIn) || 60 * 5,
157
+ ResponseContentDisposition: 'inline'
157
158
  });
158
159
  return {
159
160
  signedUrl,