@linxiraos/pi-ai 1.0.9 → 1.1.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 (360) hide show
  1. package/CHANGELOG.md +2 -5173
  2. package/LICENSE +23 -0
  3. package/README.md +1 -1
  4. package/package.json +134 -137
  5. package/src/auth/sqlite-credential-store.ts +11 -24
  6. package/src/auth-broker/client.ts +37 -18
  7. package/src/auth-broker/discover.ts +10 -9
  8. package/src/auth-broker/server.ts +10 -5
  9. package/src/auth-broker/snapshot-cache.ts +28 -0
  10. package/src/auth-broker/wire-schemas.ts +402 -40
  11. package/src/auth-gateway/server.ts +31 -5
  12. package/src/auth-retry.ts +41 -3
  13. package/src/auth-storage.ts +302 -89
  14. package/src/dialect/qwen-xml.ts +82 -0
  15. package/src/dialect/thinking-fence-strip.ts +92 -0
  16. package/src/error/auth-classify.ts +12 -9
  17. package/src/error/finalize.ts +4 -0
  18. package/src/error/flags.ts +237 -19
  19. package/src/error/oauth.ts +2 -1
  20. package/src/error/rate-limit.ts +1 -1
  21. package/src/index.ts +1 -0
  22. package/src/oneshot-retry.ts +5 -0
  23. package/src/providers/amazon-bedrock.ts +72 -31
  24. package/src/providers/anthropic.ts +37 -35
  25. package/src/providers/connect-error-detail.ts +83 -0
  26. package/src/providers/cowork-fetch.ts +80 -29
  27. package/src/providers/cursor/exec-modern.ts +4 -2
  28. package/src/providers/cursor/interaction-query.ts +212 -0
  29. package/src/providers/cursor/proto/agent.proto +25 -3
  30. package/src/providers/cursor-pi-args.ts +39 -3
  31. package/src/providers/cursor.ts +720 -116
  32. package/src/providers/devin.ts +80 -17
  33. package/src/providers/gitlab-duo-workflow.ts +6 -6
  34. package/src/providers/google-shared.ts +35 -19
  35. package/src/providers/google-types.ts +7 -0
  36. package/src/providers/mock.ts +4 -1
  37. package/src/providers/openai-chat-server.ts +24 -10
  38. package/src/providers/openai-codex-responses.ts +142 -59
  39. package/src/providers/openai-completions.ts +46 -32
  40. package/src/providers/openai-reasoning-fallback.ts +86 -4
  41. package/src/providers/openai-responses.ts +5 -0
  42. package/src/providers/openai-shared.ts +237 -26
  43. package/src/providers/pi-native-server.ts +3 -0
  44. package/src/providers/vision-guard.ts +37 -2
  45. package/src/registry/oauth/callback-server.ts +31 -0
  46. package/src/registry/oauth/google-antigravity.ts +248 -162
  47. package/src/registry/oauth/index.ts +3 -3
  48. package/src/registry/oauth/opencode.ts +27 -13
  49. package/src/registry/oauth/perplexity.ts +6 -3
  50. package/src/registry/oauth/types.ts +2 -1
  51. package/src/registry/oauth/xai-oauth.ts +14 -7
  52. package/src/registry/oauth/zai.ts +2 -2
  53. package/src/registry/opencode-go.ts +1 -1
  54. package/src/registry/opencode-zen.ts +1 -1
  55. package/src/registry/types.ts +2 -1
  56. package/src/registry/xai-oauth.ts +2 -2
  57. package/src/stream.ts +89 -20
  58. package/src/types.ts +40 -1
  59. package/src/usage/claude.ts +9 -2
  60. package/src/usage/cursor.ts +37 -30
  61. package/src/usage.ts +10 -0
  62. package/src/utils/event-stream.ts +24 -2
  63. package/src/utils/glyph-codec.ts +458 -0
  64. package/src/utils/glyph-notice.md +3 -0
  65. package/src/utils/openai-http.ts +30 -0
  66. package/src/utils/openrouter-headers.ts +2 -2
  67. package/src/utils/proxy.ts +124 -8
  68. package/src/utils/schema/CONSTRAINTS.md +1 -0
  69. package/src/utils/schema/fields.ts +20 -4
  70. package/src/utils/schema/json-schema-validator.ts +54 -17
  71. package/src/utils/stream-markup-healing.ts +9 -2
  72. package/src/utils/thinking-loop.ts +33 -15
  73. package/src/utils/validation.ts +212 -5
  74. package/dist/types/api-registry.d.ts +0 -30
  75. package/dist/types/auth/sqlite-credential-store.d.ts +0 -115
  76. package/dist/types/auth-broker/client.d.ts +0 -100
  77. package/dist/types/auth-broker/discover.d.ts +0 -39
  78. package/dist/types/auth-broker/index.d.ts +0 -7
  79. package/dist/types/auth-broker/refresher.d.ts +0 -25
  80. package/dist/types/auth-broker/remote-store.d.ts +0 -136
  81. package/dist/types/auth-broker/server.d.ts +0 -48
  82. package/dist/types/auth-broker/snapshot-cache.d.ts +0 -17
  83. package/dist/types/auth-broker/types.d.ts +0 -152
  84. package/dist/types/auth-broker/wire-schema-resource.d.ts +0 -53
  85. package/dist/types/auth-broker/wire-schemas.d.ts +0 -5
  86. package/dist/types/auth-gateway/http.d.ts +0 -56
  87. package/dist/types/auth-gateway/index.d.ts +0 -3
  88. package/dist/types/auth-gateway/server.d.ts +0 -36
  89. package/dist/types/auth-gateway/types.d.ts +0 -127
  90. package/dist/types/auth-retry.d.ts +0 -150
  91. package/dist/types/auth-storage.d.ts +0 -1259
  92. package/dist/types/dialect/anthropic.d.ts +0 -15
  93. package/dist/types/dialect/catalog.d.ts +0 -3
  94. package/dist/types/dialect/coercion.d.ts +0 -23
  95. package/dist/types/dialect/deepseek.d.ts +0 -14
  96. package/dist/types/dialect/demotion.d.ts +0 -30
  97. package/dist/types/dialect/examples.d.ts +0 -18
  98. package/dist/types/dialect/factory.d.ts +0 -3
  99. package/dist/types/dialect/fenced-thinking.d.ts +0 -53
  100. package/dist/types/dialect/gemini.d.ts +0 -17
  101. package/dist/types/dialect/gemma.d.ts +0 -15
  102. package/dist/types/dialect/glm.d.ts +0 -9
  103. package/dist/types/dialect/harmony.d.ts +0 -8
  104. package/dist/types/dialect/hermes.d.ts +0 -9
  105. package/dist/types/dialect/history.d.ts +0 -3
  106. package/dist/types/dialect/index.d.ts +0 -11
  107. package/dist/types/dialect/inventory.d.ts +0 -9
  108. package/dist/types/dialect/kimi.d.ts +0 -14
  109. package/dist/types/dialect/minimax.d.ts +0 -3
  110. package/dist/types/dialect/owned-stream.d.ts +0 -4
  111. package/dist/types/dialect/qwen3.d.ts +0 -9
  112. package/dist/types/dialect/rendering.d.ts +0 -54
  113. package/dist/types/dialect/thinking.d.ts +0 -6
  114. package/dist/types/dialect/types.d.ts +0 -68
  115. package/dist/types/dialect/xml.d.ts +0 -9
  116. package/dist/types/error/abort.d.ts +0 -14
  117. package/dist/types/error/auth-classify.d.ts +0 -20
  118. package/dist/types/error/auth.d.ts +0 -27
  119. package/dist/types/error/aws.d.ts +0 -31
  120. package/dist/types/error/classes.d.ts +0 -106
  121. package/dist/types/error/finalize.d.ts +0 -39
  122. package/dist/types/error/flags.d.ts +0 -99
  123. package/dist/types/error/format.d.ts +0 -20
  124. package/dist/types/error/gateway.d.ts +0 -20
  125. package/dist/types/error/index.d.ts +0 -14
  126. package/dist/types/error/oauth.d.ts +0 -43
  127. package/dist/types/error/provider.d.ts +0 -44
  128. package/dist/types/error/rate-limit.d.ts +0 -83
  129. package/dist/types/error/retryable.d.ts +0 -27
  130. package/dist/types/error/validation.d.ts +0 -32
  131. package/dist/types/index.d.ts +0 -52
  132. package/dist/types/oneshot-retry.d.ts +0 -89
  133. package/dist/types/provider-details.d.ts +0 -24
  134. package/dist/types/providers/amazon-bedrock.d.ts +0 -39
  135. package/dist/types/providers/anthropic-client.d.ts +0 -106
  136. package/dist/types/providers/anthropic-messages-server-schema.d.ts +0 -937
  137. package/dist/types/providers/anthropic-messages-server.d.ts +0 -17
  138. package/dist/types/providers/anthropic-wire.d.ts +0 -358
  139. package/dist/types/providers/anthropic.d.ts +0 -258
  140. package/dist/types/providers/aws-credentials.d.ts +0 -49
  141. package/dist/types/providers/aws-eventstream.d.ts +0 -39
  142. package/dist/types/providers/aws-sigv4.d.ts +0 -55
  143. package/dist/types/providers/azure-openai-responses.d.ts +0 -17
  144. package/dist/types/providers/bedrock-mantle.d.ts +0 -13
  145. package/dist/types/providers/claude-code-fingerprint.d.ts +0 -19
  146. package/dist/types/providers/cowork-fetch.d.ts +0 -3
  147. package/dist/types/providers/cursor/exec-modern.d.ts +0 -98
  148. package/dist/types/providers/cursor-pi-args.d.ts +0 -119
  149. package/dist/types/providers/cursor.d.ts +0 -221
  150. package/dist/types/providers/devin.d.ts +0 -12
  151. package/dist/types/providers/error-message.d.ts +0 -25
  152. package/dist/types/providers/github-copilot-headers.d.ts +0 -40
  153. package/dist/types/providers/gitlab-duo-workflow.d.ts +0 -254
  154. package/dist/types/providers/gitlab-duo.d.ts +0 -27
  155. package/dist/types/providers/google-auth.d.ts +0 -24
  156. package/dist/types/providers/google-gemini-cli.d.ts +0 -119
  157. package/dist/types/providers/google-shared.d.ts +0 -203
  158. package/dist/types/providers/google-types.d.ts +0 -155
  159. package/dist/types/providers/google-vertex.d.ts +0 -7
  160. package/dist/types/providers/google.d.ts +0 -4
  161. package/dist/types/providers/grammar.d.ts +0 -1
  162. package/dist/types/providers/kimi.d.ts +0 -27
  163. package/dist/types/providers/mock.d.ts +0 -179
  164. package/dist/types/providers/ollama.d.ts +0 -8
  165. package/dist/types/providers/openai-anthropic-shim.d.ts +0 -35
  166. package/dist/types/providers/openai-chat-server-schema.d.ts +0 -1311
  167. package/dist/types/providers/openai-chat-server.d.ts +0 -16
  168. package/dist/types/providers/openai-chat-wire.d.ts +0 -669
  169. package/dist/types/providers/openai-codex/request-transformer.d.ts +0 -111
  170. package/dist/types/providers/openai-codex/response-handler.d.ts +0 -26
  171. package/dist/types/providers/openai-codex-responses.d.ts +0 -238
  172. package/dist/types/providers/openai-completions.d.ts +0 -48
  173. package/dist/types/providers/openai-reasoning-fallback.d.ts +0 -25
  174. package/dist/types/providers/openai-responses-server-schema.d.ts +0 -1314
  175. package/dist/types/providers/openai-responses-server.d.ts +0 -17
  176. package/dist/types/providers/openai-responses-wire.d.ts +0 -6099
  177. package/dist/types/providers/openai-responses.d.ts +0 -132
  178. package/dist/types/providers/openai-shared.d.ts +0 -642
  179. package/dist/types/providers/pi-native-client.d.ts +0 -13
  180. package/dist/types/providers/pi-native-server.d.ts +0 -69
  181. package/dist/types/providers/register-builtins.d.ts +0 -37
  182. package/dist/types/providers/synthetic.d.ts +0 -26
  183. package/dist/types/providers/transform-messages.d.ts +0 -32
  184. package/dist/types/providers/vision-guard.d.ts +0 -24
  185. package/dist/types/registry/aiand.d.ts +0 -7
  186. package/dist/types/registry/aimlapi.d.ts +0 -4
  187. package/dist/types/registry/alibaba-coding-plan.d.ts +0 -8
  188. package/dist/types/registry/alibaba-token-plan.d.ts +0 -18
  189. package/dist/types/registry/amazon-bedrock.d.ts +0 -10
  190. package/dist/types/registry/anthropic.d.ts +0 -10
  191. package/dist/types/registry/api-key-login.d.ts +0 -44
  192. package/dist/types/registry/api-key-validation.d.ts +0 -43
  193. package/dist/types/registry/aws.d.ts +0 -15
  194. package/dist/types/registry/azure.d.ts +0 -4
  195. package/dist/types/registry/baseten.d.ts +0 -7
  196. package/dist/types/registry/bedrock-mantle.d.ts +0 -22
  197. package/dist/types/registry/cerebras.d.ts +0 -7
  198. package/dist/types/registry/cloudflare-ai-gateway.d.ts +0 -13
  199. package/dist/types/registry/coreweave.d.ts +0 -7
  200. package/dist/types/registry/cursor.d.ts +0 -7
  201. package/dist/types/registry/deepseek.d.ts +0 -8
  202. package/dist/types/registry/derived.d.ts +0 -5
  203. package/dist/types/registry/devin.d.ts +0 -8
  204. package/dist/types/registry/exa.d.ts +0 -8
  205. package/dist/types/registry/firepass.d.ts +0 -16
  206. package/dist/types/registry/fireworks.d.ts +0 -7
  207. package/dist/types/registry/github-copilot.d.ts +0 -7
  208. package/dist/types/registry/gitlab-duo-workflow.d.ts +0 -10
  209. package/dist/types/registry/gitlab-duo.d.ts +0 -9
  210. package/dist/types/registry/gmi-cloud.d.ts +0 -7
  211. package/dist/types/registry/google-antigravity.d.ts +0 -9
  212. package/dist/types/registry/google-gemini-cli.d.ts +0 -9
  213. package/dist/types/registry/google-vertex.d.ts +0 -5
  214. package/dist/types/registry/google.d.ts +0 -4
  215. package/dist/types/registry/groq.d.ts +0 -4
  216. package/dist/types/registry/huggingface.d.ts +0 -7
  217. package/dist/types/registry/index.d.ts +0 -4
  218. package/dist/types/registry/kagi.d.ts +0 -14
  219. package/dist/types/registry/kilo.d.ts +0 -7
  220. package/dist/types/registry/kimi-code.d.ts +0 -7
  221. package/dist/types/registry/litellm.d.ts +0 -13
  222. package/dist/types/registry/llama-cpp.d.ts +0 -8
  223. package/dist/types/registry/lm-studio.d.ts +0 -8
  224. package/dist/types/registry/meta.d.ts +0 -7
  225. package/dist/types/registry/minimax-code-cn.d.ts +0 -6
  226. package/dist/types/registry/minimax-code.d.ts +0 -6
  227. package/dist/types/registry/minimax.d.ts +0 -4
  228. package/dist/types/registry/mistral.d.ts +0 -4
  229. package/dist/types/registry/moonshot.d.ts +0 -7
  230. package/dist/types/registry/nanogpt.d.ts +0 -7
  231. package/dist/types/registry/novita.d.ts +0 -6
  232. package/dist/types/registry/nvidia.d.ts +0 -7
  233. package/dist/types/registry/oauth/anthropic-constants.d.ts +0 -12
  234. package/dist/types/registry/oauth/anthropic.d.ts +0 -24
  235. package/dist/types/registry/oauth/callback-server.d.ts +0 -74
  236. package/dist/types/registry/oauth/cursor.d.ts +0 -16
  237. package/dist/types/registry/oauth/device-code.d.ts +0 -25
  238. package/dist/types/registry/oauth/devin.d.ts +0 -5
  239. package/dist/types/registry/oauth/github-copilot.d.ts +0 -30
  240. package/dist/types/registry/oauth/gitlab-duo-workflow.d.ts +0 -6
  241. package/dist/types/registry/oauth/gitlab-duo.d.ts +0 -3
  242. package/dist/types/registry/oauth/google-antigravity.d.ts +0 -15
  243. package/dist/types/registry/oauth/google-gemini-cli.d.ts +0 -22
  244. package/dist/types/registry/oauth/google-oauth-shared.d.ts +0 -56
  245. package/dist/types/registry/oauth/index.d.ts +0 -45
  246. package/dist/types/registry/oauth/kimi.d.ts +0 -21
  247. package/dist/types/registry/oauth/minimax-code.d.ts +0 -27
  248. package/dist/types/registry/oauth/openai-codex.d.ts +0 -33
  249. package/dist/types/registry/oauth/opencode.d.ts +0 -18
  250. package/dist/types/registry/oauth/perplexity.d.ts +0 -9
  251. package/dist/types/registry/oauth/pkce.d.ts +0 -8
  252. package/dist/types/registry/oauth/types.d.ts +0 -87
  253. package/dist/types/registry/oauth/wafer.d.ts +0 -1
  254. package/dist/types/registry/oauth/xai-oauth.d.ts +0 -46
  255. package/dist/types/registry/oauth/xiaomi.d.ts +0 -25
  256. package/dist/types/registry/oauth/zai.d.ts +0 -25
  257. package/dist/types/registry/ollama-cloud.d.ts +0 -7
  258. package/dist/types/registry/ollama.d.ts +0 -12
  259. package/dist/types/registry/openai-codex-device.d.ts +0 -8
  260. package/dist/types/registry/openai-codex.d.ts +0 -9
  261. package/dist/types/registry/openai.d.ts +0 -4
  262. package/dist/types/registry/opencode-go.d.ts +0 -6
  263. package/dist/types/registry/opencode-zen.d.ts +0 -6
  264. package/dist/types/registry/openrouter.d.ts +0 -13
  265. package/dist/types/registry/parallel.d.ts +0 -14
  266. package/dist/types/registry/perplexity.d.ts +0 -7
  267. package/dist/types/registry/qianfan.d.ts +0 -7
  268. package/dist/types/registry/qwen-portal.d.ts +0 -7
  269. package/dist/types/registry/registry.d.ts +0 -372
  270. package/dist/types/registry/sakana.d.ts +0 -7
  271. package/dist/types/registry/siliconflow-cn.d.ts +0 -7
  272. package/dist/types/registry/siliconflow.d.ts +0 -7
  273. package/dist/types/registry/synthetic.d.ts +0 -6
  274. package/dist/types/registry/tavily.d.ts +0 -14
  275. package/dist/types/registry/together.d.ts +0 -6
  276. package/dist/types/registry/types.d.ts +0 -75
  277. package/dist/types/registry/umans.d.ts +0 -7
  278. package/dist/types/registry/venice.d.ts +0 -13
  279. package/dist/types/registry/vercel-ai-gateway.d.ts +0 -7
  280. package/dist/types/registry/vllm.d.ts +0 -7
  281. package/dist/types/registry/wafer-serverless.d.ts +0 -6
  282. package/dist/types/registry/xai-oauth.d.ts +0 -7
  283. package/dist/types/registry/xai.d.ts +0 -7
  284. package/dist/types/registry/xiaomi-token-plan-ams.d.ts +0 -6
  285. package/dist/types/registry/xiaomi-token-plan-cn.d.ts +0 -6
  286. package/dist/types/registry/xiaomi-token-plan-sgp.d.ts +0 -6
  287. package/dist/types/registry/xiaomi.d.ts +0 -6
  288. package/dist/types/registry/zai.d.ts +0 -15
  289. package/dist/types/registry/zenmux.d.ts +0 -7
  290. package/dist/types/registry/zhipu-coding-plan.d.ts +0 -7
  291. package/dist/types/stream.d.ts +0 -53
  292. package/dist/types/types.d.ts +0 -1088
  293. package/dist/types/usage/alibaba-token-plan.d.ts +0 -3
  294. package/dist/types/usage/claude.d.ts +0 -4
  295. package/dist/types/usage/cursor.d.ts +0 -15
  296. package/dist/types/usage/gemini.d.ts +0 -2
  297. package/dist/types/usage/github-copilot.d.ts +0 -7
  298. package/dist/types/usage/google-antigravity.d.ts +0 -15
  299. package/dist/types/usage/kimi.d.ts +0 -4
  300. package/dist/types/usage/minimax-code.d.ts +0 -3
  301. package/dist/types/usage/ollama.d.ts +0 -5
  302. package/dist/types/usage/openai-codex-base-url.d.ts +0 -18
  303. package/dist/types/usage/openai-codex-reset.d.ts +0 -68
  304. package/dist/types/usage/openai-codex.d.ts +0 -10
  305. package/dist/types/usage/opencode-go.d.ts +0 -13
  306. package/dist/types/usage/shared.d.ts +0 -13
  307. package/dist/types/usage/synthetic.d.ts +0 -2
  308. package/dist/types/usage/umans.d.ts +0 -2
  309. package/dist/types/usage/xai-oauth.d.ts +0 -12
  310. package/dist/types/usage/zai.d.ts +0 -3
  311. package/dist/types/usage.d.ts +0 -508
  312. package/dist/types/utils/abort.d.ts +0 -25
  313. package/dist/types/utils/anthropic-auth.d.ts +0 -35
  314. package/dist/types/utils/aws-profile.d.ts +0 -17
  315. package/dist/types/utils/block-symbols.d.ts +0 -74
  316. package/dist/types/utils/deterministic-id.d.ts +0 -16
  317. package/dist/types/utils/empty-completion-retry.d.ts +0 -22
  318. package/dist/types/utils/event-stream.d.ts +0 -39
  319. package/dist/types/utils/foundry.d.ts +0 -1
  320. package/dist/types/utils/google-validation.d.ts +0 -2
  321. package/dist/types/utils/harmony-leak.d.ts +0 -135
  322. package/dist/types/utils/http-inspector.d.ts +0 -49
  323. package/dist/types/utils/idle-iterator.d.ts +0 -149
  324. package/dist/types/utils/leaked-thinking-stream.d.ts +0 -33
  325. package/dist/types/utils/openai-http.d.ts +0 -48
  326. package/dist/types/utils/openrouter-headers.d.ts +0 -1
  327. package/dist/types/utils/parse-bind.d.ts +0 -23
  328. package/dist/types/utils/provider-response.d.ts +0 -3
  329. package/dist/types/utils/proxy.d.ts +0 -39
  330. package/dist/types/utils/request-debug.d.ts +0 -29
  331. package/dist/types/utils/retry-after.d.ts +0 -4
  332. package/dist/types/utils/retry.d.ts +0 -14
  333. package/dist/types/utils/schema/adapt.d.ts +0 -24
  334. package/dist/types/utils/schema/compatibility.d.ts +0 -30
  335. package/dist/types/utils/schema/dereference.d.ts +0 -11
  336. package/dist/types/utils/schema/draft.d.ts +0 -10
  337. package/dist/types/utils/schema/equality.d.ts +0 -4
  338. package/dist/types/utils/schema/fields.d.ts +0 -54
  339. package/dist/types/utils/schema/index.d.ts +0 -14
  340. package/dist/types/utils/schema/json-schema-validator.d.ts +0 -20
  341. package/dist/types/utils/schema/meta-validator.d.ts +0 -2
  342. package/dist/types/utils/schema/normalize.d.ts +0 -153
  343. package/dist/types/utils/schema/spill.d.ts +0 -8
  344. package/dist/types/utils/schema/stamps.d.ts +0 -17
  345. package/dist/types/utils/schema/strict-tool-validation.d.ts +0 -25
  346. package/dist/types/utils/schema/types.d.ts +0 -4
  347. package/dist/types/utils/schema/typescript.d.ts +0 -24
  348. package/dist/types/utils/schema/wire.d.ts +0 -58
  349. package/dist/types/utils/sdk-stream-timeout.d.ts +0 -33
  350. package/dist/types/utils/sse-debug.d.ts +0 -5
  351. package/dist/types/utils/stream-markup-healing.d.ts +0 -87
  352. package/dist/types/utils/thinking-loop.d.ts +0 -94
  353. package/dist/types/utils/tool-call-loop-guard.d.ts +0 -26
  354. package/dist/types/utils/tool-choice.d.ts +0 -52
  355. package/dist/types/utils/validation.d.ts +0 -28
  356. package/dist/types/utils.d.ts +0 -57
  357. package/src/providers/cursor/proto/buf.gen.yaml +0 -6
  358. package/src/providers/cursor/proto/buf.yaml +0 -17
  359. package/src/providers/devin/proto/buf.gen.yaml +0 -33
  360. package/src/providers/devin/proto/buf.yaml +0 -17

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.