@rivascva/dt-idl 1.1.10 → 1.1.11
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.
|
@@ -6,3 +6,24 @@ repos:
|
|
|
6
6
|
name: check newlines
|
|
7
7
|
- id: check-yaml
|
|
8
8
|
name: check yaml
|
|
9
|
+
- repo: local
|
|
10
|
+
hooks:
|
|
11
|
+
- id: gen-services
|
|
12
|
+
name: gen services
|
|
13
|
+
entry: npm run gen
|
|
14
|
+
language: system
|
|
15
|
+
pass_filenames: false
|
|
16
|
+
- repo: local
|
|
17
|
+
hooks:
|
|
18
|
+
- id: lint-check
|
|
19
|
+
name: lint check
|
|
20
|
+
entry: npm run lint
|
|
21
|
+
language: system
|
|
22
|
+
pass_filenames: false
|
|
23
|
+
- repo: local
|
|
24
|
+
hooks:
|
|
25
|
+
- id: ts-check
|
|
26
|
+
name: ts check
|
|
27
|
+
entry: npm run check
|
|
28
|
+
language: system
|
|
29
|
+
pass_filenames: false
|
package/dist/index.d.ts
CHANGED
|
@@ -82,7 +82,7 @@ interface paths$1 {
|
|
|
82
82
|
cookie?: never;
|
|
83
83
|
};
|
|
84
84
|
/** @description Gets the simple quotes that fuzzy match the search query */
|
|
85
|
-
get: operations$1["
|
|
85
|
+
get: operations$1["getStocksSearch"];
|
|
86
86
|
put?: never;
|
|
87
87
|
post?: never;
|
|
88
88
|
delete?: never;
|
|
@@ -418,7 +418,7 @@ interface operations$1 {
|
|
|
418
418
|
500: components$1["responses"]["InternalServerError"];
|
|
419
419
|
};
|
|
420
420
|
};
|
|
421
|
-
|
|
421
|
+
getStocksSearch: {
|
|
422
422
|
parameters: {
|
|
423
423
|
query: {
|
|
424
424
|
/** @description The search query */
|
package/package.json
CHANGED
|
@@ -80,7 +80,7 @@ export interface paths {
|
|
|
80
80
|
cookie?: never;
|
|
81
81
|
};
|
|
82
82
|
/** @description Gets the simple quotes that fuzzy match the search query */
|
|
83
|
-
get: operations["
|
|
83
|
+
get: operations["getStocksSearch"];
|
|
84
84
|
put?: never;
|
|
85
85
|
post?: never;
|
|
86
86
|
delete?: never;
|
|
@@ -418,7 +418,7 @@ export interface operations {
|
|
|
418
418
|
500: components["responses"]["InternalServerError"];
|
|
419
419
|
};
|
|
420
420
|
};
|
|
421
|
-
|
|
421
|
+
getStocksSearch: {
|
|
422
422
|
parameters: {
|
|
423
423
|
query: {
|
|
424
424
|
/** @description The search query */
|