profoundai 0.35.1 → 0.36.0
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/CHANGELOG.md +25 -0
- package/client.d.mts +13 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +13 -2
- package/client.d.ts.map +1 -1
- package/client.js +3 -0
- package/client.js.map +1 -1
- package/client.mjs +3 -0
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/index.d.mts +2 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +2 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/resources/logs/raw.d.mts +1 -17
- package/resources/logs/raw.d.mts.map +1 -1
- package/resources/logs/raw.d.ts +1 -17
- package/resources/logs/raw.d.ts.map +1 -1
- package/resources/prompt-volumes.d.mts +112 -0
- package/resources/prompt-volumes.d.mts.map +1 -0
- package/resources/prompt-volumes.d.ts +112 -0
- package/resources/prompt-volumes.d.ts.map +1 -0
- package/resources/prompt-volumes.js +21 -0
- package/resources/prompt-volumes.js.map +1 -0
- package/resources/prompt-volumes.mjs +17 -0
- package/resources/prompt-volumes.mjs.map +1 -0
- package/resources/prompts.d.mts +1 -46
- package/resources/prompts.d.mts.map +1 -1
- package/resources/prompts.d.ts +1 -46
- package/resources/prompts.d.ts.map +1 -1
- package/resources/reports.d.mts +229 -147
- package/resources/reports.d.mts.map +1 -1
- package/resources/reports.d.ts +229 -147
- package/resources/reports.d.ts.map +1 -1
- package/resources/reports.js +68 -0
- package/resources/reports.js.map +1 -1
- package/resources/reports.mjs +68 -0
- package/resources/reports.mjs.map +1 -1
- package/resources/shared.d.mts +76 -0
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +76 -0
- package/resources/shared.d.ts.map +1 -1
- package/src/client.ts +33 -0
- package/src/resources/index.ts +11 -0
- package/src/resources/logs/raw.ts +2 -136
- package/src/resources/prompt-volumes.ts +203 -0
- package/src/resources/prompts.ts +6 -78
- package/src/resources/reports.ts +322 -299
- package/src/resources/shared.ts +221 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/shared.ts
CHANGED
|
@@ -20,6 +20,154 @@ export interface AssetNameFilter {
|
|
|
20
20
|
value: string | Array<string>;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
/**
|
|
24
|
+
* Filter by bot name (user agent)
|
|
25
|
+
*/
|
|
26
|
+
export interface BotNameFilter {
|
|
27
|
+
field: 'bot_name';
|
|
28
|
+
|
|
29
|
+
operator:
|
|
30
|
+
| 'is'
|
|
31
|
+
| 'not_is'
|
|
32
|
+
| 'in'
|
|
33
|
+
| 'not_in'
|
|
34
|
+
| 'contains'
|
|
35
|
+
| 'not_contains'
|
|
36
|
+
| 'matches'
|
|
37
|
+
| 'contains_case_insensitive'
|
|
38
|
+
| 'not_contains_case_insensitive';
|
|
39
|
+
|
|
40
|
+
value:
|
|
41
|
+
| 'Amazonbot'
|
|
42
|
+
| 'ClaudeBot'
|
|
43
|
+
| 'Claude-User'
|
|
44
|
+
| 'Claude-SearchBot'
|
|
45
|
+
| 'Applebot'
|
|
46
|
+
| 'Applebot-Extended'
|
|
47
|
+
| 'Bytespider'
|
|
48
|
+
| 'DeepSeek'
|
|
49
|
+
| 'DuckAssistBot'
|
|
50
|
+
| 'DuckDuckBot'
|
|
51
|
+
| 'Googlebot'
|
|
52
|
+
| 'Googlebot-News'
|
|
53
|
+
| 'Googlebot-Video'
|
|
54
|
+
| 'Googlebot-Image'
|
|
55
|
+
| 'Google-Extended'
|
|
56
|
+
| 'Storebot-Google'
|
|
57
|
+
| 'Google-CloudVertexBot'
|
|
58
|
+
| 'meta-externalfetcher'
|
|
59
|
+
| 'meta-externalagent'
|
|
60
|
+
| 'bingbot'
|
|
61
|
+
| 'MicrosoftPreview'
|
|
62
|
+
| 'ChatGPT-User'
|
|
63
|
+
| 'GPTBot'
|
|
64
|
+
| 'OAI-SearchBot'
|
|
65
|
+
| 'OAI-Operator'
|
|
66
|
+
| 'PerplexityBot'
|
|
67
|
+
| 'Perplexity-User'
|
|
68
|
+
| 'Grok-PageBrowser'
|
|
69
|
+
| 'YouBot'
|
|
70
|
+
| Array<
|
|
71
|
+
| 'Amazonbot'
|
|
72
|
+
| 'ClaudeBot'
|
|
73
|
+
| 'Claude-User'
|
|
74
|
+
| 'Claude-SearchBot'
|
|
75
|
+
| 'Applebot'
|
|
76
|
+
| 'Applebot-Extended'
|
|
77
|
+
| 'Bytespider'
|
|
78
|
+
| 'DeepSeek'
|
|
79
|
+
| 'DuckAssistBot'
|
|
80
|
+
| 'DuckDuckBot'
|
|
81
|
+
| 'Googlebot'
|
|
82
|
+
| 'Googlebot-News'
|
|
83
|
+
| 'Googlebot-Video'
|
|
84
|
+
| 'Googlebot-Image'
|
|
85
|
+
| 'Google-Extended'
|
|
86
|
+
| 'Storebot-Google'
|
|
87
|
+
| 'Google-CloudVertexBot'
|
|
88
|
+
| 'meta-externalfetcher'
|
|
89
|
+
| 'meta-externalagent'
|
|
90
|
+
| 'bingbot'
|
|
91
|
+
| 'MicrosoftPreview'
|
|
92
|
+
| 'ChatGPT-User'
|
|
93
|
+
| 'GPTBot'
|
|
94
|
+
| 'OAI-SearchBot'
|
|
95
|
+
| 'OAI-Operator'
|
|
96
|
+
| 'PerplexityBot'
|
|
97
|
+
| 'Perplexity-User'
|
|
98
|
+
| 'Grok-PageBrowser'
|
|
99
|
+
| 'YouBot'
|
|
100
|
+
>;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Filter by bot provider
|
|
105
|
+
*/
|
|
106
|
+
export interface BotProviderFilter {
|
|
107
|
+
field: 'bot_provider';
|
|
108
|
+
|
|
109
|
+
operator:
|
|
110
|
+
| 'is'
|
|
111
|
+
| 'not_is'
|
|
112
|
+
| 'in'
|
|
113
|
+
| 'not_in'
|
|
114
|
+
| 'contains'
|
|
115
|
+
| 'not_contains'
|
|
116
|
+
| 'matches'
|
|
117
|
+
| 'contains_case_insensitive'
|
|
118
|
+
| 'not_contains_case_insensitive';
|
|
119
|
+
|
|
120
|
+
value:
|
|
121
|
+
| 'openai'
|
|
122
|
+
| 'anthropic'
|
|
123
|
+
| 'chatgpt'
|
|
124
|
+
| 'deepseek'
|
|
125
|
+
| 'google'
|
|
126
|
+
| 'microsoft'
|
|
127
|
+
| 'perplexity'
|
|
128
|
+
| 'apple'
|
|
129
|
+
| 'bytedance'
|
|
130
|
+
| 'amazon'
|
|
131
|
+
| 'meta'
|
|
132
|
+
| 'duckduckgo'
|
|
133
|
+
| 'you'
|
|
134
|
+
| 'xai'
|
|
135
|
+
| 'grok'
|
|
136
|
+
| 'gemini'
|
|
137
|
+
| Array<
|
|
138
|
+
| 'openai'
|
|
139
|
+
| 'anthropic'
|
|
140
|
+
| 'chatgpt'
|
|
141
|
+
| 'deepseek'
|
|
142
|
+
| 'google'
|
|
143
|
+
| 'microsoft'
|
|
144
|
+
| 'perplexity'
|
|
145
|
+
| 'apple'
|
|
146
|
+
| 'bytedance'
|
|
147
|
+
| 'amazon'
|
|
148
|
+
| 'meta'
|
|
149
|
+
| 'duckduckgo'
|
|
150
|
+
| 'you'
|
|
151
|
+
| 'xai'
|
|
152
|
+
| 'grok'
|
|
153
|
+
| 'gemini'
|
|
154
|
+
>;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Filter by AI model/platform UUID.
|
|
159
|
+
*/
|
|
160
|
+
export interface ModelIDFilter {
|
|
161
|
+
/**
|
|
162
|
+
* - `model` - Deprecated
|
|
163
|
+
*/
|
|
164
|
+
field: 'model_id' | 'model';
|
|
165
|
+
|
|
166
|
+
operator: 'is' | 'not_is' | 'in' | 'not_in';
|
|
167
|
+
|
|
168
|
+
value: string | Array<string>;
|
|
169
|
+
}
|
|
170
|
+
|
|
23
171
|
/**
|
|
24
172
|
* Report pagination model.
|
|
25
173
|
*/
|
|
@@ -55,6 +203,17 @@ export interface PathFilter {
|
|
|
55
203
|
value: string | Array<string>;
|
|
56
204
|
}
|
|
57
205
|
|
|
206
|
+
/**
|
|
207
|
+
* Filter by persona UUID.
|
|
208
|
+
*/
|
|
209
|
+
export interface PersonaIDFilter {
|
|
210
|
+
field: 'persona_id';
|
|
211
|
+
|
|
212
|
+
operator: 'is' | 'not_is' | 'in' | 'not_in';
|
|
213
|
+
|
|
214
|
+
value: string | Array<string>;
|
|
215
|
+
}
|
|
216
|
+
|
|
58
217
|
/**
|
|
59
218
|
* Filter by prompt text
|
|
60
219
|
*/
|
|
@@ -74,3 +233,65 @@ export interface PromptFilter {
|
|
|
74
233
|
|
|
75
234
|
value: string | Array<string>;
|
|
76
235
|
}
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Filter by prompt type (visibility or sentiment).
|
|
239
|
+
*/
|
|
240
|
+
export interface PromptTypeFilter {
|
|
241
|
+
field: 'prompt_type';
|
|
242
|
+
|
|
243
|
+
operator:
|
|
244
|
+
| 'is'
|
|
245
|
+
| 'not_is'
|
|
246
|
+
| 'in'
|
|
247
|
+
| 'not_in'
|
|
248
|
+
| 'contains'
|
|
249
|
+
| 'not_contains'
|
|
250
|
+
| 'matches'
|
|
251
|
+
| 'contains_case_insensitive'
|
|
252
|
+
| 'not_contains_case_insensitive';
|
|
253
|
+
|
|
254
|
+
value: 'visibility' | 'sentiment' | Array<'visibility' | 'sentiment'>;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* Filter by region UUID.
|
|
259
|
+
*/
|
|
260
|
+
export interface RegionIDFilter {
|
|
261
|
+
/**
|
|
262
|
+
* - `region` - Deprecated
|
|
263
|
+
*/
|
|
264
|
+
field: 'region_id' | 'region';
|
|
265
|
+
|
|
266
|
+
operator: 'is' | 'not_is' | 'in' | 'not_in';
|
|
267
|
+
|
|
268
|
+
value: string | Array<string>;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* Filter by tag (prompt group) UUID.
|
|
273
|
+
*/
|
|
274
|
+
export interface TagIDFilter {
|
|
275
|
+
/**
|
|
276
|
+
* - `tag` - Deprecated
|
|
277
|
+
*/
|
|
278
|
+
field: 'tag_id' | 'tag';
|
|
279
|
+
|
|
280
|
+
operator: 'is' | 'not_is' | 'in' | 'not_in';
|
|
281
|
+
|
|
282
|
+
value: string | Array<string>;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* Filter by topic UUID.
|
|
287
|
+
*/
|
|
288
|
+
export interface TopicIDFilter {
|
|
289
|
+
/**
|
|
290
|
+
* - `topic` - Deprecated
|
|
291
|
+
*/
|
|
292
|
+
field: 'topic_id' | 'topic';
|
|
293
|
+
|
|
294
|
+
operator: 'is' | 'not_is' | 'in' | 'not_in';
|
|
295
|
+
|
|
296
|
+
value: string | Array<string>;
|
|
297
|
+
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.36.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.36.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.36.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.36.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|