@automate.ax/catalog 0.135.0 → 0.136.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/dist/catalog.d.ts +18 -0
- package/dist/catalog.js +9 -0
- package/package.json +1 -1
- package/src/catalog.ts +11 -0
package/dist/catalog.d.ts
CHANGED
|
@@ -242,10 +242,19 @@ export declare const chatgptService: {
|
|
|
242
242
|
readonly placeholder: "Paste your ChatGPT access token";
|
|
243
243
|
readonly required: true;
|
|
244
244
|
}];
|
|
245
|
+
readonly credentialUrl: "https://developers.openai.com/workspace-agents/authentication";
|
|
245
246
|
readonly id: "access-token";
|
|
246
247
|
readonly name: "Access token";
|
|
247
248
|
readonly type: "form";
|
|
248
249
|
}];
|
|
250
|
+
readonly connectionNotice: {
|
|
251
|
+
readonly action: {
|
|
252
|
+
readonly href: "https://developers.openai.com/workspace-agents/authentication";
|
|
253
|
+
readonly label: "Review access-token setup";
|
|
254
|
+
};
|
|
255
|
+
readonly description: "A ChatGPT workspace admin must enable Workspace agents and personal access tokens before you can create this token.";
|
|
256
|
+
readonly title: "Workspace Agent access required";
|
|
257
|
+
};
|
|
249
258
|
readonly description: "Connect a Workspace Agent access token.";
|
|
250
259
|
readonly icon: "openai";
|
|
251
260
|
readonly id: "chatgpt";
|
|
@@ -1201,10 +1210,19 @@ export declare const integrationCatalog: readonly [{
|
|
|
1201
1210
|
readonly placeholder: "Paste your ChatGPT access token";
|
|
1202
1211
|
readonly required: true;
|
|
1203
1212
|
}];
|
|
1213
|
+
readonly credentialUrl: "https://developers.openai.com/workspace-agents/authentication";
|
|
1204
1214
|
readonly id: "access-token";
|
|
1205
1215
|
readonly name: "Access token";
|
|
1206
1216
|
readonly type: "form";
|
|
1207
1217
|
}];
|
|
1218
|
+
readonly connectionNotice: {
|
|
1219
|
+
readonly action: {
|
|
1220
|
+
readonly href: "https://developers.openai.com/workspace-agents/authentication";
|
|
1221
|
+
readonly label: "Review access-token setup";
|
|
1222
|
+
};
|
|
1223
|
+
readonly description: "A ChatGPT workspace admin must enable Workspace agents and personal access tokens before you can create this token.";
|
|
1224
|
+
readonly title: "Workspace Agent access required";
|
|
1225
|
+
};
|
|
1208
1226
|
readonly description: "Connect a Workspace Agent access token.";
|
|
1209
1227
|
readonly icon: "openai";
|
|
1210
1228
|
readonly id: "chatgpt";
|
package/dist/catalog.js
CHANGED
|
@@ -192,11 +192,20 @@ export const chatgptService = defineIntegrationService({
|
|
|
192
192
|
required: true,
|
|
193
193
|
},
|
|
194
194
|
],
|
|
195
|
+
credentialUrl: "https://developers.openai.com/workspace-agents/authentication",
|
|
195
196
|
id: "access-token",
|
|
196
197
|
name: "Access token",
|
|
197
198
|
type: "form",
|
|
198
199
|
},
|
|
199
200
|
],
|
|
201
|
+
connectionNotice: {
|
|
202
|
+
action: {
|
|
203
|
+
href: "https://developers.openai.com/workspace-agents/authentication",
|
|
204
|
+
label: "Review access-token setup",
|
|
205
|
+
},
|
|
206
|
+
description: "A ChatGPT workspace admin must enable Workspace agents and personal access tokens before you can create this token.",
|
|
207
|
+
title: "Workspace Agent access required",
|
|
208
|
+
},
|
|
200
209
|
description: "Connect a Workspace Agent access token.",
|
|
201
210
|
icon: "openai",
|
|
202
211
|
id: "chatgpt",
|
package/package.json
CHANGED
package/src/catalog.ts
CHANGED
|
@@ -211,11 +211,22 @@ export const chatgptService = defineIntegrationService({
|
|
|
211
211
|
required: true,
|
|
212
212
|
},
|
|
213
213
|
],
|
|
214
|
+
credentialUrl:
|
|
215
|
+
"https://developers.openai.com/workspace-agents/authentication",
|
|
214
216
|
id: "access-token",
|
|
215
217
|
name: "Access token",
|
|
216
218
|
type: "form",
|
|
217
219
|
},
|
|
218
220
|
],
|
|
221
|
+
connectionNotice: {
|
|
222
|
+
action: {
|
|
223
|
+
href: "https://developers.openai.com/workspace-agents/authentication",
|
|
224
|
+
label: "Review access-token setup",
|
|
225
|
+
},
|
|
226
|
+
description:
|
|
227
|
+
"A ChatGPT workspace admin must enable Workspace agents and personal access tokens before you can create this token.",
|
|
228
|
+
title: "Workspace Agent access required",
|
|
229
|
+
},
|
|
219
230
|
description: "Connect a Workspace Agent access token.",
|
|
220
231
|
icon: "openai",
|
|
221
232
|
id: "chatgpt",
|