@wrcb/cb-common 1.0.829 → 1.0.831

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/build/index.d.ts CHANGED
@@ -43,6 +43,7 @@ export * from './types/smaSubscriptionPlan';
43
43
  export * from './types/smaSubscriptionStatus';
44
44
  export * from './types/calNutri';
45
45
  export * from './types/babelia';
46
+ export * from './types/socialCredential';
46
47
  export * from './types/politicaBetCategory';
47
48
  export * from './types/predictionStatus';
48
49
  export * from './types/disputeStatus';
package/build/index.js CHANGED
@@ -63,6 +63,8 @@ __exportStar(require("./types/smaSubscriptionStatus"), exports);
63
63
  __exportStar(require("./types/calNutri"), exports);
64
64
  // babelia
65
65
  __exportStar(require("./types/babelia"), exports);
66
+ // social credentials (multi-tenant, multi-platform)
67
+ __exportStar(require("./types/socialCredential"), exports);
66
68
  // politicabet
67
69
  __exportStar(require("./types/politicaBetCategory"), exports);
68
70
  __exportStar(require("./types/predictionStatus"), exports);
@@ -37,7 +37,6 @@ export declare enum BabeliaQuestionType {
37
37
  export declare enum BabeliaTopicType {
38
38
  Grammar = "Grammar",
39
39
  Vocabulary = "Vocabulary",
40
- Situation = "Situation",
41
40
  Culture = "Culture"
42
41
  }
43
42
  export declare enum BabeliaBadgeType {
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.BabeliaFriendshipStatus = exports.BabeliaMissionType = exports.BabeliaBadgeType = exports.BabeliaTopicType = exports.BabeliaQuestionType = exports.BabeliaActivityType = exports.BabeliaLevel = exports.BabeliaNativeLanguage = exports.BabeliaTargetLanguage = void 0;
4
+ // Babelia types
4
5
  var BabeliaTargetLanguage;
5
6
  (function (BabeliaTargetLanguage) {
6
7
  BabeliaTargetLanguage["English"] = "English";
@@ -46,7 +47,6 @@ var BabeliaTopicType;
46
47
  (function (BabeliaTopicType) {
47
48
  BabeliaTopicType["Grammar"] = "Grammar";
48
49
  BabeliaTopicType["Vocabulary"] = "Vocabulary";
49
- BabeliaTopicType["Situation"] = "Situation";
50
50
  BabeliaTopicType["Culture"] = "Culture";
51
51
  })(BabeliaTopicType || (exports.BabeliaTopicType = BabeliaTopicType = {}));
52
52
  var BabeliaBadgeType;
@@ -0,0 +1,2 @@
1
+ export type SocialPlatform = 'instagram' | 'instagram_stories' | 'tiktok' | 'facebook' | 'youtube' | 'kwai' | 'pinterest' | 'linkedin';
2
+ export type SocialAccountStatus = 'active' | 'inactive' | 'token_expired';
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrcb/cb-common",
3
- "version": "1.0.829",
3
+ "version": "1.0.831",
4
4
  "description": "Common resources between services",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",