@hautechai/sdk 0.0.28 → 0.1.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.
@@ -1,43 +1,40 @@
1
- name: CI
1
+ name: Publish Package to npmjs
2
2
  on:
3
- push:
4
- branches:
5
- - main
3
+ release:
4
+ types: [published]
6
5
  jobs:
7
- build:
8
- name: Build
9
- runs-on: ubuntu-latest
10
- permissions:
11
- contents: read
12
- id-token: write
13
- environment: main
6
+ build-and-publish:
7
+ runs-on: ubuntu-latest
8
+ permissions:
9
+ contents: read
10
+ id-token: write
11
+ environment: main
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
14
15
 
15
- steps:
16
- - name: Checkout
17
- uses: actions/checkout@v4
16
+ - name: Install pnpm
17
+ uses: pnpm/action-setup@v4
18
+ with:
19
+ version: 9
18
20
 
19
- - name: Install node
20
- uses: actions/setup-node@v4
21
- with:
22
- node-version: '20.x'
23
- registry-url: 'https://registry.npmjs.org'
21
+ - name: Use Node LTS
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: '20.x'
25
+ registry-url: 'https://registry.npmjs.org'
26
+ cache: pnpm
24
27
 
25
- - name: Install dependencies
26
- run: yarn install --frozen-lockfile
28
+ - name: Install dependencies
29
+ run: pnpm install --frozen-lockfile
27
30
 
28
- - name: Test
29
- run: yarn test
30
- env:
31
- API_CORE_URL: https://api.dev.hautech.ai
32
- APP_ID: ${{ secrets.APP_ID }}
33
- APP_KEY_ID: ${{ secrets.APP_KEY_ID }}
34
- APP_KEY_SECRET: ${{ secrets.APP_KEY_SECRET }}
35
- SDK_TOKEN: ${{ secrets.SDK_TOKEN }}
31
+ - name: Bump version
32
+ run: pnpm version from-git --no-commit-hooks --no-git-tag-version --allow-same-version
36
33
 
37
- - name: Build
38
- run: yarn build
34
+ - name: Build the package
35
+ run: pnpm build
39
36
 
40
- - name: Publish
41
- run: npm publish --access public
42
- env:
43
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
37
+ - name: Publish the package
38
+ run: pnpm publish --no-git-checks --access public
39
+ env:
40
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -0,0 +1,39 @@
1
+ name: Test
2
+ on:
3
+ push:
4
+ branches:
5
+ - 'main'
6
+ jobs:
7
+ test:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ contents: read
11
+ id-token: write
12
+ environment: main
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
+
17
+ - name: Install pnpm
18
+ uses: pnpm/action-setup@v4
19
+ with:
20
+ version: 9
21
+
22
+ - name: Use Node LTS
23
+ uses: actions/setup-node@v4
24
+ with:
25
+ node-version: '20.x'
26
+ registry-url: 'https://registry.npmjs.org'
27
+ cache: pnpm
28
+
29
+ - name: Install dependencies
30
+ run: pnpm install --frozen-lockfile
31
+
32
+ - name: Test
33
+ run: pnpm test
34
+ env:
35
+ API_CORE_URL: https://api.dev.hautech.ai
36
+ APP_ID: ${{ secrets.APP_ID }}
37
+ APP_KEY_ID: ${{ secrets.APP_KEY_ID }}
38
+ APP_KEY_SECRET: ${{ secrets.APP_KEY_SECRET }}
39
+ SDK_TOKEN: ${{ secrets.SDK_TOKEN }}
@@ -395,7 +395,7 @@ export interface CompositeV1Response {
395
395
  * @type {OperationOutputImageSingle}
396
396
  * @memberof CompositeV1Response
397
397
  */
398
- 'output'?: OperationOutputImageSingle | null;
398
+ 'output': OperationOutputImageSingle | null;
399
399
  /**
400
400
  *
401
401
  * @type {object}
@@ -600,7 +600,7 @@ export interface CutV1Response {
600
600
  * @type {OperationOutputImageSingle}
601
601
  * @memberof CutV1Response
602
602
  */
603
- 'output'?: OperationOutputImageSingle | null;
603
+ 'output': OperationOutputImageSingle | null;
604
604
  /**
605
605
  *
606
606
  * @type {object}
@@ -985,7 +985,7 @@ export interface GptV1Response {
985
985
  * @type {OperationOutputJSON}
986
986
  * @memberof GptV1Response
987
987
  */
988
- 'output'?: OperationOutputJSON | null;
988
+ 'output': OperationOutputJSON | null;
989
989
  /**
990
990
  *
991
991
  * @type {object}
@@ -1147,7 +1147,7 @@ export interface HauteLindaV1Response {
1147
1147
  * @type {OperationOutputImageMultiple}
1148
1148
  * @memberof HauteLindaV1Response
1149
1149
  */
1150
- 'output'?: OperationOutputImageMultiple | null;
1150
+ 'output': OperationOutputImageMultiple | null;
1151
1151
  /**
1152
1152
  *
1153
1153
  * @type {object}
@@ -1224,7 +1224,7 @@ export interface HauteNaomiV1Response {
1224
1224
  * @type {OperationOutputImageSingle}
1225
1225
  * @memberof HauteNaomiV1Response
1226
1226
  */
1227
- 'output'?: OperationOutputImageSingle | null;
1227
+ 'output': OperationOutputImageSingle | null;
1228
1228
  /**
1229
1229
  *
1230
1230
  * @type {object}
@@ -1422,7 +1422,7 @@ export interface ImagineKateV1Response {
1422
1422
  * @type {OperationOutputImageSingle}
1423
1423
  * @memberof ImagineKateV1Response
1424
1424
  */
1425
- 'output'?: OperationOutputImageSingle | null;
1425
+ 'output': OperationOutputImageSingle | null;
1426
1426
  /**
1427
1427
  *
1428
1428
  * @type {object}
@@ -1512,7 +1512,7 @@ export interface InpaintKateV1Response {
1512
1512
  * @type {OperationOutputImageSingle}
1513
1513
  * @memberof InpaintKateV1Response
1514
1514
  */
1515
- 'output'?: OperationOutputImageSingle | null;
1515
+ 'output': OperationOutputImageSingle | null;
1516
1516
  /**
1517
1517
  *
1518
1518
  * @type {object}
@@ -2297,7 +2297,7 @@ export interface NegateImageV1Response {
2297
2297
  * @type {OperationOutputImageSingle}
2298
2298
  * @memberof NegateImageV1Response
2299
2299
  */
2300
- 'output'?: OperationOutputImageSingle | null;
2300
+ 'output': OperationOutputImageSingle | null;
2301
2301
  /**
2302
2302
  *
2303
2303
  * @type {object}
@@ -2412,7 +2412,7 @@ export interface ObjectDetectionV1Response {
2412
2412
  * @type {OperationOutputJSON}
2413
2413
  * @memberof ObjectDetectionV1Response
2414
2414
  */
2415
- 'output'?: OperationOutputJSON | null;
2415
+ 'output': OperationOutputJSON | null;
2416
2416
  /**
2417
2417
  *
2418
2418
  * @type {object}
@@ -2809,7 +2809,7 @@ export interface PoseEstimationV1Response {
2809
2809
  * @type {OperationOutputJSON}
2810
2810
  * @memberof PoseEstimationV1Response
2811
2811
  */
2812
- 'output'?: OperationOutputJSON | null;
2812
+ 'output': OperationOutputJSON | null;
2813
2813
  /**
2814
2814
  *
2815
2815
  * @type {object}
@@ -3078,7 +3078,7 @@ export interface SegmentAnythingEmbeddingsV1Response {
3078
3078
  * @type {OperationOutputJSON}
3079
3079
  * @memberof SegmentAnythingEmbeddingsV1Response
3080
3080
  */
3081
- 'output'?: OperationOutputJSON | null;
3081
+ 'output': OperationOutputJSON | null;
3082
3082
  /**
3083
3083
  *
3084
3084
  * @type {object}
@@ -3193,7 +3193,7 @@ export interface SegmentAnythingMaskV1Response {
3193
3193
  * @type {OperationOutputImageSingle}
3194
3194
  * @memberof SegmentAnythingMaskV1Response
3195
3195
  */
3196
- 'output'?: OperationOutputImageSingle | null;
3196
+ 'output': OperationOutputImageSingle | null;
3197
3197
  /**
3198
3198
  *
3199
3199
  * @type {object}
@@ -3521,7 +3521,7 @@ export interface UpscaleV1Response {
3521
3521
  * @type {OperationOutputImageSingle}
3522
3522
  * @memberof UpscaleV1Response
3523
3523
  */
3524
- 'output'?: OperationOutputImageSingle | null;
3524
+ 'output': OperationOutputImageSingle | null;
3525
3525
  /**
3526
3526
  *
3527
3527
  * @type {object}
@@ -3598,7 +3598,7 @@ export interface VtonGiseleV1Response {
3598
3598
  * @type {OperationOutputImageSingle}
3599
3599
  * @memberof VtonGiseleV1Response
3600
3600
  */
3601
- 'output'?: OperationOutputImageSingle | null;
3601
+ 'output': OperationOutputImageSingle | null;
3602
3602
  /**
3603
3603
  *
3604
3604
  * @type {object}
@@ -93,31 +93,7 @@ export declare const createSDK: (options: SDKOptions) => {
93
93
  }) => Promise<Record<string, string>>;
94
94
  };
95
95
  operations: {
96
- create: {
97
- composite: {
98
- v1: (props: {
99
- input: import("../autogenerated").CompositeV1Input;
100
- metadata?: any;
101
- }) => Promise<import("../autogenerated").CompositeV1Response>;
102
- };
103
- cut: {
104
- v1: (props: {
105
- input: import("../autogenerated").CutV1Input;
106
- metadata?: any;
107
- }) => Promise<import("../autogenerated").CutV1Response>;
108
- };
109
- detect: {
110
- v1: (props: {
111
- input: import("../autogenerated").ObjectDetectionV1Input;
112
- metadata?: any;
113
- }) => Promise<import("../autogenerated").ObjectDetectionV1Response>;
114
- };
115
- estimatePose: {
116
- v1: (props: {
117
- input: import("../autogenerated").PoseEstimationV1Input;
118
- metadata?: any;
119
- }) => Promise<import("../autogenerated").PoseEstimationV1Response>;
120
- };
96
+ run: {
121
97
  haute: {
122
98
  linda: {
123
99
  v1: (props: {
@@ -132,6 +108,14 @@ export declare const createSDK: (options: SDKOptions) => {
132
108
  }) => Promise<import("../autogenerated").HauteNaomiV1Response>;
133
109
  };
134
110
  };
111
+ inpaint: {
112
+ kate: {
113
+ v1: (props: {
114
+ input: import("../autogenerated").KateInpaintV1Input;
115
+ metadata?: any;
116
+ }) => Promise<import("../autogenerated").ImagineKateV1Response>;
117
+ };
118
+ };
135
119
  gpt: {
136
120
  v1: (props: {
137
121
  input: import("../autogenerated").GPTV1Input;
@@ -146,31 +130,49 @@ export declare const createSDK: (options: SDKOptions) => {
146
130
  }) => Promise<import("../autogenerated").ImagineKateV1Response>;
147
131
  };
148
132
  };
149
- inpaint: {
150
- kate: {
133
+ upscale: {
134
+ v1: (props: {
135
+ input: import("../autogenerated").UpscaleV1Input;
136
+ metadata?: any;
137
+ }) => Promise<import("../autogenerated").UpscaleV1Response>;
138
+ };
139
+ objectDetection: {
140
+ v1: (props: {
141
+ input: import("../autogenerated").ObjectDetectionV1Input;
142
+ metadata?: any;
143
+ }) => Promise<import("../autogenerated").ObjectDetectionV1Response>;
144
+ };
145
+ segmentAnything: {
146
+ embeddings: {
151
147
  v1: (props: {
152
- input: import("../autogenerated").KateInpaintV1Input;
148
+ input: import("../autogenerated").SegmentAnythingEmbeddingsV1Input;
153
149
  metadata?: any;
154
- }) => Promise<import("../autogenerated").ImagineKateV1Response>;
150
+ }) => Promise<import("../autogenerated").SegmentAnythingEmbeddingsV1Response>;
151
+ };
152
+ mask: {
153
+ v1: (props: {
154
+ input: import("../autogenerated").SegmentAnythingMaskV1Input;
155
+ metadata?: any;
156
+ }) => Promise<import("../autogenerated").SegmentAnythingMaskV1Response>;
155
157
  };
156
158
  };
157
- segmentEmbeddings: {
159
+ poseEstimation: {
158
160
  v1: (props: {
159
- input: import("../autogenerated").SegmentAnythingEmbeddingsV1Input;
161
+ input: import("../autogenerated").PoseEstimationV1Input;
160
162
  metadata?: any;
161
- }) => Promise<import("../autogenerated").SegmentAnythingEmbeddingsV1Response>;
163
+ }) => Promise<import("../autogenerated").PoseEstimationV1Response>;
162
164
  };
163
- segmentMask: {
165
+ cut: {
164
166
  v1: (props: {
165
- input: import("../autogenerated").SegmentAnythingMaskV1Input;
167
+ input: import("../autogenerated").CutV1Input;
166
168
  metadata?: any;
167
- }) => Promise<import("../autogenerated").SegmentAnythingMaskV1Response>;
169
+ }) => Promise<import("../autogenerated").CutV1Response>;
168
170
  };
169
- upscale: {
171
+ composite: {
170
172
  v1: (props: {
171
- input: import("../autogenerated").UpscaleV1Input;
173
+ input: import("../autogenerated").CompositeV1Input;
172
174
  metadata?: any;
173
- }) => Promise<import("../autogenerated").UpscaleV1Response>;
175
+ }) => Promise<import("../autogenerated").CompositeV1Response>;
174
176
  };
175
177
  vton: {
176
178
  gisele: {
@@ -180,6 +182,12 @@ export declare const createSDK: (options: SDKOptions) => {
180
182
  }) => Promise<import("../autogenerated").VtonGiseleV1Response>;
181
183
  };
182
184
  };
185
+ negateImage: {
186
+ v1: (props: {
187
+ input: import("../autogenerated").NegateImageV1Input;
188
+ metadata?: any;
189
+ }) => Promise<import("../autogenerated").NegateImageV1Response>;
190
+ };
183
191
  };
184
192
  get: (props: {
185
193
  id: string;
@@ -1,31 +1,7 @@
1
- import { CompositeV1Input, CompositeV1Response, CutV1Input, CutV1Response, GiseleVtonV1Input, GPTV1Input, GptV1Response, HauteLindaV1Response, HauteNaomiV1Response, ImagineKateV1Response, KateImagineV1Input, KateInpaintV1Input, LindaHauteV1Input, NaomiHauteV1Input, ObjectDetectionV1Input, ObjectDetectionV1Response, OperationEntity, PoseEstimationV1Input, PoseEstimationV1Response, SegmentAnythingEmbeddingsV1Input, SegmentAnythingEmbeddingsV1Response, SegmentAnythingMaskV1Input, SegmentAnythingMaskV1Response, UpscaleV1Input, UpscaleV1Response, VtonGiseleV1Response } from '../../autogenerated';
1
+ import { CompositeV1Input, CompositeV1Response, CutV1Input, CutV1Response, GiseleVtonV1Input, GPTV1Input, GptV1Response, HauteLindaV1Response, HauteNaomiV1Response, ImagineKateV1Response, KateImagineV1Input, KateInpaintV1Input, LindaHauteV1Input, NaomiHauteV1Input, NegateImageV1Input, NegateImageV1Response, ObjectDetectionV1Input, ObjectDetectionV1Response, OperationEntity, PoseEstimationV1Input, PoseEstimationV1Response, SegmentAnythingEmbeddingsV1Input, SegmentAnythingEmbeddingsV1Response, SegmentAnythingMaskV1Input, SegmentAnythingMaskV1Response, UpscaleV1Input, UpscaleV1Response, VtonGiseleV1Response } from '../../autogenerated';
2
2
  import { ListProps, ListResponse, SDKOptions } from '../../types';
3
3
  declare const operations: (options: SDKOptions) => {
4
- create: {
5
- composite: {
6
- v1: (props: {
7
- input: CompositeV1Input;
8
- metadata?: any;
9
- }) => Promise<CompositeV1Response>;
10
- };
11
- cut: {
12
- v1: (props: {
13
- input: CutV1Input;
14
- metadata?: any;
15
- }) => Promise<CutV1Response>;
16
- };
17
- detect: {
18
- v1: (props: {
19
- input: ObjectDetectionV1Input;
20
- metadata?: any;
21
- }) => Promise<ObjectDetectionV1Response>;
22
- };
23
- estimatePose: {
24
- v1: (props: {
25
- input: PoseEstimationV1Input;
26
- metadata?: any;
27
- }) => Promise<PoseEstimationV1Response>;
28
- };
4
+ run: {
29
5
  haute: {
30
6
  linda: {
31
7
  v1: (props: {
@@ -40,6 +16,14 @@ declare const operations: (options: SDKOptions) => {
40
16
  }) => Promise<HauteNaomiV1Response>;
41
17
  };
42
18
  };
19
+ inpaint: {
20
+ kate: {
21
+ v1: (props: {
22
+ input: KateInpaintV1Input;
23
+ metadata?: any;
24
+ }) => Promise<ImagineKateV1Response>;
25
+ };
26
+ };
43
27
  gpt: {
44
28
  v1: (props: {
45
29
  input: GPTV1Input;
@@ -54,31 +38,49 @@ declare const operations: (options: SDKOptions) => {
54
38
  }) => Promise<ImagineKateV1Response>;
55
39
  };
56
40
  };
57
- inpaint: {
58
- kate: {
41
+ upscale: {
42
+ v1: (props: {
43
+ input: UpscaleV1Input;
44
+ metadata?: any;
45
+ }) => Promise<UpscaleV1Response>;
46
+ };
47
+ objectDetection: {
48
+ v1: (props: {
49
+ input: ObjectDetectionV1Input;
50
+ metadata?: any;
51
+ }) => Promise<ObjectDetectionV1Response>;
52
+ };
53
+ segmentAnything: {
54
+ embeddings: {
59
55
  v1: (props: {
60
- input: KateInpaintV1Input;
56
+ input: SegmentAnythingEmbeddingsV1Input;
61
57
  metadata?: any;
62
- }) => Promise<ImagineKateV1Response>;
58
+ }) => Promise<SegmentAnythingEmbeddingsV1Response>;
59
+ };
60
+ mask: {
61
+ v1: (props: {
62
+ input: SegmentAnythingMaskV1Input;
63
+ metadata?: any;
64
+ }) => Promise<SegmentAnythingMaskV1Response>;
63
65
  };
64
66
  };
65
- segmentEmbeddings: {
67
+ poseEstimation: {
66
68
  v1: (props: {
67
- input: SegmentAnythingEmbeddingsV1Input;
69
+ input: PoseEstimationV1Input;
68
70
  metadata?: any;
69
- }) => Promise<SegmentAnythingEmbeddingsV1Response>;
71
+ }) => Promise<PoseEstimationV1Response>;
70
72
  };
71
- segmentMask: {
73
+ cut: {
72
74
  v1: (props: {
73
- input: SegmentAnythingMaskV1Input;
75
+ input: CutV1Input;
74
76
  metadata?: any;
75
- }) => Promise<SegmentAnythingMaskV1Response>;
77
+ }) => Promise<CutV1Response>;
76
78
  };
77
- upscale: {
79
+ composite: {
78
80
  v1: (props: {
79
- input: UpscaleV1Input;
81
+ input: CompositeV1Input;
80
82
  metadata?: any;
81
- }) => Promise<UpscaleV1Response>;
83
+ }) => Promise<CompositeV1Response>;
82
84
  };
83
85
  vton: {
84
86
  gisele: {
@@ -88,6 +90,12 @@ declare const operations: (options: SDKOptions) => {
88
90
  }) => Promise<VtonGiseleV1Response>;
89
91
  };
90
92
  };
93
+ negateImage: {
94
+ v1: (props: {
95
+ input: NegateImageV1Input;
96
+ metadata?: any;
97
+ }) => Promise<NegateImageV1Response>;
98
+ };
91
99
  };
92
100
  get: (props: {
93
101
  id: string;
@@ -5,19 +5,7 @@ const operations = (options) => {
5
5
  const api = useAutogeneratedAPI({ API: OperationsApi, options });
6
6
  const createOperation = (callMethod) => (props) => api.call({ run: (methods) => callMethod(methods, props) });
7
7
  return {
8
- create: {
9
- composite: {
10
- v1: createOperation((methods, props) => methods.operationsControllerRunCompositeV1V1(props)),
11
- },
12
- cut: {
13
- v1: createOperation((methods, props) => methods.operationsControllerRunCutV1V1(props)),
14
- },
15
- detect: {
16
- v1: createOperation((methods, props) => methods.operationsControllerRunObjectDetectionV1V1(props)),
17
- },
18
- estimatePose: {
19
- v1: createOperation((methods, props) => methods.operationsControllerRunPoseEstimationV1V1(props)),
20
- },
8
+ run: {
21
9
  haute: {
22
10
  linda: {
23
11
  v1: createOperation((methods, props) => methods.operationsControllerRunHauteLindaV1V1(props)),
@@ -26,6 +14,11 @@ const operations = (options) => {
26
14
  v1: createOperation((methods, props) => methods.operationsControllerRunHauteNaomiV1V1(props)),
27
15
  },
28
16
  },
17
+ inpaint: {
18
+ kate: {
19
+ v1: createOperation((methods, props) => methods.operationsControllerRunInpaintKateV1V1(props)),
20
+ },
21
+ },
29
22
  gpt: {
30
23
  v1: createOperation((methods, props) => methods.operationsControllerRunGptV1V1(props)),
31
24
  },
@@ -34,25 +27,37 @@ const operations = (options) => {
34
27
  v1: createOperation((methods, props) => methods.operationsControllerRunImagineKateV1V1(props)),
35
28
  },
36
29
  },
37
- inpaint: {
38
- kate: {
39
- v1: createOperation((methods, props) => methods.operationsControllerRunInpaintKateV1V1(props)),
30
+ upscale: {
31
+ v1: createOperation((methods, props) => methods.operationsControllerRunUpscaleV1V1(props)),
32
+ },
33
+ objectDetection: {
34
+ v1: createOperation((methods, props) => methods.operationsControllerRunObjectDetectionV1V1(props)),
35
+ },
36
+ segmentAnything: {
37
+ embeddings: {
38
+ v1: createOperation((methods, props) => methods.operationsControllerRunSegmentAnythingEmbeddingsV1V1(props)),
39
+ },
40
+ mask: {
41
+ v1: createOperation((methods, props) => methods.operationsControllerRunSegmentAnythingMaskV1V1(props)),
40
42
  },
41
43
  },
42
- segmentEmbeddings: {
43
- v1: createOperation((methods, props) => methods.operationsControllerRunSegmentAnythingEmbeddingsV1V1(props)),
44
+ poseEstimation: {
45
+ v1: createOperation((methods, props) => methods.operationsControllerRunPoseEstimationV1V1(props)),
44
46
  },
45
- segmentMask: {
46
- v1: createOperation((methods, props) => methods.operationsControllerRunSegmentAnythingMaskV1V1(props)),
47
+ cut: {
48
+ v1: createOperation((methods, props) => methods.operationsControllerRunCutV1V1(props)),
47
49
  },
48
- upscale: {
49
- v1: createOperation((methods, props) => methods.operationsControllerRunUpscaleV1V1(props)),
50
+ composite: {
51
+ v1: createOperation((methods, props) => methods.operationsControllerRunCompositeV1V1(props)),
50
52
  },
51
53
  vton: {
52
54
  gisele: {
53
55
  v1: createOperation((methods, props) => methods.operationsControllerRunVtonGiseleV1V1(props)),
54
56
  },
55
57
  },
58
+ negateImage: {
59
+ v1: createOperation((methods, props) => methods.operationsControllerRunNegateImageV1V1(props)),
60
+ },
56
61
  },
57
62
  get: (props) => api.callWithReturningUndefinedOn404({
58
63
  run: (methods) => methods.operationsControllerGetOperationV1(props.id),
package/package.json CHANGED
@@ -1,37 +1,38 @@
1
1
  {
2
- "name": "@hautechai/sdk",
3
- "version": "0.0.28",
4
- "license": "MIT",
5
- "keywords": [],
6
- "repository": {
7
- "type": "git",
8
- "url": "https://github.com/HautechAI/sdk"
9
- },
10
- "main": "dist/index.js",
11
- "scripts": {
12
- "build": "tsc",
13
- "generate": "./scripts/generate.sh",
14
- "lint": "nx run-many --all --target=lint",
15
- "lint:fix": "nx run-many --all --target=lint --fix",
16
- "test": "jest"
17
- },
18
- "description": "Hautech SDK",
19
- "dependencies": {
20
- "@hautechai/pipelines": "0.1.0",
21
- "axios": "1.6.1",
22
- "jose": "5.9.6"
23
- },
24
- "devDependencies": {
25
- "@openapitools/openapi-generator-cli": "2.15.3",
26
- "@types/jest": "29.5.12",
27
- "@types/jsonwebtoken": "9.0.7",
28
- "@types/node": "22.5.2",
29
- "dotenv": "16.4.7",
30
- "jest": "29.7.0",
31
- "jest-environment-jsdom": "29.7.0",
32
- "ts-jest": "29.2.5",
33
- "ts-node": "10.9.2",
34
- "tslib": "2.7.0",
35
- "typescript": "5.5.4"
36
- }
37
- }
2
+ "name": "@hautechai/sdk",
3
+ "version": "0.1.1",
4
+ "license": "MIT",
5
+ "keywords": [],
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/HautechAI/sdk"
9
+ },
10
+ "main": "dist/index.js",
11
+ "description": "Hautech SDK",
12
+ "dependencies": {
13
+ "@hautechai/pipelines": "0.1.0",
14
+ "axios": "1.6.1",
15
+ "jose": "5.9.6"
16
+ },
17
+ "devDependencies": {
18
+ "@jest/globals": "^29.7.0",
19
+ "@openapitools/openapi-generator-cli": "2.15.3",
20
+ "@types/jest": "29.5.12",
21
+ "@types/jsonwebtoken": "9.0.7",
22
+ "@types/node": "22.5.2",
23
+ "dotenv": "16.4.7",
24
+ "jest": "29.7.0",
25
+ "jest-environment-jsdom": "29.7.0",
26
+ "ts-jest": "29.2.5",
27
+ "ts-node": "10.9.2",
28
+ "tslib": "2.7.0",
29
+ "typescript": "5.5.4"
30
+ },
31
+ "scripts": {
32
+ "build": "tsc",
33
+ "generate": "./scripts/generate.sh",
34
+ "lint": "nx run-many --all --target=lint",
35
+ "lint:fix": "nx run-many --all --target=lint --fix",
36
+ "test": "jest"
37
+ }
38
+ }
File without changes
File without changes