@equisoft/equisoft-connect-sdk-typescript 13.52.0 → 13.52.1-snapshot.20260608125346
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/esm/models/MovementExecutedMovementInfoResponse.d.ts +2 -1
- package/dist/esm/models/MovementExecutedMovementInfoResponse.js +1 -0
- package/dist/models/MovementExecutedMovementInfoResponse.d.ts +2 -1
- package/dist/models/MovementExecutedMovementInfoResponse.js +1 -0
- package/package.json +1 -1
- package/src/models/MovementExecutedMovementInfoResponse.ts +2 -1
|
@@ -41,7 +41,7 @@ export interface MovementExecutedMovementInfoResponse {
|
|
|
41
41
|
*/
|
|
42
42
|
dstDbUuid?: string;
|
|
43
43
|
/**
|
|
44
|
-
* Type of movement (move, copy)
|
|
44
|
+
* Type of movement (move, copy, contacts)
|
|
45
45
|
* @type {MovementExecutedMovementInfoResponseMovementTypeEnum}
|
|
46
46
|
* @memberof MovementExecutedMovementInfoResponse
|
|
47
47
|
*/
|
|
@@ -59,6 +59,7 @@ export interface MovementExecutedMovementInfoResponse {
|
|
|
59
59
|
export declare const MovementExecutedMovementInfoResponseMovementTypeEnum: {
|
|
60
60
|
readonly move: "move";
|
|
61
61
|
readonly copy: "copy";
|
|
62
|
+
readonly contacts: "contacts";
|
|
62
63
|
readonly unknown_default_open_api: "11184809";
|
|
63
64
|
};
|
|
64
65
|
export type MovementExecutedMovementInfoResponseMovementTypeEnum = typeof MovementExecutedMovementInfoResponseMovementTypeEnum[keyof typeof MovementExecutedMovementInfoResponseMovementTypeEnum];
|
|
@@ -18,6 +18,7 @@ import { MovementUserMapFromJSON, MovementUserMapToJSON, } from './MovementUserM
|
|
|
18
18
|
export const MovementExecutedMovementInfoResponseMovementTypeEnum = {
|
|
19
19
|
move: 'move',
|
|
20
20
|
copy: 'copy',
|
|
21
|
+
contacts: 'contacts',
|
|
21
22
|
unknown_default_open_api: '11184809'
|
|
22
23
|
};
|
|
23
24
|
/**
|
|
@@ -41,7 +41,7 @@ export interface MovementExecutedMovementInfoResponse {
|
|
|
41
41
|
*/
|
|
42
42
|
dstDbUuid?: string;
|
|
43
43
|
/**
|
|
44
|
-
* Type of movement (move, copy)
|
|
44
|
+
* Type of movement (move, copy, contacts)
|
|
45
45
|
* @type {MovementExecutedMovementInfoResponseMovementTypeEnum}
|
|
46
46
|
* @memberof MovementExecutedMovementInfoResponse
|
|
47
47
|
*/
|
|
@@ -59,6 +59,7 @@ export interface MovementExecutedMovementInfoResponse {
|
|
|
59
59
|
export declare const MovementExecutedMovementInfoResponseMovementTypeEnum: {
|
|
60
60
|
readonly move: "move";
|
|
61
61
|
readonly copy: "copy";
|
|
62
|
+
readonly contacts: "contacts";
|
|
62
63
|
readonly unknown_default_open_api: "11184809";
|
|
63
64
|
};
|
|
64
65
|
export type MovementExecutedMovementInfoResponseMovementTypeEnum = typeof MovementExecutedMovementInfoResponseMovementTypeEnum[keyof typeof MovementExecutedMovementInfoResponseMovementTypeEnum];
|
package/package.json
CHANGED
|
@@ -52,7 +52,7 @@ export interface MovementExecutedMovementInfoResponse {
|
|
|
52
52
|
*/
|
|
53
53
|
dstDbUuid?: string;
|
|
54
54
|
/**
|
|
55
|
-
* Type of movement (move, copy)
|
|
55
|
+
* Type of movement (move, copy, contacts)
|
|
56
56
|
* @type {MovementExecutedMovementInfoResponseMovementTypeEnum}
|
|
57
57
|
* @memberof MovementExecutedMovementInfoResponse
|
|
58
58
|
*/
|
|
@@ -72,6 +72,7 @@ export interface MovementExecutedMovementInfoResponse {
|
|
|
72
72
|
export const MovementExecutedMovementInfoResponseMovementTypeEnum = {
|
|
73
73
|
move: 'move',
|
|
74
74
|
copy: 'copy',
|
|
75
|
+
contacts: 'contacts',
|
|
75
76
|
unknown_default_open_api: '11184809'
|
|
76
77
|
} as const;
|
|
77
78
|
export type MovementExecutedMovementInfoResponseMovementTypeEnum = typeof MovementExecutedMovementInfoResponseMovementTypeEnum[keyof typeof MovementExecutedMovementInfoResponseMovementTypeEnum];
|