@capgo/cli 7.13.1 → 7.14.0

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
@@ -54,6 +54,11 @@ Follow the documentation here : "https://capacitorjs.com/docs/getting-started/
54
54
  - [Delete_old](#key-delete_old)
55
55
  - 👤 [Account](#account)
56
56
  - [Id](#account-id)
57
+ - 🔹 [Organisation](#organisation)
58
+ - [List](#organisation-list)
59
+ - [Add](#organisation-add)
60
+ - [Set](#organisation-set)
61
+ - [Delete](#organisation-delete)
57
62
 
58
63
  ## <a id="init"></a> 🚀 **Init**
59
64
 
@@ -786,5 +791,111 @@ npx @capgo/cli@latest account id
786
791
  | **-a,** | <code>string</code> | API key to link to your account |
787
792
 
788
793
 
794
+ ## <a id="organisation"></a> 🔹 **Organisation**
795
+
796
+ 🏢 Manage your organizations in Capgo Cloud for team collaboration and app management.
797
+
798
+ ### <a id="organisation-list"></a> 📋 **List**
799
+
800
+ **Alias:** `l`
801
+
802
+ ```bash
803
+ npx @capgo/cli@latest organisation list
804
+ ```
805
+
806
+ 📋 List all organizations you have access to in Capgo Cloud.
807
+
808
+ **Example:**
809
+
810
+ ```bash
811
+ npx @capgo/cli@latest organisation list
812
+ ```
813
+
814
+ **Options:**
815
+
816
+ | Param | Type | Description |
817
+ | -------------- | ------------- | -------------------- |
818
+ | **-a,** | <code>string</code> | API key to link to your account |
819
+ | **--supa-host** | <code>string</code> | Supabase host URL for custom setups |
820
+ | **--supa-anon** | <code>string</code> | Supabase anon token for custom setups |
821
+
822
+ ### <a id="organisation-add"></a> ➕ **Add**
823
+
824
+ **Alias:** `a`
825
+
826
+ ```bash
827
+ npx @capgo/cli@latest organisation add
828
+ ```
829
+
830
+ ➕ Create a new organization in Capgo Cloud for team collaboration.
831
+
832
+ **Example:**
833
+
834
+ ```bash
835
+ npx @capgo/cli@latest organisation add --name "My Company" --email admin@mycompany.com
836
+ ```
837
+
838
+ **Options:**
839
+
840
+ | Param | Type | Description |
841
+ | -------------- | ------------- | -------------------- |
842
+ | **-n,** | <code>string</code> | Organization name |
843
+ | **-e,** | <code>string</code> | Management email for the organization |
844
+ | **-a,** | <code>string</code> | API key to link to your account |
845
+ | **--supa-host** | <code>string</code> | Supabase host URL for custom setups |
846
+ | **--supa-anon** | <code>string</code> | Supabase anon token for custom setups |
847
+
848
+ ### <a id="organisation-set"></a> ⚙️ **Set**
849
+
850
+ **Alias:** `s`
851
+
852
+ ```bash
853
+ npx @capgo/cli@latest organisation set
854
+ ```
855
+
856
+ ⚙️ Update organization settings such as name and management email.
857
+
858
+ **Example:**
859
+
860
+ ```bash
861
+ npx @capgo/cli@latest organisation set ORG_ID --name "Updated Company Name"
862
+ ```
863
+
864
+ **Options:**
865
+
866
+ | Param | Type | Description |
867
+ | -------------- | ------------- | -------------------- |
868
+ | **-n,** | <code>string</code> | Organization name |
869
+ | **-e,** | <code>string</code> | Management email for the organization |
870
+ | **-a,** | <code>string</code> | API key to link to your account |
871
+ | **--supa-host** | <code>string</code> | Supabase host URL for custom setups |
872
+ | **--supa-anon** | <code>string</code> | Supabase anon token for custom setups |
873
+
874
+ ### <a id="organisation-delete"></a> 🗑️ **Delete**
875
+
876
+ **Alias:** `d`
877
+
878
+ ```bash
879
+ npx @capgo/cli@latest organisation delete
880
+ ```
881
+
882
+ 🗑️ Delete an organization from Capgo Cloud. This action cannot be undone.
883
+ Only organization owners can delete organizations.
884
+
885
+ **Example:**
886
+
887
+ ```bash
888
+ npx @capgo/cli@latest organisation delete ORG_ID
889
+ ```
890
+
891
+ **Options:**
892
+
893
+ | Param | Type | Description |
894
+ | -------------- | ------------- | -------------------- |
895
+ | **-a,** | <code>string</code> | API key to link to your account |
896
+ | **--supa-host** | <code>string</code> | Supabase host URL for custom setups |
897
+ | **--supa-anon** | <code>string</code> | Supabase anon token for custom setups |
898
+
899
+
789
900
 
790
901
  <!-- AUTO-GENERATED-DOCS-END -->