sim-setup 1.0.2-preview.39.1 → 1.0.2-preview.41.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 +55 -16
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1561,7 +1561,8 @@ var init_env_capabilities = __esm(() => {
1561
1561
  "microsoft-dataverse",
1562
1562
  "microsoft-excel",
1563
1563
  "microsoft-teams",
1564
- "microsoft-planner"
1564
+ "microsoft-planner",
1565
+ "microsoft-word"
1565
1566
  ]);
1566
1567
  });
1567
1568
 
@@ -16126,6 +16127,58 @@ var init_integrations = __esm(() => {
16126
16127
  integrationType: "communication",
16127
16128
  tags: ["messaging", "microsoft-365"]
16128
16129
  },
16130
+ {
16131
+ type: "microsoft_word",
16132
+ slug: "microsoft-word",
16133
+ name: "Microsoft Word",
16134
+ description: "Create, fill, read, edit, and export Word documents",
16135
+ longDescription: "Integrate Microsoft Word into the workflow. Create .docx documents from text, fill a formatted template by substituting its placeholders, read a document back as text, replace or append content, find and replace text across the body plus headers and footers, list and search documents in OneDrive or SharePoint, and export a document as PDF.",
16136
+ bgColor: "#FFFFFF",
16137
+ iconName: "MicrosoftWordIcon",
16138
+ docsUrl: "https://docs.sim.ai/integrations/microsoft_word",
16139
+ operations: [
16140
+ {
16141
+ name: "Read Document",
16142
+ description: "Read the text content of a Microsoft Word (.docx) document stored in OneDrive or SharePoint."
16143
+ },
16144
+ {
16145
+ name: "Create Document",
16146
+ description: "Create a new Microsoft Word (.docx) document in OneDrive or SharePoint from text content. Supports Markdown headings (# ## ###), bullets (-), and inline **bold** / *italic*. An existing document with the same name is never overwritten — the new one is given a unique name instead."
16147
+ },
16148
+ {
16149
+ name: "Create from Template",
16150
+ description: "Copy an existing Microsoft Word (.docx) template to a new document and fill its placeholders. The template keeps all of its formatting, styles, headers, and footers, and is never modified. An existing document with the same name is never overwritten — the new one is given a unique name instead."
16151
+ },
16152
+ {
16153
+ name: "Replace Content",
16154
+ description: "Replace the entire contents of an existing Microsoft Word (.docx) document with new text. The previous content and its formatting are discarded — use Append to add to a document instead."
16155
+ },
16156
+ {
16157
+ name: "Append Content",
16158
+ description: "Append plain-text paragraphs to the end of an existing Microsoft Word (.docx) document, leaving the existing content and formatting intact. Fails rather than overwriting if someone else changed the document while the edit was in flight."
16159
+ },
16160
+ {
16161
+ name: "Find and Replace Text",
16162
+ description: "Find and replace text throughout a Microsoft Word (.docx) document, including its headers and footers. Use this to fill placeholders in a template document. Fails rather than overwriting if someone else changed the document while the edit was in flight."
16163
+ },
16164
+ {
16165
+ name: "List Documents",
16166
+ description: "List or search Microsoft Word (.docx) documents in OneDrive or SharePoint. Non-Word items are filtered out of the results."
16167
+ },
16168
+ {
16169
+ name: "Export as PDF",
16170
+ description: "Convert a Microsoft Word (.docx) document to PDF using Microsoft Graph and return it as a file."
16171
+ }
16172
+ ],
16173
+ operationCount: 8,
16174
+ triggers: [],
16175
+ triggerCount: 0,
16176
+ authType: "oauth",
16177
+ oauthServiceId: "microsoft-word",
16178
+ category: "tools",
16179
+ integrationType: "documents",
16180
+ tags: ["microsoft-365", "document-processing", "cloud"]
16181
+ },
16129
16182
  {
16130
16183
  type: "millionverifier",
16131
16184
  slug: "millionverifier",
@@ -31047,7 +31100,6 @@ var init_twins = __esm(() => {
31047
31100
  { server: "SSO_ENABLED", client: "NEXT_PUBLIC_SSO_ENABLED" },
31048
31101
  { server: "EMAIL_PASSWORD_SIGNUP_ENABLED", client: "NEXT_PUBLIC_EMAIL_PASSWORD_SIGNUP_ENABLED" },
31049
31102
  { server: "E2B_ENABLED", client: "NEXT_PUBLIC_E2B_ENABLED" },
31050
- { server: "DEPLOY_AS_BLOCK", client: "NEXT_PUBLIC_CUSTOM_BLOCKS_ENABLED" },
31051
31103
  { server: "SLACK_EXTENDED_SCOPES", client: "NEXT_PUBLIC_SLACK_EXTENDED_SCOPES" }
31052
31104
  ];
31053
31105
  SELF_HOST_UNLOCKS = [
@@ -31068,12 +31120,7 @@ var init_twins = __esm(() => {
31068
31120
  { server: "DATA_DRAINS_ENABLED", label: "Data drains", hint: "export streams" },
31069
31121
  { server: "FORKING_ENABLED", label: "Workflow forking", hint: "" },
31070
31122
  { server: "INBOX_ENABLED", label: "Inbox", hint: "" },
31071
- { server: "WHITELABELING_ENABLED", label: "Whitelabeling", hint: "custom branding" },
31072
- {
31073
- server: "DEPLOY_AS_BLOCK",
31074
- label: "Deploy as block",
31075
- hint: "publish workflows as reusable blocks"
31076
- }
31123
+ { server: "WHITELABELING_ENABLED", label: "Whitelabeling", hint: "custom branding" }
31077
31124
  ];
31078
31125
  LOGIN_PROVIDERS = [
31079
31126
  { id: "google", label: "Google", idKey: "GOOGLE_CLIENT_ID", secretKey: "GOOGLE_CLIENT_SECRET" },
@@ -31444,14 +31491,6 @@ function checkCoherence(ctx) {
31444
31491
  });
31445
31492
  }
31446
31493
  }
31447
- if (isTruthy(sim.vars.get("PII_GRANULAR_REDACTION")) && !isTruthy(sim.vars.get("PII_REDACTION"))) {
31448
- findings.push({
31449
- group: "coherence",
31450
- status: "warn",
31451
- message: "PII_GRANULAR_REDACTION is on but PII_REDACTION is off — the granular flag is inert without it",
31452
- fix: "set PII_REDACTION=true or remove PII_GRANULAR_REDACTION"
31453
- });
31454
- }
31455
31494
  if (Boolean(sim.vars.get("TURNSTILE_SECRET_KEY")) !== Boolean(sim.vars.get("NEXT_PUBLIC_TURNSTILE_SITE_KEY"))) {
31456
31495
  findings.push({
31457
31496
  group: "coherence",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sim-setup",
3
- "version": "1.0.2-preview.39.1",
3
+ "version": "1.0.2-preview.41.1",
4
4
  "description": "Set up and manage a self-hosted Sim installation",
5
5
  "type": "module",
6
6
  "bin": {