@sigmaott/base-next 1.0.6

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 (733) hide show
  1. package/README.md +1 -0
  2. package/hyrd-ui.preset.ts +463 -0
  3. package/i18n.config.ts +3 -0
  4. package/locales/en.yaml +719 -0
  5. package/locales/vi.yaml +726 -0
  6. package/nuxt-config.ts +23 -0
  7. package/nuxt.config.ts +267 -0
  8. package/package.json +119 -0
  9. package/public/routes.json +34 -0
  10. package/src/MediaInfoModule.wasm +0 -0
  11. package/src/api/api.ts +15 -0
  12. package/src/api/axios.ts +125 -0
  13. package/src/api/service-loading.ts +50 -0
  14. package/src/api-client-auth/.openapi-generator/FILES +83 -0
  15. package/src/api-client-auth/.openapi-generator/VERSION +1 -0
  16. package/src/api-client-auth/.openapi-generator-ignore +23 -0
  17. package/src/api-client-auth/api/admin-groups-api.ts +612 -0
  18. package/src/api-client-auth/api/admin-members-api.ts +708 -0
  19. package/src/api-client-auth/api/administration-api-groups-api.ts +547 -0
  20. package/src/api-client-auth/api/administration-apps-api.ts +709 -0
  21. package/src/api-client-auth/api/administration-packages-api.ts +547 -0
  22. package/src/api-client-auth/api/api-groups-api.ts +296 -0
  23. package/src/api-client-auth/api/apps-api.ts +1613 -0
  24. package/src/api-client-auth/api/basic-credential-api.ts +950 -0
  25. package/src/api-client-auth/api/groups-api.ts +702 -0
  26. package/src/api-client-auth/api/members-api.ts +708 -0
  27. package/src/api-client-auth/api/members-on-premise-api.ts +351 -0
  28. package/src/api-client-auth/api/packages-api.ts +296 -0
  29. package/src/api-client-auth/api/users-api.ts +1387 -0
  30. package/src/api-client-auth/api.ts +30 -0
  31. package/src/api-client-auth/base.ts +72 -0
  32. package/src/api-client-auth/common.ts +150 -0
  33. package/src/api-client-auth/configuration.ts +101 -0
  34. package/src/api-client-auth/git_push.sh +57 -0
  35. package/src/api-client-auth/index.ts +18 -0
  36. package/src/api-client-auth/models/add-member-dto.ts +42 -0
  37. package/src/api-client-auth/models/admin-permission.ts +44 -0
  38. package/src/api-client-auth/models/api-group-collection.ts +57 -0
  39. package/src/api-client-auth/models/api-group.ts +80 -0
  40. package/src/api-client-auth/models/api.ts +44 -0
  41. package/src/api-client-auth/models/app-collection.ts +57 -0
  42. package/src/api-client-auth/models/app.ts +147 -0
  43. package/src/api-client-auth/models/backdoor-cred.ts +39 -0
  44. package/src/api-client-auth/models/basic-cred-collection.ts +57 -0
  45. package/src/api-client-auth/models/basic-cred.ts +83 -0
  46. package/src/api-client-auth/models/change-password-dto.ts +42 -0
  47. package/src/api-client-auth/models/create-admin-group-dto.ts +39 -0
  48. package/src/api-client-auth/models/create-api-group-dto.ts +42 -0
  49. package/src/api-client-auth/models/create-app-by-user-dto.ts +36 -0
  50. package/src/api-client-auth/models/create-app-dto.ts +65 -0
  51. package/src/api-client-auth/models/create-basic-cred-dto.ts +39 -0
  52. package/src/api-client-auth/models/create-group-dto.ts +39 -0
  53. package/src/api-client-auth/models/create-package-dto.ts +48 -0
  54. package/src/api-client-auth/models/create-user-dto.ts +60 -0
  55. package/src/api-client-auth/models/free-trial.ts +54 -0
  56. package/src/api-client-auth/models/general-app.ts +48 -0
  57. package/src/api-client-auth/models/generate-app-id.ts +30 -0
  58. package/src/api-client-auth/models/group-collection.ts +57 -0
  59. package/src/api-client-auth/models/group.ts +75 -0
  60. package/src/api-client-auth/models/index.ts +60 -0
  61. package/src/api-client-auth/models/invite-email-dto.ts +30 -0
  62. package/src/api-client-auth/models/invite-member-dto.ts +36 -0
  63. package/src/api-client-auth/models/live-stream-quota.ts +42 -0
  64. package/src/api-client-auth/models/login-dto.ts +36 -0
  65. package/src/api-client-auth/models/login-result.ts +39 -0
  66. package/src/api-client-auth/models/member-collection.ts +57 -0
  67. package/src/api-client-auth/models/member.ts +92 -0
  68. package/src/api-client-auth/models/package-collection.ts +57 -0
  69. package/src/api-client-auth/models/package-permission.ts +44 -0
  70. package/src/api-client-auth/models/package.ts +66 -0
  71. package/src/api-client-auth/models/permission.ts +44 -0
  72. package/src/api-client-auth/models/quota.ts +45 -0
  73. package/src/api-client-auth/models/re-get-password-dto.ts +30 -0
  74. package/src/api-client-auth/models/register-dto.ts +54 -0
  75. package/src/api-client-auth/models/register-through-email-dto.ts +36 -0
  76. package/src/api-client-auth/models/rename-app-dto.ts +30 -0
  77. package/src/api-client-auth/models/resend-confirmation-dto.ts +30 -0
  78. package/src/api-client-auth/models/resend-invitation-dto.ts +30 -0
  79. package/src/api-client-auth/models/resend-result.ts +36 -0
  80. package/src/api-client-auth/models/reset-password-dto.ts +36 -0
  81. package/src/api-client-auth/models/revoke-basic-dto.ts +38 -0
  82. package/src/api-client-auth/models/signup-result.ts +45 -0
  83. package/src/api-client-auth/models/token-check-result.ts +36 -0
  84. package/src/api-client-auth/models/trial-remaining-days.ts +42 -0
  85. package/src/api-client-auth/models/update-admin-group-dto.ts +39 -0
  86. package/src/api-client-auth/models/update-api-group-dto.ts +30 -0
  87. package/src/api-client-auth/models/update-app-by-admin-dto.ts +48 -0
  88. package/src/api-client-auth/models/update-app-by-user-dto.ts +36 -0
  89. package/src/api-client-auth/models/update-basic-cred-dto.ts +30 -0
  90. package/src/api-client-auth/models/update-group-dto.ts +39 -0
  91. package/src/api-client-auth/models/update-member-dto.ts +30 -0
  92. package/src/api-client-auth/models/update-package-dto.ts +42 -0
  93. package/src/api-client-auth/models/update-password-member-dto.ts +30 -0
  94. package/src/api-client-auth/models/update-user-by-user-dto.ts +48 -0
  95. package/src/api-client-auth/models/user.ts +120 -0
  96. package/src/api-client-auth/models/validate-app-id.ts +36 -0
  97. package/src/api-client-billing/.openapi-generator/FILES +38 -0
  98. package/src/api-client-billing/.openapi-generator/VERSION +1 -0
  99. package/src/api-client-billing/.openapi-generator-ignore +23 -0
  100. package/src/api-client-billing/api/invoice-api.ts +363 -0
  101. package/src/api-client-billing/api/payment-methods-api.ts +414 -0
  102. package/src/api-client-billing/api/payment-plan-api.ts +121 -0
  103. package/src/api-client-billing/api/subscriptions-api.ts +121 -0
  104. package/src/api-client-billing/api/usages-api.ts +121 -0
  105. package/src/api-client-billing/api/vnpay-provider-api.ts +327 -0
  106. package/src/api-client-billing/api.ts +23 -0
  107. package/src/api-client-billing/base.ts +72 -0
  108. package/src/api-client-billing/common.ts +150 -0
  109. package/src/api-client-billing/configuration.ts +101 -0
  110. package/src/api-client-billing/git_push.sh +57 -0
  111. package/src/api-client-billing/index.ts +18 -0
  112. package/src/api-client-billing/models/common-paginate-response.ts +48 -0
  113. package/src/api-client-billing/models/dto-billing-item-info.ts +60 -0
  114. package/src/api-client-billing/models/dto-billing-item.ts +36 -0
  115. package/src/api-client-billing/models/dto-create-draft-invoice-request.ts +33 -0
  116. package/src/api-client-billing/models/dto-create-draft-invoice-response.ts +57 -0
  117. package/src/api-client-billing/models/dto-create-vnpay-card-form.ts +48 -0
  118. package/src/api-client-billing/models/dto-return-uri-response.ts +30 -0
  119. package/src/api-client-billing/models/index.ts +22 -0
  120. package/src/api-client-billing/models/invoices-get200-response.ts +42 -0
  121. package/src/api-client-billing/models/model-charge.ts +47 -0
  122. package/src/api-client-billing/models/model-charges-usage.ts +57 -0
  123. package/src/api-client-billing/models/model-graduated-range.ts +48 -0
  124. package/src/api-client-billing/models/model-info.ts +42 -0
  125. package/src/api-client-billing/models/model-invoice.ts +105 -0
  126. package/src/api-client-billing/models/model-item-usage.ts +54 -0
  127. package/src/api-client-billing/models/model-payment-method.ts +135 -0
  128. package/src/api-client-billing/models/model-product.ts +51 -0
  129. package/src/api-client-billing/models/model-properties.ts +39 -0
  130. package/src/api-client-billing/models/model-quota.ts +48 -0
  131. package/src/api-client-billing/models/model-subscription.ts +51 -0
  132. package/src/api-client-billing/models/model-usage-payment.ts +87 -0
  133. package/src/api-client-billing/models/payment-methods-get200-response.ts +42 -0
  134. package/src/api-client-billing/models/subscriptions-get200-response.ts +42 -0
  135. package/src/api-client-machine/.openapi-generator/FILES +90 -0
  136. package/src/api-client-machine/.openapi-generator/VERSION +1 -0
  137. package/src/api-client-machine/.openapi-generator-ignore +23 -0
  138. package/src/api-client-machine/api/apps-config-api.ts +523 -0
  139. package/src/api-client-machine/api/component-clusters-api.ts +741 -0
  140. package/src/api-client-machine/api/expose-api.ts +141 -0
  141. package/src/api-client-machine/api/machine-actions-api.ts +850 -0
  142. package/src/api-client-machine/api/machines-api.ts +524 -0
  143. package/src/api-client-machine/api/networks-api.ts +375 -0
  144. package/src/api-client-machine/api/sigma-clusters-api.ts +741 -0
  145. package/src/api-client-machine/api/sigma-machine-actions-api.ts +292 -0
  146. package/src/api-client-machine/api/sigma-machine-apps-configuration-api.ts +523 -0
  147. package/src/api-client-machine/api/sigma-machines-api.ts +557 -0
  148. package/src/api-client-machine/api/sigma-vod-server-api.ts +478 -0
  149. package/src/api-client-machine/api/sigma-vod-server-app-config-api.ts +980 -0
  150. package/src/api-client-machine/api/transcoder-configuration-api.ts +359 -0
  151. package/src/api-client-machine/api.ts +30 -0
  152. package/src/api-client-machine/base.ts +72 -0
  153. package/src/api-client-machine/common.ts +150 -0
  154. package/src/api-client-machine/configuration.ts +101 -0
  155. package/src/api-client-machine/git_push.sh +57 -0
  156. package/src/api-client-machine/index.ts +18 -0
  157. package/src/api-client-machine/models/actions-to-app-dto.ts +38 -0
  158. package/src/api-client-machine/models/add-license-machine-dto.ts +30 -0
  159. package/src/api-client-machine/models/app-status.ts +47 -0
  160. package/src/api-client-machine/models/check-quota-limit-result.ts +36 -0
  161. package/src/api-client-machine/models/cluster-log.ts +54 -0
  162. package/src/api-client-machine/models/component-cluster-collection.ts +57 -0
  163. package/src/api-client-machine/models/component-cluster.ts +116 -0
  164. package/src/api-client-machine/models/create-component-machine-cluster-dto.ts +86 -0
  165. package/src/api-client-machine/models/create-sigma-machine-cluster-dto.ts +77 -0
  166. package/src/api-client-machine/models/create-vodroute-dto.ts +42 -0
  167. package/src/api-client-machine/models/decklink-collection.ts +57 -0
  168. package/src/api-client-machine/models/decklink.ts +42 -0
  169. package/src/api-client-machine/models/http-app.ts +45 -0
  170. package/src/api-client-machine/models/https-config.ts +42 -0
  171. package/src/api-client-machine/models/index.ts +67 -0
  172. package/src/api-client-machine/models/info-channel.ts +42 -0
  173. package/src/api-client-machine/models/ingest-app.ts +60 -0
  174. package/src/api-client-machine/models/ingest-config.ts +74 -0
  175. package/src/api-client-machine/models/ingest-update-config-dto.ts +68 -0
  176. package/src/api-client-machine/models/machine-cluster-collection.ts +57 -0
  177. package/src/api-client-machine/models/machine-cluster.ts +120 -0
  178. package/src/api-client-machine/models/machine-details-license.ts +42 -0
  179. package/src/api-client-machine/models/machine-details.ts +127 -0
  180. package/src/api-client-machine/models/machine-dto.ts +42 -0
  181. package/src/api-client-machine/models/machine-dump.ts +108 -0
  182. package/src/api-client-machine/models/machine.ts +42 -0
  183. package/src/api-client-machine/models/network-collection.ts +57 -0
  184. package/src/api-client-machine/models/network-interface.ts +36 -0
  185. package/src/api-client-machine/models/network.ts +66 -0
  186. package/src/api-client-machine/models/origin-config.ts +50 -0
  187. package/src/api-client-machine/models/origin-update-config-dto.ts +59 -0
  188. package/src/api-client-machine/models/packager-component-cluster.ts +42 -0
  189. package/src/api-client-machine/models/packager-live-cluster.ts +42 -0
  190. package/src/api-client-machine/models/packager-to-component-cluster.ts +51 -0
  191. package/src/api-client-machine/models/quotas-result.ts +30 -0
  192. package/src/api-client-machine/models/registration-config.ts +48 -0
  193. package/src/api-client-machine/models/sigma-cluster-ingest-config.ts +42 -0
  194. package/src/api-client-machine/models/sigma-cluster-origin-config.ts +30 -0
  195. package/src/api-client-machine/models/sigma-ingest-config-entity.ts +42 -0
  196. package/src/api-client-machine/models/sigma-ingest-config.ts +42 -0
  197. package/src/api-client-machine/models/sigma-origin-config-entity.ts +30 -0
  198. package/src/api-client-machine/models/sigma-origin-config.ts +30 -0
  199. package/src/api-client-machine/models/stats.ts +57 -0
  200. package/src/api-client-machine/models/status.ts +36 -0
  201. package/src/api-client-machine/models/stop-channel.ts +48 -0
  202. package/src/api-client-machine/models/transcoder-apps.ts +42 -0
  203. package/src/api-client-machine/models/transcoder-collection.ts +57 -0
  204. package/src/api-client-machine/models/transcoder-component-cluster.ts +42 -0
  205. package/src/api-client-machine/models/transcoder-license.ts +42 -0
  206. package/src/api-client-machine/models/transcoder-live-cluster.ts +42 -0
  207. package/src/api-client-machine/models/transcoder-live-to-component-cluster.ts +45 -0
  208. package/src/api-client-machine/models/transcoder-network.ts +42 -0
  209. package/src/api-client-machine/models/transcoder.ts +276 -0
  210. package/src/api-client-machine/models/update-app-config-dto-config-data.ts +33 -0
  211. package/src/api-client-machine/models/update-app-config-dto.ts +33 -0
  212. package/src/api-client-machine/models/update-app-config-of-sigma-vod-server-dto-config-data.ts +30 -0
  213. package/src/api-client-machine/models/update-app-config-of-sigma-vod-server-dto.ts +33 -0
  214. package/src/api-client-machine/models/update-component-cluster-dto.ts +72 -0
  215. package/src/api-client-machine/models/update-machine-cluster-dto.ts +63 -0
  216. package/src/api-client-machine/models/update-machine-dto.ts +42 -0
  217. package/src/api-client-machine/models/update-packager-live-cluster.ts +42 -0
  218. package/src/api-client-machine/models/update-packager-to-component-cluster.ts +51 -0
  219. package/src/api-client-machine/models/update-route-config-of-sigma-vod-server.ts +33 -0
  220. package/src/api-client-machine/models/update-route-config-sigma-machine.ts +42 -0
  221. package/src/api-client-machine/models/update-transcoder-live-cluster.ts +42 -0
  222. package/src/api-client-machine/models/update-transcoder-to-component-cluster.ts +45 -0
  223. package/src/api-client-machine/models/video-encoder.ts +56 -0
  224. package/src/api-client-machine/models/vodroute.ts +60 -0
  225. package/src/api-client-noti/.openapi-generator/FILES +13 -0
  226. package/src/api-client-noti/.openapi-generator/VERSION +1 -0
  227. package/src/api-client-noti/.openapi-generator-ignore +23 -0
  228. package/src/api-client-noti/api/notification-api.ts +386 -0
  229. package/src/api-client-noti/api.ts +18 -0
  230. package/src/api-client-noti/base.ts +72 -0
  231. package/src/api-client-noti/common.ts +150 -0
  232. package/src/api-client-noti/configuration.ts +101 -0
  233. package/src/api-client-noti/git_push.sh +57 -0
  234. package/src/api-client-noti/index.ts +18 -0
  235. package/src/api-client-noti/models/index.ts +2 -0
  236. package/src/api-client-noti/models/notification-collection.ts +57 -0
  237. package/src/api-client-noti/models/notification.ts +101 -0
  238. package/src/api-client-transcode/.openapi-generator/FILES +129 -0
  239. package/src/api-client-transcode/.openapi-generator/VERSION +1 -0
  240. package/src/api-client-transcode/.openapi-generator-ignore +23 -0
  241. package/src/api-client-transcode/api/alert-logs-apiapi.ts +281 -0
  242. package/src/api-client-transcode/api/channel-package-inputs-apiapi.ts +650 -0
  243. package/src/api-client-transcode/api/channel-transcode-inputs-apiapi.ts +650 -0
  244. package/src/api-client-transcode/api/channels-crudapiapi.ts +869 -0
  245. package/src/api-client-transcode/api/channels-job-action-apiapi.ts +434 -0
  246. package/src/api-client-transcode/api/drm-credentials-api.ts +525 -0
  247. package/src/api-client-transcode/api/event-channel-action-apiapi.ts +363 -0
  248. package/src/api-client-transcode/api/event-channel-crudapiapi.ts +545 -0
  249. package/src/api-client-transcode/api/fast-channel-action-apiapi.ts +301 -0
  250. package/src/api-client-transcode/api/fast-channel-apiapi.ts +525 -0
  251. package/src/api-client-transcode/api/fast-channel-programs-api-api.ts +525 -0
  252. package/src/api-client-transcode/api/multi-channel-action-apiapi.ts +387 -0
  253. package/src/api-client-transcode/api/sigma-transcode-live-interactive-action-api.ts +152 -0
  254. package/src/api-client-transcode/api/single-channel-action-apiapi.ts +1155 -0
  255. package/src/api-client-transcode/api/transcode-templates-apiapi.ts +541 -0
  256. package/src/api-client-transcode/api.ts +32 -0
  257. package/src/api-client-transcode/base.ts +71 -0
  258. package/src/api-client-transcode/common.ts +138 -0
  259. package/src/api-client-transcode/configuration.ts +101 -0
  260. package/src/api-client-transcode/git_push.sh +57 -0
  261. package/src/api-client-transcode/index.ts +18 -0
  262. package/src/api-client-transcode/models/ads-dto.ts +137 -0
  263. package/src/api-client-transcode/models/alert-log-collection.ts +55 -0
  264. package/src/api-client-transcode/models/audio-watermark-dto.ts +59 -0
  265. package/src/api-client-transcode/models/blackout-slate-dto.ts +36 -0
  266. package/src/api-client-transcode/models/catchup-dto.ts +43 -0
  267. package/src/api-client-transcode/models/channel-collection.ts +55 -0
  268. package/src/api-client-transcode/models/channel-config-advance-dto-info.ts +25 -0
  269. package/src/api-client-transcode/models/channel-config-advance-dto.ts +121 -0
  270. package/src/api-client-transcode/models/channel-config-advance-info-dto.ts +78 -0
  271. package/src/api-client-transcode/models/channel-config-base.ts +69 -0
  272. package/src/api-client-transcode/models/channel-config-blackout-entity.ts +36 -0
  273. package/src/api-client-transcode/models/channel-config-dto.ts +72 -0
  274. package/src/api-client-transcode/models/channel-config-interactive-entity.ts +30 -0
  275. package/src/api-client-transcode/models/channel-config-template-dto.ts +66 -0
  276. package/src/api-client-transcode/models/channel-detail-catchup-dto.ts +37 -0
  277. package/src/api-client-transcode/models/channel-detail-dto.ts +69 -0
  278. package/src/api-client-transcode/models/channel-detail-input.ts +43 -0
  279. package/src/api-client-transcode/models/channel-detail-package.ts +50 -0
  280. package/src/api-client-transcode/models/channel-detail-transcode.ts +37 -0
  281. package/src/api-client-transcode/models/channel-job-detail.ts +84 -0
  282. package/src/api-client-transcode/models/channel-stats.ts +36 -0
  283. package/src/api-client-transcode/models/channel-template-data-dto.ts +59 -0
  284. package/src/api-client-transcode/models/channel-template-dto-data.ts +28 -0
  285. package/src/api-client-transcode/models/channel-template-dto.ts +63 -0
  286. package/src/api-client-transcode/models/channel.ts +168 -0
  287. package/src/api-client-transcode/models/create-alert-log-dto.ts +138 -0
  288. package/src/api-client-transcode/models/create-channel-dto.ts +84 -0
  289. package/src/api-client-transcode/models/create-drm-credential-dto.ts +63 -0
  290. package/src/api-client-transcode/models/create-event-channel-dto-targets.ts +26 -0
  291. package/src/api-client-transcode/models/create-event-channel-dto.ts +76 -0
  292. package/src/api-client-transcode/models/create-fast-channel-dto.ts +42 -0
  293. package/src/api-client-transcode/models/create-fast-program-dto.ts +72 -0
  294. package/src/api-client-transcode/models/drm-credential-collection.ts +55 -0
  295. package/src/api-client-transcode/models/drm-credential-entity.ts +87 -0
  296. package/src/api-client-transcode/models/drm-data-dto.ts +54 -0
  297. package/src/api-client-transcode/models/drm-data-entity.ts +54 -0
  298. package/src/api-client-transcode/models/drm-dto.ts +103 -0
  299. package/src/api-client-transcode/models/event-channel-collection.ts +55 -0
  300. package/src/api-client-transcode/models/event-channel-config-dto.ts +78 -0
  301. package/src/api-client-transcode/models/event-channel-config-entity.ts +75 -0
  302. package/src/api-client-transcode/models/event-channel-input-dto.ts +45 -0
  303. package/src/api-client-transcode/models/event-channel-input-entity.ts +45 -0
  304. package/src/api-client-transcode/models/event-channel-transcoder-dto.ts +56 -0
  305. package/src/api-client-transcode/models/event-channel.ts +147 -0
  306. package/src/api-client-transcode/models/event-profile-dto.ts +62 -0
  307. package/src/api-client-transcode/models/event-target-data-dto.ts +95 -0
  308. package/src/api-client-transcode/models/event-target-dto.ts +49 -0
  309. package/src/api-client-transcode/models/fast-channel-collection.ts +55 -0
  310. package/src/api-client-transcode/models/fast-channel.ts +75 -0
  311. package/src/api-client-transcode/models/fast-program-collection.ts +55 -0
  312. package/src/api-client-transcode/models/fast-program.ts +84 -0
  313. package/src/api-client-transcode/models/fingerprint-dto.ts +42 -0
  314. package/src/api-client-transcode/models/index.ts +104 -0
  315. package/src/api-client-transcode/models/input-collection.ts +55 -0
  316. package/src/api-client-transcode/models/input-data-dto.ts +104 -0
  317. package/src/api-client-transcode/models/input-data-item-dto.ts +42 -0
  318. package/src/api-client-transcode/models/input-dto.ts +30 -0
  319. package/src/api-client-transcode/models/input-entity.ts +30 -0
  320. package/src/api-client-transcode/models/input-info-response.ts +31 -0
  321. package/src/api-client-transcode/models/input-info.ts +123 -0
  322. package/src/api-client-transcode/models/input-machine-config.ts +45 -0
  323. package/src/api-client-transcode/models/input-program.ts +66 -0
  324. package/src/api-client-transcode/models/interactive-dto.ts +30 -0
  325. package/src/api-client-transcode/models/interactive-publish-dto.ts +30 -0
  326. package/src/api-client-transcode/models/job-entity.ts +102 -0
  327. package/src/api-client-transcode/models/low-latency-dto.ts +68 -0
  328. package/src/api-client-transcode/models/machine-config-dto.ts +75 -0
  329. package/src/api-client-transcode/models/main-input-dto.ts +62 -0
  330. package/src/api-client-transcode/models/main-input-entity.ts +54 -0
  331. package/src/api-client-transcode/models/maintenance-dto.ts +30 -0
  332. package/src/api-client-transcode/models/manifest-dto.ts +62 -0
  333. package/src/api-client-transcode/models/package-input-collection.ts +55 -0
  334. package/src/api-client-transcode/models/package-input-data-dto.ts +99 -0
  335. package/src/api-client-transcode/models/package-input-list.ts +36 -0
  336. package/src/api-client-transcode/models/package-input.ts +115 -0
  337. package/src/api-client-transcode/models/post-input-dto.ts +48 -0
  338. package/src/api-client-transcode/models/post-input-entity.ts +48 -0
  339. package/src/api-client-transcode/models/pre-input-dto.ts +54 -0
  340. package/src/api-client-transcode/models/pre-input-entity.ts +54 -0
  341. package/src/api-client-transcode/models/preset-dto.ts +247 -0
  342. package/src/api-client-transcode/models/profile-default-response-dto.ts +30 -0
  343. package/src/api-client-transcode/models/profile-dto.ts +62 -0
  344. package/src/api-client-transcode/models/profile-entity.ts +60 -0
  345. package/src/api-client-transcode/models/scte35-dto.ts +36 -0
  346. package/src/api-client-transcode/models/start-over-dto.ts +30 -0
  347. package/src/api-client-transcode/models/switch-input-dto.ts +56 -0
  348. package/src/api-client-transcode/models/switch-input-entity.ts +44 -0
  349. package/src/api-client-transcode/models/target-data-dto.ts +101 -0
  350. package/src/api-client-transcode/models/target-dto.ts +44 -0
  351. package/src/api-client-transcode/models/target-entity.ts +55 -0
  352. package/src/api-client-transcode/models/target-profile-dto.ts +71 -0
  353. package/src/api-client-transcode/models/target-profile.ts +71 -0
  354. package/src/api-client-transcode/models/target-template-dto.ts +44 -0
  355. package/src/api-client-transcode/models/target-update-dto.ts +50 -0
  356. package/src/api-client-transcode/models/transcode-input.ts +144 -0
  357. package/src/api-client-transcode/models/transcoder.ts +36 -0
  358. package/src/api-client-transcode/models/trick-play-dto.ts +54 -0
  359. package/src/api-client-transcode/models/update-channel-dto-targets.ts +27 -0
  360. package/src/api-client-transcode/models/update-channel-dto.ts +84 -0
  361. package/src/api-client-transcode/models/update-drm-management-dto.ts +63 -0
  362. package/src/api-client-transcode/models/update-event-channel-dto.ts +76 -0
  363. package/src/api-client-transcode/models/update-fast-channel-dto.ts +42 -0
  364. package/src/api-client-transcode/models/update-fast-program-dto.ts +30 -0
  365. package/src/api-client-transcode/models/watermark-dto.ts +66 -0
  366. package/src/api-client-transcode/models/watermark-entity.ts +102 -0
  367. package/src/app/spa-loading-template.html +127 -0
  368. package/src/app.config.ts +2 -0
  369. package/src/assets/global.css.ts +3 -0
  370. package/src/assets/scss/element/dark.scss +13 -0
  371. package/src/assets/scss/element/index.scss +26 -0
  372. package/src/assets/scss/index.scss +181 -0
  373. package/src/components/AdvancedFilter/SSAdvancedFilterItem.vue +180 -0
  374. package/src/components/AdvancedFilter/SSAdvancedFilterItemCustom.vue +165 -0
  375. package/src/components/AdvancedFilter/SSAdvancedFilterItemDefined.vue +298 -0
  376. package/src/components/AdvancedFilter/SSAdvancedFilterItemSchedule.vue +293 -0
  377. package/src/components/AdvancedFilter/SSAdvancedFilterMain.vue +196 -0
  378. package/src/components/AdvancedFilter/types.ts +37 -0
  379. package/src/components/AdvancedFilterReport/SSAdvancedFilterReportItem.vue +110 -0
  380. package/src/components/AdvancedFilterReport/SSAdvancedFilterReportItemDefined.vue +159 -0
  381. package/src/components/AdvancedFilterReport/SSAdvancedFilterReportMain.vue +197 -0
  382. package/src/components/AdvancedFilterReport/types.ts +19 -0
  383. package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiItem.vue +102 -0
  384. package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiItemDefined.vue +119 -0
  385. package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiMain.vue +194 -0
  386. package/src/components/AdvancedFilterSsai/types.ts +19 -0
  387. package/src/components/Asset/AssetAddPlaylist.vue +169 -0
  388. package/src/components/Asset/AssetExtra.vue +46 -0
  389. package/src/components/Asset/AssetImportLinks.vue +281 -0
  390. package/src/components/Asset/AssetInfiniteSelect.vue +62 -0
  391. package/src/components/Asset/AssetItem.vue +194 -0
  392. package/src/components/Asset/AssetItemPreview.vue +117 -0
  393. package/src/components/Asset/AssetList.vue +869 -0
  394. package/src/components/Asset/AssetMeta.vue +97 -0
  395. package/src/components/Asset/AssetPicker.vue +204 -0
  396. package/src/components/Asset/AssetPlaylist.vue +414 -0
  397. package/src/components/Asset/AssetPlaylistInfiniteSelect.vue +136 -0
  398. package/src/components/Asset/AssetPlaylistModalAdd.vue +138 -0
  399. package/src/components/Asset/AssetPreview.vue +89 -0
  400. package/src/components/Asset/AssetShareModal.vue +131 -0
  401. package/src/components/Asset/AssetTable.vue +365 -0
  402. package/src/components/Asset/FormUploadAsset.vue +647 -0
  403. package/src/components/Asset/FormUploadAssetItem.vue +115 -0
  404. package/src/components/Asset/FormUploadAssetProgress.vue +161 -0
  405. package/src/components/Asset/Scrubber.vue +57 -0
  406. package/src/components/Asset/VideoPlayer.vue +226 -0
  407. package/src/components/Asset/VideoPreview.vue +102 -0
  408. package/src/components/Asset/VideoPreviewConfig.vue +329 -0
  409. package/src/components/Asset/VideoPreviewConfigMessage.vue +120 -0
  410. package/src/components/Asset/VideoPreviewConfigVod.vue +287 -0
  411. package/src/components/Asset/VideoPreviewNew.vue +66 -0
  412. package/src/components/Asset/VideoPreviewNewLoader.vue +144 -0
  413. package/src/components/Asset/VideoPreviewWrapper.vue +208 -0
  414. package/src/components/Asset/asset-context.ts +24 -0
  415. package/src/components/Asset/usePickerStore.ts +55 -0
  416. package/src/components/AuthLayout/AuthLayoutSimple.vue +150 -0
  417. package/src/components/AuthLayout/index.vue +151 -0
  418. package/src/components/AutoRefresh/AutoRefresh.vue +91 -0
  419. package/src/components/AutoRefresh/AutoRefreshOld.vue +87 -0
  420. package/src/components/AutoRefresh/useRefresh.ts +93 -0
  421. package/src/components/BackButton.vue +13 -0
  422. package/src/components/Card/CardInfo.vue +21 -0
  423. package/src/components/Channel/AIConfig.vue +101 -0
  424. package/src/components/Channel/AdvancedForm.vue +542 -0
  425. package/src/components/Channel/ChannelListGrid.vue +154 -0
  426. package/src/components/Channel/ConfigBlackout.vue +98 -0
  427. package/src/components/Channel/ConfigCensorship.vue +387 -0
  428. package/src/components/Channel/ConfigForensicWatermark.vue +152 -0
  429. package/src/components/Channel/ConfigForm.vue +102 -0
  430. package/src/components/Channel/ConfigInformation.vue +191 -0
  431. package/src/components/Channel/ConfigInteraction.vue +11 -0
  432. package/src/components/Channel/ConfigNameModifier.vue +15 -0
  433. package/src/components/Channel/ConfigOptionItem.vue +114 -0
  434. package/src/components/Channel/ConfigOptions.vue +181 -0
  435. package/src/components/Channel/ConfigPte.vue +368 -0
  436. package/src/components/Channel/ConfigScte.vue +442 -0
  437. package/src/components/Channel/ConfigTranscoder.vue +353 -0
  438. package/src/components/Channel/ConfigWaterMarkAudio.vue +52 -0
  439. package/src/components/Channel/ConfigWatermark.vue +76 -0
  440. package/src/components/Channel/ConfigWatermarkEventChannel.vue +86 -0
  441. package/src/components/Channel/ConfigWatermarkItem.vue +239 -0
  442. package/src/components/Channel/HeaderItem.vue +75 -0
  443. package/src/components/Channel/InputDetail.vue +68 -0
  444. package/src/components/Channel/InputForm.vue +175 -0
  445. package/src/components/Channel/InputList.vue +38 -0
  446. package/src/components/Channel/InputPackageDetail.vue +125 -0
  447. package/src/components/Channel/MediaProfileFormModal.vue +79 -0
  448. package/src/components/Channel/MediaProfileModify.vue +229 -0
  449. package/src/components/Channel/MessageButtonGetHelp.vue +30 -0
  450. package/src/components/Channel/MessageTooltipAi.vue +29 -0
  451. package/src/components/Channel/MultipleSelectProfile.vue +312 -0
  452. package/src/components/Channel/PackageInputItem.vue +13 -0
  453. package/src/components/Channel/PresetConfigItem.vue +1957 -0
  454. package/src/components/Channel/PresetConfigItemExtra.vue +59 -0
  455. package/src/components/Channel/PresetConfigItemPId.vue +145 -0
  456. package/src/components/Channel/ProfileConfigItem.vue +829 -0
  457. package/src/components/Channel/ProfileDetailsList.vue +160 -0
  458. package/src/components/Channel/ProfileForm.vue +134 -0
  459. package/src/components/Channel/ProfileList.vue +228 -0
  460. package/src/components/Channel/SelectServer.vue +134 -0
  461. package/src/components/Channel/SignalLoss.vue +92 -0
  462. package/src/components/Channel/SwitchInputButton.vue +38 -0
  463. package/src/components/Channel/TargetCatchup.vue +75 -0
  464. package/src/components/Channel/TargetDataInfo.vue +100 -0
  465. package/src/components/Channel/TargetDestination.vue +375 -0
  466. package/src/components/Channel/TargetDrm.vue +518 -0
  467. package/src/components/Channel/TargetForm.vue +136 -0
  468. package/src/components/Channel/TargetList.vue +159 -0
  469. package/src/components/Channel/TargetLowLatency.vue +107 -0
  470. package/src/components/Channel/TargetMabrOutput.vue +58 -0
  471. package/src/components/Channel/TargetMabrOutputItem.vue +91 -0
  472. package/src/components/Channel/TargetManifest.vue +94 -0
  473. package/src/components/Channel/TargetNetworkInterface.vue +95 -0
  474. package/src/components/Channel/TargetOutputMultiplex.vue +237 -0
  475. package/src/components/Channel/TargetOutputType.vue +201 -0
  476. package/src/components/Channel/TargetOutputUdp.vue +200 -0
  477. package/src/components/Channel/TargetPreset.vue +541 -0
  478. package/src/components/Channel/TargetProfileAudioGroup.vue +27 -0
  479. package/src/components/Channel/TargetProfileProgram.vue +43 -0
  480. package/src/components/Channel/TargetProfileURI.vue +68 -0
  481. package/src/components/Channel/TargetSrtOutput.vue +35 -0
  482. package/src/components/Channel/TargetSrtOutputItem.vue +83 -0
  483. package/src/components/Channel/TargetStartover.vue +40 -0
  484. package/src/components/Channel/WarningName.vue +39 -0
  485. package/src/components/Channel/WarningOutput.vue +40 -0
  486. package/src/components/CollapseTagsTooltip/CollapseTagsTooltip.vue +87 -0
  487. package/src/components/CollapseTagsTooltip/index.ts +1 -0
  488. package/src/components/CopyButton.vue +46 -0
  489. package/src/components/CopyText.vue +40 -0
  490. package/src/components/CopyTextButton.vue +40 -0
  491. package/src/components/DefaultLayout/DefaultLayout.vue +134 -0
  492. package/src/components/DefaultLayout/GlobalASide.vue +75 -0
  493. package/src/components/DefaultLayout/GlobalFooter.vue +15 -0
  494. package/src/components/DefaultLayout/GlobalHeader.vue +43 -0
  495. package/src/components/DefaultLayout/Logo.vue +35 -0
  496. package/src/components/DefaultLayout/Menu.vue +464 -0
  497. package/src/components/DefaultLayout/RightMenu.vue +93 -0
  498. package/src/components/DialogWarningAddLicense.vue +37 -0
  499. package/src/components/Epg/Epg.vue +24 -0
  500. package/src/components/Epg/components/Channel.vue +28 -0
  501. package/src/components/Epg/components/Channels.vue +33 -0
  502. package/src/components/Epg/components/Layout.vue +121 -0
  503. package/src/components/Epg/components/Line.vue +41 -0
  504. package/src/components/Epg/components/Loader.vue +23 -0
  505. package/src/components/Epg/components/Program.vue +101 -0
  506. package/src/components/Epg/components/SideBar.vue +18 -0
  507. package/src/components/Epg/components/Timeline.vue +72 -0
  508. package/src/components/Epg/helpers/common.ts +68 -0
  509. package/src/components/Epg/helpers/epg.ts +192 -0
  510. package/src/components/Epg/helpers/index.ts +5 -0
  511. package/src/components/Epg/helpers/interfaces.ts +54 -0
  512. package/src/components/Epg/helpers/time.ts +51 -0
  513. package/src/components/Epg/helpers/types.ts +26 -0
  514. package/src/components/Epg/helpers/variables.ts +33 -0
  515. package/src/components/Epg/hooks/index.ts +2 -0
  516. package/src/components/Epg/hooks/useEpg.ts +160 -0
  517. package/src/components/Epg/hooks/useLayout.ts +187 -0
  518. package/src/components/Epg/hooks/useProgram.ts +63 -0
  519. package/src/components/Epg/hooks/useTimeline.ts +35 -0
  520. package/src/components/Epg/index.ts +4 -0
  521. package/src/components/Epg/store.ts +85 -0
  522. package/src/components/Epg/theme.ts +44 -0
  523. package/src/components/Exception/403.png +0 -0
  524. package/src/components/Exception/403.vue +58 -0
  525. package/src/components/Exception/404.png +0 -0
  526. package/src/components/Exception/404.vue +59 -0
  527. package/src/components/Exception/500.png +0 -0
  528. package/src/components/Exception/500.vue +39 -0
  529. package/src/components/Exception/index.scss +30 -0
  530. package/src/components/Field.vue +193 -0
  531. package/src/components/FilterQuerySchema/FilterQuerySchemaForm.vue +200 -0
  532. package/src/components/FilterQuerySchema/QueryTag.vue +109 -0
  533. package/src/components/FilterQuerySchema/Tag.vue +68 -0
  534. package/src/components/FilterTimeDimensions.vue +265 -0
  535. package/src/components/FilterTimeDimensionsSingle.vue +214 -0
  536. package/src/components/HelpPanel.vue +87 -0
  537. package/src/components/HexagonPro.vue +7 -0
  538. package/src/components/IconCopyButton.vue +43 -0
  539. package/src/components/InformationLabel.vue +67 -0
  540. package/src/components/Input/InputTags.vue +136 -0
  541. package/src/components/Input/index.ts +1 -0
  542. package/src/components/MainDefaultLayout/index.vue +120 -0
  543. package/src/components/NoticeAddLicense.vue +20 -0
  544. package/src/components/NoticeRunningOutResources.vue +20 -0
  545. package/src/components/Pagination.vue +61 -0
  546. package/src/components/QueryBuilder/QueryBuilder.vue +141 -0
  547. package/src/components/QueryBuilder/components/inputs/DateInputField.vue +105 -0
  548. package/src/components/QueryBuilder/components/inputs/FieldSelect.vue +44 -0
  549. package/src/components/QueryBuilder/components/inputs/InputMultiSelect.vue +60 -0
  550. package/src/components/QueryBuilder/components/inputs/InputSelect.vue +39 -0
  551. package/src/components/QueryBuilder/components/inputs/NumberInputField.vue +91 -0
  552. package/src/components/QueryBuilder/components/inputs/OperatorSelect.vue +59 -0
  553. package/src/components/QueryBuilder/components/inputs/TextInput.vue +40 -0
  554. package/src/components/QueryBuilder/components/inputs/TimeInputField.vue +114 -0
  555. package/src/components/QueryBuilder/components/inputs/logics.ts +27 -0
  556. package/src/components/QueryBuilder/components/item/InputMultiOptions.vue +56 -0
  557. package/src/components/QueryBuilder/components/item/QueryGroup.vue +71 -0
  558. package/src/components/QueryBuilder/components/item/QueryGroupActions.vue +76 -0
  559. package/src/components/QueryBuilder/components/item/QueryRule.vue +233 -0
  560. package/src/components/QueryBuilder/useConfigStore.ts +27 -0
  561. package/src/components/QueryBuilder/utils/config.ts +194 -0
  562. package/src/components/QueryBuilder/utils/index.ts +3 -0
  563. package/src/components/QueryBuilder/utils/mongodb.ts +175 -0
  564. package/src/components/QueryBuilder/utils/rules.ts +213 -0
  565. package/src/components/RecommendedConfigurationPTE.vue +238 -0
  566. package/src/components/Server/MachineConfig.vue +333 -0
  567. package/src/components/Server/ServerConfig.vue +599 -0
  568. package/src/components/Server/useQueryMachine.ts +380 -0
  569. package/src/components/Server/validator.ts +13 -0
  570. package/src/components/SwitchDark.vue +19 -0
  571. package/src/components/SwitchLang.vue +31 -0
  572. package/src/components/TableEmpty.vue +50 -0
  573. package/src/components/Toast/ToastNoti.vue +52 -0
  574. package/src/components/Tool/ForensicWatermarkingDialog.vue +39 -0
  575. package/src/components/Tool/FormRecord.vue +162 -0
  576. package/src/components/Tool/FormUpload.vue +118 -0
  577. package/src/components/Tool/ResultChecking.vue +103 -0
  578. package/src/components/Tool/Watermarking.vue +159 -0
  579. package/src/components/Tool/record.js +92 -0
  580. package/src/components/Tooltip/Ellipsis.vue +52 -0
  581. package/src/components/Tooltip/index.vue +47 -0
  582. package/src/components/app/AppList.vue +50 -0
  583. package/src/components/button/Button.vue +27 -0
  584. package/src/components/button/index.ts +37 -0
  585. package/src/components/context-menu/ContextMenu.vue +15 -0
  586. package/src/components/context-menu/ContextMenuCheckboxItem.vue +39 -0
  587. package/src/components/context-menu/ContextMenuContent.vue +35 -0
  588. package/src/components/context-menu/ContextMenuGroup.vue +11 -0
  589. package/src/components/context-menu/ContextMenuItem.vue +33 -0
  590. package/src/components/context-menu/ContextMenuLabel.vue +24 -0
  591. package/src/components/context-menu/ContextMenuPortal.vue +11 -0
  592. package/src/components/context-menu/ContextMenuRadioGroup.vue +19 -0
  593. package/src/components/context-menu/ContextMenuRadioItem.vue +39 -0
  594. package/src/components/context-menu/ContextMenuSeparator.vue +19 -0
  595. package/src/components/context-menu/ContextMenuShortcut.vue +13 -0
  596. package/src/components/context-menu/ContextMenuSub.vue +19 -0
  597. package/src/components/context-menu/ContextMenuSubContent.vue +34 -0
  598. package/src/components/context-menu/ContextMenuSubTrigger.vue +33 -0
  599. package/src/components/context-menu/ContextMenuTrigger.vue +13 -0
  600. package/src/components/context-menu/index.ts +14 -0
  601. package/src/components/dashboard/SSDashboardChartRoot.vue +18 -0
  602. package/src/components/dashboard/SSDashboardDocument.vue +45 -0
  603. package/src/components/dashboard/SSDashboardEmpty.vue +16 -0
  604. package/src/components/dashboard/SSDashboardGuideline.vue +45 -0
  605. package/src/components/dashboard/SSDashboardInfo.vue +36 -0
  606. package/src/components/dashboard/SSDashboardInfoRoot.vue +9 -0
  607. package/src/components/dashboard/SSDashboardInfoTime.vue +38 -0
  608. package/src/components/markdown/Markdown.vue +295 -0
  609. package/src/components/tabs/Tabs.vue +15 -0
  610. package/src/components/tabs/TabsContent.vue +22 -0
  611. package/src/components/tabs/TabsList.vue +22 -0
  612. package/src/components/tabs/TabsTrigger.vue +26 -0
  613. package/src/composables/asset.ts +13 -0
  614. package/src/composables/channel.ts +333 -0
  615. package/src/composables/country.ts +788 -0
  616. package/src/composables/error.ts +24 -0
  617. package/src/composables/form.ts +351 -0
  618. package/src/composables/getBuildTime.ts +7 -0
  619. package/src/composables/micro.ts +113 -0
  620. package/src/composables/microState.ts +22 -0
  621. package/src/composables/notiGlobal.ts +19 -0
  622. package/src/composables/plan.ts +162 -0
  623. package/src/composables/refReset.ts +12 -0
  624. package/src/composables/resetInfiniteQueryPagination.ts +18 -0
  625. package/src/composables/route.ts +19 -0
  626. package/src/composables/toast.ts +21 -0
  627. package/src/composables/useApp.ts +6 -0
  628. package/src/composables/useAsyncSchema.ts +58 -0
  629. package/src/composables/useChannelActions.ts +151 -0
  630. package/src/composables/useComplexSearchParam.ts +293 -0
  631. package/src/composables/useFilterSchema.ts +106 -0
  632. package/src/composables/useGetInputDetail.ts +36 -0
  633. package/src/composables/useGetServerAddLicense.ts +21 -0
  634. package/src/composables/useJobPreview.ts +438 -0
  635. package/src/composables/useLayoutStore.ts +106 -0
  636. package/src/composables/usePermission.ts +5 -0
  637. package/src/composables/usePickerStore.ts +53 -0
  638. package/src/composables/useQueryAssets.ts +56 -0
  639. package/src/composables/useQueryParams.ts +20 -0
  640. package/src/composables/useRouteParams.ts +36 -0
  641. package/src/composables/useRouteQueries.ts +54 -0
  642. package/src/composables/useRouterHistory.ts +76 -0
  643. package/src/composables/useSearchQuery.ts +27 -0
  644. package/src/composables/useTooltipEllipsis.ts +12 -0
  645. package/src/constants/env.ts +11 -0
  646. package/src/constants/filterable.ts +32 -0
  647. package/src/constants/languageCode.ts +185 -0
  648. package/src/constants/micro.ts +1 -0
  649. package/src/constants/queryKeys.ts +11 -0
  650. package/src/constants/regex.ts +8 -0
  651. package/src/constants/storage.ts +41 -0
  652. package/src/enums/index.ts +24 -0
  653. package/src/layouts/empty.vue +7 -0
  654. package/src/modules/api-party/kit.ts +30 -0
  655. package/src/modules/api-party/module.ts +259 -0
  656. package/src/modules/api-party/openapi.ts +74 -0
  657. package/src/modules/api-party/runtime/composables/$api.ts +157 -0
  658. package/src/modules/api-party/runtime/composables/useApiData.ts +229 -0
  659. package/src/modules/api-party/runtime/constants.ts +1 -0
  660. package/src/modules/api-party/runtime/formData.ts +85 -0
  661. package/src/modules/api-party/runtime/server/$api.ts +29 -0
  662. package/src/modules/api-party/runtime/server/handler.ts +92 -0
  663. package/src/modules/api-party/runtime/types.ts +97 -0
  664. package/src/modules/api-party/runtime/utils.ts +43 -0
  665. package/src/pages/403.vue +11 -0
  666. package/src/pages/500.vue +11 -0
  667. package/src/pages/[...all].vue +11 -0
  668. package/src/pages/login.vue +67 -0
  669. package/src/plugins/auth.ts +10 -0
  670. package/src/plugins/build-time.ts +5 -0
  671. package/src/plugins/dayjs.ts +14 -0
  672. package/src/plugins/i18n.ts +6 -0
  673. package/src/plugins/router.ts +6 -0
  674. package/src/plugins/vue-json-pretty.ts +5 -0
  675. package/src/plugins/vue-query.ts +41 -0
  676. package/src/plugins/wujie.ts +19 -0
  677. package/src/public/apple-touch-icon.png +0 -0
  678. package/src/public/audio-recorder.js +31 -0
  679. package/src/public/build-time.json +1 -0
  680. package/src/public/favicon.ico +0 -0
  681. package/src/public/icon-block-free-app.png +0 -0
  682. package/src/public/maskable-icon.png +0 -0
  683. package/src/public/nuxt.svg +3 -0
  684. package/src/public/preview/step-1.png +0 -0
  685. package/src/public/preview/step-2.png +0 -0
  686. package/src/public/preview/step-3.png +0 -0
  687. package/src/public/pwa-192x192.png +0 -0
  688. package/src/public/pwa-512x512.png +0 -0
  689. package/src/public/robots.txt +2 -0
  690. package/src/public/vite.png +0 -0
  691. package/src/pwa/config.ts +61 -0
  692. package/src/pwa/index.ts +194 -0
  693. package/src/pwa/runtime/VitePwaManifest.ts +33 -0
  694. package/src/pwa/types.ts +56 -0
  695. package/src/pwa/utils.ts +16 -0
  696. package/src/schemas/authServiceApi.json +6709 -0
  697. package/src/schemas/billingApi.json +1083 -0
  698. package/src/schemas/chatApi.json +497 -0
  699. package/src/schemas/libraryApi.json +2009 -0
  700. package/src/schemas/licenseApi.json +772 -0
  701. package/src/schemas/livestreamApi.json +3354 -0
  702. package/src/schemas/lrmApi.json +2848 -0
  703. package/src/schemas/machineApi.json +4604 -0
  704. package/src/schemas/metricApi.json +141 -0
  705. package/src/schemas/notificationApi.json +1 -0
  706. package/src/schemas/playoutApi.json +8315 -0
  707. package/src/schemas/ssaiApi.json +1108 -0
  708. package/src/schemas/transcodeApi.json +9670 -0
  709. package/src/schemas/vastControlApi.json +961 -0
  710. package/src/schemas/vodApi.json +3974 -0
  711. package/src/server/plugins/loading.css +111 -0
  712. package/src/server/plugins/loading.html +12 -0
  713. package/src/server/plugins/loading.ts +134 -0
  714. package/src/templates/pwa.client.ts +136 -0
  715. package/src/utils/$apiOptions.ts +79 -0
  716. package/src/utils/app.ts +23 -0
  717. package/src/utils/cn.ts +3 -0
  718. package/src/utils/format.ts +88 -0
  719. package/src/utils/gen-routes.ts +100 -0
  720. package/src/utils/helper.ts +56 -0
  721. package/src/utils/micro.ts +207 -0
  722. package/src/utils/popoverSelectAttrs.ts +24 -0
  723. package/src/utils/popup.ts +96 -0
  724. package/src/utils/pwa.ts +86 -0
  725. package/src/utils/query-filter.ts +111 -0
  726. package/src/utils/table.ts +35 -0
  727. package/src/utils/tryCatch.ts +25 -0
  728. package/src/utils/utils.ts +58 -0
  729. package/src/utils/validator.ts +185 -0
  730. package/src/utils/videojs.ts +490 -0
  731. package/src/utils/wujie.ts +1 -0
  732. package/tsconfig.json +3 -0
  733. package/uno.config.ts +375 -0
@@ -0,0 +1,719 @@
1
+ '403':
2
+ messsage_mutation: Your account is currently view-only and does not have editing permissions
3
+ Actions:
4
+ add: Add
5
+ apply: Apply
6
+ back: Back
7
+ cancel: Cancel
8
+ load_more: Load More
9
+ 'no': 'No'
10
+ ok: OK
11
+ run: Run
12
+ save_and_run: Save and Run
13
+ save_as_copy: Save as copy
14
+ submit: Submit
15
+ upgrade_version: Upgrade version
16
+ 'yes': 'Yes'
17
+ Asset:
18
+ upload_success: Upload success
19
+ Channel:
20
+ actions:
21
+ 'off': 'off'
22
+ 'on': 'on'
23
+ reset: reset
24
+ start: start
25
+ stop: stop
26
+ blackout_activated_successfully: Blackout activated successfully!
27
+ blackout_deactivated_successfully: Blackout deactivated successfully!
28
+ confirmMessage: Are you sure you want to {action} this channel?
29
+ confirmMessageTurnOnSwitchBlackout: Are you sure you want to turn {action} blackout for {name} channel?
30
+ confirmTitle: Confirm
31
+ form:
32
+ label:
33
+ DrmSystem: Drm System
34
+ Header: Header
35
+ content: Content
36
+ endpoint: Endpoint
37
+ placeholder_endpoint: http://example.com
38
+ validate:
39
+ formatContentId: Content ID includes valid characters (A-Z, a-z, 0-9, "-", "_")
40
+ requiredContentId: Please input Content ID
41
+ requiredDrmSystem: Please input Drm System
42
+ requiredEndpoint: Please input Endpoint
43
+ requiredEnvironment: Please input Environment
44
+ requiredHeaders: Please input Headers
45
+ requiredHeadersKey: Please input Key
46
+ requiredHeadersValue: Please input Value
47
+ requiredKey: Please input Key
48
+ requiredKeyId: Please input Key ID
49
+ requiredKeyUri: Please input Key URI
50
+ requiredUriKeyIdTranscode: 'Please enter protocol: http:// or https://'
51
+ requiredValue: Please input Value
52
+ output_aspect_ratio: Frame Size
53
+ reset_channel_successfully: Restart channel successfully!
54
+ restart_channel: Restart channel
55
+ start_channel: Start channel
56
+ start_channel_successfully: Start channel successfully!
57
+ stop_channel: Stop channel
58
+ stop_channel_successfully: Stop channel successfully!
59
+ turn_off_blackout: Turn off blackout
60
+ turn_on_blackout: Turn on blackout
61
+ warning: Warning
62
+ Dashboard:
63
+ api_documentation: API Documentation
64
+ developer_guide: Developer guide
65
+ documentation: Documentation
66
+ faqs: FAQs
67
+ getting_started: Getting Started
68
+ glossary: Glossary
69
+ overview: Overview
70
+ see_more: See more
71
+ transcode_channels: Transcode Channels
72
+ user_guide: User guide
73
+ DateTime:
74
+ dateRange: Date range
75
+ timeRange: Time range
76
+ EventChannel:
77
+ placeholder:
78
+ enter: Enter
79
+ Filter:
80
+ operator:
81
+ begins_with: Begins With
82
+ between: Between
83
+ contains: Contains
84
+ ends_with: Ends With
85
+ equal: Equal
86
+ greater: Greater
87
+ greater_or_equal: Greater Or Equal
88
+ in: In
89
+ is_empty: Is Empty
90
+ is_not_empty: Is Not Empty
91
+ is_not_null: Is Not Null
92
+ is_null: Is Null
93
+ less: Less
94
+ less_or_equal: Less Or Equal
95
+ not_begins_with: Not Begins With
96
+ not_between: Not Between
97
+ not_contains: Not Contains
98
+ not_ends_with: Not Ends With
99
+ not_equal: Not Equal
100
+ not_in: Not In
101
+ GPU:
102
+ requires_gpu_to_enable_this_feature: Requires GPU to enable this feature
103
+ Preset:
104
+ list: Preset List
105
+ Profile:
106
+ list: Profiles
107
+ ReportSchedule:
108
+ add_people_to_receive_this_report: Add people to receive this report
109
+ add_recipients: Add recipients
110
+ choose_when_the_report_is_generated_and_sent: Choose when the report is generated and sent
111
+ duplicate-email: Email is duplicated, please enter another email
112
+ invalid-email-address: Invalid email address
113
+ limit-member: Maximum limit reached! You can add only up to 20 emails
114
+ please_input_the_email_recipients: Please input the email recipients
115
+ repeat_on: Repeat on
116
+ schedule: Schedule
117
+ scheduled_time: Scheduled Time
118
+ send_now: Send now
119
+ the_report_will_be_sent_on_the_first_day_of_each_month_at: The report will be sent on the first day of each month at
120
+ the_report_will_be_sent_weekly_on_the_selected_days_at: The report will be sent weekly on the selected days at
121
+ this_report_will_be_generated_and_sent_daily_at: This report will be generated and sent daily at
122
+ you_must_select_at_least_one_day_of_the_week_for_weekly_report: You must select at least one day of the week for weekly report
123
+ SSConfig:
124
+ add_ouput: Add ouput
125
+ adobe_protocol_for_adaptive_bitrate_streaming_via_http: Adobe protocol for adaptive bitrate streaming via HTTP.
126
+ adobe_protocol_for_low-latency_video_and_audio_streaming: Adobe protocol for low-latency video and audio streaming.
127
+ ai-based_detection_insertion_scte-35: >-
128
+ AI-based ad detection and insertion using SCTE-35 signals for seamless
129
+ integration.
130
+ apple_protocol_for_streaming_live: Apple protocol for streaming live
131
+ are_you_sure_you_want_to_delete: Are you sure you want to delete?
132
+ aspect_ratio: Aspect Ratio
133
+ assetId: Please input Asset ID
134
+ asset_not_found: Asset not found
135
+ audiorate_khong_duoc_be_hon_minrate: Bitrate cannot be less than 32000 and greater than 2000000
136
+ base_on_machine: Server Config
137
+ buffsize_cannot_be_less_than_64000_and_greater_than_60000000: Buffsize cannot be less than 10000 and greater than 60000000
138
+ cbr_less_0_greater_51: CQ cannot be less than 0 and greater than 51
139
+ channel_name: channel name
140
+ check_preset_video_audio_profile: Profile must have at least 1 video or 1 audio, please check {0}
141
+ codec_detail: Codec Detail
142
+ color_space: Color Space
143
+ combined_use_of_hls_and_dash_for_broader_compatibility: Combined use of HLS and DASH for broader compatibility.
144
+ config_server: Config Server
145
+ create_profile: Create Profile
146
+ dash_multicast_adaptive_bitrate: (DASH Multicast Adaptive Bitrate)
147
+ deleted_successfully: Deleted successfully!
148
+ duplicate_profile: Duplicate Profile
149
+ dynamic_adaptive_streaming_over_http: (Dynamic Adaptive Streaming over HTTP)
150
+ enable_label: Enable
151
+ enhances_dash_with_multicast_for_scalable_live_streaming: Enhances DASH with multicast for scalable live streaming.
152
+ enter_the_pid_placeholder: Enter the PID (in decimal or hexadecimal format, e.g., 100 or 0x64)
153
+ example_path_to_model: 'example: /path/to/model'
154
+ form:
155
+ label:
156
+ DrmSystem: Drm System
157
+ Header: Header
158
+ baseOnMachine: Based on Server
159
+ channelConfig: Channel Config
160
+ content: Content
161
+ enable: Enable
162
+ endpoint: Endpoint
163
+ filter: Filter
164
+ key: Key
165
+ key_placeholder: Input UUID
166
+ placeholder_endpoint: http://example.com
167
+ playlist: Playlist
168
+ serverConfig: Server Config
169
+ time: Time
170
+ placeholder:
171
+ enterDescription: Enter Description
172
+ enterName: Enter name
173
+ validate:
174
+ channel_mode: Please select Channel mode
175
+ existMachine: Server does not exist
176
+ formatContentId: Content ID includes valid characters (A-Z, a-z, 0-9, "-", "_")
177
+ formatDescription: Description includes valid characters (A-Z, a-z, 0-9, "-", "_", " ")
178
+ formatName: Name includes valid characters (A-Z, a-z, 0-9, "-", "_")
179
+ formatUUID: The {field} field format is not a valid UUID
180
+ formatUri: The uri field format is invalid
181
+ length: Length should be {min} to {max}
182
+ primary: Please input URI
183
+ require: Shouldn't be empty
184
+ requireBlackout: Please select blackout
185
+ requireProfile: Please select profiles
186
+ requireTranscoder: Please select transcoder
187
+ requiredContentId: Please input Key URI
188
+ requiredDrmSystem: Please input Drm System
189
+ requiredEndpoint: Please input Endpoint
190
+ requiredEnvironment: Please input Environment
191
+ requiredKey: Please input Key
192
+ requiredKeyId: Please input Key ID
193
+ requiredKeyUri: Please input Key URI
194
+ requiredUriKeyIdTranscode: '''Please enter protocol: http:// or https://'''
195
+ requrieDrm: Please select DRM credentials
196
+ setup_type: Please select Setup type
197
+ type: Please select type
198
+ fps_less_10_greater_60: FPS cannot be less than 10 and greater than 60
199
+ frame_rate: Frame Rate
200
+ general_information: General Information
201
+ gop_size: Gop Size
202
+ gop_value_required: Gop size is required
203
+ gopsize_cannot_be_less_than_17_and_greater_than_300: Frame cannot be less than 17 and greater than 300
204
+ height_less_0_greater_7680: Height cannot be less than 0 and greater than 4320
205
+ http_dynamic_streaming: (HTTP Dynamic Streaming)
206
+ http_live_streaming: (HTTP Live Streaming)
207
+ input_pid_cannot_exceed_50_characters: Input PID cannot exceed 50 characters
208
+ invalid_ip: Invalid ip
209
+ invalid_url: Invalid URI
210
+ label:
211
+ channel_mode: Channel Mode
212
+ cluster: Cluster
213
+ description: Description
214
+ machineType: Server Type
215
+ machines: Servers
216
+ mode: Mode
217
+ name: Name
218
+ name-modifier: Name modifier
219
+ primaryServer: Primary server
220
+ primarySource: Primary Source
221
+ primary_sdi_backup_input: Primary SDI Input Backup Server
222
+ primary_sdi_input: Primary SDI Input
223
+ profiles: Profiles
224
+ secondarySource: Secondary Source
225
+ secondary_sdi_backup_input: Secondary SDI Input Backup Server
226
+ secondary_sdi_input: Secondary SDI Input
227
+ selectProfile: Select profile
228
+ setup_type: Setup Type
229
+ tags: Tags
230
+ type: Type
231
+ username: Username
232
+ list: Profiles
233
+ load: Load
234
+ maxrate_khong_duoc_lon_hon_60m: Maxrate cannot be greater than 60000000
235
+ maxrate_khong_duoc_lon_hon_bitrate: Maxrate cannot be less than Bitrate
236
+ message:
237
+ confirmDeleteAsset: Are you sure to delete asset?
238
+ confirmDeleteWatermark: Are you sure to delete watermark?
239
+ confirm_delete: Are you sure you want to delete
240
+ createCompleted: Successfully Created!
241
+ noData: noData
242
+ require-name-target: Please input name
243
+ selectMachineAndCluster: Please select server/cluster
244
+ selectMachineFirst: Please select a server
245
+ selectMachineType: Please select server type
246
+ the_program_id_already_exists: The program ID already exists
247
+ updateCompleted: Successfully Update!
248
+ warning: Warning
249
+ microsoft_smooth_streaming: (Microsoft Smooth Streaming)
250
+ microsoft_technology_for_adaptive_streaming_of_video: Microsoft technology for adaptive streaming of video.
251
+ model_is_required: Please input Model
252
+ mpeg_standard_for_adaptive_bitrate_streaming_over_http: MPEG standard for adaptive bitrate streaming over HTTP.
253
+ name_modifier: name modifier
254
+ name_modifier_is_required: Please input Name modifier
255
+ network_protocol_for_efficient_multi-recipient_data_delivery: Network protocol for efficient multi-recipient data delivery.
256
+ new_profile: New profile
257
+ only_a_maximum_of_10_profiles_can_be_added: Only a maximum of 10 profiles can be added
258
+ other: Other
259
+ output_pid_cannot_exceed_50_characters: Output PID cannot exceed 50 characters
260
+ path_model: Path Model
261
+ placeholder:
262
+ enter: Enter
263
+ enterDescription: Enter Description
264
+ enterName: Enter Name
265
+ searchName: Search Name
266
+ select: Select
267
+ selectDrm: Select DRM Credentials
268
+ please_configure_the_input: Please configure the input!
269
+ please_enter_a_valid_value_after_the_0x_prefix: Please enter a valid value after the 0x prefix
270
+ please_enter_a_value_from_0x0010_to_0x1ffe: Please enter a value from 0x0010 to 0x1FFE
271
+ please_enter_a_value_from_16_to_8190: Please enter a value from 16 to 8190
272
+ please_enter_pid: Please enter PID
273
+ please_fill_in_all_fields: Please fill in all fields
274
+ please_input_ip: Please input ip
275
+ please_input_path_model: Please input path model
276
+ please_select_profile: Please select profile
277
+ preset_is_required: Please select Preset
278
+ rate_control: Rate Control
279
+ real-time_messaging_protocol: (Real-Time Messaging Protocol)
280
+ replaced_name: Replaced name
281
+ second_cannot_be_less_than_17_and_greater_than_300: Second cannot be less than 1 and greater than 16
282
+ technique_for_transmitting_multiple_signals_over_one_medium: Technique for transmitting multiple signals over one medium.
283
+ template: Template
284
+ the_number_of_outputs_that_can_be_generated_ranges_from_1_to_10: The number of outputs that can be generated ranges from 1 to 10
285
+ this_feature_is_only_supported_when_using_nvenc_please_switch_to_nvenc_or_disable_the_feature_to_continue: >-
286
+ This feature is only supported when using NVENC. Please switch to NVENC or
287
+ disable the feature to continue
288
+ this_field_is_required: This field is required
289
+ time_offset: Time offset
290
+ transcode:
291
+ secure_low-latency_streaming_protocol: Secure, low-latency streaming protocol
292
+ update_profile: Update Profile
293
+ validate:
294
+ required: Shouldn't be empty
295
+ width_less_0_greater_7680: Width cannot be less than 0 and greater than 7680
296
+ SSconfig:
297
+ drm:
298
+ title: DRM Credentials
299
+ Server:
300
+ locked_due_to_role_assignments_from_primary_server: Locked due to role assignments from primary server
301
+ User:
302
+ user: User
303
+ VastControl:
304
+ add_condition: Add condition
305
+ apply: Apply
306
+ please_input_value: Please input value
307
+ Vod:
308
+ ai_config: AI advanced config
309
+ app: App
310
+ create_ai_config_for_job: Create AI config for job
311
+ Warning: Warning
312
+ actions:
313
+ download: Download
314
+ get_help: Get Help
315
+ select: Select
316
+ addLicense: Add license
317
+ add_license: Add license
318
+ add_media_from_links: Add media from links
319
+ add_video_just_paste_links_your_video_below_link_format: >-
320
+ Add video by just paste the links to your video below! Link format is one link
321
+ per line. Maximum links per upload: 100 links. These links will not be
322
+ uploaded to storage but are available for immediate use
323
+ admin_main:
324
+ if_you_do_not_enable_two-factor_authentication_you_will_not_be_able_to_access: >-
325
+ If you do not enable two-factor authentication, you will not be able to
326
+ access.
327
+ the_sigma_admin_site_now_requires_all_users_to_enable_2-factor: >-
328
+ The Sigma Admin site now requires all users to enable 2-factor
329
+ authentication when logging in. You should enable 2 factor authentication to
330
+ access the application
331
+ an_invalid_link_exists: Invalid link exists
332
+ app:
333
+ back-to-app-list: Back to app list
334
+ are_you_sure_you_want_to_cancel_import_from_links: Are you sure you want to cancel import from links
335
+ asset:
336
+ data not found: Data not found
337
+ authenticator:
338
+ access_denied: Access Denied!
339
+ account_disabled_2fa: >-
340
+ Your account does not currently have two-factor authentication enabled. You
341
+ should enable two-factor authentication to access the application
342
+ application_access_failed: Application access failed
343
+ complete: Complete
344
+ confirm_turn_off_2fa: Are you sure you want to turn off two-factor authentication?
345
+ copied: Copied!
346
+ copy_codes: Copy codes
347
+ des_enter_confirm_code: Please enter the confirmation code you see on your authentication app
348
+ des_enter_confirm_code_login: >-
349
+ Enter the 6 digit code from the authentication app that you set up or using
350
+ recovery code
351
+ des_recovery_code: >-
352
+ Should you ever lose your phone or access to your one time password secret,
353
+ each of these recovery codes can be used one time each to regain access to
354
+ your account. Please save them in a safe place, or you will lose access to
355
+ your account.
356
+ des_switch_2fa: >-
357
+ Use an app like Google Authenticator to generate verification codes for more
358
+ protection
359
+ description_scan_qr: >-
360
+ Please use your authentication app (such as Google Authenticator) to scan
361
+ this QR code
362
+ enter_confirmation_code: Enter confirmation code
363
+ enter_the_6-digit_code: Enter the 6-digit code
364
+ enter_the_login_code: Enter the login code
365
+ or_enter_this_code_into_your_authentication_app: Or enter this code into your authentication app
366
+ regenerate_recovery_codes: Regenerate recovery codes
367
+ 'set_up_via_third_party_authenticator ': Set up via third party authenticator
368
+ sorry_you_have_no_permission_to_visit_this_page: Sorry, you have no permission to visit this page
369
+ success_disable_2fa: Two-factor authentication disabled successfully!
370
+ success_enable_2fa: Congratulations! You have enabled Two-factor authentication!
371
+ this_app_requires_enabling_two-factor_authentication: >-
372
+ This app requires enabling two-factor authentication for your user account
373
+ to access the application
374
+ turn_off_two_factor_authentication: Turn off two-factor authentication?
375
+ turn_on_two-factor_authentication: Turn on two-factor authentication
376
+ two-factor_authentication_recovery_code: Two-factor authentication Recovery code
377
+ view_recovery_code: View recovery code
378
+ base:
379
+ advanced_config_error: AI advanced config error
380
+ after_you_change_the_default_information_you_should_click_the_reload_to_reload_the_video: >-
381
+ After you change the default information, you should click the Reload to
382
+ reload the video
383
+ all: All
384
+ all_media_type: All media type
385
+ all_status: All status
386
+ an_error_occurred_while_loading_data_please_try_again_later: An error occurred while loading data. Please try again later
387
+ are_you_sure_you_want_to_send_the_report_now: Are you sure you want to send the report now?
388
+ cancel: Cancel
389
+ cannot_contain_all_space: '{name} cannot contain all spaces'
390
+ clear_filter: Clear filter
391
+ created_at: Created At
392
+ created_successfully: Created successfully!
393
+ enter_your_app_id: Enter your App ID
394
+ enter_your_merchant_id: Enter your Merchant ID
395
+ enter_your_session_id: Enter your Session ID
396
+ enter_your_user_id: Enter your User ID
397
+ error_loading_data: Error Loading Data
398
+ filter_assets_to_fit_gap: Filter Assets to Fit Gap
399
+ last_12_hours: Last 12 hours
400
+ last_1_hour: Last 1 hour
401
+ last_24_hours: Last 24 hours
402
+ last_3_hours: Last 3 hours
403
+ last_6_hours: Last 6 hours
404
+ learn_more: Learn more
405
+ maximum_files_per_upload_100_files: 'Maximum files per upload: 100 files'
406
+ move_down: Move down
407
+ move_up: Move up
408
+ name: name
409
+ name_can_not_contain_special_characters: '{name} can not contain special characters or space'
410
+ name_can_not_contain_special_characters_with_s: '{name} can not contain special characters'
411
+ name_can_not_special_characters: '{name} can not contain special characters'
412
+ name_cannot_contain_accented_characters: '{name} can not contain accented characters'
413
+ name_should_not_empty: '{name} should not be empty'
414
+ no_alternative_program: No alternative program
415
+ no_data: No data
416
+ no_matches: No matches
417
+ please_add_a_name: Please add a {name}
418
+ please_input_app_id: Please input App ID
419
+ please_input_merchant_id: Please input Merchant ID
420
+ please_input_name: Please input {name}
421
+ please_input_session_id: Please input Session ID
422
+ please_input_user_id: Please input User ID
423
+ please_select_at_least_one_playlist: Please select at least one playlist
424
+ reload: Reload
425
+ remove: Remove
426
+ retry: Retry
427
+ seconds: seconds
428
+ select_category: Select Category
429
+ select_time: Select time
430
+ send_report_now: Send Report Now?
431
+ send_successfully: Sent successfully!
432
+ swap_successfully: Swapped successfully!
433
+ the_name_should_not_exceed_50_characters: '{name} should not exceed 50 characters'
434
+ the_report_has_been_sent_successfully: The report has been sent successfully!
435
+ there_is_no_data_to_display: There is no data to display
436
+ updated_at: Updated At
437
+ updated_successfully: Updated successfully!
438
+ upload: Upload
439
+ upload_asset: Upload asset
440
+ upload_multimedia_content_for_use_with_in-app_products: Upload multimedia content for use with in-app products.
441
+ validate:
442
+ formatName: 'Name includes valid characters: A-Z, a-z, 0-9, "-", "_"'
443
+ min-max: Value must be an integer between {min} and {max}
444
+ view: View
445
+ we_cant_find_a_match: We can't find a match
446
+ with_the_delay_time_being: with the delay time being
447
+ with_the_select_time_being: with the select time being
448
+ with_the_timeshift_time_being: with the timeshift time being
449
+ you_are_currently_viewing_the_preview_with_the_mode_being: You are currently viewing the preview with the mode being
450
+ base_libary:
451
+ are_you_sure_you_want_to_resync_the_data_0: Are you sure you want to resync the data {0}?
452
+ base_library:
453
+ label:
454
+ tags: Tags
455
+ bucket_name:
456
+ bucket_names_can_consist_only_of_lowercase_letters_numbers_dots_and_hyphens_-: >-
457
+ Bucket names can consist only of lowercase letters, numbers, dots (.), and
458
+ hyphens (-)
459
+ bucket_names_must_begin_and_end_with_a_letter_or_number: Bucket names must begin and end with a lowercase letter or number
460
+ bucket_names_must_not_be_formatted_as_an_ip_address: Bucket names must not be formatted as an IP address
461
+ bucket_names_must_not_contain_two_adjacent_periods: Bucket names must not contain two adjacent periods
462
+ bucket_names_must_not_end_with_the_suffix_--ol-s3: Bucket names must not end with the suffix --ol-s3
463
+ bucket_names_must_not_start_with_the_prefix_xn--_and_sthree-_and_the_prefix_sthree-configurator: >-
464
+ Bucket names must not start with the prefix xn-- and sthree- and the prefix
465
+ sthree-configurator
466
+ placeholder: Enter your bucket name
467
+ valid_length: Bucket names must be between 3 (min) and 63 (max) characters long
468
+ bucket_name_invalid: Bucket Name invalid
469
+ cancel: Cancel
470
+ channel:
471
+ are_you_sure_you_want_to_go_back_this_will_discard_any_unsaved_changes: Are you sure you want to go back? This will discard any unsaved changes
472
+ name: Name
473
+ source_index_is_required: Please input Source index
474
+ do_not_exceed_100_links_links: >-
475
+ Do not exceed 100 links, links that exceed the limit will be automatically
476
+ deleted upon submission
477
+ does_not_have_a_license_or_the_license_has_expired_please_add_a_license_for_the_server: >-
478
+ does not have a license or the license has expired. Please add a license for
479
+ the server.
480
+ expired_license_a_license_for_the_server: >-
481
+ that does not have a license or has an expired license. Please add a license
482
+ for the server.
483
+ fast_channel:
484
+ duration: Duration
485
+ duration_cannot_exceed_1_hours: Duration cannot exceed 1 hours
486
+ duration_must_be_at_least_30_seconds: Duration must be at least 30 seconds
487
+ go_back: Go back
488
+ no_input: No Input
489
+ select_vod: Select VOD
490
+ forensic:
491
+ enter_the_wm_in_hexadecimal_format_e_g_0x64: Enter the WM (in hexadecimal format, e.g. 0x64)
492
+ type_is_required: Type is required
493
+ wm_is_required: wm is required
494
+ form:
495
+ form_validation_failed: Form validation failed. Please recheck
496
+ formatted_links: Formatted Links
497
+ general:
498
+ action: Action
499
+ are_you_sure_you_want_to_close: Are you sure you want to close?
500
+ close: Close
501
+ condition: Condition
502
+ confirm: Confirm
503
+ create: Create
504
+ default_value: Default value
505
+ delete: Delete
506
+ edit: Edit
507
+ enum: Enum
508
+ example: Example
509
+ information: Information
510
+ loading_failed: Loading failed
511
+ maximum_value: Maximum value
512
+ maxlength: Max length
513
+ minimum: Minimum
514
+ minimum_value: Minimum value
515
+ minlength: Min length
516
+ name: Name
517
+ ok: Ok
518
+ rename: Rename
519
+ save: Save
520
+ state: State
521
+ status: Status
522
+ submit: Submit
523
+ updated_at: Updated At
524
+ valid_file: Valid file
525
+ warning: Warning
526
+ global:
527
+ error: Error
528
+ loading: Loading...
529
+ import_from_links: Import from links
530
+ label:
531
+ source: Source
532
+ tag: Tag
533
+ library:
534
+ add_asset_to_playlist: Add asset to playlist
535
+ add_assets_to_playlist_successfully: Add assets to playlist successfully
536
+ add_to_playlist: Add to playlist
537
+ are_you_sure_to_delete_this_asset: Are you sure to delete this asset?
538
+ are_you_sure_you_want_to_close_this: Are you sure you want to close this?
539
+ are_you_sure_you_want_to_delete_0_assets: Are you sure you want to delete {0} assets?
540
+ duplicate: Duplicate
541
+ edit: Edit
542
+ key: Key
543
+ select_all: Select all
544
+ selected_0_assets: Selected {0} assets
545
+ title: title
546
+ value: value
547
+ library_profile:
548
+ must_have_at_least_1_video_preset_and_1_audio_preset: Must have at least 1 video preset or 1 audio preset
549
+ link_invalid: links invalid
550
+ links: links
551
+ links_valid: links valid
552
+ login:
553
+ email_invalid: Please enter a valid email
554
+ email_label: Email
555
+ email_placeholder: Enter your email
556
+ password_invalid: >-
557
+ Password must contain at least 1 uppercase letter, 1 lowercase letter and
558
+ number
559
+ password_label: Password
560
+ password_length: A password must have at least 8 characters and a maximum of 64 characters
561
+ password_placeholder: Enter your password
562
+ password_required: Please enter password
563
+ password_use_only: Only use letters, numbers and common punctuation characters
564
+ please_enter_password: Please enter password
565
+ sign_in: Sign In
566
+ sign_out: Sign out
567
+ logout:
568
+ dialog:
569
+ cancel: Cancel
570
+ confirm: Confirm
571
+ message: Are you sure you want to sign out?
572
+ title: Sign out of Sigma
573
+ success: Sign out is successful!
574
+ main:
575
+ action: Action
576
+ ask_anything: Ask anything
577
+ chat_name: Chat name
578
+ chat_with_us: Chat with us
579
+ check_the_current_status_of_the_entire_system: Check the current status of the entire system
580
+ check_the_status_of_the_entire_system_yesterday: Check the status of the entire system yesterday
581
+ clear_chat: Clear chat history
582
+ close_chat: Close
583
+ close_chat_fullscreen: Close fullscreen
584
+ close_history_sidebar: Close chat list
585
+ confirmDeleteMessage: >-
586
+ Are you sure you want to delete conversation "{chatTitle}"? This action
587
+ cannot be undone.
588
+ conversation_deleted_successfully: Conversation deleted successfully
589
+ delete: Delete
590
+ delete_conversation: Delete Conversation
591
+ enter_your_message: Enter your message
592
+ expand_chat: Expand Chat
593
+ failed_to_load_conversation: Failed to load conversation. Please try again.
594
+ failed_to_load_conversations: Failed to load conversations
595
+ handling_task_error_of_sigma_media_server: Handling task error of Sigma Media Server
596
+ hello_there_need_help_reach_out_to_us_right_here: Hello there! Need help? Reach out to us right here!
597
+ history: History
598
+ loading_conversation: Loading conversation...
599
+ new_chat: New Chat
600
+ new_conversation: New chat
601
+ open_history_sidebar: Open chat list
602
+ rename: Rename
603
+ search_conversations: Search
604
+ start_new_chat: Start New Chat
605
+ the_message_is_only_stored_for_30_days: Show only up to 10 latest messages.
606
+ there_was_an_error_loading_your_chat_history_please_try_again: There was an error loading your chat history. Please try again.
607
+ thinking: Please wait a moment
608
+ total_conversations: 'Total: {count} conversations'
609
+ try_again: Try Again
610
+ updated_at: Updated at
611
+ waiting_for_response: Waiting for response...
612
+ what_can_i_help_with: What can I help with?
613
+ message:
614
+ Warning: Warning
615
+ recheck_success: Recheck successful!
616
+ name_playlist: Playlists
617
+ notification: Notification
618
+ playout:
619
+ actions: Actions
620
+ asset_not_found: Asset not found
621
+ input_not_found: Input not found
622
+ learn_more: Learn more
623
+ no_signal: No Signal
624
+ preview_is_not_valid: >-
625
+ Preview unavailable. Please check the channel status and the status of the
626
+ corresponding job
627
+ select_live: Select Live
628
+ select_the: Select the
629
+ sorry_the_preview_is_currently_unavailable_due_to_an_issue: >-
630
+ Sorry, the preview is currently unavailable due to an issue. To resolve
631
+ this, please follow the installation instructions below.
632
+ to_end_the_segment_to_be_kept: to end the segment to be kept
633
+ to_start_and_the: to start and the
634
+ please_enter_link: Please input link
635
+ please_input_links: Please input links
636
+ ratio_height_less_0_greater_1000: The Height aspect ration cannot be less than 0 and greater than 1000
637
+ ratio_width_less_0_greater_1000: The Width aspect ration cannot be less than 0 and greater than 1000
638
+ seeMoreOptions: See More Options
639
+ select_app:
640
+ failed_to_check_quota: Failed to check quota
641
+ quota_check_service_not_available: Quota check service not available
642
+ the_server: The server
643
+ title:
644
+ warning: Warning
645
+ transcode:
646
+ are_you_sure_you_want_to_delete_this_option: Are you sure you want to delete this option?
647
+ edit_option: Edit option
648
+ invalid_url: Invalid URI
649
+ key_already_exists: Key already exists!
650
+ key_includes_valid_characters_a-z_a-z: 'Key includes valid characters: A-Z, a-z'
651
+ load: Load
652
+ path: Path
653
+ path_model: Path Model
654
+ please_input_path_model: Please input path model
655
+ secure_low-latency_streaming_protocol: Secure, low-latency streaming protocol
656
+ secure_reliable_transport: (Secure Reliable Transport)
657
+ template: Template
658
+ the_channel_information_has_been_changed_please_restart_the_channel_to_ensure_stable_operation: >-
659
+ The channel information has been changed. Please restart the channel to
660
+ ensure stable operation
661
+ the_channel_information_has_been_changed_please_restart_the_job_to_ensure_stable_operation: >-
662
+ The channel information has been changed. Please restart the job to ensure
663
+ stable operation.
664
+ value_includes_valid_characters_a-z_a-z_0-9_-: 'Value includes valid characters: A-Z, a-z, 0-9, "-", "_'
665
+ upload_files: Upload files
666
+ urls_required: Please input links
667
+ user:
668
+ setting: Setting
669
+ utilize_feature_you_must_first_complete: >-
670
+ To utilize this feature, you must first complete the output storage
671
+ configuration
672
+ validate:
673
+ input_name_required: Please input Name
674
+ input_url_invalid: Please input URL
675
+ invalid_url: Invalid URL
676
+ tags:
677
+ accentedCharacters: The tag cannot contain accented and spaced characters
678
+ noSpecialCharacters: Tag item can not contain special characters
679
+ watermark:
680
+ an_error_occurred_during_the_process_please_try_again: An error occurred during the process, please try again.
681
+ audio_file_size_cannot_exceed_50mb: Audio file size cannot exceed 50MB
682
+ cancel: Cancel
683
+ channel: channel
684
+ channels: channels
685
+ check: Check
686
+ check_forensic_watermarking: Check forensic watermarking
687
+ check_other_watermarking: Check other watermark
688
+ check_your_system_settings_to_make_sure_sigma_streaming_has_permission_to_access_your_microphone_and_try_again: >-
689
+ Check your system settings to make sure Sigma streaming has permission to
690
+ access your microphone, and try again
691
+ checking_please_wait: Checking, please wait...
692
+ click_to_upload: click to upload
693
+ confirm: Confirm
694
+ description_watermark_detect: >-
695
+ The audio watermark test content is recorded from the stream to be examined
696
+ through an electronic device, under the condition that the ambient noise
697
+ level is maintained at a minimum to enhance accuracy.
698
+ drop_file_here_or: Drop file here or
699
+ duration_cannot_be_greater_than_20_seconds: Duration cannot be greater than 20 seconds
700
+ file_type_is_not_supported: The file is invalid, please choose another file
701
+ forensic_watermarking: Forensic watermarking
702
+ found_count_channels_with_watermarking: Found {count} {channel} with watermark
703
+ message:
704
+ handleConfirmClose: Are you sure you want to close?
705
+ name: Name
706
+ new_recording: New Recording
707
+ no_channels_found_with_watermarking: No channels found with watermarking
708
+ no_watermark_found: No watermark found
709
+ please_allow_access_to_your_microphone_to_continue: Please allow access to your microphone to continue
710
+ please_grant_permission_to_use_the_microphone_for_the_tool: Please grant permission to use the microphone for the tool
711
+ press_the_button_to_start_recording: Press the button to start recording
712
+ result_watermark_not_found_in_your_record_please_try_another_record: 'Result: Watermark not found in your record, please try another record.'
713
+ stop: Stop
714
+ the_system_automatically_stops_because_the_recording_duration_reaches_the_limit_of_20_seconds: >-
715
+ Duration cannot exceed 20 seconds. The system will automatically stop when
716
+ the recording duration reaches the 20-second limit.
717
+ valid_file: Valid audio file size must be less than 50 MB.
718
+ warning: Warning
719
+ your_application_currently_has_a_server: Your application currently has a server