@redocly/redoc-reef 0.131.0-next.9 → 0.131.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 (58) hide show
  1. package/CHANGELOG.md +167 -1
  2. package/dist/bin.js +1 -1
  3. package/dist/cli/stats/collectors/{openapi.d.ts → openapi/index.d.ts} +2 -2
  4. package/dist/cli/stats/collectors/openapi/index.js +1 -0
  5. package/dist/cli/stats/collectors/openapi/oas32.d.ts +15 -0
  6. package/dist/cli/stats/collectors/openapi/oas32.js +1 -0
  7. package/dist/cli/stats/index.js +1 -1
  8. package/dist/client/app/hooks/useAnchorPositioning.js +1 -1
  9. package/dist/client/app/l10n/index.js +1 -1
  10. package/dist/client/app/search/useAiSearch.js +1 -1
  11. package/dist/client/app/seo/SeoTags.js +1 -1
  12. package/dist/client/templates/asyncapi-docs/template.js +1 -3
  13. package/dist/client/templates/openapi-docs/template.js +2 -6
  14. package/dist/client/types/ai-search.d.ts +1 -0
  15. package/dist/constants/l10n/langs/ar.js +1 -1
  16. package/dist/constants/l10n/langs/de.js +1 -1
  17. package/dist/constants/l10n/langs/en.js +1 -1
  18. package/dist/constants/l10n/langs/es.js +1 -1
  19. package/dist/constants/l10n/langs/fr.js +1 -1
  20. package/dist/constants/l10n/langs/hi.js +1 -1
  21. package/dist/constants/l10n/langs/it.js +1 -1
  22. package/dist/constants/l10n/langs/ja.js +1 -1
  23. package/dist/constants/l10n/langs/ko.js +1 -1
  24. package/dist/constants/l10n/langs/pl.js +1 -1
  25. package/dist/constants/l10n/langs/pt-BR.js +1 -1
  26. package/dist/constants/l10n/langs/pt.js +1 -1
  27. package/dist/constants/l10n/langs/ru.js +1 -1
  28. package/dist/constants/l10n/langs/uk.js +1 -1
  29. package/dist/constants/l10n/langs/zh.js +1 -1
  30. package/dist/server/api-routes/execute-api-route.js +1 -1
  31. package/dist/server/node-bundle-entry.js +1 -1
  32. package/dist/server/plugins/asyncapi-docs/search/get-ai-search-documents.js +37 -37
  33. package/dist/server/plugins/catalog-entities/database/catalog-entities-service.d.ts +7 -0
  34. package/dist/server/plugins/catalog-entities/database/catalog-entities-service.js +1 -1
  35. package/dist/server/plugins/catalog-entities/database/repositories/local/catalog-entities-local-read-repository.d.ts +22 -0
  36. package/dist/server/plugins/catalog-entities/database/repositories/local/catalog-entities-local-read-repository.js +29 -15
  37. package/dist/server/plugins/catalog-entities/database/repositories/local/catalog-entities-local-repository.d.ts +6 -0
  38. package/dist/server/plugins/catalog-entities/database/repositories/local/catalog-entities-local-repository.js +1 -1
  39. package/dist/server/plugins/entitlements/index.js +1 -1
  40. package/dist/server/plugins/entitlements/utils/get-billed-catalog-build-pages-count.d.ts +6 -0
  41. package/dist/server/plugins/entitlements/utils/get-billed-catalog-build-pages-count.js +1 -0
  42. package/dist/server/plugins/graphql-docs/index.js +1 -1
  43. package/dist/server/plugins/markdown/search/nodes/heading-node.js +1 -1
  44. package/dist/server/plugins/openapi-docs/search/get-ai-search-documents.js +25 -25
  45. package/dist/server/plugins/pages/validators/validate-react-pages.js +1 -1
  46. package/dist/server/plugins/sidebars/index.d.ts +0 -1
  47. package/dist/server/plugins/sidebars/index.js +2 -2
  48. package/dist/server/ssr/template.js +3 -3
  49. package/dist/server/tools/notifiers/logger.d.ts +2 -2
  50. package/dist/server/tools/notifiers/logger.js +2 -2
  51. package/dist/server/tools/notifiers/terminal-manager.d.ts +1 -1
  52. package/dist/server/tools/notifiers/terminal-manager.js +4 -4
  53. package/dist/server/web-server/routes/catalog/catalog.js +1 -1
  54. package/dist/server/web-server/routes/catalog/helpers/upsert-pages-stats.d.ts +12 -0
  55. package/dist/server/web-server/routes/catalog/helpers/upsert-pages-stats.js +1 -0
  56. package/dist/server/web-server/routes/cors-proxy.js +2 -2
  57. package/package.json +12 -12
  58. package/dist/cli/stats/collectors/openapi.js +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,171 @@
1
1
  # @redocly/redoc-reef
2
2
 
3
+ ## 0.131.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d87ca0f750: Replaced the separate right-side development mode controls in Realm docs UI with a single bottom floating status bar to improve user experience.
8
+ - 447b0dc32a: Added support for the product filter on **Project Analytics** page.
9
+ - 1d7c82d350: Added support for `badges` option in `sidebars.yaml` to display visual indicators next to sidebar item labels.
10
+ - e7cc4036fc: Added support for OpenAPI 3.2 `tags` object.
11
+ - 4aa015b6ea: Added support for OpenAPI 3.2 `querystring` parameters to handle structured query parameters with nested objects and arrays.
12
+ - 8a6153095f: Added an internal `/_api/cors` proxy endpoint in Realm and configured embedded Replay to use it by default.
13
+ - 10585dd0d0: Added support for the `nodeType` field in the OpenAPI 3.2 XML Object.
14
+ - 703634d21f: Enabled semantic search for Docs MCP.
15
+ - c2b1717b2b: Added stricter validation to feedback forms.
16
+ - 34ef22b17c: Added `code-snippet` Markdoc tag support for `llms.txt`.
17
+ - e6944434c8: Added support for OpenAPI `allowReserved` query parameters in Replay.
18
+
19
+ ### Patch Changes
20
+
21
+ - 7f8301f1ed: Fixed an issue where the **Connect to MCP** button ignored the configured prefix path.
22
+ - bfdf798d61: Fixed **View as Markdown** and **Copy for LLM** page actions incorrectly omitting schema properties that share a name with a property at a different nesting level.
23
+ - dc4442ab07: Fixed canonical URLs on versioned pages to use the default version.
24
+ - 43955ab32f: Improved the accessibility of OpenAPI and GraphQL docs.
25
+ - 5ef75a3b5d: Fixed an issue where the **Copy for LLM** and **View as Markdown** page actions ignored the respective path prefix for the root page.
26
+ - 8b42559201: Fixed an issue where sidebar groups were displayed even though they contained no valid items in the active version.
27
+ - eb7a37ae27: Fixed tooltip visibility in browsers without anchor positioning support.
28
+ - 466f4ca3ba: Fixed an issue where custom Markdoc heading IDs were not used in search results.
29
+ - 17aafeac4a: Fixed an issue in OpenAPI docs where example keys were used instead of summary text in example drop-downs.
30
+ - f7b6c52055: Improved appearance and deep linking for the `tabs` Markdoc tag.
31
+ - d0b99c0768: Fixed URL fragment duplication when opening docs for endpoints with path parameters (e.g. `/foo/{id}/bar`).
32
+ - 2d305eec36: Fixed the built-in CORS proxy failing with "fetch failed" for certain URLs.
33
+ Now the browser's `accept-encoding` header isn't forwarded and the error message surfaces the underlying cause.
34
+ - 1eb287db9f: Fixed code sample generation when path parameter examples contain integer values.
35
+ - 807547ecbd: Improved build memory usage for large projects.
36
+ - 7276b4e5d6: Fixed an issue in AI Search where clearing the product tag would still include the product in the search request.
37
+ - a9a1ee0fe1: Fixed an issue where page actions remained visible even though `search` was disabled.
38
+ - 9b9b43a1b4: Improved the accessibility of AsyncAPI docs.
39
+ - 1cc1909566: Fixed an issue where optional properties of API operations were inconsistently displayed between API docs and Replay.
40
+ The optional properties are now respect the configuration in `redocly.yaml`.
41
+ - 130c111688: Fixed security vulnerability `CVE-2026-26996` by upgrading `minimatch` to version `10.2.1`.
42
+ - 7e3400d4a8: Fixed page actions overlapping the navbar.
43
+ - d264713872: Fixed an issue where `rbac` configuration ignored versioned content folder paths with leading slashes.
44
+ - 721799cba5: Fixed padding in schema definition and MCP tool views.
45
+ - 721799cba5: Fixed an issue in OpenAPI docs where the schema description in the **Schema definition** section was duplicated.
46
+ - 32c0b1683b: Fixed an issue where schemas using `allOf` with a `$ref` had their own `title` overridden by the referenced schema's title.
47
+ - 9b35001fdd: Fixed an issue in OpenAPI docs where nested Markdoc partial tags prevented partial content from rendering.
48
+ - 652e464285: Fixed an issue where the root `.md` pages for OpenAPI and AsyncAPI files failed to generate when `requiresLogin` was set to `true` in `redocly.yaml`.
49
+ - c50df09073: Fixed an issue where scorecard displayed a "Lint completed without rules" message when rules were configured in the `apis` section of `redocly.yaml` rather than at the root level.
50
+ - 263c8021c3: Fixed an issue where the terminal output retained artifacts from previous commands.
51
+ - ce4a06bc15: Fixed a bug where Segment analytics ignored `trackPage=false` in configuration when a custom script was used to send page view events.
52
+ - 7abfb7ff61: Updated `@redocly/openapi-core` to version `2.20.5`.
53
+ - 2641586046: Fixed an issue in GraphQL docs where navigating to a referenced field resulted in a `404` error.
54
+ - adf0e98992: Fixed an issue where the expand dropdown buttons were displayed over open dropdown menus.
55
+ - b2504fea98: Fixed an issue where `sidebars.yaml` files in ignored folders weren't excluded from link checking.
56
+ - 1b2efd5ab7: Fixed an issue with Mock Server where the response sample included `writeOnly` fields.
57
+ - 2bb21c43ec: Fixed security vulnerability `CVE-2026-26278` by upgrading `fast-xml-parser` to version `5.3.6`.
58
+ - Updated dependencies [7f8301f1ed]
59
+ - Updated dependencies [3554f6b8da]
60
+ - Updated dependencies [43955ab32f]
61
+ - Updated dependencies [5ef75a3b5d]
62
+ - Updated dependencies [447b0dc32a]
63
+ - Updated dependencies [c2b1717b2b]
64
+ - Updated dependencies [eb7a37ae27]
65
+ - Updated dependencies [17aafeac4a]
66
+ - Updated dependencies [f7b6c52055]
67
+ - Updated dependencies [1eb287db9f]
68
+ - Updated dependencies [8a5957c080]
69
+ - Updated dependencies [e7cc4036fc]
70
+ - Updated dependencies [7276b4e5d6]
71
+ - Updated dependencies [cf845446a0]
72
+ - Updated dependencies [a9a1ee0fe1]
73
+ - Updated dependencies [2bb21c43ec]
74
+ - Updated dependencies [377e39138a]
75
+ - Updated dependencies [4aa015b6ea]
76
+ - Updated dependencies [9b9b43a1b4]
77
+ - Updated dependencies [1cc1909566]
78
+ - Updated dependencies [10585dd0d0]
79
+ - Updated dependencies [7e3400d4a8]
80
+ - Updated dependencies [aca4d30c49]
81
+ - Updated dependencies [34ef22b17c]
82
+ - Updated dependencies [e6944434c8]
83
+ - Updated dependencies [721799cba5]
84
+ - Updated dependencies [721799cba5]
85
+ - Updated dependencies [32c0b1683b]
86
+ - Updated dependencies [7abfb7ff61]
87
+ - Updated dependencies [2641586046]
88
+ - Updated dependencies [adf0e98992]
89
+ - Updated dependencies [1b2efd5ab7]
90
+ - Updated dependencies [2bb21c43ec]
91
+ - @redocly/theme@0.63.0
92
+ - @redocly/realm-asyncapi-sdk@0.9.0
93
+ - @redocly/asyncapi-docs@1.8.0
94
+ - @redocly/graphql-docs@1.8.0
95
+ - @redocly/openapi-docs@3.19.0
96
+ - @redocly/portal-plugin-mock-server@0.16.0
97
+ - @redocly/portal-legacy-ui@0.14.0
98
+
99
+ ## 0.131.0-next.14
100
+
101
+ ### Patch Changes
102
+
103
+ - 2d305eec36a: Fixed the built-in CORS proxy failing with "fetch failed" for certain URLs.
104
+ Now the browser's `accept-encoding` header isn't forwarded and the error message surfaces the underlying cause.
105
+
106
+ ## 0.131.0-next.13
107
+
108
+ ### Patch Changes
109
+
110
+ - 466f4ca3ba3: Fixed an issue where custom Markdoc heading IDs were not used in search results.
111
+ - f7b6c520559: Improved appearance and deep linking for the `tabs` Markdoc tag.
112
+ - 0140f0ba709: Fixed an issue where React page validation failed silently, causing error reporting to be skipped during builds.
113
+ - 7abfb7ff617: Updated `@redocly/openapi-core` to version `2.20.5`.
114
+ - 8983e235fd1: Updated `openapi-sampler` from version 1.7.0 to 1.7.2.
115
+ - Updated dependencies [3554f6b8da8]
116
+ - Updated dependencies [f7b6c520559]
117
+ - Updated dependencies [cf845446a06]
118
+ - Updated dependencies [7abfb7ff617]
119
+ - Updated dependencies [8983e235fd1]
120
+ - @redocly/realm-asyncapi-sdk@0.9.0-next.5
121
+ - @redocly/theme@0.63.0-next.6
122
+ - @redocly/openapi-docs@3.19.0-next.9
123
+ - @redocly/asyncapi-docs@1.8.0-next.9
124
+ - @redocly/graphql-docs@1.8.0-next.7
125
+ - @redocly/portal-plugin-mock-server@0.16.0-next.9
126
+
127
+ ## 0.131.0-next.12
128
+
129
+ ### Patch Changes
130
+
131
+ - 43955ab32fd: Improved the accessibility of OpenAPI and GraphQL docs.
132
+ - 7276b4e5d63: Fixed an issue in AI Search where clearing the product tag would still include the product in the search request.
133
+ - 1cc1909566f: Fixed an issue where optional properties of API operations were inconsistently displayed between API docs and Replay.
134
+ The optional properties are now displayed or hidden according to configuration in `redocly.yaml`.
135
+ - d59b5669cea: Updated `@redocly/openapi-core` to version `2.20.4`.
136
+ - Updated dependencies [43955ab32fd]
137
+ - Updated dependencies [7276b4e5d63]
138
+ - Updated dependencies [1cc1909566f]
139
+ - Updated dependencies [d59b5669cea]
140
+ - @redocly/asyncapi-docs@1.8.0-next.8
141
+ - @redocly/graphql-docs@1.8.0-next.6
142
+ - @redocly/openapi-docs@3.19.0-next.8
143
+ - @redocly/theme@0.63.0-next.5
144
+ - @redocly/portal-plugin-mock-server@0.16.0-next.8
145
+
146
+ ## 0.131.0-next.11
147
+
148
+ ### Patch Changes
149
+
150
+ - dc4442ab07: Fixed canonical URLs on versioned pages to use the default version.
151
+ - b2504fea98: Fixed an issue where `sidebars.yaml` files in folders added to `ignore` configuration weren't excluded from link checking.
152
+ - Updated dependencies [8a5957c080]
153
+ - @redocly/realm-asyncapi-sdk@0.9.0-next.4
154
+ - @redocly/theme@0.63.0-next.4
155
+
156
+ ## 0.131.0-next.10
157
+
158
+ ### Patch Changes
159
+
160
+ - d59d3fce3d: Updated `@redocly/openapi-core` to version `2.20.3`.
161
+ - 1eb287db9f: Fixed code sample generation when path parameter examples contain integer values.
162
+ - 652e464285: Fixed an issue where the root `.md` pages for OpenAPI/AsyncAPI files failed to generate when `requiresLogin` was set to `true` in `redocly.yaml`.
163
+ - Updated dependencies [d59d3fce3d]
164
+ - Updated dependencies [1eb287db9f]
165
+ - @redocly/openapi-docs@3.19.0-next.7
166
+ - @redocly/asyncapi-docs@1.8.0-next.7
167
+ - @redocly/portal-plugin-mock-server@0.16.0-next.7
168
+
3
169
  ## 0.131.0-next.9
4
170
 
5
171
  ### Minor Changes
@@ -117,7 +283,7 @@
117
283
 
118
284
  ### Minor Changes
119
285
 
120
- - d87ca0f750: Replaces the separate right-side development mode controls in Realm docs UI with a single bottom floating status bar to improve user experience.
286
+ - d87ca0f750: Replaced the separate right-side development mode controls in Realm docs UI with a single bottom floating status bar to improve user experience.
121
287
  - e7cc4036fc: Added support for OpenAPI 3.2 `tags` object.
122
288
  - 4aa015b6ea: Added support for OpenAPI 3.2 `querystring` parameters to handle structured query parameters with nested objects and arrays.
123
289
  - 10585dd0d0: Added support for the `nodeType` field in the OpenAPI 3.2 XML Object.
package/dist/bin.js CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- import"./server/utils/set-execution-mode.js";import"./cli/utils/node-version-check.js";import o from"mri";import*as r from"node:path";import{tmpdir as x}from"node:os";import*as T from"node:fs";import"./server/node-fetch-polyfill.js";import{cliCommandNames as g}from"./constants/common.js";import{initPlugins as y}from"./server/plugins/lifecycle.js";import{loadEnvVariables as k}from"./server/utils/envs/load-env-variables.js";import{PORTAL_VERSION as S}from"./server/version.js";import{logger as l}from"./server/tools/notifiers/logger.js";import{reporter as t}from"./server/tools/notifiers/reporter.js";import{sha as I}from"./server/utils/crypto/sha.js";import{envConfig as L}from"./server/config/env-config.js";import{PACKAGE_NAME as b}from"./config/product-gates.js";import{develop as V}from"./cli/develop.js";import{eject as _}from"./cli/eject/index.js";import{beforeCommand as w}from"./server/utils/lifecycle-hooks.js";import{Store as C}from"./server/store.js";import{build as M}from"./cli/build/index.js";import{fromCurrentDir as N}from"./server/utils/paths.js";import{translationsCliOpts as R}from"./cli/translations/options.js";import{generateTranslations as F}from"./cli/translations/index.js";import{EntitlementsProvider as $}from"./server/entitlements/entitlements-provider.js";import{isValidPlan as U}from"./server/entitlements/is-valid-plan.js";import{stopAllCompilers as B}from"./server/esbuild/esbuild.js";import{copyLibsqlPrebuiltBinary as G}from"./cli/build/libsql/copy-prebuilt-binary.js";import{telemetry as d}from"./cli/telemetry/index.js";import{stats as q}from"./cli/stats/index.js";import{statsCliOpts as K}from"./cli/stats/options.js";const n=process.argv[2];let i;const f={alias:{d:"project-dir",p:"port"},default:{"project-dir":L.REDOCLY_CONTENT_DIR||process.cwd(),outdir:"public"}},Y={alias:f.alias,default:{...f.default,plan:"enterprise"}},z={alias:{d:"buildDir"},default:{buildDir:"public"}},H={boolean:["force"],alias:{f:"force",d:"project-dir"},default:{"project-dir":process.cwd()}};process.on("uncaughtException",async function(e){e?.code==="ERR_INVALID_STATE"?console.log("Ignore premature close error"):(l.error("Uncaught exception occurred. Stopping compilers."),await B(),l.error("Exiting due to uncaught exception"),await t.panic(e))});try{n||await t.panicOnContentError("Command not specified.");const e=$.instance();switch(["build","prepare","serve","stats"].includes(n)&&await e.init(),["eject","translate"].includes(n)&&await e.init({developModePlan:"enterprise"}),n){case"develop":case"preview":const a=o(process.argv.slice(3),Y),E=r.resolve(a["project-dir"]),j=r.join(x(),"redocly-public-"+I(E)),p=a.plan.toLowerCase();U(p)||await t.panicOnContentError(`Invalid --plan argument value '${p}'.`),await e.init({developModePlan:p}),i=new C({contentDir:r.resolve(a["project-dir"]),outdir:j,serverOutDir:N(import.meta.url,"./server/esbuild/cache/server")}),await w(g.DEVELOP,a,i),await V(a,i);break;case"build":case"prepare":const s=o(process.argv.slice(3),f),u=r.resolve(r.join(s.outdir,"server"));i=new C({contentDir:r.resolve(s["project-dir"]),outdir:r.resolve(s.outdir,"client"),serverOutDir:u}),await w(g.BUILD,s,i),G(u),await M(s,i);break;case"serve":await k();const O=o(process.argv.slice(3),z),h=r.resolve(O.buildDir);d.sendServeCliCommandExecutedMessage();const v=r.join(h,"server","index.mjs");T.existsSync(v)||await t.panic(`Server not found. Please run \`${b} build\` first (or \`${b} prepare\` for the deprecated command)`),import(v).catch(async c=>{await t.panic("Failed to load server",c)});break;case"eject":e.canAccessFeature("themeEjecting")||await t.panicOnContentError('The "eject" command is not available for this project');const m=o(process.argv.slice(3),H),{lifecycleContext:{getConfig:A,fs:D}}=await y({outdir:"",contentDir:r.resolve(m["project-dir"]),setGlobalConfig:()=>null});D.dispose(),d.sendCliCommandEjectExecutedMessage([{object:"cli_command",arguments:m}]),await _({...m,config:await A()}),l.clearAllTimeouts();break;case"translate":if(e.canAccessFeature("l10n")){const c=o(process.argv.slice(3),R);d.sendCliCommandTranslateExecutedMessage({arguments:c}),await F(c)}else await t.panicOnContentError('The "translate" command is not available for this project');break;case"stats":const P=o(process.argv.slice(3),K);await q(P);break;case"--version":console.log(S);break;default:await t.panicOnContentError(`Unknown command "${n}"`)}}catch(e){l.error("Exiting due to uncaught exception"),await t.panic(e)}
2
+ import"./server/utils/set-execution-mode.js";import"./cli/utils/node-version-check.js";import o from"mri";import*as r from"node:path";import{tmpdir as T}from"node:os";import*as u from"node:fs";import"./server/node-fetch-polyfill.js";import{cliCommandNames as C}from"./constants/common.js";import{initPlugins as S}from"./server/plugins/lifecycle.js";import{loadEnvVariables as k}from"./server/utils/envs/load-env-variables.js";import{PORTAL_VERSION as I}from"./server/version.js";import{logger as i}from"./server/tools/notifiers/logger.js";import{reporter as t}from"./server/tools/notifiers/reporter.js";import{sha as V}from"./server/utils/crypto/sha.js";import{envConfig as L}from"./server/config/env-config.js";import{PACKAGE_NAME as w}from"./config/product-gates.js";import{develop as R}from"./cli/develop.js";import{eject as _}from"./cli/eject/index.js";import{beforeCommand as E}from"./server/utils/lifecycle-hooks.js";import{Store as j}from"./server/store.js";import{build as M}from"./cli/build/index.js";import{fromCurrentDir as N}from"./server/utils/paths.js";import{translationsCliOpts as F}from"./cli/translations/options.js";import{generateTranslations as U}from"./cli/translations/index.js";import{EntitlementsProvider as $}from"./server/entitlements/entitlements-provider.js";import{isValidPlan as B}from"./server/entitlements/is-valid-plan.js";import{stopAllCompilers as G}from"./server/esbuild/esbuild.js";import{copyLibsqlPrebuiltBinary as q}from"./cli/build/libsql/copy-prebuilt-binary.js";import{telemetry as f}from"./cli/telemetry/index.js";import{stats as K}from"./cli/stats/index.js";import{statsCliOpts as Y}from"./cli/stats/options.js";const c=process.argv[2];let a;const v={alias:{d:"project-dir",p:"port"},default:{"project-dir":L.REDOCLY_CONTENT_DIR||process.cwd(),outdir:"public"}},z={alias:v.alias,default:{...v.default,plan:"enterprise"}},H={alias:{d:"buildDir"},default:{buildDir:"public"}},J={boolean:["force"],alias:{f:"force",d:"project-dir"},default:{"project-dir":process.cwd()}};process.on("uncaughtException",async function(e){e?.code==="ERR_INVALID_STATE"?console.log("Ignore premature close error"):(i.error("Uncaught exception occurred. Stopping compilers."),await G(),i.error("Exiting due to uncaught exception"),await t.panic(e))});try{c||await t.panicOnContentError("Command not specified.");const e=$.instance();switch(["build","prepare","serve","stats"].includes(c)&&await e.init(),["eject","translate"].includes(c)&&await e.init({developModePlan:"enterprise"}),c){case"develop":case"preview":const s=o(process.argv.slice(3),z),O=r.resolve(s["project-dir"]),h=encodeURIComponent(V(O)),p=r.join(T(),"redocly-public-"+h);u.existsSync(p)&&(i.verbose("Cleaning temporary output directory..."),u.rmSync(p,{recursive:!0,force:!0}),i.verbose("Temporary output directory cleaned."));const m=s.plan.toLowerCase();B(m)||await t.panicOnContentError(`Invalid --plan argument value '${m}'.`),await e.init({developModePlan:m}),a=new j({contentDir:r.resolve(s["project-dir"]),outdir:p,serverOutDir:N(import.meta.url,"./server/esbuild/cache/server")}),await E(C.DEVELOP,s,a),await R(s,a);break;case"build":case"prepare":const n=o(process.argv.slice(3),v),g=r.resolve(r.join(n.outdir,"server"));a=new j({contentDir:r.resolve(n["project-dir"]),outdir:r.resolve(n.outdir,"client"),serverOutDir:g}),await E(C.BUILD,n,a),q(g),await M(n,a);break;case"serve":await k();const A=o(process.argv.slice(3),H),D=r.resolve(A.buildDir);f.sendServeCliCommandExecutedMessage();const b=r.join(D,"server","index.mjs");u.existsSync(b)||await t.panic(`Server not found. Please run \`${w} build\` first (or \`${w} prepare\` for the deprecated command)`),import(b).catch(async l=>{await t.panic("Failed to load server",l)});break;case"eject":e.canAccessFeature("themeEjecting")||await t.panicOnContentError('The "eject" command is not available for this project');const d=o(process.argv.slice(3),J),{lifecycleContext:{getConfig:y,fs:P}}=await S({outdir:"",contentDir:r.resolve(d["project-dir"]),setGlobalConfig:()=>null});P.dispose(),f.sendCliCommandEjectExecutedMessage([{object:"cli_command",arguments:d}]),await _({...d,config:await y()}),i.clearAllTimeouts();break;case"translate":if(e.canAccessFeature("l10n")){const l=o(process.argv.slice(3),F);f.sendCliCommandTranslateExecutedMessage({arguments:l}),await U(l)}else await t.panicOnContentError('The "translate" command is not available for this project');break;case"stats":const x=o(process.argv.slice(3),Y);await K(x);break;case"--version":console.log(I);break;default:await t.panicOnContentError(`Unknown command "${c}"`)}}catch(e){i.error("Exiting due to uncaught exception"),await t.panic(e)}
@@ -1,3 +1,3 @@
1
- import type { LifecycleContext } from '../../../server/types';
1
+ import type { LifecycleContext } from '../../../../server/types';
2
2
  export declare function collectOpenapiDocumentsStatistics(lifecycleContext: LifecycleContext, telemetryEnabled: boolean): Promise<void>;
3
- //# sourceMappingURL=openapi.d.ts.map
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ import{detectSpec as u,getTypes as d,normalizeTypes as w,normalizeVisitors as h,resolveDocument as S,BaseResolver as g,StatsOAS as y,walkDocument as D}from"@redocly/openapi-core";import{logger as m}from"../../../../server/tools/notifiers/logger.js";import{envConfig as I}from"../../../../server/config/env-config.js";import{telemetryTraceStep as O}from"../../../telemetry/helpers/trace-step.js";import{telemetry as v}from"../../../telemetry/index.js";import{computeOas32Stats as b}from"./oas32.js";const t={refs:{metric:"References",total:0,color:"red",items:new Set},externalDocs:{metric:"External Documents",total:0,color:"magenta"},schemas:{metric:"Schemas",total:0,color:"white"},parameters:{metric:"Parameters",total:0,color:"yellow",items:new Set},links:{metric:"Links",total:0,color:"cyan",items:new Set},pathItems:{metric:"Path Items",total:0,color:"green"},webhooks:{metric:"Webhooks",total:0,color:"green"},operations:{metric:"Operations",total:0,color:"yellow"},tags:{metric:"Tags",total:0,color:"white",items:new Set}};async function _(a,o){await O("stats.openapi",async()=>{m.info("OpenAPI collector: start processing documents...");const e=(await a.cache.load(".","load-oas-docs")).data,s=[];for(const r of e)if(!r.isVirtual){const n=await k(r);s.push(n),v.sendStatsOpenapiCollectedMessage([{...n,projectBuildId:I.PROJECT_BUILD_ID||""}])}o||console.table(s),m.info("OpenAPI collector: openapi documents processing completed.")})}async function k(a){const o=a.definition,e=u(o),s=w(d(e)),r=h([{severity:"warn",ruleId:"openapi_stats",visitor:y(t)}],s),n={problems:[],specVersion:e,visitorsData:{}},c={source:{absoluteRef:""},parsed:o},i=s.Root;if(!i)throw new Error("Root type not found in OpenAPI spec types");const f=await S({rootDocument:c,rootType:i,externalRefResolver:new g});D({rootType:i,normalizedVisitors:r,resolvedRefMap:f,document:c,ctx:n});const l={path:a.relativePath,refs:t.refs.total,externalDocs:t.externalDocs.total,schemas:t.schemas.total,parameters:t.parameters.total,links:t.links.total,pathItems:t.pathItems.total,webhooks:t.webhooks.total,operations:t.operations.total,tags:t.tags.total,version:e};if(e==="oas3_2"){const p=b(o);p&&Object.assign(l,p)}return l}export{_ as collectOpenapiDocumentsStatistics};
@@ -0,0 +1,15 @@
1
+ export type OpenapiStatsOas32 = {
2
+ streamingOperations: number;
3
+ itemSchemaMediaTypes: number;
4
+ additionalOperations: number;
5
+ serversWithName: number;
6
+ discriminatorSchemas: number;
7
+ queryMethodOperations: number;
8
+ parametersWithQueryString: number;
9
+ oauth2WithMetadataUrl: number;
10
+ oauth2DeviceAuthorization: number;
11
+ componentMediaTypes: number;
12
+ xmlNodeTypeUsage: number;
13
+ };
14
+ export declare function computeOas32Stats(doc: unknown): OpenapiStatsOas32 | null;
15
+ //# sourceMappingURL=oas32.d.ts.map
@@ -0,0 +1 @@
1
+ const q=new Set(["text/event-stream","application/jsonl","application/json-seq","multipart/mixed"]);function i(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}function c(e,t){const s=e[t];return i(s)?s:void 0}function l(e,t){const s=e[t];return Array.isArray(s)?s:[]}function b(e,t){let s=0;for(const a of Object.keys(e))t.has(a)&&s++;return s}function O(e){let t=0;for(const s of Object.values(e))i(s)&&s.itemSchema!=null&&t++;return t}function S(e){return b(e,q)}function d(e){return e.filter(t=>i(t)?t.in==="querystring":!1).length}function g(e,t){const s=e.responses;if(i(s))for(const o of Object.values(s))i(o)&&i(o.content)&&(t.streaming+=S(o.content),t.itemSchema+=O(o.content));const a=c(e,"requestBody");if(a){const o=c(a,"content");o&&(t.streaming+=S(o),t.itemSchema+=O(o))}const m=l(e,"parameters");t.queryStringParams+=d(m)}function v(e,t){const s=l(e,"parameters");t.queryStringParams+=d(s);const a=["get","put","post","delete","patch","head","options","trace","query"];for(const o of a){const n=e[o];i(n)&&(o==="query"&&t.queryMethod++,g(n,t))}const m=c(e,"additionalOperations");if(m){t.additionalOps+=Object.keys(m).length;for(const o of Object.values(m))i(o)&&g(o,t)}}function f(e,t){e.discriminator!=null&&t.discriminator++,c(e,"xml")?.nodeType!=null&&t.xmlNodeType++;const a=e.items;i(a)&&f(a,t);for(const o of["properties","patternProperties"]){const n=e[o];if(i(n))for(const r of Object.values(n))i(r)&&f(r,t)}const m=e.additionalProperties;i(m)&&f(m,t);for(const o of["oneOf","anyOf","allOf","prefixItems"]){const n=e[o];if(Array.isArray(n))for(const r of n)i(r)&&f(r,t)}}function T(e){if(!i(e))return null;const t={streamingOperations:0,itemSchemaMediaTypes:0,additionalOperations:0,serversWithName:0,discriminatorSchemas:0,queryMethodOperations:0,parametersWithQueryString:0,oauth2WithMetadataUrl:0,oauth2DeviceAuthorization:0,componentMediaTypes:0,xmlNodeTypeUsage:0},s=l(e,"servers");for(const n of s)i(n)&&n.name!=null&&t.serversWithName++;const a=c(e,"paths");if(a){const n={streaming:0,additionalOps:0,queryMethod:0,queryStringParams:0,itemSchema:0};for(const r of Object.values(a))i(r)&&v(r,n);t.streamingOperations=n.streaming,t.additionalOperations=n.additionalOps,t.queryMethodOperations=n.queryMethod,t.parametersWithQueryString=n.queryStringParams,t.itemSchemaMediaTypes=n.itemSchema}const m=c(e,"webhooks");if(m){const n={streaming:0,additionalOps:0,queryMethod:0,queryStringParams:0,itemSchema:0};for(const r of Object.values(m))i(r)&&v(r,n);t.streamingOperations+=n.streaming,t.additionalOperations+=n.additionalOps,t.queryMethodOperations+=n.queryMethod,t.parametersWithQueryString+=n.queryStringParams,t.itemSchemaMediaTypes+=n.itemSchema}const o=c(e,"components");if(o){const n=c(o,"mediaTypes");if(n){t.componentMediaTypes=Object.keys(n).length;for(const u of Object.values(n))i(u)&&u.itemSchema!=null&&t.itemSchemaMediaTypes++}const r=c(o,"schemas");if(r){const u={discriminator:0,xmlNodeType:0};for(const p of Object.values(r))i(p)&&f(p,u);t.discriminatorSchemas=u.discriminator,t.xmlNodeTypeUsage=u.xmlNodeType}const h=c(o,"securitySchemes");if(h)for(const u of Object.values(h))i(u)&&u.type==="oauth2"&&(u.oauth2MetadataUrl!=null&&t.oauth2WithMetadataUrl++,c(u,"flows")?.deviceAuthorization!=null&&t.oauth2DeviceAuthorization++);const y=c(o,"parameters");y&&(t.parametersWithQueryString+=d(Object.values(y)))}return t}export{T as computeOas32Stats};
@@ -1 +1 @@
1
- import{initPlugins as n}from"../../server/plugins/lifecycle.js";import{configParserPlugin as a}from"../../server/plugins/config-parser/index.js";import{openAPIDocsPlugin as c}from"../../server/plugins/openapi-docs/index.js";import{shutdowner as s}from"../../server/tools/shutdowner.js";import{PORTAL_VERSION as p}from"../../server/version.js";import{collectOpenapiDocumentsStatistics as l}from"./collectors/openapi.js";import{telemetry as f}from"../telemetry/index.js";import{telemetryTraceStep as y}from"../telemetry/helpers/trace-step.js";async function I(e){const{"project-dir":o,telemetry:t,verbose:i}=e;f.initialize(p,t,i),await y("stats",async()=>{const r=[a,c],{lifecycleContext:m}=await n({contentDir:o},r);await l(m,t)}),await s.exitWithCode(0)}export{I as stats};
1
+ import{initPlugins as n}from"../../server/plugins/lifecycle.js";import{configParserPlugin as a}from"../../server/plugins/config-parser/index.js";import{openAPIDocsPlugin as c}from"../../server/plugins/openapi-docs/index.js";import{shutdowner as s}from"../../server/tools/shutdowner.js";import{PORTAL_VERSION as p}from"../../server/version.js";import{collectOpenapiDocumentsStatistics as l}from"./collectors/openapi/index.js";import{telemetry as f}from"../telemetry/index.js";import{telemetryTraceStep as y}from"../telemetry/helpers/trace-step.js";async function I(e){const{"project-dir":o,telemetry:t,verbose:i}=e;f.initialize(p,t,i),await y("stats",async()=>{const r=[a,c],{lifecycleContext:m}=await n({contentDir:o},r);await l(m,t)}),await s.exitWithCode(0)}export{I as stats};
@@ -1 +1 @@
1
- import{useMemo as o}from"react";const r=()=>({isSupported:o(()=>t(),[])});function t(){return typeof CSS>"u"||typeof CSS.supports!="function"?!1:CSS.supports("anchor-name: --a")&&CSS.supports("position-anchor: --a")&&CSS.supports("top: anchor(top)")}export{r as useAnchorPositioning};
1
+ import{useState as n,useEffect as s}from"react";const e=()=>{const[o,t]=n(!1);return s(()=>{t(p())},[]),{isSupported:o}};function p(){return typeof CSS>"u"||typeof CSS.supports!="function"?!1:CSS.supports("anchor-name: --a")&&CSS.supports("position-anchor: --a")&&CSS.supports("top: anchor(top)")}export{e as useAnchorPositioning};
@@ -1 +1 @@
1
- import o from"i18next";import{useEffect as a}from"react";import{DEFAULT_LOCALE_PLACEHOLDER as s}from"../../../constants/common";import{defaultTranslationImports as l}from"../../../constants/l10n/default-translations";import{useL10nConfig as u}from"../hooks";const p=()=>{const{currentLocale:t}=u();a(()=>{!t||t===s?document.documentElement.removeAttribute("lang"):document.documentElement.setAttribute("lang",t)},[t])},g=async t=>{if(!t)return;const n=new Set(o.languages);for(const e of Object.keys(t.translations)){const r=await l[e]?.()||{};o.addResourceBundle(e,"translation",{...r,...t.translations[e]?.translation??{}},!0,!0),n.delete(e)}for(const e of n)o.removeResourceBundle(e,"translation")};export{g as updateTranslations,p as useL10n};
1
+ import e from"i18next";import{useEffect as a}from"react";import{DEFAULT_LOCALE_PLACEHOLDER as s}from"../../../constants/common";import{defaultTranslationImports as l}from"../../../constants/l10n/default-translations";import{useL10nConfig as i}from"../hooks";const p=()=>{const{currentLocale:t}=i();a(()=>{const o=!t||t===s?"en":t;document.documentElement.setAttribute("lang",o)},[t])},g=async t=>{if(!t)return;const o=new Set(e.languages);for(const n of Object.keys(t.translations)){const r=await l[n]?.()||{};e.addResourceBundle(n,"translation",{...r,...t.translations[n]?.translation??{}},!0,!0),o.delete(n)}for(const n of o)e.removeResourceBundle(n,"translation")};export{g as updateTranslations,p as useL10n};
@@ -1 +1 @@
1
- import{useCallback as E,useEffect as J,useMemo as N,useRef as m,useState as C}from"react";import{AiSearchError as d}from"@redocly/theme/core/constants";import{withPathPrefix as V,splitContentByToolCalls as j}from"@redocly/theme/core/utils";import{ServerRoutes as B}from"../../../constants/common";import{useSearchSession as D}from"@redocly/theme/core/contexts";import{AI_SEARCH_REQUEST_HEADERS as G,HTTP_ERROR_MAP as K}from"../../constants";import{useI18nConfig as L,useCurrentProduct as U,usePageVersions as z}from"../hooks";import{telemetry as W}from"../telemetry/index.js";import{streamSSEMessages as X}from"./sse-parser";import{handleSSEMessage as Y}from"./message-handlers";function ur(b){const{searchSessionId:p}=D(),[r,s]=C({status:"idle"}),[w,g]=C([]),[S,y]=C([]),t=m(null),u=m(""),o=m(""),a=m([]),{currentLocale:A}=L(),i=U(),{versions:M=[]}=z()||{},l=M.find(e=>e?.active),f=E(()=>{s({status:"idle",response:""}),y([]),u.current="",o.current="",a.current=[]},[]),O=E(()=>{t.current?.abort(),t.current=null,f(),g([])},[f]);J(()=>()=>{t.current?.abort()},[]);const k=E(async(e,F)=>{if(!e)return;t.current?.abort();const h=new AbortController;t.current=h,f(),s({status:"loading",question:e,response:"",resources:[]});try{const n=await fetch(V(B.ASK_AI),{method:"POST",headers:G,body:JSON.stringify({text:e,history:F||[],locale:A,product:i?.name,filter:b?.filter,version:l&&{folder:l.folderId,label:l.label},searchSessionId:p}),signal:h.signal});if(!n.ok){s({status:"error",question:e,error:K[n.status]??d.HttpRequestFailed});return}const I=n.body;if(!I){s({status:"error",question:e,error:d.HttpRequestFailed});return}let v=!1;for await(const c of X(I,h.signal)){const Q={messageId:u.current,resources:a.current,accumulatedResponse:o.current,setConversation:g,setState:s,setToolCalls:y},{messageId:H,resources:P,accumulatedResponse:_}=Y(c,Q);H&&(u.current=H),P&&(a.current=P),_&&(o.current=_),c.type==="error"&&(v=!0)}t.current=null,s(c=>c.status==="error"?c:o.current?{status:"success",question:e,response:o.current,resources:a.current}:{status:"error",question:e,error:d.EmptyResponse}),!v&&o.current&&e.trim()&&u.current&&W.sendSearchAIQueryMessage([{object:"search",question:e,answer:o.current,resources:JSON.stringify(a.current),searchSessionId:p,messageId:u.current,...i?.name&&{product:i.name}}])}catch(n){if(n instanceof Error&&n.name==="AbortError")return;t.current=null,s({status:"error",question:e,error:d.HttpRequestFailed})}},[f,A,i?.name,b?.filter,l,p]),R=r.status==="loading"||r.status==="success"||r.status==="idle"?r.response:void 0,q=N(()=>j(R,S),[R,S]);return{askQuestion:k,isGeneratingResponse:r.status==="loading",response:R,resources:r.status==="loading"||r.status==="success"?r.resources:[],question:r.status!=="idle"?r.question:"",error:r.status==="error"?r.error:null,clearConversation:O,conversation:w,setConversation:g,toolCalls:S,contentSegments:q}}export{ur as useAiSearch};
1
+ import{useCallback as E,useEffect as Q,useMemo as J,useRef as m,useState as b}from"react";import{AiSearchError as d}from"@redocly/theme/core/constants";import{withPathPrefix as N,splitContentByToolCalls as V}from"@redocly/theme/core/utils";import{ServerRoutes as j}from"../../../constants/common";import{useSearchSession as B}from"@redocly/theme/core/contexts";import{AI_SEARCH_REQUEST_HEADERS as D,HTTP_ERROR_MAP as G}from"../../constants";import{useI18nConfig as K,usePageVersions as L}from"../hooks";import{telemetry as U}from"../telemetry/index.js";import{streamSSEMessages as z}from"./sse-parser";import{handleSSEMessage as W}from"./message-handlers";function or(n){const{searchSessionId:p}=B(),[r,s]=b({status:"idle"}),[_,g]=b([]),[S,y]=b([]),t=m(null),c=m(""),o=m(""),a=m([]),{currentLocale:C}=K(),{versions:w=[]}=L()||{},l=w.find(e=>e?.active),f=E(()=>{s({status:"idle",response:""}),y([]),c.current="",o.current="",a.current=[]},[]),M=E(()=>{t.current?.abort(),t.current=null,f(),g([])},[f]);Q(()=>()=>{t.current?.abort()},[]);const O=E(async(e,q)=>{if(!e)return;t.current?.abort();const h=new AbortController;t.current=h,f(),s({status:"loading",question:e,response:"",resources:[]});try{const u=await fetch(N(j.ASK_AI),{method:"POST",headers:D,body:JSON.stringify({text:e,history:q||[],locale:C,product:n?.product,filter:n?.filter,version:l&&{folder:l.folderId,label:l.label},searchSessionId:p}),signal:h.signal});if(!u.ok){s({status:"error",question:e,error:G[u.status]??d.HttpRequestFailed});return}const A=u.body;if(!A){s({status:"error",question:e,error:d.HttpRequestFailed});return}let I=!1;for await(const i of z(A,h.signal)){const F={messageId:c.current,resources:a.current,accumulatedResponse:o.current,setConversation:g,setState:s,setToolCalls:y},{messageId:v,resources:H,accumulatedResponse:P}=W(i,F);v&&(c.current=v),H&&(a.current=H),P&&(o.current=P),i.type==="error"&&(I=!0)}t.current=null,s(i=>i.status==="error"?i:o.current?{status:"success",question:e,response:o.current,resources:a.current}:{status:"error",question:e,error:d.EmptyResponse}),!I&&o.current&&e.trim()&&c.current&&U.sendSearchAIQueryMessage([{object:"search",question:e,answer:o.current,resources:JSON.stringify(a.current),searchSessionId:p,messageId:c.current,...n?.product&&{product:n.product}}])}catch(u){if(u instanceof Error&&u.name==="AbortError")return;t.current=null,s({status:"error",question:e,error:d.HttpRequestFailed})}},[f,n?.product,C,n?.filter,l,p]),R=r.status==="loading"||r.status==="success"||r.status==="idle"?r.response:void 0,k=J(()=>V(R,S),[R,S]);return{askQuestion:O,isGeneratingResponse:r.status==="loading",response:R,resources:r.status==="loading"||r.status==="success"?r.resources:[],question:r.status!=="idle"?r.question:"",error:r.status==="error"?r.error:null,clearConversation:M,conversation:_,setConversation:g,toolCalls:S,contentSegments:k}}export{or as useAiSearch};
@@ -1 +1 @@
1
- import e from"react";import{Helmet as s}from"@dr.pogodin/react-helmet";import{combineUrls as a}from"@redocly/theme/core/utils";import{isTruthy as c}from"../../../utils/guards/is-truthy";import{getMetaTagsAttributes as p}from"../utils/get-meta-tags-attributes";function T(r){const{seo:t,slug:l}=r;if(!t)return null;const n=p(t),i=[t.title,t.projectTitle].filter(c).join(" | ");return e.createElement(s,null,e.createElement("title",null,i),t.siteUrl?e.createElement("link",{rel:"canonical",href:a(t.siteUrl,l)}):null,t.jsonLd?e.createElement("script",{type:"application/ld+json"},JSON.stringify(t.jsonLd)):null,n.map((o,m)=>e.createElement("meta",{key:m,...o})))}export{T as SeoTags};
1
+ import e from"react";import{Helmet as c}from"@dr.pogodin/react-helmet";import{combineUrls as u}from"@redocly/theme/core/utils";import{isTruthy as f}from"../../../utils/guards/is-truthy";import{usePageVersions as p}from"../../providers/page-data/hooks";import{getMetaTagsAttributes as g}from"../utils/get-meta-tags-attributes";function b(r){const{seo:t,slug:i}=r,{versions:l}=p();if(!t)return null;const o=g(t),s=[t.title,t.projectTitle].filter(f).join(" | "),a=l.find(n=>n.default)?.link||i;return e.createElement(c,null,e.createElement("title",null,s),t.siteUrl?e.createElement("link",{rel:"canonical",href:u(t.siteUrl,a)}):null,t.jsonLd?e.createElement("script",{type:"application/ld+json"},JSON.stringify(t.jsonLd)):null,o.map((n,m)=>e.createElement("meta",{key:m,...n})))}export{b as SeoTags};
@@ -2,9 +2,7 @@ import l from"styled-components";import*as o from"react";import{RedoclyAsyncAPID
2
2
  a[id],
3
3
  a[data-section-id],
4
4
  div[data-section-id] {
5
- scroll-margin-top: calc(
6
- var(--navbar-height) + var(--banner-height) + var(--panel-gap-vertical)
7
- );
5
+ scroll-margin-top: calc(var(--navbar-height) + var(--banner-height) + var(--panel-gap-vertical));
8
6
  }
9
7
 
10
8
  --sidebar-width: 0px;
@@ -4,14 +4,10 @@ import*as a from"react";import i from"styled-components";import{RedoclyOpenAPIDo
4
4
  }
5
5
  `,g=i.div`
6
6
  div[id] {
7
- scroll-margin-top: calc(
8
- var(--navbar-height) + var(--banner-height) - var(--panel-gap-vertical)
9
- );
7
+ scroll-margin-top: calc(var(--navbar-height) + var(--banner-height) - var(--panel-gap-vertical));
10
8
  }
11
9
  a[id] {
12
- scroll-margin-top: calc(
13
- var(--navbar-height) + var(--banner-height) + var(--panel-gap-vertical)
14
- );
10
+ scroll-margin-top: calc(var(--navbar-height) + var(--banner-height) + var(--panel-gap-vertical));
15
11
  }
16
12
 
17
13
  --sidebar-width: 0px;
@@ -51,6 +51,7 @@ export type ToolCallState = {
51
51
  };
52
52
  export type AiSearchOptions = {
53
53
  filter?: SearchFilterItem[];
54
+ product?: string;
54
55
  };
55
56
  export type AiSearchState = {
56
57
  status: 'idle';
@@ -1 +1 @@
1
- const e={"dev.newApp":"\u062A\u0637\u0628\u064A\u0642 \u062C\u062F\u064A\u062F","dev.newApp.text":"\u0623\u0646\u0634\u0626 \u062A\u0637\u0628\u064A\u0642\u0643 \u0627\u0644\u0623\u0648\u0644","dev.sidebar.header":"\u062A\u0637\u0628\u064A\u0642\u0627\u062A\u064A","dev.sidebar.footer.text":"\u062A\u0637\u0628\u064A\u0642 \u062C\u062F\u064A\u062F","dev.create.app.dialog.appName.placeholder":"\u0627\u0633\u0645 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","dev.create.app.dialog.appName.error":"\u064A\u062C\u0628 \u0623\u0646 \u064A\u0628\u062F\u0623 \u0627\u0644\u0627\u0633\u0645 \u0628\u062D\u0631\u0641 \u0648\u064A\u0645\u0643\u0646 \u0623\u0646 \u064A\u062D\u062A\u0648\u064A \u0641\u0642\u0637 \u0639\u0644\u0649: \u0623\u062D\u0631\u0641 \u0648\u0623\u0631\u0642\u0627\u0645 \u0648\u0645\u0633\u0627\u0641\u0627\u062A \u0648. \u0648_ \u0648- \u0648$ \u0648% \u0648#","dev.create.app.dialog.selectAPIs":"\u0627\u062E\u062A\u0631 \u0648\u0627\u062C\u0647\u0627\u062A \u0628\u0631\u0645\u062C\u0629 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A","dev.create.app.dialog.description":"\u0627\u0644\u0648\u0635\u0641","dev.create.app.dialog.description.placeholder":"\u0641\u0627\u0631\u063A","dev.create.app.dialog.create":"\u0625\u0646\u0634\u0627\u0621 \u062A\u0637\u0628\u064A\u0642","dev.create.app.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.main.tab.appKeys":"\u0645\u0641\u0627\u062A\u064A\u062D API","dev.main.tab.logs":"\u0627\u0644\u0633\u062C\u0644\u0627\u062A","dev.app.description.title":"\u0627\u0644\u0648\u0635\u0641","dev.edit.description.dialog.title":"\u062A\u063A\u064A\u064A\u0631 \u0627\u0644\u0648\u0635\u0641","dev.edit.description.dialog.save":"\u062D\u0641\u0638 \u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A","dev.edit.description.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.edit.apis.dialog.selectedAPIs":"\u0648\u0627\u062C\u0647\u0627\u062A \u0628\u0631\u0645\u062C\u0629 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A \u0627\u0644\u0645\u062D\u062F\u062F\u0629","dev.app.key.create":"\u0625\u0646\u0634\u0627\u0621 \u0645\u0641\u062A\u0627\u062D","dev.create.key.dialog.title":"\u0625\u0646\u0634\u0627\u0621 \u0645\u0641\u062A\u0627\u062D","dev.create.key.dialog.create":"\u0625\u0646\u0634\u0627\u0621 \u0645\u0641\u062A\u0627\u062D","dev.create.key.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.app.edit":"\u062A\u0639\u062F\u064A\u0644","dev.app.delete":"\u062D\u0630\u0641","dev.edit.app.dialog.title":"\u062A\u063A\u064A\u064A\u0631 \u0627\u0633\u0645 \u0627\u0644\u0639\u0631\u0636","dev.edit.app.dialog.save":"\u062D\u0641\u0638 \u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A","dev.edit.app.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.delete.app.dialog.title":"\u062D\u0630\u0641 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","dev.delete.app.dialog.confirmation":"\u0647\u0644 \u0623\u0646\u062A \u0645\u062A\u0623\u0643\u062F \u0623\u0646\u0643 \u062A\u0631\u064A\u062F \u062D\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u061F","dev.delete.app.dialog.delete":"\u062D\u0630\u0641 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","dev.delete.app.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.app.key.roll":"\u062A\u062F\u0648\u064A\u0631 \u0645\u0641\u062A\u0627\u062D API","dev.roll.key.dialog.title":"\u062A\u062F\u0648\u064A\u0631 \u0645\u0641\u062A\u0627\u062D API","dev.roll.key.dialog.apiKey":"API key","dev.roll.key.dialog.expires":"\u062A\u0646\u062A\u0647\u064A \u0635\u0644\u0627\u062D\u064A\u062A\u0647","dev.roll.key.dialog.confirmation":"\u0647\u0644 \u0623\u0646\u062A \u0645\u062A\u0623\u0643\u062F \u0623\u0646\u0643 \u062A\u0631\u064A\u062F \u062A\u062F\u0648\u064A\u0631 \u0645\u0641\u062A\u0627\u062D API \u0647\u0630\u0627\u061F","dev.roll.key.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.roll.key.dialog.roll":"\u062A\u062F\u0648\u064A\u0631 \u0645\u0641\u062A\u0627\u062D API","dev.update.key.dialog.title":"\u062A\u062D\u062F\u064A\u062B \u0627\u0644\u0645\u0641\u062A\u0627\u062D","dev.update.key.dialog.update":"\u062A\u062D\u062F\u064A\u062B \u0627\u0644\u0645\u0641\u062A\u0627\u062D","dev.update.key.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.app.key.api.name":"\u0627\u0633\u0645 API","dev.app.key.api.status":"\u0627\u0644\u062D\u0627\u0644\u0629","dev.app.key.api.edit":"\u062A\u0639\u062F\u064A\u0644 \u0648\u0627\u062C\u0647\u0627\u062A \u0628\u0631\u0645\u062C\u0629 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A","dev.edit.apis.dialog.title":"\u062A\u0639\u062F\u064A\u0644 \u0648\u0627\u062C\u0647\u0627\u062A \u0628\u0631\u0645\u062C\u0629 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A","dev.edit.apis.dialog.apiKey":"API key","dev.edit.apis.dialog.save":"\u062D\u0641\u0638","dev.edit.apis.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.select.placeholder":"\u0641\u0627\u0631\u063A","dev.app.overview.status.pending":"\u0642\u064A\u062F \u0627\u0644\u0627\u0646\u062A\u0638\u0627\u0631","dev.app.overview.status.approved":"\u0645\u0639\u062A\u0645\u062F","dev.app.overview.status.revoked":"\u0645\u0644\u063A\u0649","dev.app.overview.status":"\u0627\u0644\u062D\u0627\u0644\u0629","dev.app.overview.non-production":"\u0627\u062E\u062A\u0628\u0627\u0631","dev.app.overview.production":"\u0625\u0646\u062A\u0627\u062C\u064A","dev.app.overview.clientId":"\u0627\u0644\u0633\u0631","dev.app.overview.apiKey":"API key","dev.app.key.revoke":"\u0625\u0644\u063A\u0627\u0621 \u0645\u0641\u062A\u0627\u062D API","dev.revoke.key.dialog.title":"\u0625\u0644\u063A\u0627\u0621 \u0645\u0641\u062A\u0627\u062D API","dev.revoke.key.dialog.apiKey":"API key","dev.revoke.key.dialog.expires":"\u062A\u0646\u062A\u0647\u064A \u0635\u0644\u0627\u062D\u064A\u062A\u0647","dev.revoke.key.dialog.confirmation":"\u0647\u0644 \u0623\u0646\u062A \u0645\u062A\u0623\u0643\u062F \u0623\u0646\u0643 \u062A\u0631\u064A\u062F \u0625\u0644\u063A\u0627\u0621 \u0645\u0641\u062A\u0627\u062D API \u0647\u0630\u0627\u061F","dev.revoke.key.dialog.revoke":"\u0625\u0644\u063A\u0627\u0621 \u0645\u0641\u062A\u0627\u062D API","dev.revoke.key.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.app.overview.expires":"\u062A\u0646\u062A\u0647\u064A \u0635\u0644\u0627\u062D\u064A\u062A\u0647","dev.app.overview.created":"\u062A\u0645 \u0627\u0644\u0625\u0646\u0634\u0627\u0621","dev.app.overview.visibilityToggle.hide":"\u0625\u062E\u0641\u0627\u0621","dev.app.overview.visibilityToggle.show":"\u0625\u0638\u0647\u0627\u0631","search.loading":"\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644...","search.noResults.title":"\u0644\u0627 \u062A\u0648\u062C\u062F \u0646\u062A\u0627\u0626\u062C","search.keys.navigate":"\u0644\u0644\u062A\u0646\u0642\u0644","search.keys.select":"\u0644\u0644\u0627\u062E\u062A\u064A\u0627\u0631","search.keys.exit":"\u0644\u0644\u062E\u0631\u0648\u062C","search.searchItem.deprecated":"\u0645\u0647\u0645\u0644","search.label":"\u0627\u0628\u062D\u062B \u0641\u064A \u0627\u0644\u0645\u0633\u062A\u0646\u062F\u0627\u062A...","search.cancel":"\u0625\u0644\u063A\u0627\u0621","search.recent":"\u0639\u0645\u0644\u064A\u0627\u062A \u0627\u0644\u0628\u062D\u062B \u0627\u0644\u0623\u062E\u064A\u0631\u0629","search.navbar.label":"\u0628\u062D\u062B","search.suggested":"\u0627\u0644\u0635\u0641\u062D\u0627\u062A \u0627\u0644\u0645\u0642\u062A\u0631\u062D\u0629","search.groups.all":"\u0627\u0644\u0643\u0644","search.showMore":"\u0639\u0631\u0636 \u0627\u0644\u0645\u0632\u064A\u062F","search.filter.title":"\u0645\u0631\u0634\u062D \u0645\u062A\u0642\u062F\u0645","search.filter.reset":"\u0625\u0639\u0627\u062F\u0629 \u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0645\u0631\u0634\u062D\u0627\u062A","search.filter.field.reset":"\u0625\u0639\u0627\u062F\u0629 \u062A\u0639\u064A\u064A\u0646","search.filter.field.footer":"\u0627\u0628\u062D\u062B \u0644\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0639\u0646\u0627\u0635\u0631...","search.ai.newConversation":"\u0645\u062D\u0627\u062F\u062B\u0629 \u062C\u062F\u064A\u062F\u0629","search.ai.welcomeText":"\u0645\u0631\u062D\u0628\u064B\u0627 \u0628\u0643 \u0641\u064A \u0628\u062D\u062B \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A! \u0644\u0627 \u062A\u062A\u0631\u062F\u062F \u0641\u064A \u0633\u0624\u0627\u0644\u064A \u0639\u0646 \u0623\u064A \u0634\u064A\u0621. \u0643\u064A\u0641 \u064A\u0645\u0643\u0646\u0646\u064A \u0627\u0644\u0645\u0633\u0627\u0639\u062F\u0629\u061F","search.ai.placeholder":"\u0627\u0637\u0631\u062D \u0633\u0624\u0627\u0644\u0627\u064B...","search.ai.back":"\u0631\u062C\u0648\u0639","search.ai.generatingResponse":"\u062C\u0627\u0631\u064D \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0631\u062F...","search.ai.followUpQuestion":"\u0647\u0644 \u0644\u062F\u064A\u0643 \u0633\u0624\u0627\u0644 \u0645\u062A\u0627\u0628\u0639\u0629\u061F","search.ai.suggestionsTitle":"\u0627\u0642\u062A\u0631\u0627\u062D\u0627\u062A","search.ai.thinkingText":"\u0623\u0641\u0643\u0631...","search.ai.resourcesFound":"\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0645\u0648\u0627\u0631\u062F","search.ai.resourcesFound.basedOn":"\u0628\u0646\u0627\u0621\u064B \u0639\u0644\u0649","search.ai.resourcesFound.resources":"\u0645\u0648\u0627\u0631\u062F","search.ai.toolResult.found":"\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649","search.ai.toolResult.found.documents":"\u0645\u0633\u062A\u0646\u062F\u0627\u062A","search.ai.toolCall.searching":"\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B...","search.ai.feedback.title":"\u0645\u0627 \u0627\u0644\u0630\u064A \u0644\u0645 \u064A\u0639\u062C\u0628\u0643 \u0641\u064A \u0647\u0630\u0647 \u0627\u0644\u0627\u0633\u062A\u062C\u0627\u0628\u0629\u061F","search.ai.feedback.detailsPlaceholder":"\u0623\u0636\u0641 \u062A\u0641\u0627\u0635\u064A\u0644 \u0645\u062D\u062F\u062F\u0629","search.ai.feedback.thanks":"\u0634\u0643\u0631\u0627\u064B \u0644\u0645\u0644\u0627\u062D\u0638\u0627\u062A\u0643!","search.ai.feedback.more":"\u0627\u0644\u0645\u0632\u064A\u062F...","search.ai.label":"\u0627\u0633\u0623\u0644 \u0645\u0633\u0627\u0639\u062F \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A","search.ai.button":"\u0628\u062D\u062B \u0628\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A","search.ai.backToSearch":"\u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0628\u062D\u062B","search.ai.assistant":"\u0627\u0644\u0645\u0633\u0627\u0639\u062F","search.ai.disclaimer":"\u0642\u062F \u064A\u0648\u0641\u0631 \u0628\u062D\u062B \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A \u0646\u062A\u0627\u0626\u062C \u063A\u064A\u0631 \u0643\u0627\u0645\u0644\u0629 \u0623\u0648 \u063A\u064A\u0631 \u0635\u062D\u064A\u062D\u0629. \u062A\u062D\u0642\u0642 \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0627\u0644\u0645\u0647\u0645\u0629.","search.ai.error.description":"\u0648\u0627\u062C\u0647\u062A\u0646\u0627 \u0645\u0634\u0643\u0644\u0629 \u0623\u062B\u0646\u0627\u0621 \u0645\u0639\u0627\u0644\u062C\u0629 \u0628\u062D\u062B\u0643. \u064A\u0631\u062C\u0649 \u0627\u0644\u0645\u062D\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062E\u0631\u0649 \u0644\u0627\u062D\u0642\u064B\u0627 \u0623\u0648 \u062A\u062D\u0633\u064A\u0646 \u0627\u0633\u062A\u0639\u0644\u0627\u0645\u0643. \u0625\u0630\u0627 \u0627\u0633\u062A\u0645\u0631\u062A \u0627\u0644\u0645\u0634\u0643\u0644\u0629\u060C \u0641\u064A\u0631\u062C\u0649 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u062F\u0639\u0645 Redocly.","search.ai.error.description.forbidden":"\u0628\u062D\u062B \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A \u063A\u064A\u0631 \u0645\u062A\u0648\u0641\u0631 \u062D\u0627\u0644\u064A\u064B\u0627.","search.ai.error.description.unauthorized":"\u063A\u064A\u0631 \u0645\u0635\u0631\u062D \u0644\u0643 \u0628\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0628\u062D\u062B \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A.","search.ai.error.header":"\u0639\u0641\u0648\u064B\u0627! \u062D\u062F\u062B \u062E\u0637\u0623 \u0645\u0627.","search.ai.error.header.forbidden":"\u0627\u0644\u0645\u064A\u0632\u0629 \u063A\u064A\u0631 \u0645\u062A\u0648\u0641\u0631\u0629","search.ai.error.header.unauthorized":"\u0627\u0644\u0645\u0635\u0627\u062F\u0642\u0629 \u0645\u0637\u0644\u0648\u0628\u0629","aiAssistant.trigger":"\u0627\u0633\u0623\u0644 \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A","toc.header":"\u0641\u064A \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062D\u0629","footer.copyrightText":"","page.homeButton":"\u0627\u0630\u0647\u0628 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0629","page.forbidden.title":"\u0627\u0644\u0648\u0635\u0648\u0644 \u0645\u0631\u0641\u0648\u0636","page.forbidden.description":"\u0644\u064A\u0633 \u0644\u062F\u064A\u0643 \u0625\u0630\u0646 \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062D\u0629. \u0625\u0630\u0627 \u0643\u0646\u062A \u062A\u0639\u062A\u0642\u062F \u0623\u0646 \u0647\u0630\u0627 \u062E\u0637\u0623\u060C \u0627\u062A\u0635\u0644 \u0628\u0627\u0644\u0645\u0633\u0624\u0648\u0644 \u0623\u0648 \u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0629.","page.notFound.title":"\u0634\u064A\u0621 \u0645\u0627 \u0645\u0641\u0642\u0648\u062F...","page.notFound.description":"\u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u062A\u064A \u0643\u0646\u062A \u062A\u062D\u0627\u0648\u0644 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u064A\u0647\u0627 \u063A\u064A\u0631 \u0645\u0648\u062C\u0648\u062F\u0629 \u0623\u0648 \u0631\u0628\u0645\u0627 \u062A\u0645 \u0646\u0642\u0644\u0647\u0627. \u064A\u0645\u0643\u0646\u0643 \u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629\u060C \u0623\u0648 \u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0629\u060C \u0623\u0648 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0634\u0631\u064A\u0637 \u0627\u0644\u0628\u062D\u062B \u0644\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0645\u0627 \u062A\u0628\u062D\u062B \u0639\u0646\u0647.","page.lastUpdated.timeago":"\u0622\u062E\u0631 \u062A\u062D\u062F\u064A\u062B","page.lastUpdated.on":"\u0622\u062E\u0631 \u062A\u062D\u062F\u064A\u062B \u0641\u064A","catalog.filters.title":"\u0627\u0644\u0645\u0631\u0634\u062D\u0627\u062A","catalog.filters.add":"\u0625\u0636\u0627\u0641\u0629 \u0645\u0631\u0634\u062D","catalog.filters.placeholder":"\u0627\u0643\u062A\u0628 \u0644\u0644\u062A\u0631\u0634\u064A\u062D...","catalog.filters.clearAll":"\u0645\u0633\u062D \u0627\u0644\u0645\u0631\u0634\u062D\u0627\u062A","catalog.filters.select.addFilter":"\u0625\u0636\u0627\u0641\u0629 \u0645\u0631\u0634\u062D","catalog.filters.select.all":"\u0627\u0644\u0643\u0644","catalog.filters.done":"\u062A\u0645","filter.dateRange.from":"\u0645\u0646:","filter.dateRange.to":"\u0625\u0644\u0649:","sidebar.menu.backLabel":"\u0631\u062C\u0648\u0639","sidebar.menu.backToLabel":"\u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 {{value}}","sidebar.actions.show":"\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0634\u0631\u064A\u0637 \u0627\u0644\u062C\u0627\u0646\u0628\u064A","sidebar.actions.hide":"\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0634\u0631\u064A\u0637 \u0627\u0644\u062C\u0627\u0646\u0628\u064A","sidebar.actions.changeToSingleColumn":"\u0627\u0644\u062A\u0628\u062F\u064A\u0644 \u0625\u0644\u0649 \u0639\u0645\u0648\u062F \u0648\u0627\u062D\u062F","sidebar.actions.changeToTwoColumns":"\u0627\u0644\u062A\u0628\u062F\u064A\u0644 \u0625\u0644\u0649 \u0639\u0645\u0648\u062F\u064A\u0646","sidebar.actions.singleColumn":"\u0639\u0645\u0648\u062F \u0648\u0627\u062D\u062F","sidebar.actions.twoColumns":"\u0639\u0645\u0648\u062F\u0627\u0646","versionPicker.label":"\u0627\u0644\u0625\u0635\u062F\u0627\u0631:","versionPicker.unversioned":"\u062C\u0645\u064A\u0639 \u0627\u0644\u0625\u0635\u062F\u0627\u0631\u0627\u062A","codeSnippet.copy.buttonText":"\u062A\u0645 \u0627\u0644\u0646\u0633\u062E!","codeSnippet.copy.tooltipText":"\u0646\u0633\u062E \u0625\u0644\u0649 \u0627\u0644\u062D\u0627\u0641\u0638\u0629","codeSnippet.copy.toasterText":"\u0646\u0633\u062E","codeSnippet.expand.tooltipText":"\u062A\u0648\u0633\u064A\u0639 \u0627\u0644\u0643\u0644","codeSnippet.collapse.tooltipText":"\u0637\u064A \u0627\u0644\u0643\u0644","markdown.editPage.text":"\u062A\u0639\u062F\u064A\u0644","feedback.settings.comment.submitText":"\u0634\u0643\u0631\u064B\u0627 \u0644\u0645\u0633\u0627\u0639\u062F\u062A\u0643 \u0641\u064A \u062A\u062D\u0633\u064A\u0646 \u0648\u062B\u0627\u0626\u0642\u0646\u0627!","feedback.settings.comment.label":"\u064A\u0631\u062C\u0649 \u0645\u0634\u0627\u0631\u0643\u0629 \u0645\u0644\u0627\u062D\u0638\u0627\u062A\u0643 \u0645\u0639\u0646\u0627.","feedback.settings.comment.send":"\u0625\u0631\u0633\u0627\u0644","feedback.settings.comment.cancel":"\u0625\u0644\u063A\u0627\u0621","feedback.settings.comment.maxLength":"\u062A\u0645 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0627\u0644\u062D\u062F \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0637\u0648\u0644 \u0627\u0644\u0645\u062D\u062A\u0648\u0649 \u0648\u0647\u0648 {{maxLength}} \u062D\u0631\u0641","feedback.settings.comment.satisfiedLabel":"\u0645\u0627 \u0627\u0644\u0630\u064A \u0643\u0627\u0646 \u0623\u0643\u062B\u0631 \u0641\u0627\u0626\u062F\u0629\u061F","feedback.settings.comment.neutralLabel":"\u0645\u0627 \u0627\u0644\u0630\u064A \u064A\u0645\u0643\u0646\u0646\u0627 \u062A\u062D\u0633\u064A\u0646\u0647\u061F","feedback.settings.comment.dissatisfiedLabel":"\u0645\u0627 \u0627\u0644\u0630\u064A \u064A\u0645\u0643\u0646\u0646\u0627 \u062A\u062D\u0633\u064A\u0646\u0647\u061F","feedback.settings.submitText":"\u0634\u0643\u0631\u064B\u0627 \u0639\u0644\u0649 \u0645\u0644\u0627\u062D\u0638\u0627\u062A\u0643!","feedback.settings.label":"\u0647\u0644 \u0643\u0627\u0646 \u0647\u0630\u0627 \u0645\u0641\u064A\u062F\u064B\u0627\u061F","feedback.settings.reasons.label":"\u0623\u064A \u0639\u0628\u0627\u0631\u0629 \u062A\u0635\u0641 \u0623\u0641\u0643\u0627\u0631\u0643 \u062D\u0648\u0644 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062D\u0629 \u0628\u0634\u0643\u0644 \u0623\u0641\u0636\u0644\u061F","feedback.submit":"\u0625\u0631\u0633\u0627\u0644","feedback.cancel":"\u0625\u0644\u063A\u0627\u0621","feedback.settings.comment.likeLabel":"\u0645\u0627 \u0627\u0644\u0630\u064A \u0643\u0627\u0646 \u0623\u0643\u062B\u0631 \u0641\u0627\u0626\u062F\u0629\u061F","feedback.settings.comment.dislikeLabel":"\u0645\u0627 \u0627\u0644\u0630\u064A \u064A\u0645\u0643\u0646\u0646\u0627 \u062A\u062D\u0633\u064A\u0646\u0647\u061F","feedback.sentiment.thumbUp":"\u0623\u0639\u062C\u0628\u0646\u064A","feedback.sentiment.thumbDown":"\u0644\u0645 \u064A\u0639\u062C\u0628\u0646\u064A","feedback.settings.leftScaleLabel":"\u063A\u064A\u0631 \u0645\u0641\u064A\u062F \u0639\u0644\u0649 \u0627\u0644\u0625\u0637\u0644\u0627\u0642","feedback.settings.rightScaleLabel":"\u0645\u0641\u064A\u062F \u0644\u0644\u063A\u0627\u064A\u0629","feedback.settings.optionalEmail.label":"\u0628\u0631\u064A\u062F\u0643 \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A (\u0627\u062E\u062A\u064A\u0627\u0631\u064A\u060C \u0644\u0644\u0645\u062A\u0627\u0628\u0639\u0629)","feedback.settings.optionalEmail.placeholder":"yourname@example.com","codeSnippet.report.buttonText":"\u0625\u0628\u0644\u0627\u063A","codeSnippet.report.tooltipText":"\u0627\u0644\u0625\u0628\u0644\u0627\u063A \u0639\u0646 \u0645\u0634\u0643\u0644\u0629","codeSnippet.report.label":"\u0645\u0627 \u0647\u064A \u0627\u0644\u0645\u0634\u0643\u0644\u0629 \u0641\u064A \u0647\u0630\u0627 \u0627\u0644\u0631\u0645\u0632\u061F","userMenu.login":"\u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u062F\u062E\u0648\u0644","userMenu.logout":"\u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u062E\u0631\u0648\u062C","userMenu.devOnboardingLabel":"\u062A\u0637\u0628\u064A\u0642\u0627\u062A\u064A","mobileMenu.mainMenu":"\u0627\u0644\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0629","mobileMenu.previous":"\u0627\u0644\u0633\u0627\u0628\u0642","mobileMenu.products":"\u0627\u0644\u0645\u0646\u062A\u062C\u0627\u062A","mobileMenu.version":"\u0627\u0644\u0625\u0635\u062F\u0627\u0631","page.nextButton":"\u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u062A\u0627\u0644\u064A\u0629","page.previousButton":"\u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629","page.actions.copyButtonText":"\u0646\u0633\u062E","page.actions.copyTitle":"\u0646\u0633\u062E \u0644\u0644\u0646\u0645\u0648\u0630\u062C \u0627\u0644\u0644\u063A\u0648\u064A","page.actions.copyDescription":"\u0646\u0633\u062E \u0627\u0644\u0635\u0641\u062D\u0629 \u0643\u0640 Markdown \u0644\u0644\u0646\u0645\u0627\u0630\u062C \u0627\u0644\u0644\u063A\u0648\u064A\u0629","page.actions.viewAsMdButtonText":"\u0639\u0631\u0636 \u0643\u0640 Markdown","page.actions.viewAsMdTitle":"\u0639\u0631\u0636 \u0643\u0640 Markdown","page.actions.viewAsMdDescription":"\u0641\u062A\u062D \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062D\u0629 \u0643\u0640 Markdown","page.actions.chatGptButtonText":"\u0641\u062A\u062D \u0641\u064A ChatGPT","page.actions.chatGptTitle":"\u0641\u062A\u062D \u0641\u064A ChatGPT","page.actions.chatGptDescription":"\u0627\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0645\u0646 ChatGPT","page.actions.claudeButtonText":"\u0641\u062A\u062D \u0641\u064A Claude","page.actions.claudeTitle":"\u0641\u062A\u062D \u0641\u064A Claude","page.actions.claudeDescription":"\u0627\u062D\u0635\u0644 \u0639\u0644\u0649 \u0631\u0624\u0649 \u0645\u0646 \u0643\u0644\u0648\u062F","page.actions.cursorMcpButtonText":"\u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u0640 Cursor","page.actions.cursorMcpTitle":"\u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u0640 Cursor","page.actions.cursorMcpDescription":"\u062A\u062B\u0628\u064A\u062A \u062E\u0627\u062F\u0645 MCP \u0639\u0644\u0649 Cursor","page.actions.connectMcp":"\u062A\u0648\u0635\u064A\u0644 MCP","page.actions.connectMcp.cursor":"\u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u0640 Cursor","page.actions.connectMcp.cursorDescription":"\u062A\u062B\u0628\u064A\u062A \u062E\u0627\u062F\u0645 MCP \u0639\u0644\u0649 Cursor","page.actions.connectMcp.vscode":"\u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u0640 VS Code","page.actions.connectMcp.vscodeDescription":"\u062A\u062B\u0628\u064A\u062A \u062E\u0627\u062F\u0645 MCP \u0639\u0644\u0649 VS Code","page.actions.connectMcp.copyConfig":"\u0646\u0633\u062E \u062A\u0643\u0648\u064A\u0646 MCP","page.actions.connectMcp.copyConfigDescription":"\u0646\u0633\u062E \u062A\u0643\u0648\u064A\u0646 MCP \u0628\u0635\u064A\u063A\u0629 JSON","navbar.products":"\u0627\u0644\u0645\u0646\u062A\u062C\u0627\u062A","openapi.download.description.title":"\u062A\u0646\u0632\u064A\u0644 \u0648\u0635\u0641 OpenAPI","openapi.info.title":"\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629","openapi.info.contact.url":"URL","openapi.info.contact.name":"\u0627\u0644\u0628\u0631\u064A\u062F \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A","openapi.info.license":"\u0627\u0644\u062A\u0631\u062E\u064A\u0635","openapi.info.termsOfService":"\u0634\u0631\u0648\u0637 \u0627\u0644\u062E\u062F\u0645\u0629","openapi.info.metadata.title":"\u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0648\u0635\u0641\u064A\u0629","openapi.key":"\u0627\u0644\u0645\u0641\u062A\u0627\u062D","openapi.value":"\u0627\u0644\u0642\u064A\u0645\u0629","openapi.enum":"\u062A\u0639\u062F\u0627\u062F","openapi.items":"\u0627\u0644\u0639\u0646\u0627\u0635\u0631","openapi.default":"\u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A","openapi.variable":"\u0645\u062A\u063A\u064A\u0631","openapi.variables":"\u0645\u062A\u063A\u064A\u0631\u0627\u062A","openapi.actions.show":"\u0625\u0638\u0647\u0627\u0631","openapi.actions.hide":"\u0625\u062E\u0641\u0627\u0621","openapi.actions.more":"\u0627\u0644\u0645\u0632\u064A\u062F","openapi.languages.title":"\u0627\u0644\u0644\u063A\u0627\u062A","openapi.servers.title":"\u0627\u0644\u062E\u0648\u0627\u062F\u0645","openapi.operations":"\u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A","openapi.webhooks":"Webhooks","openapi.description":"\u0627\u0644\u0648\u0635\u0641","openapi.badges.deprecated":"\u0645\u0647\u0645\u0644","openapi.badges.required":"\u0645\u0637\u0644\u0648\u0628","openapi.badges.webhook":"Webhook","openapi.request":"\u0627\u0644\u0637\u0644\u0628","openapi.path":"\u0627\u0644\u0645\u0633\u0627\u0631","openapi.query":"\u0627\u0644\u0627\u0633\u062A\u0639\u0644\u0627\u0645","openapi.cookie":"\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637","openapi.header":"\u0627\u0644\u0631\u0624\u0648\u0633","openapi.body":"\u0627\u0644\u062C\u0633\u0645","openapi.responses":"\u0627\u0644\u0631\u062F\u0648\u062F","openapi.response":"\u0627\u0644\u0631\u062F","openapi.callbacks":"\u0639\u0645\u0644\u064A\u0627\u062A \u0627\u0644\u0627\u0633\u062A\u062F\u0639\u0627\u0621","openapi.callbackRequest":"\u0637\u0644\u0628 \u0627\u0644\u0627\u0633\u062A\u062F\u0639\u0627\u0621","openapi.callbackResponse":"\u0631\u062F \u0627\u0644\u0627\u0633\u062A\u062F\u0639\u0627\u0621","openapi.payload":"\u0645\u062D\u062A\u0648\u0649 \u0627\u0644\u0637\u0644\u0628","openapi.discriminator":"\u0627\u0644\u0645\u0645\u064A\u0632","openapi.contentType":"\u0646\u0648\u0639 \u0627\u0644\u0645\u062D\u062A\u0648\u0649","openapi.tryIt":"\u062C\u0631\u0628\u0647\u0627","openapi.loading":"\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644...","openapi.example":"\u0645\u062B\u0627\u0644","openapi.examples":"\u0623\u0645\u062B\u0644\u0629","openapi.additionalProperties":"\u062E\u0627\u0635\u064A\u0629 \u0625\u0636\u0627\u0641\u064A\u0629","openapi.patternProperties":"\u062E\u0627\u0635\u064A\u0629 \u0627\u0644\u0646\u0645\u0637","openapi.required":"\u0645\u0637\u0644\u0648\u0628","openapi.recursive":"\u0645\u062A\u0643\u0631\u0631","openapi.complex":"\u0645\u0639\u0642\u062F","openapi.hideExample":"\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0645\u062B\u0627\u0644","openapi.showExample":"\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0645\u062B\u0627\u0644","openapi.expandAll":"\u062A\u0648\u0633\u064A\u0639 \u0627\u0644\u0643\u0644","openapi.collapseAll":"\u0637\u064A \u0627\u0644\u0643\u0644","openapi.viewSecurityDetails":"\u0639\u0631\u0636 \u062A\u0641\u0627\u0635\u064A\u0644 \u0627\u0644\u0623\u0645\u0627\u0646","openapi.noResponseExample":"\u0644\u0627 \u064A\u0648\u062C\u062F \u0645\u062B\u0627\u0644 \u0644\u0644\u0631\u062F","openapi.discriminator.searchPlaceholder":"\u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0627\u0644\u0639\u0646\u0627\u0635\u0631","openapi.discriminator.searchNoResults":"\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0639\u0646\u0627\u0635\u0631","openapi.discriminator.defaultMapping":"\u0627\u0644\u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A","openapi.discriminator.defaultMappingTooltip":"OpenAPI 3.2: \u064A\u064F\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A \u0639\u0646\u062F\u0645\u0627 \u0644\u0627 \u062A\u062A\u0637\u0627\u0628\u0642 \u0627\u0644\u062A\u0639\u064A\u064A\u0646\u0627\u062A \u0627\u0644\u0623\u062E\u0631\u0649.","openapi.noResponseContent":"\u0644\u0627 \u064A\u0648\u062C\u062F \u0645\u062D\u062A\u0648\u0649","openapi.noRequestPayload":"\u0644\u0627 \u062A\u0648\u062C\u062F \u062D\u0645\u0648\u0644\u0629 \u0637\u0644\u0628","openapi.hidePattern":"\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0646\u0645\u0637","openapi.showPattern":"\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0646\u0645\u0637","openapi.authorizationUrl":"\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u062A\u0641\u0648\u064A\u0636","openapi.tokenUrl":"\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u0631\u0645\u0632 \u0627\u0644\u0645\u0645\u064A\u0632","openapi.refreshUrl":"\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u062A\u062D\u062F\u064A\u062B","openapi.showOptionalScopes":"\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u0627\u062E\u062A\u064A\u0627\u0631\u064A\u0629","openapi.hideOptionalScopes":"\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u0627\u062E\u062A\u064A\u0627\u0631\u064A\u0629","openapi.security":"\u0627\u0644\u0623\u0645\u0627\u0646","openapi.httpAuthorizationScheme":"\u0645\u062E\u0637\u0637 \u062A\u0641\u0648\u064A\u0636 HTTP","openapi.bearerFormat":"\u062A\u0646\u0633\u064A\u0642 Bearer","openapi.parameterName":"\u0627\u0633\u0645 \u0627\u0644\u0645\u0639\u0644\u0645\u0629","openapi.flowType":"\u0646\u0648\u0639 \u0627\u0644\u062A\u062F\u0641\u0642","openapi.connectUrl":"\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u0627\u062A\u0635\u0627\u0644","openapi.requiredScopes":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629","openapi.unsupportedLanguage":"\u0627\u0644\u0644\u063A\u0629 \u063A\u064A\u0631 \u0645\u062F\u0639\u0648\u0645\u0629.","openapi.failedToGenerateCodeSample":"\u0641\u0634\u0644 \u0625\u0646\u0634\u0627\u0621 \u0646\u0645\u0648\u0630\u062C \u0627\u0644\u0631\u0645\u0632.","openapi.schemaCatalogLink.title":"\u0627\u0644\u0645\u062E\u0637\u0637 \u0627\u0644\u0645\u0634\u062A\u0631\u0643","openapi.schemaCatalogLink.copyButtonTooltip":"\u0646\u0633\u062E \u0625\u0644\u0649 \u0627\u0644\u062D\u0627\u0641\u0638\u0629","openapi.schemaCatalogLink.copiedTooltip":"\u062A\u0645 \u0627\u0644\u0646\u0633\u062E!","openapi.mcp.title":"\u062E\u0627\u062F\u0645 MCP","openapi.mcp.endpoint":"\u0646\u0642\u0637\u0629 \u0627\u0644\u0646\u0647\u0627\u064A\u0629","openapi.mcp.tools":"MCP \u0627\u0644\u0623\u062F\u0648\u0627\u062A","openapi.mcp.protocolVersion":"\u0646\u0633\u062E\u0629 \u0627\u0644\u0628\u0631\u0648\u062A\u0648\u0643\u0648\u0644","openapi.mcp.capabilities":"\u0627\u0644\u0645\u064A\u0632\u0627\u062A","openapi.mcp.experimentalCapabilities":"\u0627\u0644\u0645\u064A\u0632\u0627\u062A \u0627\u0644\u062A\u062C\u0631\u064A\u0628\u064A\u0629","openapi.mcp.inputSchema":"\u0627\u0644\u0645\u062E\u0637\u0637 \u0627\u0644\u062F\u062E\u0644","openapi.mcp.inputExample":"\u0645\u062B\u0627\u0644 \u0627\u0644\u062F\u062E\u0644","openapi.mcp.outputSchema":"\u0627\u0644\u0645\u062E\u0637\u0637 \u0627\u0644\u062E\u0631\u062C","openapi.mcp.outputExample":"\u0645\u062B\u0627\u0644 \u0627\u0644\u062E\u0631\u062C","asyncapi.download.description.title":"\u062A\u0646\u0632\u064A\u0644 \u0648\u0635\u0641 AsyncAPI","asyncapi.info.title":"\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629","graphql.download.description.title":"\u062A\u0646\u0632\u064A\u0644 \u0645\u062E\u0637\u0637 GraphQL","graphql.info.title":"\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629","graphql.info.contact.url":"\u0639\u0646\u0648\u0627\u0646 URL","graphql.info.contact.name":"\u0627\u0644\u0628\u0631\u064A\u062F \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A","graphql.info.license":"\u0627\u0644\u062A\u0631\u062E\u064A\u0635","graphql.info.termsOfService":"\u0634\u0631\u0648\u0637 \u0627\u0644\u062E\u062F\u0645\u0629","graphql.overview":"\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629 \u0639\u0644\u0649 GraphQL","graphql.metadata":"\u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0648\u0635\u0641\u064A\u0629","graphql.key":"\u0627\u0644\u0645\u0641\u062A\u0627\u062D","graphql.value":"\u0627\u0644\u0642\u064A\u0645\u0629","graphql.queries":"\u0627\u0644\u0627\u0633\u062A\u0639\u0644\u0627\u0645\u0627\u062A","graphql.mutations":"\u0627\u0644\u062A\u0639\u062F\u064A\u0644\u0627\u062A","graphql.subscriptions":"\u0627\u0644\u0627\u0634\u062A\u0631\u0627\u0643\u0627\u062A","graphql.directives":"\u0627\u0644\u062A\u0648\u062C\u064A\u0647\u0627\u062A","graphql.objects":"\u0627\u0644\u0643\u0627\u0626\u0646\u0627\u062A","graphql.interfaces":"\u0627\u0644\u0648\u0627\u062C\u0647\u0627\u062A","graphql.unions":"\u0627\u0644\u0627\u062A\u062D\u0627\u062F\u0627\u062A","graphql.enums":"\u0627\u0644\u062A\u0639\u062F\u0627\u062F\u0627\u062A","graphql.inputs":"\u0627\u0644\u0645\u062F\u062E\u0644\u0627\u062A","graphql.scalars":"\u0627\u0644\u0642\u064A\u0645 \u0627\u0644\u0639\u062F\u062F\u064A\u0629","graphql.arguments.label":"\u0627\u0644\u0648\u0633\u0627\u0626\u0637","graphql.arguments.show":"\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0648\u0633\u0627\u0626\u0637","graphql.arguments.hide":"\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0648\u0633\u0627\u0626\u0637","graphql.arguments.here":"\u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0647\u0646\u0627","graphql.returnTypes.label":"\u0646\u0648\u0639 \u0627\u0644\u0646\u062A\u064A\u062C\u0629","graphql.returnTypes.show":"\u0625\u0638\u0647\u0627\u0631 \u0646\u0648\u0639 \u0627\u0644\u0646\u062A\u064A\u062C\u0629","graphql.returnTypes.hide":"\u0625\u062E\u0641\u0627\u0621 \u0646\u0648\u0639 \u0627\u0644\u0646\u062A\u064A\u062C\u0629","graphql.possibleTypes":"\u0627\u0644\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0645\u062D\u062A\u0645\u0644\u0629","graphql.defaultValue":"\u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A","graphql.deprecationReason":"\u0633\u0628\u0628 \u0627\u0644\u0625\u0647\u0645\u0627\u0644","graphql.requiredScopes":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629","graphql.viewSecurityDetails":"\u0639\u0631\u0636 \u062A\u0641\u0627\u0635\u064A\u0644","graphql.objectScopes":"\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u0643\u0627\u0626\u0646\u0627\u062A","graphql.fieldScopes":"\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u062D\u0642\u0648\u0644","graphql.implementedInterfaces":"\u064A\u0646\u0641\u0630 \u0627\u0644\u0648\u0627\u062C\u0647\u0627\u062A","graphql.nonNull":"\u063A\u064A\u0631 \u0641\u0627\u0631\u063A","graphql.required":"\u0645\u0637\u0644\u0648\u0628","graphql.deprecated":"\u0645\u0647\u0645\u0644","graphql.variables":"\u0627\u0644\u0645\u062A\u063A\u064A\u0631\u0627\u062A","graphql.querySample":"\u0646\u0645\u0648\u0630\u062C \u0627\u0633\u062A\u0639\u0644\u0627\u0645","graphql.mutationSample":"\u0646\u0645\u0648\u0630\u062C \u062A\u0639\u062F\u064A\u0644","graphql.subscriptionSample":"\u0646\u0645\u0648\u0630\u062C \u0627\u0634\u062A\u0631\u0627\u0643","graphql.responseSample":"\u0646\u0645\u0648\u0630\u062C \u0631\u062F","graphql.locations":"\u0627\u0644\u0645\u0648\u0627\u0642\u0639","graphql.sample":"\u0639\u064A\u0646\u0629","graphql.referenced":"\u0645\u0634\u0627\u0631 \u0625\u0644\u064A\u0647 \u0641\u064A","graphql.content.fragment":"\u062C\u0632\u0621","codeWalkthrough.preview":"\u0645\u0639\u0627\u064A\u0646\u0629","codeWalkthrough.download":"\u062A\u0646\u0632\u064A\u0644","time.justNow":"\u0627\u0644\u0622\u0646 \u0641\u0642\u0637","time.past.second":"\u0645\u0646\u0630 \u062B\u0627\u0646\u064A\u0629 \u0648\u0627\u062D\u062F\u0629","time.past.seconds":"\u0645\u0646\u0630 {{value}} \u062B\u0648\u0627\u0646\u064D","time.past.minute":"\u0645\u0646\u0630 \u062F\u0642\u064A\u0642\u0629 \u0648\u0627\u062D\u062F\u0629","time.past.minutes":"\u0645\u0646\u0630 {{value}} \u062F\u0642\u0627\u0626\u0642","time.past.hour":"\u0645\u0646\u0630 \u0633\u0627\u0639\u0629 \u0648\u0627\u062D\u062F\u0629","time.past.hours":"\u0645\u0646\u0630 {{value}} \u0633\u0627\u0639\u0627\u062A","time.past.day":"\u0645\u0646\u0630 \u064A\u0648\u0645 \u0648\u0627\u062D\u062F","time.past.days":"\u0645\u0646\u0630 {{value}} \u0623\u064A\u0627\u0645","time.past.week":"\u0645\u0646\u0630 \u0623\u0633\u0628\u0648\u0639 \u0648\u0627\u062D\u062F","time.past.weeks":"\u0645\u0646\u0630 {{value}} \u0623\u0633\u0627\u0628\u064A\u0639","time.past.month":"\u0645\u0646\u0630 \u0634\u0647\u0631 \u0648\u0627\u062D\u062F","time.past.months":"\u0645\u0646\u0630 {{value}} \u0623\u0634\u0647\u0631","time.past.year":"\u0645\u0646\u0630 \u0639\u0627\u0645 \u0648\u0627\u062D\u062F","time.past.years":"\u0645\u0646\u0630 {{value}} \u0623\u0639\u0648\u0627\u0645","page.internalServerError.title":"\u062E\u0637\u0623 \u062F\u0627\u062E\u0644\u064A \u0641\u064A \u0627\u0644\u062E\u0627\u062F\u0645","page.internalServerError.description":"\u062D\u062F\u062B \u062E\u0637\u0623 \u0645\u0627 \u0645\u0646 \u062C\u0627\u0646\u0628\u0646\u0627. \u064A\u0631\u062C\u0649 \u0627\u0644\u0645\u062D\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062E\u0631\u0649 \u0644\u0627\u062D\u0642\u064B\u0627 \u0623\u0648 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u0627\u0644\u062F\u0639\u0645 \u0625\u0630\u0627 \u0627\u0633\u062A\u0645\u0631\u062A \u0627\u0644\u0645\u0634\u0643\u0644\u0629.","page.skipToContent.label":"\u0627\u0646\u062A\u0642\u0644 \u0625\u0644\u0649 \u0627\u0644\u0645\u062D\u062A\u0648\u0649","catalog.catalogs.label":"\u0627\u0644\u0643\u062A\u0627\u0644\u0648\u062C\u0627\u062A","catalog.catalogs.all.title":"\u0627\u0644\u0643\u0644","catalog.catalogs.all.description":"\u062C\u0645\u064A\u0639 \u0627\u0644\u0643\u064A\u0627\u0646\u0627\u062A","catalog.catalogs.all.switcherLabel":"\u0627\u0644\u0643\u0644","catalog.catalogs.service.title":"\u0627\u0644\u062E\u062F\u0645\u0627\u062A","catalog.catalogs.service.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u062E\u062F\u0645\u0629","catalog.catalogs.service.switcherLabel":"\u0627\u0644\u062E\u062F\u0645\u0627\u062A","catalog.catalogs.user.title":"\u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645\u0648\u0646","catalog.catalogs.user.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645","catalog.catalogs.user.switcherLabel":"\u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645\u0648\u0646","catalog.catalogs.team.title":"\u0627\u0644\u0641\u0631\u0642","catalog.catalogs.team.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0641\u0631\u064A\u0642","catalog.catalogs.team.switcherLabel":"\u0627\u0644\u0641\u0631\u0642","catalog.catalogs.domain.title":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A","catalog.catalogs.domain.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0646\u0637\u0627\u0642","catalog.catalogs.domain.switcherLabel":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A","catalog.catalogs.apiDescription.title":"\u0648\u0635\u0641 API","catalog.catalogs.apiDescription.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0648\u0635\u0641 API","catalog.catalogs.apiDescription.switcherLabel":"\u0648\u0635\u0641 API","catalog.catalogs.dataSchema.title":"\u0627\u0644\u0646\u0645\u0627\u0630\u062C","catalog.catalogs.dataSchema.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0646\u0645\u0627\u0630\u062C","catalog.catalogs.dataSchema.switcherLabel":"\u0627\u0644\u0646\u0645\u0627\u0630\u062C","catalog.catalogs.apiOperation.title":"\u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A","catalog.catalogs.apiOperation.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A","catalog.catalogs.apiOperation.switcherLabel":"\u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A","catalog.entity.metadata.title":"\u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0648\u0635\u0641\u064A\u0629","catalog.entity.schema.title":"\u0627\u0644\u0646\u0645\u0648\u0630\u062C","catalog.entity.properties.apiDescription.title":"\u0648\u0635\u0641 API","catalog.backToAllLabel":"\u0627\u0644\u0643\u062A\u0627\u0644\u0648\u062C","catalog.tags.label":"\u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062A","catalog.tags.more":"\u0627\u0644\u0645\u0632\u064A\u062F","catalog.owners.label":"\u0627\u0644\u0645\u0627\u0644\u0643\u0648\u0646","catalog.repositories.label":"\u0627\u0644\u0645\u0633\u062A\u0648\u062F\u0639\u0627\u062A","catalog.email.label":"\u0627\u0644\u0628\u0631\u064A\u062F \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A","catalog.format.label":"\u0627\u0644\u062A\u0646\u0633\u064A\u0642","catalog.entityType.label":"\u0646\u0648\u0639 \u0627\u0644\u0643\u064A\u0627\u0646","catalog.domains.label":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A","catalog.contact.label":"\u0642\u0646\u0648\u0627\u062A Slack","catalog.methodAndPath.label":"\u0627\u0644\u0637\u0631\u064A\u0642\u0629 \u0648\u0627\u0644\u0645\u0633\u0627\u0631","catalog.links.label":"\u0627\u0644\u0631\u0648\u0627\u0628\u0637","catalog.metadata.domains":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A:","catalog.metadata.owners":"\u0627\u0644\u0645\u0627\u0644\u0643\u0648\u0646:","catalog.sort":"\u062A\u0631\u062A\u064A\u0628","catalog.history.button.label":"\u0633\u062C\u0644 \u0627\u0644\u0625\u0635\u062F\u0627\u0631\u0627\u062A","catalog.history.sidebar.title":"\u0633\u062C\u0644 \u0627\u0644\u0625\u0635\u062F\u0627\u0631\u0627\u062A","catalog.history.sidebar.close":"\u0625\u063A\u0644\u0627\u0642 \u0633\u062C\u0644 \u0627\u0644\u0625\u0635\u062F\u0627\u0631\u0627\u062A","catalog.history.version.label":"\u0627\u0644\u0625\u0635\u062F\u0627\u0631","catalog.history.version.notSpecified":"\u063A\u064A\u0631 \u0645\u062D\u062F\u062F","catalog.history.version.default":"\u0627\u0641\u062A\u0631\u0627\u0636\u064A","catalog.history.revisions.limitMessage":"\u0644\u0627 \u064A\u062A\u0645 \u062A\u062E\u0632\u064A\u0646 \u0627\u0644\u0645\u0631\u0627\u062C\u0639\u0627\u062A \u0627\u0644\u0623\u0642\u062F\u0645.","catalog.history.revision.current":"\u0627\u0644\u062D\u0627\u0644\u064A","catalog.history.revisions.showLess":"\u0639\u0631\u0636 \u0623\u0642\u0644","catalog.history.revisions.showMore":"\u0639\u0631\u0636 {{count}} \u0627\u0644\u0645\u0632\u064A\u062F","select.noResults":"\u0644\u0627 \u064A\u0648\u062C\u062F \u0646\u062A\u0627\u0626\u062C","loaders.loading":"\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644...","mermaid.openFullscreen":"\u0627\u0646\u0642\u0631 \u0644\u0641\u062A\u062D \u0627\u0644\u0631\u0633\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u064A \u0641\u064A \u0648\u0636\u0639 \u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629","mermaid.zoomIn":"\u062A\u0643\u0628\u064A\u0631","mermaid.zoomOut":"\u062A\u0635\u063A\u064A\u0631","mermaid.reset":"\u0645\u0644\u0627\u0621\u0645\u0629 \u0627\u0644\u0639\u0631\u0636","mermaid.close":"\u0625\u063A\u0644\u0627\u0642","mermaid.viewer":"\u0639\u0627\u0631\u0636 \u0645\u062E\u0637\u0637\u0627\u062A Mermaid"};export{e as ar};
1
+ const e={"dev.newApp":"\u062A\u0637\u0628\u064A\u0642 \u062C\u062F\u064A\u062F","dev.newApp.text":"\u0623\u0646\u0634\u0626 \u062A\u0637\u0628\u064A\u0642\u0643 \u0627\u0644\u0623\u0648\u0644","dev.sidebar.header":"\u062A\u0637\u0628\u064A\u0642\u0627\u062A\u064A","dev.sidebar.footer.text":"\u062A\u0637\u0628\u064A\u0642 \u062C\u062F\u064A\u062F","dev.create.app.dialog.appName.placeholder":"\u0627\u0633\u0645 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","dev.create.app.dialog.appName.error":"\u064A\u062C\u0628 \u0623\u0646 \u064A\u0628\u062F\u0623 \u0627\u0644\u0627\u0633\u0645 \u0628\u062D\u0631\u0641 \u0648\u064A\u0645\u0643\u0646 \u0623\u0646 \u064A\u062D\u062A\u0648\u064A \u0641\u0642\u0637 \u0639\u0644\u0649: \u0623\u062D\u0631\u0641 \u0648\u0623\u0631\u0642\u0627\u0645 \u0648\u0645\u0633\u0627\u0641\u0627\u062A \u0648. \u0648_ \u0648- \u0648$ \u0648% \u0648#","dev.create.app.dialog.selectAPIs":"\u0627\u062E\u062A\u0631 \u0648\u0627\u062C\u0647\u0627\u062A \u0628\u0631\u0645\u062C\u0629 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A","dev.create.app.dialog.description":"\u0627\u0644\u0648\u0635\u0641","dev.create.app.dialog.description.placeholder":"\u0641\u0627\u0631\u063A","dev.create.app.dialog.create":"\u0625\u0646\u0634\u0627\u0621 \u062A\u0637\u0628\u064A\u0642","dev.create.app.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.main.tab.appKeys":"\u0645\u0641\u0627\u062A\u064A\u062D API","dev.main.tab.logs":"\u0627\u0644\u0633\u062C\u0644\u0627\u062A","dev.app.description.title":"\u0627\u0644\u0648\u0635\u0641","dev.edit.description.dialog.title":"\u062A\u063A\u064A\u064A\u0631 \u0627\u0644\u0648\u0635\u0641","dev.edit.description.dialog.save":"\u062D\u0641\u0638 \u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A","dev.edit.description.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.edit.apis.dialog.selectedAPIs":"\u0648\u0627\u062C\u0647\u0627\u062A \u0628\u0631\u0645\u062C\u0629 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A \u0627\u0644\u0645\u062D\u062F\u062F\u0629","dev.app.key.create":"\u0625\u0646\u0634\u0627\u0621 \u0645\u0641\u062A\u0627\u062D","dev.create.key.dialog.title":"\u0625\u0646\u0634\u0627\u0621 \u0645\u0641\u062A\u0627\u062D","dev.create.key.dialog.create":"\u0625\u0646\u0634\u0627\u0621 \u0645\u0641\u062A\u0627\u062D","dev.create.key.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.app.edit":"\u062A\u0639\u062F\u064A\u0644","dev.app.delete":"\u062D\u0630\u0641","dev.edit.app.dialog.title":"\u062A\u063A\u064A\u064A\u0631 \u0627\u0633\u0645 \u0627\u0644\u0639\u0631\u0636","dev.edit.app.dialog.save":"\u062D\u0641\u0638 \u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A","dev.edit.app.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.delete.app.dialog.title":"\u062D\u0630\u0641 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","dev.delete.app.dialog.confirmation":"\u0647\u0644 \u0623\u0646\u062A \u0645\u062A\u0623\u0643\u062F \u0623\u0646\u0643 \u062A\u0631\u064A\u062F \u062D\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u061F","dev.delete.app.dialog.delete":"\u062D\u0630\u0641 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","dev.delete.app.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.app.key.roll":"\u062A\u062F\u0648\u064A\u0631 \u0645\u0641\u062A\u0627\u062D API","dev.roll.key.dialog.title":"\u062A\u062F\u0648\u064A\u0631 \u0645\u0641\u062A\u0627\u062D API","dev.roll.key.dialog.apiKey":"API key","dev.roll.key.dialog.expires":"\u062A\u0646\u062A\u0647\u064A \u0635\u0644\u0627\u062D\u064A\u062A\u0647","dev.roll.key.dialog.confirmation":"\u0647\u0644 \u0623\u0646\u062A \u0645\u062A\u0623\u0643\u062F \u0623\u0646\u0643 \u062A\u0631\u064A\u062F \u062A\u062F\u0648\u064A\u0631 \u0645\u0641\u062A\u0627\u062D API \u0647\u0630\u0627\u061F","dev.roll.key.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.roll.key.dialog.roll":"\u062A\u062F\u0648\u064A\u0631 \u0645\u0641\u062A\u0627\u062D API","dev.update.key.dialog.title":"\u062A\u062D\u062F\u064A\u062B \u0627\u0644\u0645\u0641\u062A\u0627\u062D","dev.update.key.dialog.update":"\u062A\u062D\u062F\u064A\u062B \u0627\u0644\u0645\u0641\u062A\u0627\u062D","dev.update.key.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.app.key.api.name":"\u0627\u0633\u0645 API","dev.app.key.api.status":"\u0627\u0644\u062D\u0627\u0644\u0629","dev.app.key.api.edit":"\u062A\u0639\u062F\u064A\u0644 \u0648\u0627\u062C\u0647\u0627\u062A \u0628\u0631\u0645\u062C\u0629 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A","dev.edit.apis.dialog.title":"\u062A\u0639\u062F\u064A\u0644 \u0648\u0627\u062C\u0647\u0627\u062A \u0628\u0631\u0645\u062C\u0629 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A","dev.edit.apis.dialog.apiKey":"API key","dev.edit.apis.dialog.save":"\u062D\u0641\u0638","dev.edit.apis.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.select.placeholder":"\u0641\u0627\u0631\u063A","dev.app.overview.status.pending":"\u0642\u064A\u062F \u0627\u0644\u0627\u0646\u062A\u0638\u0627\u0631","dev.app.overview.status.approved":"\u0645\u0639\u062A\u0645\u062F","dev.app.overview.status.revoked":"\u0645\u0644\u063A\u0649","dev.app.overview.status":"\u0627\u0644\u062D\u0627\u0644\u0629","dev.app.overview.non-production":"\u0627\u062E\u062A\u0628\u0627\u0631","dev.app.overview.production":"\u0625\u0646\u062A\u0627\u062C\u064A","dev.app.overview.clientId":"\u0627\u0644\u0633\u0631","dev.app.overview.apiKey":"API key","dev.app.key.revoke":"\u0625\u0644\u063A\u0627\u0621 \u0645\u0641\u062A\u0627\u062D API","dev.revoke.key.dialog.title":"\u0625\u0644\u063A\u0627\u0621 \u0645\u0641\u062A\u0627\u062D API","dev.revoke.key.dialog.apiKey":"API key","dev.revoke.key.dialog.expires":"\u062A\u0646\u062A\u0647\u064A \u0635\u0644\u0627\u062D\u064A\u062A\u0647","dev.revoke.key.dialog.confirmation":"\u0647\u0644 \u0623\u0646\u062A \u0645\u062A\u0623\u0643\u062F \u0623\u0646\u0643 \u062A\u0631\u064A\u062F \u0625\u0644\u063A\u0627\u0621 \u0645\u0641\u062A\u0627\u062D API \u0647\u0630\u0627\u061F","dev.revoke.key.dialog.revoke":"\u0625\u0644\u063A\u0627\u0621 \u0645\u0641\u062A\u0627\u062D API","dev.revoke.key.dialog.cancel":"\u0625\u0644\u063A\u0627\u0621","dev.app.overview.expires":"\u062A\u0646\u062A\u0647\u064A \u0635\u0644\u0627\u062D\u064A\u062A\u0647","dev.app.overview.created":"\u062A\u0645 \u0627\u0644\u0625\u0646\u0634\u0627\u0621","dev.app.overview.visibilityToggle.hide":"\u0625\u062E\u0641\u0627\u0621","dev.app.overview.visibilityToggle.show":"\u0625\u0638\u0647\u0627\u0631","search.loading":"\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644...","search.noResults.title":"\u0644\u0627 \u062A\u0648\u062C\u062F \u0646\u062A\u0627\u0626\u062C","search.keys.navigate":"\u0644\u0644\u062A\u0646\u0642\u0644","search.keys.select":"\u0644\u0644\u0627\u062E\u062A\u064A\u0627\u0631","search.keys.exit":"\u0644\u0644\u062E\u0631\u0648\u062C","search.searchItem.deprecated":"\u0645\u0647\u0645\u0644","search.label":"\u0627\u0628\u062D\u062B \u0641\u064A \u0627\u0644\u0645\u0633\u062A\u0646\u062F\u0627\u062A...","search.cancel":"\u0625\u0644\u063A\u0627\u0621","search.recent":"\u0639\u0645\u0644\u064A\u0627\u062A \u0627\u0644\u0628\u062D\u062B \u0627\u0644\u0623\u062E\u064A\u0631\u0629","search.navbar.label":"\u0628\u062D\u062B","search.suggested":"\u0627\u0644\u0635\u0641\u062D\u0627\u062A \u0627\u0644\u0645\u0642\u062A\u0631\u062D\u0629","search.groups.all":"\u0627\u0644\u0643\u0644","search.showMore":"\u0639\u0631\u0636 \u0627\u0644\u0645\u0632\u064A\u062F","search.filter.title":"\u0645\u0631\u0634\u062D \u0645\u062A\u0642\u062F\u0645","search.filter.reset":"\u0625\u0639\u0627\u062F\u0629 \u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0645\u0631\u0634\u062D\u0627\u062A","search.filter.field.reset":"\u0625\u0639\u0627\u062F\u0629 \u062A\u0639\u064A\u064A\u0646","search.filter.field.footer":"\u0627\u0628\u062D\u062B \u0644\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0639\u0646\u0627\u0635\u0631...","search.ai.newConversation":"\u0645\u062D\u0627\u062F\u062B\u0629 \u062C\u062F\u064A\u062F\u0629","search.ai.welcomeText":"\u0645\u0631\u062D\u0628\u064B\u0627 \u0628\u0643 \u0641\u064A \u0628\u062D\u062B \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A! \u0644\u0627 \u062A\u062A\u0631\u062F\u062F \u0641\u064A \u0633\u0624\u0627\u0644\u064A \u0639\u0646 \u0623\u064A \u0634\u064A\u0621. \u0643\u064A\u0641 \u064A\u0645\u0643\u0646\u0646\u064A \u0627\u0644\u0645\u0633\u0627\u0639\u062F\u0629\u061F","search.ai.placeholder":"\u0627\u0637\u0631\u062D \u0633\u0624\u0627\u0644\u0627\u064B...","search.ai.back":"\u0631\u062C\u0648\u0639","search.ai.generatingResponse":"\u062C\u0627\u0631\u064D \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0631\u062F...","search.ai.followUpQuestion":"\u0647\u0644 \u0644\u062F\u064A\u0643 \u0633\u0624\u0627\u0644 \u0645\u062A\u0627\u0628\u0639\u0629\u061F","search.ai.suggestionsTitle":"\u0627\u0642\u062A\u0631\u0627\u062D\u0627\u062A","search.ai.thinkingText":"\u0623\u0641\u0643\u0631...","search.ai.resourcesFound":"\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0645\u0648\u0627\u0631\u062F","search.ai.resourcesFound.basedOn":"\u0628\u0646\u0627\u0621\u064B \u0639\u0644\u0649","search.ai.resourcesFound.resources":"\u0645\u0648\u0627\u0631\u062F","search.ai.toolResult.found":"\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649","search.ai.toolResult.found.documents":"\u0645\u0633\u062A\u0646\u062F\u0627\u062A","search.ai.toolCall.searching":"\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B...","search.ai.feedback.title":"\u0645\u0627 \u0627\u0644\u0630\u064A \u0644\u0645 \u064A\u0639\u062C\u0628\u0643 \u0641\u064A \u0647\u0630\u0647 \u0627\u0644\u0627\u0633\u062A\u062C\u0627\u0628\u0629\u061F","search.ai.feedback.detailsPlaceholder":"\u0623\u0636\u0641 \u062A\u0641\u0627\u0635\u064A\u0644 \u0645\u062D\u062F\u062F\u0629","search.ai.feedback.thanks":"\u0634\u0643\u0631\u0627\u064B \u0644\u0645\u0644\u0627\u062D\u0638\u0627\u062A\u0643!","search.ai.feedback.more":"\u0627\u0644\u0645\u0632\u064A\u062F...","search.ai.label":"\u0627\u0633\u0623\u0644 \u0645\u0633\u0627\u0639\u062F \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A","search.ai.button":"\u0628\u062D\u062B \u0628\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A","search.ai.backToSearch":"\u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0628\u062D\u062B","search.ai.assistant":"\u0627\u0644\u0645\u0633\u0627\u0639\u062F","search.ai.disclaimer":"\u0642\u062F \u064A\u0648\u0641\u0631 \u0628\u062D\u062B \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A \u0646\u062A\u0627\u0626\u062C \u063A\u064A\u0631 \u0643\u0627\u0645\u0644\u0629 \u0623\u0648 \u063A\u064A\u0631 \u0635\u062D\u064A\u062D\u0629. \u062A\u062D\u0642\u0642 \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0627\u0644\u0645\u0647\u0645\u0629.","search.ai.error.description":"\u0648\u0627\u062C\u0647\u062A\u0646\u0627 \u0645\u0634\u0643\u0644\u0629 \u0623\u062B\u0646\u0627\u0621 \u0645\u0639\u0627\u0644\u062C\u0629 \u0628\u062D\u062B\u0643. \u064A\u0631\u062C\u0649 \u0627\u0644\u0645\u062D\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062E\u0631\u0649 \u0644\u0627\u062D\u0642\u064B\u0627 \u0623\u0648 \u062A\u062D\u0633\u064A\u0646 \u0627\u0633\u062A\u0639\u0644\u0627\u0645\u0643. \u0625\u0630\u0627 \u0627\u0633\u062A\u0645\u0631\u062A \u0627\u0644\u0645\u0634\u0643\u0644\u0629\u060C \u0641\u064A\u0631\u062C\u0649 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u062F\u0639\u0645 Redocly.","search.ai.error.description.forbidden":"\u0628\u062D\u062B \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A \u063A\u064A\u0631 \u0645\u062A\u0648\u0641\u0631 \u062D\u0627\u0644\u064A\u064B\u0627.","search.ai.error.description.unauthorized":"\u063A\u064A\u0631 \u0645\u0635\u0631\u062D \u0644\u0643 \u0628\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0628\u062D\u062B \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A.","search.ai.error.header":"\u0639\u0641\u0648\u064B\u0627! \u062D\u062F\u062B \u062E\u0637\u0623 \u0645\u0627.","search.ai.error.header.forbidden":"\u0627\u0644\u0645\u064A\u0632\u0629 \u063A\u064A\u0631 \u0645\u062A\u0648\u0641\u0631\u0629","search.ai.error.header.unauthorized":"\u0627\u0644\u0645\u0635\u0627\u062F\u0642\u0629 \u0645\u0637\u0644\u0648\u0628\u0629","aiAssistant.trigger":"\u0627\u0633\u0623\u0644 \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A","toc.header":"\u0641\u064A \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062D\u0629","footer.copyrightText":"","page.homeButton":"\u0627\u0630\u0647\u0628 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0629","page.forbidden.title":"\u0627\u0644\u0648\u0635\u0648\u0644 \u0645\u0631\u0641\u0648\u0636","page.forbidden.description":"\u0644\u064A\u0633 \u0644\u062F\u064A\u0643 \u0625\u0630\u0646 \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062D\u0629. \u0625\u0630\u0627 \u0643\u0646\u062A \u062A\u0639\u062A\u0642\u062F \u0623\u0646 \u0647\u0630\u0627 \u062E\u0637\u0623\u060C \u0627\u062A\u0635\u0644 \u0628\u0627\u0644\u0645\u0633\u0624\u0648\u0644 \u0623\u0648 \u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0629.","page.notFound.title":"\u0634\u064A\u0621 \u0645\u0627 \u0645\u0641\u0642\u0648\u062F...","page.notFound.description":"\u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u062A\u064A \u0643\u0646\u062A \u062A\u062D\u0627\u0648\u0644 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u064A\u0647\u0627 \u063A\u064A\u0631 \u0645\u0648\u062C\u0648\u062F\u0629 \u0623\u0648 \u0631\u0628\u0645\u0627 \u062A\u0645 \u0646\u0642\u0644\u0647\u0627. \u064A\u0645\u0643\u0646\u0643 \u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629\u060C \u0623\u0648 \u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0629\u060C \u0623\u0648 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0634\u0631\u064A\u0637 \u0627\u0644\u0628\u062D\u062B \u0644\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0645\u0627 \u062A\u0628\u062D\u062B \u0639\u0646\u0647.","page.lastUpdated.timeago":"\u0622\u062E\u0631 \u062A\u062D\u062F\u064A\u062B","page.lastUpdated.on":"\u0622\u062E\u0631 \u062A\u062D\u062F\u064A\u062B \u0641\u064A","catalog.filters.title":"\u0627\u0644\u0645\u0631\u0634\u062D\u0627\u062A","catalog.filters.add":"\u0625\u0636\u0627\u0641\u0629 \u0645\u0631\u0634\u062D","catalog.filters.placeholder":"\u0627\u0643\u062A\u0628 \u0644\u0644\u062A\u0631\u0634\u064A\u062D...","catalog.filters.clearAll":"\u0645\u0633\u062D \u0627\u0644\u0645\u0631\u0634\u062D\u0627\u062A","catalog.filters.select.addFilter":"\u0625\u0636\u0627\u0641\u0629 \u0645\u0631\u0634\u062D","catalog.filters.select.all":"\u0627\u0644\u0643\u0644","catalog.filters.done":"\u062A\u0645","filter.dateRange.from":"\u0645\u0646:","filter.dateRange.to":"\u0625\u0644\u0649:","sidebar.menu.backLabel":"\u0631\u062C\u0648\u0639","sidebar.menu.backToLabel":"\u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 {{value}}","sidebar.actions.show":"\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0634\u0631\u064A\u0637 \u0627\u0644\u062C\u0627\u0646\u0628\u064A","sidebar.actions.hide":"\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0634\u0631\u064A\u0637 \u0627\u0644\u062C\u0627\u0646\u0628\u064A","sidebar.actions.changeToSingleColumn":"\u0627\u0644\u062A\u0628\u062F\u064A\u0644 \u0625\u0644\u0649 \u0639\u0645\u0648\u062F \u0648\u0627\u062D\u062F","sidebar.actions.changeToTwoColumns":"\u0627\u0644\u062A\u0628\u062F\u064A\u0644 \u0625\u0644\u0649 \u0639\u0645\u0648\u062F\u064A\u0646","sidebar.actions.singleColumn":"\u0639\u0645\u0648\u062F \u0648\u0627\u062D\u062F","sidebar.actions.twoColumns":"\u0639\u0645\u0648\u062F\u0627\u0646","versionPicker.label":"\u0627\u0644\u0625\u0635\u062F\u0627\u0631:","versionPicker.unversioned":"\u062C\u0645\u064A\u0639 \u0627\u0644\u0625\u0635\u062F\u0627\u0631\u0627\u062A","codeSnippet.copy.buttonText":"\u062A\u0645 \u0627\u0644\u0646\u0633\u062E!","codeSnippet.copy.tooltipText":"\u0646\u0633\u062E \u0625\u0644\u0649 \u0627\u0644\u062D\u0627\u0641\u0638\u0629","codeSnippet.copy.toasterText":"\u0646\u0633\u062E","codeSnippet.expand.tooltipText":"\u062A\u0648\u0633\u064A\u0639 \u0627\u0644\u0643\u0644","codeSnippet.collapse.tooltipText":"\u0637\u064A \u0627\u0644\u0643\u0644","markdown.editPage.text":"\u062A\u0639\u062F\u064A\u0644","feedback.settings.comment.submitText":"\u0634\u0643\u0631\u064B\u0627 \u0644\u0645\u0633\u0627\u0639\u062F\u062A\u0643 \u0641\u064A \u062A\u062D\u0633\u064A\u0646 \u0648\u062B\u0627\u0626\u0642\u0646\u0627!","feedback.settings.comment.label":"\u064A\u0631\u062C\u0649 \u0645\u0634\u0627\u0631\u0643\u0629 \u0645\u0644\u0627\u062D\u0638\u0627\u062A\u0643 \u0645\u0639\u0646\u0627.","feedback.settings.comment.send":"\u0625\u0631\u0633\u0627\u0644","feedback.settings.comment.cancel":"\u0625\u0644\u063A\u0627\u0621","feedback.settings.comment.maxLength":"\u062A\u0645 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0627\u0644\u062D\u062F \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0637\u0648\u0644 \u0627\u0644\u0645\u062D\u062A\u0648\u0649 \u0648\u0647\u0648 {{maxLength}} \u062D\u0631\u0641","feedback.settings.comment.satisfiedLabel":"\u0645\u0627 \u0627\u0644\u0630\u064A \u0643\u0627\u0646 \u0623\u0643\u062B\u0631 \u0641\u0627\u0626\u062F\u0629\u061F","feedback.settings.comment.neutralLabel":"\u0645\u0627 \u0627\u0644\u0630\u064A \u064A\u0645\u0643\u0646\u0646\u0627 \u062A\u062D\u0633\u064A\u0646\u0647\u061F","feedback.settings.comment.dissatisfiedLabel":"\u0645\u0627 \u0627\u0644\u0630\u064A \u064A\u0645\u0643\u0646\u0646\u0627 \u062A\u062D\u0633\u064A\u0646\u0647\u061F","feedback.settings.submitText":"\u0634\u0643\u0631\u064B\u0627 \u0639\u0644\u0649 \u0645\u0644\u0627\u062D\u0638\u0627\u062A\u0643!","feedback.settings.label":"\u0647\u0644 \u0643\u0627\u0646 \u0647\u0630\u0627 \u0645\u0641\u064A\u062F\u064B\u0627\u061F","feedback.settings.reasons.label":"\u0623\u064A \u0639\u0628\u0627\u0631\u0629 \u062A\u0635\u0641 \u0623\u0641\u0643\u0627\u0631\u0643 \u062D\u0648\u0644 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062D\u0629 \u0628\u0634\u0643\u0644 \u0623\u0641\u0636\u0644\u061F","feedback.submit":"\u0625\u0631\u0633\u0627\u0644","feedback.cancel":"\u0625\u0644\u063A\u0627\u0621","feedback.settings.comment.likeLabel":"\u0645\u0627 \u0627\u0644\u0630\u064A \u0643\u0627\u0646 \u0623\u0643\u062B\u0631 \u0641\u0627\u0626\u062F\u0629\u061F","feedback.settings.comment.dislikeLabel":"\u0645\u0627 \u0627\u0644\u0630\u064A \u064A\u0645\u0643\u0646\u0646\u0627 \u062A\u062D\u0633\u064A\u0646\u0647\u061F","feedback.sentiment.thumbUp":"\u0623\u0639\u062C\u0628\u0646\u064A","feedback.sentiment.thumbDown":"\u0644\u0645 \u064A\u0639\u062C\u0628\u0646\u064A","feedback.settings.leftScaleLabel":"\u063A\u064A\u0631 \u0645\u0641\u064A\u062F \u0639\u0644\u0649 \u0627\u0644\u0625\u0637\u0644\u0627\u0642","feedback.settings.rightScaleLabel":"\u0645\u0641\u064A\u062F \u0644\u0644\u063A\u0627\u064A\u0629","feedback.settings.optionalEmail.label":"\u0628\u0631\u064A\u062F\u0643 \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A (\u0627\u062E\u062A\u064A\u0627\u0631\u064A\u060C \u0644\u0644\u0645\u062A\u0627\u0628\u0639\u0629)","feedback.settings.optionalEmail.placeholder":"yourname@example.com","codeSnippet.report.buttonText":"\u0625\u0628\u0644\u0627\u063A","codeSnippet.report.tooltipText":"\u0627\u0644\u0625\u0628\u0644\u0627\u063A \u0639\u0646 \u0645\u0634\u0643\u0644\u0629","codeSnippet.report.label":"\u0645\u0627 \u0647\u064A \u0627\u0644\u0645\u0634\u0643\u0644\u0629 \u0641\u064A \u0647\u0630\u0627 \u0627\u0644\u0631\u0645\u0632\u061F","userMenu.login":"\u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u062F\u062E\u0648\u0644","userMenu.logout":"\u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u062E\u0631\u0648\u062C","userMenu.devOnboardingLabel":"\u062A\u0637\u0628\u064A\u0642\u0627\u062A\u064A","mobileMenu.mainMenu":"\u0627\u0644\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0629","mobileMenu.previous":"\u0627\u0644\u0633\u0627\u0628\u0642","mobileMenu.products":"\u0627\u0644\u0645\u0646\u062A\u062C\u0627\u062A","mobileMenu.version":"\u0627\u0644\u0625\u0635\u062F\u0627\u0631","page.nextButton":"\u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u062A\u0627\u0644\u064A\u0629","page.previousButton":"\u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629","page.actions.copyButtonText":"\u0646\u0633\u062E","page.actions.copyTitle":"\u0646\u0633\u062E \u0644\u0644\u0646\u0645\u0648\u0630\u062C \u0627\u0644\u0644\u063A\u0648\u064A","page.actions.copyDescription":"\u0646\u0633\u062E \u0627\u0644\u0635\u0641\u062D\u0629 \u0643\u0640 Markdown \u0644\u0644\u0646\u0645\u0627\u0630\u062C \u0627\u0644\u0644\u063A\u0648\u064A\u0629","page.actions.viewAsMdButtonText":"\u0639\u0631\u0636 \u0643\u0640 Markdown","page.actions.viewAsMdTitle":"\u0639\u0631\u0636 \u0643\u0640 Markdown","page.actions.viewAsMdDescription":"\u0641\u062A\u062D \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062D\u0629 \u0643\u0640 Markdown","page.actions.chatGptButtonText":"\u0641\u062A\u062D \u0641\u064A ChatGPT","page.actions.chatGptTitle":"\u0641\u062A\u062D \u0641\u064A ChatGPT","page.actions.chatGptDescription":"\u0627\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0645\u0646 ChatGPT","page.actions.claudeButtonText":"\u0641\u062A\u062D \u0641\u064A Claude","page.actions.claudeTitle":"\u0641\u062A\u062D \u0641\u064A Claude","page.actions.claudeDescription":"\u0627\u062D\u0635\u0644 \u0639\u0644\u0649 \u0631\u0624\u0649 \u0645\u0646 \u0643\u0644\u0648\u062F","page.actions.cursorMcpButtonText":"\u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u0640 Cursor","page.actions.cursorMcpTitle":"\u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u0640 Cursor","page.actions.cursorMcpDescription":"\u062A\u062B\u0628\u064A\u062A \u062E\u0627\u062F\u0645 MCP \u0639\u0644\u0649 Cursor","page.actions.connectMcp":"\u062A\u0648\u0635\u064A\u0644 MCP","page.actions.connectMcp.cursor":"\u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u0640 Cursor","page.actions.connectMcp.cursorDescription":"\u062A\u062B\u0628\u064A\u062A \u062E\u0627\u062F\u0645 MCP \u0639\u0644\u0649 Cursor","page.actions.connectMcp.vscode":"\u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u0640 VS Code","page.actions.connectMcp.vscodeDescription":"\u062A\u062B\u0628\u064A\u062A \u062E\u0627\u062F\u0645 MCP \u0639\u0644\u0649 VS Code","page.actions.connectMcp.copyConfig":"\u0646\u0633\u062E \u062A\u0643\u0648\u064A\u0646 MCP","page.actions.connectMcp.copyConfigDescription":"\u0646\u0633\u062E \u062A\u0643\u0648\u064A\u0646 MCP \u0628\u0635\u064A\u063A\u0629 JSON","navbar.products":"\u0627\u0644\u0645\u0646\u062A\u062C\u0627\u062A","openapi.download.description.title":"\u062A\u0646\u0632\u064A\u0644 \u0648\u0635\u0641 OpenAPI","openapi.info.title":"\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629","openapi.info.contact.url":"URL","openapi.info.contact.name":"\u0627\u0644\u0628\u0631\u064A\u062F \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A","openapi.info.license":"\u0627\u0644\u062A\u0631\u062E\u064A\u0635","openapi.info.termsOfService":"\u0634\u0631\u0648\u0637 \u0627\u0644\u062E\u062F\u0645\u0629","openapi.info.metadata.title":"\u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0648\u0635\u0641\u064A\u0629","button.copy.tooltipText":"\u0646\u0633\u062E \u0625\u0644\u0649 \u0627\u0644\u062D\u0627\u0641\u0638\u0629","button.download.tooltipText":"\u062A\u0646\u0632\u064A\u0644 \u0627\u0644\u0648\u0635\u0641","button.externalLink.tooltipText":"\u0641\u062A\u062D \u0641\u064A \u0639\u0644\u0627\u0645\u0629 \u062A\u0628\u0648\u064A\u0628 \u062C\u062F\u064A\u062F\u0629","button.email.tooltipText":"\u0625\u0631\u0633\u0627\u0644 \u0628\u0631\u064A\u062F \u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A","openapi.key":"\u0627\u0644\u0645\u0641\u062A\u0627\u062D","openapi.value":"\u0627\u0644\u0642\u064A\u0645\u0629","openapi.enum":"\u062A\u0639\u062F\u0627\u062F","openapi.items":"\u0627\u0644\u0639\u0646\u0627\u0635\u0631","openapi.default":"\u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A","openapi.variable":"\u0645\u062A\u063A\u064A\u0631","openapi.variables":"\u0645\u062A\u063A\u064A\u0631\u0627\u062A","openapi.actions.show":"\u0625\u0638\u0647\u0627\u0631","openapi.actions.hide":"\u0625\u062E\u0641\u0627\u0621","openapi.actions.more":"\u0627\u0644\u0645\u0632\u064A\u062F","openapi.languages.title":"\u0627\u0644\u0644\u063A\u0627\u062A","openapi.languages.moreButton.tooltipText":"\u0639\u0631\u0636 \u0627\u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0644\u063A\u0627\u062A","openapi.servers.title":"\u0627\u0644\u062E\u0648\u0627\u062F\u0645","openapi.operations":"\u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A","openapi.webhooks":"Webhooks","openapi.description":"\u0627\u0644\u0648\u0635\u0641","openapi.badges.deprecated":"\u0645\u0647\u0645\u0644","openapi.badges.required":"\u0645\u0637\u0644\u0648\u0628","openapi.badges.webhook":"Webhook","openapi.request":"\u0627\u0644\u0637\u0644\u0628","openapi.path":"\u0627\u0644\u0645\u0633\u0627\u0631","openapi.query":"\u0627\u0644\u0627\u0633\u062A\u0639\u0644\u0627\u0645","openapi.cookie":"\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637","openapi.header":"\u0627\u0644\u0631\u0624\u0648\u0633","openapi.body":"\u0627\u0644\u062C\u0633\u0645","openapi.responses":"\u0627\u0644\u0631\u062F\u0648\u062F","openapi.response":"\u0627\u0644\u0631\u062F","openapi.callbacks":"\u0639\u0645\u0644\u064A\u0627\u062A \u0627\u0644\u0627\u0633\u062A\u062F\u0639\u0627\u0621","openapi.callbackRequest":"\u0637\u0644\u0628 \u0627\u0644\u0627\u0633\u062A\u062F\u0639\u0627\u0621","openapi.callbackResponse":"\u0631\u062F \u0627\u0644\u0627\u0633\u062A\u062F\u0639\u0627\u0621","openapi.payload":"\u0645\u062D\u062A\u0648\u0649 \u0627\u0644\u0637\u0644\u0628","openapi.discriminator":"\u0627\u0644\u0645\u0645\u064A\u0632","openapi.contentType":"\u0646\u0648\u0639 \u0627\u0644\u0645\u062D\u062A\u0648\u0649","openapi.tryIt":"\u062C\u0631\u0628\u0647\u0627","openapi.loading":"\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644...","openapi.example":"\u0645\u062B\u0627\u0644","openapi.examples":"\u0623\u0645\u062B\u0644\u0629","openapi.additionalProperties":"\u062E\u0627\u0635\u064A\u0629 \u0625\u0636\u0627\u0641\u064A\u0629","openapi.patternProperties":"\u062E\u0627\u0635\u064A\u0629 \u0627\u0644\u0646\u0645\u0637","openapi.required":"\u0645\u0637\u0644\u0648\u0628","openapi.recursive":"\u0645\u062A\u0643\u0631\u0631","openapi.complex":"\u0645\u0639\u0642\u062F","openapi.hideExample":"\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0645\u062B\u0627\u0644","openapi.showExample":"\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0645\u062B\u0627\u0644","openapi.expandAll":"\u062A\u0648\u0633\u064A\u0639 \u0627\u0644\u0643\u0644","openapi.collapseAll":"\u0637\u064A \u0627\u0644\u0643\u0644","openapi.viewSecurityDetails":"\u0639\u0631\u0636 \u062A\u0641\u0627\u0635\u064A\u0644 \u0627\u0644\u0623\u0645\u0627\u0646","openapi.noResponseExample":"\u0644\u0627 \u064A\u0648\u062C\u062F \u0645\u062B\u0627\u0644 \u0644\u0644\u0631\u062F","openapi.discriminator.searchPlaceholder":"\u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0627\u0644\u0639\u0646\u0627\u0635\u0631","openapi.discriminator.searchNoResults":"\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0639\u0646\u0627\u0635\u0631","openapi.discriminator.defaultMapping":"\u0627\u0644\u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A","openapi.discriminator.defaultMappingTooltip":"OpenAPI 3.2: \u064A\u064F\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A \u0639\u0646\u062F\u0645\u0627 \u0644\u0627 \u062A\u062A\u0637\u0627\u0628\u0642 \u0627\u0644\u062A\u0639\u064A\u064A\u0646\u0627\u062A \u0627\u0644\u0623\u062E\u0631\u0649.","openapi.noResponseContent":"\u0644\u0627 \u064A\u0648\u062C\u062F \u0645\u062D\u062A\u0648\u0649","openapi.noRequestPayload":"\u0644\u0627 \u062A\u0648\u062C\u062F \u062D\u0645\u0648\u0644\u0629 \u0637\u0644\u0628","openapi.hidePattern":"\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0646\u0645\u0637","openapi.showPattern":"\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0646\u0645\u0637","openapi.authorizationUrl":"\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u062A\u0641\u0648\u064A\u0636","openapi.tokenUrl":"\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u0631\u0645\u0632 \u0627\u0644\u0645\u0645\u064A\u0632","openapi.refreshUrl":"\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u062A\u062D\u062F\u064A\u062B","openapi.showOptionalScopes":"\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u0627\u062E\u062A\u064A\u0627\u0631\u064A\u0629","openapi.hideOptionalScopes":"\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u0627\u062E\u062A\u064A\u0627\u0631\u064A\u0629","openapi.security":"\u0627\u0644\u0623\u0645\u0627\u0646","openapi.httpAuthorizationScheme":"\u0645\u062E\u0637\u0637 \u062A\u0641\u0648\u064A\u0636 HTTP","openapi.bearerFormat":"\u062A\u0646\u0633\u064A\u0642 Bearer","openapi.parameterName":"\u0627\u0633\u0645 \u0627\u0644\u0645\u0639\u0644\u0645\u0629","openapi.flowType":"\u0646\u0648\u0639 \u0627\u0644\u062A\u062F\u0641\u0642","openapi.connectUrl":"\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u0627\u062A\u0635\u0627\u0644","openapi.requiredScopes":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629","openapi.unsupportedLanguage":"\u0627\u0644\u0644\u063A\u0629 \u063A\u064A\u0631 \u0645\u062F\u0639\u0648\u0645\u0629.","openapi.failedToGenerateCodeSample":"\u0641\u0634\u0644 \u0625\u0646\u0634\u0627\u0621 \u0646\u0645\u0648\u0630\u062C \u0627\u0644\u0631\u0645\u0632.","openapi.schemaCatalogLink.title":"\u0627\u0644\u0645\u062E\u0637\u0637 \u0627\u0644\u0645\u0634\u062A\u0631\u0643","openapi.schemaCatalogLink.copyButtonTooltip":"\u0646\u0633\u062E \u0625\u0644\u0649 \u0627\u0644\u062D\u0627\u0641\u0638\u0629","openapi.schemaCatalogLink.copiedTooltip":"\u062A\u0645 \u0627\u0644\u0646\u0633\u062E!","openapi.mcp.title":"\u062E\u0627\u062F\u0645 MCP","openapi.mcp.endpoint":"\u0646\u0642\u0637\u0629 \u0627\u0644\u0646\u0647\u0627\u064A\u0629","openapi.mcp.tools":"MCP \u0627\u0644\u0623\u062F\u0648\u0627\u062A","openapi.mcp.protocolVersion":"\u0646\u0633\u062E\u0629 \u0627\u0644\u0628\u0631\u0648\u062A\u0648\u0643\u0648\u0644","openapi.mcp.capabilities":"\u0627\u0644\u0645\u064A\u0632\u0627\u062A","openapi.mcp.experimentalCapabilities":"\u0627\u0644\u0645\u064A\u0632\u0627\u062A \u0627\u0644\u062A\u062C\u0631\u064A\u0628\u064A\u0629","openapi.mcp.inputSchema":"\u0627\u0644\u0645\u062E\u0637\u0637 \u0627\u0644\u062F\u062E\u0644","openapi.mcp.inputExample":"\u0645\u062B\u0627\u0644 \u0627\u0644\u062F\u062E\u0644","openapi.mcp.outputSchema":"\u0627\u0644\u0645\u062E\u0637\u0637 \u0627\u0644\u062E\u0631\u062C","openapi.mcp.outputExample":"\u0645\u062B\u0627\u0644 \u0627\u0644\u062E\u0631\u062C","asyncapi.download.description.title":"\u062A\u0646\u0632\u064A\u0644 \u0648\u0635\u0641 AsyncAPI","asyncapi.info.title":"\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629","graphql.download.description.title":"\u062A\u0646\u0632\u064A\u0644 \u0645\u062E\u0637\u0637 GraphQL","graphql.info.title":"\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629","graphql.info.contact.url":"\u0639\u0646\u0648\u0627\u0646 URL","graphql.info.contact.name":"\u0627\u0644\u0628\u0631\u064A\u062F \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A","graphql.info.license":"\u0627\u0644\u062A\u0631\u062E\u064A\u0635","graphql.info.termsOfService":"\u0634\u0631\u0648\u0637 \u0627\u0644\u062E\u062F\u0645\u0629","graphql.overview":"\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629 \u0639\u0644\u0649 GraphQL","graphql.metadata":"\u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0648\u0635\u0641\u064A\u0629","graphql.key":"\u0627\u0644\u0645\u0641\u062A\u0627\u062D","graphql.value":"\u0627\u0644\u0642\u064A\u0645\u0629","graphql.queries":"\u0627\u0644\u0627\u0633\u062A\u0639\u0644\u0627\u0645\u0627\u062A","graphql.mutations":"\u0627\u0644\u062A\u0639\u062F\u064A\u0644\u0627\u062A","graphql.subscriptions":"\u0627\u0644\u0627\u0634\u062A\u0631\u0627\u0643\u0627\u062A","graphql.directives":"\u0627\u0644\u062A\u0648\u062C\u064A\u0647\u0627\u062A","graphql.objects":"\u0627\u0644\u0643\u0627\u0626\u0646\u0627\u062A","graphql.interfaces":"\u0627\u0644\u0648\u0627\u062C\u0647\u0627\u062A","graphql.unions":"\u0627\u0644\u0627\u062A\u062D\u0627\u062F\u0627\u062A","graphql.enums":"\u0627\u0644\u062A\u0639\u062F\u0627\u062F\u0627\u062A","graphql.inputs":"\u0627\u0644\u0645\u062F\u062E\u0644\u0627\u062A","graphql.scalars":"\u0627\u0644\u0642\u064A\u0645 \u0627\u0644\u0639\u062F\u062F\u064A\u0629","graphql.arguments.label":"\u0627\u0644\u0648\u0633\u0627\u0626\u0637","graphql.arguments.show":"\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0648\u0633\u0627\u0626\u0637","graphql.arguments.hide":"\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0648\u0633\u0627\u0626\u0637","graphql.arguments.here":"\u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0647\u0646\u0627","graphql.returnTypes.label":"\u0646\u0648\u0639 \u0627\u0644\u0646\u062A\u064A\u062C\u0629","graphql.returnTypes.show":"\u0625\u0638\u0647\u0627\u0631 \u0646\u0648\u0639 \u0627\u0644\u0646\u062A\u064A\u062C\u0629","graphql.returnTypes.hide":"\u0625\u062E\u0641\u0627\u0621 \u0646\u0648\u0639 \u0627\u0644\u0646\u062A\u064A\u062C\u0629","graphql.possibleTypes":"\u0627\u0644\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0645\u062D\u062A\u0645\u0644\u0629","graphql.defaultValue":"\u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A","graphql.deprecationReason":"\u0633\u0628\u0628 \u0627\u0644\u0625\u0647\u0645\u0627\u0644","graphql.requiredScopes":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629","graphql.viewSecurityDetails":"\u0639\u0631\u0636 \u062A\u0641\u0627\u0635\u064A\u0644","graphql.objectScopes":"\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u0643\u0627\u0626\u0646\u0627\u062A","graphql.fieldScopes":"\u0646\u0637\u0627\u0642\u0627\u062A \u0627\u0644\u062D\u0642\u0648\u0644","graphql.implementedInterfaces":"\u064A\u0646\u0641\u0630 \u0627\u0644\u0648\u0627\u062C\u0647\u0627\u062A","graphql.nonNull":"\u063A\u064A\u0631 \u0641\u0627\u0631\u063A","graphql.required":"\u0645\u0637\u0644\u0648\u0628","graphql.deprecated":"\u0645\u0647\u0645\u0644","graphql.variables":"\u0627\u0644\u0645\u062A\u063A\u064A\u0631\u0627\u062A","graphql.querySample":"\u0646\u0645\u0648\u0630\u062C \u0627\u0633\u062A\u0639\u0644\u0627\u0645","graphql.mutationSample":"\u0646\u0645\u0648\u0630\u062C \u062A\u0639\u062F\u064A\u0644","graphql.subscriptionSample":"\u0646\u0645\u0648\u0630\u062C \u0627\u0634\u062A\u0631\u0627\u0643","graphql.responseSample":"\u0646\u0645\u0648\u0630\u062C \u0631\u062F","graphql.locations":"\u0627\u0644\u0645\u0648\u0627\u0642\u0639","graphql.sample":"\u0639\u064A\u0646\u0629","graphql.referenced":"\u0645\u0634\u0627\u0631 \u0625\u0644\u064A\u0647 \u0641\u064A","graphql.content.fragment":"\u062C\u0632\u0621","codeWalkthrough.preview":"\u0645\u0639\u0627\u064A\u0646\u0629","codeWalkthrough.download":"\u062A\u0646\u0632\u064A\u0644","time.justNow":"\u0627\u0644\u0622\u0646 \u0641\u0642\u0637","time.past.second":"\u0645\u0646\u0630 \u062B\u0627\u0646\u064A\u0629 \u0648\u0627\u062D\u062F\u0629","time.past.seconds":"\u0645\u0646\u0630 {{value}} \u062B\u0648\u0627\u0646\u064D","time.past.minute":"\u0645\u0646\u0630 \u062F\u0642\u064A\u0642\u0629 \u0648\u0627\u062D\u062F\u0629","time.past.minutes":"\u0645\u0646\u0630 {{value}} \u062F\u0642\u0627\u0626\u0642","time.past.hour":"\u0645\u0646\u0630 \u0633\u0627\u0639\u0629 \u0648\u0627\u062D\u062F\u0629","time.past.hours":"\u0645\u0646\u0630 {{value}} \u0633\u0627\u0639\u0627\u062A","time.past.day":"\u0645\u0646\u0630 \u064A\u0648\u0645 \u0648\u0627\u062D\u062F","time.past.days":"\u0645\u0646\u0630 {{value}} \u0623\u064A\u0627\u0645","time.past.week":"\u0645\u0646\u0630 \u0623\u0633\u0628\u0648\u0639 \u0648\u0627\u062D\u062F","time.past.weeks":"\u0645\u0646\u0630 {{value}} \u0623\u0633\u0627\u0628\u064A\u0639","time.past.month":"\u0645\u0646\u0630 \u0634\u0647\u0631 \u0648\u0627\u062D\u062F","time.past.months":"\u0645\u0646\u0630 {{value}} \u0623\u0634\u0647\u0631","time.past.year":"\u0645\u0646\u0630 \u0639\u0627\u0645 \u0648\u0627\u062D\u062F","time.past.years":"\u0645\u0646\u0630 {{value}} \u0623\u0639\u0648\u0627\u0645","page.internalServerError.title":"\u062E\u0637\u0623 \u062F\u0627\u062E\u0644\u064A \u0641\u064A \u0627\u0644\u062E\u0627\u062F\u0645","page.internalServerError.description":"\u062D\u062F\u062B \u062E\u0637\u0623 \u0645\u0627 \u0645\u0646 \u062C\u0627\u0646\u0628\u0646\u0627. \u064A\u0631\u062C\u0649 \u0627\u0644\u0645\u062D\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062E\u0631\u0649 \u0644\u0627\u062D\u0642\u064B\u0627 \u0623\u0648 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u0627\u0644\u062F\u0639\u0645 \u0625\u0630\u0627 \u0627\u0633\u062A\u0645\u0631\u062A \u0627\u0644\u0645\u0634\u0643\u0644\u0629.","page.skipToContent.label":"\u0627\u0646\u062A\u0642\u0644 \u0625\u0644\u0649 \u0627\u0644\u0645\u062D\u062A\u0648\u0649","catalog.catalogs.label":"\u0627\u0644\u0643\u062A\u0627\u0644\u0648\u062C\u0627\u062A","catalog.catalogs.all.title":"\u0627\u0644\u0643\u0644","catalog.catalogs.all.description":"\u062C\u0645\u064A\u0639 \u0627\u0644\u0643\u064A\u0627\u0646\u0627\u062A","catalog.catalogs.all.switcherLabel":"\u0627\u0644\u0643\u0644","catalog.catalogs.service.title":"\u0627\u0644\u062E\u062F\u0645\u0627\u062A","catalog.catalogs.service.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u062E\u062F\u0645\u0629","catalog.catalogs.service.switcherLabel":"\u0627\u0644\u062E\u062F\u0645\u0627\u062A","catalog.catalogs.user.title":"\u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645\u0648\u0646","catalog.catalogs.user.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645","catalog.catalogs.user.switcherLabel":"\u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645\u0648\u0646","catalog.catalogs.team.title":"\u0627\u0644\u0641\u0631\u0642","catalog.catalogs.team.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0641\u0631\u064A\u0642","catalog.catalogs.team.switcherLabel":"\u0627\u0644\u0641\u0631\u0642","catalog.catalogs.domain.title":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A","catalog.catalogs.domain.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0646\u0637\u0627\u0642","catalog.catalogs.domain.switcherLabel":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A","catalog.catalogs.apiDescription.title":"\u0648\u0635\u0641 API","catalog.catalogs.apiDescription.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0648\u0635\u0641 API","catalog.catalogs.apiDescription.switcherLabel":"\u0648\u0635\u0641 API","catalog.catalogs.dataSchema.title":"\u0627\u0644\u0646\u0645\u0627\u0630\u062C","catalog.catalogs.dataSchema.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0646\u0645\u0627\u0630\u062C","catalog.catalogs.dataSchema.switcherLabel":"\u0627\u0644\u0646\u0645\u0627\u0630\u062C","catalog.catalogs.apiOperation.title":"\u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A","catalog.catalogs.apiOperation.description":"\u0643\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A","catalog.catalogs.apiOperation.switcherLabel":"\u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A","catalog.entity.metadata.title":"\u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0648\u0635\u0641\u064A\u0629","catalog.entity.schema.title":"\u0627\u0644\u0646\u0645\u0648\u0630\u062C","catalog.entity.properties.apiDescription.title":"\u0648\u0635\u0641 API","catalog.backToAllLabel":"\u0627\u0644\u0643\u062A\u0627\u0644\u0648\u062C","catalog.notConnected":"\u063A\u064A\u0631 \u0645\u062A\u0635\u0644","catalog.tags.label":"\u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062A","catalog.tags.more":"\u0627\u0644\u0645\u0632\u064A\u062F","catalog.owners.label":"\u0627\u0644\u0645\u0627\u0644\u0643\u0648\u0646","catalog.repositories.label":"\u0627\u0644\u0645\u0633\u062A\u0648\u062F\u0639\u0627\u062A","catalog.email.label":"\u0627\u0644\u0628\u0631\u064A\u062F \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A","catalog.format.label":"\u0627\u0644\u062A\u0646\u0633\u064A\u0642","catalog.entityType.label":"\u0646\u0648\u0639 \u0627\u0644\u0643\u064A\u0627\u0646","catalog.domains.label":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A","catalog.contact.label":"\u0642\u0646\u0648\u0627\u062A Slack","catalog.methodAndPath.label":"\u0627\u0644\u0637\u0631\u064A\u0642\u0629 \u0648\u0627\u0644\u0645\u0633\u0627\u0631","catalog.links.label":"\u0627\u0644\u0631\u0648\u0627\u0628\u0637","catalog.metadata.domains":"\u0627\u0644\u0646\u0637\u0627\u0642\u0627\u062A:","catalog.metadata.owners":"\u0627\u0644\u0645\u0627\u0644\u0643\u0648\u0646:","catalog.sort":"\u062A\u0631\u062A\u064A\u0628","catalog.history.button.label":"\u0633\u062C\u0644 \u0627\u0644\u0625\u0635\u062F\u0627\u0631\u0627\u062A","catalog.history.sidebar.title":"\u0633\u062C\u0644 \u0627\u0644\u0625\u0635\u062F\u0627\u0631\u0627\u062A","catalog.history.sidebar.close":"\u0625\u063A\u0644\u0627\u0642 \u0633\u062C\u0644 \u0627\u0644\u0625\u0635\u062F\u0627\u0631\u0627\u062A","catalog.history.version.label":"\u0627\u0644\u0625\u0635\u062F\u0627\u0631","catalog.filters.close":"\u0625\u063A\u0644\u0627\u0642","catalog.history.version.notSpecified":"\u063A\u064A\u0631 \u0645\u062D\u062F\u062F","catalog.history.version.default":"\u0627\u0641\u062A\u0631\u0627\u0636\u064A","catalog.history.revisions.limitMessage":"\u0644\u0627 \u064A\u062A\u0645 \u062A\u062E\u0632\u064A\u0646 \u0627\u0644\u0645\u0631\u0627\u062C\u0639\u0627\u062A \u0627\u0644\u0623\u0642\u062F\u0645.","catalog.history.revision.current":"\u0627\u0644\u062D\u0627\u0644\u064A","catalog.history.revisions.showLess":"\u0639\u0631\u0636 \u0623\u0642\u0644","catalog.history.revisions.showMore":"\u0639\u0631\u0636 {{count}} \u0627\u0644\u0645\u0632\u064A\u062F","select.noResults":"\u0644\u0627 \u064A\u0648\u062C\u062F \u0646\u062A\u0627\u0626\u062C","loaders.loading":"\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644...","mermaid.openFullscreen":"\u0627\u0646\u0642\u0631 \u0644\u0641\u062A\u062D \u0627\u0644\u0631\u0633\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u064A \u0641\u064A \u0648\u0636\u0639 \u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629","mermaid.zoomIn":"\u062A\u0643\u0628\u064A\u0631","mermaid.zoomOut":"\u062A\u0635\u063A\u064A\u0631","mermaid.reset":"\u0645\u0644\u0627\u0621\u0645\u0629 \u0627\u0644\u0639\u0631\u0636","mermaid.close":"\u0625\u063A\u0644\u0627\u0642","mermaid.viewer":"\u0639\u0627\u0631\u0636 \u0645\u062E\u0637\u0637\u0627\u062A Mermaid"};export{e as ar};