attio 0.0.1-experimental.20250813.1 → 0.0.1-experimental.20250813.2

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,4 +1,4 @@
1
- # Attio Extension CLI
1
+ # Attio App SDK CLI
2
2
 
3
3
  ## ⚠️ This package is experimental and not yet ready for use. ⚠️
4
4
 
@@ -33,7 +33,7 @@ export const optionsSchema = z.object({
33
33
  });
34
34
  export const dev = new Command("dev")
35
35
  .description("Develop your Attio app")
36
- .addOption(new Option("--workspace <slug>", "The slug of the workspace to use"))
36
+ .addOption(new Option("-w, --workspace <slug>", "The slug of the workspace to use"))
37
37
  .action(async (unparsedOptions) => {
38
38
  const { workspace: workspaceSlug } = optionsSchema.parse(unparsedOptions);
39
39
  const cleanupFunctions = [];
@@ -14,7 +14,7 @@ export const optionsSchema = z.object({
14
14
  });
15
15
  export const logs = new Command("logs")
16
16
  .description("Stream development server logs")
17
- .addOption(new Option("--workspace <slug>", "The slug of the workspace to get the logs from"))
17
+ .addOption(new Option("-w, --workspace <slug>", "The slug of the workspace to get the logs from"))
18
18
  .action(async (unparsedOptions) => {
19
19
  const { workspace: workspaceSlug } = optionsSchema.parse(unparsedOptions);
20
20
  await authenticator.ensureAuthed();
@@ -1,6 +1,6 @@
1
1
  # title-to-be-replaced
2
2
 
3
- ## `slug-to-be-replaced` Attio Extension
3
+ ## `slug-to-be-replaced` Attio app
4
4
 
5
5
  ### Build
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attio",
3
- "version": "0.0.1-experimental.20250813.1",
3
+ "version": "0.0.1-experimental.20250813.2",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "lib",