sim-setup 1.0.6-preview.67.1 → 1.0.6-preview.68.1

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.
Files changed (2) hide show
  1. package/dist/index.js +116 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1570,7 +1570,7 @@ var init_env_capabilities = __esm(() => {
1570
1570
  var integrations_default;
1571
1571
  var init_integrations = __esm(() => {
1572
1572
  integrations_default = {
1573
- updatedAt: "2026-08-31",
1573
+ updatedAt: "2026-09-01",
1574
1574
  integrations: [
1575
1575
  {
1576
1576
  type: "onepassword",
@@ -5376,6 +5376,121 @@ var init_integrations = __esm(() => {
5376
5376
  integrationType: "sales",
5377
5377
  tags: ["enrichment", "data-analytics"]
5378
5378
  },
5379
+ {
5380
+ type: "circleback",
5381
+ slug: "circleback",
5382
+ name: "Circleback",
5383
+ description: "AI-powered meeting notes, action items, and transcripts",
5384
+ longDescription: "Integrate Circleback into your workflow to read meetings, notes, transcripts, and insights, search across meetings, manage action items and tags, and browse the people and companies you meet with. Circleback can also trigger workflows when meetings are processed.",
5385
+ bgColor: "linear-gradient(180deg, #E0F7FA 0%, #FFFFFF 100%)",
5386
+ iconName: "CirclebackIcon",
5387
+ docsUrl: "https://docs.sim.ai/integrations/circleback",
5388
+ operations: [
5389
+ {
5390
+ name: "List Meetings",
5391
+ description: "Lists meetings from Circleback with optional ownership, status, tag, and attendee filters."
5392
+ },
5393
+ {
5394
+ name: "Get Meeting",
5395
+ description: "Gets a Circleback meeting by ID, including notes, attendees, action items, insights, and recording details."
5396
+ },
5397
+ {
5398
+ name: "Search Meetings",
5399
+ description: "Searches Circleback meetings by name and content, with optional filters for specific meetings, tags, and people."
5400
+ },
5401
+ {
5402
+ name: "Get Transcript",
5403
+ description: "Gets the full transcript for a Circleback meeting."
5404
+ },
5405
+ {
5406
+ name: "Update Meeting",
5407
+ description: "Updates the name, notes, or private notes of a Circleback meeting. The API returns only the fields that were updated."
5408
+ },
5409
+ {
5410
+ name: "Delete Meeting",
5411
+ description: "Deletes a Circleback meeting. Only the owner of the meeting can delete it. Returns the deleted meeting."
5412
+ },
5413
+ {
5414
+ name: "List Action Items",
5415
+ description: "Lists action items across the authenticated user meetings, filtered by assignee, status, tags, and attendees. Defaults to incomplete action items assigned to the API key owner."
5416
+ },
5417
+ {
5418
+ name: "Update Action Item",
5419
+ description: "Updates the title, description, status, or assignee of a Circleback action item. Returns the updated action item."
5420
+ },
5421
+ {
5422
+ name: "Delete Action Item",
5423
+ description: "Deletes a Circleback action item. Returns the deleted action item."
5424
+ },
5425
+ {
5426
+ name: "List Calendar Events",
5427
+ description: "Lists upcoming calendar events from the authenticated user connected calendars, with pagination and a configurable time window."
5428
+ },
5429
+ {
5430
+ name: "List Companies",
5431
+ description: "Lists the companies whose people attend the authenticated user meetings, with optional tag filters."
5432
+ },
5433
+ {
5434
+ name: "Get Company",
5435
+ description: "Gets a company by its domain from Circleback, including its people and external links."
5436
+ },
5437
+ {
5438
+ name: "List People",
5439
+ description: "Lists the people who attend the authenticated user meetings, ordered by most recent meeting, with optional company and tag filters."
5440
+ },
5441
+ {
5442
+ name: "Get Person",
5443
+ description: "Gets a person by their profile ID from Circleback, including their profile details and external links."
5444
+ },
5445
+ {
5446
+ name: "List Tags",
5447
+ description: "Lists every tag available to the authenticated Circleback user."
5448
+ },
5449
+ {
5450
+ name: "Create Tag",
5451
+ description: "Creates a new tag in Circleback. If a tag with the same name already exists, a conflict error is returned."
5452
+ },
5453
+ {
5454
+ name: "Update Tag",
5455
+ description: "Updates the name or description of a Circleback tag."
5456
+ },
5457
+ {
5458
+ name: "Delete Tag",
5459
+ description: "Permanently deletes a Circleback tag and removes it from every meeting it was applied to."
5460
+ },
5461
+ {
5462
+ name: "Add Tag to Meetings",
5463
+ description: "Applies an existing Circleback tag to one or more meetings and returns the updated meetings."
5464
+ },
5465
+ {
5466
+ name: "Remove Tag from Meetings",
5467
+ description: "Removes a Circleback tag from one or more meetings and returns the updated meetings."
5468
+ }
5469
+ ],
5470
+ operationCount: 20,
5471
+ triggers: [
5472
+ {
5473
+ id: "circleback_meeting_completed",
5474
+ name: "Circleback Meeting Completed",
5475
+ description: "Trigger workflow when a meeting is processed and ready in Circleback"
5476
+ },
5477
+ {
5478
+ id: "circleback_meeting_notes",
5479
+ name: "Circleback Meeting Notes Ready",
5480
+ description: "Trigger workflow when meeting notes and action items are ready"
5481
+ },
5482
+ {
5483
+ id: "circleback_webhook",
5484
+ name: "Circleback Webhook",
5485
+ description: "Generic webhook trigger for all Circleback events"
5486
+ }
5487
+ ],
5488
+ triggerCount: 3,
5489
+ authType: "api-key",
5490
+ category: "tools",
5491
+ integrationType: "ai",
5492
+ tags: ["meeting", "note-taking"]
5493
+ },
5379
5494
  {
5380
5495
  type: "managed_agent",
5381
5496
  slug: "claude-managed-agents",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sim-setup",
3
- "version": "1.0.6-preview.67.1",
3
+ "version": "1.0.6-preview.68.1",
4
4
  "description": "Set up and manage a self-hosted Sim installation",
5
5
  "type": "module",
6
6
  "bin": {