@kanvas/openclaw-plugin 0.1.14 → 0.1.15
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.
|
@@ -396,7 +396,7 @@ export class CrmService {
|
|
|
396
396
|
}
|
|
397
397
|
async listLeadMessages(channelSlug, first = 50, page = 1) {
|
|
398
398
|
const query = `
|
|
399
|
-
query LeadMessages($first: Int, $page: Int, $channelSlug:
|
|
399
|
+
query LeadMessages($first: Int, $page: Int, $channelSlug: Mixed!) {
|
|
400
400
|
messages(
|
|
401
401
|
first: $first
|
|
402
402
|
page: $page
|
|
@@ -39,8 +39,10 @@ export class SocialService {
|
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
custom_fields {
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
data {
|
|
43
|
+
name
|
|
44
|
+
value
|
|
45
|
+
}
|
|
44
46
|
}
|
|
45
47
|
}
|
|
46
48
|
}
|
|
@@ -70,7 +72,6 @@ export class SocialService {
|
|
|
70
72
|
is_public
|
|
71
73
|
is_locked
|
|
72
74
|
created_at
|
|
73
|
-
updated_at
|
|
74
75
|
parent {
|
|
75
76
|
id
|
|
76
77
|
uuid
|
|
@@ -126,8 +127,10 @@ export class SocialService {
|
|
|
126
127
|
}
|
|
127
128
|
}
|
|
128
129
|
custom_fields {
|
|
129
|
-
|
|
130
|
-
|
|
130
|
+
data {
|
|
131
|
+
name
|
|
132
|
+
value
|
|
133
|
+
}
|
|
131
134
|
}
|
|
132
135
|
}
|
|
133
136
|
}
|
|
@@ -147,7 +150,6 @@ export class SocialService {
|
|
|
147
150
|
message
|
|
148
151
|
is_public
|
|
149
152
|
is_locked
|
|
150
|
-
updated_at
|
|
151
153
|
messageType {
|
|
152
154
|
id
|
|
153
155
|
name
|
|
@@ -160,8 +162,10 @@ export class SocialService {
|
|
|
160
162
|
}
|
|
161
163
|
}
|
|
162
164
|
custom_fields {
|
|
163
|
-
|
|
164
|
-
|
|
165
|
+
data {
|
|
166
|
+
name
|
|
167
|
+
value
|
|
168
|
+
}
|
|
165
169
|
}
|
|
166
170
|
}
|
|
167
171
|
}
|
package/package.json
CHANGED