12345678910111213141516171819 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.getGetStartedTemplateIds = exports.getPopularTemplateIds = void 0;
- const popularProductionIds = ['646c77cf693b8e668a900a73', '646f123c720b54f89ed2130a', '646c7aee958d8bed2e00b8e9'];
- const popularDevelopmentIds = ['64731d4e1084f5a48293ce9f', '64731d4e1084f5a48293ceab'];
- const getStartedDevelopmentIds = [
- '65c25bd6f4de5ad335bb8e48',
- '65c25bd5f4de5ad335bb8dc0',
- '65c25bd1f4de5ad335bb8c91',
- '65c25bd3f4de5ad335bb8d2a',
- ];
- function getPopularTemplateIds({ production }) {
- return production ? popularProductionIds : popularDevelopmentIds;
- }
- exports.getPopularTemplateIds = getPopularTemplateIds;
- function getGetStartedTemplateIds({ production }) {
- return production ? [] : getStartedDevelopmentIds;
- }
- exports.getGetStartedTemplateIds = getGetStartedTemplateIds;
|