index.js 867 B

12345678910111213141516171819
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.getGetStartedTemplateIds = exports.getPopularTemplateIds = void 0;
  4. const popularProductionIds = ['646c77cf693b8e668a900a73', '646f123c720b54f89ed2130a', '646c7aee958d8bed2e00b8e9'];
  5. const popularDevelopmentIds = ['64731d4e1084f5a48293ce9f', '64731d4e1084f5a48293ceab'];
  6. const getStartedDevelopmentIds = [
  7. '65c25bd6f4de5ad335bb8e48',
  8. '65c25bd5f4de5ad335bb8dc0',
  9. '65c25bd1f4de5ad335bb8c91',
  10. '65c25bd3f4de5ad335bb8d2a',
  11. ];
  12. function getPopularTemplateIds({ production }) {
  13. return production ? popularProductionIds : popularDevelopmentIds;
  14. }
  15. exports.getPopularTemplateIds = getPopularTemplateIds;
  16. function getGetStartedTemplateIds({ production }) {
  17. return production ? [] : getStartedDevelopmentIds;
  18. }
  19. exports.getGetStartedTemplateIds = getGetStartedTemplateIds;