@uniformdev/assets 20.63.0 → 20.63.1-alpha.12
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/dist/index.d.mts +18 -2
- package/dist/index.d.ts +18 -2
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -969,12 +969,20 @@ interface paths {
|
|
|
969
969
|
* This is a list query parameter, and cannot be used with any primary query parameters
|
|
970
970
|
* */
|
|
971
971
|
keyword?: components["parameters"]["keyword"];
|
|
972
|
+
/**
|
|
973
|
+
* @deprecated
|
|
974
|
+
* @description BETA: Semantic search using vector similarity to find assets by meaning.
|
|
975
|
+
* Use this for "images of mountains" style queries.
|
|
976
|
+
* Requires AI credits.
|
|
977
|
+
*
|
|
978
|
+
*/
|
|
979
|
+
searchSemantic?: components["parameters"]["searchSemantic"];
|
|
972
980
|
/** @description Max number of records to return */
|
|
973
981
|
limit?: components["parameters"]["limit"];
|
|
974
982
|
/** @description Number of records to skip */
|
|
975
983
|
offset?: components["parameters"]["offset"];
|
|
976
984
|
/** @description Sets the sorting of the results. If unspecified, results are sorted by creation date ascending.
|
|
977
|
-
* Allowed values are: updated_at_DESC, updated_at_ASC, created_at_DESC, created_at_ASC, name_DESC, name_ASC, slug_DESC, slug_ASC
|
|
985
|
+
* Allowed values are: updated_at_DESC, updated_at_ASC, created_at_DESC, created_at_ASC, name_DESC, name_ASC, slug_DESC, slug_ASC, relevance_DESC (when searching).
|
|
978
986
|
* */
|
|
979
987
|
orderBy?: components["parameters"]["orderBy"];
|
|
980
988
|
/**
|
|
@@ -1547,8 +1555,16 @@ interface components {
|
|
|
1547
1555
|
* This is a list query parameter, and cannot be used with any primary query parameters
|
|
1548
1556
|
* */
|
|
1549
1557
|
keyword: string;
|
|
1558
|
+
/**
|
|
1559
|
+
* @deprecated
|
|
1560
|
+
* @description BETA: Semantic search using vector similarity to find assets by meaning.
|
|
1561
|
+
* Use this for "images of mountains" style queries.
|
|
1562
|
+
* Requires AI credits.
|
|
1563
|
+
*
|
|
1564
|
+
*/
|
|
1565
|
+
searchSemantic: string;
|
|
1550
1566
|
/** @description Sets the sorting of the results. If unspecified, results are sorted by creation date ascending.
|
|
1551
|
-
* Allowed values are: updated_at_DESC, updated_at_ASC, created_at_DESC, created_at_ASC, name_DESC, name_ASC, slug_DESC, slug_ASC
|
|
1567
|
+
* Allowed values are: updated_at_DESC, updated_at_ASC, created_at_DESC, created_at_ASC, name_DESC, name_ASC, slug_DESC, slug_ASC, relevance_DESC (when searching).
|
|
1552
1568
|
* */
|
|
1553
1569
|
orderBy: string[];
|
|
1554
1570
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -969,12 +969,20 @@ interface paths {
|
|
|
969
969
|
* This is a list query parameter, and cannot be used with any primary query parameters
|
|
970
970
|
* */
|
|
971
971
|
keyword?: components["parameters"]["keyword"];
|
|
972
|
+
/**
|
|
973
|
+
* @deprecated
|
|
974
|
+
* @description BETA: Semantic search using vector similarity to find assets by meaning.
|
|
975
|
+
* Use this for "images of mountains" style queries.
|
|
976
|
+
* Requires AI credits.
|
|
977
|
+
*
|
|
978
|
+
*/
|
|
979
|
+
searchSemantic?: components["parameters"]["searchSemantic"];
|
|
972
980
|
/** @description Max number of records to return */
|
|
973
981
|
limit?: components["parameters"]["limit"];
|
|
974
982
|
/** @description Number of records to skip */
|
|
975
983
|
offset?: components["parameters"]["offset"];
|
|
976
984
|
/** @description Sets the sorting of the results. If unspecified, results are sorted by creation date ascending.
|
|
977
|
-
* Allowed values are: updated_at_DESC, updated_at_ASC, created_at_DESC, created_at_ASC, name_DESC, name_ASC, slug_DESC, slug_ASC
|
|
985
|
+
* Allowed values are: updated_at_DESC, updated_at_ASC, created_at_DESC, created_at_ASC, name_DESC, name_ASC, slug_DESC, slug_ASC, relevance_DESC (when searching).
|
|
978
986
|
* */
|
|
979
987
|
orderBy?: components["parameters"]["orderBy"];
|
|
980
988
|
/**
|
|
@@ -1547,8 +1555,16 @@ interface components {
|
|
|
1547
1555
|
* This is a list query parameter, and cannot be used with any primary query parameters
|
|
1548
1556
|
* */
|
|
1549
1557
|
keyword: string;
|
|
1558
|
+
/**
|
|
1559
|
+
* @deprecated
|
|
1560
|
+
* @description BETA: Semantic search using vector similarity to find assets by meaning.
|
|
1561
|
+
* Use this for "images of mountains" style queries.
|
|
1562
|
+
* Requires AI credits.
|
|
1563
|
+
*
|
|
1564
|
+
*/
|
|
1565
|
+
searchSemantic: string;
|
|
1550
1566
|
/** @description Sets the sorting of the results. If unspecified, results are sorted by creation date ascending.
|
|
1551
|
-
* Allowed values are: updated_at_DESC, updated_at_ASC, created_at_DESC, created_at_ASC, name_DESC, name_ASC, slug_DESC, slug_ASC
|
|
1567
|
+
* Allowed values are: updated_at_DESC, updated_at_ASC, created_at_DESC, created_at_ASC, name_DESC, name_ASC, slug_DESC, slug_ASC, relevance_DESC (when searching).
|
|
1552
1568
|
* */
|
|
1553
1569
|
orderBy: string[];
|
|
1554
1570
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "20.63.
|
|
3
|
+
"version": "20.63.1-alpha.12+914935b899",
|
|
4
4
|
"description": "Uniform Assets",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@uniformdev/context": "20.63.
|
|
38
|
+
"@uniformdev/context": "20.63.1-alpha.12+914935b899"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"ts-xor": "^1.3.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "914935b89907018dde56a2c49b72e6899d9fb0e2"
|
|
44
44
|
}
|