chore: rename product_id to app_id (#77)

This commit is contained in:
Felix Angelov
2023-03-15 14:11:13 -05:00
committed by GitHub
parent 5425f09d46
commit 62bed70bf5
29 changed files with 146 additions and 145 deletions
@@ -26,7 +26,7 @@ Future<void> main() async {
final engine = await client.downloadEngine('latest');
// Create a new Shorebird application.
await client.createApp(productId: '<PRODUCT ID>');
await client.createApp(appId: '<APP ID>');
// List all apps.
final apps = await client.getApps();
@@ -35,7 +35,7 @@ Future<void> main() async {
await client.createPatch(
artifactPath: '<PATH TO ARTIFACT>', // e.g. 'libapp.so'
baseVersion: '<BASE VERSION>', // e.g. '1.0.0'
productId: '<PRODUCT ID>', // e.g. 'shorebird-example'
appId: '<APP ID>', // e.g. 'shorebird-example'
channel: '<CHANNEL>', // e.g. 'stable'
);