eas-cli 18.7.0 → 18.8.1
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 +147 -90
- package/build/build/utils/url.d.ts +6 -0
- package/build/build/utils/url.js +9 -0
- package/build/channel/insights/formatInsights.d.ts +47 -0
- package/build/channel/insights/formatInsights.js +108 -0
- package/build/commands/channel/insights.d.ts +18 -0
- package/build/commands/channel/insights.js +71 -0
- package/build/commands/observe/events.d.ts +1 -0
- package/build/commands/observe/events.js +17 -4
- package/build/commands/observe/metrics.d.ts +1 -0
- package/build/commands/observe/metrics.js +18 -6
- package/build/commands/observe/versions.d.ts +1 -0
- package/build/commands/observe/versions.js +17 -4
- package/build/commands/simulator/start.d.ts +16 -0
- package/build/commands/simulator/start.js +203 -0
- package/build/commands/update/insights.d.ts +19 -0
- package/build/commands/update/insights.js +75 -0
- package/build/commands/update/view.d.ts +4 -0
- package/build/commands/update/view.js +47 -2
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +28 -3
- package/build/graphql/client.d.ts +13 -0
- package/build/graphql/client.js +36 -1
- package/build/graphql/generated.d.ts +318 -0
- package/build/graphql/generated.js +21 -3
- package/build/graphql/mutations/DeviceRunSessionMutation.d.ts +5 -0
- package/build/graphql/mutations/DeviceRunSessionMutation.js +34 -0
- package/build/graphql/queries/ChannelInsightsQuery.d.ts +12 -0
- package/build/graphql/queries/ChannelInsightsQuery.js +81 -0
- package/build/graphql/queries/DeviceRunSessionQuery.d.ts +5 -0
- package/build/graphql/queries/DeviceRunSessionQuery.js +28 -0
- package/build/graphql/queries/UpdateInsightsQuery.d.ts +10 -0
- package/build/graphql/queries/UpdateInsightsQuery.js +53 -0
- package/build/graphql/types/Observe.js +1 -0
- package/build/insights/formatTimespan.d.ts +7 -0
- package/build/insights/formatTimespan.js +15 -0
- package/build/insights/timeRange.d.ts +10 -0
- package/build/insights/timeRange.js +10 -0
- package/build/metadata/apple/tasks/previews.js +41 -15
- package/build/observe/formatEvents.d.ts +3 -0
- package/build/observe/formatEvents.js +4 -0
- package/build/observe/formatMetrics.d.ts +3 -2
- package/build/observe/formatMetrics.js +16 -27
- package/build/observe/formatVersions.js +2 -8
- package/build/update/insights/formatInsights.d.ts +34 -0
- package/build/update/insights/formatInsights.js +128 -0
- package/build/utils/renderTextTable.d.ts +6 -0
- package/build/utils/renderTextTable.js +23 -0
- package/oclif.manifest.json +995 -593
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.8.1",
|
|
4
4
|
"description": "EAS command line tool",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"@expo/code-signing-certificates": "0.0.5",
|
|
48
48
|
"@expo/config": "55.0.10",
|
|
49
49
|
"@expo/config-plugins": "55.0.7",
|
|
50
|
-
"@expo/eas-build-job": "18.
|
|
51
|
-
"@expo/eas-json": "18.
|
|
50
|
+
"@expo/eas-build-job": "18.8.0",
|
|
51
|
+
"@expo/eas-json": "18.8.0",
|
|
52
52
|
"@expo/env": "^1.0.0",
|
|
53
53
|
"@expo/json-file": "8.3.3",
|
|
54
54
|
"@expo/logger": "18.5.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@expo/results": "1.0.0",
|
|
64
64
|
"@expo/rudder-sdk-node": "1.1.1",
|
|
65
65
|
"@expo/spawn-async": "1.7.2",
|
|
66
|
-
"@expo/steps": "18.
|
|
66
|
+
"@expo/steps": "18.8.0",
|
|
67
67
|
"@expo/timeago.js": "1.0.0",
|
|
68
68
|
"@oclif/core": "^4.8.3",
|
|
69
69
|
"@oclif/plugin-autocomplete": "^3.2.40",
|
|
@@ -247,5 +247,5 @@
|
|
|
247
247
|
"engines": {
|
|
248
248
|
"node": ">=20.0.0"
|
|
249
249
|
},
|
|
250
|
-
"gitHead": "
|
|
250
|
+
"gitHead": "714aec69c79af71e68b0212cb3e511f6ccef2ae0"
|
|
251
251
|
}
|