rez_core 4.0.126 → 4.0.127
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/module/integration/entity/integration-config.entity.js +3 -3
- package/dist/module/integration/entity/integration-config.entity.js.map +1 -1
- package/dist/module/integration/entity/integration-entity-mapper.entity.js +1 -1
- package/dist/module/integration/entity/integration-entity-mapper.entity.js.map +1 -1
- package/dist/module/integration/entity/integration-source.entity.js +4 -4
- package/dist/module/integration/entity/integration-source.entity.js.map +1 -1
- package/dist/module/integration/entity/user-integration.entity.js +2 -2
- package/dist/module/integration/entity/user-integration.entity.js.map +1 -1
- package/dist/module/listmaster/entity/list-master-items.entity.js +3 -3
- package/dist/module/listmaster/entity/list-master-items.entity.js.map +1 -1
- package/dist/module/mapper/entity/field-mapper.entity.js +5 -5
- package/dist/module/mapper/entity/field-mapper.entity.js.map +1 -1
- package/dist/module/meta/entity/view-master.entity.js +1 -1
- package/dist/module/meta/entity/view-master.entity.js.map +1 -1
- package/dist/module/notification/entity/otp.entity.js +1 -1
- package/dist/module/notification/entity/otp.entity.js.map +1 -1
- package/dist/module/workflow/entity/action-data.entity.js +1 -1
- package/dist/module/workflow/entity/action-data.entity.js.map +1 -1
- package/dist/module/workflow/entity/action.entity.js +1 -1
- package/dist/module/workflow/entity/action.entity.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/integration/entity/integration-config.entity.ts +3 -3
- package/src/module/integration/entity/integration-entity-mapper.entity.ts +1 -1
- package/src/module/integration/entity/integration-source.entity.ts +4 -4
- package/src/module/integration/entity/user-integration.entity.ts +2 -2
- package/src/module/listmaster/entity/list-master-items.entity.ts +3 -3
- package/src/module/mapper/entity/field-mapper.entity.ts +5 -5
- package/src/module/meta/entity/view-master.entity.ts +1 -1
- package/src/module/notification/entity/otp.entity.ts +1 -1
- package/src/module/workflow/entity/action-data.entity.ts +1 -1
- package/src/module/workflow/entity/action.entity.ts +1 -1
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@ export class IntegrationConfig {
|
|
|
20
20
|
@Column({ name: 'integration_provider', type: 'varchar', length: 100 })
|
|
21
21
|
integration_provider: string;
|
|
22
22
|
|
|
23
|
-
@Column({ name: 'integration_source_id', type: 'int' })
|
|
23
|
+
@Column({ name: 'integration_source_id', type: 'int', nullable: true })
|
|
24
24
|
integration_source_id: number;
|
|
25
25
|
|
|
26
26
|
@Column({ name: 'level_id', type: 'int' })
|
|
@@ -35,10 +35,10 @@ export class IntegrationConfig {
|
|
|
35
35
|
@Column({ name: 'priority', type: 'int', default: 1 })
|
|
36
36
|
priority: number;
|
|
37
37
|
|
|
38
|
-
@Column({ name: 'is_default', type: 'boolean', default: false })
|
|
38
|
+
@Column({ name: 'is_default', type: 'boolean', default: false, nullable: true })
|
|
39
39
|
is_default: boolean;
|
|
40
40
|
|
|
41
|
-
@Column({ name: 'config_json', type: 'json' })
|
|
41
|
+
@Column({ name: 'config_json', type: 'json', nullable: true })
|
|
42
42
|
config_json: {
|
|
43
43
|
// Gmail Config
|
|
44
44
|
clientId?: string;
|
|
@@ -6,7 +6,7 @@ export class IntegrationEntityMapper extends BaseEntity {
|
|
|
6
6
|
@Column({ name: 'integration_config_id', type: 'bigint', nullable: true })
|
|
7
7
|
integration_config_id: number;
|
|
8
8
|
|
|
9
|
-
@Column({ name: 'did', type: 'varchar', length: 100 })
|
|
9
|
+
@Column({ name: 'did', type: 'varchar', length: 100, nullable: true })
|
|
10
10
|
did: string;
|
|
11
11
|
|
|
12
12
|
@Column({ name: 'campaign_name', type: 'varchar', length: 100, nullable: true })
|
|
@@ -3,15 +3,15 @@ import { Column, Entity } from 'typeorm';
|
|
|
3
3
|
|
|
4
4
|
@Entity({ name: 'frm_integration_master' })
|
|
5
5
|
export class IntegrationSource extends BaseEntity {
|
|
6
|
-
@Column({ name: 'logo', type: 'varchar', length: 500 })
|
|
6
|
+
@Column({ name: 'logo', type: 'varchar', length: 500, nullable: true })
|
|
7
7
|
logo: string;
|
|
8
8
|
|
|
9
|
-
@Column({ name: 'base_url', type: 'varchar', length: 100 })
|
|
9
|
+
@Column({ name: 'base_url', type: 'varchar', length: 100, nullable: true })
|
|
10
10
|
base_url: string;
|
|
11
11
|
|
|
12
|
-
@Column({ name: 'integration_type', type: 'varchar', length: 20 })
|
|
12
|
+
@Column({ name: 'integration_type', type: 'varchar', length: 20, nullable: true })
|
|
13
13
|
integration_type: string;
|
|
14
14
|
|
|
15
|
-
@Column({ name: 'description', type: 'varchar', length: 500 })
|
|
15
|
+
@Column({ name: 'description', type: 'varchar', length: 500, nullable: true })
|
|
16
16
|
description: string;
|
|
17
17
|
}
|
|
@@ -51,10 +51,10 @@ export class UserIntegration {
|
|
|
51
51
|
[key: string]: any;
|
|
52
52
|
};
|
|
53
53
|
|
|
54
|
-
@Column({ name: 'status', type: 'int', default: 1 })
|
|
54
|
+
@Column({ name: 'status', type: 'int', default: 1, nullable: true })
|
|
55
55
|
status: number;
|
|
56
56
|
|
|
57
|
-
@Column({ name: 'is_active', type: 'boolean', default: true })
|
|
57
|
+
@Column({ name: 'is_active', type: 'boolean', default: true, nullable: true })
|
|
58
58
|
is_active: boolean;
|
|
59
59
|
|
|
60
60
|
@CreateDateColumn({
|
|
@@ -29,15 +29,15 @@ export class ListMasterItems extends BaseEntity {
|
|
|
29
29
|
@Column({ nullable: true })
|
|
30
30
|
status: string;
|
|
31
31
|
|
|
32
|
-
@Column({ default: 0 })
|
|
32
|
+
@Column({ default: 0, nullable: true })
|
|
33
33
|
isdefault: number;
|
|
34
34
|
|
|
35
35
|
@Column({ nullable: true })
|
|
36
36
|
description: string;
|
|
37
37
|
|
|
38
|
-
@Column({ default: 0 })
|
|
38
|
+
@Column({ default: 0, nullable: true })
|
|
39
39
|
sortindex: number;
|
|
40
40
|
|
|
41
|
-
@Column({ default: 0 })
|
|
41
|
+
@Column({ default: 0, nullable: true })
|
|
42
42
|
is_factory: number;
|
|
43
43
|
}
|
|
@@ -8,19 +8,19 @@ export class FieldMapper extends BaseEntity {
|
|
|
8
8
|
this.entity_type = 'FMAP';
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
@Column({ name: 'mapper_id', type: 'bigint' })
|
|
11
|
+
@Column({ name: 'mapper_id', type: 'bigint', nullable: true })
|
|
12
12
|
mapper_id: number;
|
|
13
13
|
|
|
14
|
-
@Column({ name: 'action', type: 'varchar', length: 30 })
|
|
14
|
+
@Column({ name: 'action', type: 'varchar', length: 30, nullable: true })
|
|
15
15
|
action: string;
|
|
16
16
|
|
|
17
|
-
@Column({ name: 'source_attribute', type: 'varchar', length: 30 })
|
|
17
|
+
@Column({ name: 'source_attribute', type: 'varchar', length: 30, nullable: true })
|
|
18
18
|
source_attribute: string;
|
|
19
19
|
|
|
20
|
-
@Column({ name: 'attribute_key', type: 'varchar', length: 30 })
|
|
20
|
+
@Column({ name: 'attribute_key', type: 'varchar', length: 30, nullable: true })
|
|
21
21
|
attribute_key: string;
|
|
22
22
|
|
|
23
|
-
@Column({ name: 'mapper_entity_type', type: 'varchar', length: 30 })
|
|
23
|
+
@Column({ name: 'mapper_entity_type', type: 'varchar', length: 30, nullable: true })
|
|
24
24
|
mapper_entity_type: string;
|
|
25
25
|
|
|
26
26
|
@Column({
|
|
@@ -20,7 +20,7 @@ export class Otp {
|
|
|
20
20
|
@Column({ name: 'created_date', nullable: true })
|
|
21
21
|
created_date: Date;
|
|
22
22
|
|
|
23
|
-
@Column({ name: 'expiration_date' })
|
|
23
|
+
@Column({ name: 'expiration_date' , nullable: true})
|
|
24
24
|
expiration_date: Date;
|
|
25
25
|
|
|
26
26
|
@Column({ name: 'verified', type: 'int', nullable: true })
|
|
@@ -27,7 +27,7 @@ export class ActionEntity extends BaseEntity {
|
|
|
27
27
|
@Column({ type: 'varchar', nullable: true })
|
|
28
28
|
default_reason_code: string;
|
|
29
29
|
|
|
30
|
-
@Column({ default: 0, type: 'boolean' })
|
|
30
|
+
@Column({ default: 0, type: 'boolean', nullable: true })
|
|
31
31
|
default_value: boolean;
|
|
32
32
|
|
|
33
33
|
@Column({ nullable: true })
|