@trakit/commands 0.0.20 → 0.0.22

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.
@@ -0,0 +1,17 @@
1
+ import { JsonObject } from "@trakit/objects";
2
+ import { IPayDeletable } from "../../../API/Requests/IPayDeletable";
3
+ import { Reply } from "../../../API/Responses/Reply";
4
+ import { PayUser } from "./PayUser";
5
+ /**
6
+ * Gets details of the specified {@link UserAuthentication}.
7
+ */
8
+ export declare class PayUserAuthenticationGet extends PayUser implements IPayDeletable {
9
+ /**
10
+ * When true, the command will also return a deleted {@link UserAuthentication} (if it exists).
11
+ */
12
+ includeDeleted: boolean;
13
+ constructor(json?: JsonObject);
14
+ createReply(json: JsonObject): Reply;
15
+ toJSON(): JsonObject;
16
+ }
17
+ //# sourceMappingURL=PayUserAuthenticationGet.d.ts.map
@@ -0,0 +1,42 @@
1
+ import { JsonObject } from "@trakit/objects";
2
+ import { IPayDeletable } from "../../../API/Requests/IPayDeletable";
3
+ import { IPayListByCompany } from "../../../API/Requests/IPayListByCompany";
4
+ import { ParamId } from "../../../API/Requests/Parameters/ParamId";
5
+ import { Payload } from "../../../API/Requests/Payload";
6
+ import { Reply } from "../../../API/Responses/Reply";
7
+ /**
8
+ * Gets a list of {@link UserAuthentication}s.
9
+ */
10
+ export declare abstract class PayUserAuthenticationList extends Payload implements IPayDeletable {
11
+ /**
12
+ * When true, the command will also return a deleted {@link UserAuthentication} (if it exists).
13
+ */
14
+ includeDeleted: boolean;
15
+ constructor(json?: JsonObject);
16
+ toJSON(): JsonObject;
17
+ }
18
+ /**
19
+ * Gets the list of {@link UserAuthentication}s for the specified {@link Company}.
20
+ */
21
+ export declare class PayUserAuthenticationListByCompany extends PayUserAuthenticationList implements IPayListByCompany {
22
+ /**
23
+ * Identifier of the {@link Company} to which this collection belongs.
24
+ */
25
+ company: ParamId;
26
+ constructor(json?: JsonObject);
27
+ createReply(json: JsonObject): Reply;
28
+ toJSON(): JsonObject;
29
+ }
30
+ /**
31
+ * Gets the list of {@link UserAuthentication}s for the specified {@link UserGroup}.
32
+ */
33
+ export declare class PayUserAuthenticationListByUserGroup extends PayUserAuthenticationList {
34
+ /**
35
+ * Identifier of the {@link UserGroup} to which this collection belongs.
36
+ */
37
+ userGroup: ParamId;
38
+ constructor(json?: JsonObject);
39
+ createReply(json: JsonObject): Reply;
40
+ toJSON(): JsonObject;
41
+ }
42
+ //# sourceMappingURL=PayUserAuthenticationList.d.ts.map
@@ -0,0 +1,17 @@
1
+ import { JsonObject } from "@trakit/objects";
2
+ import { IPayDeletable } from "../../../API/Requests/IPayDeletable";
3
+ import { Reply } from "../../../API/Responses/Reply";
4
+ import { PayUser } from "./PayUser";
5
+ /**
6
+ * Gets details of the specified {@link UserSetting}.
7
+ */
8
+ export declare class PayUserSettingGet extends PayUser implements IPayDeletable {
9
+ /**
10
+ * When true, the command will also return a deleted {@link UserSetting} (if it exists).
11
+ */
12
+ includeDeleted: boolean;
13
+ constructor(json?: JsonObject);
14
+ createReply(json: JsonObject): Reply;
15
+ toJSON(): JsonObject;
16
+ }
17
+ //# sourceMappingURL=PayUserSettingGet.d.ts.map
@@ -0,0 +1,42 @@
1
+ import { JsonObject } from "@trakit/objects";
2
+ import { IPayDeletable } from "../../../API/Requests/IPayDeletable";
3
+ import { IPayListByCompany } from "../../../API/Requests/IPayListByCompany";
4
+ import { ParamId } from "../../../API/Requests/Parameters/ParamId";
5
+ import { Payload } from "../../../API/Requests/Payload";
6
+ import { Reply } from "../../../API/Responses/Reply";
7
+ /**
8
+ * Gets a list of {@link UserSetting}s.
9
+ */
10
+ export declare abstract class PayUserSettingList extends Payload implements IPayDeletable {
11
+ /**
12
+ * When true, the command will also return a deleted {@link UserSetting} (if it exists).
13
+ */
14
+ includeDeleted: boolean;
15
+ constructor(json?: JsonObject);
16
+ toJSON(): JsonObject;
17
+ }
18
+ /**
19
+ * Gets the list of {@link UserSetting}s for the specified {@link Company}.
20
+ */
21
+ export declare class PayUserSettingListByCompany extends PayUserSettingList implements IPayListByCompany {
22
+ /**
23
+ * Identifier of the {@link Company} to which this collection belongs.
24
+ */
25
+ company: ParamId;
26
+ constructor(json?: JsonObject);
27
+ createReply(json: JsonObject): Reply;
28
+ toJSON(): JsonObject;
29
+ }
30
+ /**
31
+ * Gets the list of {@link UserSetting}s for the specified {@link UserGroup}.
32
+ */
33
+ export declare class PayUserSettingListByUserGroup extends PayUserSettingList {
34
+ /**
35
+ * Identifier of the {@link UserGroup} to which this collection belongs.
36
+ */
37
+ userGroup: ParamId;
38
+ constructor(json?: JsonObject);
39
+ createReply(json: JsonObject): Reply;
40
+ toJSON(): JsonObject;
41
+ }
42
+ //# sourceMappingURL=PayUserSettingList.d.ts.map
@@ -0,0 +1,16 @@
1
+ import { JsonObject, nothing, ulong, User, UserAuthentication } from "@trakit/objects";
2
+ import { ReplySyncGetPiece } from "../../../API/Responses/ReplySyncGet";
3
+ /**
4
+ * A container for the {@link UserAuthentication}.
5
+ */
6
+ export declare class RepUserAuthenticationGet extends ReplySyncGetPiece<UserAuthentication> {
7
+ /**
8
+ * The requested {@link UserAuthentication}.
9
+ */
10
+ userAuthentication: UserAuthentication | nothing;
11
+ constructor(json: JsonObject);
12
+ protected _createBlank(): User;
13
+ getObject(): UserAuthentication;
14
+ getCompanyId(): ulong;
15
+ }
16
+ //# sourceMappingURL=RepUserAuthenticationGet.d.ts.map
@@ -0,0 +1,41 @@
1
+ import { codified, email, guid, JsonObject, nothing, ulong, User, UserAuthentication } from "@trakit/objects";
2
+ import { ContentId } from "../../../API/Responses/Content/ContentId";
3
+ import { ContentIdCompany } from "../../../API/Responses/Content/ContentIdCompany";
4
+ import { ReplySyncListPiece } from "../../../API/Responses/ReplySyncList";
5
+ /**
6
+ * A container for the requested {@link UserAuthentication}s.
7
+ */
8
+ export declare abstract class RepUserAuthenticationList extends ReplySyncListPiece<UserAuthentication> {
9
+ /**
10
+ * The list of requested {@link UserAuthentication}s.
11
+ */
12
+ userAuthentications: UserAuthentication[];
13
+ constructor(json: JsonObject);
14
+ getList(): UserAuthentication[];
15
+ protected _createBlank(): User;
16
+ }
17
+ /**
18
+ * A container owner {@link Company} of the collection.
19
+ */
20
+ export declare class RepUserAuthenticationListByCompany extends RepUserAuthenticationList {
21
+ /**
22
+ * Identifier of the {@link Company} to which this collection belongs.
23
+ */
24
+ company: ContentId | nothing;
25
+ constructor(json: JsonObject);
26
+ _filterCollection(pair: [ulong | guid | email | codified | string, UserAuthentication], index: number): boolean;
27
+ getCompanyId(): ulong;
28
+ }
29
+ /**
30
+ * A container owner {@link UserGroup} of the collection.
31
+ */
32
+ export declare class RepUserAuthenticationListByUserGroup extends RepUserAuthenticationList {
33
+ /**
34
+ * Identifier of the {@link UserGroup} to which this collection belongs.
35
+ */
36
+ userGroup: ContentIdCompany | nothing;
37
+ constructor(json: JsonObject);
38
+ _filterCollection(pair: [ulong | guid | email | codified | string, UserAuthentication], index: number): boolean;
39
+ getCompanyId(): ulong;
40
+ }
41
+ //# sourceMappingURL=RepUserAuthenticationList.d.ts.map
@@ -0,0 +1,16 @@
1
+ import { JsonObject, nothing, ulong, User, UserSetting } from "@trakit/objects";
2
+ import { ReplySyncGetPiece } from "../../../API/Responses/ReplySyncGet";
3
+ /**
4
+ * A container for the {@link userGeneral}.
5
+ */
6
+ export declare class RepUserSettingGet extends ReplySyncGetPiece<UserSetting> {
7
+ /**
8
+ * The requested {@link UserSetting}.
9
+ */
10
+ userSetting: UserSetting | nothing;
11
+ constructor(json: JsonObject);
12
+ protected _createBlank(): User;
13
+ getObject(): UserSetting;
14
+ getCompanyId(): ulong;
15
+ }
16
+ //# sourceMappingURL=RepUserSettingGet.d.ts.map
@@ -0,0 +1,41 @@
1
+ import { codified, email, guid, JsonObject, nothing, ulong, User, UserSetting } from "@trakit/objects";
2
+ import { ContentId } from "../../../API/Responses/Content/ContentId";
3
+ import { ContentIdCompany } from "../../../API/Responses/Content/ContentIdCompany";
4
+ import { ReplySyncListPiece } from "../../../API/Responses/ReplySyncList";
5
+ /**
6
+ * A container for the requested {@link UserSetting}s.
7
+ */
8
+ export declare abstract class RepUserSettingList extends ReplySyncListPiece<UserSetting> {
9
+ /**
10
+ * The list of requested {@link UserSetting}s.
11
+ */
12
+ userSetting: UserSetting[];
13
+ constructor(json: JsonObject);
14
+ getList(): UserSetting[];
15
+ protected _createBlank(): User;
16
+ }
17
+ /**
18
+ * A container owner {@link Company} of the collection.
19
+ */
20
+ export declare class RepUserSettingListByCompany extends RepUserSettingList {
21
+ /**
22
+ * Identifier of the {@link Company} to which this collection belongs.
23
+ */
24
+ company: ContentId | nothing;
25
+ constructor(json: JsonObject);
26
+ _filterCollection(pair: [ulong | guid | email | codified | string, UserSetting], index: number): boolean;
27
+ getCompanyId(): ulong;
28
+ }
29
+ /**
30
+ * A container owner {@link UserGroup} of the collection.
31
+ */
32
+ export declare class RepUserSettingListByUserGroup extends RepUserSettingList {
33
+ /**
34
+ * Identifier of the {@link UserGroup} to which this collection belongs.
35
+ */
36
+ userGroup: ContentIdCompany | nothing;
37
+ constructor(json: JsonObject);
38
+ _filterCollection(pair: [ulong | guid | email | codified | string, UserSetting], index: number): boolean;
39
+ getCompanyId(): ulong;
40
+ }
41
+ //# sourceMappingURL=RepUserSettingList.d.ts.map
@@ -199,6 +199,16 @@ export declare enum SubscriptionType {
199
199
  * @see {@link UserAdvanced}
200
200
  */
201
201
  userAdvanced = "userAdvanced",
202
+ /**
203
+ * User information such as permissions and group membership.
204
+ * @see {@link UserAuthentication}
205
+ */
206
+ userAuthentication = "userAuthentication",
207
+ /**
208
+ * User information such as permissions and group membership.
209
+ * @see {@link UserSetting}
210
+ */
211
+ userSetting = "userSetting",
202
212
  /**
203
213
  * Group information for easy access control.
204
214
  * @see {@link UserGroup}
package/index.d.ts CHANGED
@@ -71,6 +71,8 @@ import { RepSessionListByCompany, RepSessionListByUser } from "./Accounts/Sessio
71
71
  import { ParamUserMerge } from "./Accounts/Users/Requests/Parameters/ParamUserMerge";
72
72
  import { PayUserAdvancedGet } from "./Accounts/Users/Requests/PayUserAdvancedGet";
73
73
  import { PayUserAdvancedListByCompany, PayUserAdvancedListByUserGroup } from "./Accounts/Users/Requests/PayUserAdvancedList";
74
+ import { PayUserAuthenticationGet } from "./Accounts/Users/Requests/PayUserAuthenticationGet";
75
+ import { PayUserAuthenticationListByCompany, PayUserAuthenticationListByUserGroup } from "./Accounts/Users/Requests/PayUserAuthenticationList";
74
76
  import { PayUserBatchDelete } from "./Accounts/Users/Requests/PayUserBatchDelete";
75
77
  import { PayUserBatchMerge } from "./Accounts/Users/Requests/PayUserBatchMerge";
76
78
  import { PayUserDelete } from "./Accounts/Users/Requests/PayUserDelete";
@@ -80,8 +82,12 @@ import { PayUserGet } from "./Accounts/Users/Requests/PayUserGet";
80
82
  import { PayUserListByCompany } from "./Accounts/Users/Requests/PayUserList";
81
83
  import { PayUserMerge } from "./Accounts/Users/Requests/PayUserMerge";
82
84
  import { PayUserRestore } from "./Accounts/Users/Requests/PayUserRestore";
85
+ import { PayUserSettingGet } from "./Accounts/Users/Requests/PayUserSettingGet";
86
+ import { PayUserSettingListByCompany, PayUserSettingListByUserGroup } from "./Accounts/Users/Requests/PayUserSettingList";
83
87
  import { RepUserAdvancedGet } from "./Accounts/Users/Responses/RepUserAdvancedGet";
84
88
  import { RepUserAdvancedListByCompany, RepUserAdvancedListByUserGroup } from "./Accounts/Users/Responses/RepUserAdvancedList";
89
+ import { RepUserAuthenticationGet } from "./Accounts/Users/Responses/RepUserAuthenticationGet";
90
+ import { RepUserAuthenticationListByCompany, RepUserAuthenticationListByUserGroup } from "./Accounts/Users/Responses/RepUserAuthenticationList";
85
91
  import { RepUserBatchDelete } from "./Accounts/Users/Responses/RepUserBatchDelete";
86
92
  import { RepUserBatchMerge } from "./Accounts/Users/Responses/RepUserBatchMerge";
87
93
  import { RepUserDelete } from "./Accounts/Users/Responses/RepUserDelete";
@@ -90,6 +96,8 @@ import { RepUserGeneralListByCompany, RepUserGeneralListByUserGroup } from "./Ac
90
96
  import { RepUserGet } from "./Accounts/Users/Responses/RepUserGet";
91
97
  import { RepUserListByCompany } from "./Accounts/Users/Responses/RepUserList";
92
98
  import { RepUserMerge } from "./Accounts/Users/Responses/RepUserMerge";
99
+ import { RepUserSettingGet } from "./Accounts/Users/Responses/RepUserSettingGet";
100
+ import { RepUserSettingListByCompany, RepUserSettingListByUserGroup } from "./Accounts/Users/Responses/RepUserSettingList";
93
101
  import { IPayDeletable } from "./API/Requests/IPayDeletable";
94
102
  import { IPayListByAsset } from "./API/Requests/IPayListByAsset";
95
103
  import { IPayListByBillingProfile } from "./API/Requests/IPayListByBillingProfile";
@@ -572,7 +580,7 @@ import { RepSubscriptionList } from "./WebSocket/Responses/RepSubscriptionList";
572
580
  /**
573
581
  * Version number for this release.
574
582
  */
575
- export declare const version = "0.0.20";
583
+ export declare const version = "0.0.22";
576
584
  /**
577
585
  * Command request payloads and parameter classes.
578
586
  */
@@ -585,7 +593,7 @@ export { ContentCode, ContentCodeCompany, ContentCodeDeleted, ContentId, Content
585
593
  * Error messages and details for responses.
586
594
  */
587
595
  export { ErrorCode, ErrorDetail, ErrorDetailBadIds, ErrorDetailBadIndexes, ErrorDetailBadKeys, ErrorDetailBatch, ErrorDetailContactInUse, ErrorDetailCount, ErrorDetailEnum, ErrorDetailEscalation, ErrorDetailExternals, ErrorDetailFormTemplateInUse, ErrorDetailInput, ErrorDetailLocked, ErrorDetailMinMax, ErrorDetailParent, ErrorDetailParse, ErrorDetailPhone, ErrorDetailSecret, ErrorDetailStack, ErrorDetailThrottled, ErrorDetailType, ErrorDetailUserGroupInUse };
588
- export { ParamContactMerge, ParamHandle, ParamMachineMerge, ParamPermission, ParamSelfContactMerge, ParamUserGroupMerge, ParamUserMerge, PayContact, PayContactBatchDelete, PayContactBatchMerge, PayContactDelete, PayContactGet, PayContactListByCompany, PayContactMerge, PayContactRestore, PayMachineBatchDelete, PayMachineBatchMerge, PayMachineDelete, PayMachineGet, PayMachineListByCompany, PayMachineMerge, PayMachineRestore, PaySelfContact, PaySelfGet, PaySelfLogin, PaySelfLogout, PaySelfPassword, PaySelfPreferences, PaySessionDelete, PaySessionGet, PaySessionListByCompany, PaySessionListByUser, PayUserAdvancedGet, PayUserAdvancedListByCompany, PayUserAdvancedListByUserGroup, PayUserBatchDelete, PayUserBatchMerge, PayUserDelete, PayUserGeneralGet, PayUserGeneralListByCompany, PayUserGeneralListByUserGroup, PayUserGet, PayUserGroupBatchDelete, PayUserGroupBatchMerge, PayUserGroupDelete, PayUserGroupGet, PayUserGroupListByCompany, PayUserGroupMerge, PayUserGroupRestore, PayUserListByCompany, PayUserMerge, PayUserRestore, RepContactBatchDelete, RepContactBatchMerge, RepContactDelete, RepContactGet, RepContactListByCompany, RepContactMerge, RepMachineBatchDelete, RepMachineBatchMerge, RepMachineDelete, RepMachineGet, RepMachineListByCompany, RepMachineListByUserGroup, RepMachineMerge, RepSelfContact, RepSelfGet, RepSelfLogout, RepSelfPassword, RepSelfPreferences, RepSessionDelete, RepSessionGet, RepSessionListByCompany, RepSessionListByUser, RepUserAdvancedGet, RepUserAdvancedListByCompany, RepUserAdvancedListByUserGroup, RepUserBatchDelete, RepUserBatchMerge, RepUserDelete, RepUserGeneralGet, RepUserGeneralListByCompany, RepUserGeneralListByUserGroup, RepUserGet, RepUserGroupBatchDelete, RepUserGroupBatchMerge, RepUserGroupDelete, RepUserGroupGet, RepUserGroupListByCompany, RepUserGroupMerge, RepUserListByCompany, RepUserMerge, SessionHandle };
596
+ export { ParamContactMerge, ParamHandle, ParamMachineMerge, ParamPermission, ParamSelfContactMerge, ParamUserGroupMerge, ParamUserMerge, PayContact, PayContactBatchDelete, PayContactBatchMerge, PayContactDelete, PayContactGet, PayContactListByCompany, PayContactMerge, PayContactRestore, PayMachineBatchDelete, PayMachineBatchMerge, PayMachineDelete, PayMachineGet, PayMachineListByCompany, PayMachineMerge, PayMachineRestore, PaySelfContact, PaySelfGet, PaySelfLogin, PaySelfLogout, PaySelfPassword, PaySelfPreferences, PaySessionDelete, PaySessionGet, PaySessionListByCompany, PaySessionListByUser, PayUserAdvancedGet, PayUserAdvancedListByCompany, PayUserAdvancedListByUserGroup, PayUserAuthenticationGet, PayUserAuthenticationListByCompany, PayUserAuthenticationListByUserGroup, PayUserBatchDelete, PayUserBatchMerge, PayUserDelete, PayUserGeneralGet, PayUserGeneralListByCompany, PayUserGeneralListByUserGroup, PayUserGet, PayUserGroupBatchDelete, PayUserGroupBatchMerge, PayUserGroupDelete, PayUserGroupGet, PayUserGroupListByCompany, PayUserGroupMerge, PayUserGroupRestore, PayUserListByCompany, PayUserMerge, PayUserRestore, PayUserSettingGet, PayUserSettingListByCompany, PayUserSettingListByUserGroup, RepContactBatchDelete, RepContactBatchMerge, RepContactDelete, RepContactGet, RepContactListByCompany, RepContactMerge, RepMachineBatchDelete, RepMachineBatchMerge, RepMachineDelete, RepMachineGet, RepMachineListByCompany, RepMachineListByUserGroup, RepMachineMerge, RepSelfContact, RepSelfGet, RepSelfLogout, RepSelfPassword, RepSelfPreferences, RepSessionDelete, RepSessionGet, RepSessionListByCompany, RepSessionListByUser, RepUserAdvancedGet, RepUserAdvancedListByCompany, RepUserAdvancedListByUserGroup, RepUserAuthenticationGet, RepUserAuthenticationListByCompany, RepUserAuthenticationListByUserGroup, RepUserBatchDelete, RepUserBatchMerge, RepUserDelete, RepUserGeneralGet, RepUserGeneralListByCompany, RepUserGeneralListByUserGroup, RepUserGet, RepUserGroupBatchDelete, RepUserGroupBatchMerge, RepUserGroupDelete, RepUserGroupGet, RepUserGroupListByCompany, RepUserGroupMerge, RepUserListByCompany, RepUserMerge, RepUserSettingGet, RepUserSettingListByCompany, RepUserSettingListByUserGroup, SessionHandle };
589
597
  export { ParamAssetMerge, PayAsset, PayAssetAdvancedGet, PayAssetAdvancedListByCompany, PayAssetAdvancedListByCompanyAndLabels, PayAssetAdvancedListByCompanyAndRefPairs, PayAssetBatchDelete, PayAssetBatchMerge, PayAssetDelete, PayAssetDispatchGet, PayAssetDispatchListByCompany, PayAssetDispatchListByCompanyAndLabels, PayAssetDispatchListByCompanyAndRefPairs, PayAssetDispatchMerge, PayAssetGeneralGet, PayAssetGeneralListByCompany, PayAssetGeneralListByCompanyAndLabels, PayAssetGeneralListByCompanyAndRefPairs, PayAssetGet, PayAssetListByCompany, PayAssetListByCompanyAndLabels, PayAssetListByCompanyAndRefPairs, PayAssetMerge, PayAssetReactivate, PayAssetRestore, PayAssetSuspend, RepAssetAdvancedGet, RepAssetAdvancedListByCompany, RepAssetAdvancedListByCompanyAndLabels, RepAssetAdvancedListByCompanyAndRefPairs, RepAssetBatchMerge, RepAssetDelete, RepAssetDispatchGet, RepAssetDispatchListByCompany, RepAssetDispatchListByCompanyAndLabels, RepAssetDispatchListByCompanyAndRefPairs, RepAssetDispatchMerge, RepAssetGeneralGet, RepAssetGeneralListByCompany, RepAssetGeneralListByCompanyAndLabels, RepAssetGeneralListByCompanyAndRefPairs, RepAssetGet, RepAssetListByCompany, RepAssetListByCompanyAndLabels, RepAssetListByCompanyAndRefPairs, RepAssetMerge, RepAssetSuspend };
590
598
  export { ParamBehaviourMerge, ParamBehaviourScriptMerge, PayBehaviour, PayBehaviourBatchDelete, PayBehaviourBatchMerge, PayBehaviourDelete, PayBehaviourGet, PayBehaviourListByCompany, PayBehaviourLogBatchDeleteByAsset, PayBehaviourLogBatchDeleteByBehaviour, PayBehaviourLogBatchDeleteByScript, PayBehaviourLogListByAsset, PayBehaviourLogListByBehaviour, PayBehaviourLogListByScript, PayBehaviourMerge, PayBehaviourRestore, PayBehaviourScript, PayBehaviourScriptBatchDelete, PayBehaviourScriptBatchMerge, PayBehaviourScriptDelete, PayBehaviourScriptGet, PayBehaviourScriptListByCompany, PayBehaviourScriptMerge, PayBehaviourScriptRestore, RepBehaviourBatchDelete, RepBehaviourBatchMerge, RepBehaviourDelete, RepBehaviourGet, RepBehaviourListByCompany, RepBehaviourLogBatchDeleteByAsset, RepBehaviourLogBatchDeleteByBehaviour, RepBehaviourLogBatchDeleteByScript, RepBehaviourLogListByAsset, RepBehaviourLogListByBehaviour, RepBehaviourLogListByScript, RepBehaviourMerge, RepBehaviourScriptBatchDelete, RepBehaviourScriptBatchMerge, RepBehaviourScriptDelete, RepBehaviourScriptGet, RepBehaviourScriptListByCompany, RepBehaviourScriptMerge };
591
599
  export { PayCompany, PayCompanyBatchDelete, PayCompanyBatchMerge, PayCompanyDelete, PayCompanyDirectoryGet, PayCompanyDirectoryList, PayCompanyDirectoryListByCompany, PayCompanyGeneralGet, PayCompanyGeneralList, PayCompanyGeneralListByCompany, PayCompanyGet, PayCompanyMerge, PayCompanyPolicyGet, PayCompanyPolicyList, PayCompanyPolicyListByCompany, PayCompanyResellerDelete, PayCompanyResellerGet, PayCompanyResellerList, PayCompanyResellerListByCompany, PayCompanyResellerMerge, PayCompanyResellerRestore, PayCompanyRestore, PayCompanyStyleGet, PayCompanyStyleList, PayCompanyStyleListByCompany, RepCompanyBatchDelete, RepCompanyBatchMerge, RepCompanyDelete, RepCompanyDirectoryGet, RepCompanyDirectoryList, RepCompanyDirectoryListByCompany, RepCompanyGeneralGet, RepCompanyGeneralList, RepCompanyGeneralListByCompany, RepCompanyGet, RepCompanyMerge, RepCompanyPolicyGet, RepCompanyPolicyList, RepCompanyPolicyListByCompany, RepCompanyResellerDelete, RepCompanyResellerGet, RepCompanyResellerList, RepCompanyResellerListByCompany, RepCompanyResellerMerge, RepCompanyStyleGet, RepCompanyStyleList, RepCompanyStyleListByCompany };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@trakit/commands",
3
3
  "type": "module",
4
- "version": "0.0.20",
4
+ "version": "0.0.22",
5
5
  "main": "./trakit-commands.min.js",
6
6
  "types": "./index.d.ts",
7
7
  "scripts": {