@uptiqai/integrations-sdk 1.0.5 → 1.0.7
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/generated-api.d.ts +1124 -312
- package/dist/generated-api.d.ts.map +1 -1
- package/dist/generated-api.js +490 -93
- package/dist/generated-api.js.map +1 -1
- package/dist/http-client.js +3 -3
- package/dist/http-client.js.map +1 -1
- package/dist/index.d.ts +150 -114
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +268 -83
- package/dist/index.js.map +1 -1
- package/dist/response-type-map.d.ts.map +1 -1
- package/dist/response-type-map.js +108 -18
- package/dist/response-type-map.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.
|
|
17
|
+
exports.TwilioWhatsapp = exports.Stripe = exports.Resend = exports.Openai = exports.GoogleOAuth = exports.GoogleGenerativeAI = exports.GoogleCloudStorage = exports.Gmail = exports.AzureBlobStorage = exports.AwsS3 = exports.Anthropic = void 0;
|
|
18
18
|
const generated_api_1 = require("./generated-api");
|
|
19
19
|
/**
|
|
20
20
|
* UPTIQ Integrations SDK
|
|
@@ -23,143 +23,328 @@ const generated_api_1 = require("./generated-api");
|
|
|
23
23
|
* Do not edit this file manually - it will be overwritten on next generation.
|
|
24
24
|
*/
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Anthropic integration module
|
|
27
27
|
*/
|
|
28
|
-
class
|
|
29
|
-
constructor(
|
|
30
|
-
// Store config for this instance
|
|
31
|
-
this.config = options;
|
|
28
|
+
class Anthropic {
|
|
29
|
+
constructor() {
|
|
32
30
|
// Get the generated API methods
|
|
33
31
|
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
34
32
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
return this.
|
|
33
|
+
/** Store per-user Anthropic credentials */
|
|
34
|
+
setUserCredentials(body) {
|
|
35
|
+
return this.api.anthropicSetUserCredentials(body);
|
|
38
36
|
}
|
|
39
|
-
/**
|
|
37
|
+
/** Generate text with Anthropic */
|
|
38
|
+
generateText(body) {
|
|
39
|
+
return this.api.anthropicGenerateText(body);
|
|
40
|
+
}
|
|
41
|
+
/** Stream text generation with Anthropic */
|
|
42
|
+
createStream(body) {
|
|
43
|
+
return this.api.anthropicCreateStream(body);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.Anthropic = Anthropic;
|
|
47
|
+
/**
|
|
48
|
+
* AwsS3 integration module
|
|
49
|
+
*/
|
|
50
|
+
class AwsS3 {
|
|
51
|
+
constructor() {
|
|
52
|
+
// Get the generated API methods
|
|
53
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
54
|
+
}
|
|
55
|
+
/** Store per-user AWS S3 credentials */
|
|
56
|
+
setUserCredentials(body) {
|
|
57
|
+
return this.api.awsS3SetUserCredentials(body);
|
|
58
|
+
}
|
|
59
|
+
/** Upload data to storage */
|
|
60
|
+
uploadData(body) {
|
|
61
|
+
return this.api.awsS3UploadData(body);
|
|
62
|
+
}
|
|
63
|
+
/** Delete a file from storage */
|
|
64
|
+
deleteFile(body) {
|
|
65
|
+
return this.api.awsS3DeleteFile(body);
|
|
66
|
+
}
|
|
67
|
+
/** Check if a document exists */
|
|
68
|
+
documentExists(body) {
|
|
69
|
+
return this.api.awsS3DocumentExists(body);
|
|
70
|
+
}
|
|
71
|
+
/** Generate a signed URL for downloading */
|
|
72
|
+
generateDownloadSignedUrl(body) {
|
|
73
|
+
return this.api.awsS3GenerateDownloadSignedUrl(body);
|
|
74
|
+
}
|
|
75
|
+
/** Get file content as base64 */
|
|
76
|
+
getData(body) {
|
|
77
|
+
return this.api.awsS3GetData(body);
|
|
78
|
+
}
|
|
79
|
+
/** Generate a signed URL for uploading */
|
|
80
|
+
generateUploadSignedUrl(body) {
|
|
81
|
+
return this.api.awsS3GenerateUploadSignedUrl(body);
|
|
82
|
+
}
|
|
83
|
+
/** Copy a file within storage */
|
|
84
|
+
copyFile(body) {
|
|
85
|
+
return this.api.awsS3CopyFile(body);
|
|
86
|
+
}
|
|
87
|
+
/** Get file metadata (e.g. size) */
|
|
88
|
+
getFileMetadata(body) {
|
|
89
|
+
return this.api.awsS3GetFileMetadata(body);
|
|
90
|
+
}
|
|
91
|
+
/** Upload a file via multipart/form-data */
|
|
92
|
+
uploadFile(body) {
|
|
93
|
+
return this.api.awsS3UploadFile(body);
|
|
94
|
+
}
|
|
95
|
+
/** Stream file content */
|
|
96
|
+
createReadStream(body) {
|
|
97
|
+
return this.api.awsS3CreateReadStream(body);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
exports.AwsS3 = AwsS3;
|
|
101
|
+
/**
|
|
102
|
+
* AzureBlobStorage integration module
|
|
103
|
+
*/
|
|
104
|
+
class AzureBlobStorage {
|
|
105
|
+
constructor() {
|
|
106
|
+
// Get the generated API methods
|
|
107
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
108
|
+
}
|
|
109
|
+
/** Store per-user Azure Blob Storage credentials */
|
|
110
|
+
setUserCredentials(body) {
|
|
111
|
+
return this.api.azureBlobStorageSetUserCredentials(body);
|
|
112
|
+
}
|
|
113
|
+
/** Upload data to storage */
|
|
114
|
+
uploadData(body) {
|
|
115
|
+
return this.api.azureBlobStorageUploadData(body);
|
|
116
|
+
}
|
|
117
|
+
/** Delete a file from storage */
|
|
118
|
+
deleteFile(body) {
|
|
119
|
+
return this.api.azureBlobStorageDeleteFile(body);
|
|
120
|
+
}
|
|
121
|
+
/** Check if a document exists */
|
|
122
|
+
documentExists(body) {
|
|
123
|
+
return this.api.azureBlobStorageDocumentExists(body);
|
|
124
|
+
}
|
|
125
|
+
/** Generate a signed URL for downloading */
|
|
126
|
+
generateDownloadSignedUrl(body) {
|
|
127
|
+
return this.api.azureBlobStorageGenerateDownloadSignedUrl(body);
|
|
128
|
+
}
|
|
129
|
+
/** Get file content as base64 */
|
|
130
|
+
getData(body) {
|
|
131
|
+
return this.api.azureBlobStorageGetData(body);
|
|
132
|
+
}
|
|
133
|
+
/** Generate a signed URL for uploading */
|
|
134
|
+
generateUploadSignedUrl(body) {
|
|
135
|
+
return this.api.azureBlobStorageGenerateUploadSignedUrl(body);
|
|
136
|
+
}
|
|
137
|
+
/** Copy a file within storage */
|
|
138
|
+
copyFile(body) {
|
|
139
|
+
return this.api.azureBlobStorageCopyFile(body);
|
|
140
|
+
}
|
|
141
|
+
/** Get file metadata (e.g. size) */
|
|
142
|
+
getFileMetadata(body) {
|
|
143
|
+
return this.api.azureBlobStorageGetFileMetadata(body);
|
|
144
|
+
}
|
|
145
|
+
/** Upload a file via multipart/form-data */
|
|
146
|
+
uploadFile(body) {
|
|
147
|
+
return this.api.azureBlobStorageUploadFile(body);
|
|
148
|
+
}
|
|
149
|
+
/** Stream file content */
|
|
150
|
+
createReadStream(body) {
|
|
151
|
+
return this.api.azureBlobStorageCreateReadStream(body);
|
|
152
|
+
}
|
|
153
|
+
createWriteStream(...args) {
|
|
154
|
+
return this.api.azureBlobStorageCreateWriteStream(...args);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
exports.AzureBlobStorage = AzureBlobStorage;
|
|
158
|
+
/**
|
|
159
|
+
* Gmail integration module
|
|
160
|
+
*/
|
|
161
|
+
class Gmail {
|
|
162
|
+
constructor() {
|
|
163
|
+
// Get the generated API methods
|
|
164
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
165
|
+
}
|
|
166
|
+
/** Start Gmail OAuth flow */
|
|
167
|
+
authStart(body) {
|
|
168
|
+
return this.api.gmailAuthStart(body);
|
|
169
|
+
}
|
|
170
|
+
oauthCallback(...args) {
|
|
171
|
+
return this.api.gmailOauthCallback(...args);
|
|
172
|
+
}
|
|
173
|
+
/** Send an email via Gmail */
|
|
40
174
|
sendEmail(body) {
|
|
41
|
-
return this.api.
|
|
175
|
+
return this.api.gmailSendEmail(body);
|
|
42
176
|
}
|
|
43
177
|
}
|
|
44
|
-
exports.
|
|
178
|
+
exports.Gmail = Gmail;
|
|
45
179
|
/**
|
|
46
|
-
*
|
|
180
|
+
* GoogleCloudStorage integration module
|
|
47
181
|
*/
|
|
48
|
-
class
|
|
49
|
-
constructor(
|
|
50
|
-
// Store config for this instance
|
|
51
|
-
this.config = options;
|
|
182
|
+
class GoogleCloudStorage {
|
|
183
|
+
constructor() {
|
|
52
184
|
// Get the generated API methods
|
|
53
185
|
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
54
186
|
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
return this.
|
|
187
|
+
/** Store per-user Google Cloud Storage credentials */
|
|
188
|
+
setUserCredentials(body) {
|
|
189
|
+
return this.api.googleCloudStorageSetUserCredentials(body);
|
|
190
|
+
}
|
|
191
|
+
/** Upload data to storage */
|
|
192
|
+
uploadData(body) {
|
|
193
|
+
return this.api.googleCloudStorageUploadData(body);
|
|
194
|
+
}
|
|
195
|
+
/** Delete a file from storage */
|
|
196
|
+
deleteFile(body) {
|
|
197
|
+
return this.api.googleCloudStorageDeleteFile(body);
|
|
198
|
+
}
|
|
199
|
+
/** Check if a document exists */
|
|
200
|
+
documentExists(body) {
|
|
201
|
+
return this.api.googleCloudStorageDocumentExists(body);
|
|
58
202
|
}
|
|
59
|
-
/** Generate
|
|
60
|
-
|
|
61
|
-
return this.api.
|
|
203
|
+
/** Generate a signed URL for downloading */
|
|
204
|
+
generateDownloadSignedUrl(body) {
|
|
205
|
+
return this.api.googleCloudStorageGenerateDownloadSignedUrl(body);
|
|
206
|
+
}
|
|
207
|
+
/** Get file content as base64 */
|
|
208
|
+
getData(body) {
|
|
209
|
+
return this.api.googleCloudStorageGetData(body);
|
|
210
|
+
}
|
|
211
|
+
/** Generate a signed URL for uploading */
|
|
212
|
+
generateUploadSignedUrl(body) {
|
|
213
|
+
return this.api.googleCloudStorageGenerateUploadSignedUrl(body);
|
|
214
|
+
}
|
|
215
|
+
/** Copy a file within storage */
|
|
216
|
+
copyFile(body) {
|
|
217
|
+
return this.api.googleCloudStorageCopyFile(body);
|
|
218
|
+
}
|
|
219
|
+
/** Get file metadata (e.g. size) */
|
|
220
|
+
getFileMetadata(body) {
|
|
221
|
+
return this.api.googleCloudStorageGetFileMetadata(body);
|
|
222
|
+
}
|
|
223
|
+
/** Upload a file via multipart/form-data */
|
|
224
|
+
uploadFile(body) {
|
|
225
|
+
return this.api.googleCloudStorageUploadFile(body);
|
|
226
|
+
}
|
|
227
|
+
/** Stream file content */
|
|
228
|
+
createReadStream(body) {
|
|
229
|
+
return this.api.googleCloudStorageCreateReadStream(body);
|
|
230
|
+
}
|
|
231
|
+
createWriteStream(...args) {
|
|
232
|
+
return this.api.googleCloudStorageCreateWriteStream(...args);
|
|
62
233
|
}
|
|
63
234
|
}
|
|
64
|
-
exports.
|
|
235
|
+
exports.GoogleCloudStorage = GoogleCloudStorage;
|
|
65
236
|
/**
|
|
66
|
-
*
|
|
237
|
+
* GoogleGenerativeAI integration module
|
|
67
238
|
*/
|
|
68
|
-
class
|
|
69
|
-
constructor(
|
|
70
|
-
// Store config for this instance
|
|
71
|
-
this.config = options;
|
|
239
|
+
class GoogleGenerativeAI {
|
|
240
|
+
constructor() {
|
|
72
241
|
// Get the generated API methods
|
|
73
242
|
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
74
243
|
}
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
return this.
|
|
244
|
+
/** Store per-user Google Generative AI credentials */
|
|
245
|
+
setUserCredentials(body) {
|
|
246
|
+
return this.api.googleGenerativeAISetUserCredentials(body);
|
|
78
247
|
}
|
|
79
|
-
/**
|
|
248
|
+
/** Generate text with GoogleGenerativeAI */
|
|
80
249
|
generateText(body) {
|
|
81
|
-
return this.api.
|
|
250
|
+
return this.api.googleGenerativeAIGenerateText(body);
|
|
82
251
|
}
|
|
83
|
-
/** Stream text generation
|
|
252
|
+
/** Stream text generation with GoogleGenerativeAI */
|
|
84
253
|
createStream(body) {
|
|
85
|
-
return this.api.
|
|
254
|
+
return this.api.googleGenerativeAICreateStream(body);
|
|
86
255
|
}
|
|
87
256
|
}
|
|
88
|
-
exports.
|
|
257
|
+
exports.GoogleGenerativeAI = GoogleGenerativeAI;
|
|
89
258
|
/**
|
|
90
|
-
*
|
|
259
|
+
* GoogleOAuth integration module
|
|
91
260
|
*/
|
|
92
|
-
class
|
|
93
|
-
constructor(
|
|
94
|
-
// Store config for this instance
|
|
95
|
-
this.config = options;
|
|
261
|
+
class GoogleOAuth {
|
|
262
|
+
constructor() {
|
|
96
263
|
// Get the generated API methods
|
|
97
264
|
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
98
265
|
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
return this.
|
|
266
|
+
/** Get Google OAuth authorization URL */
|
|
267
|
+
getAuthorizationUrl(body) {
|
|
268
|
+
return this.api.googleOAuthGetAuthorizationUrl(body);
|
|
102
269
|
}
|
|
103
|
-
/**
|
|
104
|
-
|
|
105
|
-
return this.api.
|
|
270
|
+
/** Handle Google OAuth callback */
|
|
271
|
+
handleOauthCallback(body) {
|
|
272
|
+
return this.api.googleOAuthHandleOauthCallback(body);
|
|
106
273
|
}
|
|
107
274
|
}
|
|
108
|
-
exports.
|
|
275
|
+
exports.GoogleOAuth = GoogleOAuth;
|
|
109
276
|
/**
|
|
110
|
-
*
|
|
277
|
+
* Openai integration module
|
|
111
278
|
*/
|
|
112
|
-
class
|
|
113
|
-
constructor(
|
|
114
|
-
// Store config for this instance
|
|
115
|
-
this.config = options;
|
|
279
|
+
class Openai {
|
|
280
|
+
constructor() {
|
|
116
281
|
// Get the generated API methods
|
|
117
282
|
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
118
283
|
}
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
return this.
|
|
284
|
+
/** Store per-user OpenAI credentials */
|
|
285
|
+
setUserCredentials(body) {
|
|
286
|
+
return this.api.openaiSetUserCredentials(body);
|
|
122
287
|
}
|
|
123
|
-
/**
|
|
124
|
-
|
|
125
|
-
return this.api.
|
|
288
|
+
/** Generate text with OpenAI */
|
|
289
|
+
generateText(body) {
|
|
290
|
+
return this.api.openaiGenerateText(body);
|
|
126
291
|
}
|
|
127
|
-
/**
|
|
128
|
-
|
|
129
|
-
return this.api.
|
|
292
|
+
/** Stream text generation with OpenAI */
|
|
293
|
+
createStream(body) {
|
|
294
|
+
return this.api.openaiCreateStream(body);
|
|
130
295
|
}
|
|
131
296
|
}
|
|
132
|
-
exports.
|
|
297
|
+
exports.Openai = Openai;
|
|
133
298
|
/**
|
|
134
|
-
*
|
|
299
|
+
* Resend integration module
|
|
135
300
|
*/
|
|
136
|
-
class
|
|
137
|
-
constructor(
|
|
138
|
-
// Store config for this instance
|
|
139
|
-
this.config = options;
|
|
301
|
+
class Resend {
|
|
302
|
+
constructor() {
|
|
140
303
|
// Get the generated API methods
|
|
141
304
|
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
142
305
|
}
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
return this.
|
|
306
|
+
/** Store per-user Resend credentials */
|
|
307
|
+
setUserCredentials(body) {
|
|
308
|
+
return this.api.resendSetUserCredentials(body);
|
|
309
|
+
}
|
|
310
|
+
/** Send an email via Resend */
|
|
311
|
+
sendEmail(body) {
|
|
312
|
+
return this.api.resendSendEmail(body);
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
exports.Resend = Resend;
|
|
316
|
+
/**
|
|
317
|
+
* Stripe integration module
|
|
318
|
+
*/
|
|
319
|
+
class Stripe {
|
|
320
|
+
constructor() {
|
|
321
|
+
// Get the generated API methods
|
|
322
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
146
323
|
}
|
|
147
|
-
/** Create a
|
|
324
|
+
/** Create a Stripe checkout session */
|
|
148
325
|
createCheckoutSession(body) {
|
|
149
|
-
return this.api.
|
|
326
|
+
return this.api.stripeCreateCheckoutSession(body);
|
|
150
327
|
}
|
|
151
|
-
/** Verify
|
|
328
|
+
/** Verify a Stripe webhook signature */
|
|
152
329
|
verifyWebhook(body) {
|
|
153
|
-
return this.api.
|
|
330
|
+
return this.api.stripeVerifyWebhook(body);
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
exports.Stripe = Stripe;
|
|
334
|
+
/**
|
|
335
|
+
* TwilioWhatsapp integration module
|
|
336
|
+
*/
|
|
337
|
+
class TwilioWhatsapp {
|
|
338
|
+
constructor() {
|
|
339
|
+
// Get the generated API methods
|
|
340
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
341
|
+
}
|
|
342
|
+
/** Create message */
|
|
343
|
+
createMessage(body) {
|
|
344
|
+
return this.api.twilioWhatsappCreateMessage(body);
|
|
154
345
|
}
|
|
155
346
|
}
|
|
156
|
-
exports.
|
|
347
|
+
exports.TwilioWhatsapp = TwilioWhatsapp;
|
|
157
348
|
// Re-export all types from generated API
|
|
158
349
|
__exportStar(require("./generated-api"), exports);
|
|
159
|
-
exports.EmailProvider = generated_api_1.SendEmailBodyProvider;
|
|
160
|
-
exports.ImageGenerationProvider = generated_api_1.GenerateImageBodyProvider;
|
|
161
|
-
exports.LlmProvider = generated_api_1.GenerateTextBodyProvider;
|
|
162
|
-
exports.MessagingProvider = generated_api_1.CreateMessageBodyProvider;
|
|
163
|
-
exports.OAuthProvider = generated_api_1.GetAuthorizationUrlBodyProvider;
|
|
164
|
-
exports.PaymentProvider = generated_api_1.CreateCheckoutSessionBodyProvider;
|
|
165
350
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,mDAAggG;AAGhgG;;;;;GAKG;AAEH;;GAEG;AACH,MAAa,SAAS;IAGpB;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,2CAA2C;IAC3C,kBAAkB,CAAC,IAAqC;QACtD,OAAO,IAAI,CAAC,GAAG,CAAC,2BAA2B,CAAC,IAAuC,CAAC,CAAC;IACvF,CAAC;IAGD,mCAAmC;IACnC,YAAY,CAAC,IAA+B;QAC1C,OAAO,IAAI,CAAC,GAAG,CAAC,qBAAqB,CAAC,IAAiC,CAAC,CAAC;IAC3E,CAAC;IAGD,4CAA4C;IAC5C,YAAY,CAAC,IAA+B;QAC1C,OAAO,IAAI,CAAC,GAAG,CAAC,qBAAqB,CAAC,IAAiC,CAAsC,CAAC;IAChH,CAAC;CACF;AA1BD,8BA0BC;AAED;;GAEG;AACH,MAAa,KAAK;IAGhB;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,wCAAwC;IACxC,kBAAkB,CAAC,IAAiC;QAClD,OAAO,IAAI,CAAC,GAAG,CAAC,uBAAuB,CAAC,IAAmC,CAAC,CAAC;IAC/E,CAAC;IAGD,6BAA6B;IAC7B,UAAU,CAAC,IAAyB;QAClC,OAAO,IAAI,CAAC,GAAG,CAAC,eAAe,CAAC,IAA2B,CAAC,CAAC;IAC/D,CAAC;IAGD,iCAAiC;IACjC,UAAU,CAAC,IAAyB;QAClC,OAAO,IAAI,CAAC,GAAG,CAAC,eAAe,CAAC,IAA2B,CAAC,CAAC;IAC/D,CAAC;IAGD,iCAAiC;IACjC,cAAc,CAAC,IAA6B;QAC1C,OAAO,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,IAA+B,CAAC,CAAC;IACvE,CAAC;IAGD,4CAA4C;IAC5C,yBAAyB,CAAC,IAAwC;QAChE,OAAO,IAAI,CAAC,GAAG,CAAC,8BAA8B,CAAC,IAA0C,CAAC,CAAC;IAC7F,CAAC;IAGD,iCAAiC;IACjC,OAAO,CAAC,IAAsB;QAC5B,OAAO,IAAI,CAAC,GAAG,CAAC,YAAY,CAAC,IAAwB,CAAC,CAAC;IACzD,CAAC;IAGD,0CAA0C;IAC1C,uBAAuB,CAAC,IAAsC;QAC5D,OAAO,IAAI,CAAC,GAAG,CAAC,4BAA4B,CAAC,IAAwC,CAAC,CAAC;IACzF,CAAC;IAGD,iCAAiC;IACjC,QAAQ,CAAC,IAAuB;QAC9B,OAAO,IAAI,CAAC,GAAG,CAAC,aAAa,CAAC,IAAyB,CAAC,CAAC;IAC3D,CAAC;IAGD,oCAAoC;IACpC,eAAe,CAAC,IAA8B;QAC5C,OAAO,IAAI,CAAC,GAAG,CAAC,oBAAoB,CAAC,IAAgC,CAAC,CAAC;IACzE,CAAC;IAGD,4CAA4C;IAC5C,UAAU,CAAC,IAAyB;QAClC,OAAO,IAAI,CAAC,GAAG,CAAC,eAAe,CAAC,IAA2B,CAAC,CAAC;IAC/D,CAAC;IAGD,0BAA0B;IAC1B,gBAAgB,CAAC,IAA+B;QAC9C,OAAO,IAAI,CAAC,GAAG,CAAC,qBAAqB,CAAC,IAAiC,CAAC,CAAC;IAC3E,CAAC;CACF;AA1ED,sBA0EC;AAED;;GAEG;AACH,MAAa,gBAAgB;IAG3B;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,oDAAoD;IACpD,kBAAkB,CAAC,IAA4C;QAC7D,OAAO,IAAI,CAAC,GAAG,CAAC,kCAAkC,CAAC,IAA8C,CAAC,CAAC;IACrG,CAAC;IAGD,6BAA6B;IAC7B,UAAU,CAAC,IAAoC;QAC7C,OAAO,IAAI,CAAC,GAAG,CAAC,0BAA0B,CAAC,IAAsC,CAAC,CAAC;IACrF,CAAC;IAGD,iCAAiC;IACjC,UAAU,CAAC,IAAoC;QAC7C,OAAO,IAAI,CAAC,GAAG,CAAC,0BAA0B,CAAC,IAAsC,CAAC,CAAC;IACrF,CAAC;IAGD,iCAAiC;IACjC,cAAc,CAAC,IAAwC;QACrD,OAAO,IAAI,CAAC,GAAG,CAAC,8BAA8B,CAAC,IAA0C,CAAC,CAAC;IAC7F,CAAC;IAGD,4CAA4C;IAC5C,yBAAyB,CAAC,IAAmD;QAC3E,OAAO,IAAI,CAAC,GAAG,CAAC,yCAAyC,CAAC,IAAqD,CAAC,CAAC;IACnH,CAAC;IAGD,iCAAiC;IACjC,OAAO,CAAC,IAAiC;QACvC,OAAO,IAAI,CAAC,GAAG,CAAC,uBAAuB,CAAC,IAAmC,CAAC,CAAC;IAC/E,CAAC;IAGD,0CAA0C;IAC1C,uBAAuB,CAAC,IAAiD;QACvE,OAAO,IAAI,CAAC,GAAG,CAAC,uCAAuC,CAAC,IAAmD,CAAC,CAAC;IAC/G,CAAC;IAGD,iCAAiC;IACjC,QAAQ,CAAC,IAAkC;QACzC,OAAO,IAAI,CAAC,GAAG,CAAC,wBAAwB,CAAC,IAAoC,CAAC,CAAC;IACjF,CAAC;IAGD,oCAAoC;IACpC,eAAe,CAAC,IAAyC;QACvD,OAAO,IAAI,CAAC,GAAG,CAAC,+BAA+B,CAAC,IAA2C,CAAC,CAAC;IAC/F,CAAC;IAGD,4CAA4C;IAC5C,UAAU,CAAC,IAAoC;QAC7C,OAAO,IAAI,CAAC,GAAG,CAAC,0BAA0B,CAAC,IAAsC,CAAC,CAAC;IACrF,CAAC;IAGD,0BAA0B;IAC1B,gBAAgB,CAAC,IAA0C;QACzD,OAAO,IAAI,CAAC,GAAG,CAAC,gCAAgC,CAAC,IAA4C,CAAC,CAAC;IACjG,CAAC;IAED,iBAAiB,CAAC,GAAG,IAAmE;QACtF,OAAO,IAAI,CAAC,GAAG,CAAC,iCAAiC,CAAC,GAAG,IAAI,CAAC,CAAC;IAC7D,CAAC;CACF;AA9ED,4CA8EC;AAED;;GAEG;AACH,MAAa,KAAK;IAGhB;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,6BAA6B;IAC7B,SAAS,CAAC,IAAwB;QAChC,OAAO,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,IAA0B,CAAC,CAAC;IAC7D,CAAC;IAED,aAAa,CAAC,GAAG,IAAoD;QACnE,OAAO,IAAI,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC;IAC9C,CAAC;IAGD,8BAA8B;IAC9B,SAAS,CAAC,IAAwB;QAChC,OAAO,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,IAA0B,CAAC,CAAC;IAC7D,CAAC;CACF;AAxBD,sBAwBC;AAED;;GAEG;AACH,MAAa,kBAAkB;IAG7B;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,sDAAsD;IACtD,kBAAkB,CAAC,IAA8C;QAC/D,OAAO,IAAI,CAAC,GAAG,CAAC,oCAAoC,CAAC,IAAgD,CAAC,CAAC;IACzG,CAAC;IAGD,6BAA6B;IAC7B,UAAU,CAAC,IAAsC;QAC/C,OAAO,IAAI,CAAC,GAAG,CAAC,4BAA4B,CAAC,IAAwC,CAAC,CAAC;IACzF,CAAC;IAGD,iCAAiC;IACjC,UAAU,CAAC,IAAsC;QAC/C,OAAO,IAAI,CAAC,GAAG,CAAC,4BAA4B,CAAC,IAAwC,CAAC,CAAC;IACzF,CAAC;IAGD,iCAAiC;IACjC,cAAc,CAAC,IAA0C;QACvD,OAAO,IAAI,CAAC,GAAG,CAAC,gCAAgC,CAAC,IAA4C,CAAC,CAAC;IACjG,CAAC;IAGD,4CAA4C;IAC5C,yBAAyB,CAAC,IAAqD;QAC7E,OAAO,IAAI,CAAC,GAAG,CAAC,2CAA2C,CAAC,IAAuD,CAAC,CAAC;IACvH,CAAC;IAGD,iCAAiC;IACjC,OAAO,CAAC,IAAmC;QACzC,OAAO,IAAI,CAAC,GAAG,CAAC,yBAAyB,CAAC,IAAqC,CAAC,CAAC;IACnF,CAAC;IAGD,0CAA0C;IAC1C,uBAAuB,CAAC,IAAmD;QACzE,OAAO,IAAI,CAAC,GAAG,CAAC,yCAAyC,CAAC,IAAqD,CAAC,CAAC;IACnH,CAAC;IAGD,iCAAiC;IACjC,QAAQ,CAAC,IAAoC;QAC3C,OAAO,IAAI,CAAC,GAAG,CAAC,0BAA0B,CAAC,IAAsC,CAAC,CAAC;IACrF,CAAC;IAGD,oCAAoC;IACpC,eAAe,CAAC,IAA2C;QACzD,OAAO,IAAI,CAAC,GAAG,CAAC,iCAAiC,CAAC,IAA6C,CAAC,CAAC;IACnG,CAAC;IAGD,4CAA4C;IAC5C,UAAU,CAAC,IAAsC;QAC/C,OAAO,IAAI,CAAC,GAAG,CAAC,4BAA4B,CAAC,IAAwC,CAAC,CAAC;IACzF,CAAC;IAGD,0BAA0B;IAC1B,gBAAgB,CAAC,IAA4C;QAC3D,OAAO,IAAI,CAAC,GAAG,CAAC,kCAAkC,CAAC,IAA8C,CAAC,CAAC;IACrG,CAAC;IAED,iBAAiB,CAAC,GAAG,IAAqE;QACxF,OAAO,IAAI,CAAC,GAAG,CAAC,mCAAmC,CAAC,GAAG,IAAI,CAAC,CAAC;IAC/D,CAAC;CACF;AA9ED,gDA8EC;AAED;;GAEG;AACH,MAAa,kBAAkB;IAG7B;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,sDAAsD;IACtD,kBAAkB,CAAC,IAA8C;QAC/D,OAAO,IAAI,CAAC,GAAG,CAAC,oCAAoC,CAAC,IAAgD,CAAC,CAAC;IACzG,CAAC;IAGD,4CAA4C;IAC5C,YAAY,CAAC,IAAwC;QACnD,OAAO,IAAI,CAAC,GAAG,CAAC,8BAA8B,CAAC,IAA0C,CAAC,CAAC;IAC7F,CAAC;IAGD,qDAAqD;IACrD,YAAY,CAAC,IAAwC;QACnD,OAAO,IAAI,CAAC,GAAG,CAAC,8BAA8B,CAAC,IAA0C,CAAsC,CAAC;IAClI,CAAC;CACF;AA1BD,gDA0BC;AAED;;GAEG;AACH,MAAa,WAAW;IAGtB;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,yCAAyC;IACzC,mBAAmB,CAAC,IAAwC;QAC1D,OAAO,IAAI,CAAC,GAAG,CAAC,8BAA8B,CAAC,IAA0C,CAAC,CAAC;IAC7F,CAAC;IAGD,mCAAmC;IACnC,mBAAmB,CAAC,IAAwC;QAC1D,OAAO,IAAI,CAAC,GAAG,CAAC,8BAA8B,CAAC,IAA0C,CAAC,CAAC;IAC7F,CAAC;CACF;AApBD,kCAoBC;AAED;;GAEG;AACH,MAAa,MAAM;IAGjB;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,wCAAwC;IACxC,kBAAkB,CAAC,IAAkC;QACnD,OAAO,IAAI,CAAC,GAAG,CAAC,wBAAwB,CAAC,IAAoC,CAAC,CAAC;IACjF,CAAC;IAGD,gCAAgC;IAChC,YAAY,CAAC,IAA4B;QACvC,OAAO,IAAI,CAAC,GAAG,CAAC,kBAAkB,CAAC,IAA8B,CAAC,CAAC;IACrE,CAAC;IAGD,yCAAyC;IACzC,YAAY,CAAC,IAA4B;QACvC,OAAO,IAAI,CAAC,GAAG,CAAC,kBAAkB,CAAC,IAA8B,CAAsC,CAAC;IAC1G,CAAC;CACF;AA1BD,wBA0BC;AAED;;GAEG;AACH,MAAa,MAAM;IAGjB;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,wCAAwC;IACxC,kBAAkB,CAAC,IAAkC;QACnD,OAAO,IAAI,CAAC,GAAG,CAAC,wBAAwB,CAAC,IAAoC,CAAC,CAAC;IACjF,CAAC;IAGD,+BAA+B;IAC/B,SAAS,CAAC,IAAyB;QACjC,OAAO,IAAI,CAAC,GAAG,CAAC,eAAe,CAAC,IAA2B,CAAC,CAAC;IAC/D,CAAC;CACF;AApBD,wBAoBC;AAED;;GAEG;AACH,MAAa,MAAM;IAGjB;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,uCAAuC;IACvC,qBAAqB,CAAC,IAAqC;QACzD,OAAO,IAAI,CAAC,GAAG,CAAC,2BAA2B,CAAC,IAAuC,CAAC,CAAC;IACvF,CAAC;IAGD,wCAAwC;IACxC,aAAa,CAAC,IAA6B;QACzC,OAAO,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,IAA+B,CAAC,CAAC;IACvE,CAAC;CACF;AApBD,wBAoBC;AAED;;GAEG;AACH,MAAa,cAAc;IAGzB;QACE,gCAAgC;QAChC,IAAI,CAAC,GAAG,GAAG,IAAA,kCAAkB,GAAE,CAAC;IAClC,CAAC;IAID,qBAAqB;IACrB,aAAa,CAAC,IAAqC;QACjD,OAAO,IAAI,CAAC,GAAG,CAAC,2BAA2B,CAAC,IAAuC,CAAC,CAAC;IACvF,CAAC;CACF;AAdD,wCAcC;AAED,yCAAyC;AACzC,kDAAgC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"response-type-map.d.ts","sourceRoot":"","sources":["../src/response-type-map.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,QAAQ,GAAG,aAAa,
|
|
1
|
+
{"version":3,"file":"response-type-map.d.ts","sourceRoot":"","sources":["../src/response-type-map.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,QAAQ,GAAG,aAAa,CAuD/E,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAuDlD,CAAC;AAEF;;GAEG;AACH,wBAAgB,eAAe,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,GAAG,aAAa,CAEtF;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,GAAG,aAAa,CAsBrF"}
|
|
@@ -12,26 +12,116 @@ exports.OPERATION_PATHS = exports.RESPONSE_TYPE_MAP = void 0;
|
|
|
12
12
|
exports.getResponseType = getResponseType;
|
|
13
13
|
exports.getResponseTypeFromUrl = getResponseTypeFromUrl;
|
|
14
14
|
exports.RESPONSE_TYPE_MAP = {
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
15
|
+
"anthropic-set-user-credentials": "json",
|
|
16
|
+
"anthropic-generate-text": "json",
|
|
17
|
+
"anthropic-create-stream": "stream",
|
|
18
|
+
"awsS3-set-user-credentials": "json",
|
|
19
|
+
"awsS3-upload-data": "json",
|
|
20
|
+
"awsS3-delete-file": "json",
|
|
21
|
+
"awsS3-document-exists": "json",
|
|
22
|
+
"awsS3-generate-download-signed-url": "json",
|
|
23
|
+
"awsS3-get-data": "json",
|
|
24
|
+
"awsS3-generate-upload-signed-url": "json",
|
|
25
|
+
"awsS3-copy-file": "json",
|
|
26
|
+
"awsS3-get-file-metadata": "json",
|
|
27
|
+
"awsS3-upload-file": "json",
|
|
28
|
+
"awsS3-create-read-stream": "json",
|
|
29
|
+
"azureBlobStorage-set-user-credentials": "json",
|
|
30
|
+
"azureBlobStorage-upload-data": "json",
|
|
31
|
+
"azureBlobStorage-delete-file": "json",
|
|
32
|
+
"azureBlobStorage-document-exists": "json",
|
|
33
|
+
"azureBlobStorage-generate-download-signed-url": "json",
|
|
34
|
+
"azureBlobStorage-get-data": "json",
|
|
35
|
+
"azureBlobStorage-generate-upload-signed-url": "json",
|
|
36
|
+
"azureBlobStorage-copy-file": "json",
|
|
37
|
+
"azureBlobStorage-get-file-metadata": "json",
|
|
38
|
+
"azureBlobStorage-upload-file": "json",
|
|
39
|
+
"azureBlobStorage-create-read-stream": "json",
|
|
40
|
+
"azureBlobStorage-create-write-stream": "json",
|
|
41
|
+
"gmail-auth-start": "json",
|
|
42
|
+
"gmail-oauth-callback": "json",
|
|
43
|
+
"gmail-send-email": "json",
|
|
44
|
+
"googleCloudStorage-set-user-credentials": "json",
|
|
45
|
+
"googleCloudStorage-upload-data": "json",
|
|
46
|
+
"googleCloudStorage-delete-file": "json",
|
|
47
|
+
"googleCloudStorage-document-exists": "json",
|
|
48
|
+
"googleCloudStorage-generate-download-signed-url": "json",
|
|
49
|
+
"googleCloudStorage-get-data": "json",
|
|
50
|
+
"googleCloudStorage-generate-upload-signed-url": "json",
|
|
51
|
+
"googleCloudStorage-copy-file": "json",
|
|
52
|
+
"googleCloudStorage-get-file-metadata": "json",
|
|
53
|
+
"googleCloudStorage-upload-file": "json",
|
|
54
|
+
"googleCloudStorage-create-read-stream": "json",
|
|
55
|
+
"googleCloudStorage-create-write-stream": "json",
|
|
56
|
+
"googleGenerativeAI-set-user-credentials": "json",
|
|
57
|
+
"googleGenerativeAI-generate-text": "json",
|
|
58
|
+
"googleGenerativeAI-create-stream": "stream",
|
|
59
|
+
"googleOAuth-get-authorization-url": "json",
|
|
60
|
+
"googleOAuth-handle-oauth-callback": "json",
|
|
61
|
+
"openai-set-user-credentials": "json",
|
|
62
|
+
"openai-generate-text": "json",
|
|
63
|
+
"openai-create-stream": "stream",
|
|
64
|
+
"resend-set-user-credentials": "json",
|
|
65
|
+
"resend-send-email": "json",
|
|
66
|
+
"stripe-create-checkout-session": "json",
|
|
67
|
+
"stripe-verify-webhook": "json",
|
|
68
|
+
"twilioWhatsapp-create-message": "json"
|
|
24
69
|
};
|
|
25
70
|
exports.OPERATION_PATHS = {
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
71
|
+
"anthropic-set-user-credentials": "/anthropic/set-user-credentials",
|
|
72
|
+
"anthropic-generate-text": "/anthropic/generate-text",
|
|
73
|
+
"anthropic-create-stream": "/anthropic/create-stream",
|
|
74
|
+
"awsS3-set-user-credentials": "/awsS3/set-user-credentials",
|
|
75
|
+
"awsS3-upload-data": "/awsS3/upload-data",
|
|
76
|
+
"awsS3-delete-file": "/awsS3/delete-file",
|
|
77
|
+
"awsS3-document-exists": "/awsS3/document-exists",
|
|
78
|
+
"awsS3-generate-download-signed-url": "/awsS3/generate-download-signed-url",
|
|
79
|
+
"awsS3-get-data": "/awsS3/get-data",
|
|
80
|
+
"awsS3-generate-upload-signed-url": "/awsS3/generate-upload-signed-url",
|
|
81
|
+
"awsS3-copy-file": "/awsS3/copy-file",
|
|
82
|
+
"awsS3-get-file-metadata": "/awsS3/get-file-metadata",
|
|
83
|
+
"awsS3-upload-file": "/awsS3/upload-file",
|
|
84
|
+
"awsS3-create-read-stream": "/awsS3/create-read-stream",
|
|
85
|
+
"azureBlobStorage-set-user-credentials": "/azureBlobStorage/set-user-credentials",
|
|
86
|
+
"azureBlobStorage-upload-data": "/azureBlobStorage/upload-data",
|
|
87
|
+
"azureBlobStorage-delete-file": "/azureBlobStorage/delete-file",
|
|
88
|
+
"azureBlobStorage-document-exists": "/azureBlobStorage/document-exists",
|
|
89
|
+
"azureBlobStorage-generate-download-signed-url": "/azureBlobStorage/generate-download-signed-url",
|
|
90
|
+
"azureBlobStorage-get-data": "/azureBlobStorage/get-data",
|
|
91
|
+
"azureBlobStorage-generate-upload-signed-url": "/azureBlobStorage/generate-upload-signed-url",
|
|
92
|
+
"azureBlobStorage-copy-file": "/azureBlobStorage/copy-file",
|
|
93
|
+
"azureBlobStorage-get-file-metadata": "/azureBlobStorage/get-file-metadata",
|
|
94
|
+
"azureBlobStorage-upload-file": "/azureBlobStorage/upload-file",
|
|
95
|
+
"azureBlobStorage-create-read-stream": "/azureBlobStorage/create-read-stream",
|
|
96
|
+
"azureBlobStorage-create-write-stream": "/azureBlobStorage/create-write-stream",
|
|
97
|
+
"gmail-auth-start": "/gmail/auth/start",
|
|
98
|
+
"gmail-oauth-callback": "/gmail/oauth/callback",
|
|
99
|
+
"gmail-send-email": "/gmail/send-email",
|
|
100
|
+
"googleCloudStorage-set-user-credentials": "/googleCloudStorage/set-user-credentials",
|
|
101
|
+
"googleCloudStorage-upload-data": "/googleCloudStorage/upload-data",
|
|
102
|
+
"googleCloudStorage-delete-file": "/googleCloudStorage/delete-file",
|
|
103
|
+
"googleCloudStorage-document-exists": "/googleCloudStorage/document-exists",
|
|
104
|
+
"googleCloudStorage-generate-download-signed-url": "/googleCloudStorage/generate-download-signed-url",
|
|
105
|
+
"googleCloudStorage-get-data": "/googleCloudStorage/get-data",
|
|
106
|
+
"googleCloudStorage-generate-upload-signed-url": "/googleCloudStorage/generate-upload-signed-url",
|
|
107
|
+
"googleCloudStorage-copy-file": "/googleCloudStorage/copy-file",
|
|
108
|
+
"googleCloudStorage-get-file-metadata": "/googleCloudStorage/get-file-metadata",
|
|
109
|
+
"googleCloudStorage-upload-file": "/googleCloudStorage/upload-file",
|
|
110
|
+
"googleCloudStorage-create-read-stream": "/googleCloudStorage/create-read-stream",
|
|
111
|
+
"googleCloudStorage-create-write-stream": "/googleCloudStorage/create-write-stream",
|
|
112
|
+
"googleGenerativeAI-set-user-credentials": "/googleGenerativeAI/set-user-credentials",
|
|
113
|
+
"googleGenerativeAI-generate-text": "/googleGenerativeAI/generate-text",
|
|
114
|
+
"googleGenerativeAI-create-stream": "/googleGenerativeAI/create-stream",
|
|
115
|
+
"googleOAuth-get-authorization-url": "/googleOAuth/get-authorization-url",
|
|
116
|
+
"googleOAuth-handle-oauth-callback": "/googleOAuth/handle-oauth-callback",
|
|
117
|
+
"openai-set-user-credentials": "/openai/set-user-credentials",
|
|
118
|
+
"openai-generate-text": "/openai/generate-text",
|
|
119
|
+
"openai-create-stream": "/openai/create-stream",
|
|
120
|
+
"resend-set-user-credentials": "/resend/set-user-credentials",
|
|
121
|
+
"resend-send-email": "/resend/send-email",
|
|
122
|
+
"stripe-create-checkout-session": "/stripe/create-checkout-session",
|
|
123
|
+
"stripe-verify-webhook": "/stripe/verify-webhook",
|
|
124
|
+
"twilioWhatsapp-create-message": "/twilioWhatsapp/create-message"
|
|
35
125
|
};
|
|
36
126
|
/**
|
|
37
127
|
* Get the response type for a given operation ID
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"response-type-map.js","sourceRoot":"","sources":["../src/response-type-map.ts"],"names":[],"mappings":";AAAA;;;;;;;GAOG;;;
|
|
1
|
+
{"version":3,"file":"response-type-map.js","sourceRoot":"","sources":["../src/response-type-map.ts"],"names":[],"mappings":"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"}
|