@kintone/dts-gen 6.1.21 → 6.1.22

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.
@@ -1,5 +1,5 @@
1
1
  import type { FieldType, SubTableFieldType } from "../kintone/clients/forms-client";
2
- declare type FieldTypesOrSubTableFieldTypes = FieldType[] | SubTableFieldType[];
2
+ type FieldTypesOrSubTableFieldTypes = FieldType[] | SubTableFieldType[];
3
3
  export interface FieldTypeGroups {
4
4
  stringFields: FieldType[];
5
5
  calculatedFields: FieldType[];
@@ -1,5 +1,5 @@
1
1
  /// <reference path="../../src/integration-tests/testfields.d.ts" />
2
- declare type SavedTestFields = kintone.types.SavedFields;
2
+ type SavedTestFields = kintone.types.SavedFields;
3
3
  export declare const DTSGenFieldsTest: {
4
4
  assertFieldTypes: (record: SavedTestFields) => void;
5
5
  };
@@ -1,6 +1,6 @@
1
1
  import * as fs from "fs";
2
2
  import type { SetUpTestAppClient, AddFormFieldOutput, JsCustomizeOutput, AddRecordOutput } from "../kintone/clients/setup-test-app-client";
3
- declare type Client = SetUpTestAppClient;
3
+ type Client = SetUpTestAppClient;
4
4
  export declare const SetupTestApp: {
5
5
  createKintoneApp: (client: Client, name: string) => Promise<string>;
6
6
  addDemoField: (client: Client, app: string) => Promise<AddFormFieldOutput>;
@@ -13,8 +13,8 @@ export interface SubTableFieldType {
13
13
  type: string;
14
14
  fields: FieldNameAndFieldOrSubTableField;
15
15
  }
16
- export declare type FieldTypeOrSubTableFieldType = FieldType | SubTableFieldType;
17
- export declare type FieldNameAndFieldOrSubTableField = {
16
+ export type FieldTypeOrSubTableFieldType = FieldType | SubTableFieldType;
17
+ export type FieldNameAndFieldOrSubTableField = {
18
18
  [key: string]: FieldTypeOrSubTableFieldType;
19
19
  };
20
20
  export interface FormsClient {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kintone/dts-gen",
3
- "version": "6.1.21",
3
+ "version": "6.1.22",
4
4
  "description": "Types for kintone js api and Types generating tools",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -32,17 +32,17 @@
32
32
  "@cybozu/eslint-config": "^18.0.1",
33
33
  "axios": "^0.27.2",
34
34
  "commander": "^10.0.0",
35
- "eslint": "^8.25.0",
35
+ "eslint": "^8.36.0",
36
36
  "form-data": "^4.0.0",
37
37
  "lodash": "^4.17.21",
38
- "prettier": "^2.7.1"
38
+ "prettier": "^2.8.4"
39
39
  },
40
40
  "devDependencies": {
41
- "@types/eslint": "^8.21.1",
41
+ "@types/eslint": "^8.21.2",
42
42
  "@types/lodash": "^4.14.191",
43
43
  "@types/prettier": "^2.7.2",
44
44
  "ts-loader": "^9.4.2",
45
- "webpack": "^5.75.0",
45
+ "webpack": "^5.76.1",
46
46
  "webpack-cli": "^5.0.1"
47
47
  },
48
48
  "bin": {
@@ -64,5 +64,5 @@
64
64
  "keywords": [
65
65
  "kintone"
66
66
  ],
67
- "gitHead": "d850ab5592a19bd69d87f5c3d02347782089bab8"
67
+ "gitHead": "acccbcd47eb4168894fceb7962ee8f407d37b29e"
68
68
  }