eas-cli 18.4.0 → 18.6.0
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 +92 -90
- package/build/build/android/prepareJob.js +2 -2
- package/build/build/ios/prepareJob.js +2 -2
- package/build/build/metadata.js +2 -1
- package/build/commandUtils/EasCommand.js +23 -2
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +2 -0
- package/build/commandUtils/pagination.d.ts +2 -1
- package/build/commandUtils/pagination.js +3 -2
- package/build/commandUtils/workflow/fetchLogs.js +11 -2
- package/build/commandUtils/workflow/types.d.ts +5 -1
- package/build/commandUtils/workflow/utils.js +22 -16
- package/build/commands/deploy/index.js +18 -2
- package/build/commands/metadata/pull.d.ts +1 -0
- package/build/commands/metadata/pull.js +9 -4
- package/build/commands/metadata/push.d.ts +1 -0
- package/build/commands/metadata/push.js +9 -4
- package/build/commands/observe/events.d.ts +27 -0
- package/build/commands/observe/events.js +140 -0
- package/build/commands/observe/metrics.d.ts +21 -0
- package/build/commands/observe/metrics.js +111 -0
- package/build/commands/observe/versions.d.ts +19 -0
- package/build/commands/observe/versions.js +69 -0
- package/build/commands/project/onboarding.js +3 -0
- package/build/commands/workflow/logs.js +12 -12
- package/build/credentials/ios/IosCredentialsProvider.js +8 -4
- package/build/credentials/ios/utils/provisioningProfile.d.ts +1 -0
- package/build/credentials/ios/utils/provisioningProfile.js +15 -1
- package/build/graphql/generated.d.ts +1273 -73
- package/build/graphql/generated.js +59 -19
- package/build/graphql/queries/ObserveQuery.d.ts +35 -0
- package/build/graphql/queries/ObserveQuery.js +109 -0
- package/build/graphql/queries/UserQuery.js +3 -0
- package/build/graphql/types/Observe.d.ts +3 -0
- package/build/graphql/types/Observe.js +84 -0
- package/build/graphql/types/Update.js +3 -0
- package/build/metadata/apple/config/reader.d.ts +13 -1
- package/build/metadata/apple/config/reader.js +33 -0
- package/build/metadata/apple/config/writer.d.ts +11 -1
- package/build/metadata/apple/config/writer.js +57 -0
- package/build/metadata/apple/data.d.ts +7 -2
- package/build/metadata/apple/rules/infoRestrictedWords.js +6 -1
- package/build/metadata/apple/tasks/age-rating.d.ts +1 -1
- package/build/metadata/apple/tasks/age-rating.js +19 -3
- package/build/metadata/apple/tasks/app-clip.d.ts +37 -0
- package/build/metadata/apple/tasks/app-clip.js +404 -0
- package/build/metadata/apple/tasks/app-review-detail.js +7 -2
- package/build/metadata/apple/tasks/index.js +6 -0
- package/build/metadata/apple/tasks/previews.d.ts +18 -0
- package/build/metadata/apple/tasks/previews.js +212 -0
- package/build/metadata/apple/tasks/screenshots.d.ts +18 -0
- package/build/metadata/apple/tasks/screenshots.js +235 -0
- package/build/metadata/apple/types.d.ts +61 -1
- package/build/metadata/auth.d.ts +11 -1
- package/build/metadata/auth.js +96 -2
- package/build/metadata/download.d.ts +5 -1
- package/build/metadata/download.js +16 -8
- package/build/metadata/upload.d.ts +5 -1
- package/build/metadata/upload.js +11 -4
- package/build/observe/fetchEvents.d.ts +27 -0
- package/build/observe/fetchEvents.js +83 -0
- package/build/observe/fetchMetrics.d.ts +11 -0
- package/build/observe/fetchMetrics.js +78 -0
- package/build/observe/fetchVersions.d.ts +7 -0
- package/build/observe/fetchVersions.js +31 -0
- package/build/observe/formatEvents.d.ts +31 -0
- package/build/observe/formatEvents.js +99 -0
- package/build/observe/formatMetrics.d.ts +38 -0
- package/build/observe/formatMetrics.js +206 -0
- package/build/observe/formatVersions.d.ts +32 -0
- package/build/observe/formatVersions.js +92 -0
- package/build/observe/metricNames.d.ts +4 -0
- package/build/observe/metricNames.js +33 -0
- package/build/observe/startAndEndTime.d.ts +18 -0
- package/build/observe/startAndEndTime.js +36 -0
- package/build/project/projectUtils.d.ts +0 -2
- package/build/project/projectUtils.js +0 -12
- package/build/project/workflow.js +1 -1
- package/build/sentry.d.ts +2 -0
- package/build/sentry.js +22 -0
- package/build/update/utils.d.ts +2 -2
- package/build/update/utils.js +1 -0
- package/build/user/SessionManager.js +11 -0
- package/build/user/User.d.ts +2 -2
- package/build/user/User.js +3 -0
- package/build/user/expoBrowserAuthFlowLauncher.js +70 -13
- package/build/worker/upload.js +15 -5
- package/oclif.manifest.json +1794 -1306
- package/package.json +15 -11
- package/schema/metadata-0.json +213 -0
|
@@ -162,6 +162,8 @@ export type Account = {
|
|
|
162
162
|
/** Billing information. Only visible to members with the ADMIN or OWNER role. */
|
|
163
163
|
billing?: Maybe<Billing>;
|
|
164
164
|
billingPeriod: BillingPeriod;
|
|
165
|
+
/** Convex team connections for this account */
|
|
166
|
+
convexTeamConnections: Array<ConvexTeamConnection>;
|
|
165
167
|
createdAt: Scalars['DateTime']['output'];
|
|
166
168
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
167
169
|
/** Echo projects for this account (paginated, most recent first) */
|
|
@@ -197,6 +199,8 @@ export type Account = {
|
|
|
197
199
|
name: Scalars['String']['output'];
|
|
198
200
|
/** Offers set on this account */
|
|
199
201
|
offers?: Maybe<Array<Offer>>;
|
|
202
|
+
/** Onboarding milestone stats for this account */
|
|
203
|
+
onboardingStats: AccountOnboardingStats;
|
|
200
204
|
/**
|
|
201
205
|
* Owning User of this account if personal account
|
|
202
206
|
* @deprecated Deprecated in favor of ownerUserActor
|
|
@@ -708,6 +712,14 @@ export type AccountNotificationPreferenceInput = {
|
|
|
708
712
|
event: NotificationEvent;
|
|
709
713
|
type: NotificationType;
|
|
710
714
|
};
|
|
715
|
+
/** Onboarding milestone stats for an account */
|
|
716
|
+
export type AccountOnboardingStats = {
|
|
717
|
+
__typename?: 'AccountOnboardingStats';
|
|
718
|
+
firstBuildCompletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
719
|
+
firstSubmissionCompletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
720
|
+
hasConfiguredUpdate: Scalars['Boolean']['output'];
|
|
721
|
+
hasTeamMembers: Scalars['Boolean']['output'];
|
|
722
|
+
};
|
|
711
723
|
export type AccountQuery = {
|
|
712
724
|
__typename?: 'AccountQuery';
|
|
713
725
|
/** Query an Account by ID */
|
|
@@ -885,20 +897,6 @@ export type ActorQuery = {
|
|
|
885
897
|
export type ActorQueryByIdArgs = {
|
|
886
898
|
id: Scalars['ID']['input'];
|
|
887
899
|
};
|
|
888
|
-
export type AddUserInput = {
|
|
889
|
-
audience?: InputMaybe<MailchimpAudience>;
|
|
890
|
-
email: Scalars['String']['input'];
|
|
891
|
-
tags?: InputMaybe<Array<MailchimpTag>>;
|
|
892
|
-
};
|
|
893
|
-
export type AddUserPayload = {
|
|
894
|
-
__typename?: 'AddUserPayload';
|
|
895
|
-
email_address?: Maybe<Scalars['String']['output']>;
|
|
896
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
897
|
-
list_id?: Maybe<Scalars['String']['output']>;
|
|
898
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
899
|
-
tags?: Maybe<Array<MailchimpTagPayload>>;
|
|
900
|
-
timestamp_signup?: Maybe<Scalars['String']['output']>;
|
|
901
|
-
};
|
|
902
900
|
export type AddonDetails = {
|
|
903
901
|
__typename?: 'AddonDetails';
|
|
904
902
|
id: Scalars['ID']['output'];
|
|
@@ -1008,7 +1006,6 @@ export type AndroidAppCredentialsMutationCreateAndroidAppCredentialsArgs = {
|
|
|
1008
1006
|
applicationIdentifier: Scalars['String']['input'];
|
|
1009
1007
|
};
|
|
1010
1008
|
export type AndroidAppCredentialsMutationCreateFcmV1CredentialArgs = {
|
|
1011
|
-
accountId: Scalars['ID']['input'];
|
|
1012
1009
|
androidAppCredentialsId: Scalars['String']['input'];
|
|
1013
1010
|
credential: Scalars['String']['input'];
|
|
1014
1011
|
};
|
|
@@ -1141,7 +1138,6 @@ export type AndroidJobOverridesInput = {
|
|
|
1141
1138
|
};
|
|
1142
1139
|
export type AndroidJobSecretsInput = {
|
|
1143
1140
|
buildCredentials?: InputMaybe<AndroidJobBuildCredentialsInput>;
|
|
1144
|
-
robotAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
1145
1141
|
};
|
|
1146
1142
|
export type AndroidJobVersionInput = {
|
|
1147
1143
|
versionCode: Scalars['String']['input'];
|
|
@@ -1216,6 +1212,7 @@ export type App = Project & {
|
|
|
1216
1212
|
activityTimelineProjectActivities: Array<ActivityTimelineProjectActivity>;
|
|
1217
1213
|
/** Android app credentials for the project */
|
|
1218
1214
|
androidAppCredentials: Array<AndroidAppCredentials>;
|
|
1215
|
+
appStoreConnectApp?: Maybe<AppStoreConnectApp>;
|
|
1219
1216
|
/**
|
|
1220
1217
|
* ios.appStoreUrl field from most recent classic update manifest
|
|
1221
1218
|
* @deprecated Classic updates have been deprecated.
|
|
@@ -1348,6 +1345,7 @@ export type App = Project & {
|
|
|
1348
1345
|
timelineActivity: TimelineActivityConnection;
|
|
1349
1346
|
/** @deprecated 'likes' have been deprecated. */
|
|
1350
1347
|
trendScore: Scalars['Float']['output'];
|
|
1348
|
+
turtleBrownfieldArtifactsPaginated: BrownfieldArtifactsConnection;
|
|
1351
1349
|
/** get an EAS branch owned by the app by name */
|
|
1352
1350
|
updateBranchByName?: Maybe<UpdateBranch>;
|
|
1353
1351
|
/** EAS branches owned by an app */
|
|
@@ -1523,6 +1521,14 @@ export type AppTimelineActivityArgs = {
|
|
|
1523
1521
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1524
1522
|
};
|
|
1525
1523
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1524
|
+
export type AppTurtleBrownfieldArtifactsPaginatedArgs = {
|
|
1525
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1526
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1527
|
+
filter?: InputMaybe<BrownfieldArtifactFilterInput>;
|
|
1528
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1529
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1530
|
+
};
|
|
1531
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1526
1532
|
export type AppUpdateBranchByNameArgs = {
|
|
1527
1533
|
name: Scalars['String']['input'];
|
|
1528
1534
|
};
|
|
@@ -1620,6 +1626,10 @@ export type AppWorkflowRunsPaginatedArgs = {
|
|
|
1620
1626
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1621
1627
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1622
1628
|
};
|
|
1629
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1630
|
+
export type AppWorkflowsArgs = {
|
|
1631
|
+
filter?: InputMaybe<AppWorkflowFilterInput>;
|
|
1632
|
+
};
|
|
1623
1633
|
export type AppBranchEdge = {
|
|
1624
1634
|
__typename?: 'AppBranchEdge';
|
|
1625
1635
|
cursor: Scalars['String']['output'];
|
|
@@ -1780,8 +1790,19 @@ export type AppNotificationPreferenceInput = {
|
|
|
1780
1790
|
};
|
|
1781
1791
|
export type AppObserve = {
|
|
1782
1792
|
__typename?: 'AppObserve';
|
|
1793
|
+
appVersions: Array<AppObserveAppVersion>;
|
|
1794
|
+
environments: Array<Scalars['String']['output']>;
|
|
1783
1795
|
events: AppObserveEventsConnection;
|
|
1784
1796
|
timeSeries: AppObserveTimeSeries;
|
|
1797
|
+
totalEventCount: Scalars['Int']['output'];
|
|
1798
|
+
};
|
|
1799
|
+
export type AppObserveAppVersionsArgs = {
|
|
1800
|
+
input: AppObserveReleasesInput;
|
|
1801
|
+
};
|
|
1802
|
+
export type AppObserveEnvironmentsArgs = {
|
|
1803
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1804
|
+
platform?: InputMaybe<AppObservePlatform>;
|
|
1805
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1785
1806
|
};
|
|
1786
1807
|
export type AppObserveEventsArgs = {
|
|
1787
1808
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1794,6 +1815,45 @@ export type AppObserveEventsArgs = {
|
|
|
1794
1815
|
export type AppObserveTimeSeriesArgs = {
|
|
1795
1816
|
input: AppObserveTimeSeriesInput;
|
|
1796
1817
|
};
|
|
1818
|
+
export type AppObserveAppBuildNumber = {
|
|
1819
|
+
__typename?: 'AppObserveAppBuildNumber';
|
|
1820
|
+
appBuildNumber: Scalars['String']['output'];
|
|
1821
|
+
easBuilds: Array<AppObserveAppEasBuild>;
|
|
1822
|
+
eventCount: Scalars['Int']['output'];
|
|
1823
|
+
firstSeenAt: Scalars['DateTime']['output'];
|
|
1824
|
+
uniqueUserCount: Scalars['Int']['output'];
|
|
1825
|
+
};
|
|
1826
|
+
export type AppObserveAppEasBuild = {
|
|
1827
|
+
__typename?: 'AppObserveAppEasBuild';
|
|
1828
|
+
easBuildId: Scalars['String']['output'];
|
|
1829
|
+
eventCount: Scalars['Int']['output'];
|
|
1830
|
+
firstSeenAt: Scalars['DateTime']['output'];
|
|
1831
|
+
uniqueUserCount: Scalars['Int']['output'];
|
|
1832
|
+
};
|
|
1833
|
+
export type AppObserveAppUpdate = {
|
|
1834
|
+
__typename?: 'AppObserveAppUpdate';
|
|
1835
|
+
appUpdateId: Scalars['String']['output'];
|
|
1836
|
+
easBuilds: Array<AppObserveAppEasBuild>;
|
|
1837
|
+
eventCount: Scalars['Int']['output'];
|
|
1838
|
+
firstSeenAt: Scalars['DateTime']['output'];
|
|
1839
|
+
uniqueUserCount: Scalars['Int']['output'];
|
|
1840
|
+
};
|
|
1841
|
+
export type AppObserveAppVersion = {
|
|
1842
|
+
__typename?: 'AppObserveAppVersion';
|
|
1843
|
+
appVersion: Scalars['String']['output'];
|
|
1844
|
+
buildNumbers: Array<AppObserveAppBuildNumber>;
|
|
1845
|
+
eventCount: Scalars['Int']['output'];
|
|
1846
|
+
firstSeenAt: Scalars['DateTime']['output'];
|
|
1847
|
+
metrics: Array<AppObserveAppVersionMetric>;
|
|
1848
|
+
uniqueUserCount: Scalars['Int']['output'];
|
|
1849
|
+
updates: Array<AppObserveAppUpdate>;
|
|
1850
|
+
};
|
|
1851
|
+
export type AppObserveAppVersionMetric = {
|
|
1852
|
+
__typename?: 'AppObserveAppVersionMetric';
|
|
1853
|
+
eventCount: Scalars['Int']['output'];
|
|
1854
|
+
metricName: Scalars['String']['output'];
|
|
1855
|
+
statistics: AppObserveVersionMarkerStatistics;
|
|
1856
|
+
};
|
|
1797
1857
|
export type AppObserveEvent = {
|
|
1798
1858
|
__typename?: 'AppObserveEvent';
|
|
1799
1859
|
appBuildNumber: Scalars['String']['output'];
|
|
@@ -1803,12 +1863,14 @@ export type AppObserveEvent = {
|
|
|
1803
1863
|
appVersion: Scalars['String']['output'];
|
|
1804
1864
|
clientVersion?: Maybe<Scalars['String']['output']>;
|
|
1805
1865
|
countryCode?: Maybe<Scalars['String']['output']>;
|
|
1866
|
+
customParams?: Maybe<Scalars['JSON']['output']>;
|
|
1806
1867
|
deviceLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
1807
1868
|
deviceModel: Scalars['String']['output'];
|
|
1808
1869
|
deviceName?: Maybe<Scalars['String']['output']>;
|
|
1809
1870
|
deviceOs: Scalars['String']['output'];
|
|
1810
1871
|
deviceOsVersion: Scalars['String']['output'];
|
|
1811
1872
|
easClientId: Scalars['String']['output'];
|
|
1873
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
1812
1874
|
eventBatchId: Scalars['ID']['output'];
|
|
1813
1875
|
expoSdkVersion?: Maybe<Scalars['String']['output']>;
|
|
1814
1876
|
id: Scalars['ID']['output'];
|
|
@@ -1817,6 +1879,7 @@ export type AppObserveEvent = {
|
|
|
1817
1879
|
metricValue: Scalars['Float']['output'];
|
|
1818
1880
|
parentSessionId?: Maybe<Scalars['String']['output']>;
|
|
1819
1881
|
reactNativeVersion?: Maybe<Scalars['String']['output']>;
|
|
1882
|
+
routeName?: Maybe<Scalars['String']['output']>;
|
|
1820
1883
|
sessionEventCount?: Maybe<Scalars['Int']['output']>;
|
|
1821
1884
|
sessionId?: Maybe<Scalars['String']['output']>;
|
|
1822
1885
|
tags: Scalars['JSON']['output'];
|
|
@@ -1834,10 +1897,13 @@ export type AppObserveEventsConnection = {
|
|
|
1834
1897
|
pageInfo: PageInfo;
|
|
1835
1898
|
};
|
|
1836
1899
|
export type AppObserveEventsFilter = {
|
|
1900
|
+
appBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
1901
|
+
appEasBuildId?: InputMaybe<Scalars['String']['input']>;
|
|
1837
1902
|
appUpdateId?: InputMaybe<Scalars['String']['input']>;
|
|
1838
1903
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
1839
1904
|
easClientId?: InputMaybe<Scalars['String']['input']>;
|
|
1840
1905
|
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1906
|
+
environment?: InputMaybe<Scalars['String']['input']>;
|
|
1841
1907
|
metricName?: InputMaybe<Scalars['String']['input']>;
|
|
1842
1908
|
platform?: InputMaybe<AppObservePlatform>;
|
|
1843
1909
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1859,15 +1925,21 @@ export declare enum AppObservePlatform {
|
|
|
1859
1925
|
Android = "ANDROID",
|
|
1860
1926
|
Ios = "IOS"
|
|
1861
1927
|
}
|
|
1928
|
+
export type AppObserveReleasesInput = {
|
|
1929
|
+
endTime: Scalars['DateTime']['input'];
|
|
1930
|
+
environment?: InputMaybe<Scalars['String']['input']>;
|
|
1931
|
+
metricNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1932
|
+
platform: AppObservePlatform;
|
|
1933
|
+
startTime: Scalars['DateTime']['input'];
|
|
1934
|
+
};
|
|
1862
1935
|
export type AppObserveTimeSeries = {
|
|
1863
1936
|
__typename?: 'AppObserveTimeSeries';
|
|
1937
|
+
appVersionMarkers: Array<AppObserveAppVersion>;
|
|
1864
1938
|
buckets: Array<AppObserveTimeSeriesBucket>;
|
|
1865
1939
|
eventCount: Scalars['Int']['output'];
|
|
1866
1940
|
latestVersionStatistics?: Maybe<AppObserveVersionStatistics>;
|
|
1867
1941
|
previousVersionStatistics?: Maybe<AppObserveVersionStatistics>;
|
|
1868
1942
|
statistics: AppObserveTimeSeriesStatistics;
|
|
1869
|
-
updateMarkers: Array<AppObserveUpdateMarker>;
|
|
1870
|
-
versionMarkers: Array<AppObserveVersionMarker>;
|
|
1871
1943
|
};
|
|
1872
1944
|
export type AppObserveTimeSeriesBucket = {
|
|
1873
1945
|
__typename?: 'AppObserveTimeSeriesBucket';
|
|
@@ -1882,10 +1954,13 @@ export type AppObserveTimeSeriesBucket = {
|
|
|
1882
1954
|
p99?: Maybe<Scalars['Float']['output']>;
|
|
1883
1955
|
};
|
|
1884
1956
|
export type AppObserveTimeSeriesInput = {
|
|
1957
|
+
appBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
1958
|
+
appEasBuildId?: InputMaybe<Scalars['String']['input']>;
|
|
1885
1959
|
appUpdateId?: InputMaybe<Scalars['String']['input']>;
|
|
1886
1960
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
1887
1961
|
bucketIntervalMinutes?: InputMaybe<Scalars['Int']['input']>;
|
|
1888
1962
|
endTime: Scalars['DateTime']['input'];
|
|
1963
|
+
environment?: InputMaybe<Scalars['String']['input']>;
|
|
1889
1964
|
metricName: Scalars['String']['input'];
|
|
1890
1965
|
platform: AppObservePlatform;
|
|
1891
1966
|
startTime: Scalars['DateTime']['input'];
|
|
@@ -1901,20 +1976,6 @@ export type AppObserveTimeSeriesStatistics = {
|
|
|
1901
1976
|
p90?: Maybe<Scalars['Float']['output']>;
|
|
1902
1977
|
p99?: Maybe<Scalars['Float']['output']>;
|
|
1903
1978
|
};
|
|
1904
|
-
export type AppObserveUpdateMarker = {
|
|
1905
|
-
__typename?: 'AppObserveUpdateMarker';
|
|
1906
|
-
appUpdateId: Scalars['String']['output'];
|
|
1907
|
-
appVersion: Scalars['String']['output'];
|
|
1908
|
-
eventCount: Scalars['Int']['output'];
|
|
1909
|
-
firstSeenAt: Scalars['DateTime']['output'];
|
|
1910
|
-
};
|
|
1911
|
-
export type AppObserveVersionMarker = {
|
|
1912
|
-
__typename?: 'AppObserveVersionMarker';
|
|
1913
|
-
appVersion: Scalars['String']['output'];
|
|
1914
|
-
eventCount: Scalars['Int']['output'];
|
|
1915
|
-
firstSeenAt: Scalars['DateTime']['output'];
|
|
1916
|
-
statistics: AppObserveVersionMarkerStatistics;
|
|
1917
|
-
};
|
|
1918
1979
|
export type AppObserveVersionMarkerStatistics = {
|
|
1919
1980
|
__typename?: 'AppObserveVersionMarkerStatistics';
|
|
1920
1981
|
average?: Maybe<Scalars['Float']['output']>;
|
|
@@ -2024,9 +2085,13 @@ export type AppStoreConnectApiKey = {
|
|
|
2024
2085
|
keyIdentifier: Scalars['String']['output'];
|
|
2025
2086
|
keyP8: Scalars['String']['output'];
|
|
2026
2087
|
name?: Maybe<Scalars['String']['output']>;
|
|
2088
|
+
remoteAppStoreConnectApps: Array<RemoteAppStoreConnectApp>;
|
|
2027
2089
|
roles?: Maybe<Array<AppStoreConnectUserRole>>;
|
|
2028
2090
|
updatedAt: Scalars['DateTime']['output'];
|
|
2029
2091
|
};
|
|
2092
|
+
export type AppStoreConnectApiKeyRemoteAppStoreConnectAppsArgs = {
|
|
2093
|
+
bundleIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
2094
|
+
};
|
|
2030
2095
|
export type AppStoreConnectApiKeyInput = {
|
|
2031
2096
|
appleTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
2032
2097
|
issuerIdentifier: Scalars['String']['input'];
|
|
@@ -2065,6 +2130,36 @@ export type AppStoreConnectApiKeyQueryByIdArgs = {
|
|
|
2065
2130
|
export type AppStoreConnectApiKeyUpdateInput = {
|
|
2066
2131
|
appleTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
2067
2132
|
};
|
|
2133
|
+
export type AppStoreConnectApp = {
|
|
2134
|
+
__typename?: 'AppStoreConnectApp';
|
|
2135
|
+
app: App;
|
|
2136
|
+
appStoreConnectApiKey: AppStoreConnectApiKey;
|
|
2137
|
+
ascAppIdentifier: Scalars['String']['output'];
|
|
2138
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2139
|
+
id: Scalars['ID']['output'];
|
|
2140
|
+
remoteAppStoreConnectApp: RemoteAppStoreConnectApp;
|
|
2141
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2142
|
+
webhookEventTypes: Array<Scalars['String']['output']>;
|
|
2143
|
+
webhookIdentifier: Scalars['ID']['output'];
|
|
2144
|
+
};
|
|
2145
|
+
export type AppStoreConnectAppInput = {
|
|
2146
|
+
appId: Scalars['ID']['input'];
|
|
2147
|
+
appStoreConnectApiKeyId: Scalars['ID']['input'];
|
|
2148
|
+
ascAppIdentifier: Scalars['String']['input'];
|
|
2149
|
+
};
|
|
2150
|
+
export type AppStoreConnectAppMutation = {
|
|
2151
|
+
__typename?: 'AppStoreConnectAppMutation';
|
|
2152
|
+
/** Create an App Store Connect app for an Expo app. */
|
|
2153
|
+
createAppStoreConnectApp: AppStoreConnectApp;
|
|
2154
|
+
/** Delete an App Store Connect app by ID. */
|
|
2155
|
+
deleteAppStoreConnectApp: DeleteAppStoreConnectAppResult;
|
|
2156
|
+
};
|
|
2157
|
+
export type AppStoreConnectAppMutationCreateAppStoreConnectAppArgs = {
|
|
2158
|
+
appStoreConnectAppInput: AppStoreConnectAppInput;
|
|
2159
|
+
};
|
|
2160
|
+
export type AppStoreConnectAppMutationDeleteAppStoreConnectAppArgs = {
|
|
2161
|
+
appStoreConnectAppId: Scalars['ID']['input'];
|
|
2162
|
+
};
|
|
2068
2163
|
export declare enum AppStoreConnectUserRole {
|
|
2069
2164
|
AccessToReports = "ACCESS_TO_REPORTS",
|
|
2070
2165
|
AccountHolder = "ACCOUNT_HOLDER",
|
|
@@ -2184,6 +2279,9 @@ export type AppWithGithubRepositoryInput = {
|
|
|
2184
2279
|
installationIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
2185
2280
|
projectName: Scalars['String']['input'];
|
|
2186
2281
|
};
|
|
2282
|
+
export type AppWorkflowFilterInput = {
|
|
2283
|
+
requestedGitRef?: InputMaybe<Scalars['String']['input']>;
|
|
2284
|
+
};
|
|
2187
2285
|
export type AppWorkflowRunEdge = {
|
|
2188
2286
|
__typename?: 'AppWorkflowRunEdge';
|
|
2189
2287
|
cursor: Scalars['String']['output'];
|
|
@@ -2193,6 +2291,7 @@ export type AppWorkflowRunFilterInput = {
|
|
|
2193
2291
|
requestedGitRef?: InputMaybe<Scalars['String']['input']>;
|
|
2194
2292
|
status?: InputMaybe<WorkflowRunStatus>;
|
|
2195
2293
|
timeRange?: InputMaybe<WorkflowRunTimeRangeInput>;
|
|
2294
|
+
workflowId?: InputMaybe<Scalars['ID']['input']>;
|
|
2196
2295
|
};
|
|
2197
2296
|
export type AppWorkflowRunGitBranchEdge = {
|
|
2198
2297
|
__typename?: 'AppWorkflowRunGitBranchEdge';
|
|
@@ -2685,6 +2784,7 @@ export type AverageAssetMetrics = {
|
|
|
2685
2784
|
__typename?: 'AverageAssetMetrics';
|
|
2686
2785
|
averageDownloadSizeBytes: Scalars['Int']['output'];
|
|
2687
2786
|
baseUpdate?: Maybe<Update>;
|
|
2787
|
+
baseUpdateDownloadUrl?: Maybe<Scalars['String']['output']>;
|
|
2688
2788
|
baseUpdateId?: Maybe<Scalars['ID']['output']>;
|
|
2689
2789
|
count: Scalars['Int']['output'];
|
|
2690
2790
|
storageKey: Scalars['String']['output'];
|
|
@@ -2752,6 +2852,32 @@ export type BranchQuery = {
|
|
|
2752
2852
|
export type BranchQueryByIdArgs = {
|
|
2753
2853
|
branchId: Scalars['ID']['input'];
|
|
2754
2854
|
};
|
|
2855
|
+
export type BrownfieldArtifact = {
|
|
2856
|
+
__typename?: 'BrownfieldArtifact';
|
|
2857
|
+
bundleName: Scalars['String']['output'];
|
|
2858
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2859
|
+
downloadUrl?: Maybe<Scalars['String']['output']>;
|
|
2860
|
+
id: Scalars['ID']['output'];
|
|
2861
|
+
platform: AppPlatform;
|
|
2862
|
+
sizeBytes?: Maybe<Scalars['Int']['output']>;
|
|
2863
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2864
|
+
version: Scalars['String']['output'];
|
|
2865
|
+
};
|
|
2866
|
+
export type BrownfieldArtifactEdge = {
|
|
2867
|
+
__typename?: 'BrownfieldArtifactEdge';
|
|
2868
|
+
cursor: Scalars['String']['output'];
|
|
2869
|
+
node: BrownfieldArtifact;
|
|
2870
|
+
};
|
|
2871
|
+
export type BrownfieldArtifactFilterInput = {
|
|
2872
|
+
bundleName?: InputMaybe<Scalars['String']['input']>;
|
|
2873
|
+
platform?: InputMaybe<AppPlatform>;
|
|
2874
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
2875
|
+
};
|
|
2876
|
+
export type BrownfieldArtifactsConnection = {
|
|
2877
|
+
__typename?: 'BrownfieldArtifactsConnection';
|
|
2878
|
+
edges: Array<BrownfieldArtifactEdge>;
|
|
2879
|
+
pageInfo: PageInfo;
|
|
2880
|
+
};
|
|
2755
2881
|
/** Represents an EAS Build */
|
|
2756
2882
|
export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
|
|
2757
2883
|
__typename?: 'Build';
|
|
@@ -3103,12 +3229,17 @@ export type BuildParamsInput = {
|
|
|
3103
3229
|
};
|
|
3104
3230
|
export declare enum BuildPhase {
|
|
3105
3231
|
BuilderInfo = "BUILDER_INFO",
|
|
3232
|
+
CacheStats = "CACHE_STATS",
|
|
3233
|
+
CalculateExpoUpdatesRuntimeVersion = "CALCULATE_EXPO_UPDATES_RUNTIME_VERSION",
|
|
3106
3234
|
CleanUpCredentials = "CLEAN_UP_CREDENTIALS",
|
|
3107
3235
|
CompleteBuild = "COMPLETE_BUILD",
|
|
3236
|
+
CompleteJob = "COMPLETE_JOB",
|
|
3237
|
+
ConfigureAndroidVersion = "CONFIGURE_ANDROID_VERSION",
|
|
3108
3238
|
ConfigureExpoUpdates = "CONFIGURE_EXPO_UPDATES",
|
|
3109
3239
|
ConfigureXcodeProject = "CONFIGURE_XCODE_PROJECT",
|
|
3110
3240
|
Custom = "CUSTOM",
|
|
3111
3241
|
DownloadApplicationArchive = "DOWNLOAD_APPLICATION_ARCHIVE",
|
|
3242
|
+
EagerBundle = "EAGER_BUNDLE",
|
|
3112
3243
|
EasBuildInternal = "EAS_BUILD_INTERNAL",
|
|
3113
3244
|
FailBuild = "FAIL_BUILD",
|
|
3114
3245
|
FixGradlew = "FIX_GRADLEW",
|
|
@@ -3129,6 +3260,7 @@ export declare enum BuildPhase {
|
|
|
3129
3260
|
PreUploadArtifactsHook = "PRE_UPLOAD_ARTIFACTS_HOOK",
|
|
3130
3261
|
Queue = "QUEUE",
|
|
3131
3262
|
ReadAppConfig = "READ_APP_CONFIG",
|
|
3263
|
+
ReadEasJson = "READ_EAS_JSON",
|
|
3132
3264
|
ReadPackageJson = "READ_PACKAGE_JSON",
|
|
3133
3265
|
RestoreCache = "RESTORE_CACHE",
|
|
3134
3266
|
RunExpoDoctor = "RUN_EXPO_DOCTOR",
|
|
@@ -3321,6 +3453,29 @@ export declare enum ContinentCode {
|
|
|
3321
3453
|
Sa = "SA",
|
|
3322
3454
|
T1 = "T1"
|
|
3323
3455
|
}
|
|
3456
|
+
export type ConvexIntegrationQuery = {
|
|
3457
|
+
__typename?: 'ConvexIntegrationQuery';
|
|
3458
|
+
clientIdentifier: Scalars['String']['output'];
|
|
3459
|
+
};
|
|
3460
|
+
export type ConvexTeamConnection = {
|
|
3461
|
+
__typename?: 'ConvexTeamConnection';
|
|
3462
|
+
account: Account;
|
|
3463
|
+
convexTeamIdentifier: Scalars['String']['output'];
|
|
3464
|
+
createdAt: Scalars['DateTime']['output'];
|
|
3465
|
+
id: Scalars['ID']['output'];
|
|
3466
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
3467
|
+
};
|
|
3468
|
+
export type ConvexTeamConnectionMutation = {
|
|
3469
|
+
__typename?: 'ConvexTeamConnectionMutation';
|
|
3470
|
+
createConvexTeamConnection: ConvexTeamConnection;
|
|
3471
|
+
deleteConvexTeamConnection: ConvexTeamConnection;
|
|
3472
|
+
};
|
|
3473
|
+
export type ConvexTeamConnectionMutationCreateConvexTeamConnectionArgs = {
|
|
3474
|
+
convexTeamConnectionData: CreateConvexTeamConnectionInput;
|
|
3475
|
+
};
|
|
3476
|
+
export type ConvexTeamConnectionMutationDeleteConvexTeamConnectionArgs = {
|
|
3477
|
+
convexTeamConnectionId: Scalars['ID']['input'];
|
|
3478
|
+
};
|
|
3324
3479
|
export declare enum CrashSampleFor {
|
|
3325
3480
|
Newest = "NEWEST",
|
|
3326
3481
|
Oldest = "OLDEST"
|
|
@@ -3350,11 +3505,37 @@ export type CreateAndroidSubmissionInput = {
|
|
|
3350
3505
|
config: AndroidSubmissionConfigInput;
|
|
3351
3506
|
submittedBuildId?: InputMaybe<Scalars['ID']['input']>;
|
|
3352
3507
|
};
|
|
3508
|
+
export type CreateBrownfieldArtifactInput = {
|
|
3509
|
+
appId: Scalars['ID']['input'];
|
|
3510
|
+
bundleName: Scalars['String']['input'];
|
|
3511
|
+
/** Filename for the artifact (e.g. "MyFramework.xcframework.tar.gz"). */
|
|
3512
|
+
filename: Scalars['String']['input'];
|
|
3513
|
+
platform: AppPlatform;
|
|
3514
|
+
/** The ID of the turtle job run that is producing this artifact. */
|
|
3515
|
+
producingTurtleJobRunId: Scalars['ID']['input'];
|
|
3516
|
+
/** Size of the artifact in bytes. Required for generating the signed upload URL. */
|
|
3517
|
+
size: Scalars['Int']['input'];
|
|
3518
|
+
/** Optional. If omitted, the version is auto-incremented from the latest artifact for the same platform and bundle name. */
|
|
3519
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
3520
|
+
};
|
|
3521
|
+
export type CreateBrownfieldArtifactResult = {
|
|
3522
|
+
__typename?: 'CreateBrownfieldArtifactResult';
|
|
3523
|
+
artifact: BrownfieldArtifact;
|
|
3524
|
+
/** Headers to include with the upload request. */
|
|
3525
|
+
uploadHeaders: Scalars['JSONObject']['output'];
|
|
3526
|
+
/** Signed URL to upload the artifact to. */
|
|
3527
|
+
uploadUrl: Scalars['String']['output'];
|
|
3528
|
+
};
|
|
3353
3529
|
export type CreateBuildResult = {
|
|
3354
3530
|
__typename?: 'CreateBuildResult';
|
|
3355
3531
|
build: Build;
|
|
3356
3532
|
deprecationInfo?: Maybe<EasBuildDeprecationInfo>;
|
|
3357
3533
|
};
|
|
3534
|
+
export type CreateConvexTeamConnectionInput = {
|
|
3535
|
+
accountId: Scalars['ID']['input'];
|
|
3536
|
+
convexTeamName?: InputMaybe<Scalars['String']['input']>;
|
|
3537
|
+
deploymentRegion: Scalars['String']['input'];
|
|
3538
|
+
};
|
|
3358
3539
|
export type CreateEchoChatInput = {
|
|
3359
3540
|
agentMetadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3360
3541
|
agentType?: InputMaybe<EchoAgentType>;
|
|
@@ -3364,15 +3545,19 @@ export type CreateEchoChatInput = {
|
|
|
3364
3545
|
};
|
|
3365
3546
|
export type CreateEchoMessageInput = {
|
|
3366
3547
|
echoChatId: Scalars['ID']['input'];
|
|
3548
|
+
echoTurnId?: InputMaybe<Scalars['ID']['input']>;
|
|
3549
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
3367
3550
|
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3368
3551
|
parentEchoMessageId?: InputMaybe<Scalars['ID']['input']>;
|
|
3369
3552
|
role: EchoMessageRole;
|
|
3553
|
+
/** Legacy alias for echoTurnId. Must be a valid UUIDv7. Provide exactly one of echoTurnId or turnId. */
|
|
3370
3554
|
turnId?: InputMaybe<Scalars['ID']['input']>;
|
|
3371
3555
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
3372
3556
|
};
|
|
3373
3557
|
export type CreateEchoMessagePartInput = {
|
|
3374
3558
|
data: Scalars['JSONObject']['input'];
|
|
3375
3559
|
echoMessageId: Scalars['ID']['input'];
|
|
3560
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
3376
3561
|
index?: InputMaybe<Scalars['Int']['input']>;
|
|
3377
3562
|
type: EchoMessagePartType;
|
|
3378
3563
|
};
|
|
@@ -3389,12 +3574,30 @@ export type CreateEchoProjectInput = {
|
|
|
3389
3574
|
thumbnail?: InputMaybe<EchoProjectThumbnailInput>;
|
|
3390
3575
|
visibility?: InputMaybe<EchoProjectVisibility>;
|
|
3391
3576
|
};
|
|
3577
|
+
export type CreateEchoRepositoryInput = {
|
|
3578
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
3579
|
+
echoProjectId: Scalars['ID']['input'];
|
|
3580
|
+
/**
|
|
3581
|
+
* When true, allows creating a new repository even if the Echo project already has a linked repository.
|
|
3582
|
+
* The existing link will be replaced.
|
|
3583
|
+
*/
|
|
3584
|
+
force?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3585
|
+
/**
|
|
3586
|
+
* Whether the repository should be private. Defaults to true.
|
|
3587
|
+
* Must be true (or unset) for shared organization repositories.
|
|
3588
|
+
*/
|
|
3589
|
+
isPrivate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3590
|
+
orgName: Scalars['String']['input'];
|
|
3591
|
+
provider: Scalars['String']['input'];
|
|
3592
|
+
repoName: Scalars['String']['input'];
|
|
3593
|
+
};
|
|
3392
3594
|
export type CreateEchoVersionInput = {
|
|
3393
3595
|
buildError?: InputMaybe<Scalars['String']['input']>;
|
|
3394
3596
|
buildStatus: EchoBuildStatus;
|
|
3395
3597
|
diffs: Scalars['JSON']['input'];
|
|
3396
3598
|
echoChatId?: InputMaybe<Scalars['ID']['input']>;
|
|
3397
3599
|
echoProjectId: Scalars['ID']['input'];
|
|
3600
|
+
echoTurnId?: InputMaybe<Scalars['ID']['input']>;
|
|
3398
3601
|
gitBranch?: InputMaybe<Scalars['String']['input']>;
|
|
3399
3602
|
gitCommitHash?: InputMaybe<Scalars['String']['input']>;
|
|
3400
3603
|
gitCommitMessage?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3402,6 +3605,7 @@ export type CreateEchoVersionInput = {
|
|
|
3402
3605
|
revertedFromEchoVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
3403
3606
|
source: EchoVersionSource;
|
|
3404
3607
|
thumbnail?: InputMaybe<EchoVersionThumbnailInput>;
|
|
3608
|
+
/** Legacy alias for echoTurnId. Must be a valid UUIDv7. Provide exactly one of echoTurnId or turnId. */
|
|
3405
3609
|
turnId?: InputMaybe<Scalars['ID']['input']>;
|
|
3406
3610
|
};
|
|
3407
3611
|
export type CreateEnvironmentSecretInput = {
|
|
@@ -3498,6 +3702,12 @@ export type CreateVexoAppInput = {
|
|
|
3498
3702
|
slug: Scalars['String']['input'];
|
|
3499
3703
|
vexoIdentifier: Scalars['String']['input'];
|
|
3500
3704
|
};
|
|
3705
|
+
export type CreateWorkflowDeviceTestCaseResultsInput = {
|
|
3706
|
+
/** Test case results to create. (path, retryCount) pairs must be unique. */
|
|
3707
|
+
testCaseResults: Array<WorkflowDeviceTestCaseResultInput>;
|
|
3708
|
+
/** ID of the workflow job to associate results with. */
|
|
3709
|
+
workflowJobId: Scalars['ID']['input'];
|
|
3710
|
+
};
|
|
3501
3711
|
export type CumulativeAverageMetrics = {
|
|
3502
3712
|
__typename?: 'CumulativeAverageMetrics';
|
|
3503
3713
|
averageUpdatePayloadBytes: Scalars['Int']['output'];
|
|
@@ -3604,6 +3814,10 @@ export type DeleteAndroidKeystoreResult = {
|
|
|
3604
3814
|
__typename?: 'DeleteAndroidKeystoreResult';
|
|
3605
3815
|
id: Scalars['ID']['output'];
|
|
3606
3816
|
};
|
|
3817
|
+
export type DeleteAppStoreConnectAppResult = {
|
|
3818
|
+
__typename?: 'DeleteAppStoreConnectAppResult';
|
|
3819
|
+
id: Scalars['ID']['output'];
|
|
3820
|
+
};
|
|
3607
3821
|
export type DeleteAppleDeviceResult = {
|
|
3608
3822
|
__typename?: 'DeleteAppleDeviceResult';
|
|
3609
3823
|
id: Scalars['ID']['output'];
|
|
@@ -3670,6 +3884,10 @@ export type DeleteSsoUserResult = {
|
|
|
3670
3884
|
__typename?: 'DeleteSSOUserResult';
|
|
3671
3885
|
id: Scalars['ID']['output'];
|
|
3672
3886
|
};
|
|
3887
|
+
export type DeleteSentryInstallationResult = {
|
|
3888
|
+
__typename?: 'DeleteSentryInstallationResult';
|
|
3889
|
+
id: Scalars['ID']['output'];
|
|
3890
|
+
};
|
|
3673
3891
|
export type DeleteSentryProjectResult = {
|
|
3674
3892
|
__typename?: 'DeleteSentryProjectResult';
|
|
3675
3893
|
id: Scalars['ID']['output'];
|
|
@@ -3851,16 +4069,20 @@ export declare enum EasBuildWaiverType {
|
|
|
3851
4069
|
SystemError = "SYSTEM_ERROR"
|
|
3852
4070
|
}
|
|
3853
4071
|
export declare enum EasService {
|
|
4072
|
+
Agent = "AGENT",
|
|
3854
4073
|
Builds = "BUILDS",
|
|
3855
4074
|
Jobs = "JOBS",
|
|
4075
|
+
Mcp = "MCP",
|
|
3856
4076
|
Updates = "UPDATES"
|
|
3857
4077
|
}
|
|
3858
4078
|
export declare enum EasServiceMetric {
|
|
3859
4079
|
AssetsRequests = "ASSETS_REQUESTS",
|
|
3860
4080
|
BandwidthUsage = "BANDWIDTH_USAGE",
|
|
3861
4081
|
Builds = "BUILDS",
|
|
4082
|
+
CreditUsage = "CREDIT_USAGE",
|
|
3862
4083
|
LocalBuilds = "LOCAL_BUILDS",
|
|
3863
4084
|
ManifestRequests = "MANIFEST_REQUESTS",
|
|
4085
|
+
McpRequests = "MCP_REQUESTS",
|
|
3864
4086
|
RunTime = "RUN_TIME",
|
|
3865
4087
|
UniqueUpdaters = "UNIQUE_UPDATERS",
|
|
3866
4088
|
UniqueUsers = "UNIQUE_USERS"
|
|
@@ -3960,12 +4182,14 @@ export type EchoMessage = {
|
|
|
3960
4182
|
echoChat: EchoChat;
|
|
3961
4183
|
/** Message parts (text, tool calls, etc.) ordered by index */
|
|
3962
4184
|
echoMessageParts: Array<EchoMessagePart>;
|
|
4185
|
+
/** Turn entity for grouping user message + assistant response */
|
|
4186
|
+
echoTurn?: Maybe<EchoTurn>;
|
|
3963
4187
|
id: Scalars['ID']['output'];
|
|
3964
4188
|
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
3965
4189
|
/** Parent message (for conversation branching) */
|
|
3966
4190
|
parentEchoMessage?: Maybe<EchoMessage>;
|
|
3967
4191
|
role: EchoMessageRole;
|
|
3968
|
-
/** Turn ID
|
|
4192
|
+
/** Turn ID (legacy alias for echoTurn.id, prefer echoTurn) */
|
|
3969
4193
|
turnId?: Maybe<Scalars['ID']['output']>;
|
|
3970
4194
|
/** User who sent the message (for user messages) */
|
|
3971
4195
|
user?: Maybe<User>;
|
|
@@ -3983,13 +4207,17 @@ export type EchoMessageEdge = {
|
|
|
3983
4207
|
};
|
|
3984
4208
|
export type EchoMessageMutation = {
|
|
3985
4209
|
__typename?: 'EchoMessageMutation';
|
|
3986
|
-
/**
|
|
4210
|
+
/**
|
|
4211
|
+
* Mark a message as completed (sets completedAt).
|
|
4212
|
+
* metadata is accepted for backward compatibility but ignored — use echoTurn.completeTurn instead.
|
|
4213
|
+
*/
|
|
3987
4214
|
completeMessage: EchoMessage;
|
|
3988
4215
|
/** Create a new message */
|
|
3989
4216
|
createMessage: EchoMessage;
|
|
3990
4217
|
};
|
|
3991
4218
|
export type EchoMessageMutationCompleteMessageArgs = {
|
|
3992
4219
|
id: Scalars['ID']['input'];
|
|
4220
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3993
4221
|
};
|
|
3994
4222
|
export type EchoMessageMutationCreateMessageArgs = {
|
|
3995
4223
|
input: CreateEchoMessageInput;
|
|
@@ -4068,9 +4296,17 @@ export type EchoProject = {
|
|
|
4068
4296
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
4069
4297
|
echoChats: EchoChatConnection;
|
|
4070
4298
|
echoVersions: EchoVersionConnection;
|
|
4299
|
+
/** Environment variables for this Echo project */
|
|
4300
|
+
environmentVariables: Array<EnvironmentVariable>;
|
|
4301
|
+
/**
|
|
4302
|
+
* Environment variables for this Echo project with decrypted secret values.
|
|
4303
|
+
* Used by the frontend to show secret values and for sandbox injection.
|
|
4304
|
+
*/
|
|
4305
|
+
environmentVariablesIncludingSensitive: Array<EnvironmentVariableWithSecret>;
|
|
4071
4306
|
githubInfo?: Maybe<EchoProjectGithubInfo>;
|
|
4072
4307
|
icon?: Maybe<EchoProjectIcon>;
|
|
4073
4308
|
id: Scalars['ID']['output'];
|
|
4309
|
+
images: Array<EchoProjectImage>;
|
|
4074
4310
|
initFromEchoProject?: Maybe<EchoProject>;
|
|
4075
4311
|
initFromGitHubUrl?: Maybe<Scalars['String']['output']>;
|
|
4076
4312
|
lastMessageAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -4087,6 +4323,14 @@ export type EchoProjectEchoVersionsArgs = {
|
|
|
4087
4323
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
4088
4324
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4089
4325
|
};
|
|
4326
|
+
export type EchoProjectEnvironmentVariablesArgs = {
|
|
4327
|
+
environment?: InputMaybe<Scalars['EnvironmentVariableEnvironment']['input']>;
|
|
4328
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4329
|
+
};
|
|
4330
|
+
export type EchoProjectEnvironmentVariablesIncludingSensitiveArgs = {
|
|
4331
|
+
environment?: InputMaybe<Scalars['EnvironmentVariableEnvironment']['input']>;
|
|
4332
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4333
|
+
};
|
|
4090
4334
|
export type EchoProjectConnection = {
|
|
4091
4335
|
__typename?: 'EchoProjectConnection';
|
|
4092
4336
|
edges: Array<EchoProjectEdge>;
|
|
@@ -4123,6 +4367,12 @@ export type EchoProjectIconInput = {
|
|
|
4123
4367
|
accentColor?: InputMaybe<Scalars['String']['input']>;
|
|
4124
4368
|
url: Scalars['String']['input'];
|
|
4125
4369
|
};
|
|
4370
|
+
export type EchoProjectImage = {
|
|
4371
|
+
__typename?: 'EchoProjectImage';
|
|
4372
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4373
|
+
id: Scalars['ID']['output'];
|
|
4374
|
+
url: Scalars['String']['output'];
|
|
4375
|
+
};
|
|
4126
4376
|
export type EchoProjectMutation = {
|
|
4127
4377
|
__typename?: 'EchoProjectMutation';
|
|
4128
4378
|
/** Create a new Echo project */
|
|
@@ -4148,6 +4398,8 @@ export type EchoProjectQuery = {
|
|
|
4148
4398
|
byId?: Maybe<EchoProject>;
|
|
4149
4399
|
/** Get an Echo project by slug (globally unique) */
|
|
4150
4400
|
bySlug?: Maybe<EchoProject>;
|
|
4401
|
+
/** Get PUBLIC Echo projects for an account by account name (username). */
|
|
4402
|
+
publicByAccountName: EchoProjectConnection;
|
|
4151
4403
|
};
|
|
4152
4404
|
export type EchoProjectQueryByIdArgs = {
|
|
4153
4405
|
id: Scalars['ID']['input'];
|
|
@@ -4155,6 +4407,11 @@ export type EchoProjectQueryByIdArgs = {
|
|
|
4155
4407
|
export type EchoProjectQueryBySlugArgs = {
|
|
4156
4408
|
slug: Scalars['String']['input'];
|
|
4157
4409
|
};
|
|
4410
|
+
export type EchoProjectQueryPublicByAccountNameArgs = {
|
|
4411
|
+
accountName: Scalars['String']['input'];
|
|
4412
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4413
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4414
|
+
};
|
|
4158
4415
|
export type EchoProjectThumbnail = {
|
|
4159
4416
|
__typename?: 'EchoProjectThumbnail';
|
|
4160
4417
|
accentColor?: Maybe<Scalars['String']['output']>;
|
|
@@ -4170,10 +4427,90 @@ export type EchoProjectThumbnailInput = {
|
|
|
4170
4427
|
visualHash?: InputMaybe<Scalars['String']['input']>;
|
|
4171
4428
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
4172
4429
|
};
|
|
4430
|
+
export declare enum EchoProjectUploadSessionType {
|
|
4431
|
+
ImageUpload = "IMAGE_UPLOAD"
|
|
4432
|
+
}
|
|
4173
4433
|
export declare enum EchoProjectVisibility {
|
|
4174
4434
|
Private = "PRIVATE",
|
|
4175
4435
|
Public = "PUBLIC"
|
|
4176
4436
|
}
|
|
4437
|
+
export type EchoRepositoryAccessTokenResult = {
|
|
4438
|
+
__typename?: 'EchoRepositoryAccessTokenResult';
|
|
4439
|
+
expiresAt: Scalars['DateTime']['output'];
|
|
4440
|
+
gitCommitterEmail: Scalars['String']['output'];
|
|
4441
|
+
gitCommitterName: Scalars['String']['output'];
|
|
4442
|
+
gitUrl: Scalars['String']['output'];
|
|
4443
|
+
token: Scalars['String']['output'];
|
|
4444
|
+
};
|
|
4445
|
+
export type EchoRepositoryMutation = {
|
|
4446
|
+
__typename?: 'EchoRepositoryMutation';
|
|
4447
|
+
/**
|
|
4448
|
+
* Create a repository under a given org using the Expo GitHub App installation for Echo.
|
|
4449
|
+
* Links the created repository to the specified Echo project.
|
|
4450
|
+
*/
|
|
4451
|
+
createEchoRepository: EchoRepositoryResult;
|
|
4452
|
+
/** Generate a scoped installation access token for the repository linked to the specified Echo project. */
|
|
4453
|
+
generateEchoRepositoryAccessToken: EchoRepositoryAccessTokenResult;
|
|
4454
|
+
};
|
|
4455
|
+
export type EchoRepositoryMutationCreateEchoRepositoryArgs = {
|
|
4456
|
+
input: CreateEchoRepositoryInput;
|
|
4457
|
+
};
|
|
4458
|
+
export type EchoRepositoryMutationGenerateEchoRepositoryAccessTokenArgs = {
|
|
4459
|
+
input: GenerateEchoRepositoryAccessTokenInput;
|
|
4460
|
+
};
|
|
4461
|
+
export type EchoRepositoryResult = {
|
|
4462
|
+
__typename?: 'EchoRepositoryResult';
|
|
4463
|
+
defaultBranch: Scalars['String']['output'];
|
|
4464
|
+
githubRepositoryIdentifier: Scalars['Int']['output'];
|
|
4465
|
+
name: Scalars['String']['output'];
|
|
4466
|
+
nodeIdentifier: Scalars['String']['output'];
|
|
4467
|
+
owner: Scalars['String']['output'];
|
|
4468
|
+
url: Scalars['String']['output'];
|
|
4469
|
+
};
|
|
4470
|
+
export type EchoTurn = {
|
|
4471
|
+
__typename?: 'EchoTurn';
|
|
4472
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4473
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4474
|
+
/** Parent chat */
|
|
4475
|
+
echoChat: EchoChat;
|
|
4476
|
+
/** Messages in this turn */
|
|
4477
|
+
echoMessages: Array<EchoMessage>;
|
|
4478
|
+
id: Scalars['ID']['output'];
|
|
4479
|
+
};
|
|
4480
|
+
/** Breakdown of cache write input tokens by cache TTL. */
|
|
4481
|
+
export type EchoTurnCacheWriteInput = {
|
|
4482
|
+
ttl1h?: InputMaybe<Scalars['Int']['input']>;
|
|
4483
|
+
ttl5m?: InputMaybe<Scalars['Int']['input']>;
|
|
4484
|
+
ttl24h?: InputMaybe<Scalars['Int']['input']>;
|
|
4485
|
+
};
|
|
4486
|
+
export type EchoTurnMutation = {
|
|
4487
|
+
__typename?: 'EchoTurnMutation';
|
|
4488
|
+
/** Mark a turn as completed and create a billing ledger entry */
|
|
4489
|
+
completeTurn: EchoTurn;
|
|
4490
|
+
};
|
|
4491
|
+
export type EchoTurnMutationCompleteTurnArgs = {
|
|
4492
|
+
id: Scalars['ID']['input'];
|
|
4493
|
+
usage: EchoTurnUsageInput;
|
|
4494
|
+
};
|
|
4495
|
+
/** Token usage for billing. Tracks input/output tokens and cache usage. */
|
|
4496
|
+
export type EchoTurnTokenUsageInput = {
|
|
4497
|
+
cacheRead?: InputMaybe<Scalars['Int']['input']>;
|
|
4498
|
+
cacheWrite?: InputMaybe<Scalars['Int']['input']>;
|
|
4499
|
+
cacheWriteBreakdown?: InputMaybe<EchoTurnCacheWriteInput>;
|
|
4500
|
+
input: Scalars['Int']['input'];
|
|
4501
|
+
output: Scalars['Int']['input'];
|
|
4502
|
+
reasoning?: InputMaybe<Scalars['Int']['input']>;
|
|
4503
|
+
};
|
|
4504
|
+
/** Cumulative usage data for a completed turn. */
|
|
4505
|
+
export type EchoTurnUsageInput = {
|
|
4506
|
+
agent?: InputMaybe<Scalars['String']['input']>;
|
|
4507
|
+
cost?: InputMaybe<Scalars['Float']['input']>;
|
|
4508
|
+
finishReason?: InputMaybe<Scalars['String']['input']>;
|
|
4509
|
+
model?: InputMaybe<Scalars['String']['input']>;
|
|
4510
|
+
provider?: InputMaybe<Scalars['String']['input']>;
|
|
4511
|
+
sdkCost?: InputMaybe<Scalars['Float']['input']>;
|
|
4512
|
+
tokens?: InputMaybe<EchoTurnTokenUsageInput>;
|
|
4513
|
+
};
|
|
4177
4514
|
export type EchoVersion = {
|
|
4178
4515
|
__typename?: 'EchoVersion';
|
|
4179
4516
|
buildError?: Maybe<Scalars['String']['output']>;
|
|
@@ -4183,6 +4520,8 @@ export type EchoVersion = {
|
|
|
4183
4520
|
echoChat?: Maybe<EchoChat>;
|
|
4184
4521
|
/** Parent project */
|
|
4185
4522
|
echoProject: EchoProject;
|
|
4523
|
+
/** Turn that created this version */
|
|
4524
|
+
echoTurn?: Maybe<EchoTurn>;
|
|
4186
4525
|
gitBranch: Scalars['String']['output'];
|
|
4187
4526
|
gitCommitHash?: Maybe<Scalars['String']['output']>;
|
|
4188
4527
|
gitCommitMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -4192,7 +4531,7 @@ export type EchoVersion = {
|
|
|
4192
4531
|
revertedFromEchoVersion?: Maybe<EchoVersion>;
|
|
4193
4532
|
source: EchoVersionSource;
|
|
4194
4533
|
thumbnail?: Maybe<EchoVersionThumbnail>;
|
|
4195
|
-
/** Turn ID
|
|
4534
|
+
/** Turn ID (legacy alias for echoTurn.id, prefer echoTurn) */
|
|
4196
4535
|
turnId?: Maybe<Scalars['ID']['output']>;
|
|
4197
4536
|
};
|
|
4198
4537
|
export type EchoVersionConnection = {
|
|
@@ -4256,13 +4595,6 @@ export type EditUpdateBranchInput = {
|
|
|
4256
4595
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4257
4596
|
newName: Scalars['String']['input'];
|
|
4258
4597
|
};
|
|
4259
|
-
export type EmailSubscriptionMutation = {
|
|
4260
|
-
__typename?: 'EmailSubscriptionMutation';
|
|
4261
|
-
addUser: AddUserPayload;
|
|
4262
|
-
};
|
|
4263
|
-
export type EmailSubscriptionMutationAddUserArgs = {
|
|
4264
|
-
addUserInput: AddUserInput;
|
|
4265
|
-
};
|
|
4266
4598
|
export declare enum EntityTypeName {
|
|
4267
4599
|
AccountEntity = "AccountEntity",
|
|
4268
4600
|
AccountSsoConfigurationEntity = "AccountSSOConfigurationEntity",
|
|
@@ -4270,16 +4602,15 @@ export declare enum EntityTypeName {
|
|
|
4270
4602
|
AndroidKeystoreEntity = "AndroidKeystoreEntity",
|
|
4271
4603
|
AppEntity = "AppEntity",
|
|
4272
4604
|
AppStoreConnectApiKeyEntity = "AppStoreConnectApiKeyEntity",
|
|
4605
|
+
AppStoreConnectAppEntity = "AppStoreConnectAppEntity",
|
|
4273
4606
|
AppleDeviceEntity = "AppleDeviceEntity",
|
|
4274
4607
|
AppleDistributionCertificateEntity = "AppleDistributionCertificateEntity",
|
|
4275
4608
|
AppleProvisioningProfileEntity = "AppleProvisioningProfileEntity",
|
|
4276
4609
|
AppleTeamEntity = "AppleTeamEntity",
|
|
4610
|
+
BillingContractEntity = "BillingContractEntity",
|
|
4277
4611
|
BranchEntity = "BranchEntity",
|
|
4278
4612
|
ChannelEntity = "ChannelEntity",
|
|
4279
4613
|
CustomerEntity = "CustomerEntity",
|
|
4280
|
-
EchoChatEntity = "EchoChatEntity",
|
|
4281
|
-
EchoMessageEntity = "EchoMessageEntity",
|
|
4282
|
-
EchoMessagePartEntity = "EchoMessagePartEntity",
|
|
4283
4614
|
EchoProjectEntity = "EchoProjectEntity",
|
|
4284
4615
|
EchoVersionEntity = "EchoVersionEntity",
|
|
4285
4616
|
GoogleServiceAccountKeyEntity = "GoogleServiceAccountKeyEntity",
|
|
@@ -4359,10 +4690,14 @@ export type EnvironmentVariableMutation = {
|
|
|
4359
4690
|
createBulkEnvironmentVariablesForAccount: Array<EnvironmentVariable>;
|
|
4360
4691
|
/** Create bulk env variables for an App */
|
|
4361
4692
|
createBulkEnvironmentVariablesForApp: Array<EnvironmentVariable>;
|
|
4693
|
+
/** Create bulk env variables for an Echo project */
|
|
4694
|
+
createBulkEnvironmentVariablesForEchoProject: Array<EnvironmentVariable>;
|
|
4362
4695
|
/** Create an environment variable for an Account */
|
|
4363
4696
|
createEnvironmentVariableForAccount: EnvironmentVariable;
|
|
4364
4697
|
/** Create an environment variable for an App */
|
|
4365
4698
|
createEnvironmentVariableForApp: EnvironmentVariable;
|
|
4699
|
+
/** Create an environment variable for an Echo project */
|
|
4700
|
+
createEnvironmentVariableForEchoProject: EnvironmentVariable;
|
|
4366
4701
|
/** Bulk delete environment variables */
|
|
4367
4702
|
deleteBulkEnvironmentVariables: Array<DeleteEnvironmentVariableResult>;
|
|
4368
4703
|
/** Delete an environment variable */
|
|
@@ -4380,6 +4715,10 @@ export type EnvironmentVariableMutationCreateBulkEnvironmentVariablesForAppArgs
|
|
|
4380
4715
|
appId: Scalars['ID']['input'];
|
|
4381
4716
|
environmentVariablesData: Array<CreateEnvironmentVariableInput>;
|
|
4382
4717
|
};
|
|
4718
|
+
export type EnvironmentVariableMutationCreateBulkEnvironmentVariablesForEchoProjectArgs = {
|
|
4719
|
+
echoProjectId: Scalars['ID']['input'];
|
|
4720
|
+
environmentVariablesData: Array<CreateEnvironmentVariableInput>;
|
|
4721
|
+
};
|
|
4383
4722
|
export type EnvironmentVariableMutationCreateEnvironmentVariableForAccountArgs = {
|
|
4384
4723
|
accountId: Scalars['ID']['input'];
|
|
4385
4724
|
environmentVariableData: CreateSharedEnvironmentVariableInput;
|
|
@@ -4388,6 +4727,10 @@ export type EnvironmentVariableMutationCreateEnvironmentVariableForAppArgs = {
|
|
|
4388
4727
|
appId: Scalars['ID']['input'];
|
|
4389
4728
|
environmentVariableData: CreateEnvironmentVariableInput;
|
|
4390
4729
|
};
|
|
4730
|
+
export type EnvironmentVariableMutationCreateEnvironmentVariableForEchoProjectArgs = {
|
|
4731
|
+
echoProjectId: Scalars['ID']['input'];
|
|
4732
|
+
environmentVariableData: CreateEnvironmentVariableInput;
|
|
4733
|
+
};
|
|
4391
4734
|
export type EnvironmentVariableMutationDeleteBulkEnvironmentVariablesArgs = {
|
|
4392
4735
|
ids: Array<Scalars['ID']['input']>;
|
|
4393
4736
|
};
|
|
@@ -4401,6 +4744,7 @@ export type EnvironmentVariableMutationUpdateEnvironmentVariableArgs = {
|
|
|
4401
4744
|
environmentVariableData: UpdateEnvironmentVariableInput;
|
|
4402
4745
|
};
|
|
4403
4746
|
export declare enum EnvironmentVariableScope {
|
|
4747
|
+
EchoProject = "ECHO_PROJECT",
|
|
4404
4748
|
Project = "PROJECT",
|
|
4405
4749
|
Shared = "SHARED"
|
|
4406
4750
|
}
|
|
@@ -4585,6 +4929,10 @@ export type FutureSubscription = {
|
|
|
4585
4929
|
recurringCents?: Maybe<Scalars['Int']['output']>;
|
|
4586
4930
|
startDate: Scalars['DateTime']['output'];
|
|
4587
4931
|
};
|
|
4932
|
+
export type GenerateEchoRepositoryAccessTokenInput = {
|
|
4933
|
+
echoProjectId: Scalars['ID']['input'];
|
|
4934
|
+
provider: Scalars['String']['input'];
|
|
4935
|
+
};
|
|
4588
4936
|
export type GenerateLogRocketOrganizationLinkResult = {
|
|
4589
4937
|
__typename?: 'GenerateLogRocketOrganizationLinkResult';
|
|
4590
4938
|
url: Scalars['String']['output'];
|
|
@@ -4796,6 +5144,7 @@ export type GitHubRepository = {
|
|
|
4796
5144
|
githubRepositoryIdentifier: Scalars['Int']['output'];
|
|
4797
5145
|
githubRepositoryUrl?: Maybe<Scalars['String']['output']>;
|
|
4798
5146
|
id: Scalars['ID']['output'];
|
|
5147
|
+
lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
|
|
4799
5148
|
metadata: GitHubRepositoryMetadata;
|
|
4800
5149
|
nodeIdentifier: Scalars['String']['output'];
|
|
4801
5150
|
};
|
|
@@ -4817,8 +5166,8 @@ export type GitHubRepositoryMutation = {
|
|
|
4817
5166
|
createAndConfigureRepository: BackgroundJobReceipt;
|
|
4818
5167
|
/** Create a GitHub repository for an App */
|
|
4819
5168
|
createGitHubRepository: GitHubRepository;
|
|
4820
|
-
/** Delete a GitHub repository by ID */
|
|
4821
|
-
|
|
5169
|
+
/** Delete a GitHub repository by ID in the background */
|
|
5170
|
+
scheduleGitHubRepositoryDeletion: BackgroundJobReceipt;
|
|
4822
5171
|
};
|
|
4823
5172
|
export type GitHubRepositoryMutationConfigureEasArgs = {
|
|
4824
5173
|
githubRepositoryId: Scalars['ID']['input'];
|
|
@@ -4829,7 +5178,7 @@ export type GitHubRepositoryMutationCreateAndConfigureRepositoryArgs = {
|
|
|
4829
5178
|
export type GitHubRepositoryMutationCreateGitHubRepositoryArgs = {
|
|
4830
5179
|
githubRepositoryData: CreateGitHubRepositoryInput;
|
|
4831
5180
|
};
|
|
4832
|
-
export type
|
|
5181
|
+
export type GitHubRepositoryMutationScheduleGitHubRepositoryDeletionArgs = {
|
|
4833
5182
|
githubRepositoryId: Scalars['ID']['input'];
|
|
4834
5183
|
};
|
|
4835
5184
|
export type GitHubRepositoryOwner = {
|
|
@@ -5217,7 +5566,6 @@ export type IosJobOverridesInput = {
|
|
|
5217
5566
|
};
|
|
5218
5567
|
export type IosJobSecretsInput = {
|
|
5219
5568
|
buildCredentials?: InputMaybe<Array<InputMaybe<IosJobTargetCredentialsInput>>>;
|
|
5220
|
-
robotAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
5221
5569
|
};
|
|
5222
5570
|
export type IosJobTargetCredentialsInput = {
|
|
5223
5571
|
distributionCertificate: IosJobDistributionCertificateInput;
|
|
@@ -5438,23 +5786,6 @@ export type LogsTimespan = {
|
|
|
5438
5786
|
end: Scalars['DateTime']['input'];
|
|
5439
5787
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5440
5788
|
};
|
|
5441
|
-
export declare enum MailchimpAudience {
|
|
5442
|
-
ExpoDevelopers = "EXPO_DEVELOPERS",
|
|
5443
|
-
ExpoDeveloperOnboarding = "EXPO_DEVELOPER_ONBOARDING",
|
|
5444
|
-
LaunchParty_2024 = "LAUNCH_PARTY_2024",
|
|
5445
|
-
NonprodExpoDevelopers = "NONPROD_EXPO_DEVELOPERS"
|
|
5446
|
-
}
|
|
5447
|
-
export declare enum MailchimpTag {
|
|
5448
|
-
DevClientUsers = "DEV_CLIENT_USERS",
|
|
5449
|
-
DidSubscribeToEasAtLeastOnce = "DID_SUBSCRIBE_TO_EAS_AT_LEAST_ONCE",
|
|
5450
|
-
EasMasterList = "EAS_MASTER_LIST",
|
|
5451
|
-
NewsletterSignupList = "NEWSLETTER_SIGNUP_LIST"
|
|
5452
|
-
}
|
|
5453
|
-
export type MailchimpTagPayload = {
|
|
5454
|
-
__typename?: 'MailchimpTagPayload';
|
|
5455
|
-
id?: Maybe<Scalars['Int']['output']>;
|
|
5456
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
5457
|
-
};
|
|
5458
5789
|
export type MeMutation = {
|
|
5459
5790
|
__typename?: 'MeMutation';
|
|
5460
5791
|
/** Add an additional second factor device */
|
|
@@ -5623,6 +5954,16 @@ export type NotificationsSentOverTimeData = {
|
|
|
5623
5954
|
__typename?: 'NotificationsSentOverTimeData';
|
|
5624
5955
|
data: LineChartData;
|
|
5625
5956
|
};
|
|
5957
|
+
export type OAuthIdentity = {
|
|
5958
|
+
__typename?: 'OAuthIdentity';
|
|
5959
|
+
email: Scalars['String']['output'];
|
|
5960
|
+
id: Scalars['ID']['output'];
|
|
5961
|
+
provider: OAuthProvider;
|
|
5962
|
+
};
|
|
5963
|
+
export declare enum OAuthProvider {
|
|
5964
|
+
Apple = "apple",
|
|
5965
|
+
Google = "google"
|
|
5966
|
+
}
|
|
5626
5967
|
export type Offer = {
|
|
5627
5968
|
__typename?: 'Offer';
|
|
5628
5969
|
features?: Maybe<Array<Maybe<Feature>>>;
|
|
@@ -5678,6 +6019,35 @@ export type PartialManifestAsset = {
|
|
|
5678
6019
|
fileSHA256: Scalars['String']['input'];
|
|
5679
6020
|
storageKey: Scalars['String']['input'];
|
|
5680
6021
|
};
|
|
6022
|
+
/** Represents a partner-provisioned actor. */
|
|
6023
|
+
export type PartnerActor = Actor & {
|
|
6024
|
+
__typename?: 'PartnerActor';
|
|
6025
|
+
/** Access Tokens belonging to this actor */
|
|
6026
|
+
accessTokens: Array<AccessToken>;
|
|
6027
|
+
/** Associated accounts */
|
|
6028
|
+
accounts: Array<Account>;
|
|
6029
|
+
created: Scalars['DateTime']['output'];
|
|
6030
|
+
displayName: Scalars['String']['output'];
|
|
6031
|
+
email: Scalars['String']['output'];
|
|
6032
|
+
/** Experiments associated with this actor */
|
|
6033
|
+
experiments: Array<ActorExperiment>;
|
|
6034
|
+
/**
|
|
6035
|
+
* Server feature gate values for this actor, optionally filtering by desired gates.
|
|
6036
|
+
* Only resolves for the viewer.
|
|
6037
|
+
*/
|
|
6038
|
+
featureGates: Scalars['JSONObject']['output'];
|
|
6039
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
6040
|
+
id: Scalars['ID']['output'];
|
|
6041
|
+
isExpoAdmin: Scalars['Boolean']['output'];
|
|
6042
|
+
lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
|
|
6043
|
+
/** Primary account */
|
|
6044
|
+
primaryAccount: Account;
|
|
6045
|
+
username: Scalars['String']['output'];
|
|
6046
|
+
};
|
|
6047
|
+
/** Represents a partner-provisioned actor. */
|
|
6048
|
+
export type PartnerActorFeatureGatesArgs = {
|
|
6049
|
+
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6050
|
+
};
|
|
5681
6051
|
export type PaymentDetails = {
|
|
5682
6052
|
__typename?: 'PaymentDetails';
|
|
5683
6053
|
address?: Maybe<Address>;
|
|
@@ -5773,6 +6143,13 @@ export type PublishUpdateGroupInput = {
|
|
|
5773
6143
|
turtleJobRunId?: InputMaybe<Scalars['String']['input']>;
|
|
5774
6144
|
updateInfoGroup?: InputMaybe<UpdateInfoGroup>;
|
|
5775
6145
|
};
|
|
6146
|
+
export type RemoteAppStoreConnectApp = {
|
|
6147
|
+
__typename?: 'RemoteAppStoreConnectApp';
|
|
6148
|
+
appStoreIconUrl?: Maybe<Scalars['String']['output']>;
|
|
6149
|
+
ascAppIdentifier: Scalars['String']['output'];
|
|
6150
|
+
bundleIdentifier: Scalars['String']['output'];
|
|
6151
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6152
|
+
};
|
|
5776
6153
|
export declare enum RequestMethod {
|
|
5777
6154
|
Delete = "DELETE",
|
|
5778
6155
|
Get = "GET",
|
|
@@ -5930,6 +6307,8 @@ export type RootMutation = {
|
|
|
5930
6307
|
app?: Maybe<AppMutation>;
|
|
5931
6308
|
/** Mutations that modify an App Store Connect Api Key */
|
|
5932
6309
|
appStoreConnectApiKey: AppStoreConnectApiKeyMutation;
|
|
6310
|
+
/** Mutations for App Store Connect apps. */
|
|
6311
|
+
appStoreConnectApp: AppStoreConnectAppMutation;
|
|
5933
6312
|
/** Mutations that modify an AppVersion */
|
|
5934
6313
|
appVersion: AppVersionMutation;
|
|
5935
6314
|
/** Mutations that modify an Identifier for an iOS App */
|
|
@@ -5952,6 +6331,7 @@ export type RootMutation = {
|
|
|
5952
6331
|
build: BuildMutation;
|
|
5953
6332
|
/** Mutations that create, update, and delete Build Annotations */
|
|
5954
6333
|
buildAnnotation: BuildAnnotationMutation;
|
|
6334
|
+
convexTeamConnection: ConvexTeamConnectionMutation;
|
|
5955
6335
|
customDomain: CustomDomainMutation;
|
|
5956
6336
|
deployments: DeploymentsMutation;
|
|
5957
6337
|
/** Mutations that assign or modify DevDomainNames for apps */
|
|
@@ -5966,10 +6346,12 @@ export type RootMutation = {
|
|
|
5966
6346
|
echoMessagePart: EchoMessagePartMutation;
|
|
5967
6347
|
/** Mutations for Echo projects */
|
|
5968
6348
|
echoProject: EchoProjectMutation;
|
|
6349
|
+
/** Mutations for Echo repository management via the GitHub App */
|
|
6350
|
+
echoRepository: EchoRepositoryMutation;
|
|
6351
|
+
/** Mutations for Echo turns */
|
|
6352
|
+
echoTurn: EchoTurnMutation;
|
|
5969
6353
|
/** Mutations for Echo versions */
|
|
5970
6354
|
echoVersion: EchoVersionMutation;
|
|
5971
|
-
/** Mutations that modify an EmailSubscription */
|
|
5972
|
-
emailSubscription: EmailSubscriptionMutation;
|
|
5973
6355
|
/** Mutations that create and delete EnvironmentSecrets */
|
|
5974
6356
|
environmentSecret: EnvironmentSecretMutation;
|
|
5975
6357
|
/** Mutations that create and delete EnvironmentVariables */
|
|
@@ -6014,6 +6396,7 @@ export type RootMutation = {
|
|
|
6014
6396
|
sentryProject: SentryProjectMutation;
|
|
6015
6397
|
/** Mutations that modify an EAS Submit submission */
|
|
6016
6398
|
submission: SubmissionMutation;
|
|
6399
|
+
turtleBrownfieldArtifacts: TurtleBrownfieldArtifactMutation;
|
|
6017
6400
|
update: UpdateMutation;
|
|
6018
6401
|
updateBranch: UpdateBranchMutation;
|
|
6019
6402
|
updateChannel: UpdateChannelMutation;
|
|
@@ -6035,6 +6418,7 @@ export type RootMutation = {
|
|
|
6035
6418
|
webhook: WebhookMutation;
|
|
6036
6419
|
/** Mutations that modify a websiteNotification */
|
|
6037
6420
|
websiteNotifications: WebsiteNotificationMutation;
|
|
6421
|
+
workflowDeviceTestCaseResult: WorkflowDeviceTestCaseResultMutation;
|
|
6038
6422
|
workflowJobApproval: WorkflowJobApprovalMutation;
|
|
6039
6423
|
workflowRevision: WorkflowRevisionMutation;
|
|
6040
6424
|
workflowRun: WorkflowRunMutation;
|
|
@@ -6099,6 +6483,8 @@ export type RootQuery = {
|
|
|
6099
6483
|
builds: BuildQuery;
|
|
6100
6484
|
/** Top-level query object for querying Channels. */
|
|
6101
6485
|
channels: ChannelQuery;
|
|
6486
|
+
/** Top-level query object for querying Convex Integration information. */
|
|
6487
|
+
convexIntegration: ConvexIntegrationQuery;
|
|
6102
6488
|
/** Top-level query object for querying Deployments. */
|
|
6103
6489
|
deployments: DeploymentQuery;
|
|
6104
6490
|
/** Top-level query object for querying Echo chats. */
|
|
@@ -6143,6 +6529,7 @@ export type RootQuery = {
|
|
|
6143
6529
|
/** Top-level query object for querying Expo status page services. */
|
|
6144
6530
|
statuspageService: StatuspageServiceQuery;
|
|
6145
6531
|
submissions: SubmissionQuery;
|
|
6532
|
+
turtleBrownfieldArtifacts: TurtleBrownfieldArtifactQuery;
|
|
6146
6533
|
/** Top-level query object for querying Updates. */
|
|
6147
6534
|
updates: UpdateQuery;
|
|
6148
6535
|
/** fetch all updates in a group */
|
|
@@ -6325,6 +6712,7 @@ export type SsoUser = Actor & UserActor & {
|
|
|
6325
6712
|
/** @deprecated No longer supported */
|
|
6326
6713
|
industry?: Maybe<Scalars['String']['output']>;
|
|
6327
6714
|
isExpoAdmin: Scalars['Boolean']['output'];
|
|
6715
|
+
isStaffModeEnabled: Scalars['Boolean']['output'];
|
|
6328
6716
|
lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
|
|
6329
6717
|
lastName?: Maybe<Scalars['String']['output']>;
|
|
6330
6718
|
/** @deprecated No longer supported */
|
|
@@ -6418,6 +6806,8 @@ export type SentryInstallationMutation = {
|
|
|
6418
6806
|
__typename?: 'SentryInstallationMutation';
|
|
6419
6807
|
/** Confirm a pending Sentry installation */
|
|
6420
6808
|
confirmPendingSentryInstallation: SentryInstallation;
|
|
6809
|
+
/** Force delete a Sentry installation from Expo's side */
|
|
6810
|
+
deleteSentryInstallation: DeleteSentryInstallationResult;
|
|
6421
6811
|
/** Generate a Sentry token for an installation */
|
|
6422
6812
|
generateSentryToken: GenerateSentryTokenResult;
|
|
6423
6813
|
/** Link a Sentry installation to an Expo account */
|
|
@@ -6426,6 +6816,9 @@ export type SentryInstallationMutation = {
|
|
|
6426
6816
|
export type SentryInstallationMutationConfirmPendingSentryInstallationArgs = {
|
|
6427
6817
|
installationId: Scalars['ID']['input'];
|
|
6428
6818
|
};
|
|
6819
|
+
export type SentryInstallationMutationDeleteSentryInstallationArgs = {
|
|
6820
|
+
accountId: Scalars['ID']['input'];
|
|
6821
|
+
};
|
|
6429
6822
|
export type SentryInstallationMutationGenerateSentryTokenArgs = {
|
|
6430
6823
|
accountId: Scalars['ID']['input'];
|
|
6431
6824
|
};
|
|
@@ -6455,6 +6848,12 @@ export type SentryProjectMutationCreateSentryProjectArgs = {
|
|
|
6455
6848
|
export type SentryProjectMutationDeleteSentryProjectArgs = {
|
|
6456
6849
|
sentryProjectId: Scalars['ID']['input'];
|
|
6457
6850
|
};
|
|
6851
|
+
export type SizeBreakdownCategory = {
|
|
6852
|
+
__typename?: 'SizeBreakdownCategory';
|
|
6853
|
+
assetCount: Scalars['Int']['output'];
|
|
6854
|
+
category: Scalars['String']['output'];
|
|
6855
|
+
totalBytes: Scalars['Float']['output'];
|
|
6856
|
+
};
|
|
6458
6857
|
export type Snack = Project & {
|
|
6459
6858
|
__typename?: 'Snack';
|
|
6460
6859
|
/** Description of the Snack */
|
|
@@ -6766,6 +7165,26 @@ export type TimelineActivityFilterInput = {
|
|
|
6766
7165
|
releaseChannels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6767
7166
|
types?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
|
|
6768
7167
|
};
|
|
7168
|
+
export type TurtleBrownfieldArtifactMutation = {
|
|
7169
|
+
__typename?: 'TurtleBrownfieldArtifactMutation';
|
|
7170
|
+
createTurtleBrownfieldArtifact: CreateBrownfieldArtifactResult;
|
|
7171
|
+
};
|
|
7172
|
+
export type TurtleBrownfieldArtifactMutationCreateTurtleBrownfieldArtifactArgs = {
|
|
7173
|
+
input: CreateBrownfieldArtifactInput;
|
|
7174
|
+
};
|
|
7175
|
+
export type TurtleBrownfieldArtifactQuery = {
|
|
7176
|
+
__typename?: 'TurtleBrownfieldArtifactQuery';
|
|
7177
|
+
byId: BrownfieldArtifact;
|
|
7178
|
+
latestForApp?: Maybe<BrownfieldArtifact>;
|
|
7179
|
+
};
|
|
7180
|
+
export type TurtleBrownfieldArtifactQueryByIdArgs = {
|
|
7181
|
+
turtleBrownfieldArtifactId: Scalars['ID']['input'];
|
|
7182
|
+
};
|
|
7183
|
+
export type TurtleBrownfieldArtifactQueryLatestForAppArgs = {
|
|
7184
|
+
appId: Scalars['ID']['input'];
|
|
7185
|
+
bundleName: Scalars['String']['input'];
|
|
7186
|
+
platform: AppPlatform;
|
|
7187
|
+
};
|
|
6769
7188
|
export type UniqueUsersOverTimeData = {
|
|
6770
7189
|
__typename?: 'UniqueUsersOverTimeData';
|
|
6771
7190
|
data: LineChartData;
|
|
@@ -6783,6 +7202,7 @@ export type Update = ActivityTimelineProjectActivity & {
|
|
|
6783
7202
|
codeSigningInfo?: Maybe<CodeSigningInfo>;
|
|
6784
7203
|
createdAt: Scalars['DateTime']['output'];
|
|
6785
7204
|
deployments: DeploymentResult;
|
|
7205
|
+
diffReceipts: UpdateDiffReceiptConnection;
|
|
6786
7206
|
environment?: Maybe<Scalars['EnvironmentVariableEnvironment']['output']>;
|
|
6787
7207
|
expoGoSDKVersion?: Maybe<Scalars['String']['output']>;
|
|
6788
7208
|
fingerprint?: Maybe<Fingerprint>;
|
|
@@ -6813,6 +7233,12 @@ export type UpdateDeploymentsArgs = {
|
|
|
6813
7233
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6814
7234
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6815
7235
|
};
|
|
7236
|
+
export type UpdateDiffReceiptsArgs = {
|
|
7237
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7238
|
+
filter?: InputMaybe<UpdateDiffReceiptFilterInput>;
|
|
7239
|
+
first: Scalars['Int']['input'];
|
|
7240
|
+
orderBy?: InputMaybe<Array<UpdateDiffReceiptOrderByClause>>;
|
|
7241
|
+
};
|
|
6816
7242
|
export type UpdateBranch = {
|
|
6817
7243
|
__typename?: 'UpdateBranch';
|
|
6818
7244
|
app: App;
|
|
@@ -6995,6 +7421,59 @@ export type UpdateDeploymentsConnection = {
|
|
|
6995
7421
|
edges: Array<UpdateDeploymentEdge>;
|
|
6996
7422
|
pageInfo: PageInfo;
|
|
6997
7423
|
};
|
|
7424
|
+
export type UpdateDiffReceipt = {
|
|
7425
|
+
__typename?: 'UpdateDiffReceipt';
|
|
7426
|
+
appId: Scalars['ID']['output'];
|
|
7427
|
+
baseUpdate?: Maybe<Update>;
|
|
7428
|
+
baseUpdateId: Scalars['ID']['output'];
|
|
7429
|
+
createdAt: Scalars['DateTime']['output'];
|
|
7430
|
+
downloadUrl?: Maybe<Scalars['String']['output']>;
|
|
7431
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
7432
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
7433
|
+
fileSize?: Maybe<Scalars['Int']['output']>;
|
|
7434
|
+
id: Scalars['ID']['output'];
|
|
7435
|
+
state: Scalars['String']['output'];
|
|
7436
|
+
updateId: Scalars['ID']['output'];
|
|
7437
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
7438
|
+
};
|
|
7439
|
+
export type UpdateDiffReceiptConnection = {
|
|
7440
|
+
__typename?: 'UpdateDiffReceiptConnection';
|
|
7441
|
+
edges: Array<UpdateDiffReceiptEdge>;
|
|
7442
|
+
pageInfo: PageInfo;
|
|
7443
|
+
};
|
|
7444
|
+
export type UpdateDiffReceiptEdge = {
|
|
7445
|
+
__typename?: 'UpdateDiffReceiptEdge';
|
|
7446
|
+
cursor: Scalars['String']['output'];
|
|
7447
|
+
node: UpdateDiffReceipt;
|
|
7448
|
+
};
|
|
7449
|
+
export type UpdateDiffReceiptFilterInput = {
|
|
7450
|
+
/**
|
|
7451
|
+
* Excludes diff receipts whose diffs have been downloaded.
|
|
7452
|
+
* Downloads are determined from ClickHouse metrics. Results are
|
|
7453
|
+
* approximate when more than 1000 downloaded diffs exist.
|
|
7454
|
+
*/
|
|
7455
|
+
omitDownloadedDiffs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7456
|
+
};
|
|
7457
|
+
export type UpdateDiffReceiptOrderByClause = {
|
|
7458
|
+
direction?: InputMaybe<UpdateDiffReceiptOrderByDirection>;
|
|
7459
|
+
field: UpdateDiffReceiptOrderByField;
|
|
7460
|
+
stateOrder?: InputMaybe<Array<UpdateDiffReceiptStateValue>>;
|
|
7461
|
+
};
|
|
7462
|
+
export declare enum UpdateDiffReceiptOrderByDirection {
|
|
7463
|
+
Asc = "ASC",
|
|
7464
|
+
Desc = "DESC"
|
|
7465
|
+
}
|
|
7466
|
+
export declare enum UpdateDiffReceiptOrderByField {
|
|
7467
|
+
CreatedAt = "CREATED_AT",
|
|
7468
|
+
State = "STATE"
|
|
7469
|
+
}
|
|
7470
|
+
export declare enum UpdateDiffReceiptStateValue {
|
|
7471
|
+
Failure = "FAILURE",
|
|
7472
|
+
InProgress = "IN_PROGRESS",
|
|
7473
|
+
Queued = "QUEUED",
|
|
7474
|
+
Success = "SUCCESS",
|
|
7475
|
+
WontCompute = "WONT_COMPUTE"
|
|
7476
|
+
}
|
|
6998
7477
|
export type UpdateEchoChatInput = {
|
|
6999
7478
|
agentMetadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
7000
7479
|
agentType?: InputMaybe<EchoAgentType>;
|
|
@@ -7081,6 +7560,7 @@ export type UpdateInsights = {
|
|
|
7081
7560
|
cumulativeAverageMetrics: CumulativeAverageMetrics;
|
|
7082
7561
|
cumulativeMetrics: CumulativeMetrics;
|
|
7083
7562
|
id: Scalars['ID']['output'];
|
|
7563
|
+
sizeBreakdownByCategory: Array<SizeBreakdownCategory>;
|
|
7084
7564
|
totalUniqueUsers: Scalars['Int']['output'];
|
|
7085
7565
|
};
|
|
7086
7566
|
export type UpdateInsightsCumulativeMetricsArgs = {
|
|
@@ -7166,6 +7646,8 @@ export type UploadSession = {
|
|
|
7166
7646
|
createAccountScopedUploadSession: Scalars['JSONObject']['output'];
|
|
7167
7647
|
/** Create an Upload Session for a specific app */
|
|
7168
7648
|
createAppScopedUploadSession: Scalars['JSONObject']['output'];
|
|
7649
|
+
/** Create an Upload Session for a specific Echo project */
|
|
7650
|
+
createEchoProjectScopedUploadSession: Scalars['JSONObject']['output'];
|
|
7169
7651
|
/** Create an Upload Session */
|
|
7170
7652
|
createUploadSession: Scalars['JSONObject']['output'];
|
|
7171
7653
|
};
|
|
@@ -7177,6 +7659,10 @@ export type UploadSessionCreateAppScopedUploadSessionArgs = {
|
|
|
7177
7659
|
appID: Scalars['ID']['input'];
|
|
7178
7660
|
type: AppUploadSessionType;
|
|
7179
7661
|
};
|
|
7662
|
+
export type UploadSessionCreateEchoProjectScopedUploadSessionArgs = {
|
|
7663
|
+
echoProjectID: Scalars['ID']['input'];
|
|
7664
|
+
type: EchoProjectUploadSessionType;
|
|
7665
|
+
};
|
|
7180
7666
|
export type UploadSessionCreateUploadSessionArgs = {
|
|
7181
7667
|
filename?: InputMaybe<Scalars['String']['input']>;
|
|
7182
7668
|
type: UploadSessionType;
|
|
@@ -7205,6 +7691,7 @@ export type UsageMetricTotal = {
|
|
|
7205
7691
|
export declare enum UsageMetricType {
|
|
7206
7692
|
Bandwidth = "BANDWIDTH",
|
|
7207
7693
|
Build = "BUILD",
|
|
7694
|
+
Credit = "CREDIT",
|
|
7208
7695
|
Minute = "MINUTE",
|
|
7209
7696
|
Request = "REQUEST",
|
|
7210
7697
|
Update = "UPDATE",
|
|
@@ -7256,6 +7743,7 @@ export type User = Actor & UserActor & {
|
|
|
7256
7743
|
githubUser?: Maybe<GitHubUser>;
|
|
7257
7744
|
/** @deprecated No longer supported */
|
|
7258
7745
|
githubUsername?: Maybe<Scalars['String']['output']>;
|
|
7746
|
+
hasPassword: Scalars['Boolean']['output'];
|
|
7259
7747
|
/** Whether this user has any pending user invitations. Only resolves for the viewer. */
|
|
7260
7748
|
hasPendingUserInvitations: Scalars['Boolean']['output'];
|
|
7261
7749
|
id: Scalars['ID']['output'];
|
|
@@ -7265,11 +7753,13 @@ export type User = Actor & UserActor & {
|
|
|
7265
7753
|
/** @deprecated No longer supported */
|
|
7266
7754
|
isLegacy: Scalars['Boolean']['output'];
|
|
7267
7755
|
isSecondFactorAuthenticationEnabled: Scalars['Boolean']['output'];
|
|
7756
|
+
isStaffModeEnabled: Scalars['Boolean']['output'];
|
|
7268
7757
|
lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
|
|
7269
7758
|
lastName?: Maybe<Scalars['String']['output']>;
|
|
7270
7759
|
/** @deprecated No longer supported */
|
|
7271
7760
|
location?: Maybe<Scalars['String']['output']>;
|
|
7272
7761
|
newEmailPendingVerification?: Maybe<Scalars['String']['output']>;
|
|
7762
|
+
oAuthIdentities: Array<OAuthIdentity>;
|
|
7273
7763
|
/** Pending UserInvitations for this user. Only resolves for the viewer. */
|
|
7274
7764
|
pendingUserInvitations: Array<UserInvitation>;
|
|
7275
7765
|
pinnedApps: Array<App>;
|
|
@@ -7360,6 +7850,7 @@ export type UserActor = {
|
|
|
7360
7850
|
/** @deprecated No longer supported */
|
|
7361
7851
|
industry?: Maybe<Scalars['String']['output']>;
|
|
7362
7852
|
isExpoAdmin: Scalars['Boolean']['output'];
|
|
7853
|
+
isStaffModeEnabled: Scalars['Boolean']['output'];
|
|
7363
7854
|
lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
|
|
7364
7855
|
lastName?: Maybe<Scalars['String']['output']>;
|
|
7365
7856
|
/** @deprecated No longer supported */
|
|
@@ -7580,6 +8071,8 @@ export declare enum UserEntityTypeName {
|
|
|
7580
8071
|
AccessTokenEntity = "AccessTokenEntity",
|
|
7581
8072
|
DiscordUserEntity = "DiscordUserEntity",
|
|
7582
8073
|
GitHubUserEntity = "GitHubUserEntity",
|
|
8074
|
+
OAuthIdentityEntity = "OAuthIdentityEntity",
|
|
8075
|
+
PartnerProvisionedActorEntity = "PartnerProvisionedActorEntity",
|
|
7583
8076
|
PasswordEntity = "PasswordEntity",
|
|
7584
8077
|
SsoUserEntity = "SSOUserEntity",
|
|
7585
8078
|
UserEntity = "UserEntity",
|
|
@@ -8366,12 +8859,67 @@ export declare enum WorkflowArtifactStorageType {
|
|
|
8366
8859
|
Gcs = "GCS",
|
|
8367
8860
|
R2 = "R2"
|
|
8368
8861
|
}
|
|
8369
|
-
|
|
8370
|
-
|
|
8371
|
-
|
|
8862
|
+
/** A device test case result from a Maestro test execution. */
|
|
8863
|
+
export type WorkflowDeviceTestCaseResult = {
|
|
8864
|
+
__typename?: 'WorkflowDeviceTestCaseResult';
|
|
8372
8865
|
createdAt: Scalars['DateTime']['output'];
|
|
8373
|
-
|
|
8374
|
-
|
|
8866
|
+
duration?: Maybe<Scalars['Int']['output']>;
|
|
8867
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
8868
|
+
id: Scalars['ID']['output'];
|
|
8869
|
+
name: Scalars['String']['output'];
|
|
8870
|
+
path: Scalars['String']['output'];
|
|
8871
|
+
properties?: Maybe<Scalars['JSONObject']['output']>;
|
|
8872
|
+
/** 0-indexed attempt number. 0 = first attempt, 1 = first retry, etc. */
|
|
8873
|
+
retryCount?: Maybe<Scalars['Int']['output']>;
|
|
8874
|
+
status: WorkflowDeviceTestCaseStatus;
|
|
8875
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
8876
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
8877
|
+
};
|
|
8878
|
+
export type WorkflowDeviceTestCaseResultInput = {
|
|
8879
|
+
/** Execution time in milliseconds. Must be non-negative. */
|
|
8880
|
+
duration?: InputMaybe<Scalars['Int']['input']>;
|
|
8881
|
+
/** Error message if failed. Max 4096 characters. */
|
|
8882
|
+
errorMessage?: InputMaybe<Scalars['String']['input']>;
|
|
8883
|
+
/** Test case name (e.g., "login", "checkout"). Max 255 characters. */
|
|
8884
|
+
name: Scalars['String']['input'];
|
|
8885
|
+
/**
|
|
8886
|
+
* Path to the test file (e.g., "flows/login.yaml"). Max 1024 characters.
|
|
8887
|
+
* Used as natural key for deduplication.
|
|
8888
|
+
*/
|
|
8889
|
+
path: Scalars['String']['input'];
|
|
8890
|
+
/** Custom properties from test configuration. Stored as key-value pairs. */
|
|
8891
|
+
properties?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
8892
|
+
/** 0-indexed attempt number for this test case. 0 = first attempt, 1 = first retry, etc. */
|
|
8893
|
+
retryCount?: InputMaybe<Scalars['Int']['input']>;
|
|
8894
|
+
/** Execution result. */
|
|
8895
|
+
status: WorkflowDeviceTestCaseStatus;
|
|
8896
|
+
/** Tags defined in the test config. Each tag max 255 characters. */
|
|
8897
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8898
|
+
};
|
|
8899
|
+
export type WorkflowDeviceTestCaseResultMutation = {
|
|
8900
|
+
__typename?: 'WorkflowDeviceTestCaseResultMutation';
|
|
8901
|
+
/**
|
|
8902
|
+
* Create device test case results for a workflow job.
|
|
8903
|
+
* Results are immutable - once created, subsequent calls are no-ops.
|
|
8904
|
+
*/
|
|
8905
|
+
createWorkflowDeviceTestCaseResults: Array<WorkflowDeviceTestCaseResult>;
|
|
8906
|
+
};
|
|
8907
|
+
export type WorkflowDeviceTestCaseResultMutationCreateWorkflowDeviceTestCaseResultsArgs = {
|
|
8908
|
+
input: CreateWorkflowDeviceTestCaseResultsInput;
|
|
8909
|
+
};
|
|
8910
|
+
/** Status of a device test case execution. */
|
|
8911
|
+
export declare enum WorkflowDeviceTestCaseStatus {
|
|
8912
|
+
Failed = "FAILED",
|
|
8913
|
+
Passed = "PASSED"
|
|
8914
|
+
}
|
|
8915
|
+
export type WorkflowJob = {
|
|
8916
|
+
__typename?: 'WorkflowJob';
|
|
8917
|
+
allDeviceTestCaseResults: Array<WorkflowDeviceTestCaseResult>;
|
|
8918
|
+
approvals: Array<WorkflowJobApproval>;
|
|
8919
|
+
createdAt: Scalars['DateTime']['output'];
|
|
8920
|
+
credentialsAppleDeviceRegistrationRequest?: Maybe<AppleDeviceRegistrationRequest>;
|
|
8921
|
+
deviceTestCaseResults: Array<WorkflowDeviceTestCaseResult>;
|
|
8922
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
8375
8923
|
errors: Array<WorkflowJobError>;
|
|
8376
8924
|
id: Scalars['ID']['output'];
|
|
8377
8925
|
key: Scalars['String']['output'];
|
|
@@ -8573,6 +9121,7 @@ export type WorkflowRunInput = {
|
|
|
8573
9121
|
export type WorkflowRunMutation = {
|
|
8574
9122
|
__typename?: 'WorkflowRunMutation';
|
|
8575
9123
|
cancelWorkflowRun: WorkflowRun;
|
|
9124
|
+
createExpoGoRepackWorkflowRun: WorkflowRun;
|
|
8576
9125
|
createWorkflowRun: WorkflowRun;
|
|
8577
9126
|
createWorkflowRunFromGitRef: WorkflowRun;
|
|
8578
9127
|
retryWorkflowRun: WorkflowRun;
|
|
@@ -8580,6 +9129,10 @@ export type WorkflowRunMutation = {
|
|
|
8580
9129
|
export type WorkflowRunMutationCancelWorkflowRunArgs = {
|
|
8581
9130
|
workflowRunId: Scalars['ID']['input'];
|
|
8582
9131
|
};
|
|
9132
|
+
export type WorkflowRunMutationCreateExpoGoRepackWorkflowRunArgs = {
|
|
9133
|
+
appId: Scalars['ID']['input'];
|
|
9134
|
+
projectSource: WorkflowProjectSourceInput;
|
|
9135
|
+
};
|
|
8583
9136
|
export type WorkflowRunMutationCreateWorkflowRunArgs = {
|
|
8584
9137
|
appId: Scalars['ID']['input'];
|
|
8585
9138
|
workflowRevisionInput: WorkflowRevisionInput;
|
|
@@ -8614,12 +9167,20 @@ export type WorkflowRunTimeRangeInput = {
|
|
|
8614
9167
|
latest?: InputMaybe<Scalars['DateTime']['input']>;
|
|
8615
9168
|
};
|
|
8616
9169
|
export declare enum WorkflowRunTriggerEventType {
|
|
9170
|
+
AppStoreConnectAppVersionStateChanged = "APP_STORE_CONNECT_APP_VERSION_STATE_CHANGED",
|
|
9171
|
+
AppStoreConnectBetaFeedbackSubmitted = "APP_STORE_CONNECT_BETA_FEEDBACK_SUBMITTED",
|
|
9172
|
+
AppStoreConnectBuildUploadStateChanged = "APP_STORE_CONNECT_BUILD_UPLOAD_STATE_CHANGED",
|
|
9173
|
+
AppStoreConnectExternalBetaStateChanged = "APP_STORE_CONNECT_EXTERNAL_BETA_STATE_CHANGED",
|
|
9174
|
+
EasSubmit = "EAS_SUBMIT",
|
|
9175
|
+
ExpoLaunch = "EXPO_LAUNCH",
|
|
8617
9176
|
GithubPullRequestLabeled = "GITHUB_PULL_REQUEST_LABELED",
|
|
8618
9177
|
GithubPullRequestOpened = "GITHUB_PULL_REQUEST_OPENED",
|
|
9178
|
+
GithubPullRequestReadyForReview = "GITHUB_PULL_REQUEST_READY_FOR_REVIEW",
|
|
8619
9179
|
GithubPullRequestReopened = "GITHUB_PULL_REQUEST_REOPENED",
|
|
8620
9180
|
GithubPullRequestSynchronize = "GITHUB_PULL_REQUEST_SYNCHRONIZE",
|
|
8621
9181
|
GithubPush = "GITHUB_PUSH",
|
|
8622
9182
|
Manual = "MANUAL",
|
|
9183
|
+
RepackExpoGo = "REPACK_EXPO_GO",
|
|
8623
9184
|
Schedule = "SCHEDULE"
|
|
8624
9185
|
}
|
|
8625
9186
|
export type WorkflowRunsConnection = {
|
|
@@ -9048,6 +9609,9 @@ export type CreateAndroidAppCredentialsMutation = {
|
|
|
9048
9609
|
__typename?: 'UserPermission';
|
|
9049
9610
|
role: Role;
|
|
9050
9611
|
actor: {
|
|
9612
|
+
__typename?: 'PartnerActor';
|
|
9613
|
+
id: string;
|
|
9614
|
+
} | {
|
|
9051
9615
|
__typename?: 'Robot';
|
|
9052
9616
|
id: string;
|
|
9053
9617
|
} | {
|
|
@@ -9168,6 +9732,9 @@ export type SetFcmMutation = {
|
|
|
9168
9732
|
__typename?: 'UserPermission';
|
|
9169
9733
|
role: Role;
|
|
9170
9734
|
actor: {
|
|
9735
|
+
__typename?: 'PartnerActor';
|
|
9736
|
+
id: string;
|
|
9737
|
+
} | {
|
|
9171
9738
|
__typename?: 'Robot';
|
|
9172
9739
|
id: string;
|
|
9173
9740
|
} | {
|
|
@@ -9288,6 +9855,9 @@ export type SetGoogleServiceAccountKeyForSubmissionsMutation = {
|
|
|
9288
9855
|
__typename?: 'UserPermission';
|
|
9289
9856
|
role: Role;
|
|
9290
9857
|
actor: {
|
|
9858
|
+
__typename?: 'PartnerActor';
|
|
9859
|
+
id: string;
|
|
9860
|
+
} | {
|
|
9291
9861
|
__typename?: 'Robot';
|
|
9292
9862
|
id: string;
|
|
9293
9863
|
} | {
|
|
@@ -9408,6 +9978,9 @@ export type SetGoogleServiceAccountKeyForFcmV1Mutation = {
|
|
|
9408
9978
|
__typename?: 'UserPermission';
|
|
9409
9979
|
role: Role;
|
|
9410
9980
|
actor: {
|
|
9981
|
+
__typename?: 'PartnerActor';
|
|
9982
|
+
id: string;
|
|
9983
|
+
} | {
|
|
9411
9984
|
__typename?: 'Robot';
|
|
9412
9985
|
id: string;
|
|
9413
9986
|
} | {
|
|
@@ -9644,6 +10217,9 @@ export type CommonAndroidAppCredentialsWithBuildCredentialsByApplicationIdentifi
|
|
|
9644
10217
|
__typename?: 'UserPermission';
|
|
9645
10218
|
role: Role;
|
|
9646
10219
|
actor: {
|
|
10220
|
+
__typename?: 'PartnerActor';
|
|
10221
|
+
id: string;
|
|
10222
|
+
} | {
|
|
9647
10223
|
__typename?: 'Robot';
|
|
9648
10224
|
id: string;
|
|
9649
10225
|
} | {
|
|
@@ -9942,6 +10518,9 @@ export type CreateAppleDistributionCertificateMutation = {
|
|
|
9942
10518
|
__typename?: 'UserPermission';
|
|
9943
10519
|
role: Role;
|
|
9944
10520
|
actor: {
|
|
10521
|
+
__typename?: 'PartnerActor';
|
|
10522
|
+
id: string;
|
|
10523
|
+
} | {
|
|
9945
10524
|
__typename?: 'Robot';
|
|
9946
10525
|
id: string;
|
|
9947
10526
|
} | {
|
|
@@ -10118,6 +10697,9 @@ export type CreateApplePushKeyMutation = {
|
|
|
10118
10697
|
__typename?: 'UserPermission';
|
|
10119
10698
|
role: Role;
|
|
10120
10699
|
actor: {
|
|
10700
|
+
__typename?: 'PartnerActor';
|
|
10701
|
+
id: string;
|
|
10702
|
+
} | {
|
|
10121
10703
|
__typename?: 'Robot';
|
|
10122
10704
|
id: string;
|
|
10123
10705
|
} | {
|
|
@@ -10250,6 +10832,9 @@ export type CreateIosAppBuildCredentialsMutation = {
|
|
|
10250
10832
|
__typename?: 'UserPermission';
|
|
10251
10833
|
role: Role;
|
|
10252
10834
|
actor: {
|
|
10835
|
+
__typename?: 'PartnerActor';
|
|
10836
|
+
id: string;
|
|
10837
|
+
} | {
|
|
10253
10838
|
__typename?: 'Robot';
|
|
10254
10839
|
id: string;
|
|
10255
10840
|
} | {
|
|
@@ -10368,6 +10953,9 @@ export type SetDistributionCertificateMutation = {
|
|
|
10368
10953
|
__typename?: 'UserPermission';
|
|
10369
10954
|
role: Role;
|
|
10370
10955
|
actor: {
|
|
10956
|
+
__typename?: 'PartnerActor';
|
|
10957
|
+
id: string;
|
|
10958
|
+
} | {
|
|
10371
10959
|
__typename?: 'Robot';
|
|
10372
10960
|
id: string;
|
|
10373
10961
|
} | {
|
|
@@ -10486,6 +11074,9 @@ export type SetProvisioningProfileMutation = {
|
|
|
10486
11074
|
__typename?: 'UserPermission';
|
|
10487
11075
|
role: Role;
|
|
10488
11076
|
actor: {
|
|
11077
|
+
__typename?: 'PartnerActor';
|
|
11078
|
+
id: string;
|
|
11079
|
+
} | {
|
|
10489
11080
|
__typename?: 'Robot';
|
|
10490
11081
|
id: string;
|
|
10491
11082
|
} | {
|
|
@@ -10608,6 +11199,9 @@ export type CreateIosAppCredentialsMutation = {
|
|
|
10608
11199
|
__typename?: 'UserPermission';
|
|
10609
11200
|
role: Role;
|
|
10610
11201
|
actor: {
|
|
11202
|
+
__typename?: 'PartnerActor';
|
|
11203
|
+
id: string;
|
|
11204
|
+
} | {
|
|
10611
11205
|
__typename?: 'Robot';
|
|
10612
11206
|
id: string;
|
|
10613
11207
|
} | {
|
|
@@ -10690,6 +11284,9 @@ export type CreateIosAppCredentialsMutation = {
|
|
|
10690
11284
|
__typename?: 'UserPermission';
|
|
10691
11285
|
role: Role;
|
|
10692
11286
|
actor: {
|
|
11287
|
+
__typename?: 'PartnerActor';
|
|
11288
|
+
id: string;
|
|
11289
|
+
} | {
|
|
10693
11290
|
__typename?: 'Robot';
|
|
10694
11291
|
id: string;
|
|
10695
11292
|
} | {
|
|
@@ -10759,6 +11356,9 @@ export type CreateIosAppCredentialsMutation = {
|
|
|
10759
11356
|
__typename?: 'UserPermission';
|
|
10760
11357
|
role: Role;
|
|
10761
11358
|
actor: {
|
|
11359
|
+
__typename?: 'PartnerActor';
|
|
11360
|
+
id: string;
|
|
11361
|
+
} | {
|
|
10762
11362
|
__typename?: 'Robot';
|
|
10763
11363
|
id: string;
|
|
10764
11364
|
} | {
|
|
@@ -10866,6 +11466,9 @@ export type SetPushKeyMutation = {
|
|
|
10866
11466
|
__typename?: 'UserPermission';
|
|
10867
11467
|
role: Role;
|
|
10868
11468
|
actor: {
|
|
11469
|
+
__typename?: 'PartnerActor';
|
|
11470
|
+
id: string;
|
|
11471
|
+
} | {
|
|
10869
11472
|
__typename?: 'Robot';
|
|
10870
11473
|
id: string;
|
|
10871
11474
|
} | {
|
|
@@ -10948,6 +11551,9 @@ export type SetPushKeyMutation = {
|
|
|
10948
11551
|
__typename?: 'UserPermission';
|
|
10949
11552
|
role: Role;
|
|
10950
11553
|
actor: {
|
|
11554
|
+
__typename?: 'PartnerActor';
|
|
11555
|
+
id: string;
|
|
11556
|
+
} | {
|
|
10951
11557
|
__typename?: 'Robot';
|
|
10952
11558
|
id: string;
|
|
10953
11559
|
} | {
|
|
@@ -11017,6 +11623,9 @@ export type SetPushKeyMutation = {
|
|
|
11017
11623
|
__typename?: 'UserPermission';
|
|
11018
11624
|
role: Role;
|
|
11019
11625
|
actor: {
|
|
11626
|
+
__typename?: 'PartnerActor';
|
|
11627
|
+
id: string;
|
|
11628
|
+
} | {
|
|
11020
11629
|
__typename?: 'Robot';
|
|
11021
11630
|
id: string;
|
|
11022
11631
|
} | {
|
|
@@ -11124,6 +11733,9 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
11124
11733
|
__typename?: 'UserPermission';
|
|
11125
11734
|
role: Role;
|
|
11126
11735
|
actor: {
|
|
11736
|
+
__typename?: 'PartnerActor';
|
|
11737
|
+
id: string;
|
|
11738
|
+
} | {
|
|
11127
11739
|
__typename?: 'Robot';
|
|
11128
11740
|
id: string;
|
|
11129
11741
|
} | {
|
|
@@ -11206,6 +11818,9 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
11206
11818
|
__typename?: 'UserPermission';
|
|
11207
11819
|
role: Role;
|
|
11208
11820
|
actor: {
|
|
11821
|
+
__typename?: 'PartnerActor';
|
|
11822
|
+
id: string;
|
|
11823
|
+
} | {
|
|
11209
11824
|
__typename?: 'Robot';
|
|
11210
11825
|
id: string;
|
|
11211
11826
|
} | {
|
|
@@ -11275,6 +11890,9 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
11275
11890
|
__typename?: 'UserPermission';
|
|
11276
11891
|
role: Role;
|
|
11277
11892
|
actor: {
|
|
11893
|
+
__typename?: 'PartnerActor';
|
|
11894
|
+
id: string;
|
|
11895
|
+
} | {
|
|
11278
11896
|
__typename?: 'Robot';
|
|
11279
11897
|
id: string;
|
|
11280
11898
|
} | {
|
|
@@ -11530,6 +12148,9 @@ export type AppleDistributionCertificateByAppQuery = {
|
|
|
11530
12148
|
__typename?: 'UserPermission';
|
|
11531
12149
|
role: Role;
|
|
11532
12150
|
actor: {
|
|
12151
|
+
__typename?: 'PartnerActor';
|
|
12152
|
+
id: string;
|
|
12153
|
+
} | {
|
|
11533
12154
|
__typename?: 'Robot';
|
|
11534
12155
|
id: string;
|
|
11535
12156
|
} | {
|
|
@@ -11633,6 +12254,9 @@ export type AppleDistributionCertificatesPaginatedByAccountQuery = {
|
|
|
11633
12254
|
__typename?: 'UserPermission';
|
|
11634
12255
|
role: Role;
|
|
11635
12256
|
actor: {
|
|
12257
|
+
__typename?: 'PartnerActor';
|
|
12258
|
+
id: string;
|
|
12259
|
+
} | {
|
|
11636
12260
|
__typename?: 'Robot';
|
|
11637
12261
|
id: string;
|
|
11638
12262
|
} | {
|
|
@@ -11787,6 +12411,9 @@ export type ApplePushKeysPaginatedByAccountQuery = {
|
|
|
11787
12411
|
__typename?: 'UserPermission';
|
|
11788
12412
|
role: Role;
|
|
11789
12413
|
actor: {
|
|
12414
|
+
__typename?: 'PartnerActor';
|
|
12415
|
+
id: string;
|
|
12416
|
+
} | {
|
|
11790
12417
|
__typename?: 'Robot';
|
|
11791
12418
|
id: string;
|
|
11792
12419
|
} | {
|
|
@@ -11928,6 +12555,9 @@ export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuery = {
|
|
|
11928
12555
|
__typename?: 'UserPermission';
|
|
11929
12556
|
role: Role;
|
|
11930
12557
|
actor: {
|
|
12558
|
+
__typename?: 'PartnerActor';
|
|
12559
|
+
id: string;
|
|
12560
|
+
} | {
|
|
11931
12561
|
__typename?: 'Robot';
|
|
11932
12562
|
id: string;
|
|
11933
12563
|
} | {
|
|
@@ -12055,6 +12685,9 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
|
12055
12685
|
__typename?: 'UserPermission';
|
|
12056
12686
|
role: Role;
|
|
12057
12687
|
actor: {
|
|
12688
|
+
__typename?: 'PartnerActor';
|
|
12689
|
+
id: string;
|
|
12690
|
+
} | {
|
|
12058
12691
|
__typename?: 'Robot';
|
|
12059
12692
|
id: string;
|
|
12060
12693
|
} | {
|
|
@@ -12137,6 +12770,9 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
|
12137
12770
|
__typename?: 'UserPermission';
|
|
12138
12771
|
role: Role;
|
|
12139
12772
|
actor: {
|
|
12773
|
+
__typename?: 'PartnerActor';
|
|
12774
|
+
id: string;
|
|
12775
|
+
} | {
|
|
12140
12776
|
__typename?: 'Robot';
|
|
12141
12777
|
id: string;
|
|
12142
12778
|
} | {
|
|
@@ -12206,6 +12842,9 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
|
12206
12842
|
__typename?: 'UserPermission';
|
|
12207
12843
|
role: Role;
|
|
12208
12844
|
actor: {
|
|
12845
|
+
__typename?: 'PartnerActor';
|
|
12846
|
+
id: string;
|
|
12847
|
+
} | {
|
|
12209
12848
|
__typename?: 'Robot';
|
|
12210
12849
|
id: string;
|
|
12211
12850
|
} | {
|
|
@@ -12317,6 +12956,9 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
|
|
|
12317
12956
|
__typename?: 'UserPermission';
|
|
12318
12957
|
role: Role;
|
|
12319
12958
|
actor: {
|
|
12959
|
+
__typename?: 'PartnerActor';
|
|
12960
|
+
id: string;
|
|
12961
|
+
} | {
|
|
12320
12962
|
__typename?: 'Robot';
|
|
12321
12963
|
id: string;
|
|
12322
12964
|
} | {
|
|
@@ -12399,6 +13041,9 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
|
|
|
12399
13041
|
__typename?: 'UserPermission';
|
|
12400
13042
|
role: Role;
|
|
12401
13043
|
actor: {
|
|
13044
|
+
__typename?: 'PartnerActor';
|
|
13045
|
+
id: string;
|
|
13046
|
+
} | {
|
|
12402
13047
|
__typename?: 'Robot';
|
|
12403
13048
|
id: string;
|
|
12404
13049
|
} | {
|
|
@@ -12468,6 +13113,9 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
|
|
|
12468
13113
|
__typename?: 'UserPermission';
|
|
12469
13114
|
role: Role;
|
|
12470
13115
|
actor: {
|
|
13116
|
+
__typename?: 'PartnerActor';
|
|
13117
|
+
id: string;
|
|
13118
|
+
} | {
|
|
12471
13119
|
__typename?: 'Robot';
|
|
12472
13120
|
id: string;
|
|
12473
13121
|
} | {
|
|
@@ -12599,6 +13247,10 @@ export type CreateAndroidBuildMutation = {
|
|
|
12599
13247
|
hash: string;
|
|
12600
13248
|
} | null;
|
|
12601
13249
|
initiatingActor?: {
|
|
13250
|
+
__typename: 'PartnerActor';
|
|
13251
|
+
id: string;
|
|
13252
|
+
displayName: string;
|
|
13253
|
+
} | {
|
|
12602
13254
|
__typename: 'Robot';
|
|
12603
13255
|
id: string;
|
|
12604
13256
|
displayName: string;
|
|
@@ -12699,6 +13351,10 @@ export type CreateIosBuildMutation = {
|
|
|
12699
13351
|
hash: string;
|
|
12700
13352
|
} | null;
|
|
12701
13353
|
initiatingActor?: {
|
|
13354
|
+
__typename: 'PartnerActor';
|
|
13355
|
+
id: string;
|
|
13356
|
+
displayName: string;
|
|
13357
|
+
} | {
|
|
12702
13358
|
__typename: 'Robot';
|
|
12703
13359
|
id: string;
|
|
12704
13360
|
displayName: string;
|
|
@@ -12795,6 +13451,10 @@ export type UpdateBuildMetadataMutation = {
|
|
|
12795
13451
|
hash: string;
|
|
12796
13452
|
} | null;
|
|
12797
13453
|
initiatingActor?: {
|
|
13454
|
+
__typename: 'PartnerActor';
|
|
13455
|
+
id: string;
|
|
13456
|
+
displayName: string;
|
|
13457
|
+
} | {
|
|
12798
13458
|
__typename: 'Robot';
|
|
12799
13459
|
id: string;
|
|
12800
13460
|
displayName: string;
|
|
@@ -12885,6 +13545,10 @@ export type RetryIosBuildMutation = {
|
|
|
12885
13545
|
hash: string;
|
|
12886
13546
|
} | null;
|
|
12887
13547
|
initiatingActor?: {
|
|
13548
|
+
__typename: 'PartnerActor';
|
|
13549
|
+
id: string;
|
|
13550
|
+
displayName: string;
|
|
13551
|
+
} | {
|
|
12888
13552
|
__typename: 'Robot';
|
|
12889
13553
|
id: string;
|
|
12890
13554
|
displayName: string;
|
|
@@ -13170,6 +13834,10 @@ export type CreateLocalBuildMutation = {
|
|
|
13170
13834
|
hash: string;
|
|
13171
13835
|
} | null;
|
|
13172
13836
|
initiatingActor?: {
|
|
13837
|
+
__typename: 'PartnerActor';
|
|
13838
|
+
id: string;
|
|
13839
|
+
displayName: string;
|
|
13840
|
+
} | {
|
|
13173
13841
|
__typename: 'Robot';
|
|
13174
13842
|
id: string;
|
|
13175
13843
|
displayName: string;
|
|
@@ -13246,6 +13914,10 @@ export type UpdatePublishMutation = {
|
|
|
13246
13914
|
manifestHostOverride?: string | null;
|
|
13247
13915
|
assetHostOverride?: string | null;
|
|
13248
13916
|
actor?: {
|
|
13917
|
+
__typename: 'PartnerActor';
|
|
13918
|
+
username: string;
|
|
13919
|
+
id: string;
|
|
13920
|
+
} | {
|
|
13249
13921
|
__typename: 'Robot';
|
|
13250
13922
|
firstName?: string | null;
|
|
13251
13923
|
id: string;
|
|
@@ -13337,6 +14009,10 @@ export type SetRolloutPercentageMutation = {
|
|
|
13337
14009
|
manifestHostOverride?: string | null;
|
|
13338
14010
|
assetHostOverride?: string | null;
|
|
13339
14011
|
actor?: {
|
|
14012
|
+
__typename: 'PartnerActor';
|
|
14013
|
+
username: string;
|
|
14014
|
+
id: string;
|
|
14015
|
+
} | {
|
|
13340
14016
|
__typename: 'Robot';
|
|
13341
14017
|
firstName?: string | null;
|
|
13342
14018
|
id: string;
|
|
@@ -13632,6 +14308,20 @@ export type CreateWorkflowRunFromGitRefMutation = {
|
|
|
13632
14308
|
};
|
|
13633
14309
|
};
|
|
13634
14310
|
};
|
|
14311
|
+
export type CreateExpoGoRepackWorkflowRunMutationVariables = Exact<{
|
|
14312
|
+
appId: Scalars['ID']['input'];
|
|
14313
|
+
projectSource: WorkflowProjectSourceInput;
|
|
14314
|
+
}>;
|
|
14315
|
+
export type CreateExpoGoRepackWorkflowRunMutation = {
|
|
14316
|
+
__typename?: 'RootMutation';
|
|
14317
|
+
workflowRun: {
|
|
14318
|
+
__typename?: 'WorkflowRunMutation';
|
|
14319
|
+
createExpoGoRepackWorkflowRun: {
|
|
14320
|
+
__typename?: 'WorkflowRun';
|
|
14321
|
+
id: string;
|
|
14322
|
+
};
|
|
14323
|
+
};
|
|
14324
|
+
};
|
|
13635
14325
|
export type CancelWorkflowRunMutationVariables = Exact<{
|
|
13636
14326
|
workflowRunId: Scalars['ID']['input'];
|
|
13637
14327
|
}>;
|
|
@@ -13936,6 +14626,9 @@ export type AppByIdQuery = {
|
|
|
13936
14626
|
__typename?: 'UserPermission';
|
|
13937
14627
|
role: Role;
|
|
13938
14628
|
actor: {
|
|
14629
|
+
__typename?: 'PartnerActor';
|
|
14630
|
+
id: string;
|
|
14631
|
+
} | {
|
|
13939
14632
|
__typename?: 'Robot';
|
|
13940
14633
|
id: string;
|
|
13941
14634
|
} | {
|
|
@@ -13989,6 +14682,9 @@ export type AppByFullNameQuery = {
|
|
|
13989
14682
|
__typename?: 'UserPermission';
|
|
13990
14683
|
role: Role;
|
|
13991
14684
|
actor: {
|
|
14685
|
+
__typename?: 'PartnerActor';
|
|
14686
|
+
id: string;
|
|
14687
|
+
} | {
|
|
13992
14688
|
__typename?: 'Robot';
|
|
13993
14689
|
id: string;
|
|
13994
14690
|
} | {
|
|
@@ -14076,6 +14772,9 @@ export type AppByIdWorkflowRunsFilteredByStatusQuery = {
|
|
|
14076
14772
|
createdAt: any;
|
|
14077
14773
|
updatedAt: any;
|
|
14078
14774
|
actor?: {
|
|
14775
|
+
__typename: 'PartnerActor';
|
|
14776
|
+
id: string;
|
|
14777
|
+
} | {
|
|
14079
14778
|
__typename: 'Robot';
|
|
14080
14779
|
firstName?: string | null;
|
|
14081
14780
|
id: string;
|
|
@@ -14260,6 +14959,10 @@ export type BranchesByAppQuery = {
|
|
|
14260
14959
|
manifestHostOverride?: string | null;
|
|
14261
14960
|
assetHostOverride?: string | null;
|
|
14262
14961
|
actor?: {
|
|
14962
|
+
__typename: 'PartnerActor';
|
|
14963
|
+
username: string;
|
|
14964
|
+
id: string;
|
|
14965
|
+
} | {
|
|
14263
14966
|
__typename: 'Robot';
|
|
14264
14967
|
firstName?: string | null;
|
|
14265
14968
|
id: string;
|
|
@@ -14379,6 +15082,10 @@ export type ViewBranchesOnUpdateChannelQuery = {
|
|
|
14379
15082
|
manifestHostOverride?: string | null;
|
|
14380
15083
|
assetHostOverride?: string | null;
|
|
14381
15084
|
actor?: {
|
|
15085
|
+
__typename: 'PartnerActor';
|
|
15086
|
+
username: string;
|
|
15087
|
+
id: string;
|
|
15088
|
+
} | {
|
|
14382
15089
|
__typename: 'Robot';
|
|
14383
15090
|
firstName?: string | null;
|
|
14384
15091
|
id: string;
|
|
@@ -14477,6 +15184,10 @@ export type BuildsByIdQuery = {
|
|
|
14477
15184
|
hash: string;
|
|
14478
15185
|
} | null;
|
|
14479
15186
|
initiatingActor?: {
|
|
15187
|
+
__typename: 'PartnerActor';
|
|
15188
|
+
id: string;
|
|
15189
|
+
displayName: string;
|
|
15190
|
+
} | {
|
|
14480
15191
|
__typename: 'Robot';
|
|
14481
15192
|
id: string;
|
|
14482
15193
|
displayName: string;
|
|
@@ -14601,6 +15312,10 @@ export type BuildsWithSubmissionsByIdQuery = {
|
|
|
14601
15312
|
hash: string;
|
|
14602
15313
|
} | null;
|
|
14603
15314
|
initiatingActor?: {
|
|
15315
|
+
__typename: 'PartnerActor';
|
|
15316
|
+
id: string;
|
|
15317
|
+
displayName: string;
|
|
15318
|
+
} | {
|
|
14604
15319
|
__typename: 'Robot';
|
|
14605
15320
|
id: string;
|
|
14606
15321
|
displayName: string;
|
|
@@ -14713,6 +15428,10 @@ export type BuildsWithFingerprintByIdQuery = {
|
|
|
14713
15428
|
buildArtifactsUrl?: string | null;
|
|
14714
15429
|
} | null;
|
|
14715
15430
|
initiatingActor?: {
|
|
15431
|
+
__typename: 'PartnerActor';
|
|
15432
|
+
id: string;
|
|
15433
|
+
displayName: string;
|
|
15434
|
+
} | {
|
|
14716
15435
|
__typename: 'Robot';
|
|
14717
15436
|
id: string;
|
|
14718
15437
|
displayName: string;
|
|
@@ -14808,6 +15527,10 @@ export type ViewBuildsOnAppQuery = {
|
|
|
14808
15527
|
hash: string;
|
|
14809
15528
|
} | null;
|
|
14810
15529
|
initiatingActor?: {
|
|
15530
|
+
__typename: 'PartnerActor';
|
|
15531
|
+
id: string;
|
|
15532
|
+
displayName: string;
|
|
15533
|
+
} | {
|
|
14811
15534
|
__typename: 'Robot';
|
|
14812
15535
|
id: string;
|
|
14813
15536
|
displayName: string;
|
|
@@ -14908,6 +15631,10 @@ export type ViewUpdateChannelOnAppQuery = {
|
|
|
14908
15631
|
manifestHostOverride?: string | null;
|
|
14909
15632
|
assetHostOverride?: string | null;
|
|
14910
15633
|
actor?: {
|
|
15634
|
+
__typename: 'PartnerActor';
|
|
15635
|
+
username: string;
|
|
15636
|
+
id: string;
|
|
15637
|
+
} | {
|
|
14911
15638
|
__typename: 'Robot';
|
|
14912
15639
|
firstName?: string | null;
|
|
14913
15640
|
id: string;
|
|
@@ -14996,6 +15723,10 @@ export type ViewUpdateChannelsOnAppQuery = {
|
|
|
14996
15723
|
manifestHostOverride?: string | null;
|
|
14997
15724
|
assetHostOverride?: string | null;
|
|
14998
15725
|
actor?: {
|
|
15726
|
+
__typename: 'PartnerActor';
|
|
15727
|
+
username: string;
|
|
15728
|
+
id: string;
|
|
15729
|
+
} | {
|
|
14999
15730
|
__typename: 'Robot';
|
|
15000
15731
|
firstName?: string | null;
|
|
15001
15732
|
id: string;
|
|
@@ -15323,6 +16054,203 @@ export type GoogleServiceAccountKeyByIdQuery = {
|
|
|
15323
16054
|
};
|
|
15324
16055
|
};
|
|
15325
16056
|
};
|
|
16057
|
+
export type AppObserveTimeSeriesQueryVariables = Exact<{
|
|
16058
|
+
appId: Scalars['String']['input'];
|
|
16059
|
+
input: AppObserveTimeSeriesInput;
|
|
16060
|
+
}>;
|
|
16061
|
+
export type AppObserveTimeSeriesQuery = {
|
|
16062
|
+
__typename?: 'RootQuery';
|
|
16063
|
+
app: {
|
|
16064
|
+
__typename?: 'AppQuery';
|
|
16065
|
+
byId: {
|
|
16066
|
+
__typename?: 'App';
|
|
16067
|
+
id: string;
|
|
16068
|
+
observe: {
|
|
16069
|
+
__typename?: 'AppObserve';
|
|
16070
|
+
timeSeries: {
|
|
16071
|
+
__typename?: 'AppObserveTimeSeries';
|
|
16072
|
+
eventCount: number;
|
|
16073
|
+
appVersionMarkers: Array<{
|
|
16074
|
+
__typename?: 'AppObserveAppVersion';
|
|
16075
|
+
appVersion: string;
|
|
16076
|
+
firstSeenAt: any;
|
|
16077
|
+
eventCount: number;
|
|
16078
|
+
uniqueUserCount: number;
|
|
16079
|
+
buildNumbers: Array<{
|
|
16080
|
+
__typename?: 'AppObserveAppBuildNumber';
|
|
16081
|
+
appBuildNumber: string;
|
|
16082
|
+
firstSeenAt: any;
|
|
16083
|
+
eventCount: number;
|
|
16084
|
+
uniqueUserCount: number;
|
|
16085
|
+
easBuilds: Array<{
|
|
16086
|
+
__typename?: 'AppObserveAppEasBuild';
|
|
16087
|
+
easBuildId: string;
|
|
16088
|
+
firstSeenAt: any;
|
|
16089
|
+
eventCount: number;
|
|
16090
|
+
uniqueUserCount: number;
|
|
16091
|
+
}>;
|
|
16092
|
+
}>;
|
|
16093
|
+
updates: Array<{
|
|
16094
|
+
__typename?: 'AppObserveAppUpdate';
|
|
16095
|
+
appUpdateId: string;
|
|
16096
|
+
firstSeenAt: any;
|
|
16097
|
+
eventCount: number;
|
|
16098
|
+
uniqueUserCount: number;
|
|
16099
|
+
easBuilds: Array<{
|
|
16100
|
+
__typename?: 'AppObserveAppEasBuild';
|
|
16101
|
+
easBuildId: string;
|
|
16102
|
+
firstSeenAt: any;
|
|
16103
|
+
eventCount: number;
|
|
16104
|
+
uniqueUserCount: number;
|
|
16105
|
+
}>;
|
|
16106
|
+
}>;
|
|
16107
|
+
metrics: Array<{
|
|
16108
|
+
__typename?: 'AppObserveAppVersionMetric';
|
|
16109
|
+
metricName: string;
|
|
16110
|
+
eventCount: number;
|
|
16111
|
+
statistics: {
|
|
16112
|
+
__typename?: 'AppObserveVersionMarkerStatistics';
|
|
16113
|
+
min?: number | null;
|
|
16114
|
+
max?: number | null;
|
|
16115
|
+
median?: number | null;
|
|
16116
|
+
average?: number | null;
|
|
16117
|
+
p80?: number | null;
|
|
16118
|
+
p90?: number | null;
|
|
16119
|
+
p99?: number | null;
|
|
16120
|
+
};
|
|
16121
|
+
}>;
|
|
16122
|
+
}>;
|
|
16123
|
+
statistics: {
|
|
16124
|
+
__typename?: 'AppObserveTimeSeriesStatistics';
|
|
16125
|
+
min?: number | null;
|
|
16126
|
+
max?: number | null;
|
|
16127
|
+
median?: number | null;
|
|
16128
|
+
average?: number | null;
|
|
16129
|
+
p80?: number | null;
|
|
16130
|
+
p90?: number | null;
|
|
16131
|
+
p99?: number | null;
|
|
16132
|
+
};
|
|
16133
|
+
};
|
|
16134
|
+
};
|
|
16135
|
+
};
|
|
16136
|
+
};
|
|
16137
|
+
};
|
|
16138
|
+
export type AppObserveAppVersionsQueryVariables = Exact<{
|
|
16139
|
+
appId: Scalars['String']['input'];
|
|
16140
|
+
input: AppObserveReleasesInput;
|
|
16141
|
+
}>;
|
|
16142
|
+
export type AppObserveAppVersionsQuery = {
|
|
16143
|
+
__typename?: 'RootQuery';
|
|
16144
|
+
app: {
|
|
16145
|
+
__typename?: 'AppQuery';
|
|
16146
|
+
byId: {
|
|
16147
|
+
__typename?: 'App';
|
|
16148
|
+
id: string;
|
|
16149
|
+
observe: {
|
|
16150
|
+
__typename?: 'AppObserve';
|
|
16151
|
+
appVersions: Array<{
|
|
16152
|
+
__typename?: 'AppObserveAppVersion';
|
|
16153
|
+
appVersion: string;
|
|
16154
|
+
firstSeenAt: any;
|
|
16155
|
+
eventCount: number;
|
|
16156
|
+
uniqueUserCount: number;
|
|
16157
|
+
buildNumbers: Array<{
|
|
16158
|
+
__typename?: 'AppObserveAppBuildNumber';
|
|
16159
|
+
appBuildNumber: string;
|
|
16160
|
+
firstSeenAt: any;
|
|
16161
|
+
eventCount: number;
|
|
16162
|
+
uniqueUserCount: number;
|
|
16163
|
+
easBuilds: Array<{
|
|
16164
|
+
__typename?: 'AppObserveAppEasBuild';
|
|
16165
|
+
easBuildId: string;
|
|
16166
|
+
firstSeenAt: any;
|
|
16167
|
+
eventCount: number;
|
|
16168
|
+
uniqueUserCount: number;
|
|
16169
|
+
}>;
|
|
16170
|
+
}>;
|
|
16171
|
+
updates: Array<{
|
|
16172
|
+
__typename?: 'AppObserveAppUpdate';
|
|
16173
|
+
appUpdateId: string;
|
|
16174
|
+
firstSeenAt: any;
|
|
16175
|
+
eventCount: number;
|
|
16176
|
+
uniqueUserCount: number;
|
|
16177
|
+
easBuilds: Array<{
|
|
16178
|
+
__typename?: 'AppObserveAppEasBuild';
|
|
16179
|
+
easBuildId: string;
|
|
16180
|
+
firstSeenAt: any;
|
|
16181
|
+
eventCount: number;
|
|
16182
|
+
uniqueUserCount: number;
|
|
16183
|
+
}>;
|
|
16184
|
+
}>;
|
|
16185
|
+
metrics: Array<{
|
|
16186
|
+
__typename?: 'AppObserveAppVersionMetric';
|
|
16187
|
+
metricName: string;
|
|
16188
|
+
eventCount: number;
|
|
16189
|
+
statistics: {
|
|
16190
|
+
__typename?: 'AppObserveVersionMarkerStatistics';
|
|
16191
|
+
min?: number | null;
|
|
16192
|
+
max?: number | null;
|
|
16193
|
+
median?: number | null;
|
|
16194
|
+
average?: number | null;
|
|
16195
|
+
p80?: number | null;
|
|
16196
|
+
p90?: number | null;
|
|
16197
|
+
p99?: number | null;
|
|
16198
|
+
};
|
|
16199
|
+
}>;
|
|
16200
|
+
}>;
|
|
16201
|
+
};
|
|
16202
|
+
};
|
|
16203
|
+
};
|
|
16204
|
+
};
|
|
16205
|
+
export type AppObserveEventsQueryVariables = Exact<{
|
|
16206
|
+
appId: Scalars['String']['input'];
|
|
16207
|
+
filter?: InputMaybe<AppObserveEventsFilter>;
|
|
16208
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16209
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16210
|
+
orderBy?: InputMaybe<AppObserveEventsOrderBy>;
|
|
16211
|
+
}>;
|
|
16212
|
+
export type AppObserveEventsQuery = {
|
|
16213
|
+
__typename?: 'RootQuery';
|
|
16214
|
+
app: {
|
|
16215
|
+
__typename?: 'AppQuery';
|
|
16216
|
+
byId: {
|
|
16217
|
+
__typename?: 'App';
|
|
16218
|
+
id: string;
|
|
16219
|
+
observe: {
|
|
16220
|
+
__typename?: 'AppObserve';
|
|
16221
|
+
events: {
|
|
16222
|
+
__typename?: 'AppObserveEventsConnection';
|
|
16223
|
+
pageInfo: {
|
|
16224
|
+
__typename?: 'PageInfo';
|
|
16225
|
+
hasNextPage: boolean;
|
|
16226
|
+
hasPreviousPage: boolean;
|
|
16227
|
+
endCursor?: string | null;
|
|
16228
|
+
};
|
|
16229
|
+
edges: Array<{
|
|
16230
|
+
__typename?: 'AppObserveEventEdge';
|
|
16231
|
+
cursor: string;
|
|
16232
|
+
node: {
|
|
16233
|
+
__typename?: 'AppObserveEvent';
|
|
16234
|
+
id: string;
|
|
16235
|
+
metricName: string;
|
|
16236
|
+
metricValue: number;
|
|
16237
|
+
timestamp: any;
|
|
16238
|
+
appVersion: string;
|
|
16239
|
+
appBuildNumber: string;
|
|
16240
|
+
appUpdateId?: string | null;
|
|
16241
|
+
deviceModel: string;
|
|
16242
|
+
deviceOs: string;
|
|
16243
|
+
deviceOsVersion: string;
|
|
16244
|
+
countryCode?: string | null;
|
|
16245
|
+
sessionId?: string | null;
|
|
16246
|
+
easClientId: string;
|
|
16247
|
+
};
|
|
16248
|
+
}>;
|
|
16249
|
+
};
|
|
16250
|
+
};
|
|
16251
|
+
};
|
|
16252
|
+
};
|
|
16253
|
+
};
|
|
15326
16254
|
export type GetAssetMetadataQueryVariables = Exact<{
|
|
15327
16255
|
storageKeys: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
15328
16256
|
}>;
|
|
@@ -15535,6 +16463,10 @@ export type ViewUpdatesByGroupQuery = {
|
|
|
15535
16463
|
manifestHostOverride?: string | null;
|
|
15536
16464
|
assetHostOverride?: string | null;
|
|
15537
16465
|
actor?: {
|
|
16466
|
+
__typename: 'PartnerActor';
|
|
16467
|
+
username: string;
|
|
16468
|
+
id: string;
|
|
16469
|
+
} | {
|
|
15538
16470
|
__typename: 'Robot';
|
|
15539
16471
|
firstName?: string | null;
|
|
15540
16472
|
id: string;
|
|
@@ -15612,6 +16544,10 @@ export type ViewUpdateGroupsOnBranchQuery = {
|
|
|
15612
16544
|
manifestHostOverride?: string | null;
|
|
15613
16545
|
assetHostOverride?: string | null;
|
|
15614
16546
|
actor?: {
|
|
16547
|
+
__typename: 'PartnerActor';
|
|
16548
|
+
username: string;
|
|
16549
|
+
id: string;
|
|
16550
|
+
} | {
|
|
15615
16551
|
__typename: 'Robot';
|
|
15616
16552
|
firstName?: string | null;
|
|
15617
16553
|
id: string;
|
|
@@ -15688,6 +16624,10 @@ export type ViewUpdateGroupsOnAppQuery = {
|
|
|
15688
16624
|
manifestHostOverride?: string | null;
|
|
15689
16625
|
assetHostOverride?: string | null;
|
|
15690
16626
|
actor?: {
|
|
16627
|
+
__typename: 'PartnerActor';
|
|
16628
|
+
username: string;
|
|
16629
|
+
id: string;
|
|
16630
|
+
} | {
|
|
15691
16631
|
__typename: 'Robot';
|
|
15692
16632
|
firstName?: string | null;
|
|
15693
16633
|
id: string;
|
|
@@ -15757,6 +16697,10 @@ export type UpdateByIdQuery = {
|
|
|
15757
16697
|
manifestHostOverride?: string | null;
|
|
15758
16698
|
assetHostOverride?: string | null;
|
|
15759
16699
|
actor?: {
|
|
16700
|
+
__typename: 'PartnerActor';
|
|
16701
|
+
username: string;
|
|
16702
|
+
id: string;
|
|
16703
|
+
} | {
|
|
15760
16704
|
__typename: 'Robot';
|
|
15761
16705
|
firstName?: string | null;
|
|
15762
16706
|
id: string;
|
|
@@ -15806,6 +16750,43 @@ export type CurrentUserQueryVariables = Exact<{
|
|
|
15806
16750
|
export type CurrentUserQuery = {
|
|
15807
16751
|
__typename?: 'RootQuery';
|
|
15808
16752
|
meActor?: {
|
|
16753
|
+
__typename: 'PartnerActor';
|
|
16754
|
+
username: string;
|
|
16755
|
+
id: string;
|
|
16756
|
+
featureGates: any;
|
|
16757
|
+
isExpoAdmin: boolean;
|
|
16758
|
+
accounts: Array<{
|
|
16759
|
+
__typename?: 'Account';
|
|
16760
|
+
id: string;
|
|
16761
|
+
name: string;
|
|
16762
|
+
ownerUserActor?: {
|
|
16763
|
+
__typename?: 'SSOUser';
|
|
16764
|
+
id: string;
|
|
16765
|
+
username: string;
|
|
16766
|
+
} | {
|
|
16767
|
+
__typename?: 'User';
|
|
16768
|
+
id: string;
|
|
16769
|
+
username: string;
|
|
16770
|
+
} | null;
|
|
16771
|
+
users: Array<{
|
|
16772
|
+
__typename?: 'UserPermission';
|
|
16773
|
+
role: Role;
|
|
16774
|
+
actor: {
|
|
16775
|
+
__typename?: 'PartnerActor';
|
|
16776
|
+
id: string;
|
|
16777
|
+
} | {
|
|
16778
|
+
__typename?: 'Robot';
|
|
16779
|
+
id: string;
|
|
16780
|
+
} | {
|
|
16781
|
+
__typename?: 'SSOUser';
|
|
16782
|
+
id: string;
|
|
16783
|
+
} | {
|
|
16784
|
+
__typename?: 'User';
|
|
16785
|
+
id: string;
|
|
16786
|
+
};
|
|
16787
|
+
}>;
|
|
16788
|
+
}>;
|
|
16789
|
+
} | {
|
|
15809
16790
|
__typename: 'Robot';
|
|
15810
16791
|
firstName?: string | null;
|
|
15811
16792
|
id: string;
|
|
@@ -15828,6 +16809,9 @@ export type CurrentUserQuery = {
|
|
|
15828
16809
|
__typename?: 'UserPermission';
|
|
15829
16810
|
role: Role;
|
|
15830
16811
|
actor: {
|
|
16812
|
+
__typename?: 'PartnerActor';
|
|
16813
|
+
id: string;
|
|
16814
|
+
} | {
|
|
15831
16815
|
__typename?: 'Robot';
|
|
15832
16816
|
id: string;
|
|
15833
16817
|
} | {
|
|
@@ -15862,6 +16846,9 @@ export type CurrentUserQuery = {
|
|
|
15862
16846
|
__typename?: 'UserPermission';
|
|
15863
16847
|
role: Role;
|
|
15864
16848
|
actor: {
|
|
16849
|
+
__typename?: 'PartnerActor';
|
|
16850
|
+
id: string;
|
|
16851
|
+
} | {
|
|
15865
16852
|
__typename?: 'Robot';
|
|
15866
16853
|
id: string;
|
|
15867
16854
|
} | {
|
|
@@ -15902,6 +16889,9 @@ export type CurrentUserQuery = {
|
|
|
15902
16889
|
__typename?: 'UserPermission';
|
|
15903
16890
|
role: Role;
|
|
15904
16891
|
actor: {
|
|
16892
|
+
__typename?: 'PartnerActor';
|
|
16893
|
+
id: string;
|
|
16894
|
+
} | {
|
|
15905
16895
|
__typename?: 'Robot';
|
|
15906
16896
|
id: string;
|
|
15907
16897
|
} | {
|
|
@@ -15937,6 +16927,9 @@ export type CurrentUserQuery = {
|
|
|
15937
16927
|
__typename?: 'UserPermission';
|
|
15938
16928
|
role: Role;
|
|
15939
16929
|
actor: {
|
|
16930
|
+
__typename?: 'PartnerActor';
|
|
16931
|
+
id: string;
|
|
16932
|
+
} | {
|
|
15940
16933
|
__typename?: 'Robot';
|
|
15941
16934
|
id: string;
|
|
15942
16935
|
} | {
|
|
@@ -15977,6 +16970,9 @@ export type CurrentUserQuery = {
|
|
|
15977
16970
|
__typename?: 'UserPermission';
|
|
15978
16971
|
role: Role;
|
|
15979
16972
|
actor: {
|
|
16973
|
+
__typename?: 'PartnerActor';
|
|
16974
|
+
id: string;
|
|
16975
|
+
} | {
|
|
15980
16976
|
__typename?: 'Robot';
|
|
15981
16977
|
id: string;
|
|
15982
16978
|
} | {
|
|
@@ -16114,6 +17110,10 @@ export type WorkflowJobByIdQuery = {
|
|
|
16114
17110
|
hash: string;
|
|
16115
17111
|
} | null;
|
|
16116
17112
|
initiatingActor?: {
|
|
17113
|
+
__typename: 'PartnerActor';
|
|
17114
|
+
id: string;
|
|
17115
|
+
displayName: string;
|
|
17116
|
+
} | {
|
|
16117
17117
|
__typename: 'Robot';
|
|
16118
17118
|
id: string;
|
|
16119
17119
|
displayName: string;
|
|
@@ -16284,6 +17284,10 @@ export type WorkflowRunByIdWithJobsQuery = {
|
|
|
16284
17284
|
hash: string;
|
|
16285
17285
|
} | null;
|
|
16286
17286
|
initiatingActor?: {
|
|
17287
|
+
__typename: 'PartnerActor';
|
|
17288
|
+
id: string;
|
|
17289
|
+
displayName: string;
|
|
17290
|
+
} | {
|
|
16287
17291
|
__typename: 'Robot';
|
|
16288
17292
|
id: string;
|
|
16289
17293
|
displayName: string;
|
|
@@ -16326,6 +17330,9 @@ export type WorkflowRunByIdWithJobsQuery = {
|
|
|
16326
17330
|
}>;
|
|
16327
17331
|
}>;
|
|
16328
17332
|
actor?: {
|
|
17333
|
+
__typename: 'PartnerActor';
|
|
17334
|
+
id: string;
|
|
17335
|
+
} | {
|
|
16329
17336
|
__typename: 'Robot';
|
|
16330
17337
|
firstName?: string | null;
|
|
16331
17338
|
id: string;
|
|
@@ -16376,6 +17383,9 @@ export type WorkflowRunsForAppIdFileNameAndStatusQuery = {
|
|
|
16376
17383
|
createdAt: any;
|
|
16377
17384
|
updatedAt: any;
|
|
16378
17385
|
actor?: {
|
|
17386
|
+
__typename: 'PartnerActor';
|
|
17387
|
+
id: string;
|
|
17388
|
+
} | {
|
|
16379
17389
|
__typename: 'Robot';
|
|
16380
17390
|
firstName?: string | null;
|
|
16381
17391
|
id: string;
|
|
@@ -16422,6 +17432,9 @@ export type AccountFragment = {
|
|
|
16422
17432
|
__typename?: 'UserPermission';
|
|
16423
17433
|
role: Role;
|
|
16424
17434
|
actor: {
|
|
17435
|
+
__typename?: 'PartnerActor';
|
|
17436
|
+
id: string;
|
|
17437
|
+
} | {
|
|
16425
17438
|
__typename?: 'Robot';
|
|
16426
17439
|
id: string;
|
|
16427
17440
|
} | {
|
|
@@ -16646,6 +17659,9 @@ export type AppFragment = {
|
|
|
16646
17659
|
__typename?: 'UserPermission';
|
|
16647
17660
|
role: Role;
|
|
16648
17661
|
actor: {
|
|
17662
|
+
__typename?: 'PartnerActor';
|
|
17663
|
+
id: string;
|
|
17664
|
+
} | {
|
|
16649
17665
|
__typename?: 'Robot';
|
|
16650
17666
|
id: string;
|
|
16651
17667
|
} | {
|
|
@@ -16726,6 +17742,10 @@ export type BuildFragment = {
|
|
|
16726
17742
|
hash: string;
|
|
16727
17743
|
} | null;
|
|
16728
17744
|
initiatingActor?: {
|
|
17745
|
+
__typename: 'PartnerActor';
|
|
17746
|
+
id: string;
|
|
17747
|
+
displayName: string;
|
|
17748
|
+
} | {
|
|
16729
17749
|
__typename: 'Robot';
|
|
16730
17750
|
id: string;
|
|
16731
17751
|
displayName: string;
|
|
@@ -16841,6 +17861,10 @@ export type BuildWithSubmissionsFragment = {
|
|
|
16841
17861
|
hash: string;
|
|
16842
17862
|
} | null;
|
|
16843
17863
|
initiatingActor?: {
|
|
17864
|
+
__typename: 'PartnerActor';
|
|
17865
|
+
id: string;
|
|
17866
|
+
displayName: string;
|
|
17867
|
+
} | {
|
|
16844
17868
|
__typename: 'Robot';
|
|
16845
17869
|
id: string;
|
|
16846
17870
|
displayName: string;
|
|
@@ -16944,6 +17968,10 @@ export type BuildWithFingerprintFragment = {
|
|
|
16944
17968
|
buildArtifactsUrl?: string | null;
|
|
16945
17969
|
} | null;
|
|
16946
17970
|
initiatingActor?: {
|
|
17971
|
+
__typename: 'PartnerActor';
|
|
17972
|
+
id: string;
|
|
17973
|
+
displayName: string;
|
|
17974
|
+
} | {
|
|
16947
17975
|
__typename: 'Robot';
|
|
16948
17976
|
id: string;
|
|
16949
17977
|
displayName: string;
|
|
@@ -17038,6 +18066,136 @@ export type FingerprintFragment = {
|
|
|
17038
18066
|
}>;
|
|
17039
18067
|
};
|
|
17040
18068
|
};
|
|
18069
|
+
export type AppObserveTimeSeriesFragment = {
|
|
18070
|
+
__typename?: 'AppObserveTimeSeries';
|
|
18071
|
+
eventCount: number;
|
|
18072
|
+
appVersionMarkers: Array<{
|
|
18073
|
+
__typename?: 'AppObserveAppVersion';
|
|
18074
|
+
appVersion: string;
|
|
18075
|
+
firstSeenAt: any;
|
|
18076
|
+
eventCount: number;
|
|
18077
|
+
uniqueUserCount: number;
|
|
18078
|
+
buildNumbers: Array<{
|
|
18079
|
+
__typename?: 'AppObserveAppBuildNumber';
|
|
18080
|
+
appBuildNumber: string;
|
|
18081
|
+
firstSeenAt: any;
|
|
18082
|
+
eventCount: number;
|
|
18083
|
+
uniqueUserCount: number;
|
|
18084
|
+
easBuilds: Array<{
|
|
18085
|
+
__typename?: 'AppObserveAppEasBuild';
|
|
18086
|
+
easBuildId: string;
|
|
18087
|
+
firstSeenAt: any;
|
|
18088
|
+
eventCount: number;
|
|
18089
|
+
uniqueUserCount: number;
|
|
18090
|
+
}>;
|
|
18091
|
+
}>;
|
|
18092
|
+
updates: Array<{
|
|
18093
|
+
__typename?: 'AppObserveAppUpdate';
|
|
18094
|
+
appUpdateId: string;
|
|
18095
|
+
firstSeenAt: any;
|
|
18096
|
+
eventCount: number;
|
|
18097
|
+
uniqueUserCount: number;
|
|
18098
|
+
easBuilds: Array<{
|
|
18099
|
+
__typename?: 'AppObserveAppEasBuild';
|
|
18100
|
+
easBuildId: string;
|
|
18101
|
+
firstSeenAt: any;
|
|
18102
|
+
eventCount: number;
|
|
18103
|
+
uniqueUserCount: number;
|
|
18104
|
+
}>;
|
|
18105
|
+
}>;
|
|
18106
|
+
metrics: Array<{
|
|
18107
|
+
__typename?: 'AppObserveAppVersionMetric';
|
|
18108
|
+
metricName: string;
|
|
18109
|
+
eventCount: number;
|
|
18110
|
+
statistics: {
|
|
18111
|
+
__typename?: 'AppObserveVersionMarkerStatistics';
|
|
18112
|
+
min?: number | null;
|
|
18113
|
+
max?: number | null;
|
|
18114
|
+
median?: number | null;
|
|
18115
|
+
average?: number | null;
|
|
18116
|
+
p80?: number | null;
|
|
18117
|
+
p90?: number | null;
|
|
18118
|
+
p99?: number | null;
|
|
18119
|
+
};
|
|
18120
|
+
}>;
|
|
18121
|
+
}>;
|
|
18122
|
+
statistics: {
|
|
18123
|
+
__typename?: 'AppObserveTimeSeriesStatistics';
|
|
18124
|
+
min?: number | null;
|
|
18125
|
+
max?: number | null;
|
|
18126
|
+
median?: number | null;
|
|
18127
|
+
average?: number | null;
|
|
18128
|
+
p80?: number | null;
|
|
18129
|
+
p90?: number | null;
|
|
18130
|
+
p99?: number | null;
|
|
18131
|
+
};
|
|
18132
|
+
};
|
|
18133
|
+
export type AppObserveEventFragment = {
|
|
18134
|
+
__typename?: 'AppObserveEvent';
|
|
18135
|
+
id: string;
|
|
18136
|
+
metricName: string;
|
|
18137
|
+
metricValue: number;
|
|
18138
|
+
timestamp: any;
|
|
18139
|
+
appVersion: string;
|
|
18140
|
+
appBuildNumber: string;
|
|
18141
|
+
appUpdateId?: string | null;
|
|
18142
|
+
deviceModel: string;
|
|
18143
|
+
deviceOs: string;
|
|
18144
|
+
deviceOsVersion: string;
|
|
18145
|
+
countryCode?: string | null;
|
|
18146
|
+
sessionId?: string | null;
|
|
18147
|
+
easClientId: string;
|
|
18148
|
+
};
|
|
18149
|
+
export type AppObserveAppVersionFragment = {
|
|
18150
|
+
__typename?: 'AppObserveAppVersion';
|
|
18151
|
+
appVersion: string;
|
|
18152
|
+
firstSeenAt: any;
|
|
18153
|
+
eventCount: number;
|
|
18154
|
+
uniqueUserCount: number;
|
|
18155
|
+
buildNumbers: Array<{
|
|
18156
|
+
__typename?: 'AppObserveAppBuildNumber';
|
|
18157
|
+
appBuildNumber: string;
|
|
18158
|
+
firstSeenAt: any;
|
|
18159
|
+
eventCount: number;
|
|
18160
|
+
uniqueUserCount: number;
|
|
18161
|
+
easBuilds: Array<{
|
|
18162
|
+
__typename?: 'AppObserveAppEasBuild';
|
|
18163
|
+
easBuildId: string;
|
|
18164
|
+
firstSeenAt: any;
|
|
18165
|
+
eventCount: number;
|
|
18166
|
+
uniqueUserCount: number;
|
|
18167
|
+
}>;
|
|
18168
|
+
}>;
|
|
18169
|
+
updates: Array<{
|
|
18170
|
+
__typename?: 'AppObserveAppUpdate';
|
|
18171
|
+
appUpdateId: string;
|
|
18172
|
+
firstSeenAt: any;
|
|
18173
|
+
eventCount: number;
|
|
18174
|
+
uniqueUserCount: number;
|
|
18175
|
+
easBuilds: Array<{
|
|
18176
|
+
__typename?: 'AppObserveAppEasBuild';
|
|
18177
|
+
easBuildId: string;
|
|
18178
|
+
firstSeenAt: any;
|
|
18179
|
+
eventCount: number;
|
|
18180
|
+
uniqueUserCount: number;
|
|
18181
|
+
}>;
|
|
18182
|
+
}>;
|
|
18183
|
+
metrics: Array<{
|
|
18184
|
+
__typename?: 'AppObserveAppVersionMetric';
|
|
18185
|
+
metricName: string;
|
|
18186
|
+
eventCount: number;
|
|
18187
|
+
statistics: {
|
|
18188
|
+
__typename?: 'AppObserveVersionMarkerStatistics';
|
|
18189
|
+
min?: number | null;
|
|
18190
|
+
max?: number | null;
|
|
18191
|
+
median?: number | null;
|
|
18192
|
+
average?: number | null;
|
|
18193
|
+
p80?: number | null;
|
|
18194
|
+
p90?: number | null;
|
|
18195
|
+
p99?: number | null;
|
|
18196
|
+
};
|
|
18197
|
+
}>;
|
|
18198
|
+
};
|
|
17041
18199
|
export type RuntimeFragment = {
|
|
17042
18200
|
__typename?: 'Runtime';
|
|
17043
18201
|
id: string;
|
|
@@ -17110,6 +18268,10 @@ export type UpdateFragment = {
|
|
|
17110
18268
|
manifestHostOverride?: string | null;
|
|
17111
18269
|
assetHostOverride?: string | null;
|
|
17112
18270
|
actor?: {
|
|
18271
|
+
__typename: 'PartnerActor';
|
|
18272
|
+
username: string;
|
|
18273
|
+
id: string;
|
|
18274
|
+
} | {
|
|
17113
18275
|
__typename: 'Robot';
|
|
17114
18276
|
firstName?: string | null;
|
|
17115
18277
|
id: string;
|
|
@@ -17173,6 +18335,10 @@ export type UpdateBranchFragment = {
|
|
|
17173
18335
|
manifestHostOverride?: string | null;
|
|
17174
18336
|
assetHostOverride?: string | null;
|
|
17175
18337
|
actor?: {
|
|
18338
|
+
__typename: 'PartnerActor';
|
|
18339
|
+
username: string;
|
|
18340
|
+
id: string;
|
|
18341
|
+
} | {
|
|
17176
18342
|
__typename: 'Robot';
|
|
17177
18343
|
firstName?: string | null;
|
|
17178
18344
|
id: string;
|
|
@@ -17334,6 +18500,10 @@ export type WorkflowJobFragment = {
|
|
|
17334
18500
|
hash: string;
|
|
17335
18501
|
} | null;
|
|
17336
18502
|
initiatingActor?: {
|
|
18503
|
+
__typename: 'PartnerActor';
|
|
18504
|
+
id: string;
|
|
18505
|
+
displayName: string;
|
|
18506
|
+
} | {
|
|
17337
18507
|
__typename: 'Robot';
|
|
17338
18508
|
id: string;
|
|
17339
18509
|
displayName: string;
|
|
@@ -17388,6 +18558,9 @@ export type WorkflowRunFragment = {
|
|
|
17388
18558
|
createdAt: any;
|
|
17389
18559
|
updatedAt: any;
|
|
17390
18560
|
actor?: {
|
|
18561
|
+
__typename: 'PartnerActor';
|
|
18562
|
+
id: string;
|
|
18563
|
+
} | {
|
|
17391
18564
|
__typename: 'Robot';
|
|
17392
18565
|
firstName?: string | null;
|
|
17393
18566
|
id: string;
|
|
@@ -17461,6 +18634,9 @@ export type CommonAndroidAppCredentialsFragment = {
|
|
|
17461
18634
|
__typename?: 'UserPermission';
|
|
17462
18635
|
role: Role;
|
|
17463
18636
|
actor: {
|
|
18637
|
+
__typename?: 'PartnerActor';
|
|
18638
|
+
id: string;
|
|
18639
|
+
} | {
|
|
17464
18640
|
__typename?: 'Robot';
|
|
17465
18641
|
id: string;
|
|
17466
18642
|
} | {
|
|
@@ -17655,6 +18831,9 @@ export type AppleDistributionCertificateFragment = {
|
|
|
17655
18831
|
__typename?: 'UserPermission';
|
|
17656
18832
|
role: Role;
|
|
17657
18833
|
actor: {
|
|
18834
|
+
__typename?: 'PartnerActor';
|
|
18835
|
+
id: string;
|
|
18836
|
+
} | {
|
|
17658
18837
|
__typename?: 'Robot';
|
|
17659
18838
|
id: string;
|
|
17660
18839
|
} | {
|
|
@@ -17755,6 +18934,9 @@ export type ApplePushKeyFragment = {
|
|
|
17755
18934
|
__typename?: 'UserPermission';
|
|
17756
18935
|
role: Role;
|
|
17757
18936
|
actor: {
|
|
18937
|
+
__typename?: 'PartnerActor';
|
|
18938
|
+
id: string;
|
|
18939
|
+
} | {
|
|
17758
18940
|
__typename?: 'Robot';
|
|
17759
18941
|
id: string;
|
|
17760
18942
|
} | {
|
|
@@ -17848,6 +19030,9 @@ export type IosAppBuildCredentialsFragment = {
|
|
|
17848
19030
|
__typename?: 'UserPermission';
|
|
17849
19031
|
role: Role;
|
|
17850
19032
|
actor: {
|
|
19033
|
+
__typename?: 'PartnerActor';
|
|
19034
|
+
id: string;
|
|
19035
|
+
} | {
|
|
17851
19036
|
__typename?: 'Robot';
|
|
17852
19037
|
id: string;
|
|
17853
19038
|
} | {
|
|
@@ -17933,6 +19118,9 @@ export type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
17933
19118
|
__typename?: 'UserPermission';
|
|
17934
19119
|
role: Role;
|
|
17935
19120
|
actor: {
|
|
19121
|
+
__typename?: 'PartnerActor';
|
|
19122
|
+
id: string;
|
|
19123
|
+
} | {
|
|
17936
19124
|
__typename?: 'Robot';
|
|
17937
19125
|
id: string;
|
|
17938
19126
|
} | {
|
|
@@ -18002,6 +19190,9 @@ export type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
18002
19190
|
__typename?: 'UserPermission';
|
|
18003
19191
|
role: Role;
|
|
18004
19192
|
actor: {
|
|
19193
|
+
__typename?: 'PartnerActor';
|
|
19194
|
+
id: string;
|
|
19195
|
+
} | {
|
|
18005
19196
|
__typename?: 'Robot';
|
|
18006
19197
|
id: string;
|
|
18007
19198
|
} | {
|
|
@@ -18099,6 +19290,9 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
18099
19290
|
__typename?: 'UserPermission';
|
|
18100
19291
|
role: Role;
|
|
18101
19292
|
actor: {
|
|
19293
|
+
__typename?: 'PartnerActor';
|
|
19294
|
+
id: string;
|
|
19295
|
+
} | {
|
|
18102
19296
|
__typename?: 'Robot';
|
|
18103
19297
|
id: string;
|
|
18104
19298
|
} | {
|
|
@@ -18181,6 +19375,9 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
18181
19375
|
__typename?: 'UserPermission';
|
|
18182
19376
|
role: Role;
|
|
18183
19377
|
actor: {
|
|
19378
|
+
__typename?: 'PartnerActor';
|
|
19379
|
+
id: string;
|
|
19380
|
+
} | {
|
|
18184
19381
|
__typename?: 'Robot';
|
|
18185
19382
|
id: string;
|
|
18186
19383
|
} | {
|
|
@@ -18250,6 +19447,9 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
18250
19447
|
__typename?: 'UserPermission';
|
|
18251
19448
|
role: Role;
|
|
18252
19449
|
actor: {
|
|
19450
|
+
__typename?: 'PartnerActor';
|
|
19451
|
+
id: string;
|
|
19452
|
+
} | {
|
|
18253
19453
|
__typename?: 'Robot';
|
|
18254
19454
|
id: string;
|
|
18255
19455
|
} | {
|