@xano/cli 0.0.95-beta.3 → 0.0.95-beta.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.
Files changed (36) hide show
  1. package/README.md +2 -1
  2. package/dist/base-command.d.ts +1 -0
  3. package/dist/commands/auth/index.js +1 -1
  4. package/dist/commands/profile/me/index.js +21 -2
  5. package/dist/commands/profile/wizard/index.js +1 -1
  6. package/dist/commands/profile/workspace/set/index.js +1 -1
  7. package/dist/commands/sandbox/env/delete/index.js +4 -6
  8. package/dist/commands/sandbox/env/get/index.js +2 -4
  9. package/dist/commands/sandbox/env/get_all/index.js +2 -4
  10. package/dist/commands/sandbox/env/list/index.js +3 -5
  11. package/dist/commands/sandbox/env/set/index.js +2 -4
  12. package/dist/commands/sandbox/env/set_all/index.js +3 -5
  13. package/dist/commands/sandbox/get/index.js +13 -0
  14. package/dist/commands/sandbox/license/get/index.js +2 -4
  15. package/dist/commands/sandbox/license/set/index.js +3 -5
  16. package/dist/commands/sandbox/pull/index.js +3 -5
  17. package/dist/commands/sandbox/push/index.js +3 -5
  18. package/dist/commands/sandbox/reset/index.js +2 -4
  19. package/dist/commands/sandbox/review/index.js +1 -3
  20. package/dist/commands/sandbox/unit_test/list/index.js +2 -4
  21. package/dist/commands/sandbox/unit_test/run/index.js +1 -3
  22. package/dist/commands/sandbox/unit_test/run_all/index.js +1 -3
  23. package/dist/commands/sandbox/workflow_test/delete/index.js +1 -3
  24. package/dist/commands/sandbox/workflow_test/get/index.js +1 -3
  25. package/dist/commands/sandbox/workflow_test/list/index.js +2 -4
  26. package/dist/commands/sandbox/workflow_test/run/index.js +1 -3
  27. package/dist/commands/sandbox/workflow_test/run_all/index.js +1 -3
  28. package/dist/commands/tenant/create/index.d.ts +2 -1
  29. package/dist/commands/tenant/create/index.js +23 -6
  30. package/dist/commands/workspace/edit/index.d.ts +1 -0
  31. package/dist/commands/workspace/edit/index.js +16 -6
  32. package/dist/commands/workspace/get/index.js +9 -7
  33. package/dist/commands/workspace/list/index.d.ts +1 -0
  34. package/dist/commands/workspace/list/index.js +14 -7
  35. package/oclif.manifest.json +2702 -2679
  36. package/package.json +1 -1
@@ -9,6 +9,7 @@ export default class WorkspaceEdit extends BaseCommand {
9
9
  static description: string;
10
10
  static examples: string[];
11
11
  static flags: {
12
+ 'allow-push': import("@oclif/core/interfaces").BooleanFlag<boolean>;
12
13
  description: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
13
14
  name: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
14
15
  output: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
@@ -35,6 +35,11 @@ Updated workspace: my-workspace (ID: 123)
35
35
  ];
36
36
  static flags = {
37
37
  ...BaseCommand.baseFlags,
38
+ 'allow-push': Flags.boolean({
39
+ allowNo: true,
40
+ description: 'Enable or disable direct CLI push to this workspace',
41
+ required: false,
42
+ }),
38
43
  description: Flags.string({
39
44
  char: 'd',
40
45
  description: 'New description for the workspace',
@@ -102,9 +107,12 @@ Updated workspace: my-workspace (ID: 123)
102
107
  if (flags['require-token'] !== undefined) {
103
108
  body.documentation = { require_token: flags['require-token'] };
104
109
  }
110
+ if (flags['allow-push'] !== undefined) {
111
+ body.preferences = { allow_push: flags['allow-push'] };
112
+ }
105
113
  // Check if at least one field is being updated
106
114
  if (Object.keys(body).length === 0) {
107
- this.error('No fields specified to update. Use --name, --description, --swagger, or --require-token flags.\n' +
115
+ this.error('No fields specified to update. Use --name, --description, --swagger, --require-token, or --allow-push flags.\n' +
108
116
  'Example: xano workspace edit 123 --name "new-name"');
109
117
  }
110
118
  // Construct the API URL
@@ -114,8 +122,8 @@ Updated workspace: my-workspace (ID: 123)
114
122
  const response = await this.verboseFetch(apiUrl, {
115
123
  body: JSON.stringify(body),
116
124
  headers: {
117
- 'accept': 'application/json',
118
- 'Authorization': `Bearer ${profile.access_token}`,
125
+ accept: 'application/json',
126
+ Authorization: `Bearer ${profile.access_token}`,
119
127
  'Content-Type': 'application/json',
120
128
  },
121
129
  method: 'PUT',
@@ -124,7 +132,7 @@ Updated workspace: my-workspace (ID: 123)
124
132
  const errorText = await response.text();
125
133
  this.error(`API request failed with status ${response.status}: ${response.statusText}\n${errorText}`);
126
134
  }
127
- const workspace = await response.json();
135
+ const workspace = (await response.json());
128
136
  // Output results
129
137
  if (flags.output === 'json') {
130
138
  this.log(JSON.stringify(workspace, null, 2));
@@ -141,6 +149,9 @@ Updated workspace: my-workspace (ID: 123)
141
149
  if (workspace.documentation?.require_token !== undefined) {
142
150
  this.log(` Require Token: ${workspace.documentation.require_token}`);
143
151
  }
152
+ if (workspace.preferences?.allow_push !== undefined) {
153
+ this.log(` Allow Push: ${workspace.preferences.allow_push}`);
154
+ }
144
155
  }
145
156
  }
146
157
  catch (error) {
@@ -157,8 +168,7 @@ Updated workspace: my-workspace (ID: 123)
157
168
  const credentialsPath = path.join(configDir, 'credentials.yaml');
158
169
  // Check if credentials file exists
159
170
  if (!fs.existsSync(credentialsPath)) {
160
- this.error(`Credentials file not found at ${credentialsPath}\n` +
161
- `Create a profile using 'xano profile create'`);
171
+ this.error(`Credentials file not found at ${credentialsPath}\n` + `Create a profile using 'xano profile create'`);
162
172
  }
163
173
  // Read credentials file
164
174
  try {
@@ -73,8 +73,8 @@ Workspace: my-workspace (ID: 123)
73
73
  try {
74
74
  const response = await this.verboseFetch(apiUrl, {
75
75
  headers: {
76
- 'accept': 'application/json',
77
- 'Authorization': `Bearer ${profile.access_token}`,
76
+ accept: 'application/json',
77
+ Authorization: `Bearer ${profile.access_token}`,
78
78
  },
79
79
  method: 'GET',
80
80
  }, flags.verbose, profile.access_token);
@@ -82,7 +82,7 @@ Workspace: my-workspace (ID: 123)
82
82
  const errorText = await response.text();
83
83
  this.error(`API request failed with status ${response.status}: ${response.statusText}\n${errorText}`);
84
84
  }
85
- const workspace = await response.json();
85
+ const workspace = (await response.json());
86
86
  // Output results
87
87
  if (flags.output === 'json') {
88
88
  this.log(JSON.stringify(workspace, null, 2));
@@ -94,13 +94,16 @@ Workspace: my-workspace (ID: 123)
94
94
  this.log(` Description: ${workspace.description}`);
95
95
  }
96
96
  if (workspace.created_at) {
97
- const createdDate = new Date(workspace.created_at * 1000).toISOString().split('T')[0];
97
+ const createdDate = new Date(workspace.created_at).toISOString().split('T')[0];
98
98
  this.log(` Created: ${createdDate}`);
99
99
  }
100
100
  if (workspace.updated_at) {
101
- const updatedDate = new Date(workspace.updated_at * 1000).toISOString().split('T')[0];
101
+ const updatedDate = new Date(workspace.updated_at).toISOString().split('T')[0];
102
102
  this.log(` Updated: ${updatedDate}`);
103
103
  }
104
+ if (workspace.preferences?.allow_push !== undefined) {
105
+ this.log(` Allow Push: ${workspace.preferences.allow_push}`);
106
+ }
104
107
  }
105
108
  }
106
109
  catch (error) {
@@ -117,8 +120,7 @@ Workspace: my-workspace (ID: 123)
117
120
  const credentialsPath = path.join(configDir, 'credentials.yaml');
118
121
  // Check if credentials file exists
119
122
  if (!fs.existsSync(credentialsPath)) {
120
- this.error(`Credentials file not found at ${credentialsPath}\n` +
121
- `Create a profile using 'xano profile create'`);
123
+ this.error(`Credentials file not found at ${credentialsPath}\n` + `Create a profile using 'xano profile create'`);
122
124
  }
123
125
  // Read credentials file
124
126
  try {
@@ -3,6 +3,7 @@ export default class WorkspaceList extends BaseCommand {
3
3
  static description: string;
4
4
  static examples: string[];
5
5
  static flags: {
6
+ latest: import("@oclif/core/interfaces").BooleanFlag<boolean>;
6
7
  output: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
7
8
  profile: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
8
9
  verbose: import("@oclif/core/interfaces").BooleanFlag<boolean>;
@@ -45,6 +45,10 @@ Available workspaces:
45
45
  ];
46
46
  static flags = {
47
47
  ...BaseCommand.baseFlags,
48
+ latest: Flags.boolean({
49
+ default: false,
50
+ description: 'Sort by newest first (descending ID)',
51
+ }),
48
52
  output: Flags.string({
49
53
  char: 'o',
50
54
  default: 'summary',
@@ -78,8 +82,8 @@ Available workspaces:
78
82
  try {
79
83
  const response = await this.verboseFetch(apiUrl, {
80
84
  headers: {
81
- 'accept': 'application/json',
82
- 'Authorization': `Bearer ${profile.access_token}`,
85
+ accept: 'application/json',
86
+ Authorization: `Bearer ${profile.access_token}`,
83
87
  },
84
88
  method: 'GET',
85
89
  }, flags.verbose, profile.access_token);
@@ -87,7 +91,7 @@ Available workspaces:
87
91
  const errorText = await response.text();
88
92
  this.error(`API request failed with status ${response.status}: ${response.statusText}\n${errorText}`);
89
93
  }
90
- const data = await response.json();
94
+ const data = (await response.json());
91
95
  // Handle different response formats
92
96
  let workspaces;
93
97
  if (Array.isArray(data)) {
@@ -99,6 +103,9 @@ Available workspaces:
99
103
  else {
100
104
  this.error('Unexpected API response format');
101
105
  }
106
+ if (flags.latest) {
107
+ workspaces.sort((a, b) => b.id - a.id);
108
+ }
102
109
  // Output results
103
110
  if (flags.output === 'json') {
104
111
  this.log(JSON.stringify(workspaces, null, 2));
@@ -111,11 +118,12 @@ Available workspaces:
111
118
  else {
112
119
  this.log('Available workspaces:');
113
120
  for (const workspace of workspaces) {
121
+ const created = workspace.created_at ? ` (created: ${workspace.created_at.split(' ')[0]})` : '';
114
122
  if (workspace.id === undefined) {
115
- this.log(` - ${workspace.name}`);
123
+ this.log(` - ${workspace.name}${created}`);
116
124
  }
117
125
  else {
118
- this.log(` - ${workspace.name} (ID: ${workspace.id})`);
126
+ this.log(` - ${workspace.name} (ID: ${workspace.id})${created}`);
119
127
  }
120
128
  }
121
129
  }
@@ -135,8 +143,7 @@ Available workspaces:
135
143
  const credentialsPath = path.join(configDir, 'credentials.yaml');
136
144
  // Check if credentials file exists
137
145
  if (!fs.existsSync(credentialsPath)) {
138
- this.error(`Credentials file not found at ${credentialsPath}\n` +
139
- `Create a profile using 'xano profile:create'`);
146
+ this.error(`Credentials file not found at ${credentialsPath}\n` + `Create a profile using 'xano profile:create'`);
140
147
  }
141
148
  // Read credentials file
142
149
  try {