@constructive-io/sdk 0.12.19 → 0.12.21
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.
|
@@ -672,12 +672,12 @@ export interface UserFilter {
|
|
|
672
672
|
/** TRGM search on the `display_name` column. */
|
|
673
673
|
trgmDisplayName?: TrgmSearchInput;
|
|
674
674
|
/**
|
|
675
|
-
* Composite
|
|
676
|
-
*
|
|
675
|
+
* Composite unified search. Provide a search string and it will be dispatched to
|
|
676
|
+
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
677
677
|
* simultaneously. Rows matching ANY algorithm are returned. All matching score
|
|
678
678
|
* fields are populated.
|
|
679
679
|
*/
|
|
680
|
-
|
|
680
|
+
unifiedSearch?: string;
|
|
681
681
|
}
|
|
682
682
|
export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
683
683
|
export type PhoneNumberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CC_ASC' | 'CC_DESC' | 'NUMBER_ASC' | 'NUMBER_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
@@ -1537,12 +1537,12 @@ export interface UserFilter {
|
|
|
1537
1537
|
/** TRGM search on the `display_name` column. */
|
|
1538
1538
|
trgmDisplayName?: TrgmSearchInput;
|
|
1539
1539
|
/**
|
|
1540
|
-
* Composite
|
|
1541
|
-
*
|
|
1540
|
+
* Composite unified search. Provide a search string and it will be dispatched to
|
|
1541
|
+
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
1542
1542
|
* simultaneously. Rows matching ANY algorithm are returned. All matching score
|
|
1543
1543
|
* fields are populated.
|
|
1544
1544
|
*/
|
|
1545
|
-
|
|
1545
|
+
unifiedSearch?: string;
|
|
1546
1546
|
}
|
|
1547
1547
|
/** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */
|
|
1548
1548
|
export interface StringFilter {
|
|
@@ -672,12 +672,12 @@ export interface UserFilter {
|
|
|
672
672
|
/** TRGM search on the `display_name` column. */
|
|
673
673
|
trgmDisplayName?: TrgmSearchInput;
|
|
674
674
|
/**
|
|
675
|
-
* Composite
|
|
676
|
-
*
|
|
675
|
+
* Composite unified search. Provide a search string and it will be dispatched to
|
|
676
|
+
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
677
677
|
* simultaneously. Rows matching ANY algorithm are returned. All matching score
|
|
678
678
|
* fields are populated.
|
|
679
679
|
*/
|
|
680
|
-
|
|
680
|
+
unifiedSearch?: string;
|
|
681
681
|
}
|
|
682
682
|
export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
683
683
|
export type PhoneNumberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CC_ASC' | 'CC_DESC' | 'NUMBER_ASC' | 'NUMBER_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
@@ -1537,12 +1537,12 @@ export interface UserFilter {
|
|
|
1537
1537
|
/** TRGM search on the `display_name` column. */
|
|
1538
1538
|
trgmDisplayName?: TrgmSearchInput;
|
|
1539
1539
|
/**
|
|
1540
|
-
* Composite
|
|
1541
|
-
*
|
|
1540
|
+
* Composite unified search. Provide a search string and it will be dispatched to
|
|
1541
|
+
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
1542
1542
|
* simultaneously. Rows matching ANY algorithm are returned. All matching score
|
|
1543
1543
|
* fields are populated.
|
|
1544
1544
|
*/
|
|
1545
|
-
|
|
1545
|
+
unifiedSearch?: string;
|
|
1546
1546
|
}
|
|
1547
1547
|
/** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */
|
|
1548
1548
|
export interface StringFilter {
|
|
@@ -9738,12 +9738,12 @@ export interface UserFilter {
|
|
|
9738
9738
|
/** TRGM search on the `display_name` column. */
|
|
9739
9739
|
trgmDisplayName?: TrgmSearchInput;
|
|
9740
9740
|
/**
|
|
9741
|
-
* Composite
|
|
9742
|
-
*
|
|
9741
|
+
* Composite unified search. Provide a search string and it will be dispatched to
|
|
9742
|
+
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
9743
9743
|
* simultaneously. Rows matching ANY algorithm are returned. All matching score
|
|
9744
9744
|
* fields are populated.
|
|
9745
9745
|
*/
|
|
9746
|
-
|
|
9746
|
+
unifiedSearch?: string;
|
|
9747
9747
|
}
|
|
9748
9748
|
export interface AstMigrationFilter {
|
|
9749
9749
|
/** Filter by the object’s `id` field. */
|
|
@@ -19518,12 +19518,12 @@ export interface UserFilter {
|
|
|
19518
19518
|
/** TRGM search on the `display_name` column. */
|
|
19519
19519
|
trgmDisplayName?: TrgmSearchInput;
|
|
19520
19520
|
/**
|
|
19521
|
-
* Composite
|
|
19522
|
-
*
|
|
19521
|
+
* Composite unified search. Provide a search string and it will be dispatched to
|
|
19522
|
+
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
19523
19523
|
* simultaneously. Rows matching ANY algorithm are returned. All matching score
|
|
19524
19524
|
* fields are populated.
|
|
19525
19525
|
*/
|
|
19526
|
-
|
|
19526
|
+
unifiedSearch?: string;
|
|
19527
19527
|
}
|
|
19528
19528
|
/** A filter to be used against `RlsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
19529
19529
|
export interface RlsModuleFilter {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constructive-io/sdk",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.21",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "Constructive SDK - Auto-generated GraphQL types and ORM client",
|
|
6
6
|
"main": "index.js",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"graphql": "16.13.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@constructive-io/graphql-codegen": "^4.28.
|
|
50
|
+
"@constructive-io/graphql-codegen": "^4.28.4",
|
|
51
51
|
"@types/node": "^22.19.11",
|
|
52
52
|
"makage": "^0.3.0",
|
|
53
53
|
"tsx": "^4.19.0",
|
|
54
54
|
"typescript": "^5.9.3"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "de8ad0ad06cb755397795fac5e4d51f0feb3556b"
|
|
57
57
|
}
|
|
@@ -9738,12 +9738,12 @@ export interface UserFilter {
|
|
|
9738
9738
|
/** TRGM search on the `display_name` column. */
|
|
9739
9739
|
trgmDisplayName?: TrgmSearchInput;
|
|
9740
9740
|
/**
|
|
9741
|
-
* Composite
|
|
9742
|
-
*
|
|
9741
|
+
* Composite unified search. Provide a search string and it will be dispatched to
|
|
9742
|
+
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
9743
9743
|
* simultaneously. Rows matching ANY algorithm are returned. All matching score
|
|
9744
9744
|
* fields are populated.
|
|
9745
9745
|
*/
|
|
9746
|
-
|
|
9746
|
+
unifiedSearch?: string;
|
|
9747
9747
|
}
|
|
9748
9748
|
export interface AstMigrationFilter {
|
|
9749
9749
|
/** Filter by the object’s `id` field. */
|
|
@@ -19518,12 +19518,12 @@ export interface UserFilter {
|
|
|
19518
19518
|
/** TRGM search on the `display_name` column. */
|
|
19519
19519
|
trgmDisplayName?: TrgmSearchInput;
|
|
19520
19520
|
/**
|
|
19521
|
-
* Composite
|
|
19522
|
-
*
|
|
19521
|
+
* Composite unified search. Provide a search string and it will be dispatched to
|
|
19522
|
+
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
19523
19523
|
* simultaneously. Rows matching ANY algorithm are returned. All matching score
|
|
19524
19524
|
* fields are populated.
|
|
19525
19525
|
*/
|
|
19526
|
-
|
|
19526
|
+
unifiedSearch?: string;
|
|
19527
19527
|
}
|
|
19528
19528
|
/** A filter to be used against `RlsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
19529
19529
|
export interface RlsModuleFilter {
|