@kintone/dts-gen 8.0.4 → 8.0.5
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/kintone.d.ts +16 -19
- package/package.json +2 -2
package/kintone.d.ts
CHANGED
|
@@ -229,28 +229,28 @@ declare namespace kintone {
|
|
|
229
229
|
type?: "SINGLE_LINE_TEXT";
|
|
230
230
|
value: string;
|
|
231
231
|
disabled?: boolean;
|
|
232
|
-
error?: string;
|
|
232
|
+
error?: string | null;
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
interface RichText {
|
|
236
236
|
type?: "RICH_TEXT";
|
|
237
237
|
value: string;
|
|
238
238
|
disabled?: boolean;
|
|
239
|
-
error?: string;
|
|
239
|
+
error?: string | null;
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
interface MultiLineText {
|
|
243
243
|
type?: "MULTI_LINE_TEXT";
|
|
244
244
|
value: string;
|
|
245
245
|
disabled?: boolean;
|
|
246
|
-
error?: string;
|
|
246
|
+
error?: string | null;
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
interface Number {
|
|
250
250
|
type?: "NUMBER";
|
|
251
251
|
value: string;
|
|
252
252
|
disabled?: boolean;
|
|
253
|
-
error?: string;
|
|
253
|
+
error?: string | null;
|
|
254
254
|
}
|
|
255
255
|
|
|
256
256
|
interface Calc {
|
|
@@ -263,77 +263,77 @@ declare namespace kintone {
|
|
|
263
263
|
type?: "RADIO_BUTTON";
|
|
264
264
|
value: string;
|
|
265
265
|
disabled?: boolean;
|
|
266
|
-
error?: string;
|
|
266
|
+
error?: string | null;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
interface DropDown {
|
|
270
270
|
type?: "DROP_DOWN";
|
|
271
271
|
value: string;
|
|
272
272
|
disabled?: boolean;
|
|
273
|
-
error?: string;
|
|
273
|
+
error?: string | null;
|
|
274
274
|
}
|
|
275
275
|
|
|
276
276
|
interface Date {
|
|
277
277
|
type?: "DATE";
|
|
278
278
|
value: string;
|
|
279
279
|
disabled?: boolean;
|
|
280
|
-
error?: string;
|
|
280
|
+
error?: string | null;
|
|
281
281
|
}
|
|
282
282
|
|
|
283
283
|
interface Time {
|
|
284
284
|
type?: "TIME";
|
|
285
285
|
value: string;
|
|
286
286
|
disabled?: boolean;
|
|
287
|
-
error?: string;
|
|
287
|
+
error?: string | null;
|
|
288
288
|
}
|
|
289
289
|
|
|
290
290
|
interface DateTime {
|
|
291
291
|
type?: "DATETIME";
|
|
292
292
|
value: string;
|
|
293
293
|
disabled?: boolean;
|
|
294
|
-
error?: string;
|
|
294
|
+
error?: string | null;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
297
|
interface Link {
|
|
298
298
|
type?: "LINK";
|
|
299
299
|
value: string;
|
|
300
300
|
disabled?: boolean;
|
|
301
|
-
error?: string;
|
|
301
|
+
error?: string | null;
|
|
302
302
|
}
|
|
303
303
|
|
|
304
304
|
interface CheckBox {
|
|
305
305
|
type?: "CHECK_BOX";
|
|
306
306
|
value: string[];
|
|
307
307
|
disabled?: boolean;
|
|
308
|
-
error?: string;
|
|
308
|
+
error?: string | null;
|
|
309
309
|
}
|
|
310
310
|
|
|
311
311
|
interface MultiSelect {
|
|
312
312
|
type?: "MULTI_SELECT";
|
|
313
313
|
value: string[];
|
|
314
314
|
disabled?: boolean;
|
|
315
|
-
error?: string;
|
|
315
|
+
error?: string | null;
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
interface UserSelect {
|
|
319
319
|
type?: "USER_SELECT";
|
|
320
320
|
value: Array<{ code: string; name: string }>;
|
|
321
321
|
disabled?: boolean;
|
|
322
|
-
error?: string;
|
|
322
|
+
error?: string | null;
|
|
323
323
|
}
|
|
324
324
|
|
|
325
325
|
interface OrganizationSelect {
|
|
326
326
|
type?: "ORGANIZATION_SELECT";
|
|
327
327
|
value: Array<{ code: string; name: string }>;
|
|
328
328
|
disabled?: boolean;
|
|
329
|
-
error?: string;
|
|
329
|
+
error?: string | null;
|
|
330
330
|
}
|
|
331
331
|
|
|
332
332
|
interface GroupSelect {
|
|
333
333
|
type?: "GROUP_SELECT";
|
|
334
334
|
value: Array<{ code: string; name: string }>;
|
|
335
335
|
disabled?: boolean;
|
|
336
|
-
error?: string;
|
|
336
|
+
error?: string | null;
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
interface File {
|
|
@@ -345,7 +345,7 @@ declare namespace kintone {
|
|
|
345
345
|
size: string;
|
|
346
346
|
}>;
|
|
347
347
|
disabled?: boolean;
|
|
348
|
-
error?: string;
|
|
348
|
+
error?: string | null;
|
|
349
349
|
}
|
|
350
350
|
|
|
351
351
|
interface Id {
|
|
@@ -379,19 +379,16 @@ declare namespace kintone {
|
|
|
379
379
|
interface RecordNumber {
|
|
380
380
|
type: "RECORD_NUMBER";
|
|
381
381
|
value: string;
|
|
382
|
-
error?: string;
|
|
383
382
|
}
|
|
384
383
|
|
|
385
384
|
interface UpdatedTime {
|
|
386
385
|
type: "UPDATED_TIME";
|
|
387
386
|
value: string;
|
|
388
|
-
error?: string;
|
|
389
387
|
}
|
|
390
388
|
|
|
391
389
|
interface CreatedTime {
|
|
392
390
|
type: "CREATED_TIME";
|
|
393
391
|
value: string;
|
|
394
|
-
error?: string;
|
|
395
392
|
}
|
|
396
393
|
}
|
|
397
394
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kintone/dts-gen",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.5",
|
|
4
4
|
"description": "Types for kintone js api and Types generating tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"engines": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"eslint": "^8.56.0",
|
|
19
19
|
"form-data": "^4.0.0",
|
|
20
20
|
"lodash": "^4.17.21",
|
|
21
|
-
"prettier": "^3.2.
|
|
21
|
+
"prettier": "^3.2.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/eslint": "^8.56.2",
|