integrate-sdk 0.9.46-dev.0 → 0.9.48-dev.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/adapters/auto-routes.js +12 -0
- package/dist/adapters/base-handler.js +12 -0
- package/dist/adapters/index.js +105 -79
- package/dist/adapters/nextjs.js +12 -0
- package/dist/adapters/solid-start.js +105 -79
- package/dist/adapters/svelte-kit.js +105 -79
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +404 -242
- package/dist/oauth.js +12 -0
- package/dist/server.js +428 -263
- package/dist/src/client.d.ts +4 -1
- package/dist/src/client.d.ts.map +1 -1
- package/dist/src/index.d.ts +6 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/integrations/box-client.d.ts +83 -0
- package/dist/src/integrations/box-client.d.ts.map +1 -0
- package/dist/src/integrations/box.d.ts +22 -0
- package/dist/src/integrations/box.d.ts.map +1 -0
- package/dist/src/integrations/gkeep-client.d.ts +38 -0
- package/dist/src/integrations/gkeep-client.d.ts.map +1 -0
- package/dist/src/integrations/gkeep.d.ts +22 -0
- package/dist/src/integrations/gkeep.d.ts.map +1 -0
- package/dist/src/integrations/library-metadata.d.ts.map +1 -1
- package/dist/src/integrations/telegram-client.d.ts +46 -0
- package/dist/src/integrations/telegram-client.d.ts.map +1 -0
- package/dist/src/integrations/telegram.d.ts +19 -0
- package/dist/src/integrations/telegram.d.ts.map +1 -0
- package/dist/src/server.d.ts +3 -0
- package/dist/src/server.d.ts.map +1 -1
- package/index.ts +4 -0
- package/package.json +1 -1
package/dist/oauth.js
CHANGED
|
@@ -101,6 +101,10 @@ var init_library_metadata = __esm(() => {
|
|
|
101
101
|
description: "Manage Google Tasks lists and to-dos",
|
|
102
102
|
category: "Productivity"
|
|
103
103
|
},
|
|
104
|
+
gkeep: {
|
|
105
|
+
description: "Manage Google Keep notes, attachments, and sharing permissions",
|
|
106
|
+
category: "Productivity"
|
|
107
|
+
},
|
|
104
108
|
gmeet: {
|
|
105
109
|
description: "Create Google Meet links and manage meeting events via Calendar",
|
|
106
110
|
category: "Communication"
|
|
@@ -201,6 +205,10 @@ var init_library_metadata = __esm(() => {
|
|
|
201
205
|
description: "Send and manage Slack messages and channels",
|
|
202
206
|
category: "Communication"
|
|
203
207
|
},
|
|
208
|
+
telegram: {
|
|
209
|
+
description: "Use Telegram as an actual user account via MTProto sessions",
|
|
210
|
+
category: "Communication"
|
|
211
|
+
},
|
|
204
212
|
stripe: {
|
|
205
213
|
description: "Manage Stripe customers, payments, and subscriptions",
|
|
206
214
|
category: "Finance"
|
|
@@ -265,6 +273,10 @@ var init_library_metadata = __esm(() => {
|
|
|
265
273
|
description: "Manage Dropbox files, folders, and sharing",
|
|
266
274
|
category: "Storage"
|
|
267
275
|
},
|
|
276
|
+
box: {
|
|
277
|
+
description: "Manage Box files, folders, sharing, comments, search, and collaborations",
|
|
278
|
+
category: "Storage"
|
|
279
|
+
},
|
|
268
280
|
paper: {
|
|
269
281
|
description: "Create, update, and export Dropbox Paper documents",
|
|
270
282
|
category: "Productivity"
|