@xano/cli 0.0.80-beta.0 → 0.0.80-beta.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 (3) hide show
  1. package/README.md +4 -2
  2. package/oclif.manifest.json +1890 -1890
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -123,6 +123,7 @@ xano workspace push ./my-workspace --delete # Delete objects not in
123
123
  xano workspace push ./my-workspace --records # Include table records
124
124
  xano workspace push ./my-workspace --env # Include environment variables
125
125
  xano workspace push ./my-workspace --truncate # Truncate tables before import
126
+ xano workspace push ./my-workspace --no-transaction # Disable database transaction wrapping
126
127
  xano workspace push ./my-workspace --no-sync-guids # Skip writing GUIDs back to local files
127
128
  xano workspace push ./my-workspace --force # Skip preview and confirmation (for CI/CD)
128
129
 
@@ -331,9 +332,10 @@ xano tenant pull ./my-tenant -t <tenant_name> --draft
331
332
 
332
333
  # Push local files to tenant
333
334
  xano tenant push ./my-tenant -t <tenant_name>
334
- xano tenant push ./my-tenant -t <tenant_name> --records # Include table records
335
- xano tenant push ./my-tenant -t <tenant_name> --env # Include environment variables
335
+ xano tenant push ./my-tenant -t <tenant_name> --records # Include table records
336
+ xano tenant push ./my-tenant -t <tenant_name> --env # Include environment variables
336
337
  xano tenant push ./my-tenant -t <tenant_name> --truncate
338
+ xano tenant push ./my-tenant -t <tenant_name> --no-transaction # Disable transaction wrapping
337
339
  ```
338
340
 
339
341
  #### Deployments