@stacksjs/types 0.70.86 → 0.70.87

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 (76) hide show
  1. package/package.json +19 -5
  2. package/src/ai.ts +0 -41
  3. package/src/analytics.ts +0 -58
  4. package/src/api.ts +0 -77
  5. package/src/app.ts +0 -189
  6. package/src/attributes.ts +0 -5
  7. package/src/auth.ts +0 -161
  8. package/src/auto-imports.ts +0 -8
  9. package/src/binary.ts +0 -13
  10. package/src/cache.ts +0 -325
  11. package/src/cdn.ts +0 -17
  12. package/src/chat.ts +0 -193
  13. package/src/cli.ts +0 -445
  14. package/src/cloud.ts +0 -381
  15. package/src/cms.ts +0 -14
  16. package/src/commerce.ts +0 -18
  17. package/src/components.ts +0 -62
  18. package/src/configure.ts +0 -13
  19. package/src/cors.ts +0 -86
  20. package/src/cron-jobs.ts +0 -146
  21. package/src/dashboard.ts +0 -218
  22. package/src/database.ts +0 -117
  23. package/src/dependencies.ts +0 -69
  24. package/src/deploy.ts +0 -17
  25. package/src/dns.ts +0 -470
  26. package/src/docs.ts +0 -27
  27. package/src/email.ts +0 -511
  28. package/src/env.ts +0 -1
  29. package/src/errors.ts +0 -110
  30. package/src/events.ts +0 -37
  31. package/src/exit-code.ts +0 -10
  32. package/src/file-systems.ts +0 -70
  33. package/src/git.ts +0 -133
  34. package/src/hashing.ts +0 -127
  35. package/src/helpers.ts +0 -9
  36. package/src/i18n.ts +0 -121
  37. package/src/index.ts +0 -80
  38. package/src/library.ts +0 -911
  39. package/src/logging.ts +0 -62
  40. package/src/manifest.ts +0 -9
  41. package/src/marketing.ts +0 -14
  42. package/src/model-dashboard-augmentation.ts +0 -51
  43. package/src/model-names.ts +0 -1
  44. package/src/model.ts +0 -353
  45. package/src/monitoring.ts +0 -14
  46. package/src/native.ts +0 -0
  47. package/src/notifications.ts +0 -153
  48. package/src/oauth.ts +0 -488
  49. package/src/pages.ts +0 -10
  50. package/src/payments.ts +0 -440
  51. package/src/phone.ts +0 -78
  52. package/src/ports.ts +0 -20
  53. package/src/promise.ts +0 -1
  54. package/src/push.ts +0 -143
  55. package/src/queue.ts +0 -413
  56. package/src/reactivity.ts +0 -1
  57. package/src/realtime.ts +0 -584
  58. package/src/request.ts +0 -541
  59. package/src/response.ts +0 -16
  60. package/src/router.ts +0 -124
  61. package/src/saas.ts +0 -33
  62. package/src/scheduler.ts +0 -1
  63. package/src/search-engine.ts +0 -251
  64. package/src/security.ts +0 -23
  65. package/src/server.ts +0 -16
  66. package/src/services.ts +0 -211
  67. package/src/settings-config.ts +0 -10
  68. package/src/sms.ts +0 -265
  69. package/src/stack-extensions.ts +0 -184
  70. package/src/stacks.ts +0 -339
  71. package/src/storage.ts +0 -173
  72. package/src/table-names.ts +0 -1
  73. package/src/tables.ts +0 -57
  74. package/src/team.ts +0 -8
  75. package/src/ui.ts +0 -197
  76. package/src/utils.ts +0 -46
package/src/library.ts DELETED
@@ -1,911 +0,0 @@
1
- import type { TagsOptions } from './components'
2
-
3
- /**
4
- * **Library Options**
5
- *
6
- * This configuration defines all of your library options. Because Stacks is fully-typed, you
7
- * may hover any of the options below and the definitions will be provided. In case you
8
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
9
- */
10
- export interface LibraryOptions {
11
- /**
12
- * The base name of your library/libraries.
13
- */
14
- name: string
15
-
16
- /**
17
- * The organization / parent / owner name.
18
- * @example
19
- * ```ts
20
- * const owner = 'your-org' // <-- this is the owner
21
- * const repository = 'your-repo'
22
- * const packageName = owner ? `@${owner}/${repository}' // @your-org/your-repo <-- this is where the owner's name would be used
23
- * ```
24
- */
25
- owner: string | null
26
-
27
- /**
28
- * The package registry to use.
29
- */
30
- packageRegistry: 'npm'
31
-
32
- /**
33
- * The path of your repository.
34
- *
35
- * @example
36
- * "your-org/your-repo"
37
- */
38
- repository: string
39
-
40
- /**
41
- * The list of accepted SPDX licenses.
42
- * When developing OS packages, you may want to utilize an OSI approved license.
43
- *
44
- * @example
45
- * "MIT"
46
- * @see https://opensource.org/licenses
47
- */
48
- license: LicenseType
49
-
50
- /**
51
- * The author's name of the library.
52
- */
53
- author: string
54
-
55
- /**
56
- * A list of all the contributors.
57
- */
58
- contributors: string[]
59
-
60
- releaseable: boolean
61
-
62
- /**
63
- * The default language used within your stack.
64
- */
65
- defaultLanguage: LanguageCode
66
-
67
- /**
68
- * The Web Component library options.
69
- */
70
- webComponents: LibraryBuildOptions
71
-
72
- /**
73
- * The Web Component library options.
74
- */
75
- functions: LibraryBuildOptions
76
- }
77
-
78
- export type LibraryConfig = Partial<LibraryOptions>
79
-
80
- /**
81
- * The list of available options to build your library.
82
- */
83
- export interface LibraryBuildOptions {
84
- /**
85
- * The name of your library as published to npm.
86
- */
87
- name: string
88
-
89
- /**
90
- * The description of your library as published to npm.
91
- */
92
- description: string
93
-
94
- /**
95
- * The keywords of your library as published to npm.
96
- */
97
- keywords: string[]
98
-
99
- /**
100
- * Should your library generate a sourcemap?
101
- * @default false
102
- */
103
- shouldGenerateSourcemap?: boolean
104
-
105
- /**
106
- * This is where you define the functions/composables that need to be included
107
- * in your library. For example, in order for your `counter.ts` file to be
108
- * included, you would need to add it to the `files` array.
109
- * @default ['*']
110
- * @example
111
- * ```ts
112
- * files: ['counter', 'dark']
113
- * // alternatively,
114
- * // files: ['*']
115
- * // files: ['counter.ts', 'dark.ts']
116
- * ```
117
- */
118
- files?: string[] // TODO: we can narrow this type to only include .ts files
119
-
120
- /**
121
- * This is where you define the components that need to be included in
122
- * your library. For example, including your `HelloWorld` to be built
123
- * would require `../components/HelloWorld.stx` to be present.
124
- *
125
- * @example
126
- * {
127
- * tags: [{
128
- * name: 'HelloWorld' // export { default as HelloWorld } from './components/HelloWorld.stx'
129
- * }]
130
- * }
131
- *
132
- * @example
133
- * {
134
- * tags: [{
135
- * name: ['HelloWorld', 'AppHelloWorld'] // export { default as AppHelloWorld } from './components/HelloWorld.stx'
136
- * }]
137
- * }
138
- */
139
- tags?: TagsOptions
140
- }
141
-
142
- /**
143
- * The name of your "Stack" which generally is your library name
144
- * or a concatenation of your organization & library name.
145
- */
146
- export type StackName = string
147
-
148
- /**
149
- * The list of accepted SPDX licenses.
150
- * When developing OS packages, you may want to utilize an OSI approved license.
151
- * @see https://opensource.org/licenses
152
- */
153
- export type LicenseType =
154
- | 'CC-BY-NC-ND-2.0'
155
- | 'SGI-B-2.0'
156
- | 'LPPL-1.3c'
157
- | 'NIST-PD-fallback'
158
- | 'libtiff'
159
- | 'XSkat'
160
- | 'PDDL-1.0'
161
- | 'KiCad-libraries-exception'
162
- | 'CC-BY-NC-SA-1.0'
163
- | 'GFDL-1.1-no-invariants-only'
164
- | 'Xerox'
165
- | 'LPPL-1.1'
166
- | 'VOSTROM'
167
- | 'UCL-1.0'
168
- | 'ADSL'
169
- | 'OSL-2.0'
170
- | 'AAL'
171
- | 'FDK-AAC'
172
- | 'W3C-20150513'
173
- | 'AFL-1.1'
174
- | 'W3C'
175
- | 'Sleepycat'
176
- | 'CECILL-1.1'
177
- | 'mpich2'
178
- | 'SISSL'
179
- | 'NLOD-1.0'
180
- | 'ANTLR-PD'
181
- | 'GPL-3.0-only'
182
- | 'gnuplot'
183
- | 'NLOD-2.0'
184
- | 'BSD-3-Clause-Open-MPI'
185
- | 'LiLiQ-P-1.1'
186
- | 'BSD-3-Clause-Clear'
187
- | 'FSFUL'
188
- | 'CC-BY-NC-SA-2.0-UK'
189
- | 'CERN-OHL-S-2.0'
190
- | 'Spencer-94'
191
- | 'CERN-OHL-1.2'
192
- | 'GFDL-1.1-or-later'
193
- | 'AGPL-1.0-or-later'
194
- | 'Wsuipa'
195
- | 'AML'
196
- | 'BSD-2-Clause'
197
- | 'DSDP'
198
- | 'CC-BY-2.5'
199
- | 'MIT-CMU'
200
- | 'Beerware'
201
- | 'Sendmail'
202
- | 'TU-Berlin-1.0'
203
- | 'CNRI-Jython'
204
- | 'mplus'
205
- | 'CPOL-1.02'
206
- | 'BSD-3-Clause-No-Nuclear-License-2014'
207
- | 'ISC'
208
- | 'CC-BY-SA-4.0'
209
- | 'Eurosym'
210
- | 'LGPL-3.0-only'
211
- | 'OLDAP-1.3'
212
- | 'GFDL-1.1-invariants-or-later'
213
- | 'Glulxe'
214
- | 'SimPL-2.0'
215
- | 'CDLA-Permissive-2.0'
216
- | 'GPL-2.0-with-font-exception'
217
- | 'OGL-UK-2.0'
218
- | 'CC-BY-SA-3.0-DE'
219
- | 'CC-BY-ND-1.0'
220
- | 'GFDL-1.1'
221
- | 'CC-BY-4.0'
222
- | 'OpenSSL'
223
- | 'TU-Berlin-2.0'
224
- | 'DOC'
225
- | 'GFDL-1.2-no-invariants-or-later'
226
- | 'QPL-1.0'
227
- | 'OLDAP-2.8'
228
- | 'OML'
229
- | 'OLDAP-2.7'
230
- | 'NIST-PD'
231
- | 'Bitstream-Vera'
232
- | 'GFDL-1.2-or-later'
233
- | 'OFL-1.1-RFN'
234
- | 'Bahyph'
235
- | 'Barr'
236
- | 'COIL-1.0'
237
- | 'GFDL-1.3'
238
- | 'CECILL-B'
239
- | 'JPNIC'
240
- | 'Zed'
241
- | 'ICU'
242
- | 'CC-BY-NC-SA-2.5'
243
- | 'CC-BY-ND-3.0-DE'
244
- | 'bzip2-1.0.5'
245
- | 'SPL-1.0'
246
- | 'YPL-1.0'
247
- | 'OSET-PL-2.1'
248
- | 'Noweb'
249
- | 'RPSL-1.0'
250
- | 'BSD-3-Clause-LBNL'
251
- | 'CDLA-Sharing-1.0'
252
- | 'CECILL-1.0'
253
- | 'AMPAS'
254
- | 'APAFML'
255
- | 'CC-BY-ND-3.0'
256
- | 'D-FSL-1.0'
257
- | 'CC-BY-NC-3.0'
258
- | 'libpng-2.0'
259
- | 'PolyForm-Noncommercial-1.0.0'
260
- | 'dvipdfm'
261
- | 'GFDL-1.3-or-later'
262
- | 'OGTSL'
263
- | 'NPL-1.1'
264
- | 'GPL-3.0'
265
- | 'CERN-OHL-P-2.0'
266
- | 'BlueOak-1.0.0'
267
- | 'AGPL-3.0-or-later'
268
- | 'blessing'
269
- | 'ImageMagick'
270
- | 'APSL-2.0'
271
- | 'MIT-advertising'
272
- | 'curl'
273
- | 'CC0-1.0'
274
- | 'Zimbra-1.4'
275
- | 'SSPL-1.0'
276
- | 'psutils'
277
- | 'CC-BY-SA-2.0-UK'
278
- | 'PSF-2.0'
279
- | 'Net-SNMP'
280
- | 'NAIST-2003'
281
- | 'GFDL-1.2-invariants-or-later'
282
- | 'SGI-B-1.0'
283
- | 'NBPL-1.0'
284
- | 'GFDL-1.2-invariants-only'
285
- | 'W3C-19980720'
286
- | 'OFL-1.0-no-RFN'
287
- | 'NetCDF'
288
- | 'TMate'
289
- | 'NOSL'
290
- | 'CNRI-Python-GPL-Compatible'
291
- | 'BSD-1-Clause'
292
- | 'CC-BY-NC-SA-3.0-DE'
293
- | 'BSD-3-Clause-Modification'
294
- | 'GLWTPL'
295
- | 'GFDL-1.3-only'
296
- | 'OLDAP-2.2'
297
- | 'CC-BY-ND-4.0'
298
- | 'CC-BY-NC-ND-3.0-DE'
299
- | 'EUPL-1.0'
300
- | 'Linux-OpenIB'
301
- | 'LGPL-2.0-or-later'
302
- | 'OSL-1.1'
303
- | 'Spencer-86'
304
- | 'LGPL-2.0'
305
- | 'CC-PDDC'
306
- | 'CC-BY-NC-ND-3.0'
307
- | 'CDL-1.0'
308
- | 'Elastic-2.0'
309
- | 'CC-BY-2.0'
310
- | 'BSD-3-Clause-No-Military-License'
311
- | 'IJG'
312
- | 'LPPL-1.3a'
313
- | 'SAX-PD'
314
- | 'BitTorrent-1.0'
315
- | 'OLDAP-2.0'
316
- | 'Giftware'
317
- | 'C-UDA-1.0'
318
- | 'LGPL-2.0+'
319
- | 'Rdisc'
320
- | 'GPL-2.0-with-classpath-exception'
321
- | 'CC-BY-3.0-US'
322
- | 'CDDL-1.0'
323
- | 'Xnet'
324
- | 'CPL-1.0'
325
- | 'LGPL-3.0-or-later'
326
- | 'NASA-1.3'
327
- | 'BUSL-1.1'
328
- | 'etalab-2.0'
329
- | 'MIT-open-group'
330
- | 'OLDAP-1.4'
331
- | 'GFDL-1.1-invariants-only'
332
- | 'RPL-1.1'
333
- | 'CC-BY-NC-ND-2.5'
334
- | 'FSFULLR'
335
- | 'Saxpath'
336
- | 'NTP-0'
337
- | 'SISSL-1.2'
338
- | 'GPL-3.0-or-later'
339
- | 'Apache-1.1'
340
- | 'CC-BY-SA-2.1-JP'
341
- | 'AGPL-3.0-only'
342
- | 'GPL-2.0-with-autoconf-exception'
343
- | 'Artistic-2.0'
344
- | 'App-s2p'
345
- | 'Unicode-DFS-2015'
346
- | 'diffmark'
347
- | 'SNIA'
348
- | 'CC-BY-SA-2.5'
349
- | 'Linux-man-pages-copyleft'
350
- | 'HPND-sell-variant'
351
- | 'ZPL-2.1'
352
- | 'BSD-4-Clause-UC'
353
- | 'LAL-1.2'
354
- | 'AGPL-1.0-only'
355
- | 'MIT-enna'
356
- | 'Condor-1.1'
357
- | 'Naumen'
358
- | 'GFDL-1.3-no-invariants-or-later'
359
- | 'RPL-1.5'
360
- | 'PolyForm-Small-Business-1.0.0'
361
- | 'EFL-1.0'
362
- | 'MirOS'
363
- | 'CC-BY-2.5-AU'
364
- | 'Afmparse'
365
- | 'MPL-2.0-no-copyleft-exception'
366
- | 'LiLiQ-Rplus-1.1'
367
- | 'AFL-1.2'
368
- | 'OSL-1.0'
369
- | 'GPL-1.0-only'
370
- | 'APSL-1.0'
371
- | 'OGL-Canada-2.0'
372
- | 'CPAL-1.0'
373
- | 'Latex2e'
374
- | 'Zend-2.0'
375
- | 'Unlicense'
376
- | 'xpp'
377
- | 'CC-BY-NC-1.0'
378
- | 'GPL-3.0-with-autoconf-exception'
379
- | 'CC-BY-NC-SA-3.0'
380
- | 'TCP-wrappers'
381
- | 'SCEA'
382
- | 'SSH-short'
383
- | 'CC-BY-3.0-NL'
384
- | 'SchemeReport'
385
- | 'CC-BY-3.0'
386
- | 'MPL-2.0'
387
- | 'Unicode-TOU'
388
- | 'CC-BY-NC-ND-1.0'
389
- | 'Entessa'
390
- | 'BSD-3-Clause-No-Nuclear-License'
391
- | 'SWL'
392
- | 'GFDL-1.2-no-invariants-only'
393
- | 'Parity-7.0.0'
394
- | 'OLDAP-2.2.1'
395
- | 'SGI-B-1.1'
396
- | 'FTL'
397
- | 'OLDAP-2.4'
398
- | 'CC-BY-NC-4.0'
399
- | 'bzip2-1.0.6'
400
- | 'copyleft-next-0.3.0'
401
- | 'MakeIndex'
402
- | 'NRL'
403
- | 'GFDL-1.3-invariants-or-later'
404
- | 'CC-BY-NC-2.0'
405
- | 'SugarCRM-1.1.3'
406
- | 'AFL-2.1'
407
- | 'GPL-2.0-only'
408
- | 'GFDL-1.3-invariants-only'
409
- | 'TORQUE-1.1'
410
- | 'Ruby'
411
- | 'X11'
412
- | 'Borceux'
413
- | 'Libpng'
414
- | 'X11-distribute-modifications-variant'
415
- | 'Frameworx-1.0'
416
- | 'NCGL-UK-2.0'
417
- | 'CECILL-2.1'
418
- | 'CC-BY-3.0-AT'
419
- | 'CNRI-Python'
420
- | 'NCSA'
421
- | 'gSOAP-1.3b'
422
- | 'EUPL-1.1'
423
- | 'AMDPLPA'
424
- | 'Imlib2'
425
- | 'CDDL-1.1'
426
- | 'WTFPL'
427
- | 'LPL-1.0'
428
- | 'EPL-1.0'
429
- | 'BSD-3-Clause-Attribution'
430
- | 'OSL-3.0'
431
- | 'RHeCos-1.1'
432
- | 'PHP-3.0'
433
- | 'BSD-Protection'
434
- | 'CC-BY-NC-3.0-DE'
435
- | 'APL-1.0'
436
- | 'EUDatagrid'
437
- | 'GPL-1.0'
438
- | 'SHL-0.5'
439
- | 'CC-BY-SA-2.0'
440
- | 'CC-BY-SA-3.0-AT'
441
- | 'CC-BY-NC-SA-3.0-IGO'
442
- | 'Adobe-2006'
443
- | 'Newsletr'
444
- | 'Nunit'
445
- | 'Multics'
446
- | 'OGL-UK-1.0'
447
- | 'Vim'
448
- | 'eCos-2.0'
449
- | 'Zimbra-1.3'
450
- | 'eGenix'
451
- | 'IBM-pibs'
452
- | 'BitTorrent-1.1'
453
- | 'OFL-1.1-no-RFN'
454
- | 'psfrag'
455
- | 'CC-BY-ND-2.0'
456
- | 'SHL-0.51'
457
- | 'FreeBSD-DOC'
458
- | 'Python-2.0'
459
- | 'Mup'
460
- | 'BSD-4-Clause-Shortened'
461
- | 'CC-BY-NC-SA-4.0'
462
- | 'HPND'
463
- | 'OLDAP-2.6'
464
- | 'MPL-1.1'
465
- | 'GPL-2.0-with-GCC-exception'
466
- | 'HaskellReport'
467
- | 'ECL-1.0'
468
- | 'LGPL-2.1-or-later'
469
- | 'OFL-1.0'
470
- | 'APSL-1.1'
471
- | 'MITNFA'
472
- | 'CECILL-2.0'
473
- | 'Crossword'
474
- | 'Aladdin'
475
- | 'Baekmuk'
476
- | 'XFree86-1.1'
477
- | 'GPL-1.0-or-later'
478
- | 'CERN-OHL-W-2.0'
479
- | 'CC-BY-SA-1.0'
480
- | 'NTP'
481
- | 'PHP-3.01'
482
- | 'OCLC-2.0'
483
- | 'CC-BY-3.0-DE'
484
- | 'CC-BY-NC-2.5'
485
- | 'Zlib'
486
- | 'CATOSL-1.1'
487
- | 'LGPL-3.0+'
488
- | 'CAL-1.0'
489
- | 'NPL-1.0'
490
- | 'SMLNJ'
491
- | 'GPL-2.0+'
492
- | 'OLDAP-2.5'
493
- | 'JasPer-2.0'
494
- | 'GPL-2.0-or-later'
495
- | 'BSD-2-Clause-Patent'
496
- | 'MS-RL'
497
- | 'CUA-OPL-1.0'
498
- | 'IPA'
499
- | 'NLPL'
500
- | 'O-UDA-1.0'
501
- | 'MIT-Modern-Variant'
502
- | 'OLDAP-1.2'
503
- | 'BSD-2-Clause-FreeBSD'
504
- | 'Info-ZIP'
505
- | 'CC-BY-NC-SA-2.0-FR'
506
- | '0BSD'
507
- | 'Unicode-DFS-2016'
508
- | 'OFL-1.0-RFN'
509
- | 'Intel'
510
- | 'AFL-2.0'
511
- | 'GL2PS'
512
- | 'TAPR-OHL-1.0'
513
- | 'Apache-1.0'
514
- | 'MTLL'
515
- | 'Motosoto'
516
- | 'RSA-MD'
517
- | 'Community-Spec-1.0'
518
- | 'ODC-By-1.0'
519
- | 'zlib-acknowledgement'
520
- | 'DL-DE-BY-2.0'
521
- | 'VSL-1.0'
522
- | 'LiLiQ-R-1.1'
523
- | 'OPL-1.0'
524
- | 'GPL-3.0+'
525
- | 'MulanPSL-2.0'
526
- | 'APSL-1.2'
527
- | 'OGDL-Taiwan-1.0'
528
- | 'RSCPL'
529
- | 'OGC-1.0'
530
- | 'EFL-2.0'
531
- | 'CAL-1.0-Combined-Work-Exception'
532
- | 'MS-PL'
533
- | 'Plexus'
534
- | 'Sendmail-8.23'
535
- | 'Cube'
536
- | 'JSON'
537
- | 'EUPL-1.2'
538
- | 'Adobe-Glyph'
539
- | 'FreeImage'
540
- | 'Watcom-1.0'
541
- | 'Jam'
542
- | 'Hippocratic-2.1'
543
- | 'OLDAP-2.0.1'
544
- | 'CC-BY-NC-SA-2.0'
545
- | 'Nokia'
546
- | 'OCCT-PL'
547
- | 'ErlPL-1.1'
548
- | 'TOSL'
549
- | 'OSL-2.1'
550
- | 'ClArtistic'
551
- | 'xinetd'
552
- | 'GPL-3.0-with-GCC-exception'
553
- | 'ODbL-1.0'
554
- | 'MIT'
555
- | 'LGPL-2.1+'
556
- | 'LGPL-2.1-only'
557
- | 'CrystalStacker'
558
- | 'ECL-2.0'
559
- | 'LPPL-1.0'
560
- | 'iMatix'
561
- | 'CC-BY-NC-ND-3.0-IGO'
562
- | 'BSD-Source-Code'
563
- | 'Parity-6.0.0'
564
- | 'TCL'
565
- | 'Arphic-1999'
566
- | 'CC-BY-SA-3.0'
567
- | 'Caldera'
568
- | 'AGPL-1.0'
569
- | 'IPL-1.0'
570
- | 'LAL-1.3'
571
- | 'EPICS'
572
- | 'NGPL'
573
- | 'DRL-1.0'
574
- | 'BSD-2-Clause-NetBSD'
575
- | 'ZPL-1.1'
576
- | 'GD'
577
- | 'LPPL-1.2'
578
- | 'Dotseqn'
579
- | 'Spencer-99'
580
- | 'OLDAP-2.3'
581
- | 'YPL-1.1'
582
- | 'Fair'
583
- | 'Qhull'
584
- | 'GFDL-1.1-no-invariants-or-later'
585
- | 'CECILL-C'
586
- | 'MulanPSL-1.0'
587
- | 'OLDAP-1.1'
588
- | 'OLDAP-2.1'
589
- | 'LPL-1.02'
590
- | 'UPL-1.0'
591
- | 'Abstyles'
592
- | 'ZPL-2.0'
593
- | 'MIT-0'
594
- | 'LGPL-2.0-only'
595
- | 'GFDL-1.3-no-invariants-only'
596
- | 'AGPL-3.0'
597
- | 'EPL-2.0'
598
- | 'AFL-3.0'
599
- | 'CDLA-Permissive-1.0'
600
- | 'Artistic-1.0'
601
- | 'CC-BY-NC-ND-4.0'
602
- | 'HTMLTIDY'
603
- | 'Glide'
604
- | 'FSFAP'
605
- | 'LGPLLR'
606
- | 'OGL-UK-3.0'
607
- | 'GFDL-1.2'
608
- | 'SSH-OpenSSH'
609
- | 'GFDL-1.1-only'
610
- | 'MIT-feh'
611
- | 'MPL-1.0'
612
- | 'PostgreSQL'
613
- | 'OLDAP-2.2.2'
614
- | 'SMPPL'
615
- | 'OFL-1.1'
616
- | 'Leptonica'
617
- | 'CERN-OHL-1.1'
618
- | 'BSD-3-Clause-No-Nuclear-Warranty'
619
- | 'CC-BY-ND-2.5'
620
- | 'CC-BY-1.0'
621
- | 'GFDL-1.2-only'
622
- | 'OPUBL-1.0'
623
- | 'libselinux-1.0'
624
- | 'BSD-3-Clause'
625
- | 'ANTLR-PD-fallback'
626
- | 'copyleft-next-0.3.1'
627
- | 'GPL-1.0+'
628
- | 'wxWindows'
629
- | 'LGPL-3.0'
630
- | 'LGPL-2.1'
631
- | 'StandardML-NJ'
632
- | 'BSD-4-Clause'
633
- | 'GPL-2.0-with-bison-exception'
634
- | 'Apache-2.0'
635
- | 'Artistic-1.0-cl8'
636
- | 'GPL-2.0'
637
- | 'Intel-ACPI'
638
- | 'BSL-1.0'
639
- | 'Artistic-1.0-Perl'
640
- | 'BSD-2-Clause-Views'
641
- | 'Interbase-1.0'
642
- | 'NPOSL-3.0'
643
-
644
- /**
645
- * The list of accepted language codes.
646
- * @see https://meta.wikimedia.org/wiki/Template:List_of_language_names_ordered_by_code
647
- */
648
- export type LanguageCode =
649
- | 'aa'
650
- | 'ab'
651
- | 'af'
652
- | 'ak'
653
- | 'als'
654
- | 'am'
655
- | 'an'
656
- | 'ang'
657
- | 'ang'
658
- | 'ar'
659
- | 'arc'
660
- | 'as'
661
- | 'ast'
662
- | 'av'
663
- | 'awa'
664
- | 'ay'
665
- | 'az'
666
- | 'ba'
667
- | 'bar'
668
- | 'bat-smg'
669
- | 'bcl'
670
- | 'be'
671
- | 'be-x-old'
672
- | 'bg'
673
- | 'bh'
674
- | 'bi'
675
- | 'bm'
676
- | 'bn'
677
- | 'bo'
678
- | 'bpy'
679
- | 'br'
680
- | 'brx'
681
- | 'bs'
682
- | 'bug'
683
- | 'bxr'
684
- | 'ca'
685
- | 'cdo'
686
- | 'ce'
687
- | 'ceb'
688
- | 'ch'
689
- | 'cho'
690
- | 'chr'
691
- | 'chy'
692
- | 'ckb'
693
- | 'co'
694
- | 'cr'
695
- | 'cs'
696
- | 'csb'
697
- | 'cu'
698
- | 'cv'
699
- | 'cy'
700
- | 'da'
701
- | 'de'
702
- | 'diq'
703
- | 'dsb'
704
- | 'dv'
705
- | 'dz'
706
- | 'ee'
707
- | 'el'
708
- | 'en'
709
- | 'eo'
710
- | 'es'
711
- | 'et'
712
- | 'eu'
713
- | 'ext'
714
- | 'fa'
715
- | 'ff'
716
- | 'fi'
717
- | 'fiu-vro'
718
- | 'fj'
719
- | 'fo'
720
- | 'fr'
721
- | 'frp'
722
- | 'fur'
723
- | 'fy'
724
- | 'ga'
725
- | 'gan'
726
- | 'gbm'
727
- | 'gd'
728
- | 'gil'
729
- | 'gl'
730
- | 'gn'
731
- | 'got'
732
- | 'gu'
733
- | 'gv'
734
- | 'ha'
735
- | 'hak'
736
- | 'haw'
737
- | 'he'
738
- | 'hi'
739
- | 'ho'
740
- | 'hr'
741
- | 'ht'
742
- | 'hu'
743
- | 'hy'
744
- | 'hz'
745
- | 'ia'
746
- | 'id'
747
- | 'ie'
748
- | 'ig'
749
- | 'ii'
750
- | 'ik'
751
- | 'ilo'
752
- | 'inh'
753
- | 'io'
754
- | 'is'
755
- | 'it'
756
- | 'iu'
757
- | 'ja'
758
- | 'jbo'
759
- | 'jv'
760
- | 'ka'
761
- | 'kg'
762
- | 'ki'
763
- | 'kj'
764
- | 'kk'
765
- | 'kl'
766
- | 'km'
767
- | 'kn'
768
- | 'khw'
769
- | 'ko'
770
- | 'kr'
771
- | 'ks'
772
- | 'ksh'
773
- | 'ku'
774
- | 'kv'
775
- | 'kw'
776
- | 'ky'
777
- | 'la'
778
- | 'lad'
779
- | 'lan'
780
- | 'lb'
781
- | 'lg'
782
- | 'li'
783
- | 'lij'
784
- | 'lmo'
785
- | 'ln'
786
- | 'lo'
787
- | 'lzz'
788
- | 'lt'
789
- | 'lv'
790
- | 'map-bms'
791
- | 'mg'
792
- | 'man'
793
- | 'mh'
794
- | 'mi'
795
- | 'min'
796
- | 'mk'
797
- | 'ml'
798
- | 'mn'
799
- | 'mo'
800
- | 'mr'
801
- | 'mrh'
802
- | 'ms'
803
- | 'mt'
804
- | 'mus'
805
- | 'mwl'
806
- | 'my'
807
- | 'na'
808
- | 'nah'
809
- | 'nap'
810
- | 'nd'
811
- | 'nds'
812
- | 'nds-nl'
813
- | 'ne'
814
- | 'new'
815
- | 'ng'
816
- | 'nl'
817
- | 'nn'
818
- | 'no'
819
- | 'nr'
820
- | 'nso'
821
- | 'nrm'
822
- | 'nv'
823
- | 'ny'
824
- | 'oc'
825
- | 'oj'
826
- | 'om'
827
- | 'or'
828
- | 'os'
829
- | 'pa'
830
- | 'pag'
831
- | 'pam'
832
- | 'pap'
833
- | 'pdc'
834
- | 'pi'
835
- | 'pih'
836
- | 'pl'
837
- | 'pms'
838
- | 'ps'
839
- | 'pt'
840
- | 'qu'
841
- | 'rm'
842
- | 'rmy'
843
- | 'rn'
844
- | 'ro'
845
- | 'roa-rup'
846
- | 'ru'
847
- | 'rw'
848
- | 'sa'
849
- | 'sc'
850
- | 'scn'
851
- | 'sco'
852
- | 'sd'
853
- | 'se'
854
- | 'sg'
855
- | 'sh'
856
- | 'si'
857
- | 'sk'
858
- | 'sl'
859
- | 'sm'
860
- | 'sn'
861
- | 'so'
862
- | 'sq'
863
- | 'sr'
864
- | 'ss'
865
- | 'st'
866
- | 'su'
867
- | 'sv'
868
- | 'sw'
869
- | 'ta'
870
- | 'te'
871
- | 'tet'
872
- | 'tg'
873
- | 'th'
874
- | 'ti'
875
- | 'tk'
876
- | 'tl'
877
- | 'tlh'
878
- | 'tn'
879
- | 'to'
880
- | 'tpi'
881
- | 'tr'
882
- | 'ts'
883
- | 'tt'
884
- | 'tum'
885
- | 'tw'
886
- | 'ty'
887
- | 'udm'
888
- | 'ug'
889
- | 'uk'
890
- | 'ur'
891
- | 'uz'
892
- | 'uz_AF'
893
- | 've'
894
- | 'vi'
895
- | 'vec'
896
- | 'vls'
897
- | 'vo'
898
- | 'wa'
899
- | 'war'
900
- | 'wo'
901
- | 'xal'
902
- | 'xh'
903
- | 'xmf'
904
- | 'yi'
905
- | 'yo'
906
- | 'za'
907
- | 'zh'
908
- | 'zh-classical'
909
- | 'zh-min-nan'
910
- | 'zh-yue'
911
- | 'zu'