@capgo/cli 7.62.1 → 7.62.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 +99 -13
- package/dist/index.js +210 -210
- package/dist/package.json +1 -1
- package/dist/src/{organisation → organization}/add.d.ts.map +1 -1
- package/dist/src/{organisation → organization}/delete.d.ts.map +1 -1
- package/dist/src/{organisation → organization}/index.d.ts.map +1 -1
- package/dist/src/{organisation → organization}/list.d.ts.map +1 -1
- package/dist/src/{organisation → organization}/set.d.ts.map +1 -1
- package/dist/src/sdk.js +1 -1
- package/package.json +1 -1
- /package/dist/src/{organisation → organization}/add.d.ts +0 -0
- /package/dist/src/{organisation → organization}/delete.d.ts +0 -0
- /package/dist/src/{organisation → organization}/index.d.ts +0 -0
- /package/dist/src/{organisation → organization}/list.d.ts +0 -0
- /package/dist/src/{organisation → organization}/set.d.ts +0 -0
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
|
+
- 🔹 [Organization](#organization)
|
|
58
|
+
- [List](#organization-list)
|
|
59
|
+
- [Add](#organization-add)
|
|
60
|
+
- [Set](#organization-set)
|
|
61
|
+
- [Delete](#organization-delete)
|
|
57
62
|
- 🔹 [Organisation](#organisation)
|
|
58
63
|
- [List](#organisation-list)
|
|
59
64
|
- [Add](#organisation-add)
|
|
@@ -788,16 +793,16 @@ npx @capgo/cli@latest account id
|
|
|
788
793
|
| **-a,** | <code>string</code> | API key to link to your account |
|
|
789
794
|
|
|
790
795
|
|
|
791
|
-
## <a id="
|
|
796
|
+
## <a id="organization"></a> 🔹 **Organization**
|
|
792
797
|
|
|
793
798
|
🏢 Manage your organizations in Capgo Cloud for team collaboration and app management.
|
|
794
799
|
|
|
795
|
-
### <a id="
|
|
800
|
+
### <a id="organization-list"></a> 📋 **List**
|
|
796
801
|
|
|
797
802
|
**Alias:** `l`
|
|
798
803
|
|
|
799
804
|
```bash
|
|
800
|
-
npx @capgo/cli@latest
|
|
805
|
+
npx @capgo/cli@latest organization list
|
|
801
806
|
```
|
|
802
807
|
|
|
803
808
|
📋 List all organizations you have access to in Capgo Cloud.
|
|
@@ -805,7 +810,7 @@ npx @capgo/cli@latest organisation list
|
|
|
805
810
|
**Example:**
|
|
806
811
|
|
|
807
812
|
```bash
|
|
808
|
-
npx @capgo/cli@latest
|
|
813
|
+
npx @capgo/cli@latest organization list
|
|
809
814
|
```
|
|
810
815
|
|
|
811
816
|
**Options:**
|
|
@@ -816,12 +821,12 @@ npx @capgo/cli@latest organisation list
|
|
|
816
821
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
817
822
|
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
818
823
|
|
|
819
|
-
### <a id="
|
|
824
|
+
### <a id="organization-add"></a> ➕ **Add**
|
|
820
825
|
|
|
821
826
|
**Alias:** `a`
|
|
822
827
|
|
|
823
828
|
```bash
|
|
824
|
-
npx @capgo/cli@latest
|
|
829
|
+
npx @capgo/cli@latest organization add
|
|
825
830
|
```
|
|
826
831
|
|
|
827
832
|
➕ Create a new organization in Capgo Cloud for team collaboration.
|
|
@@ -829,7 +834,7 @@ npx @capgo/cli@latest organisation add
|
|
|
829
834
|
**Example:**
|
|
830
835
|
|
|
831
836
|
```bash
|
|
832
|
-
npx @capgo/cli@latest
|
|
837
|
+
npx @capgo/cli@latest organization add --name "My Company" --email admin@mycompany.com
|
|
833
838
|
```
|
|
834
839
|
|
|
835
840
|
**Options:**
|
|
@@ -842,12 +847,12 @@ npx @capgo/cli@latest organisation add --name "My Company" --email admin@mycompa
|
|
|
842
847
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
843
848
|
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
844
849
|
|
|
845
|
-
### <a id="
|
|
850
|
+
### <a id="organization-set"></a> ⚙️ **Set**
|
|
846
851
|
|
|
847
852
|
**Alias:** `s`
|
|
848
853
|
|
|
849
854
|
```bash
|
|
850
|
-
npx @capgo/cli@latest
|
|
855
|
+
npx @capgo/cli@latest organization set
|
|
851
856
|
```
|
|
852
857
|
|
|
853
858
|
⚙️ Update organization settings such as name and management email.
|
|
@@ -855,7 +860,7 @@ npx @capgo/cli@latest organisation set
|
|
|
855
860
|
**Example:**
|
|
856
861
|
|
|
857
862
|
```bash
|
|
858
|
-
npx @capgo/cli@latest
|
|
863
|
+
npx @capgo/cli@latest organization set ORG_ID --name "Updated Company Name"
|
|
859
864
|
```
|
|
860
865
|
|
|
861
866
|
**Options:**
|
|
@@ -868,12 +873,12 @@ npx @capgo/cli@latest organisation set ORG_ID --name "Updated Company Name"
|
|
|
868
873
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
869
874
|
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
870
875
|
|
|
871
|
-
### <a id="
|
|
876
|
+
### <a id="organization-delete"></a> 🗑️ **Delete**
|
|
872
877
|
|
|
873
878
|
**Alias:** `d`
|
|
874
879
|
|
|
875
880
|
```bash
|
|
876
|
-
npx @capgo/cli@latest
|
|
881
|
+
npx @capgo/cli@latest organization delete
|
|
877
882
|
```
|
|
878
883
|
|
|
879
884
|
🗑️ Delete an organization from Capgo Cloud. This action cannot be undone.
|
|
@@ -882,9 +887,90 @@ Only organization owners can delete organizations.
|
|
|
882
887
|
**Example:**
|
|
883
888
|
|
|
884
889
|
```bash
|
|
885
|
-
npx @capgo/cli@latest
|
|
890
|
+
npx @capgo/cli@latest organization delete ORG_ID
|
|
891
|
+
```
|
|
892
|
+
|
|
893
|
+
**Options:**
|
|
894
|
+
|
|
895
|
+
| Param | Type | Description |
|
|
896
|
+
| -------------- | ------------- | -------------------- |
|
|
897
|
+
| **-a,** | <code>string</code> | API key to link to your account |
|
|
898
|
+
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
899
|
+
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
## <a id="organisation"></a> 🔹 **Organisation**
|
|
903
|
+
|
|
904
|
+
[DEPRECATED] Use "organization" instead. This command will be removed in a future version.
|
|
905
|
+
|
|
906
|
+
### <a id="organisation-list"></a> 📋 **List**
|
|
907
|
+
|
|
908
|
+
**Alias:** `l`
|
|
909
|
+
|
|
910
|
+
```bash
|
|
911
|
+
npx @capgo/cli@latest organisation list
|
|
912
|
+
```
|
|
913
|
+
|
|
914
|
+
[DEPRECATED] Use "organization list" instead.
|
|
915
|
+
|
|
916
|
+
**Options:**
|
|
917
|
+
|
|
918
|
+
| Param | Type | Description |
|
|
919
|
+
| -------------- | ------------- | -------------------- |
|
|
920
|
+
| **-a,** | <code>string</code> | API key to link to your account |
|
|
921
|
+
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
922
|
+
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
923
|
+
|
|
924
|
+
### <a id="organisation-add"></a> ➕ **Add**
|
|
925
|
+
|
|
926
|
+
**Alias:** `a`
|
|
927
|
+
|
|
928
|
+
```bash
|
|
929
|
+
npx @capgo/cli@latest organisation add
|
|
886
930
|
```
|
|
887
931
|
|
|
932
|
+
[DEPRECATED] Use "organization add" instead.
|
|
933
|
+
|
|
934
|
+
**Options:**
|
|
935
|
+
|
|
936
|
+
| Param | Type | Description |
|
|
937
|
+
| -------------- | ------------- | -------------------- |
|
|
938
|
+
| **-n,** | <code>string</code> | Organization name |
|
|
939
|
+
| **-e,** | <code>string</code> | Management email for the organization |
|
|
940
|
+
| **-a,** | <code>string</code> | API key to link to your account |
|
|
941
|
+
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
942
|
+
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
943
|
+
|
|
944
|
+
### <a id="organisation-set"></a> ⚙️ **Set**
|
|
945
|
+
|
|
946
|
+
**Alias:** `s`
|
|
947
|
+
|
|
948
|
+
```bash
|
|
949
|
+
npx @capgo/cli@latest organisation set
|
|
950
|
+
```
|
|
951
|
+
|
|
952
|
+
[DEPRECATED] Use "organization set" instead.
|
|
953
|
+
|
|
954
|
+
**Options:**
|
|
955
|
+
|
|
956
|
+
| Param | Type | Description |
|
|
957
|
+
| -------------- | ------------- | -------------------- |
|
|
958
|
+
| **-n,** | <code>string</code> | Organization name |
|
|
959
|
+
| **-e,** | <code>string</code> | Management email for the organization |
|
|
960
|
+
| **-a,** | <code>string</code> | API key to link to your account |
|
|
961
|
+
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
962
|
+
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
963
|
+
|
|
964
|
+
### <a id="organisation-delete"></a> 🗑️ **Delete**
|
|
965
|
+
|
|
966
|
+
**Alias:** `d`
|
|
967
|
+
|
|
968
|
+
```bash
|
|
969
|
+
npx @capgo/cli@latest organisation delete
|
|
970
|
+
```
|
|
971
|
+
|
|
972
|
+
[DEPRECATED] Use "organization delete" instead.
|
|
973
|
+
|
|
888
974
|
**Options:**
|
|
889
975
|
|
|
890
976
|
| Param | Type | Description |
|