@depup/typesense 3.0.3-depup.0 → 3.0.4-depup.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,19 +1,19 @@
|
|
|
1
1
|
import ApiCall from "./ApiCall";
|
|
2
2
|
export type CurationRuleSchema = {
|
|
3
|
-
tags: string[];
|
|
4
|
-
query?: never;
|
|
5
|
-
match?: never;
|
|
6
|
-
filter_by?: never;
|
|
7
|
-
} | {
|
|
8
3
|
query: string;
|
|
9
4
|
match: "exact" | "contains";
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
filter_by?: string;
|
|
6
|
+
tags?: string[];
|
|
12
7
|
} | {
|
|
8
|
+
query?: never;
|
|
9
|
+
match?: never;
|
|
13
10
|
filter_by: string;
|
|
14
|
-
tags?:
|
|
11
|
+
tags?: string[];
|
|
12
|
+
} | {
|
|
15
13
|
query?: never;
|
|
16
14
|
match?: never;
|
|
15
|
+
filter_by?: string;
|
|
16
|
+
tags: string[];
|
|
17
17
|
};
|
|
18
18
|
export interface CurationObjectSchema {
|
|
19
19
|
id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CurationSets.js","sourceRoot":"","sources":["../../src/Typesense/CurationSets.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"CurationSets.js","sourceRoot":"","sources":["../../src/Typesense/CurationSets.ts"],"names":[],"mappings":";;;AA4DA;IACE,sBAAoB,OAAgB;QAAhB,YAAO,GAAP,OAAO,CAAS;IAAG,CAAC;IAGlC,+BAAQ,GAAd;;;gBACE,sBAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CACrB,YAAY,CAAC,YAAY,CAC1B,EAAC;;;KACH;IANe,yBAAY,GAAG,gBAAgB,CAAC;IAOlD,mBAAC;CAAA,AATD,IASC;kBAToB,YAAY"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@depup/typesense",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.0.4-depup.1",
|
|
4
|
+
"description": "Javascript Library for Typesense (with updated dependencies)",
|
|
5
5
|
"homepage": "https://github.com/typesense/typesense-js",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Typesense, Inc.",
|
|
@@ -35,10 +35,12 @@
|
|
|
35
35
|
"README.md"
|
|
36
36
|
],
|
|
37
37
|
"keywords": [
|
|
38
|
-
"depup",
|
|
39
|
-
"dependency-bumped",
|
|
40
|
-
"updated-deps",
|
|
41
38
|
"typesense",
|
|
39
|
+
"depup",
|
|
40
|
+
"updated-dependencies",
|
|
41
|
+
"security",
|
|
42
|
+
"latest",
|
|
43
|
+
"patched",
|
|
42
44
|
"api",
|
|
43
45
|
"sdk",
|
|
44
46
|
"client",
|
|
@@ -115,7 +117,7 @@
|
|
|
115
117
|
"repository": "typesense/typesense-js",
|
|
116
118
|
"license": "Apache-2.0",
|
|
117
119
|
"dependencies": {
|
|
118
|
-
"axios": "^1.
|
|
120
|
+
"axios": "^1.14.0",
|
|
119
121
|
"loglevel": "^1.9.2",
|
|
120
122
|
"tslib": "^2.8.1"
|
|
121
123
|
},
|
|
@@ -129,13 +131,13 @@
|
|
|
129
131
|
"changes": {
|
|
130
132
|
"axios": {
|
|
131
133
|
"from": "^1.13.5",
|
|
132
|
-
"to": "^1.
|
|
134
|
+
"to": "^1.14.0"
|
|
133
135
|
}
|
|
134
136
|
},
|
|
135
137
|
"depsUpdated": 1,
|
|
136
138
|
"originalPackage": "typesense",
|
|
137
|
-
"originalVersion": "3.0.
|
|
138
|
-
"processedAt": "2026-03-
|
|
139
|
+
"originalVersion": "3.0.4",
|
|
140
|
+
"processedAt": "2026-03-27T20:20:08.055Z",
|
|
139
141
|
"smokeTest": "passed"
|
|
140
142
|
}
|
|
141
143
|
}
|
|
@@ -1,14 +1,24 @@
|
|
|
1
1
|
import ApiCall from "./ApiCall";
|
|
2
2
|
|
|
3
3
|
export type CurationRuleSchema =
|
|
4
|
-
| { tags: string[]; query?: never; match?: never; filter_by?: never }
|
|
5
4
|
| {
|
|
6
5
|
query: string;
|
|
7
6
|
match: "exact" | "contains";
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
filter_by?: string;
|
|
8
|
+
tags?: string[];
|
|
10
9
|
}
|
|
11
|
-
| {
|
|
10
|
+
| {
|
|
11
|
+
query?: never;
|
|
12
|
+
match?: never;
|
|
13
|
+
filter_by: string;
|
|
14
|
+
tags?: string[];
|
|
15
|
+
}
|
|
16
|
+
| {
|
|
17
|
+
query?: never;
|
|
18
|
+
match?: never;
|
|
19
|
+
filter_by?: string;
|
|
20
|
+
tags: string[];
|
|
21
|
+
};
|
|
12
22
|
|
|
13
23
|
export interface CurationObjectSchema {
|
|
14
24
|
id: string;
|