revdev 0.252.0 → 0.254.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.
@@ -26,11 +26,11 @@ export interface BoSmmCampaignFeedRequest extends FeedRequest {
26
26
  export interface BoCreateSmmCampaignRequest {
27
27
  name: string;
28
28
  channelId: string;
29
- active: boolean;
30
29
  listId: string;
31
30
  }
32
- export interface BoCreateSmmCampaignModifier extends BoCreateSmmCampaignRequest {
31
+ export interface BoSmmCampaignModifier extends BoCreateSmmCampaignRequest {
33
32
  id: string;
33
+ active: boolean;
34
34
  }
35
35
  export interface BoSmmChannelFeedRequest extends FeedRequest {
36
36
  active?: boolean;
@@ -34,5 +34,7 @@ export declare enum ExceptionCodes {
34
34
  EntryStatusCannotBeChangedForAdminEntity = "EntryStatusCannotBeChangedForAdminEntity",
35
35
  MaxTranWordPinsExceeded = "MaxTranWordPinsExceeded",
36
36
  MaxWordImagePinsExceeded = "MaxWordImagePinsExceeded",
37
- SimilarRecordAlreadyExists = "SimilarRecordAlreadyExists"
37
+ SimilarRecordAlreadyExists = "SimilarRecordAlreadyExists",
38
+ ErrorText = "ErrorText",
39
+ SmmChannelIsNotActive = "SmmChannelIsNotActive"
38
40
  }
@@ -43,4 +43,7 @@ var ExceptionCodes;
43
43
  ExceptionCodes["MaxWordImagePinsExceeded"] = "MaxWordImagePinsExceeded";
44
44
  // common
45
45
  ExceptionCodes["SimilarRecordAlreadyExists"] = "SimilarRecordAlreadyExists";
46
+ ExceptionCodes["ErrorText"] = "ErrorText";
47
+ // smm
48
+ ExceptionCodes["SmmChannelIsNotActive"] = "SmmChannelIsNotActive";
46
49
  })(ExceptionCodes = exports.ExceptionCodes || (exports.ExceptionCodes = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.252.0",
3
+ "version": "0.254.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",