@equisoft/equisoft-connect-sdk-typescript 13.39.0 → 13.40.0

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.
@@ -39,6 +39,12 @@ export interface MovementOptions {
39
39
  * @memberof MovementOptions
40
40
  */
41
41
  copyAllVD?: boolean;
42
+ /**
43
+ * Copy data from ContactPersonalizedFields module. The module must be installed in both databases.
44
+ * @type {boolean}
45
+ * @memberof MovementOptions
46
+ */
47
+ copyContactPersonalizedFields?: boolean;
42
48
  /**
43
49
  * Propagate data before movement.
44
50
  * @type {boolean}
@@ -29,6 +29,7 @@ export function MovementOptionsFromJSONTyped(json, ignoreDiscriminator) {
29
29
  'copyAllProduct': json['copyAllProduct'] == null ? undefined : json['copyAllProduct'],
30
30
  'copyAllReport': json['copyAllReport'] == null ? undefined : json['copyAllReport'],
31
31
  'copyAllVD': json['copyAllVD'] == null ? undefined : json['copyAllVD'],
32
+ 'copyContactPersonalizedFields': json['copyContactPersonalizedFields'] == null ? undefined : json['copyContactPersonalizedFields'],
32
33
  'propagate': json['propagate'] == null ? undefined : json['propagate'],
33
34
  'ignoreAction': json['ignoreAction'] == null ? undefined : json['ignoreAction'],
34
35
  'ignoreCommission': json['ignoreCommission'] == null ? undefined : json['ignoreCommission'],
@@ -49,6 +50,7 @@ export function MovementOptionsToJSONTyped(value, ignoreDiscriminator = false) {
49
50
  'copyAllProduct': value['copyAllProduct'],
50
51
  'copyAllReport': value['copyAllReport'],
51
52
  'copyAllVD': value['copyAllVD'],
53
+ 'copyContactPersonalizedFields': value['copyContactPersonalizedFields'],
52
54
  'propagate': value['propagate'],
53
55
  'ignoreAction': value['ignoreAction'],
54
56
  'ignoreCommission': value['ignoreCommission'],
@@ -39,6 +39,12 @@ export interface MovementOptions {
39
39
  * @memberof MovementOptions
40
40
  */
41
41
  copyAllVD?: boolean;
42
+ /**
43
+ * Copy data from ContactPersonalizedFields module. The module must be installed in both databases.
44
+ * @type {boolean}
45
+ * @memberof MovementOptions
46
+ */
47
+ copyContactPersonalizedFields?: boolean;
42
48
  /**
43
49
  * Propagate data before movement.
44
50
  * @type {boolean}
@@ -36,6 +36,7 @@ function MovementOptionsFromJSONTyped(json, ignoreDiscriminator) {
36
36
  'copyAllProduct': json['copyAllProduct'] == null ? undefined : json['copyAllProduct'],
37
37
  'copyAllReport': json['copyAllReport'] == null ? undefined : json['copyAllReport'],
38
38
  'copyAllVD': json['copyAllVD'] == null ? undefined : json['copyAllVD'],
39
+ 'copyContactPersonalizedFields': json['copyContactPersonalizedFields'] == null ? undefined : json['copyContactPersonalizedFields'],
39
40
  'propagate': json['propagate'] == null ? undefined : json['propagate'],
40
41
  'ignoreAction': json['ignoreAction'] == null ? undefined : json['ignoreAction'],
41
42
  'ignoreCommission': json['ignoreCommission'] == null ? undefined : json['ignoreCommission'],
@@ -56,6 +57,7 @@ function MovementOptionsToJSONTyped(value, ignoreDiscriminator = false) {
56
57
  'copyAllProduct': value['copyAllProduct'],
57
58
  'copyAllReport': value['copyAllReport'],
58
59
  'copyAllVD': value['copyAllVD'],
60
+ 'copyContactPersonalizedFields': value['copyContactPersonalizedFields'],
59
61
  'propagate': value['propagate'],
60
62
  'ignoreAction': value['ignoreAction'],
61
63
  'ignoreCommission': value['ignoreCommission'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/equisoft-connect-sdk-typescript",
3
- "version": "13.39.0",
3
+ "version": "13.40.0",
4
4
  "description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -43,6 +43,12 @@ export interface MovementOptions {
43
43
  * @memberof MovementOptions
44
44
  */
45
45
  copyAllVD?: boolean;
46
+ /**
47
+ * Copy data from ContactPersonalizedFields module. The module must be installed in both databases.
48
+ * @type {boolean}
49
+ * @memberof MovementOptions
50
+ */
51
+ copyContactPersonalizedFields?: boolean;
46
52
  /**
47
53
  * Propagate data before movement.
48
54
  * @type {boolean}
@@ -102,6 +108,7 @@ export function MovementOptionsFromJSONTyped(json: any, ignoreDiscriminator: boo
102
108
  'copyAllProduct': json['copyAllProduct'] == null ? undefined : json['copyAllProduct'],
103
109
  'copyAllReport': json['copyAllReport'] == null ? undefined : json['copyAllReport'],
104
110
  'copyAllVD': json['copyAllVD'] == null ? undefined : json['copyAllVD'],
111
+ 'copyContactPersonalizedFields': json['copyContactPersonalizedFields'] == null ? undefined : json['copyContactPersonalizedFields'],
105
112
  'propagate': json['propagate'] == null ? undefined : json['propagate'],
106
113
  'ignoreAction': json['ignoreAction'] == null ? undefined : json['ignoreAction'],
107
114
  'ignoreCommission': json['ignoreCommission'] == null ? undefined : json['ignoreCommission'],
@@ -126,6 +133,7 @@ export function MovementOptionsToJSONTyped(value?: MovementOptions | null, ignor
126
133
  'copyAllProduct': value['copyAllProduct'],
127
134
  'copyAllReport': value['copyAllReport'],
128
135
  'copyAllVD': value['copyAllVD'],
136
+ 'copyContactPersonalizedFields': value['copyContactPersonalizedFields'],
129
137
  'propagate': value['propagate'],
130
138
  'ignoreAction': value['ignoreAction'],
131
139
  'ignoreCommission': value['ignoreCommission'],