@adobe/aio-cli-plugin-app 10.2.1 → 10.2.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 +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
- package/schema/config.schema.json +25 -2
- package/schema/deploy.yaml.schema.json +1 -1
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ DESCRIPTION
|
|
|
71
71
|
Create, run, test, and deploy Adobe I/O Apps
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
_See code: [src/commands/app/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/10.2.
|
|
74
|
+
_See code: [src/commands/app/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/10.2.2/src/commands/app/index.js)_
|
|
75
75
|
|
|
76
76
|
## `aio app add`
|
|
77
77
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -125,7 +125,8 @@
|
|
|
125
125
|
"apikey",
|
|
126
126
|
"oauthwebapp",
|
|
127
127
|
"oauthnativeapp",
|
|
128
|
-
"oauthsinglepageapp"
|
|
128
|
+
"oauthsinglepageapp",
|
|
129
|
+
"oauth_server_to_server"
|
|
129
130
|
]
|
|
130
131
|
},
|
|
131
132
|
"jwt": { "$ref": "#/definitions/jwt" },
|
|
@@ -138,7 +139,9 @@
|
|
|
138
139
|
"oneOf": [
|
|
139
140
|
{ "required": ["oauth2"] },
|
|
140
141
|
{ "required": ["jwt"] },
|
|
141
|
-
{ "required": ["api_key"] }
|
|
142
|
+
{ "required": ["api_key"] },
|
|
143
|
+
{ "required": ["oauth_server_to_server"] }
|
|
144
|
+
|
|
142
145
|
]
|
|
143
146
|
},
|
|
144
147
|
"service": {
|
|
@@ -176,6 +179,26 @@
|
|
|
176
179
|
},
|
|
177
180
|
"required": [ "client_id", "client_secret", "redirect_uri", "defaultRedirectUri" ]
|
|
178
181
|
},
|
|
182
|
+
"oauth_server_to_server": {
|
|
183
|
+
"properties": {
|
|
184
|
+
"client_id": { "type": "string" },
|
|
185
|
+
"client_secrets": { "type": "array" },
|
|
186
|
+
"technical_account_email": {
|
|
187
|
+
"type": "string",
|
|
188
|
+
"format": "email"
|
|
189
|
+
},
|
|
190
|
+
"technical_account_id": {
|
|
191
|
+
"type": "string",
|
|
192
|
+
"format": "email"
|
|
193
|
+
},
|
|
194
|
+
"scopes": {
|
|
195
|
+
"type": "array",
|
|
196
|
+
"items": { "type": "string" },
|
|
197
|
+
"default": []
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"required": [ "client_id", "client_secrets", "technical_account_email", "technical_account_id", "scopes" ]
|
|
201
|
+
},
|
|
179
202
|
"oauthsinglepageapp": {
|
|
180
203
|
"type": "object",
|
|
181
204
|
"properties": {
|