@wrcb/cb-common 1.0.753 → 1.0.755
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/services/TenantDataService.js +68 -1
- package/build/types/tenant.d.ts +1 -0
- package/build/types/tenant.js +1 -0
- package/build/types/userCategory.d.ts +1 -0
- package/build/types/userCategory.js +2 -0
- package/build/types/userTags.d.ts +2 -1
- package/build/types/userTags.js +2 -0
- package/package.json +1 -1
|
@@ -679,5 +679,72 @@ TenantDataService.tenantDataMap = {
|
|
|
679
679
|
minCriteriaCount: 1,
|
|
680
680
|
maxCriteriaCount: 5
|
|
681
681
|
}
|
|
682
|
-
}
|
|
682
|
+
},
|
|
683
|
+
[tenant_1.Tenant.BrainrotColoring]: {
|
|
684
|
+
TENANT: tenant_1.Tenant.BrainrotColoring,
|
|
685
|
+
BACKEND_API_VERSION: '1',
|
|
686
|
+
SITE_NAME: 'BrainrotColoring',
|
|
687
|
+
SITE_URL: 'https://wrsolucoesdigitais.com.br',
|
|
688
|
+
SITE_WHATSAPP_SUPPORT: '37988083717',
|
|
689
|
+
SITE_WHATSAPP_BOT: '',
|
|
690
|
+
WHATSAPP_BOT_NUMBER_ID: '',
|
|
691
|
+
WHATSAPP_TOKEN: '',
|
|
692
|
+
WHATSAPP_API_URL: '',
|
|
693
|
+
WHATSAPP_API_VERSION: '',
|
|
694
|
+
IOS_APP_DOWNLOAD_LINK: 'https://linkios.com',
|
|
695
|
+
ANDROID_APP_DOWNLOAD_LINK: 'https://play.google.com/store/apps/details?id=br.com.wrsolucoesdigitais.brainrotcoloring',
|
|
696
|
+
SITE_DESCRIPTION: 'The best coloring brainrot app for kids and adults!',
|
|
697
|
+
KEYWORDS: [
|
|
698
|
+
'brainrot',
|
|
699
|
+
'coloring',
|
|
700
|
+
'kids',
|
|
701
|
+
'adults'
|
|
702
|
+
],
|
|
703
|
+
SOCIAL_X: 'https://x.com/brainrot-coloring-app',
|
|
704
|
+
SOCIAL_YOUTUBE: 'https://youtube.com/brainrot-coloring-app',
|
|
705
|
+
SOCIAL_INSTAGRAM: 'https://instagram.com/brainrot-coloring-app',
|
|
706
|
+
SOCIAL_FACEBOOK: 'https://facebook.com/brainrot-coloring-app',
|
|
707
|
+
USER_CATEGORIES_CONFIG: {
|
|
708
|
+
[userCategory_1.UserCategory.BrainrotColoring]: {
|
|
709
|
+
allowedTags: [userTags_1.UserTags.BrainrotColoring],
|
|
710
|
+
allowedProducts: []
|
|
711
|
+
},
|
|
712
|
+
},
|
|
713
|
+
COUPONS_TYPE_ALLOWED_TO_BE_CREATED_BY_SELLER: [
|
|
714
|
+
couponType_1.CouponType.FixedValue,
|
|
715
|
+
couponType_1.CouponType.Percentage
|
|
716
|
+
],
|
|
717
|
+
COUPONS_TYPE_ALLOWED_TO_BE_CREATED_BY_ADMIN: [
|
|
718
|
+
couponType_1.CouponType.FixedValue,
|
|
719
|
+
couponType_1.CouponType.Percentage
|
|
720
|
+
],
|
|
721
|
+
EMAIL_HOST: 'smtp.gmail.com',
|
|
722
|
+
EMAIL_PORT: '587',
|
|
723
|
+
EMAIL_USER: 'brainrotcoloring@gmail.com',
|
|
724
|
+
EMAIL_PASS: 'stfunclcqzjcdsrt',
|
|
725
|
+
AUTH_FACEBOOK_APP_ID: '',
|
|
726
|
+
AUTH_GOOGLE_ID: '',
|
|
727
|
+
AUTH_GOOGLE_SECRET: '',
|
|
728
|
+
GOOGLE_ANALYTICS_MEASUREMENT_ID: '',
|
|
729
|
+
GOOGLE_VERIFICATION: '',
|
|
730
|
+
MEDIA_CONFIG: {
|
|
731
|
+
maxPhotoSizeMB: 5,
|
|
732
|
+
maxVideoSizeMB: 20,
|
|
733
|
+
allowedImageFormats: ['jpg', 'jpeg', 'png', 'webp'],
|
|
734
|
+
allowedVideoFormats: ['mp4', 'webm'],
|
|
735
|
+
imageQualities: {
|
|
736
|
+
thumbnail: { width: 150, height: 150, quality: 80 },
|
|
737
|
+
medium: { width: 800, height: 800, quality: 85 },
|
|
738
|
+
large: { width: 1200, height: 1200, quality: 90 }
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
RATING_CRITERIA: {
|
|
742
|
+
criteriaOptions: [
|
|
743
|
+
'ColoringVariety',
|
|
744
|
+
'Fun'
|
|
745
|
+
],
|
|
746
|
+
minCriteriaCount: 1,
|
|
747
|
+
maxCriteriaCount: 5
|
|
748
|
+
}
|
|
749
|
+
},
|
|
683
750
|
};
|
package/build/types/tenant.d.ts
CHANGED
package/build/types/tenant.js
CHANGED
|
@@ -3,6 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.UserCategory = void 0;
|
|
4
4
|
var UserCategory;
|
|
5
5
|
(function (UserCategory) {
|
|
6
|
+
// Brainrot coloring lab
|
|
7
|
+
UserCategory["BrainrotColoring"] = "BrainrotColoring";
|
|
6
8
|
// Private show (venda de imagens e videos Produto 4)
|
|
7
9
|
UserCategory["Female"] = "Female";
|
|
8
10
|
UserCategory["Male"] = "Male";
|
|
@@ -239,7 +239,8 @@ export declare enum UserTags {
|
|
|
239
239
|
LimpezaAutomotiva = "LimpezaAutomotiva",
|
|
240
240
|
Agua = "Agua",
|
|
241
241
|
Gas = "Gas",
|
|
242
|
-
Outros = "Outros"
|
|
242
|
+
Outros = "Outros",
|
|
243
|
+
BrainrotColoring = "BrainrotColoring"
|
|
243
244
|
}
|
|
244
245
|
export declare const TOUR_TAGS: UserTags[];
|
|
245
246
|
export declare const RESTAURANT_TAGS: UserTags[];
|
package/build/types/userTags.js
CHANGED
|
@@ -276,6 +276,8 @@ var UserTags;
|
|
|
276
276
|
UserTags["Gas"] = "Gas";
|
|
277
277
|
// Compranomia - Outros
|
|
278
278
|
UserTags["Outros"] = "Outros";
|
|
279
|
+
// Brainrot coloring lab
|
|
280
|
+
UserTags["BrainrotColoring"] = "BrainrotColoring";
|
|
279
281
|
})(UserTags || (exports.UserTags = UserTags = {}));
|
|
280
282
|
exports.TOUR_TAGS = [
|
|
281
283
|
UserTags.CityTour,
|