@wayward/types 2.12.2-beta.dev.20221118.1 → 2.12.2-beta.dev.20221121.1
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.
|
@@ -83,32 +83,92 @@ export default function generateSchema(): {
|
|
|
83
83
|
articleRules: {
|
|
84
84
|
description: string;
|
|
85
85
|
type: string;
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
properties?: undefined;
|
|
93
|
-
required?: undefined;
|
|
94
|
-
} | {
|
|
86
|
+
properties: {
|
|
87
|
+
indefinite: {
|
|
88
|
+
description: string;
|
|
89
|
+
type: string;
|
|
90
|
+
minItems: number;
|
|
91
|
+
items: {
|
|
95
92
|
type: string;
|
|
96
|
-
|
|
97
|
-
|
|
93
|
+
items: ({
|
|
94
|
+
anyOf: ({
|
|
98
95
|
type: string;
|
|
99
|
-
|
|
100
|
-
|
|
96
|
+
properties?: undefined;
|
|
97
|
+
required?: undefined;
|
|
98
|
+
} | {
|
|
101
99
|
type: string;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
100
|
+
properties: {
|
|
101
|
+
min: {
|
|
102
|
+
type: string;
|
|
103
|
+
};
|
|
104
|
+
max: {
|
|
105
|
+
type: string;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
required: string[];
|
|
109
|
+
})[];
|
|
110
|
+
type?: undefined;
|
|
111
|
+
} | {
|
|
112
|
+
type: string;
|
|
113
|
+
anyOf?: undefined;
|
|
114
|
+
})[];
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
definite: {
|
|
118
|
+
description: string;
|
|
108
119
|
type: string;
|
|
109
|
-
|
|
110
|
-
|
|
120
|
+
minItems: number;
|
|
121
|
+
items: {
|
|
122
|
+
type: string;
|
|
123
|
+
items: ({
|
|
124
|
+
anyOf: ({
|
|
125
|
+
type: string;
|
|
126
|
+
properties?: undefined;
|
|
127
|
+
required?: undefined;
|
|
128
|
+
} | {
|
|
129
|
+
type: string;
|
|
130
|
+
properties: {
|
|
131
|
+
min: {
|
|
132
|
+
type: string;
|
|
133
|
+
};
|
|
134
|
+
max: {
|
|
135
|
+
type: string;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
required: string[];
|
|
139
|
+
})[];
|
|
140
|
+
type?: undefined;
|
|
141
|
+
} | {
|
|
142
|
+
type: string;
|
|
143
|
+
anyOf?: undefined;
|
|
144
|
+
})[];
|
|
145
|
+
};
|
|
146
|
+
};
|
|
111
147
|
};
|
|
148
|
+
additionalProperties: boolean;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
additionalProperties: boolean;
|
|
152
|
+
};
|
|
153
|
+
contextRules: {
|
|
154
|
+
description: string;
|
|
155
|
+
type: string;
|
|
156
|
+
properties: {
|
|
157
|
+
isWord: {
|
|
158
|
+
description: string;
|
|
159
|
+
type: string;
|
|
160
|
+
};
|
|
161
|
+
isWordSeparator: {
|
|
162
|
+
description: string;
|
|
163
|
+
type: string;
|
|
164
|
+
};
|
|
165
|
+
isSentenceSeparator: {
|
|
166
|
+
description: string;
|
|
167
|
+
type: string;
|
|
168
|
+
};
|
|
169
|
+
shouldCapitalizeWord: {
|
|
170
|
+
description: string;
|
|
171
|
+
type: string;
|
|
112
172
|
};
|
|
113
173
|
};
|
|
114
174
|
additionalProperties: boolean;
|
package/package.json
CHANGED