Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(cli): Fix 'integraiton' typo in CLI docs #613

Merged
merged 1 commit into from
Jan 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cli.html
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ <h2 id="convert">convert</h2>
<div class="col-md-5 col-sm-12 col-height docs-primary">
<blockquote>
<p>Convert a Visual Builder integration to a CLI integration.</p>
</blockquote><p><strong>Usage</strong>: <code>zapier convert INTEGRATIONID PATH</code></p><p>The resulting CLI integraiton will be identical to its Visual Builder version and ready to push and use immediately!</p><p>If you re-run this command on an existing directory it will leave existing files alone and not clobber them.</p><p>You&apos;ll need to do a <code>zapier push</code> before the new version is visible in the editor, but otherwise you&apos;re good to go.</p><p><strong>Arguments</strong></p><ul>
</blockquote><p><strong>Usage</strong>: <code>zapier convert INTEGRATIONID PATH</code></p><p>The resulting CLI integration will be identical to its Visual Builder version and ready to push and use immediately!</p><p>If you re-run this command on an existing directory it will leave existing files alone and not clobber them.</p><p>You&apos;ll need to do a <code>zapier push</code> before the new version is visible in the editor, but otherwise you&apos;re good to go.</p><p><strong>Arguments</strong></p><ul>
<li>(required) <code>integrationId</code> | To get the integration/app ID, go to &quot;<a href="https://developer.zapier.com&quot;">https://developer.zapier.com&quot;</a>, click on an integration, and copy the number directly after &quot;/app/&quot; in the URL.</li>
<li>(required) <code>path</code> | Relative to your current path - IE: <code>.</code> for current directory.</li>
</ul><p><strong>Flags</strong></p><ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ This command is typically followed by `zapier upload`.

**Usage**: `zapier convert INTEGRATIONID PATH`

The resulting CLI integraiton will be identical to its Visual Builder version and ready to push and use immediately!
The resulting CLI integration will be identical to its Visual Builder version and ready to push and use immediately!

If you re-run this command on an existing directory it will leave existing files alone and not clobber them.

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/docs/cli.html
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ <h2 id="convert">convert</h2>
<div class="col-md-5 col-sm-12 col-height docs-primary">
<blockquote>
<p>Convert a Visual Builder integration to a CLI integration.</p>
</blockquote><p><strong>Usage</strong>: <code>zapier convert INTEGRATIONID PATH</code></p><p>The resulting CLI integraiton will be identical to its Visual Builder version and ready to push and use immediately!</p><p>If you re-run this command on an existing directory it will leave existing files alone and not clobber them.</p><p>You&apos;ll need to do a <code>zapier push</code> before the new version is visible in the editor, but otherwise you&apos;re good to go.</p><p><strong>Arguments</strong></p><ul>
</blockquote><p><strong>Usage</strong>: <code>zapier convert INTEGRATIONID PATH</code></p><p>The resulting CLI integration will be identical to its Visual Builder version and ready to push and use immediately!</p><p>If you re-run this command on an existing directory it will leave existing files alone and not clobber them.</p><p>You&apos;ll need to do a <code>zapier push</code> before the new version is visible in the editor, but otherwise you&apos;re good to go.</p><p><strong>Arguments</strong></p><ul>
<li>(required) <code>integrationId</code> | To get the integration/app ID, go to &quot;<a href="https://developer.zapier.com&quot;">https://developer.zapier.com&quot;</a>, click on an integration, and copy the number directly after &quot;/app/&quot; in the URL.</li>
<li>(required) <code>path</code> | Relative to your current path - IE: <code>.</code> for current directory.</li>
</ul><p><strong>Flags</strong></p><ul>
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ This command is typically followed by `zapier upload`.

**Usage**: `zapier convert INTEGRATIONID PATH`

The resulting CLI integraiton will be identical to its Visual Builder version and ready to push and use immediately!
The resulting CLI integration will be identical to its Visual Builder version and ready to push and use immediately!

If you re-run this command on an existing directory it will leave existing files alone and not clobber them.

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/oclif/commands/convert.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ ConvertCommand.flags = buildFlags({
});
ConvertCommand.description = `Convert a Visual Builder integration to a CLI integration.

The resulting CLI integraiton will be identical to its Visual Builder version and ready to push and use immediately!
The resulting CLI integration will be identical to its Visual Builder version and ready to push and use immediately!

If you re-run this command on an existing directory it will leave existing files alone and not clobber them.

Expand Down