@solibo/solibo-query 1.15.11 → 1.15.13
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.
|
@@ -24,13 +24,13 @@ export declare function conversationCountByCompanyQueryOptions(sdk: SoliboClient
|
|
|
24
24
|
category: readonly Id[] | null | undefined;
|
|
25
25
|
folderIds: readonly Id[] | undefined;
|
|
26
26
|
search?: string | null | undefined;
|
|
27
|
-
status?: ReadonlyArray<import("@solibo/solibo-sdk").
|
|
27
|
+
status?: ReadonlyArray<import("@solibo/solibo-sdk").ConversationStatus | "DRAFT" | "NEW" | "IN_PROGRESS" | "COMPLETE" | "TRASHED"> | null | undefined;
|
|
28
28
|
assignedToUserId?: ReadonlyArray<Id> | null | undefined;
|
|
29
|
-
latestPublicMessageSide?: ReadonlyArray<import("@solibo/solibo-sdk").
|
|
29
|
+
latestPublicMessageSide?: ReadonlyArray<import("@solibo/solibo-sdk").ConversationMessageSide | "BOARD" | "NON_BOARD" | "NONE"> | null | undefined;
|
|
30
30
|
hasAttachments?: boolean | null | undefined;
|
|
31
31
|
onlyRoot?: boolean | null | undefined;
|
|
32
32
|
byParticipant?: ReadonlyArray<Id> | null | undefined;
|
|
33
|
-
byParticipantType?: ReadonlyArray<import("@solibo/solibo-sdk").
|
|
33
|
+
byParticipantType?: ReadonlyArray<import("@solibo/solibo-sdk").ParticipantType | "PERSON" | "ORGANIZATION" | "EMPLOYEE" | "INQUIRY" | "SUPPLIER_CONTACT" | "CLIENT_USER" | "BOARD"> | null | undefined;
|
|
34
34
|
createdSince?: Id | null | undefined;
|
|
35
35
|
updatedSince?: Id | null | undefined;
|
|
36
36
|
flaggedByCurrentUser?: boolean | null | undefined;
|
|
@@ -46,15 +46,15 @@ export declare function conversationCountInCompanyQueryOptions(sdk: SoliboClient
|
|
|
46
46
|
readByCurrentUser: boolean;
|
|
47
47
|
fields?: string | null | undefined;
|
|
48
48
|
search?: string | null | undefined | undefined;
|
|
49
|
-
status?: readonly ("DRAFT" | "NEW" | "IN_PROGRESS" | "COMPLETE" | "TRASHED"
|
|
49
|
+
status?: readonly (import("@solibo/solibo-sdk").ConversationStatus | "DRAFT" | "NEW" | "IN_PROGRESS" | "COMPLETE" | "TRASHED")[] | null | undefined;
|
|
50
50
|
category?: readonly Id[] | null | undefined;
|
|
51
51
|
assignedToUserId?: readonly Id[] | null | undefined;
|
|
52
|
-
latestPublicMessageSide?: readonly ("
|
|
52
|
+
latestPublicMessageSide?: readonly (import("@solibo/solibo-sdk").ConversationMessageSide | "BOARD" | "NON_BOARD" | "NONE")[] | null | undefined;
|
|
53
53
|
hasAttachments?: boolean | null | undefined | undefined;
|
|
54
54
|
folderIds?: readonly Id[] | null | undefined;
|
|
55
55
|
onlyRoot?: boolean | null | undefined | undefined;
|
|
56
56
|
byParticipant?: readonly Id[] | null | undefined;
|
|
57
|
-
byParticipantType?: readonly ("PERSON" | "ORGANIZATION" | "EMPLOYEE" | "INQUIRY" | "SUPPLIER_CONTACT" | "CLIENT_USER"
|
|
57
|
+
byParticipantType?: readonly (import("@solibo/solibo-sdk").ParticipantType | "BOARD" | "PERSON" | "ORGANIZATION" | "EMPLOYEE" | "INQUIRY" | "SUPPLIER_CONTACT" | "CLIENT_USER")[] | null | undefined;
|
|
58
58
|
createdSince?: Id | null | undefined;
|
|
59
59
|
updatedSince?: Id | null | undefined;
|
|
60
60
|
flaggedByCurrentUser?: boolean | null | undefined | undefined;
|
|
@@ -48,20 +48,20 @@ export declare function conversationsQueryOptions(sdk: SoliboClient, params: Con
|
|
|
48
48
|
search: string | null | undefined;
|
|
49
49
|
folderIds: readonly Id[] | undefined;
|
|
50
50
|
fields?: string | null | undefined;
|
|
51
|
-
status?: readonly (import("@solibo/solibo-sdk").
|
|
51
|
+
status?: readonly (import("@solibo/solibo-sdk").ConversationStatus | "DRAFT" | "NEW" | "IN_PROGRESS" | "COMPLETE" | "TRASHED")[] | null | undefined;
|
|
52
52
|
category?: readonly Id[] | null | undefined;
|
|
53
53
|
assignedToUserId?: readonly Id[] | null | undefined;
|
|
54
|
-
latestPublicMessageSide?: readonly (import("@solibo/solibo-sdk").
|
|
54
|
+
latestPublicMessageSide?: readonly (import("@solibo/solibo-sdk").ConversationMessageSide | "BOARD" | "NON_BOARD" | "NONE")[] | null | undefined;
|
|
55
55
|
hasAttachments?: boolean | null | undefined | undefined;
|
|
56
56
|
onlyRoot?: boolean | null | undefined | undefined;
|
|
57
57
|
byParticipant?: readonly Id[] | null | undefined;
|
|
58
|
-
byParticipantType?: readonly (
|
|
58
|
+
byParticipantType?: readonly (ParticipantType | "BOARD" | "PERSON" | "ORGANIZATION" | "EMPLOYEE" | "INQUIRY" | "SUPPLIER_CONTACT" | "CLIENT_USER")[] | null | undefined;
|
|
59
59
|
createdSince?: Id | null | undefined;
|
|
60
60
|
updatedSince?: Id | null | undefined;
|
|
61
61
|
flaggedByCurrentUser?: boolean | null | undefined | undefined;
|
|
62
62
|
readByCurrentUser?: boolean | null | undefined | undefined;
|
|
63
|
-
orderBy?: import("@solibo/solibo-sdk").
|
|
64
|
-
orderDirection?: import("@solibo/solibo-sdk").
|
|
63
|
+
orderBy?: import("@solibo/solibo-sdk").ConversationOrderBy | "LATEST_ACTIVITY_AT" | "CONVERSATION_STARTED_AT" | "LATEST_MESSAGE_AT" | "LATEST_EVENT_AT" | null | undefined;
|
|
64
|
+
orderDirection?: import("@solibo/solibo-sdk").ConversationOrderDirection | "ASC" | "DESC" | null | undefined;
|
|
65
65
|
pageToken?: string | null | undefined | undefined;
|
|
66
66
|
count?: number | null | undefined | undefined;
|
|
67
67
|
autoPaginate?: boolean | null | undefined | undefined;
|
|
@@ -80,19 +80,19 @@ export declare function indexConversationsQueryOptions(sdk: SoliboClient, params
|
|
|
80
80
|
category: readonly Id[] | null | undefined;
|
|
81
81
|
folderIds: readonly Id[] | undefined;
|
|
82
82
|
byParticipant: readonly Id[] | null | undefined;
|
|
83
|
-
byParticipantType: readonly ("PERSON" | "ORGANIZATION" | "EMPLOYEE" | "INQUIRY" | "SUPPLIER_CONTACT" | "CLIENT_USER"
|
|
83
|
+
byParticipantType: readonly (ParticipantType | "BOARD" | "PERSON" | "ORGANIZATION" | "EMPLOYEE" | "INQUIRY" | "SUPPLIER_CONTACT" | "CLIENT_USER")[] | null | undefined;
|
|
84
84
|
search?: string | null | undefined;
|
|
85
|
-
status?: ReadonlyArray<import("@solibo/solibo-sdk").
|
|
85
|
+
status?: ReadonlyArray<import("@solibo/solibo-sdk").ConversationStatus | "DRAFT" | "NEW" | "IN_PROGRESS" | "COMPLETE" | "TRASHED"> | null | undefined;
|
|
86
86
|
assignedToUserId?: ReadonlyArray<Id> | null | undefined;
|
|
87
|
-
latestPublicMessageSide?: ReadonlyArray<import("@solibo/solibo-sdk").
|
|
87
|
+
latestPublicMessageSide?: ReadonlyArray<import("@solibo/solibo-sdk").ConversationMessageSide | "BOARD" | "NON_BOARD" | "NONE"> | null | undefined;
|
|
88
88
|
hasAttachments?: boolean | null | undefined;
|
|
89
89
|
onlyRoot?: boolean | null | undefined;
|
|
90
90
|
createdSince?: Id | null | undefined;
|
|
91
91
|
updatedSince?: Id | null | undefined;
|
|
92
92
|
flaggedByCurrentUser?: boolean | null | undefined;
|
|
93
93
|
readByCurrentUser?: boolean | null | undefined;
|
|
94
|
-
orderBy?: import("@solibo/solibo-sdk").
|
|
95
|
-
orderDirection?: import("@solibo/solibo-sdk").
|
|
94
|
+
orderBy?: import("@solibo/solibo-sdk").ConversationOrderBy | "LATEST_ACTIVITY_AT" | "CONVERSATION_STARTED_AT" | "LATEST_MESSAGE_AT" | "LATEST_EVENT_AT" | null | undefined;
|
|
95
|
+
orderDirection?: import("@solibo/solibo-sdk").ConversationOrderDirection | "ASC" | "DESC" | null | undefined;
|
|
96
96
|
pageToken?: string | null | undefined;
|
|
97
97
|
count?: number | null | undefined;
|
|
98
98
|
autoPaginate?: boolean | null | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solibo/solibo-query",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.13",
|
|
4
4
|
"description": "Framework-agnostic TanStack Query options for Solibo SDK",
|
|
5
5
|
"homepage": "https://sdk.solibo.no",
|
|
6
6
|
"repository": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"buffer": "^6.0.3",
|
|
36
36
|
"hash-wasm": "^4.12.0",
|
|
37
37
|
"mime-types": "^3.0.2",
|
|
38
|
-
"@solibo/solibo-sdk": "1.15.
|
|
38
|
+
"@solibo/solibo-sdk": "1.15.13"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@eslint/js": "^10.0.1",
|