@cloudcannon/configuration-types 0.0.41 → 0.0.43

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.
package/src/syntax.ts CHANGED
@@ -2,177 +2,74 @@ import * as z from 'zod';
2
2
 
3
3
  export const SyntaxSchema = z
4
4
  .enum([
5
- 'abap',
6
- 'abc',
7
- 'actionscript',
8
- 'ada',
9
- 'alda',
10
- 'apache_conf',
11
- 'apex',
12
- 'applescript',
13
- 'aql',
14
- 'asciidoc',
15
- 'asl',
16
- 'assembly_x86',
17
- 'autohotkey',
18
- 'batchfile',
19
- 'c9search',
20
5
  'c_cpp',
21
- 'cirru',
22
6
  'clojure',
23
7
  'cobol',
24
8
  'coffee',
25
- 'coldfusion',
26
- 'crystal',
27
9
  'csharp',
28
- 'csound_document',
29
- 'csound_orchestra',
30
- 'csound_score',
31
- 'csp',
32
10
  'css',
33
- 'curly',
34
11
  'd',
35
12
  'dart',
36
13
  'diff',
37
- 'django',
38
14
  'dockerfile',
39
- 'dot',
40
- 'drools',
41
- 'edifact',
42
15
  'eiffel',
43
- 'ejs',
44
- 'elixir',
45
16
  'elm',
46
17
  'erlang',
47
18
  'forth',
48
19
  'fortran',
49
20
  'fsharp',
50
- 'fsl',
51
- 'ftl',
52
- 'gcode',
53
21
  'gherkin',
54
- 'gitignore',
55
- 'glsl',
56
- 'gobstones',
57
22
  'golang',
58
- 'graphqlschema',
59
23
  'groovy',
60
- 'haml',
61
- 'handlebars',
62
24
  'haskell',
63
25
  'haskell_cabal',
64
26
  'haxe',
65
- 'hjson',
66
27
  'html',
67
- 'html_elixir',
68
- 'html_ruby',
69
- 'ini',
70
- 'io',
71
- 'jack',
72
- 'jade',
73
28
  'java',
74
29
  'javascript',
75
- 'json5',
76
30
  'json',
77
- 'jsoniq',
78
- 'jsp',
79
- 'jssm',
80
- 'jsx',
81
31
  'julia',
82
32
  'kotlin',
83
- 'latex',
84
33
  'less',
85
34
  'liquid',
86
- 'lisp',
87
35
  'livescript',
88
- 'logiql',
89
- 'logtalk',
90
- 'lsl',
91
36
  'lua',
92
- 'luapage',
93
- 'lucene',
94
- 'makefile',
95
37
  'markdown',
96
- 'mask',
97
- 'matlab',
98
- 'maze',
99
- 'mediawiki',
100
- 'mel',
101
- 'mixal',
102
- 'mushcode',
103
38
  'mysql',
104
39
  'nginx',
105
- 'nim',
106
- 'nix',
107
40
  'nsis',
108
- 'nunjucks',
109
41
  'objectivec',
110
42
  'ocaml',
111
43
  'pascal',
112
- 'perl6',
113
- 'perl',
114
44
  'pgsql',
115
- 'php',
116
- 'php_laravel_blade',
117
45
  'pig',
118
- 'plain_text',
119
46
  'powershell',
120
- 'praat',
121
- 'prisma',
122
- 'prolog',
123
47
  'properties',
124
48
  'protobuf',
125
49
  'puppet',
126
50
  'python',
127
- 'qml',
128
51
  'r',
129
- 'razor',
130
- 'rdoc',
131
- 'red',
132
- 'redshift',
133
- 'rhtml',
134
- 'rst',
135
52
  'ruby',
136
53
  'rust',
137
54
  'sass',
138
- 'scad',
139
55
  'scala',
140
56
  'scheme',
141
57
  'scss',
142
58
  'sh',
143
- 'sjs',
144
- 'slim',
145
- 'smarty',
146
- 'snippets',
147
- 'soy_template',
148
- 'space',
149
- 'sparql',
150
59
  'sql',
151
- 'sqlserver',
152
60
  'stylus',
153
- 'svg',
154
61
  'swift',
155
62
  'tcl',
156
- 'terraform',
157
- 'tex',
158
- 'text',
159
- 'textile',
160
63
  'toml',
161
- 'tsx',
162
64
  'turtle',
163
- 'twig',
164
65
  'typescript',
165
- 'vala',
166
66
  'vbscript',
167
67
  'velocity',
168
68
  'verilog',
169
69
  'vhdl',
170
- 'visualforce',
171
- 'wollok',
172
70
  'xml',
173
71
  'xquery',
174
72
  'yaml',
175
- 'zeek',
176
73
  ])
177
74
  .meta({
178
75
  id: 'Syntax',
package/src/timezone.ts CHANGED
@@ -598,10 +598,6 @@ export const TimezoneSchema = z
598
598
  'WET',
599
599
  'Zulu',
600
600
  ])
601
- .meta({
602
- id: 'Timezone',
603
- title: 'Timezone',
604
- description: 'IANA timezone identifiers for date and time formatting in CloudCannon.',
605
- });
601
+ .meta({ id: 'type.timezone', title: 'Timezone' });
606
602
 
607
603
  export type Timezone = z.infer<typeof TimezoneSchema>;