@bpmnkit/connector-gen 0.0.4 → 0.0.6

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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <img src="https://raw.githubusercontent.com/bpmnkit/monorepo/main/doc/logos/logo-2-gateway.svg" width="72" height="72" alt="BPMN Kit logo">
2
+ <a href="https://bpmnkit.com"><img src="https://bpmnkit.com/favicon.svg" width="72" height="72" alt="BPMN Kit logo"></a>
3
3
  <h1>@bpmnkit/connector-gen</h1>
4
4
  <p>Generate Camunda REST connector element templates from OpenAPI/Swagger specs</p>
5
5
 
@@ -90,3 +90,7 @@ interface GenerateOptions {
90
90
  ## License
91
91
 
92
92
  [MIT](https://github.com/bpmnkit/monorepo/blob/main/LICENSE) © BPMN Kit — made by [u11g](https://u11g.com)
93
+
94
+ <div align="center">
95
+ <a href="https://bpmnkit.com"><img src="https://bpmnkit.com/favicon.svg" width="32" height="32" alt="BPMN Kit"></a>
96
+ </div>
package/dist/catalog.js CHANGED
@@ -159,6 +159,86 @@ export const CATALOG = [
159
159
  idPrefix: "com.vercel",
160
160
  defaultAuth: "bearer",
161
161
  },
162
+ {
163
+ id: "anthropic",
164
+ name: "Anthropic API",
165
+ description: "Access Claude models for text generation, vision, and tool use via the Anthropic API",
166
+ url: "https://raw.githubusercontent.com/anthropics/anthropic-openapi/main/openapi.yaml",
167
+ idPrefix: "com.anthropic",
168
+ defaultAuth: "apiKey",
169
+ },
170
+ {
171
+ id: "shopify",
172
+ name: "Shopify Admin API",
173
+ description: "Manage Shopify store products, orders, customers, inventory, and fulfillments",
174
+ url: "https://raw.githubusercontent.com/APIs-guru/openapi-directory/main/APIs/shopify.dev/admin/2023-04/openapi.yaml",
175
+ idPrefix: "dev.shopify",
176
+ defaultAuth: "bearer",
177
+ },
178
+ {
179
+ id: "datadog",
180
+ name: "Datadog API",
181
+ description: "Submit metrics, manage monitors, dashboards, logs, and alerts in Datadog",
182
+ url: "https://raw.githubusercontent.com/DataDog/datadog-api-client-python/master/openapi.yaml",
183
+ idPrefix: "com.datadoghq",
184
+ defaultAuth: "apiKey",
185
+ },
186
+ {
187
+ id: "sentry",
188
+ name: "Sentry API",
189
+ description: "Manage Sentry projects, issues, events, releases, and team members",
190
+ url: "https://raw.githubusercontent.com/getsentry/sentry-api-schema/main/openapi-derefed.json",
191
+ idPrefix: "io.sentry",
192
+ defaultAuth: "bearer",
193
+ },
194
+ {
195
+ id: "intercom",
196
+ name: "Intercom API",
197
+ description: "Manage contacts, conversations, messages, and support workflows in Intercom",
198
+ url: "https://raw.githubusercontent.com/intercom/Intercom-OpenAPI/main/descriptions/2.10/api.intercom.io.yaml",
199
+ idPrefix: "io.intercom",
200
+ defaultAuth: "bearer",
201
+ },
202
+ {
203
+ id: "contentful",
204
+ name: "Contentful Management API",
205
+ description: "Create and manage content types, entries, assets, and spaces in Contentful CMS",
206
+ url: "https://raw.githubusercontent.com/APIs-guru/openapi-directory/main/APIs/contentful.com/management.2/openapi.yaml",
207
+ idPrefix: "com.contentful",
208
+ defaultAuth: "bearer",
209
+ },
210
+ {
211
+ id: "airtable",
212
+ name: "Airtable API",
213
+ description: "Read and write records, tables, fields, and views in Airtable bases",
214
+ url: "https://raw.githubusercontent.com/APIs-guru/openapi-directory/main/APIs/airtable.com/0.1.0/openapi.yaml",
215
+ idPrefix: "com.airtable",
216
+ defaultAuth: "bearer",
217
+ },
218
+ {
219
+ id: "twitch",
220
+ name: "Twitch Helix API",
221
+ description: "Manage Twitch streams, channels, clips, users, subscriptions, and EventSub webhooks",
222
+ url: "https://raw.githubusercontent.com/APIs-guru/openapi-directory/main/APIs/twitch.tv/helix/latest/openapi.yaml",
223
+ idPrefix: "tv.twitch",
224
+ defaultAuth: "oauth-client-credentials-flow",
225
+ },
226
+ {
227
+ id: "klaviyo",
228
+ name: "Klaviyo API",
229
+ description: "Manage email/SMS campaigns, lists, profiles, flows, and events in Klaviyo",
230
+ url: "https://raw.githubusercontent.com/klaviyo/klaviyo-api-node/main/openapi/openapi.yaml",
231
+ idPrefix: "com.klaviyo",
232
+ defaultAuth: "apiKey",
233
+ },
234
+ {
235
+ id: "brex",
236
+ name: "Brex API",
237
+ description: "Manage Brex business accounts, cards, transactions, and expense reimbursements",
238
+ url: "https://raw.githubusercontent.com/APIs-guru/openapi-directory/main/APIs/brex.com/payments/0.1/openapi.yaml",
239
+ idPrefix: "com.brex",
240
+ defaultAuth: "oauth-client-credentials-flow",
241
+ },
162
242
  ];
163
243
  export function getCatalogEntry(id) {
164
244
  return CATALOG.find((e) => e.id === id);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmnkit/connector-gen",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {