storeconfig 0.0.7 → 0.0.10
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 +5 -8
- package/THIRD_PARTY_LICENSES.md +49 -0
- package/dist/cli.js +125 -65
- package/dist/cli.js.map +4 -4
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -59,11 +59,8 @@ Set up your App Store Connect API credentials:
|
|
|
59
59
|
storeconfig configure
|
|
60
60
|
|
|
61
61
|
# Add Apple credentials
|
|
62
|
-
#
|
|
63
|
-
storeconfig apple
|
|
64
|
-
--issuer-id YOUR_ISSUER_ID \
|
|
65
|
-
--key-id YOUR_KEY_ID \
|
|
66
|
-
--key-path /path/to/your/AuthKey_XXXXX.p8
|
|
62
|
+
# The command will prompt you for Issuer ID and Key ID
|
|
63
|
+
storeconfig apple --key-path /path/to/your/AuthKey_XXXXX.p8
|
|
67
64
|
```
|
|
68
65
|
|
|
69
66
|
#### Get App Store Connect Key and IDs
|
|
@@ -85,9 +82,9 @@ This is required for store config to manage your apps on App Store Connect.
|
|
|
85
82
|
- Select **App Manager Access** - this is required to manage prices and other app configurations
|
|
86
83
|
|
|
87
84
|
4. **Download and Copy Credentials**
|
|
88
|
-
- Download the `.p8` file.
|
|
89
|
-
- **Key ID**
|
|
90
|
-
- **Issuer ID**
|
|
85
|
+
- Download the `.p8` file. Use its path as the `--key-path` argument.
|
|
86
|
+
- **Key ID** - you'll be prompted to enter this.
|
|
87
|
+
- **Issuer ID** - you'll be prompted to enter this.
|
|
91
88
|
|
|
92
89
|
## 📋 Commands
|
|
93
90
|
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Third-Party Licenses
|
|
2
|
+
|
|
3
|
+
This CLI includes the following open-source libraries bundled with the package:
|
|
4
|
+
|
|
5
|
+
- **inquirer** (MIT License) - [GitHub](https://github.com/SBoudrias/Inquirer.js?tab=MIT-1-ov-file)
|
|
6
|
+
- **ora** (MIT License) - [GitHub](https://github.com/sindresorhus/ora?tab=MIT-1-ov-file)
|
|
7
|
+
|
|
8
|
+
## License Texts
|
|
9
|
+
|
|
10
|
+
### inquirer
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
Copyright (c) 2025 Simon Boudrias
|
|
14
|
+
|
|
15
|
+
Permission is hereby granted, free of charge, to any person
|
|
16
|
+
obtaining a copy of this software and associated documentation
|
|
17
|
+
files (the "Software"), to deal in the Software without
|
|
18
|
+
restriction, including without limitation the rights to use,
|
|
19
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
20
|
+
copies of the Software, and to permit persons to whom the
|
|
21
|
+
Software is furnished to do so, subject to the following
|
|
22
|
+
conditions:
|
|
23
|
+
|
|
24
|
+
The above copyright notice and this permission notice shall be
|
|
25
|
+
included in all copies or substantial portions of the Software.
|
|
26
|
+
|
|
27
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
28
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
29
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
30
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
31
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
32
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
33
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
34
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### ora
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
MIT License
|
|
41
|
+
|
|
42
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
43
|
+
|
|
44
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
45
|
+
|
|
46
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
47
|
+
|
|
48
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
49
|
+
```
|