@jonsoc/console-app 1.1.34

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 (217) hide show
  1. package/.opencode/agent/css.md +149 -0
  2. package/README.md +32 -0
  3. package/package.json +49 -0
  4. package/public/apple-touch-icon-v3.png +1 -0
  5. package/public/apple-touch-icon.png +1 -0
  6. package/public/email +1 -0
  7. package/public/favicon-96x96-v3.png +1 -0
  8. package/public/favicon-96x96.png +1 -0
  9. package/public/favicon-v3.ico +1 -0
  10. package/public/favicon-v3.svg +1 -0
  11. package/public/favicon.ico +1 -0
  12. package/public/favicon.svg +1 -0
  13. package/public/opencode-brand-assets.zip +0 -0
  14. package/public/robots.txt +6 -0
  15. package/public/site.webmanifest +1 -0
  16. package/public/social-share-black.png +1 -0
  17. package/public/social-share-zen.png +1 -0
  18. package/public/social-share.png +1 -0
  19. package/public/theme.json +182 -0
  20. package/public/web-app-manifest-192x192.png +1 -0
  21. package/public/web-app-manifest-512x512.png +1 -0
  22. package/script/generate-sitemap.ts +103 -0
  23. package/src/app.css +1 -0
  24. package/src/app.tsx +27 -0
  25. package/src/asset/black/hero.png +0 -0
  26. package/src/asset/brand/opencode-brand-assets.zip +0 -0
  27. package/src/asset/brand/opencode-logo-dark.png +0 -0
  28. package/src/asset/brand/opencode-logo-dark.svg +16 -0
  29. package/src/asset/brand/opencode-logo-light.png +0 -0
  30. package/src/asset/brand/opencode-logo-light.svg +16 -0
  31. package/src/asset/brand/opencode-wordmark-dark.png +0 -0
  32. package/src/asset/brand/opencode-wordmark-dark.svg +30 -0
  33. package/src/asset/brand/opencode-wordmark-light.png +0 -0
  34. package/src/asset/brand/opencode-wordmark-light.svg +30 -0
  35. package/src/asset/brand/opencode-wordmark-simple-dark.png +0 -0
  36. package/src/asset/brand/opencode-wordmark-simple-dark.svg +22 -0
  37. package/src/asset/brand/opencode-wordmark-simple-light.png +0 -0
  38. package/src/asset/brand/opencode-wordmark-simple-light.svg +22 -0
  39. package/src/asset/brand/preview-opencode-dark.png +0 -0
  40. package/src/asset/brand/preview-opencode-logo-dark.png +0 -0
  41. package/src/asset/brand/preview-opencode-logo-light.png +0 -0
  42. package/src/asset/brand/preview-opencode-wordmark-dark.png +0 -0
  43. package/src/asset/brand/preview-opencode-wordmark-light.png +0 -0
  44. package/src/asset/brand/preview-opencode-wordmark-simple-dark.png +0 -0
  45. package/src/asset/brand/preview-opencode-wordmark-simple-light.png +0 -0
  46. package/src/asset/lander/avatar-adam.png +0 -0
  47. package/src/asset/lander/avatar-david.png +0 -0
  48. package/src/asset/lander/avatar-dax.png +0 -0
  49. package/src/asset/lander/avatar-frank.png +0 -0
  50. package/src/asset/lander/avatar-jay.png +0 -0
  51. package/src/asset/lander/brand-assets-dark.svg +10 -0
  52. package/src/asset/lander/brand-assets-light.svg +10 -0
  53. package/src/asset/lander/brand.png +0 -0
  54. package/src/asset/lander/check.svg +3 -0
  55. package/src/asset/lander/copy.svg +3 -0
  56. package/src/asset/lander/desktop-app-icon.png +0 -0
  57. package/src/asset/lander/dock.png +0 -0
  58. package/src/asset/lander/logo-dark.svg +11 -0
  59. package/src/asset/lander/logo-light.svg +11 -0
  60. package/src/asset/lander/opencode-comparison-min.mp4 +0 -0
  61. package/src/asset/lander/opencode-comparison-poster.png +0 -0
  62. package/src/asset/lander/opencode-desktop-icon.png +0 -0
  63. package/src/asset/lander/opencode-logo-dark.svg +11 -0
  64. package/src/asset/lander/opencode-logo-light.svg +11 -0
  65. package/src/asset/lander/opencode-min.mp4 +0 -0
  66. package/src/asset/lander/opencode-poster.png +0 -0
  67. package/src/asset/lander/opencode-wordmark-dark.svg +25 -0
  68. package/src/asset/lander/opencode-wordmark-light.svg +25 -0
  69. package/src/asset/lander/screenshot-github.png +0 -0
  70. package/src/asset/lander/screenshot-splash.png +0 -0
  71. package/src/asset/lander/screenshot-vscode.png +0 -0
  72. package/src/asset/lander/screenshot.png +0 -0
  73. package/src/asset/lander/wordmark-dark.svg +3 -0
  74. package/src/asset/lander/wordmark-light.svg +3 -0
  75. package/src/asset/logo-ornate-dark.svg +18 -0
  76. package/src/asset/logo-ornate-light.svg +18 -0
  77. package/src/asset/logo.svg +18 -0
  78. package/src/asset/zen-ornate-dark.svg +8 -0
  79. package/src/asset/zen-ornate-light.svg +8 -0
  80. package/src/component/dropdown.css +80 -0
  81. package/src/component/dropdown.tsx +79 -0
  82. package/src/component/email-signup.tsx +48 -0
  83. package/src/component/faq.tsx +33 -0
  84. package/src/component/footer.tsx +38 -0
  85. package/src/component/header-context-menu.css +63 -0
  86. package/src/component/header.tsx +279 -0
  87. package/src/component/icon.tsx +257 -0
  88. package/src/component/legal.tsx +20 -0
  89. package/src/component/modal.css +66 -0
  90. package/src/component/modal.tsx +24 -0
  91. package/src/component/spotlight.css +15 -0
  92. package/src/component/spotlight.tsx +820 -0
  93. package/src/config.ts +29 -0
  94. package/src/context/auth.session.ts +0 -0
  95. package/src/context/auth.ts +116 -0
  96. package/src/context/auth.withActor.ts +7 -0
  97. package/src/entry-client.tsx +4 -0
  98. package/src/entry-server.tsx +30 -0
  99. package/src/global.d.ts +5 -0
  100. package/src/lib/github.ts +38 -0
  101. package/src/middleware.ts +5 -0
  102. package/src/routes/[...404].css +130 -0
  103. package/src/routes/[...404].tsx +38 -0
  104. package/src/routes/api/enterprise.ts +47 -0
  105. package/src/routes/auth/[...callback].ts +41 -0
  106. package/src/routes/auth/authorize.ts +10 -0
  107. package/src/routes/auth/index.ts +12 -0
  108. package/src/routes/auth/logout.ts +17 -0
  109. package/src/routes/auth/status.ts +7 -0
  110. package/src/routes/bench/[id].tsx +365 -0
  111. package/src/routes/bench/index.tsx +86 -0
  112. package/src/routes/bench/submission.ts +29 -0
  113. package/src/routes/black/common.tsx +62 -0
  114. package/src/routes/black/index.tsx +108 -0
  115. package/src/routes/black/subscribe/[plan].tsx +449 -0
  116. package/src/routes/black/workspace.css +214 -0
  117. package/src/routes/black/workspace.tsx +229 -0
  118. package/src/routes/black.css +828 -0
  119. package/src/routes/black.tsx +285 -0
  120. package/src/routes/brand/index.css +555 -0
  121. package/src/routes/brand/index.tsx +252 -0
  122. package/src/routes/changelog/index.css +477 -0
  123. package/src/routes/changelog/index.tsx +147 -0
  124. package/src/routes/debug/index.ts +13 -0
  125. package/src/routes/desktop-feedback.ts +5 -0
  126. package/src/routes/discord.ts +5 -0
  127. package/src/routes/docs/[...path].ts +20 -0
  128. package/src/routes/docs/index.ts +20 -0
  129. package/src/routes/download/[platform].ts +38 -0
  130. package/src/routes/download/index.css +750 -0
  131. package/src/routes/download/index.tsx +482 -0
  132. package/src/routes/download/types.ts +4 -0
  133. package/src/routes/enterprise/index.css +578 -0
  134. package/src/routes/enterprise/index.tsx +251 -0
  135. package/src/routes/index.css +1251 -0
  136. package/src/routes/index.tsx +840 -0
  137. package/src/routes/legal/privacy-policy/index.css +343 -0
  138. package/src/routes/legal/privacy-policy/index.tsx +1512 -0
  139. package/src/routes/legal/terms-of-service/index.css +254 -0
  140. package/src/routes/legal/terms-of-service/index.tsx +512 -0
  141. package/src/routes/openapi.json.ts +7 -0
  142. package/src/routes/s/[id].ts +20 -0
  143. package/src/routes/stripe/webhook.ts +532 -0
  144. package/src/routes/t/[...path].tsx +20 -0
  145. package/src/routes/temp.tsx +172 -0
  146. package/src/routes/user-menu.css +18 -0
  147. package/src/routes/user-menu.tsx +32 -0
  148. package/src/routes/workspace/[id]/billing/billing-section.module.css +185 -0
  149. package/src/routes/workspace/[id]/billing/billing-section.tsx +240 -0
  150. package/src/routes/workspace/[id]/billing/black-section.module.css +142 -0
  151. package/src/routes/workspace/[id]/billing/black-section.tsx +269 -0
  152. package/src/routes/workspace/[id]/billing/black-waitlist-section.module.css +23 -0
  153. package/src/routes/workspace/[id]/billing/index.tsx +32 -0
  154. package/src/routes/workspace/[id]/billing/monthly-limit-section.module.css +96 -0
  155. package/src/routes/workspace/[id]/billing/monthly-limit-section.tsx +133 -0
  156. package/src/routes/workspace/[id]/billing/payment-section.module.css +93 -0
  157. package/src/routes/workspace/[id]/billing/payment-section.tsx +122 -0
  158. package/src/routes/workspace/[id]/billing/reload-section.module.css +261 -0
  159. package/src/routes/workspace/[id]/billing/reload-section.tsx +213 -0
  160. package/src/routes/workspace/[id]/graph-section.module.css +145 -0
  161. package/src/routes/workspace/[id]/graph-section.tsx +475 -0
  162. package/src/routes/workspace/[id]/index.tsx +81 -0
  163. package/src/routes/workspace/[id]/keys/index.tsx +11 -0
  164. package/src/routes/workspace/[id]/keys/key-section.module.css +197 -0
  165. package/src/routes/workspace/[id]/keys/key-section.tsx +176 -0
  166. package/src/routes/workspace/[id]/members/index.tsx +11 -0
  167. package/src/routes/workspace/[id]/members/member-section.module.css +249 -0
  168. package/src/routes/workspace/[id]/members/member-section.tsx +343 -0
  169. package/src/routes/workspace/[id]/members/role-dropdown.css +72 -0
  170. package/src/routes/workspace/[id]/members/role-dropdown.tsx +43 -0
  171. package/src/routes/workspace/[id]/model-section.module.css +173 -0
  172. package/src/routes/workspace/[id]/model-section.tsx +174 -0
  173. package/src/routes/workspace/[id]/new-user-section.module.css +143 -0
  174. package/src/routes/workspace/[id]/new-user-section.tsx +104 -0
  175. package/src/routes/workspace/[id]/provider-section.module.css +138 -0
  176. package/src/routes/workspace/[id]/provider-section.tsx +188 -0
  177. package/src/routes/workspace/[id]/settings/index.tsx +11 -0
  178. package/src/routes/workspace/[id]/settings/settings-section.module.css +94 -0
  179. package/src/routes/workspace/[id]/settings/settings-section.tsx +122 -0
  180. package/src/routes/workspace/[id]/usage-section.module.css +185 -0
  181. package/src/routes/workspace/[id]/usage-section.tsx +200 -0
  182. package/src/routes/workspace/[id].css +308 -0
  183. package/src/routes/workspace/[id].tsx +62 -0
  184. package/src/routes/workspace/common.tsx +120 -0
  185. package/src/routes/workspace-picker.css +74 -0
  186. package/src/routes/workspace-picker.tsx +122 -0
  187. package/src/routes/workspace.css +107 -0
  188. package/src/routes/workspace.tsx +38 -0
  189. package/src/routes/zen/index.css +866 -0
  190. package/src/routes/zen/index.tsx +343 -0
  191. package/src/routes/zen/util/dataDumper.ts +44 -0
  192. package/src/routes/zen/util/error.ts +13 -0
  193. package/src/routes/zen/util/handler.ts +784 -0
  194. package/src/routes/zen/util/logger.ts +12 -0
  195. package/src/routes/zen/util/provider/anthropic.ts +752 -0
  196. package/src/routes/zen/util/provider/google.ts +75 -0
  197. package/src/routes/zen/util/provider/openai-compatible.ts +546 -0
  198. package/src/routes/zen/util/provider/openai.ts +630 -0
  199. package/src/routes/zen/util/provider/provider.ts +210 -0
  200. package/src/routes/zen/util/rateLimiter.ts +41 -0
  201. package/src/routes/zen/util/stickyProviderTracker.ts +16 -0
  202. package/src/routes/zen/util/trialLimiter.ts +49 -0
  203. package/src/routes/zen/v1/chat/completions.ts +11 -0
  204. package/src/routes/zen/v1/messages.ts +11 -0
  205. package/src/routes/zen/v1/models/[model].ts +13 -0
  206. package/src/routes/zen/v1/models.ts +60 -0
  207. package/src/routes/zen/v1/responses.ts +11 -0
  208. package/src/style/base.css +21 -0
  209. package/src/style/component/button.css +102 -0
  210. package/src/style/index.css +8 -0
  211. package/src/style/reset.css +76 -0
  212. package/src/style/token/color.css +91 -0
  213. package/src/style/token/font.css +21 -0
  214. package/src/style/token/space.css +46 -0
  215. package/sst-env.d.ts +9 -0
  216. package/tsconfig.json +21 -0
  217. package/vite.config.ts +25 -0
@@ -0,0 +1,512 @@
1
+ import "../../brand/index.css"
2
+ import "./index.css"
3
+ import { Title, Meta, Link } from "@solidjs/meta"
4
+ import { Header } from "~/component/header"
5
+ import { config } from "~/config"
6
+ import { Footer } from "~/component/footer"
7
+ import { Legal } from "~/component/legal"
8
+
9
+ export default function TermsOfService() {
10
+ return (
11
+ <main data-page="legal">
12
+ <Title>JonsOC | Terms of Service</Title>
13
+ <Link rel="canonical" href={`${config.baseUrl}/legal/terms-of-service`} />
14
+ <Meta name="description" content="JonsOC terms of service" />
15
+ <div data-component="container">
16
+ <Header />
17
+
18
+ <div data-component="content">
19
+ <section data-component="brand-content">
20
+ <article data-component="terms-of-service">
21
+ <h1>Terms of Use</h1>
22
+ <p class="effective-date">Effective date: Dec 16, 2025</p>
23
+
24
+ <p>
25
+ Welcome to JonsOC. Please read on to learn the rules and restrictions that govern your use of JonsOC
26
+ (the "Services"). If you have any questions, comments, or concerns regarding these terms or the
27
+ Services, please contact us at:
28
+ </p>
29
+
30
+ <p>
31
+ Email: <a href="mailto:contact@anoma.ly">contact@anoma.ly</a>
32
+ </p>
33
+
34
+ <p>
35
+ These Terms of Use (the "Terms") are a binding contract between you and{" "}
36
+ <strong>ANOMALY INNOVATIONS, INC.</strong> ("JonsOC," "we" and "us"). Your use of the Services in any
37
+ way means that you agree to all of these Terms, and these Terms will remain in effect while you use the
38
+ Services. These Terms include the provisions in this document as well as those in the Privacy Policy{" "}
39
+ <a href="/legal/privacy-policy">https://jonsoc.com/legal/privacy-policy</a>.{" "}
40
+ <strong>
41
+ Your use of or participation in certain Services may also be subject to additional policies, rules
42
+ and/or conditions ("Additional Terms"), which are incorporated herein by reference, and you understand
43
+ and agree that by using or participating in any such Services, you agree to also comply with these
44
+ Additional Terms.
45
+ </strong>
46
+ </p>
47
+
48
+ <p>
49
+ Please read these Terms carefully. They cover important information about Services provided to you and
50
+ any charges, taxes, and fees we bill you. These Terms include information about{" "}
51
+ <a href="#will-these-terms-ever-change">future changes to these Terms</a>,{" "}
52
+ <a href="#recurring-billing">automatic renewals</a>,{" "}
53
+ <a href="#limitation-of-liability">limitations of liability</a>,{" "}
54
+ <a href="#waiver-of-class">a class action waiver</a> and{" "}
55
+ <a href="#arbitration-agreement">resolution of disputes by arbitration instead of in court</a>.{" "}
56
+ <strong>
57
+ PLEASE NOTE THAT YOUR USE OF AND ACCESS TO OUR SERVICES ARE SUBJECT TO THE FOLLOWING TERMS; IF YOU DO
58
+ NOT AGREE TO ALL OF THE FOLLOWING, YOU MAY NOT USE OR ACCESS THE SERVICES IN ANY MANNER.
59
+ </strong>
60
+ </p>
61
+
62
+ <p>
63
+ <strong>ARBITRATION NOTICE AND CLASS ACTION WAIVER:</strong> EXCEPT FOR CERTAIN TYPES OF DISPUTES
64
+ DESCRIBED IN THE <a href="#arbitration-agreement">ARBITRATION AGREEMENT SECTION BELOW</a>, YOU AGREE
65
+ THAT DISPUTES BETWEEN YOU AND US WILL BE RESOLVED BY BINDING, INDIVIDUAL ARBITRATION AND YOU WAIVE YOUR
66
+ RIGHT TO PARTICIPATE IN A CLASS ACTION LAWSUIT OR CLASS-WIDE ARBITRATION.
67
+ </p>
68
+
69
+ <h2 id="what-is-jonsoc">What is JonsOC?</h2>
70
+ <p>
71
+ JonsOC is an AI-powered coding agent that helps you write, understand, and modify code using large
72
+ language models. Certain of these large language models are provided by third parties ("Third Party
73
+ Models") and certain of these models are provided directly by us if you use the JonsOC Zen paid
74
+ offering ("Zen"). Regardless of whether you use Third Party Models or Zen, JonsOC enables you to
75
+ access the functionality of models through a coding agent running within your terminal.
76
+ </p>
77
+
78
+ <h2 id="will-these-terms-ever-change">Will these Terms ever change?</h2>
79
+ <p>
80
+ We are constantly trying to improve our Services, so these Terms may need to change along with our
81
+ Services. We reserve the right to change the Terms at any time, but if we do, we will place a notice on
82
+ our site located at jonsoc.com, send you an email, and/or notify you by some other means.
83
+ </p>
84
+
85
+ <p>
86
+ If you don't agree with the new Terms, you are free to reject them; unfortunately, that means you will
87
+ no longer be able to use the Services. If you use the Services in any way after a change to the Terms is
88
+ effective, that means you agree to all of the changes.
89
+ </p>
90
+
91
+ <p>
92
+ Except for changes by us as described here, no other amendment or modification of these Terms will be
93
+ effective unless in writing and signed by both you and us.
94
+ </p>
95
+
96
+ <h2 id="what-about-my-privacy">What about my privacy?</h2>
97
+ <p>
98
+ JonsOC takes the privacy of its users very seriously. For the current JonsOC Privacy Policy, please
99
+ click here{" "}
100
+ <a href="https://jonsoc.com/legal/privacy-policy">https://jonsoc.com/legal/privacy-policy</a>.
101
+ </p>
102
+
103
+ <h3>Children's Online Privacy Protection Act</h3>
104
+ <p>
105
+ The Children's Online Privacy Protection Act ("COPPA") requires that online service providers obtain
106
+ parental consent before they knowingly collect personally identifiable information online from children
107
+ who are under 13 years of age. We do not knowingly collect or solicit personally identifiable
108
+ information from children under 13 years of age; if you are a child under 13 years of age, please do not
109
+ attempt to register for or otherwise use the Services or send us any personal information. If we learn
110
+ we have collected personal information from a child under 13 years of age, we will delete that
111
+ information as quickly as possible. If you believe that a child under 13 years of age may have provided
112
+ us personal information, please contact us at <a href="mailto:contact@anoma.ly">contact@anoma.ly</a>.
113
+ </p>
114
+
115
+ <h2 id="what-are-the-basics">What are the basics of using JonsOC?</h2>
116
+ <p>
117
+ You represent and warrant that you are an individual of legal age to form a binding contract (or if not,
118
+ you've received your parent's or guardian's permission to use the Services and have gotten your parent
119
+ or guardian to agree to these Terms on your behalf). If you're agreeing to these Terms on behalf of an
120
+ organization or entity, you represent and warrant that you are authorized to agree to these Terms on
121
+ that organization's or entity's behalf and bind them to these Terms (in which case, the references to
122
+ "you" and "your" in these Terms, except for in this sentence, refer to that organization or entity).
123
+ </p>
124
+
125
+ <p>
126
+ You will only use the Services for your own internal use, and not on behalf of or for the benefit of any
127
+ third party, and only in a manner that complies with all laws that apply to you. If your use of the
128
+ Services is prohibited by applicable laws, then you aren't authorized to use the Services. We can't and
129
+ won't be responsible for your using the Services in a way that breaks the law.
130
+ </p>
131
+
132
+ <h2 id="are-there-restrictions">Are there restrictions in how I can use the Services?</h2>
133
+ <p>
134
+ You represent, warrant, and agree that you will not provide or contribute anything, including any
135
+ Content (as that term is defined below), to the Services, or otherwise use or interact with the
136
+ Services, in a manner that:
137
+ </p>
138
+
139
+ <ol style="list-style-type: lower-alpha;">
140
+ <li>
141
+ infringes or violates the intellectual property rights or any other rights of anyone else (including
142
+ JonsOC);
143
+ </li>
144
+ <li>
145
+ violates any law or regulation, including, without limitation, any applicable export control laws,
146
+ privacy laws or any other purpose not reasonably intended by JonsOC;
147
+ </li>
148
+ <li>
149
+ is dangerous, harmful, fraudulent, deceptive, threatening, harassing, defamatory, obscene, or
150
+ otherwise objectionable;
151
+ </li>
152
+ <li>automatically or programmatically extracts data or Output (defined below);</li>
153
+ <li>Represent that the Output was human-generated when it was not;</li>
154
+ <li>
155
+ uses Output to develop artificial intelligence models that compete with the Services or any Third
156
+ Party Models;
157
+ </li>
158
+ <li>
159
+ attempts, in any manner, to obtain the password, account, or other security information from any other
160
+ user;
161
+ </li>
162
+ <li>
163
+ violates the security of any computer network, or cracks any passwords or security encryption codes;
164
+ </li>
165
+ <li>
166
+ runs Maillist, Listserv, any form of auto-responder or "spam" on the Services, or any processes that
167
+ run or are activated while you are not logged into the Services, or that otherwise interfere with the
168
+ proper working of the Services (including by placing an unreasonable load on the Services'
169
+ infrastructure);
170
+ </li>
171
+ <li>
172
+ "crawls," "scrapes," or "spiders" any page, data, or portion of or relating to the Services or Content
173
+ (through use of manual or automated means);
174
+ </li>
175
+ <li>copies or stores any significant portion of the Content; or</li>
176
+ <li>
177
+ decompiles, reverse engineers, or otherwise attempts to obtain the source code or underlying ideas or
178
+ information of or relating to the Services.
179
+ </li>
180
+ </ol>
181
+
182
+ <p>
183
+ A violation of any of the foregoing is grounds for termination of your right to use or access the
184
+ Services.
185
+ </p>
186
+
187
+ <h2 id="who-owns-the-services-and-content">Who Owns the Services and Content?</h2>
188
+
189
+ <h3>Our IP</h3>
190
+ <p>
191
+ We retain all right, title and interest in and to the Services. Except as expressly set forth herein, no
192
+ rights to the Services or Third Party Models are granted to you.
193
+ </p>
194
+
195
+ <h3>Your IP</h3>
196
+ <p>
197
+ You may provide input to the Services ("Input"), and receive output from the Services based on the Input
198
+ ("Output"). Input and Output are collectively "Content." You are responsible for Content, including
199
+ ensuring that it does not violate any applicable law or these Terms. You represent and warrant that you
200
+ have all rights, licenses, and permissions needed to provide Input to our Services.
201
+ </p>
202
+
203
+ <p>
204
+ As between you and us, and to the extent permitted by applicable law, you (a) retain your ownership
205
+ rights in Input and (b) own the Output. We hereby assign to you all our right, title, and interest, if
206
+ any, in and to Output.
207
+ </p>
208
+
209
+ <p>
210
+ Due to the nature of our Services and artificial intelligence generally, output may not be unique and
211
+ other users may receive similar output from our Services. Our assignment above does not extend to other
212
+ users' output.
213
+ </p>
214
+
215
+ <p>
216
+ We use Content to provide our Services, comply with applicable law, enforce our terms and policies, and
217
+ keep our Services safe. In addition, if you are using the Services through an unpaid account, we may use
218
+ Content to further develop and improve our Services.
219
+ </p>
220
+
221
+ <p>
222
+ If you use JonsOC with Third Party Models, then your Content will be subject to the data retention
223
+ policies of the providers of such Third Party Models. Although we will not retain your Content, we
224
+ cannot and do not control the retention practices of Third Party Model providers. You should review the
225
+ terms and conditions applicable to any Third Party Model for more information about the data use and
226
+ retention policies applicable to such Third Party Models.
227
+ </p>
228
+
229
+ <h2 id="what-about-third-party-models">What about Third Party Models?</h2>
230
+ <p>
231
+ The Services enable you to access and use Third Party Models, which are not owned or controlled by
232
+ JonsOC. Your ability to access Third Party Models is contingent on you having API keys or otherwise
233
+ having the right to access such Third Party Models.
234
+ </p>
235
+
236
+ <p>
237
+ JonsOC has no control over, and assumes no responsibility for, the content, accuracy, privacy
238
+ policies, or practices of any providers of Third Party Models. We encourage you to read the terms and
239
+ conditions and privacy policy of each provider of a Third Party Model that you choose to utilize. By
240
+ using the Services, you release and hold us harmless from any and all liability arising from your use of
241
+ any Third Party Model.
242
+ </p>
243
+
244
+ <h2 id="will-jonsoc-ever-change-the-services">Will JonsOC ever change the Services?</h2>
245
+ <p>
246
+ We're always trying to improve our Services, so they may change over time. We may suspend or discontinue
247
+ any part of the Services, or we may introduce new features or impose limits on certain features or
248
+ restrict access to parts or all of the Services.
249
+ </p>
250
+
251
+ <h2 id="do-the-services-cost-anything">Do the Services cost anything?</h2>
252
+ <p>
253
+ The Services may be free or we may charge a fee for using the Services. If you are using a free version
254
+ of the Services, we will notify you before any Services you are then using begin carrying a fee, and if
255
+ you wish to continue using such Services, you must pay all applicable fees for such Services. Any and
256
+ all such charges, fees or costs are your sole responsibility. You should consult with your
257
+ </p>
258
+
259
+ <h3>Paid Services</h3>
260
+ <p>
261
+ Certain of our Services, including Zen, may be subject to payments now or in the future (the "Paid
262
+ Services"). Please see our Paid Services page <a href="/zen">https://jonsoc.com/zen</a> for a
263
+ description of the current Paid Services. Please note that any payment terms presented to you in the
264
+ process of using or signing up for a Paid Service are deemed part of these Terms.
265
+ </p>
266
+
267
+ <h3>Billing</h3>
268
+ <p>
269
+ We use a third-party payment processor (the "Payment Processor") to bill you through a payment account
270
+ linked to your account on the Services (your "Billing Account") for use of the Paid Services. The
271
+ processing of payments will be subject to the terms, conditions and privacy policies of the Payment
272
+ Processor in addition to these Terms. Currently, we use Stripe, Inc. as our Payment Processor. You can
273
+ access Stripe's Terms of Service at{" "}
274
+ <a href="https://stripe.com/us/checkout/legal">https://stripe.com/us/checkout/legal</a> and their
275
+ Privacy Policy at <a href="https://stripe.com/us/privacy">https://stripe.com/us/privacy</a>. We are not
276
+ responsible for any error by, or other acts or omissions of, the Payment Processor. By choosing to use
277
+ Paid Services, you agree to pay us, through the Payment Processor, all charges at the prices then in
278
+ effect for any use of such Paid Services in accordance with the applicable payment terms, and you
279
+ authorize us, through the Payment Processor, to charge your chosen payment provider (your "Payment
280
+ Method"). You agree to make payment using that selected Payment Method. We reserve the right to correct
281
+ any errors or mistakes that the Payment Processor makes even if it has already requested or received
282
+ payment.
283
+ </p>
284
+
285
+ <h3>Payment Method</h3>
286
+ <p>
287
+ The terms of your payment will be based on your Payment Method and may be determined by agreements
288
+ between you and the financial institution, credit card issuer or other provider of your chosen Payment
289
+ Method. If we, through the Payment Processor, do not receive payment from you, you agree to pay all
290
+ amounts due on your Billing Account upon demand.
291
+ </p>
292
+
293
+ <h3 id="recurring-billing">Recurring Billing</h3>
294
+ <p>
295
+ Some of the Paid Services may consist of an initial period, for which there is a one-time charge,
296
+ followed by recurring period charges as agreed to by you. By choosing a recurring payment plan, you
297
+ acknowledge that such Services have an initial and recurring payment feature and you accept
298
+ responsibility for all recurring charges prior to cancellation. WE MAY SUBMIT PERIODIC CHARGES (E.G.,
299
+ MONTHLY) WITHOUT FURTHER AUTHORIZATION FROM YOU, UNTIL YOU PROVIDE PRIOR NOTICE (RECEIPT OF WHICH IS
300
+ CONFIRMED BY US) THAT YOU HAVE TERMINATED THIS AUTHORIZATION OR WISH TO CHANGE YOUR PAYMENT METHOD. SUCH
301
+ NOTICE WILL NOT AFFECT CHARGES SUBMITTED BEFORE WE REASONABLY COULD ACT. TO TERMINATE YOUR AUTHORIZATION
302
+ OR CHANGE YOUR PAYMENT METHOD, GO TO ACCOUNT SETTINGS{" "}
303
+ <a href="https://jonsoc.com/auth">https://jonsoc.com/auth</a>.
304
+ </p>
305
+
306
+ <h3>Free Trials and Other Promotions</h3>
307
+ <p>
308
+ Any free trial or other promotion that provides access to a Paid Service must be used within the
309
+ specified time of the trial. You must stop using a Paid Service before the end of the trial period in
310
+ order to avoid being charged for that Paid Service. If you cancel prior to the end of the trial period
311
+ and are inadvertently charged for a Paid Service, please contact us at{" "}
312
+ <a href="mailto:contact@anoma.ly">contact@anoma.ly</a>.
313
+ </p>
314
+
315
+ <h2 id="what-if-i-want-to-stop">What if I want to stop using the Services?</h2>
316
+ <p>
317
+ You're free to do that at any time; please refer to our Privacy Policy{" "}
318
+ <a href="/legal/privacy-policy">https://jonsoc.com/legal/privacy-policy</a>, as well as the licenses
319
+ above, to understand how we treat information you provide to us after you have stopped using our
320
+ Services.
321
+ </p>
322
+
323
+ <p>
324
+ JonsOC is also free to terminate (or suspend access to) your use of the Services for any reason in our
325
+ discretion, including your breach of these Terms. JonsOC has the sole right to decide whether you are
326
+ in violation of any of the restrictions set forth in these Terms.
327
+ </p>
328
+
329
+ <p>
330
+ Provisions that, by their nature, should survive termination of these Terms shall survive termination.
331
+ By way of example, all of the following will survive termination: any obligation you have to pay us or
332
+ indemnify us, any limitations on our liability, any terms regarding ownership or intellectual property
333
+ rights, and terms regarding disputes between us, including without limitation the arbitration agreement.
334
+ </p>
335
+
336
+ <h2 id="what-else-do-i-need-to-know">What else do I need to know?</h2>
337
+
338
+ <h3>Warranty Disclaimer</h3>
339
+ <p>
340
+ JonsOC and its licensors, suppliers, partners, parent, subsidiaries or affiliated entities, and each
341
+ of their respective officers, directors, members, employees, consultants, contract employees,
342
+ representatives and agents, and each of their respective successors and assigns (JonsOC and all such
343
+ parties together, the "JonsOC Parties") make no representations or warranties concerning the Services,
344
+ including without limitation regarding any Content contained in or accessed through the Services, and
345
+ the JonsOC Parties will not be responsible or liable for the accuracy, copyright compliance, legality,
346
+ or decency of material contained in or accessed through the Services or any claims, actions, suits
347
+ procedures, costs, expenses, damages or liabilities arising out of use of, or in any way related to your
348
+ participation in, the Services. The JonsOC Parties make no representations or warranties regarding
349
+ suggestions or recommendations of services or products offered or purchased through or in connection
350
+ with the Services. THE SERVICES AND CONTENT ARE PROVIDED BY OPENCODE (AND ITS LICENSORS AND SUPPLIERS)
351
+ ON AN "AS-IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT
352
+ LIMITATION, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT,
353
+ OR THAT USE OF THE SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE. SOME STATES DO NOT ALLOW LIMITATIONS ON
354
+ HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATIONS MAY NOT APPLY TO YOU.
355
+ </p>
356
+
357
+ <h3 id="limitation-of-liability">Limitation of Liability</h3>
358
+ <p>
359
+ TO THE FULLEST EXTENT ALLOWED BY APPLICABLE LAW, UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY
360
+ (INCLUDING, WITHOUT LIMITATION, TORT, CONTRACT, STRICT LIABILITY, OR OTHERWISE) SHALL ANY OF THE
361
+ OPENCODE PARTIES BE LIABLE TO YOU OR TO ANY OTHER PERSON FOR (A) ANY INDIRECT, SPECIAL, INCIDENTAL,
362
+ PUNITIVE OR CONSEQUENTIAL DAMAGES OF ANY KIND, INCLUDING DAMAGES FOR LOST PROFITS, BUSINESS
363
+ INTERRUPTION, LOSS OF DATA, LOSS OF GOODWILL, WORK STOPPAGE, ACCURACY OF RESULTS, OR COMPUTER FAILURE OR
364
+ MALFUNCTION, (B) ANY SUBSTITUTE GOODS, SERVICES OR TECHNOLOGY, (C) ANY AMOUNT, IN THE AGGREGATE, IN
365
+ EXCESS OF THE GREATER OF (I) ONE-HUNDRED ($100) DOLLARS OR (II) THE AMOUNTS PAID AND/OR PAYABLE BY YOU
366
+ TO OPENCODE IN CONNECTION WITH THE SERVICES IN THE TWELVE (12) MONTH PERIOD PRECEDING THIS APPLICABLE
367
+ CLAIM OR (D) ANY MATTER BEYOND OUR REASONABLE CONTROL. SOME STATES DO NOT ALLOW THE EXCLUSION OR
368
+ LIMITATION OF INCIDENTAL OR CONSEQUENTIAL OR CERTAIN OTHER DAMAGES, SO THE ABOVE LIMITATION AND
369
+ EXCLUSIONS MAY NOT APPLY TO YOU.
370
+ </p>
371
+
372
+ <h3>Indemnity</h3>
373
+ <p>
374
+ You agree to indemnify and hold the JonsOC Parties harmless from and against any and all claims,
375
+ liabilities, damages (actual and consequential), losses and expenses (including attorneys' fees) arising
376
+ from or in any way related to any claims relating to (a) your use of the Services, and (b) your
377
+ violation of these Terms. In the event of such a claim, suit, or action ("Claim"), we will attempt to
378
+ provide notice of the Claim to the contact information we have for your account (provided that failure
379
+ to deliver such notice shall not eliminate or reduce your indemnification obligations hereunder).
380
+ </p>
381
+
382
+ <h3>Assignment</h3>
383
+ <p>
384
+ You may not assign, delegate or transfer these Terms or your rights or obligations hereunder, or your
385
+ Services account, in any way (by operation of law or otherwise) without JonsOC's prior written
386
+ consent. We may transfer, assign, or delegate these Terms and our rights and obligations without
387
+ consent.
388
+ </p>
389
+
390
+ <h3>Choice of Law</h3>
391
+ <p>
392
+ These Terms are governed by and will be construed under the Federal Arbitration Act, applicable federal
393
+ law, and the laws of the State of Delaware, without regard to the conflicts of laws provisions thereof.
394
+ </p>
395
+
396
+ <h3 id="arbitration-agreement">Arbitration Agreement</h3>
397
+ <p>
398
+ Please read the following ARBITRATION AGREEMENT carefully because it requires you to arbitrate certain
399
+ disputes and claims with JonsOC and limits the manner in which you can seek relief from JonsOC. Both
400
+ you and JonsOC acknowledge and agree that for the purposes of any dispute arising out of or relating
401
+ to the subject matter of these Terms, JonsOC's officers, directors, employees and independent
402
+ contractors ("Personnel") are third-party beneficiaries of these Terms, and that upon your acceptance of
403
+ these Terms, Personnel will have the right (and will be deemed to have accepted the right) to enforce
404
+ these Terms against you as the third-party beneficiary hereof.
405
+ </p>
406
+
407
+ <h4>Arbitration Rules; Applicability of Arbitration Agreement</h4>
408
+ <p>
409
+ The parties shall use their best efforts to settle any dispute, claim, question, or disagreement arising
410
+ out of or relating to the subject matter of these Terms directly through good-faith negotiations, which
411
+ shall be a precondition to either party initiating arbitration. If such negotiations do not resolve the
412
+ dispute, it shall be finally settled by binding arbitration in New Castle County, Delaware. The
413
+ arbitration will proceed in the English language, in accordance with the JAMS Streamlined Arbitration
414
+ Rules and Procedures (the "Rules") then in effect, by one commercial arbitrator with substantial
415
+ experience in resolving intellectual property and commercial contract disputes. The arbitrator shall be
416
+ selected from the appropriate list of JAMS arbitrators in accordance with such Rules. Judgment upon the
417
+ award rendered by such arbitrator may be entered in any court of competent jurisdiction.
418
+ </p>
419
+
420
+ <h4>Costs of Arbitration</h4>
421
+ <p>
422
+ The Rules will govern payment of all arbitration fees. JonsOC will pay all arbitration fees for claims
423
+ less than seventy-five thousand ($75,000) dollars. JonsOC will not seek its attorneys' fees and costs
424
+ in arbitration unless the arbitrator determines that your claim is frivolous.
425
+ </p>
426
+
427
+ <h4>Small Claims Court; Infringement</h4>
428
+ <p>
429
+ Either you or JonsOC may assert claims, if they qualify, in small claims court in New Castle County,
430
+ Delaware or any United States county where you live or work. Furthermore, notwithstanding the foregoing
431
+ obligation to arbitrate disputes, each party shall have the right to pursue injunctive or other
432
+ equitable relief at any time, from any court of competent jurisdiction, to prevent the actual or
433
+ threatened infringement, misappropriation or violation of a party's copyrights, trademarks, trade
434
+ secrets, patents or other intellectual property rights.
435
+ </p>
436
+
437
+ <h4>Waiver of Jury Trial</h4>
438
+ <p>
439
+ YOU AND OPENCODE WAIVE ANY CONSTITUTIONAL AND STATUTORY RIGHTS TO GO TO COURT AND HAVE A TRIAL IN FRONT
440
+ OF A JUDGE OR JURY. You and JonsOC are instead choosing to have claims and disputes resolved by
441
+ arbitration. Arbitration procedures are typically more limited, more efficient, and less costly than
442
+ rules applicable in court and are subject to very limited review by a court. In any litigation between
443
+ you and JonsOC over whether to vacate or enforce an arbitration award, YOU AND OPENCODE WAIVE ALL
444
+ RIGHTS TO A JURY TRIAL, and elect instead to have the dispute be resolved by a judge.
445
+ </p>
446
+
447
+ <h4 id="waiver-of-class">Waiver of Class or Consolidated Actions</h4>
448
+ <p>
449
+ ALL CLAIMS AND DISPUTES WITHIN THE SCOPE OF THIS ARBITRATION AGREEMENT MUST BE ARBITRATED OR LITIGATED
450
+ ON AN INDIVIDUAL BASIS AND NOT ON A CLASS BASIS. CLAIMS OF MORE THAN ONE CUSTOMER OR USER CANNOT BE
451
+ ARBITRATED OR LITIGATED JOINTLY OR CONSOLIDATED WITH THOSE OF ANY OTHER CUSTOMER OR USER. If however,
452
+ this waiver of class or consolidated actions is deemed invalid or unenforceable, neither you nor
453
+ JonsOC is entitled to arbitration; instead all claims and disputes will be resolved in a court as set
454
+ forth in (g) below.
455
+ </p>
456
+
457
+ <h4>Opt-out</h4>
458
+ <p>
459
+ You have the right to opt out of the provisions of this Section by sending written notice of your
460
+ decision to opt out to the following address: [ADDRESS], [CITY], Canada [ZIP CODE] postmarked within
461
+ thirty (30) days of first accepting these Terms. You must include (i) your name and residence address,
462
+ (ii) the email address and/or telephone number associated with your account, and (iii) a clear statement
463
+ that you want to opt out of these Terms' arbitration agreement.
464
+ </p>
465
+
466
+ <h4>Exclusive Venue</h4>
467
+ <p>
468
+ If you send the opt-out notice in (f), and/or in any circumstances where the foregoing arbitration
469
+ agreement permits either you or JonsOC to litigate any dispute arising out of or relating to the
470
+ subject matter of these Terms in court, then the foregoing arbitration agreement will not apply to
471
+ either party, and both you and JonsOC agree that any judicial proceeding (other than small claims
472
+ actions) will be brought in the state or federal courts located in, respectively, New Castle County,
473
+ Delaware, or the federal district in which that county falls.
474
+ </p>
475
+
476
+ <h4>Severability</h4>
477
+ <p>
478
+ If the prohibition against class actions and other claims brought on behalf of third parties contained
479
+ above is found to be unenforceable, then all of the preceding language in this Arbitration Agreement
480
+ section will be null and void. This arbitration agreement will survive the termination of your
481
+ relationship with JonsOC.
482
+ </p>
483
+
484
+ <h3>Miscellaneous</h3>
485
+ <p>
486
+ You will be responsible for paying, withholding, filing, and reporting all taxes, duties, and other
487
+ governmental assessments associated with your activity in connection with the Services, provided that
488
+ the JonsOC may, in its sole discretion, do any of the foregoing on your behalf or for itself as it
489
+ sees fit. The failure of either you or us to exercise, in any way, any right herein shall not be deemed
490
+ a waiver of any further rights hereunder. If any provision of these Terms are found to be unenforceable
491
+ or invalid, that provision will be limited or eliminated, to the minimum extent necessary, so that these
492
+ Terms shall otherwise remain in full force and effect and enforceable. You and JonsOC agree that these
493
+ Terms are the complete and exclusive statement of the mutual understanding between you and JonsOC, and
494
+ that these Terms supersede and cancel all previous written and oral agreements, communications and other
495
+ understandings relating to the subject matter of these Terms. You hereby acknowledge and agree that you
496
+ are not an employee, agent, partner, or joint venture of JonsOC, and you do not have any authority of
497
+ any kind to bind JonsOC in any respect whatsoever.
498
+ </p>
499
+
500
+ <p>
501
+ Except as expressly set forth in the section above regarding the arbitration agreement, you and JonsOC
502
+ agree there are no third-party beneficiaries intended under these Terms.
503
+ </p>
504
+ </article>
505
+ </section>
506
+ </div>
507
+ <Footer />
508
+ </div>
509
+ <Legal />
510
+ </main>
511
+ )
512
+ }
@@ -0,0 +1,7 @@
1
+ export async function GET() {
2
+ const response = await fetch(
3
+ "https://raw.githubusercontent.com/Noisemaker111/Jonsoc/refs/heads/master/packages/sdk/openapi.json",
4
+ )
5
+ const json = await response.json()
6
+ return json
7
+ }
@@ -0,0 +1,20 @@
1
+ import type { APIEvent } from "@solidjs/start/server"
2
+
3
+ async function handler(evt: APIEvent) {
4
+ const req = evt.request.clone()
5
+ const url = new URL(req.url)
6
+ const targetUrl = `https://docs.jonsoc.com/docs${url.pathname}${url.search}`
7
+ const response = await fetch(targetUrl, {
8
+ method: req.method,
9
+ headers: req.headers,
10
+ body: req.body,
11
+ })
12
+ return response
13
+ }
14
+
15
+ export const GET = handler
16
+ export const POST = handler
17
+ export const PUT = handler
18
+ export const DELETE = handler
19
+ export const OPTIONS = handler
20
+ export const PATCH = handler