appwrite-utils-cli 0.9.59 → 0.9.60

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
@@ -124,6 +124,7 @@ This updated CLI ensures that developers have robust tools at their fingertips t
124
124
 
125
125
  ## Changelog
126
126
 
127
+ - 0.9.60: Fix init command to repository URL
127
128
  - 0.9.59: Fix to Windows path names for loading config
128
129
  - 0.9.58: The same as before, I just missed it hah
129
130
  - 0.9.57: Changed generated schema type of `$createdAt` and `$updatedAt` to string from `string | Date` cause honestly if you want a date just parse it
@@ -29,7 +29,7 @@ export class InteractiveCLI {
29
29
  }
30
30
  async run() {
31
31
  console.log("Welcome to Appwrite Utils CLI Tool by Zach Handley");
32
- console.log("For more information, visit https://github.com/zachhandley/appwrite-utils");
32
+ console.log("For more information, visit https://github.com/zachhandley/AppwriteUtils");
33
33
  while (true) {
34
34
  const { action } = await inquirer.prompt([
35
35
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "appwrite-utils-cli",
3
3
  "description": "Appwrite Utility Functions to help with database management, data conversion, data import, migrations, and much more. Meant to be used as a CLI tool, I do not recommend installing this in frontend environments.",
4
- "version": "0.9.59",
4
+ "version": "0.9.60",
5
5
  "main": "src/main.ts",
6
6
  "type": "module",
7
7
  "repository": {
@@ -38,7 +38,7 @@ export class InteractiveCLI {
38
38
  async run(): Promise<void> {
39
39
  console.log("Welcome to Appwrite Utils CLI Tool by Zach Handley");
40
40
  console.log(
41
- "For more information, visit https://github.com/zachhandley/appwrite-utils"
41
+ "For more information, visit https://github.com/zachhandley/AppwriteUtils"
42
42
  );
43
43
 
44
44
  while (true) {