unleash-server 5.4.3 → 5.5.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.
Files changed (586) hide show
  1. package/README.md +5 -3
  2. package/dist/lib/addons/addon-schema.js +2 -1
  3. package/dist/lib/addons/addon-schema.js.map +1 -1
  4. package/dist/lib/addons/datadog-definition.js +22 -7
  5. package/dist/lib/addons/datadog-definition.js.map +1 -1
  6. package/dist/lib/addons/datadog.d.ts +7 -1
  7. package/dist/lib/addons/datadog.js +16 -3
  8. package/dist/lib/addons/datadog.js.map +1 -1
  9. package/dist/lib/addons/datadog.test.js +62 -0
  10. package/dist/lib/addons/datadog.test.js.map +1 -1
  11. package/dist/lib/addons/index.js +3 -11
  12. package/dist/lib/addons/index.js.map +1 -1
  13. package/dist/lib/addons/slack-app-definition.js +5 -24
  14. package/dist/lib/addons/slack-app-definition.js.map +1 -1
  15. package/dist/lib/addons/slack-app.d.ts +0 -1
  16. package/dist/lib/addons/slack-app.js +5 -17
  17. package/dist/lib/addons/slack-app.js.map +1 -1
  18. package/dist/lib/addons/slack-app.test.js +39 -25
  19. package/dist/lib/addons/slack-app.test.js.map +1 -1
  20. package/dist/lib/addons/slack-definition.js +11 -4
  21. package/dist/lib/addons/slack-definition.js.map +1 -1
  22. package/dist/lib/addons/teams-definition.js +5 -4
  23. package/dist/lib/addons/teams-definition.js.map +1 -1
  24. package/dist/lib/addons/webhook-definition.js +10 -12
  25. package/dist/lib/addons/webhook-definition.js.map +1 -1
  26. package/dist/lib/create-config.js +13 -1
  27. package/dist/lib/create-config.js.map +1 -1
  28. package/dist/lib/create-config.test.js +14 -0
  29. package/dist/lib/create-config.test.js.map +1 -1
  30. package/dist/lib/db/access-store.d.ts +23 -5
  31. package/dist/lib/db/access-store.js +263 -17
  32. package/dist/lib/db/access-store.js.map +1 -1
  33. package/dist/lib/db/access-store.test.js +83 -0
  34. package/dist/lib/db/access-store.test.js.map +1 -0
  35. package/dist/lib/db/client-applications-store.d.ts +1 -3
  36. package/dist/lib/db/client-applications-store.js +13 -24
  37. package/dist/lib/db/client-applications-store.js.map +1 -1
  38. package/dist/lib/db/event-store.js +1 -0
  39. package/dist/lib/db/event-store.js.map +1 -1
  40. package/dist/lib/db/feature-toggle-client-store.js +17 -4
  41. package/dist/lib/db/feature-toggle-client-store.js.map +1 -1
  42. package/dist/lib/db/feature-toggle-store.js +1 -1
  43. package/dist/lib/db/feature-toggle-store.js.map +1 -1
  44. package/dist/lib/db/group-store.d.ts +4 -2
  45. package/dist/lib/db/group-store.js +24 -0
  46. package/dist/lib/db/group-store.js.map +1 -1
  47. package/dist/lib/db/index.d.ts +1 -2
  48. package/dist/lib/db/index.js +5 -1
  49. package/dist/lib/db/index.js.map +1 -1
  50. package/dist/lib/db/project-stats-store.d.ts +2 -0
  51. package/dist/lib/db/project-stats-store.js +27 -0
  52. package/dist/lib/db/project-stats-store.js.map +1 -1
  53. package/dist/lib/db/project-store.d.ts +7 -1
  54. package/dist/lib/db/project-store.js +34 -1
  55. package/dist/lib/db/project-store.js.map +1 -1
  56. package/dist/lib/error/bad-data-error.d.ts +1 -1
  57. package/dist/lib/error/index.d.ts +2 -1
  58. package/dist/lib/error/index.js +3 -1
  59. package/dist/lib/error/index.js.map +1 -1
  60. package/dist/lib/error/pattern-error.d.ts +10 -0
  61. package/dist/lib/error/pattern-error.js +20 -0
  62. package/dist/lib/error/pattern-error.js.map +1 -0
  63. package/dist/lib/features/dependent-features/createDependentFeaturesService.d.ts +3 -0
  64. package/dist/lib/features/dependent-features/createDependentFeaturesService.js +11 -0
  65. package/dist/lib/features/dependent-features/createDependentFeaturesService.js.map +1 -0
  66. package/dist/lib/features/dependent-features/dependent-features-controller.d.ts +28 -0
  67. package/dist/lib/features/dependent-features/dependent-features-controller.js +151 -0
  68. package/dist/lib/features/dependent-features/dependent-features-controller.js.map +1 -0
  69. package/dist/lib/features/dependent-features/dependent-features-service.d.ts +11 -0
  70. package/dist/lib/features/dependent-features/dependent-features-service.js +40 -0
  71. package/dist/lib/features/dependent-features/dependent-features-service.js.map +1 -0
  72. package/dist/lib/features/dependent-features/dependent-features-store-type.d.ts +8 -0
  73. package/dist/lib/features/dependent-features/dependent-features-store-type.js +3 -0
  74. package/dist/lib/features/dependent-features/dependent-features-store-type.js.map +1 -0
  75. package/dist/lib/features/dependent-features/dependent-features-store.d.ts +12 -0
  76. package/dist/lib/features/dependent-features/dependent-features-store.js +56 -0
  77. package/dist/lib/features/dependent-features/dependent-features-store.js.map +1 -0
  78. package/dist/lib/features/dependent-features/dependent-features.d.ts +14 -0
  79. package/dist/lib/features/dependent-features/dependent-features.js +3 -0
  80. package/dist/lib/features/dependent-features/dependent-features.js.map +1 -0
  81. package/dist/lib/features/dependent-features/dependent.features.e2e.test.d.ts +1 -0
  82. package/dist/lib/features/dependent-features/dependent.features.e2e.test.js +82 -0
  83. package/dist/lib/features/dependent-features/dependent.features.e2e.test.js.map +1 -0
  84. package/dist/lib/features/dependent-features/fake-dependent-features-store.d.ts +8 -0
  85. package/dist/lib/features/dependent-features/fake-dependent-features-store.js +22 -0
  86. package/dist/lib/features/dependent-features/fake-dependent-features-store.js.map +1 -0
  87. package/dist/lib/features/export-import-toggles/createExportImportService.js +6 -3
  88. package/dist/lib/features/export-import-toggles/createExportImportService.js.map +1 -1
  89. package/dist/lib/features/export-import-toggles/export-import-service.d.ts +9 -3
  90. package/dist/lib/features/export-import-toggles/export-import-service.js +51 -21
  91. package/dist/lib/features/export-import-toggles/export-import-service.js.map +1 -1
  92. package/dist/lib/features/export-import-toggles/export-import.e2e.test.js +120 -50
  93. package/dist/lib/features/export-import-toggles/export-import.e2e.test.js.map +1 -1
  94. package/dist/lib/features/export-import-toggles/import-permissions-service.d.ts +1 -2
  95. package/dist/lib/features/export-import-toggles/import-toggles-store-type.d.ts +6 -0
  96. package/dist/lib/features/export-import-toggles/import-toggles-store.d.ts +2 -1
  97. package/dist/lib/features/export-import-toggles/import-toggles-store.js +25 -0
  98. package/dist/lib/features/export-import-toggles/import-toggles-store.js.map +1 -1
  99. package/dist/lib/features/export-import-toggles/import-validation-messages.d.ts +18 -2
  100. package/dist/lib/features/export-import-toggles/import-validation-messages.js +27 -11
  101. package/dist/lib/features/export-import-toggles/import-validation-messages.js.map +1 -1
  102. package/dist/lib/features/feature-naming-pattern/feature-naming-validation.d.ts +14 -0
  103. package/dist/lib/features/feature-naming-pattern/feature-naming-validation.js +46 -0
  104. package/dist/lib/features/feature-naming-pattern/feature-naming-validation.js.map +1 -0
  105. package/dist/lib/features/feature-naming-pattern/feature-naming-validation.test.d.ts +1 -0
  106. package/dist/lib/features/feature-naming-pattern/feature-naming-validation.test.js +116 -0
  107. package/dist/lib/features/feature-naming-pattern/feature-naming-validation.test.js.map +1 -0
  108. package/dist/lib/features/feature-toggle/createFeatureToggleService.js +11 -2
  109. package/dist/lib/features/feature-toggle/createFeatureToggleService.js.map +1 -1
  110. package/dist/lib/features/instance-stats/getActiveUsers.d.ts +9 -0
  111. package/dist/lib/features/instance-stats/getActiveUsers.e2e.test.d.ts +1 -0
  112. package/dist/lib/features/instance-stats/getActiveUsers.e2e.test.js +141 -0
  113. package/dist/lib/features/instance-stats/getActiveUsers.e2e.test.js.map +1 -0
  114. package/dist/lib/features/instance-stats/getActiveUsers.js +33 -0
  115. package/dist/lib/features/instance-stats/getActiveUsers.js.map +1 -0
  116. package/dist/lib/{services → features/instance-stats}/instance-stats-service.d.ts +13 -7
  117. package/dist/lib/{services → features/instance-stats}/instance-stats-service.js +16 -7
  118. package/dist/lib/features/instance-stats/instance-stats-service.js.map +1 -0
  119. package/dist/lib/features/instance-stats/instance-stats-service.test.d.ts +1 -0
  120. package/dist/lib/{services → features/instance-stats}/instance-stats-service.test.js +6 -5
  121. package/dist/lib/features/instance-stats/instance-stats-service.test.js.map +1 -0
  122. package/dist/lib/features/playground/advanced-playground.test.js +2 -3
  123. package/dist/lib/features/playground/advanced-playground.test.js.map +1 -1
  124. package/dist/lib/features/playground/feature-evaluator/variant.d.ts +1 -1
  125. package/dist/lib/features/playground/generateObjectCombinations.d.ts +1 -1
  126. package/dist/lib/features/playground/generateObjectCombinations.js +14 -4
  127. package/dist/lib/features/playground/generateObjectCombinations.js.map +1 -1
  128. package/dist/lib/features/playground/generateObjectCombinations.test.js +21 -0
  129. package/dist/lib/features/playground/generateObjectCombinations.test.js.map +1 -1
  130. package/dist/lib/features/playground/playground-service.d.ts +5 -3
  131. package/dist/lib/features/playground/playground-service.js +18 -3
  132. package/dist/lib/features/playground/playground-service.js.map +1 -1
  133. package/dist/lib/features/playground/playground.d.ts +2 -1
  134. package/dist/lib/features/playground/playground.js +2 -1
  135. package/dist/lib/features/playground/playground.js.map +1 -1
  136. package/dist/lib/features/private-project/createPrivateProjectChecker.d.ts +5 -0
  137. package/dist/lib/features/private-project/createPrivateProjectChecker.js +22 -0
  138. package/dist/lib/features/private-project/createPrivateProjectChecker.js.map +1 -0
  139. package/dist/lib/features/private-project/fakePrivateProjectChecker.d.ts +7 -0
  140. package/dist/lib/features/private-project/fakePrivateProjectChecker.js +15 -0
  141. package/dist/lib/features/private-project/fakePrivateProjectChecker.js.map +1 -0
  142. package/dist/lib/features/private-project/privateProjectChecker.d.ts +10 -0
  143. package/dist/lib/features/private-project/privateProjectChecker.js +22 -0
  144. package/dist/lib/features/private-project/privateProjectChecker.js.map +1 -0
  145. package/dist/lib/features/private-project/privateProjectCheckerType.d.ts +5 -0
  146. package/dist/lib/features/private-project/privateProjectCheckerType.js +3 -0
  147. package/dist/lib/features/private-project/privateProjectCheckerType.js.map +1 -0
  148. package/dist/lib/features/private-project/privateProjectStore.d.ts +18 -0
  149. package/dist/lib/features/private-project/privateProjectStore.js +70 -0
  150. package/dist/lib/features/private-project/privateProjectStore.js.map +1 -0
  151. package/dist/lib/features/private-project/privateProjectStoreType.d.ts +4 -0
  152. package/dist/lib/features/private-project/privateProjectStoreType.js +3 -0
  153. package/dist/lib/features/private-project/privateProjectStoreType.js.map +1 -0
  154. package/dist/lib/features/project/createProjectService.js +5 -8
  155. package/dist/lib/features/project/createProjectService.js.map +1 -1
  156. package/dist/lib/features/segment/createSegmentService.js +5 -2
  157. package/dist/lib/features/segment/createSegmentService.js.map +1 -1
  158. package/dist/lib/features/segment/segment-controller.d.ts +39 -0
  159. package/dist/lib/features/segment/segment-controller.js +291 -0
  160. package/dist/lib/features/segment/segment-controller.js.map +1 -0
  161. package/dist/lib/metrics.d.ts +1 -1
  162. package/dist/lib/metrics.js +30 -1
  163. package/dist/lib/metrics.js.map +1 -1
  164. package/dist/lib/metrics.test.js +3 -2
  165. package/dist/lib/metrics.test.js.map +1 -1
  166. package/dist/lib/middleware/rbac-middleware.d.ts +2 -0
  167. package/dist/lib/middleware/rbac-middleware.js +2 -0
  168. package/dist/lib/middleware/rbac-middleware.js.map +1 -1
  169. package/dist/lib/middleware/secure-headers.js +18 -0
  170. package/dist/lib/middleware/secure-headers.js.map +1 -1
  171. package/dist/lib/openapi/index.js +13 -0
  172. package/dist/lib/openapi/index.js.map +1 -1
  173. package/dist/lib/openapi/meta-schema-rules.test.js +14 -4
  174. package/dist/lib/openapi/meta-schema-rules.test.js.map +1 -1
  175. package/dist/lib/openapi/spec/addon-type-schema.d.ts +6 -1
  176. package/dist/lib/openapi/spec/addon-type-schema.js +6 -1
  177. package/dist/lib/openapi/spec/addon-type-schema.js.map +1 -1
  178. package/dist/lib/openapi/spec/addons-schema.d.ts +8 -3
  179. package/dist/lib/openapi/spec/addons-schema.js +8 -3
  180. package/dist/lib/openapi/spec/addons-schema.js.map +1 -1
  181. package/dist/lib/openapi/spec/admin-segment-schema.d.ts +115 -0
  182. package/dist/lib/openapi/spec/admin-segment-schema.js +75 -0
  183. package/dist/lib/openapi/spec/admin-segment-schema.js.map +1 -0
  184. package/dist/lib/openapi/spec/admin-segment-schema.test.d.ts +1 -0
  185. package/dist/lib/openapi/spec/admin-segment-schema.test.js +39 -0
  186. package/dist/lib/openapi/spec/admin-segment-schema.test.js.map +1 -0
  187. package/dist/lib/openapi/spec/admin-strategies-schema.d.ts +46 -0
  188. package/dist/lib/openapi/spec/admin-strategies-schema.js +54 -0
  189. package/dist/lib/openapi/spec/admin-strategies-schema.js.map +1 -0
  190. package/dist/lib/openapi/spec/admin-strategies-schema.test.d.ts +1 -0
  191. package/dist/lib/openapi/spec/admin-strategies-schema.test.js +40 -0
  192. package/dist/lib/openapi/spec/admin-strategies-schema.test.js.map +1 -0
  193. package/dist/lib/openapi/spec/advanced-playground-environment-feature-schema.d.ts +51 -6
  194. package/dist/lib/openapi/spec/advanced-playground-environment-feature-schema.js +3 -1
  195. package/dist/lib/openapi/spec/advanced-playground-environment-feature-schema.js.map +1 -1
  196. package/dist/lib/openapi/spec/advanced-playground-feature-schema.d.ts +101 -11
  197. package/dist/lib/openapi/spec/advanced-playground-feature-schema.js +2 -0
  198. package/dist/lib/openapi/spec/advanced-playground-feature-schema.js.map +1 -1
  199. package/dist/lib/openapi/spec/advanced-playground-request-schema.d.ts +1 -0
  200. package/dist/lib/openapi/spec/advanced-playground-response-schema.d.ts +203 -22
  201. package/dist/lib/openapi/spec/advanced-playground-response-schema.js +2 -0
  202. package/dist/lib/openapi/spec/advanced-playground-response-schema.js.map +1 -1
  203. package/dist/lib/openapi/spec/client-feature-schema.d.ts +41 -6
  204. package/dist/lib/openapi/spec/client-feature-schema.js +9 -0
  205. package/dist/lib/openapi/spec/client-feature-schema.js.map +1 -1
  206. package/dist/lib/openapi/spec/client-features-schema.d.ts +75 -12
  207. package/dist/lib/openapi/spec/client-features-schema.js +2 -0
  208. package/dist/lib/openapi/spec/client-features-schema.js.map +1 -1
  209. package/dist/lib/openapi/spec/context-field-strategies-schema.d.ts +1 -1
  210. package/dist/lib/openapi/spec/context-field-strategies-schema.js +1 -1
  211. package/dist/lib/openapi/spec/context-field-strategies-schema.js.map +1 -1
  212. package/dist/lib/openapi/spec/create-api-token-schema.d.ts +1 -139
  213. package/dist/lib/openapi/spec/create-api-token-schema.js +16 -20
  214. package/dist/lib/openapi/spec/create-api-token-schema.js.map +1 -1
  215. package/dist/lib/openapi/spec/create-dependent-feature-schema.d.ts +29 -0
  216. package/dist/lib/openapi/spec/create-dependent-feature-schema.js +31 -0
  217. package/dist/lib/openapi/spec/create-dependent-feature-schema.js.map +1 -0
  218. package/dist/lib/openapi/spec/create-feature-naming-pattern-schema.d.ts +29 -0
  219. package/dist/lib/openapi/spec/create-feature-naming-pattern-schema.js +33 -0
  220. package/dist/lib/openapi/spec/create-feature-naming-pattern-schema.js.map +1 -0
  221. package/dist/lib/openapi/spec/create-feature-strategy-schema.d.ts +2 -2
  222. package/dist/lib/openapi/spec/create-strategy-schema.d.ts +15 -0
  223. package/dist/lib/openapi/spec/create-strategy-schema.js +15 -0
  224. package/dist/lib/openapi/spec/create-strategy-schema.js.map +1 -1
  225. package/dist/lib/openapi/spec/create-strategy-variant-schema.d.ts +2 -2
  226. package/dist/lib/openapi/spec/create-strategy-variant-schema.js +2 -2
  227. package/dist/lib/openapi/spec/create-strategy-variant-schema.js.map +1 -1
  228. package/dist/lib/openapi/spec/dependent-feature-schema.d.ts +30 -0
  229. package/dist/lib/openapi/spec/dependent-feature-schema.js +14 -0
  230. package/dist/lib/openapi/spec/dependent-feature-schema.js.map +1 -0
  231. package/dist/lib/openapi/spec/dora-features-schema.d.ts +20 -0
  232. package/dist/lib/openapi/spec/dora-features-schema.js +22 -0
  233. package/dist/lib/openapi/spec/dora-features-schema.js.map +1 -0
  234. package/dist/lib/openapi/spec/environment-project-schema.d.ts +4 -4
  235. package/dist/lib/openapi/spec/environments-project-schema.d.ts +4 -4
  236. package/dist/lib/openapi/spec/event-schema.d.ts +3 -3
  237. package/dist/lib/openapi/spec/events-schema.d.ts +3 -3
  238. package/dist/lib/openapi/spec/export-query-schema.d.ts +22 -15
  239. package/dist/lib/openapi/spec/export-query-schema.js +16 -15
  240. package/dist/lib/openapi/spec/export-query-schema.js.map +1 -1
  241. package/dist/lib/openapi/spec/export-result-schema.d.ts +26 -26
  242. package/dist/lib/openapi/spec/feature-environment-schema.d.ts +6 -6
  243. package/dist/lib/openapi/spec/feature-events-schema.d.ts +3 -3
  244. package/dist/lib/openapi/spec/feature-schema.d.ts +12 -12
  245. package/dist/lib/openapi/spec/feature-strategy-schema.d.ts +2 -2
  246. package/dist/lib/openapi/spec/feature-variants-schema.d.ts +2 -2
  247. package/dist/lib/openapi/spec/features-schema.d.ts +24 -24
  248. package/dist/lib/openapi/spec/health-overview-schema.d.ts +63 -33
  249. package/dist/lib/openapi/spec/health-overview-schema.js +6 -1
  250. package/dist/lib/openapi/spec/health-overview-schema.js.map +1 -1
  251. package/dist/lib/openapi/spec/health-report-schema.d.ts +63 -33
  252. package/dist/lib/openapi/spec/import-toggles-schema.d.ts +52 -52
  253. package/dist/lib/openapi/spec/index.d.ts +9 -0
  254. package/dist/lib/openapi/spec/index.js +9 -0
  255. package/dist/lib/openapi/spec/index.js.map +1 -1
  256. package/dist/lib/openapi/spec/instance-admin-stats-schema.d.ts +42 -0
  257. package/dist/lib/openapi/spec/instance-admin-stats-schema.js +42 -0
  258. package/dist/lib/openapi/spec/instance-admin-stats-schema.js.map +1 -1
  259. package/dist/lib/openapi/spec/parent-feature-options-schema.d.ts +11 -0
  260. package/dist/lib/openapi/spec/parent-feature-options-schema.js +13 -0
  261. package/dist/lib/openapi/spec/parent-feature-options-schema.js.map +1 -0
  262. package/dist/lib/openapi/spec/playground-feature-schema.d.ts +5 -5
  263. package/dist/lib/openapi/spec/playground-request-schema.d.ts +1 -0
  264. package/dist/lib/openapi/spec/playground-response-schema.d.ts +12 -10
  265. package/dist/lib/openapi/spec/playground-strategy-schema.d.ts +4 -4
  266. package/dist/lib/openapi/spec/playground-strategy-schema.js +1 -1
  267. package/dist/lib/openapi/spec/playground-strategy-schema.js.map +1 -1
  268. package/dist/lib/openapi/spec/profile-schema.d.ts +12 -12
  269. package/dist/lib/openapi/spec/project-dora-metrics-schema.d.ts +44 -0
  270. package/dist/lib/openapi/spec/project-dora-metrics-schema.js +28 -0
  271. package/dist/lib/openapi/spec/project-dora-metrics-schema.js.map +1 -0
  272. package/dist/lib/openapi/spec/project-environment-schema.d.ts +4 -4
  273. package/dist/lib/openapi/spec/project-overview-schema.d.ts +63 -33
  274. package/dist/lib/openapi/spec/project-overview-schema.js +6 -1
  275. package/dist/lib/openapi/spec/project-overview-schema.js.map +1 -1
  276. package/dist/lib/openapi/spec/project-schema.d.ts +1 -1
  277. package/dist/lib/openapi/spec/project-schema.js +1 -1
  278. package/dist/lib/openapi/spec/project-schema.js.map +1 -1
  279. package/dist/lib/openapi/spec/projects-schema.d.ts +1 -1
  280. package/dist/lib/openapi/spec/push-variants-schema.d.ts +2 -2
  281. package/dist/lib/openapi/spec/sdk-context-schema.d.ts +1 -0
  282. package/dist/lib/openapi/spec/sdk-context-schema.js +1 -0
  283. package/dist/lib/openapi/spec/sdk-context-schema.js.map +1 -1
  284. package/dist/lib/openapi/spec/sdk-flat-context-schema.d.ts +46 -0
  285. package/dist/lib/openapi/spec/sdk-flat-context-schema.js +15 -0
  286. package/dist/lib/openapi/spec/sdk-flat-context-schema.js.map +1 -0
  287. package/dist/lib/openapi/spec/search-events-schema.d.ts +1 -1
  288. package/dist/lib/openapi/spec/segments-schema.d.ts +177 -0
  289. package/dist/lib/openapi/spec/segments-schema.js +26 -0
  290. package/dist/lib/openapi/spec/segments-schema.js.map +1 -0
  291. package/dist/lib/openapi/spec/segments-schema.test.d.ts +1 -0
  292. package/dist/lib/openapi/spec/segments-schema.test.js +16 -0
  293. package/dist/lib/openapi/spec/segments-schema.test.js.map +1 -0
  294. package/dist/lib/openapi/spec/state-schema.d.ts +23 -23
  295. package/dist/lib/openapi/spec/strategy-variant-schema.d.ts +2 -2
  296. package/dist/lib/openapi/spec/update-feature-strategy-segments-schema.d.ts +35 -0
  297. package/dist/lib/openapi/spec/update-feature-strategy-segments-schema.js +37 -0
  298. package/dist/lib/openapi/spec/update-feature-strategy-segments-schema.js.map +1 -0
  299. package/dist/lib/openapi/spec/update-feature-strategy-segments-schema.test.d.ts +1 -0
  300. package/dist/lib/openapi/spec/update-feature-strategy-segments-schema.test.js +19 -0
  301. package/dist/lib/openapi/spec/update-feature-strategy-segments-schema.test.js.map +1 -0
  302. package/dist/lib/openapi/spec/upsert-segment-schema.d.ts +8 -15
  303. package/dist/lib/openapi/spec/upsert-segment-schema.js +8 -17
  304. package/dist/lib/openapi/spec/upsert-segment-schema.js.map +1 -1
  305. package/dist/lib/openapi/spec/upsert-segment-schema.test.d.ts +1 -0
  306. package/dist/lib/openapi/spec/upsert-segment-schema.test.js +35 -0
  307. package/dist/lib/openapi/spec/upsert-segment-schema.test.js.map +1 -0
  308. package/dist/lib/openapi/spec/validate-feature-schema.d.ts +6 -0
  309. package/dist/lib/openapi/spec/validate-feature-schema.js +6 -0
  310. package/dist/lib/openapi/spec/validate-feature-schema.js.map +1 -1
  311. package/dist/lib/openapi/spec/variant-schema.d.ts +2 -2
  312. package/dist/lib/openapi/spec/variant-schema.js +2 -2
  313. package/dist/lib/openapi/spec/variant-schema.js.map +1 -1
  314. package/dist/lib/openapi/spec/variants-schema.d.ts +2 -2
  315. package/dist/lib/openapi/util/all-of.d.ts +3 -0
  316. package/dist/lib/openapi/util/all-of.js +34 -0
  317. package/dist/lib/openapi/util/all-of.js.map +1 -0
  318. package/dist/lib/openapi/util/openapi-tags.d.ts +46 -58
  319. package/dist/lib/openapi/util/openapi-tags.js +27 -34
  320. package/dist/lib/openapi/util/openapi-tags.js.map +1 -1
  321. package/dist/lib/openapi/util/openapi-tags.test.d.ts +1 -0
  322. package/dist/lib/openapi/util/openapi-tags.test.js +15 -0
  323. package/dist/lib/openapi/util/openapi-tags.test.js.map +1 -0
  324. package/dist/lib/openapi/validate.js +0 -1
  325. package/dist/lib/openapi/validate.js.map +1 -1
  326. package/dist/lib/routes/admin-api/archive.d.ts +1 -1
  327. package/dist/lib/routes/admin-api/archive.js +3 -2
  328. package/dist/lib/routes/admin-api/archive.js.map +1 -1
  329. package/dist/lib/routes/admin-api/context.js +2 -1
  330. package/dist/lib/routes/admin-api/context.js.map +1 -1
  331. package/dist/lib/routes/admin-api/feature.js +2 -1
  332. package/dist/lib/routes/admin-api/feature.js.map +1 -1
  333. package/dist/lib/routes/admin-api/index.js +2 -0
  334. package/dist/lib/routes/admin-api/index.js.map +1 -1
  335. package/dist/lib/routes/admin-api/instance-admin.d.ts +2 -2
  336. package/dist/lib/routes/admin-api/instance-admin.js +7 -1
  337. package/dist/lib/routes/admin-api/instance-admin.js.map +1 -1
  338. package/dist/lib/routes/admin-api/metrics.d.ts +2 -1
  339. package/dist/lib/routes/admin-api/metrics.js +2 -1
  340. package/dist/lib/routes/admin-api/metrics.js.map +1 -1
  341. package/dist/lib/routes/admin-api/project/api-token.d.ts +2 -1
  342. package/dist/lib/routes/admin-api/project/api-token.js +12 -3
  343. package/dist/lib/routes/admin-api/project/api-token.js.map +1 -1
  344. package/dist/lib/routes/admin-api/project/environments.d.ts +2 -1
  345. package/dist/lib/routes/admin-api/project/environments.js +3 -1
  346. package/dist/lib/routes/admin-api/project/environments.js.map +1 -1
  347. package/dist/lib/routes/admin-api/project/index.d.ts +2 -1
  348. package/dist/lib/routes/admin-api/project/index.js +31 -0
  349. package/dist/lib/routes/admin-api/project/index.js.map +1 -1
  350. package/dist/lib/routes/admin-api/strategy.d.ts +1 -1
  351. package/dist/lib/routes/admin-api/strategy.js.map +1 -1
  352. package/dist/lib/routes/client-api/metrics.js +14 -8
  353. package/dist/lib/routes/client-api/metrics.js.map +1 -1
  354. package/dist/lib/routes/client-api/metrics.test.js +27 -0
  355. package/dist/lib/routes/client-api/metrics.test.js.map +1 -1
  356. package/dist/lib/routes/controller.d.ts +1 -1
  357. package/dist/lib/routes/controller.js +17 -10
  358. package/dist/lib/routes/controller.js.map +1 -1
  359. package/dist/lib/routes/proxy-api/index.js +5 -0
  360. package/dist/lib/routes/proxy-api/index.js.map +1 -1
  361. package/dist/lib/schema/role-schema.js +3 -1
  362. package/dist/lib/schema/role-schema.js.map +1 -1
  363. package/dist/lib/schema/role-schema.test.js +1 -1
  364. package/dist/lib/schema/role-schema.test.js.map +1 -1
  365. package/dist/lib/segments/segment-service-interface.d.ts +1 -1
  366. package/dist/lib/services/access-service.d.ts +29 -11
  367. package/dist/lib/services/access-service.js +53 -10
  368. package/dist/lib/services/access-service.js.map +1 -1
  369. package/dist/lib/services/access-service.test.js +2 -1
  370. package/dist/lib/services/access-service.test.js.map +1 -1
  371. package/dist/lib/services/addon-service.js +4 -2
  372. package/dist/lib/services/addon-service.js.map +1 -1
  373. package/dist/lib/services/addon-service.test.js +65 -0
  374. package/dist/lib/services/addon-service.test.js.map +1 -1
  375. package/dist/lib/services/client-metrics/instance-service.d.ts +5 -2
  376. package/dist/lib/services/client-metrics/instance-service.js +22 -3
  377. package/dist/lib/services/client-metrics/instance-service.js.map +1 -1
  378. package/dist/lib/services/client-metrics/instance-service.test.js +5 -4
  379. package/dist/lib/services/client-metrics/instance-service.test.js.map +1 -1
  380. package/dist/lib/services/context-service.d.ts +6 -2
  381. package/dist/lib/services/context-service.js +16 -2
  382. package/dist/lib/services/context-service.js.map +1 -1
  383. package/dist/lib/services/feature-service-potentially-stale.test.js +1 -1
  384. package/dist/lib/services/feature-service-potentially-stale.test.js.map +1 -1
  385. package/dist/lib/services/feature-toggle-service.d.ts +20 -7
  386. package/dist/lib/services/feature-toggle-service.js +109 -41
  387. package/dist/lib/services/feature-toggle-service.js.map +1 -1
  388. package/dist/lib/services/group-service.d.ts +4 -4
  389. package/dist/lib/services/group-service.js +17 -16
  390. package/dist/lib/services/group-service.js.map +1 -1
  391. package/dist/lib/services/index.d.ts +3 -2
  392. package/dist/lib/services/index.js +31 -17
  393. package/dist/lib/services/index.js.map +1 -1
  394. package/dist/lib/services/project-schema.js +9 -1
  395. package/dist/lib/services/project-schema.js.map +1 -1
  396. package/dist/lib/services/project-service.d.ts +16 -12
  397. package/dist/lib/services/project-service.js +127 -17
  398. package/dist/lib/services/project-service.js.map +1 -1
  399. package/dist/lib/services/scheduler-service.d.ts +1 -1
  400. package/dist/lib/services/scheduler-service.js +3 -3
  401. package/dist/lib/services/scheduler-service.js.map +1 -1
  402. package/dist/lib/services/scheduler-service.test.js +15 -15
  403. package/dist/lib/services/scheduler-service.test.js.map +1 -1
  404. package/dist/lib/services/segment-service.d.ts +4 -2
  405. package/dist/lib/services/segment-service.js +17 -10
  406. package/dist/lib/services/segment-service.js.map +1 -1
  407. package/dist/lib/services/state-service.test.js +13 -3
  408. package/dist/lib/services/state-service.test.js.map +1 -1
  409. package/dist/lib/services/version-service.test.js +3 -0
  410. package/dist/lib/services/version-service.test.js.map +1 -1
  411. package/dist/lib/types/events.d.ts +61 -1
  412. package/dist/lib/types/events.js +66 -4
  413. package/dist/lib/types/events.js.map +1 -1
  414. package/dist/lib/types/experimental.d.ts +1 -1
  415. package/dist/lib/types/experimental.js +9 -5
  416. package/dist/lib/types/experimental.js.map +1 -1
  417. package/dist/lib/types/group.d.ts +2 -2
  418. package/dist/lib/types/model.d.ts +31 -2
  419. package/dist/lib/types/model.js.map +1 -1
  420. package/dist/lib/types/no-auth-user.d.ts +1 -0
  421. package/dist/lib/types/no-auth-user.js +3 -1
  422. package/dist/lib/types/no-auth-user.js.map +1 -1
  423. package/dist/lib/types/option.d.ts +7 -0
  424. package/dist/lib/types/services.d.ts +6 -1
  425. package/dist/lib/types/stores/access-store.d.ts +23 -4
  426. package/dist/lib/types/stores/feature-strategies-store.d.ts +2 -1
  427. package/dist/lib/types/stores/group-store.d.ts +4 -2
  428. package/dist/lib/types/stores/project-stats-store-type.d.ts +2 -0
  429. package/dist/lib/types/stores/project-store.d.ts +7 -14
  430. package/dist/lib/types/stores/strategy-store.d.ts +3 -17
  431. package/dist/lib/types/stores.d.ts +5 -1
  432. package/dist/lib/util/findDuplicates.d.ts +1 -0
  433. package/dist/lib/util/findDuplicates.js +18 -0
  434. package/dist/lib/util/findDuplicates.js.map +1 -0
  435. package/dist/lib/util/findDuplicates.test.d.ts +1 -0
  436. package/dist/lib/util/findDuplicates.test.js +23 -0
  437. package/dist/lib/util/findDuplicates.test.js.map +1 -0
  438. package/dist/migrations/20230830121352-update-client-applications-usage-table.d.ts +2 -0
  439. package/dist/migrations/20230830121352-update-client-applications-usage-table.js +16 -0
  440. package/dist/migrations/20230830121352-update-client-applications-usage-table.js.map +1 -0
  441. package/dist/migrations/20230905122605-add-feature-naming-description.d.ts +2 -0
  442. package/dist/migrations/20230905122605-add-feature-naming-description.js +13 -0
  443. package/dist/migrations/20230905122605-add-feature-naming-description.js.map +1 -0
  444. package/dist/migrations/20230919104006-dependent-features.d.ts +2 -0
  445. package/dist/migrations/20230919104006-dependent-features.js +21 -0
  446. package/dist/migrations/20230919104006-dependent-features.js.map +1 -0
  447. package/dist/migrations/20230927071830-reset-pnps-feedback.d.ts +2 -0
  448. package/dist/migrations/20230927071830-reset-pnps-feedback.js +10 -0
  449. package/dist/migrations/20230927071830-reset-pnps-feedback.js.map +1 -0
  450. package/dist/server-dev.js +7 -4
  451. package/dist/server-dev.js.map +1 -1
  452. package/dist/test/e2e/api/admin/addon.e2e.test.js +0 -1
  453. package/dist/test/e2e/api/admin/addon.e2e.test.js.map +1 -1
  454. package/dist/test/e2e/api/admin/api-token.auth.e2e.test.js +8 -12
  455. package/dist/test/e2e/api/admin/api-token.auth.e2e.test.js.map +1 -1
  456. package/dist/test/e2e/api/admin/event.e2e.test.js +9 -2
  457. package/dist/test/e2e/api/admin/event.e2e.test.js.map +1 -1
  458. package/dist/test/e2e/api/admin/metrics.e2e.test.js +2 -10
  459. package/dist/test/e2e/api/admin/metrics.e2e.test.js.map +1 -1
  460. package/dist/test/e2e/api/admin/project/environments.e2e.test.js +8 -0
  461. package/dist/test/e2e/api/admin/project/environments.e2e.test.js.map +1 -1
  462. package/dist/test/e2e/api/admin/project/features.e2e.test.js +41 -15
  463. package/dist/test/e2e/api/admin/project/features.e2e.test.js.map +1 -1
  464. package/dist/test/e2e/api/admin/project/project.api.tokens.e2e.test.js +30 -3
  465. package/dist/test/e2e/api/admin/project/project.api.tokens.e2e.test.js.map +1 -1
  466. package/dist/test/e2e/api/admin/segment.e2e.test.d.ts +1 -0
  467. package/dist/test/e2e/api/admin/segment.e2e.test.js +272 -0
  468. package/dist/test/e2e/api/admin/segment.e2e.test.js.map +1 -0
  469. package/dist/test/e2e/api/admin/state.e2e.test.js +0 -11
  470. package/dist/test/e2e/api/admin/state.e2e.test.js.map +1 -1
  471. package/dist/test/e2e/api/admin/strategy.e2e.test.js +1 -1
  472. package/dist/test/e2e/api/client/feature.e2e.test.js +27 -3
  473. package/dist/test/e2e/api/client/feature.e2e.test.js.map +1 -1
  474. package/dist/test/e2e/api/client/feature.token.access.e2e.test.js +2 -2
  475. package/dist/test/e2e/api/client/feature.token.access.e2e.test.js.map +1 -1
  476. package/dist/test/e2e/api/client/segment.e2e.test.js +1 -1
  477. package/dist/test/e2e/api/client/segment.e2e.test.js.map +1 -1
  478. package/dist/test/e2e/api/proxy/proxy.e2e.test.js +34 -9
  479. package/dist/test/e2e/api/proxy/proxy.e2e.test.js.map +1 -1
  480. package/dist/test/e2e/helpers/app.utils.d.ts +6 -0
  481. package/dist/test/e2e/helpers/app.utils.js +16 -0
  482. package/dist/test/e2e/helpers/app.utils.js.map +1 -0
  483. package/dist/test/e2e/helpers/database.json +24 -0
  484. package/dist/test/e2e/services/access-service.e2e.test.js +549 -135
  485. package/dist/test/e2e/services/access-service.e2e.test.js.map +1 -1
  486. package/dist/test/e2e/services/api-token-service.e2e.test.js +4 -2
  487. package/dist/test/e2e/services/api-token-service.e2e.test.js.map +1 -1
  488. package/dist/test/e2e/services/client-metrics-service.e2e.test.js +2 -1
  489. package/dist/test/e2e/services/client-metrics-service.e2e.test.js.map +1 -1
  490. package/dist/test/e2e/services/feature-toggle-service-v2.e2e.test.js +38 -5
  491. package/dist/test/e2e/services/feature-toggle-service-v2.e2e.test.js.map +1 -1
  492. package/dist/test/e2e/services/group-service.e2e.test.js +16 -11
  493. package/dist/test/e2e/services/group-service.e2e.test.js.map +1 -1
  494. package/dist/test/e2e/services/playground-service.test.js +5 -2
  495. package/dist/test/e2e/services/playground-service.test.js.map +1 -1
  496. package/dist/test/e2e/services/project-health-service.e2e.test.js +4 -2
  497. package/dist/test/e2e/services/project-health-service.e2e.test.js.map +1 -1
  498. package/dist/test/e2e/services/project-service.e2e.test.js +242 -60
  499. package/dist/test/e2e/services/project-service.e2e.test.js.map +1 -1
  500. package/dist/test/fixtures/access-service-mock.d.ts +3 -4
  501. package/dist/test/fixtures/access-service-mock.js.map +1 -1
  502. package/dist/test/fixtures/fake-access-store.d.ts +15 -5
  503. package/dist/test/fixtures/fake-access-store.js +30 -3
  504. package/dist/test/fixtures/fake-access-store.js.map +1 -1
  505. package/dist/test/fixtures/fake-group-store.d.ts +4 -2
  506. package/dist/test/fixtures/fake-group-store.js +3 -0
  507. package/dist/test/fixtures/fake-group-store.js.map +1 -1
  508. package/dist/test/fixtures/fake-project-stats-store.d.ts +1 -0
  509. package/dist/test/fixtures/fake-project-stats-store.js +3 -0
  510. package/dist/test/fixtures/fake-project-stats-store.js.map +1 -1
  511. package/dist/test/fixtures/fake-project-store.d.ts +2 -1
  512. package/dist/test/fixtures/fake-project-store.js +3 -0
  513. package/dist/test/fixtures/fake-project-store.js.map +1 -1
  514. package/dist/test/fixtures/no-logger.d.ts +2 -1
  515. package/dist/test/fixtures/no-logger.js +8 -4
  516. package/dist/test/fixtures/no-logger.js.map +1 -1
  517. package/dist/test/fixtures/store.js +3 -0
  518. package/dist/test/fixtures/store.js.map +1 -1
  519. package/frontend/README.md +7 -1
  520. package/frontend/build/index.html +2 -2
  521. package/frontend/build/static/{AdvancedPlayground-1748fcdd.js → AdvancedPlayground-20059178.js} +11 -11
  522. package/frontend/build/static/CreateProject-6955728f.js +4 -0
  523. package/frontend/build/static/{Error-cbce6b64.js → Error-f56339ab.js} +1 -1
  524. package/frontend/build/static/FeatureArchiveDialog-33dc3a5b.js +10 -0
  525. package/frontend/build/static/{FeatureMetricsChart-8fd8a304.js → FeatureMetricsChart-5ad514bc.js} +2 -2
  526. package/frontend/build/static/FeatureViewLazyExport-85a68ed0.js +7 -0
  527. package/frontend/build/static/LazyAdminExport-e2677758.js +35 -0
  528. package/frontend/build/static/LazyProjectExport-969bb54e.js +24 -0
  529. package/frontend/build/static/Logo-android-218bddbb.svg +1 -0
  530. package/frontend/build/static/Logo-flutter-cc3c706f.svg +1 -0
  531. package/frontend/build/static/Logo-go-02475b3d.svg +1 -0
  532. package/frontend/build/static/Logo-java-6e556b26.svg +1 -0
  533. package/frontend/build/static/Logo-javascript-caebc06e.svg +1 -0
  534. package/frontend/build/static/Logo-net-0a33abee.svg +1 -0
  535. package/frontend/build/static/Logo-node-318ed025.svg +1 -0
  536. package/frontend/build/static/Logo-php-201f18c3.svg +1 -0
  537. package/frontend/build/static/Logo-python-4305760e.svg +1 -0
  538. package/frontend/build/static/Logo-react-18e98687.svg +1 -0
  539. package/frontend/build/static/Logo-ruby-58f46832.svg +1 -0
  540. package/frontend/build/static/Logo-rust-c83a80f9.svg +1 -0
  541. package/frontend/build/static/Logo-svelte-97dcb624.svg +1 -0
  542. package/frontend/build/static/Logo-swift-315f842b.svg +5 -0
  543. package/frontend/build/static/Logo-vue-0de73099.svg +1 -0
  544. package/frontend/build/static/{NetworkOverview-349a7bdd.js → NetworkOverview-894877e6.js} +2 -2
  545. package/frontend/build/static/{NetworkTraffic-60478e50.js → NetworkTraffic-81eff1ae.js} +1 -1
  546. package/frontend/build/static/ReactJSONEditor-59c8a094.js +129 -0
  547. package/frontend/build/static/RoleCell-35857d41.js +1 -0
  548. package/frontend/build/static/{StrategyItemContainer-a4caeace.js → StrategyItemContainer-b250f2d4.js} +1 -1
  549. package/frontend/build/static/{chartjs-adapter-date-fns.esm-03d2fbea.js → chartjs-adapter-date-fns.esm-c51fe022.js} +1 -1
  550. package/frontend/build/static/cr-db7653ac.png +0 -0
  551. package/frontend/build/static/datadog-543762b6.svg +5 -0
  552. package/frontend/build/static/edge-daisy-chaining-012bfdef.svg +48 -0
  553. package/frontend/build/static/edge-mode-5d25949b.svg +22 -0
  554. package/frontend/build/static/edge-offline-f6a0f761.svg +19 -0
  555. package/frontend/build/static/{flowchart-elk-definition-170a3958-fc100c77.js → flowchart-elk-definition-170a3958-a8c4a86a.js} +1 -1
  556. package/frontend/build/static/{index-866f9bf9.js → index-0515f416.js} +1 -1
  557. package/frontend/build/static/index-942e9eeb.js +463 -0
  558. package/frontend/build/static/{index-3c63138f.js → index-a59b2d65.js} +1 -1
  559. package/frontend/build/static/{is_dark-31c253e9.js → is_dark-464961a8.js} +1 -1
  560. package/frontend/build/static/jira-1abe7cbf.svg +17 -0
  561. package/frontend/build/static/{mindmap-definition-44684416-398682f9.js → mindmap-definition-44684416-3a71a9a5.js} +1 -1
  562. package/frontend/build/static/slack-36ce798a.svg +18 -0
  563. package/frontend/build/static/style-97d3ef98.css +1 -0
  564. package/frontend/build/static/teams-4e30b51f.svg +45 -0
  565. package/frontend/build/static/{timeline-definition-8e5a9bc6-04a0ae08.js → timeline-definition-8e5a9bc6-da4ebc88.js} +1 -1
  566. package/frontend/build/static/{unknownify-b8618d88.js → unknownify-3563456b.js} +1 -1
  567. package/frontend/build/static/unleash-integration-949d8966.svg +1 -0
  568. package/frontend/build/static/webhooks-b1b44207.svg +16 -0
  569. package/frontend/package.json +20 -18
  570. package/package.json +23 -23
  571. package/dist/lib/services/instance-stats-service.js.map +0 -1
  572. package/dist/lib/services/instance-stats-service.test.js.map +0 -1
  573. package/frontend/build/static/CreateProject-972fa820.js +0 -4
  574. package/frontend/build/static/FeatureArchiveDialog-8a281845.js +0 -10
  575. package/frontend/build/static/FeatureViewLazyExport-a215d53b.js +0 -7
  576. package/frontend/build/static/LazyAdminExport-ba7d55ca.js +0 -35
  577. package/frontend/build/static/LazyProjectExport-12bccd40.js +0 -17
  578. package/frontend/build/static/RoleCell-144e7eca.js +0 -1
  579. package/frontend/build/static/datadog-591b6a73.svg +0 -1
  580. package/frontend/build/static/index-17d74ac9.js +0 -454
  581. package/frontend/build/static/slack-c0af31c6.svg +0 -1
  582. package/frontend/build/static/style-770afaee.css +0 -1
  583. package/frontend/build/static/teams-62e72076.svg +0 -26
  584. package/frontend/build/static/webhooks-ffa904ac.svg +0 -1
  585. /package/dist/lib/{services/instance-stats-service.test.d.ts → db/access-store.test.d.ts} +0 -0
  586. /package/frontend/build/static/{jira-d9eb9af9.svg → jira-comment-d9eb9af9.svg} +0 -0
@@ -425,9 +425,9 @@ export declare const featureSchema: {
425
425
  readonly description: "Extra data configured for this variant";
426
426
  readonly properties: {
427
427
  readonly type: {
428
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
428
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
429
429
  readonly type: "string";
430
- readonly enum: readonly ["json", "csv", "string"];
430
+ readonly enum: readonly ["json", "csv", "string", "number"];
431
431
  };
432
432
  readonly value: {
433
433
  readonly description: "The actual value of payload";
@@ -480,9 +480,9 @@ export declare const featureSchema: {
480
480
  readonly description: "Extra data configured for this variant";
481
481
  readonly properties: {
482
482
  readonly type: {
483
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
483
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
484
484
  readonly type: "string";
485
- readonly enum: readonly ["json", "csv", "string"];
485
+ readonly enum: readonly ["json", "csv", "string", "number"];
486
486
  };
487
487
  readonly value: {
488
488
  readonly description: "The actual value of payload";
@@ -533,9 +533,9 @@ export declare const featureSchema: {
533
533
  readonly additionalProperties: false;
534
534
  readonly properties: {
535
535
  readonly type: {
536
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
536
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
537
537
  readonly type: "string";
538
- readonly enum: readonly ["json", "csv", "string"];
538
+ readonly enum: readonly ["json", "csv", "string", "number"];
539
539
  };
540
540
  readonly value: {
541
541
  readonly description: "The actual value of payload";
@@ -741,9 +741,9 @@ export declare const featureSchema: {
741
741
  readonly description: "Extra data configured for this variant";
742
742
  readonly properties: {
743
743
  readonly type: {
744
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
744
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
745
745
  readonly type: "string";
746
- readonly enum: readonly ["json", "csv", "string"];
746
+ readonly enum: readonly ["json", "csv", "string", "number"];
747
747
  };
748
748
  readonly value: {
749
749
  readonly description: "The actual value of payload";
@@ -796,9 +796,9 @@ export declare const featureSchema: {
796
796
  readonly description: "Extra data configured for this variant";
797
797
  readonly properties: {
798
798
  readonly type: {
799
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
799
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
800
800
  readonly type: "string";
801
- readonly enum: readonly ["json", "csv", "string"];
801
+ readonly enum: readonly ["json", "csv", "string", "number"];
802
802
  };
803
803
  readonly value: {
804
804
  readonly description: "The actual value of payload";
@@ -881,9 +881,9 @@ export declare const featureSchema: {
881
881
  readonly additionalProperties: false;
882
882
  readonly properties: {
883
883
  readonly type: {
884
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
884
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
885
885
  readonly type: "string";
886
- readonly enum: readonly ["json", "csv", "string"];
886
+ readonly enum: readonly ["json", "csv", "string", "number"];
887
887
  };
888
888
  readonly value: {
889
889
  readonly description: "The actual value of payload";
@@ -154,9 +154,9 @@ export declare const featureStrategySchema: {
154
154
  readonly description: "Extra data configured for this variant";
155
155
  readonly properties: {
156
156
  readonly type: {
157
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
157
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
158
158
  readonly type: "string";
159
- readonly enum: readonly ["json", "csv", "string"];
159
+ readonly enum: readonly ["json", "csv", "string", "number"];
160
160
  };
161
161
  readonly value: {
162
162
  readonly description: "The actual value of payload";
@@ -57,9 +57,9 @@ export declare const featureVariantsSchema: {
57
57
  readonly additionalProperties: false;
58
58
  readonly properties: {
59
59
  readonly type: {
60
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
60
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
61
61
  readonly type: "string";
62
- readonly enum: readonly ["json", "csv", "string"];
62
+ readonly enum: readonly ["json", "csv", "string", "number"];
63
63
  };
64
64
  readonly value: {
65
65
  readonly description: "The actual value of payload";
@@ -547,9 +547,9 @@ export declare const featuresSchema: {
547
547
  readonly description: "Extra data configured for this variant";
548
548
  readonly properties: {
549
549
  readonly type: {
550
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
550
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
551
551
  readonly type: "string";
552
- readonly enum: readonly ["json", "csv", "string"];
552
+ readonly enum: readonly ["json", "csv", "string", "number"];
553
553
  };
554
554
  readonly value: {
555
555
  readonly description: "The actual value of payload";
@@ -602,9 +602,9 @@ export declare const featuresSchema: {
602
602
  readonly description: "Extra data configured for this variant";
603
603
  readonly properties: {
604
604
  readonly type: {
605
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
605
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
606
606
  readonly type: "string";
607
- readonly enum: readonly ["json", "csv", "string"];
607
+ readonly enum: readonly ["json", "csv", "string", "number"];
608
608
  };
609
609
  readonly value: {
610
610
  readonly description: "The actual value of payload";
@@ -655,9 +655,9 @@ export declare const featuresSchema: {
655
655
  readonly additionalProperties: false;
656
656
  readonly properties: {
657
657
  readonly type: {
658
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
658
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
659
659
  readonly type: "string";
660
- readonly enum: readonly ["json", "csv", "string"];
660
+ readonly enum: readonly ["json", "csv", "string", "number"];
661
661
  };
662
662
  readonly value: {
663
663
  readonly description: "The actual value of payload";
@@ -863,9 +863,9 @@ export declare const featuresSchema: {
863
863
  readonly description: "Extra data configured for this variant";
864
864
  readonly properties: {
865
865
  readonly type: {
866
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
866
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
867
867
  readonly type: "string";
868
- readonly enum: readonly ["json", "csv", "string"];
868
+ readonly enum: readonly ["json", "csv", "string", "number"];
869
869
  };
870
870
  readonly value: {
871
871
  readonly description: "The actual value of payload";
@@ -918,9 +918,9 @@ export declare const featuresSchema: {
918
918
  readonly description: "Extra data configured for this variant";
919
919
  readonly properties: {
920
920
  readonly type: {
921
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
921
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
922
922
  readonly type: "string";
923
- readonly enum: readonly ["json", "csv", "string"];
923
+ readonly enum: readonly ["json", "csv", "string", "number"];
924
924
  };
925
925
  readonly value: {
926
926
  readonly description: "The actual value of payload";
@@ -1003,9 +1003,9 @@ export declare const featuresSchema: {
1003
1003
  readonly additionalProperties: false;
1004
1004
  readonly properties: {
1005
1005
  readonly type: {
1006
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1006
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1007
1007
  readonly type: "string";
1008
- readonly enum: readonly ["json", "csv", "string"];
1008
+ readonly enum: readonly ["json", "csv", "string", "number"];
1009
1009
  };
1010
1010
  readonly value: {
1011
1011
  readonly description: "The actual value of payload";
@@ -1377,9 +1377,9 @@ export declare const featuresSchema: {
1377
1377
  readonly description: "Extra data configured for this variant";
1378
1378
  readonly properties: {
1379
1379
  readonly type: {
1380
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1380
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1381
1381
  readonly type: "string";
1382
- readonly enum: readonly ["json", "csv", "string"];
1382
+ readonly enum: readonly ["json", "csv", "string", "number"];
1383
1383
  };
1384
1384
  readonly value: {
1385
1385
  readonly description: "The actual value of payload";
@@ -1432,9 +1432,9 @@ export declare const featuresSchema: {
1432
1432
  readonly description: "Extra data configured for this variant";
1433
1433
  readonly properties: {
1434
1434
  readonly type: {
1435
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1435
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1436
1436
  readonly type: "string";
1437
- readonly enum: readonly ["json", "csv", "string"];
1437
+ readonly enum: readonly ["json", "csv", "string", "number"];
1438
1438
  };
1439
1439
  readonly value: {
1440
1440
  readonly description: "The actual value of payload";
@@ -1485,9 +1485,9 @@ export declare const featuresSchema: {
1485
1485
  readonly additionalProperties: false;
1486
1486
  readonly properties: {
1487
1487
  readonly type: {
1488
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1488
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1489
1489
  readonly type: "string";
1490
- readonly enum: readonly ["json", "csv", "string"];
1490
+ readonly enum: readonly ["json", "csv", "string", "number"];
1491
1491
  };
1492
1492
  readonly value: {
1493
1493
  readonly description: "The actual value of payload";
@@ -1693,9 +1693,9 @@ export declare const featuresSchema: {
1693
1693
  readonly description: "Extra data configured for this variant";
1694
1694
  readonly properties: {
1695
1695
  readonly type: {
1696
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1696
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1697
1697
  readonly type: "string";
1698
- readonly enum: readonly ["json", "csv", "string"];
1698
+ readonly enum: readonly ["json", "csv", "string", "number"];
1699
1699
  };
1700
1700
  readonly value: {
1701
1701
  readonly description: "The actual value of payload";
@@ -1748,9 +1748,9 @@ export declare const featuresSchema: {
1748
1748
  readonly description: "Extra data configured for this variant";
1749
1749
  readonly properties: {
1750
1750
  readonly type: {
1751
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1751
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1752
1752
  readonly type: "string";
1753
- readonly enum: readonly ["json", "csv", "string"];
1753
+ readonly enum: readonly ["json", "csv", "string", "number"];
1754
1754
  };
1755
1755
  readonly value: {
1756
1756
  readonly description: "The actual value of payload";
@@ -1810,9 +1810,9 @@ export declare const featuresSchema: {
1810
1810
  readonly additionalProperties: false;
1811
1811
  readonly properties: {
1812
1812
  readonly type: {
1813
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1813
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1814
1814
  readonly type: "string";
1815
- readonly enum: readonly ["json", "csv", "string"];
1815
+ readonly enum: readonly ["json", "csv", "string", "number"];
1816
1816
  };
1817
1817
  readonly value: {
1818
1818
  readonly description: "The actual value of payload";
@@ -29,7 +29,7 @@ export declare const healthOverviewSchema: {
29
29
  };
30
30
  readonly mode: {
31
31
  readonly type: "string";
32
- readonly enum: readonly ["open", "protected"];
32
+ readonly enum: readonly ["open", "protected", "private"];
33
33
  readonly example: "open";
34
34
  readonly description: "The project's [collaboration mode](https://docs.getunleash.io/reference/project-collaboration-mode). Determines whether non-project members can submit change requests or not.";
35
35
  };
@@ -87,6 +87,9 @@ export declare const healthOverviewSchema: {
87
87
  readonly $ref: "#/components/schemas/projectStatsSchema";
88
88
  readonly description: "Project statistics";
89
89
  };
90
+ readonly featureNaming: {
91
+ readonly $ref: "#/components/schemas/createFeatureNamingPatternSchema";
92
+ };
90
93
  };
91
94
  readonly components: {
92
95
  readonly schemas: {
@@ -326,9 +329,9 @@ export declare const healthOverviewSchema: {
326
329
  readonly description: "Extra data configured for this variant";
327
330
  readonly properties: {
328
331
  readonly type: {
329
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
332
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
330
333
  readonly type: "string";
331
- readonly enum: readonly ["json", "csv", "string"];
334
+ readonly enum: readonly ["json", "csv", "string", "number"];
332
335
  };
333
336
  readonly value: {
334
337
  readonly description: "The actual value of payload";
@@ -380,9 +383,9 @@ export declare const healthOverviewSchema: {
380
383
  readonly description: "Extra data configured for this variant";
381
384
  readonly properties: {
382
385
  readonly type: {
383
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
386
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
384
387
  readonly type: "string";
385
- readonly enum: readonly ["json", "csv", "string"];
388
+ readonly enum: readonly ["json", "csv", "string", "number"];
386
389
  };
387
390
  readonly value: {
388
391
  readonly description: "The actual value of payload";
@@ -556,9 +559,9 @@ export declare const healthOverviewSchema: {
556
559
  readonly description: "Extra data configured for this variant";
557
560
  readonly properties: {
558
561
  readonly type: {
559
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
562
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
560
563
  readonly type: "string";
561
- readonly enum: readonly ["json", "csv", "string"];
564
+ readonly enum: readonly ["json", "csv", "string", "number"];
562
565
  };
563
566
  readonly value: {
564
567
  readonly description: "The actual value of payload";
@@ -610,9 +613,9 @@ export declare const healthOverviewSchema: {
610
613
  readonly description: "Extra data configured for this variant";
611
614
  readonly properties: {
612
615
  readonly type: {
613
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
616
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
614
617
  readonly type: "string";
615
- readonly enum: readonly ["json", "csv", "string"];
618
+ readonly enum: readonly ["json", "csv", "string", "number"];
616
619
  };
617
620
  readonly value: {
618
621
  readonly description: "The actual value of payload";
@@ -1097,9 +1100,9 @@ export declare const healthOverviewSchema: {
1097
1100
  readonly description: "Extra data configured for this variant";
1098
1101
  readonly properties: {
1099
1102
  readonly type: {
1100
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1103
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1101
1104
  readonly type: "string";
1102
- readonly enum: readonly ["json", "csv", "string"];
1105
+ readonly enum: readonly ["json", "csv", "string", "number"];
1103
1106
  };
1104
1107
  readonly value: {
1105
1108
  readonly description: "The actual value of payload";
@@ -1152,9 +1155,9 @@ export declare const healthOverviewSchema: {
1152
1155
  readonly description: "Extra data configured for this variant";
1153
1156
  readonly properties: {
1154
1157
  readonly type: {
1155
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1158
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1156
1159
  readonly type: "string";
1157
- readonly enum: readonly ["json", "csv", "string"];
1160
+ readonly enum: readonly ["json", "csv", "string", "number"];
1158
1161
  };
1159
1162
  readonly value: {
1160
1163
  readonly description: "The actual value of payload";
@@ -1205,9 +1208,9 @@ export declare const healthOverviewSchema: {
1205
1208
  readonly additionalProperties: false;
1206
1209
  readonly properties: {
1207
1210
  readonly type: {
1208
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1211
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1209
1212
  readonly type: "string";
1210
- readonly enum: readonly ["json", "csv", "string"];
1213
+ readonly enum: readonly ["json", "csv", "string", "number"];
1211
1214
  };
1212
1215
  readonly value: {
1213
1216
  readonly description: "The actual value of payload";
@@ -1413,9 +1416,9 @@ export declare const healthOverviewSchema: {
1413
1416
  readonly description: "Extra data configured for this variant";
1414
1417
  readonly properties: {
1415
1418
  readonly type: {
1416
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1419
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1417
1420
  readonly type: "string";
1418
- readonly enum: readonly ["json", "csv", "string"];
1421
+ readonly enum: readonly ["json", "csv", "string", "number"];
1419
1422
  };
1420
1423
  readonly value: {
1421
1424
  readonly description: "The actual value of payload";
@@ -1468,9 +1471,9 @@ export declare const healthOverviewSchema: {
1468
1471
  readonly description: "Extra data configured for this variant";
1469
1472
  readonly properties: {
1470
1473
  readonly type: {
1471
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1474
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1472
1475
  readonly type: "string";
1473
- readonly enum: readonly ["json", "csv", "string"];
1476
+ readonly enum: readonly ["json", "csv", "string", "number"];
1474
1477
  };
1475
1478
  readonly value: {
1476
1479
  readonly description: "The actual value of payload";
@@ -1553,9 +1556,9 @@ export declare const healthOverviewSchema: {
1553
1556
  readonly additionalProperties: false;
1554
1557
  readonly properties: {
1555
1558
  readonly type: {
1556
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1559
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1557
1560
  readonly type: "string";
1558
- readonly enum: readonly ["json", "csv", "string"];
1561
+ readonly enum: readonly ["json", "csv", "string", "number"];
1559
1562
  };
1560
1563
  readonly value: {
1561
1564
  readonly description: "The actual value of payload";
@@ -1904,9 +1907,9 @@ export declare const healthOverviewSchema: {
1904
1907
  readonly description: "Extra data configured for this variant";
1905
1908
  readonly properties: {
1906
1909
  readonly type: {
1907
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1910
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1908
1911
  readonly type: "string";
1909
- readonly enum: readonly ["json", "csv", "string"];
1912
+ readonly enum: readonly ["json", "csv", "string", "number"];
1910
1913
  };
1911
1914
  readonly value: {
1912
1915
  readonly description: "The actual value of payload";
@@ -1959,9 +1962,9 @@ export declare const healthOverviewSchema: {
1959
1962
  readonly description: "Extra data configured for this variant";
1960
1963
  readonly properties: {
1961
1964
  readonly type: {
1962
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
1965
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
1963
1966
  readonly type: "string";
1964
- readonly enum: readonly ["json", "csv", "string"];
1967
+ readonly enum: readonly ["json", "csv", "string", "number"];
1965
1968
  };
1966
1969
  readonly value: {
1967
1970
  readonly description: "The actual value of payload";
@@ -2012,9 +2015,9 @@ export declare const healthOverviewSchema: {
2012
2015
  readonly additionalProperties: false;
2013
2016
  readonly properties: {
2014
2017
  readonly type: {
2015
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
2018
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
2016
2019
  readonly type: "string";
2017
- readonly enum: readonly ["json", "csv", "string"];
2020
+ readonly enum: readonly ["json", "csv", "string", "number"];
2018
2021
  };
2019
2022
  readonly value: {
2020
2023
  readonly description: "The actual value of payload";
@@ -2252,9 +2255,9 @@ export declare const healthOverviewSchema: {
2252
2255
  readonly description: "Extra data configured for this variant";
2253
2256
  readonly properties: {
2254
2257
  readonly type: {
2255
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
2258
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
2256
2259
  readonly type: "string";
2257
- readonly enum: readonly ["json", "csv", "string"];
2260
+ readonly enum: readonly ["json", "csv", "string", "number"];
2258
2261
  };
2259
2262
  readonly value: {
2260
2263
  readonly description: "The actual value of payload";
@@ -2307,9 +2310,9 @@ export declare const healthOverviewSchema: {
2307
2310
  readonly description: "Extra data configured for this variant";
2308
2311
  readonly properties: {
2309
2312
  readonly type: {
2310
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
2313
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
2311
2314
  readonly type: "string";
2312
- readonly enum: readonly ["json", "csv", "string"];
2315
+ readonly enum: readonly ["json", "csv", "string", "number"];
2313
2316
  };
2314
2317
  readonly value: {
2315
2318
  readonly description: "The actual value of payload";
@@ -2360,9 +2363,9 @@ export declare const healthOverviewSchema: {
2360
2363
  readonly additionalProperties: false;
2361
2364
  readonly properties: {
2362
2365
  readonly type: {
2363
- readonly description: "The type of the value. Commonly used types are string, json and csv.";
2366
+ readonly description: "The type of the value. Commonly used types are string, number, json and csv.";
2364
2367
  readonly type: "string";
2365
- readonly enum: readonly ["json", "csv", "string"];
2368
+ readonly enum: readonly ["json", "csv", "string", "number"];
2366
2369
  };
2367
2370
  readonly value: {
2368
2371
  readonly description: "The actual value of payload";
@@ -2460,6 +2463,33 @@ export declare const healthOverviewSchema: {
2460
2463
  };
2461
2464
  readonly components: {};
2462
2465
  };
2466
+ readonly createFeatureNamingPatternSchema: {
2467
+ readonly $id: "#/components/schemas/createFeatureNamingPatternSchema";
2468
+ readonly type: "object";
2469
+ readonly description: "Create a feature naming pattern";
2470
+ readonly required: readonly ["pattern"];
2471
+ readonly properties: {
2472
+ readonly pattern: {
2473
+ readonly type: "string";
2474
+ readonly nullable: true;
2475
+ readonly description: "A JavaScript regular expression pattern, without the start and end delimiters. Optional flags are not allowed.";
2476
+ readonly example: "^[A-Za-z]+\\.[A-Za-z]+\\.[A-Za-z0-9-]+$";
2477
+ };
2478
+ readonly example: {
2479
+ readonly type: "string";
2480
+ readonly nullable: true;
2481
+ readonly description: "An example of a feature name that matches the pattern. Must itself match the pattern supplied.";
2482
+ readonly example: "dx.feature1.1-135";
2483
+ };
2484
+ readonly description: {
2485
+ readonly type: "string";
2486
+ readonly nullable: true;
2487
+ readonly description: "A description of the pattern in a human-readable format. Will be shown to users when they create a new feature flag.";
2488
+ readonly example: "<project>.<featureName>.<ticket>\n\nThe flag name should contain the project name, the feature name, and the ticket number, each separated by a dot.";
2489
+ };
2490
+ };
2491
+ readonly components: {};
2492
+ };
2463
2493
  };
2464
2494
  };
2465
2495
  };
@@ -14,6 +14,7 @@ const create_feature_strategy_schema_1 = require("./create-feature-strategy-sche
14
14
  const project_environment_schema_1 = require("./project-environment-schema");
15
15
  const create_strategy_variant_schema_1 = require("./create-strategy-variant-schema");
16
16
  const strategy_variant_schema_1 = require("./strategy-variant-schema");
17
+ const create_feature_naming_pattern_schema_1 = require("./create-feature-naming-pattern-schema");
17
18
  exports.healthOverviewSchema = {
18
19
  $id: '#/components/schemas/healthOverviewSchema',
19
20
  type: 'object',
@@ -53,7 +54,7 @@ exports.healthOverviewSchema = {
53
54
  },
54
55
  mode: {
55
56
  type: 'string',
56
- enum: ['open', 'protected'],
57
+ enum: ['open', 'protected', 'private'],
57
58
  example: 'open',
58
59
  description: "The project's [collaboration mode](https://docs.getunleash.io/reference/project-collaboration-mode). Determines whether non-project members can submit change requests or not.",
59
60
  },
@@ -111,6 +112,9 @@ exports.healthOverviewSchema = {
111
112
  $ref: '#/components/schemas/projectStatsSchema',
112
113
  description: 'Project statistics',
113
114
  },
115
+ featureNaming: {
116
+ $ref: '#/components/schemas/createFeatureNamingPatternSchema',
117
+ },
114
118
  },
115
119
  components: {
116
120
  schemas: {
@@ -127,6 +131,7 @@ exports.healthOverviewSchema = {
127
131
  strategyVariantSchema: strategy_variant_schema_1.strategyVariantSchema,
128
132
  variantSchema: variant_schema_1.variantSchema,
129
133
  projectStatsSchema: project_stats_schema_1.projectStatsSchema,
134
+ createFeatureNamingPatternSchema: create_feature_naming_pattern_schema_1.createFeatureNamingPatternSchema,
130
135
  },
131
136
  },
132
137
  };
@@ -1 +1 @@
1
- {"version":3,"file":"health-overview-schema.js","sourceRoot":"","sources":["../../../../src/lib/openapi/spec/health-overview-schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"health-overview-schema.js","sourceRoot":"","sources":["../../../../src/lib/openapi/spec/health-overview-schema.ts"],"names":[],"mappings":"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"}