eas-cli 18.11.0 → 18.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +100 -100
- package/build/commands/integrations/convex/connect.d.ts +1 -0
- package/build/commands/integrations/convex/connect.js +53 -3
- package/build/commands/simulator/get.d.ts +13 -0
- package/build/commands/simulator/get.js +60 -0
- package/build/commands/simulator/start.js +15 -110
- package/build/graphql/generated.d.ts +201 -5
- package/build/graphql/generated.js +20 -3
- package/build/graphql/queries/DeviceRunSessionQuery.js +20 -1
- package/build/graphql/types/App.js +1 -0
- package/build/simulator/utils.d.ts +5 -0
- package/build/simulator/utils.js +20 -0
- package/oclif.manifest.json +1230 -1148
- package/package.json +5 -5
|
@@ -215,8 +215,13 @@ export type Account = {
|
|
|
215
215
|
/** @deprecated Legacy access tokens are deprecated */
|
|
216
216
|
requiresAccessTokenForPushSecurity: Scalars['Boolean']['output'];
|
|
217
217
|
sentryInstallation?: Maybe<SentryInstallation>;
|
|
218
|
-
/**
|
|
218
|
+
/**
|
|
219
|
+
* Snacks associated with this account
|
|
220
|
+
* @deprecated Use snacksPaginated
|
|
221
|
+
*/
|
|
219
222
|
snacks: Array<Snack>;
|
|
223
|
+
/** Paginated list of Snacks associated with this account, sorted by most recent activity. */
|
|
224
|
+
snacksPaginated: AccountSnacksConnection;
|
|
220
225
|
/** Allowed SSO providers for this account */
|
|
221
226
|
ssoAllowedAuthProviders: Array<AuthProviderIdentifier>;
|
|
222
227
|
/** SSO configuration for this account */
|
|
@@ -462,6 +467,16 @@ export type AccountSnacksArgs = {
|
|
|
462
467
|
limit: Scalars['Int']['input'];
|
|
463
468
|
offset: Scalars['Int']['input'];
|
|
464
469
|
};
|
|
470
|
+
/**
|
|
471
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
472
|
+
* data and settings. Actors may own and be members of accounts.
|
|
473
|
+
*/
|
|
474
|
+
export type AccountSnacksPaginatedArgs = {
|
|
475
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
476
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
477
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
478
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
479
|
+
};
|
|
465
480
|
/**
|
|
466
481
|
* An account is a container owning projects, credentials, billing and other organization
|
|
467
482
|
* data and settings. Actors may own and be members of accounts.
|
|
@@ -725,8 +740,10 @@ export type AccountOnboardingStats = {
|
|
|
725
740
|
firstProjectCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
726
741
|
firstSubmissionCompletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
727
742
|
firstUpdateCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
743
|
+
/** @deprecated Onboarding widget experiment removed */
|
|
728
744
|
hasConfiguredUpdate: Scalars['Boolean']['output'];
|
|
729
745
|
hasConfiguredWorkflow: Scalars['Boolean']['output'];
|
|
746
|
+
/** @deprecated Onboarding widget experiment removed */
|
|
730
747
|
hasTeamMembers: Scalars['Boolean']['output'];
|
|
731
748
|
};
|
|
732
749
|
export type AccountQuery = {
|
|
@@ -804,6 +821,16 @@ export type AccountSsoConfigurationPublicDataQuery = {
|
|
|
804
821
|
export type AccountSsoConfigurationPublicDataQueryPublicDataByAccountNameArgs = {
|
|
805
822
|
accountName: Scalars['String']['input'];
|
|
806
823
|
};
|
|
824
|
+
export type AccountSnacksConnection = {
|
|
825
|
+
__typename?: 'AccountSnacksConnection';
|
|
826
|
+
edges: Array<AccountSnacksEdge>;
|
|
827
|
+
pageInfo: PageInfo;
|
|
828
|
+
};
|
|
829
|
+
export type AccountSnacksEdge = {
|
|
830
|
+
__typename?: 'AccountSnacksEdge';
|
|
831
|
+
cursor: Scalars['String']['output'];
|
|
832
|
+
node: Snack;
|
|
833
|
+
};
|
|
807
834
|
export declare enum AccountUploadSessionType {
|
|
808
835
|
ProfileImageUpload = "PROFILE_IMAGE_UPLOAD",
|
|
809
836
|
WorkflowsProjectSources = "WORKFLOWS_PROJECT_SOURCES"
|
|
@@ -923,6 +950,11 @@ export type Address = {
|
|
|
923
950
|
state?: Maybe<Scalars['String']['output']>;
|
|
924
951
|
zip?: Maybe<Scalars['String']['output']>;
|
|
925
952
|
};
|
|
953
|
+
export type AgentDeviceRunSessionRemoteConfig = {
|
|
954
|
+
__typename?: 'AgentDeviceRunSessionRemoteConfig';
|
|
955
|
+
token: Scalars['String']['output'];
|
|
956
|
+
url: Scalars['String']['output'];
|
|
957
|
+
};
|
|
926
958
|
export type AndroidAppBuildCredentials = {
|
|
927
959
|
__typename?: 'AndroidAppBuildCredentials';
|
|
928
960
|
androidKeystore?: Maybe<AndroidKeystore>;
|
|
@@ -1824,8 +1856,13 @@ export type AppObserveCustomEventListArgs = {
|
|
|
1824
1856
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1825
1857
|
};
|
|
1826
1858
|
export type AppObserveCustomEventNamesArgs = {
|
|
1859
|
+
appBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
1860
|
+
appEasBuildId?: InputMaybe<Scalars['String']['input']>;
|
|
1861
|
+
appUpdateId?: InputMaybe<Scalars['String']['input']>;
|
|
1862
|
+
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
1827
1863
|
endTime: Scalars['DateTime']['input'];
|
|
1828
1864
|
environment?: InputMaybe<Scalars['String']['input']>;
|
|
1865
|
+
orderBy?: InputMaybe<AppObserveCustomEventNamesOrderBy>;
|
|
1829
1866
|
platform?: InputMaybe<AppObservePlatform>;
|
|
1830
1867
|
startTime: Scalars['DateTime']['input'];
|
|
1831
1868
|
};
|
|
@@ -1891,17 +1928,22 @@ export type AppObserveCustomEvent = {
|
|
|
1891
1928
|
__typename?: 'AppObserveCustomEvent';
|
|
1892
1929
|
appBuildNumber: Scalars['String']['output'];
|
|
1893
1930
|
appEasBuildId?: Maybe<Scalars['String']['output']>;
|
|
1931
|
+
appIdentifier: Scalars['String']['output'];
|
|
1894
1932
|
appUpdateId?: Maybe<Scalars['String']['output']>;
|
|
1895
1933
|
appVersion: Scalars['String']['output'];
|
|
1934
|
+
clientVersion?: Maybe<Scalars['String']['output']>;
|
|
1896
1935
|
countryCode?: Maybe<Scalars['String']['output']>;
|
|
1936
|
+
deviceLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
1897
1937
|
deviceModel: Scalars['String']['output'];
|
|
1898
1938
|
deviceOs: Scalars['String']['output'];
|
|
1899
1939
|
deviceOsVersion: Scalars['String']['output'];
|
|
1900
1940
|
easClientId: Scalars['String']['output'];
|
|
1901
1941
|
environment?: Maybe<Scalars['String']['output']>;
|
|
1902
1942
|
eventName: Scalars['String']['output'];
|
|
1943
|
+
expoSdkVersion?: Maybe<Scalars['String']['output']>;
|
|
1903
1944
|
id: Scalars['ID']['output'];
|
|
1904
1945
|
properties: Array<AppObserveEventProperty>;
|
|
1946
|
+
reactNativeVersion?: Maybe<Scalars['String']['output']>;
|
|
1905
1947
|
sessionId?: Maybe<Scalars['String']['output']>;
|
|
1906
1948
|
severityNumber?: Maybe<Scalars['Int']['output']>;
|
|
1907
1949
|
severityText?: Maybe<Scalars['String']['output']>;
|
|
@@ -1963,6 +2005,18 @@ export type AppObserveCustomEventNames = {
|
|
|
1963
2005
|
isTruncated: Scalars['Boolean']['output'];
|
|
1964
2006
|
names: Array<AppObserveCustomEventName>;
|
|
1965
2007
|
};
|
|
2008
|
+
export type AppObserveCustomEventNamesOrderBy = {
|
|
2009
|
+
direction: AppObserveCustomEventNamesOrderByDirection;
|
|
2010
|
+
field: AppObserveCustomEventNamesOrderByField;
|
|
2011
|
+
};
|
|
2012
|
+
export declare enum AppObserveCustomEventNamesOrderByDirection {
|
|
2013
|
+
Asc = "ASC",
|
|
2014
|
+
Desc = "DESC"
|
|
2015
|
+
}
|
|
2016
|
+
export declare enum AppObserveCustomEventNamesOrderByField {
|
|
2017
|
+
Count = "COUNT",
|
|
2018
|
+
EventName = "EVENT_NAME"
|
|
2019
|
+
}
|
|
1966
2020
|
export type AppObserveCustomEventPropertyFilter = {
|
|
1967
2021
|
key: Scalars['String']['input'];
|
|
1968
2022
|
value: Scalars['String']['input'];
|
|
@@ -2124,6 +2178,9 @@ export type AppObserveUpdatesConnection = {
|
|
|
2124
2178
|
};
|
|
2125
2179
|
export type AppObserveUpdatesInput = {
|
|
2126
2180
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
2181
|
+
appBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2182
|
+
appUpdateId?: InputMaybe<Scalars['String']['input']>;
|
|
2183
|
+
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
2127
2184
|
endTime: Scalars['DateTime']['input'];
|
|
2128
2185
|
environment?: InputMaybe<Scalars['String']['input']>;
|
|
2129
2186
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -2586,7 +2643,12 @@ export type AppleDeviceRegistrationRequest = {
|
|
|
2586
2643
|
__typename?: 'AppleDeviceRegistrationRequest';
|
|
2587
2644
|
account: Account;
|
|
2588
2645
|
appleTeam: AppleTeam;
|
|
2646
|
+
closedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2589
2647
|
id: Scalars['ID']['output'];
|
|
2648
|
+
/** Device that satisfied this request, including when enrollment matched a pre-existing device. */
|
|
2649
|
+
resolvedAppleDevice?: Maybe<AppleDevice>;
|
|
2650
|
+
/** Workflow job waiting for registration review when this request was created from a workflow run. */
|
|
2651
|
+
workflowJob?: Maybe<WorkflowJob>;
|
|
2590
2652
|
};
|
|
2591
2653
|
export type AppleDeviceRegistrationRequestMutation = {
|
|
2592
2654
|
__typename?: 'AppleDeviceRegistrationRequestMutation';
|
|
@@ -4270,6 +4332,7 @@ export type DeviceRunSession = {
|
|
|
4270
4332
|
*/
|
|
4271
4333
|
packageVersion?: Maybe<Scalars['String']['output']>;
|
|
4272
4334
|
platform: AppPlatform;
|
|
4335
|
+
remoteConfig?: Maybe<DeviceRunSessionRemoteConfig>;
|
|
4273
4336
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4274
4337
|
status: DeviceRunSessionStatus;
|
|
4275
4338
|
turtleJobRun?: Maybe<JobRun>;
|
|
@@ -4286,6 +4349,8 @@ export type DeviceRunSessionMutation = {
|
|
|
4286
4349
|
* ERRORED).
|
|
4287
4350
|
*/
|
|
4288
4351
|
ensureDeviceRunSessionStopped: DeviceRunSession;
|
|
4352
|
+
/** Mark a device run session as started and persist remote connection details */
|
|
4353
|
+
startDeviceRunSession: DeviceRunSession;
|
|
4289
4354
|
};
|
|
4290
4355
|
export type DeviceRunSessionMutationCreateDeviceRunSessionArgs = {
|
|
4291
4356
|
deviceRunSessionInput: CreateDeviceRunSessionInput;
|
|
@@ -4293,6 +4358,10 @@ export type DeviceRunSessionMutationCreateDeviceRunSessionArgs = {
|
|
|
4293
4358
|
export type DeviceRunSessionMutationEnsureDeviceRunSessionStoppedArgs = {
|
|
4294
4359
|
deviceRunSessionId: Scalars['ID']['input'];
|
|
4295
4360
|
};
|
|
4361
|
+
export type DeviceRunSessionMutationStartDeviceRunSessionArgs = {
|
|
4362
|
+
deviceRunSessionId: Scalars['ID']['input'];
|
|
4363
|
+
remoteConfig: Scalars['JSONObject']['input'];
|
|
4364
|
+
};
|
|
4296
4365
|
export type DeviceRunSessionQuery = {
|
|
4297
4366
|
__typename?: 'DeviceRunSessionQuery';
|
|
4298
4367
|
byId: DeviceRunSession;
|
|
@@ -4300,6 +4369,7 @@ export type DeviceRunSessionQuery = {
|
|
|
4300
4369
|
export type DeviceRunSessionQueryByIdArgs = {
|
|
4301
4370
|
deviceRunSessionId: Scalars['ID']['input'];
|
|
4302
4371
|
};
|
|
4372
|
+
export type DeviceRunSessionRemoteConfig = AgentDeviceRunSessionRemoteConfig | ServeSimRunSessionRemoteConfig;
|
|
4303
4373
|
export declare enum DeviceRunSessionStatus {
|
|
4304
4374
|
Errored = "ERRORED",
|
|
4305
4375
|
InProgress = "IN_PROGRESS",
|
|
@@ -4307,7 +4377,8 @@ export declare enum DeviceRunSessionStatus {
|
|
|
4307
4377
|
Stopped = "STOPPED"
|
|
4308
4378
|
}
|
|
4309
4379
|
export declare enum DeviceRunSessionType {
|
|
4310
|
-
AgentDevice = "AGENT_DEVICE"
|
|
4380
|
+
AgentDevice = "AGENT_DEVICE",
|
|
4381
|
+
ServeSim = "SERVE_SIM"
|
|
4311
4382
|
}
|
|
4312
4383
|
export type DiscordUser = {
|
|
4313
4384
|
__typename?: 'DiscordUser';
|
|
@@ -4792,11 +4863,15 @@ export type EchoRepositoryResult = {
|
|
|
4792
4863
|
export type EchoTurn = {
|
|
4793
4864
|
__typename?: 'EchoTurn';
|
|
4794
4865
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4866
|
+
/** Terminal status of the turn (null if still in progress) */
|
|
4867
|
+
completionStatus?: Maybe<EchoTurnCompletionStatus>;
|
|
4795
4868
|
createdAt: Scalars['DateTime']['output'];
|
|
4796
4869
|
/** Parent chat */
|
|
4797
4870
|
echoChat: EchoChat;
|
|
4798
4871
|
/** Messages in this turn */
|
|
4799
4872
|
echoMessages: Array<EchoMessage>;
|
|
4873
|
+
/** Error message when completionStatus is ERROR */
|
|
4874
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
4800
4875
|
id: Scalars['ID']['output'];
|
|
4801
4876
|
};
|
|
4802
4877
|
/** Breakdown of cache write input tokens by cache TTL. */
|
|
@@ -4805,12 +4880,25 @@ export type EchoTurnCacheWriteInput = {
|
|
|
4805
4880
|
ttl5m?: InputMaybe<Scalars['Int']['input']>;
|
|
4806
4881
|
ttl24h?: InputMaybe<Scalars['Int']['input']>;
|
|
4807
4882
|
};
|
|
4883
|
+
export declare enum EchoTurnCompletionStatus {
|
|
4884
|
+
Cancelled = "CANCELLED",
|
|
4885
|
+
Completed = "COMPLETED",
|
|
4886
|
+
Error = "ERROR"
|
|
4887
|
+
}
|
|
4808
4888
|
export type EchoTurnMutation = {
|
|
4809
4889
|
__typename?: 'EchoTurnMutation';
|
|
4810
|
-
/**
|
|
4890
|
+
/**
|
|
4891
|
+
* Mark a turn as completed and create a billing ledger entry.
|
|
4892
|
+
*
|
|
4893
|
+
* completionStatus defaults to COMPLETED for backward compatibility with
|
|
4894
|
+
* clients that do not yet send a status. error may be set when
|
|
4895
|
+
* completionStatus is ERROR to record the failure reason.
|
|
4896
|
+
*/
|
|
4811
4897
|
completeTurn: EchoTurn;
|
|
4812
4898
|
};
|
|
4813
4899
|
export type EchoTurnMutationCompleteTurnArgs = {
|
|
4900
|
+
completionStatus?: InputMaybe<EchoTurnCompletionStatus>;
|
|
4901
|
+
error?: InputMaybe<Scalars['String']['input']>;
|
|
4814
4902
|
id: Scalars['ID']['input'];
|
|
4815
4903
|
usage: EchoTurnUsageInput;
|
|
4816
4904
|
};
|
|
@@ -5151,6 +5239,30 @@ export type ExperimentationQuery = {
|
|
|
5151
5239
|
/** Get user experimentation config */
|
|
5152
5240
|
userConfig: Scalars['JSONObject']['output'];
|
|
5153
5241
|
};
|
|
5242
|
+
export type ExpoGoBuildQuery = {
|
|
5243
|
+
__typename?: 'ExpoGoBuildQuery';
|
|
5244
|
+
repackConfiguration: ExpoGoProjectConfiguration;
|
|
5245
|
+
};
|
|
5246
|
+
export type ExpoGoBuildQueryRepackConfigurationArgs = {
|
|
5247
|
+
input: ExpoGoRepackInput;
|
|
5248
|
+
};
|
|
5249
|
+
export type ExpoGoProjectConfiguration = {
|
|
5250
|
+
__typename?: 'ExpoGoProjectConfiguration';
|
|
5251
|
+
files: Array<ExpoGoProjectFile>;
|
|
5252
|
+
sdkVersion: Scalars['String']['output'];
|
|
5253
|
+
};
|
|
5254
|
+
export type ExpoGoProjectFile = {
|
|
5255
|
+
__typename?: 'ExpoGoProjectFile';
|
|
5256
|
+
fileContents: Scalars['String']['output'];
|
|
5257
|
+
fileName: Scalars['String']['output'];
|
|
5258
|
+
};
|
|
5259
|
+
export type ExpoGoRepackInput = {
|
|
5260
|
+
appId: Scalars['ID']['input'];
|
|
5261
|
+
appName?: InputMaybe<Scalars['String']['input']>;
|
|
5262
|
+
ascAppId: Scalars['String']['input'];
|
|
5263
|
+
bundleId: Scalars['String']['input'];
|
|
5264
|
+
sdkVersion?: InputMaybe<Scalars['String']['input']>;
|
|
5265
|
+
};
|
|
5154
5266
|
export type FcmSnippet = FcmSnippetLegacy | FcmSnippetV1;
|
|
5155
5267
|
export type FcmSnippetLegacy = {
|
|
5156
5268
|
__typename?: 'FcmSnippetLegacy';
|
|
@@ -5479,6 +5591,7 @@ export type GitHubRepositoryMetadata = {
|
|
|
5479
5591
|
githubRepoName: Scalars['String']['output'];
|
|
5480
5592
|
githubRepoOwnerName: Scalars['String']['output'];
|
|
5481
5593
|
githubRepoUrl: Scalars['String']['output'];
|
|
5594
|
+
id: Scalars['ID']['output'];
|
|
5482
5595
|
lastPushed: Scalars['DateTime']['output'];
|
|
5483
5596
|
lastUpdated: Scalars['DateTime']['output'];
|
|
5484
5597
|
private: Scalars['Boolean']['output'];
|
|
@@ -6669,7 +6782,7 @@ export type RootMutation = {
|
|
|
6669
6782
|
deployments: DeploymentsMutation;
|
|
6670
6783
|
/** Mutations that assign or modify DevDomainNames for apps */
|
|
6671
6784
|
devDomainName: AppDevDomainNameMutation;
|
|
6672
|
-
/** Mutations that create and stop device run sessions */
|
|
6785
|
+
/** Mutations that create, start, and stop device run sessions */
|
|
6673
6786
|
deviceRunSession: DeviceRunSessionMutation;
|
|
6674
6787
|
/** Mutations for Discord users */
|
|
6675
6788
|
discordUser: DiscordUserMutation;
|
|
@@ -6754,6 +6867,7 @@ export type RootMutation = {
|
|
|
6754
6867
|
/** Mutations that modify a websiteNotification */
|
|
6755
6868
|
websiteNotifications: WebsiteNotificationMutation;
|
|
6756
6869
|
workflowDeviceTestCaseResult: WorkflowDeviceTestCaseResultMutation;
|
|
6870
|
+
workflowJobAppleDeviceRegistrationRequest: WorkflowJobAppleDeviceRegistrationRequestMutation;
|
|
6757
6871
|
workflowJobApproval: WorkflowJobApprovalMutation;
|
|
6758
6872
|
workflowRevision: WorkflowRevisionMutation;
|
|
6759
6873
|
workflowRun: WorkflowRunMutation;
|
|
@@ -6837,6 +6951,7 @@ export type RootQuery = {
|
|
|
6837
6951
|
echoVersion: EchoVersionQuery;
|
|
6838
6952
|
/** Top-level query object for querying Experimentation configuration. */
|
|
6839
6953
|
experimentation: ExperimentationQuery;
|
|
6954
|
+
expoGoBuild: ExpoGoBuildQuery;
|
|
6840
6955
|
/** Top-level query object for querying GitHub App information and resources it has access to. */
|
|
6841
6956
|
githubApp: GitHubAppQuery;
|
|
6842
6957
|
/** Top-level query object for querying Google Service Account Keys. */
|
|
@@ -7190,6 +7305,11 @@ export type SentryProjectMutationCreateSentryProjectArgs = {
|
|
|
7190
7305
|
export type SentryProjectMutationDeleteSentryProjectArgs = {
|
|
7191
7306
|
sentryProjectId: Scalars['ID']['input'];
|
|
7192
7307
|
};
|
|
7308
|
+
export type ServeSimRunSessionRemoteConfig = {
|
|
7309
|
+
__typename?: 'ServeSimRunSessionRemoteConfig';
|
|
7310
|
+
previewUrl: Scalars['String']['output'];
|
|
7311
|
+
streamUrl: Scalars['String']['output'];
|
|
7312
|
+
};
|
|
7193
7313
|
export type SetupConvexProjectInput = {
|
|
7194
7314
|
appId: Scalars['ID']['input'];
|
|
7195
7315
|
convexTeamConnectionId: Scalars['ID']['input'];
|
|
@@ -9292,6 +9412,21 @@ export type WorkflowJob = {
|
|
|
9292
9412
|
updatedAt: Scalars['DateTime']['output'];
|
|
9293
9413
|
workflowRun: WorkflowRun;
|
|
9294
9414
|
};
|
|
9415
|
+
export type WorkflowJobAppleDeviceRegistrationRequestMutation = {
|
|
9416
|
+
__typename?: 'WorkflowJobAppleDeviceRegistrationRequestMutation';
|
|
9417
|
+
/** Mark the workflow apple-device-registration-request job successful after reviewing the registered device. */
|
|
9418
|
+
approveAppleDeviceRegistration: WorkflowJob;
|
|
9419
|
+
/** Fail the workflow apple-device-registration-request job after reviewing the registered device. */
|
|
9420
|
+
rejectAppleDeviceRegistration: WorkflowJob;
|
|
9421
|
+
};
|
|
9422
|
+
export type WorkflowJobAppleDeviceRegistrationRequestMutationApproveAppleDeviceRegistrationArgs = {
|
|
9423
|
+
appleDeviceId: Scalars['ID']['input'];
|
|
9424
|
+
workflowJobId: Scalars['ID']['input'];
|
|
9425
|
+
};
|
|
9426
|
+
export type WorkflowJobAppleDeviceRegistrationRequestMutationRejectAppleDeviceRegistrationArgs = {
|
|
9427
|
+
appleDeviceId: Scalars['ID']['input'];
|
|
9428
|
+
workflowJobId: Scalars['ID']['input'];
|
|
9429
|
+
};
|
|
9295
9430
|
export type WorkflowJobApproval = {
|
|
9296
9431
|
__typename?: 'WorkflowJobApproval';
|
|
9297
9432
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -9491,6 +9626,7 @@ export type WorkflowRunMutationCancelWorkflowRunArgs = {
|
|
|
9491
9626
|
export type WorkflowRunMutationCreateExpoGoRepackWorkflowRunArgs = {
|
|
9492
9627
|
appId: Scalars['ID']['input'];
|
|
9493
9628
|
projectSource: WorkflowProjectSourceInput;
|
|
9629
|
+
sdkVersion?: InputMaybe<Scalars['String']['input']>;
|
|
9494
9630
|
};
|
|
9495
9631
|
export type WorkflowRunMutationCreateWorkflowRunArgs = {
|
|
9496
9632
|
appId: Scalars['ID']['input'];
|
|
@@ -9987,6 +10123,7 @@ export type CreateAndroidAppCredentialsMutation = {
|
|
|
9987
10123
|
id: string;
|
|
9988
10124
|
metadata: {
|
|
9989
10125
|
__typename?: 'GitHubRepositoryMetadata';
|
|
10126
|
+
id: string;
|
|
9990
10127
|
githubRepoOwnerName: string;
|
|
9991
10128
|
githubRepoName: string;
|
|
9992
10129
|
};
|
|
@@ -10110,6 +10247,7 @@ export type SetFcmMutation = {
|
|
|
10110
10247
|
id: string;
|
|
10111
10248
|
metadata: {
|
|
10112
10249
|
__typename?: 'GitHubRepositoryMetadata';
|
|
10250
|
+
id: string;
|
|
10113
10251
|
githubRepoOwnerName: string;
|
|
10114
10252
|
githubRepoName: string;
|
|
10115
10253
|
};
|
|
@@ -10233,6 +10371,7 @@ export type SetGoogleServiceAccountKeyForSubmissionsMutation = {
|
|
|
10233
10371
|
id: string;
|
|
10234
10372
|
metadata: {
|
|
10235
10373
|
__typename?: 'GitHubRepositoryMetadata';
|
|
10374
|
+
id: string;
|
|
10236
10375
|
githubRepoOwnerName: string;
|
|
10237
10376
|
githubRepoName: string;
|
|
10238
10377
|
};
|
|
@@ -10356,6 +10495,7 @@ export type SetGoogleServiceAccountKeyForFcmV1Mutation = {
|
|
|
10356
10495
|
id: string;
|
|
10357
10496
|
metadata: {
|
|
10358
10497
|
__typename?: 'GitHubRepositoryMetadata';
|
|
10498
|
+
id: string;
|
|
10359
10499
|
githubRepoOwnerName: string;
|
|
10360
10500
|
githubRepoName: string;
|
|
10361
10501
|
};
|
|
@@ -10595,6 +10735,7 @@ export type CommonAndroidAppCredentialsWithBuildCredentialsByApplicationIdentifi
|
|
|
10595
10735
|
id: string;
|
|
10596
10736
|
metadata: {
|
|
10597
10737
|
__typename?: 'GitHubRepositoryMetadata';
|
|
10738
|
+
id: string;
|
|
10598
10739
|
githubRepoOwnerName: string;
|
|
10599
10740
|
githubRepoName: string;
|
|
10600
10741
|
};
|
|
@@ -10896,6 +11037,7 @@ export type CreateAppleDistributionCertificateMutation = {
|
|
|
10896
11037
|
id: string;
|
|
10897
11038
|
metadata: {
|
|
10898
11039
|
__typename?: 'GitHubRepositoryMetadata';
|
|
11040
|
+
id: string;
|
|
10899
11041
|
githubRepoOwnerName: string;
|
|
10900
11042
|
githubRepoName: string;
|
|
10901
11043
|
};
|
|
@@ -11075,6 +11217,7 @@ export type CreateApplePushKeyMutation = {
|
|
|
11075
11217
|
id: string;
|
|
11076
11218
|
metadata: {
|
|
11077
11219
|
__typename?: 'GitHubRepositoryMetadata';
|
|
11220
|
+
id: string;
|
|
11078
11221
|
githubRepoOwnerName: string;
|
|
11079
11222
|
githubRepoName: string;
|
|
11080
11223
|
};
|
|
@@ -11210,6 +11353,7 @@ export type CreateIosAppBuildCredentialsMutation = {
|
|
|
11210
11353
|
id: string;
|
|
11211
11354
|
metadata: {
|
|
11212
11355
|
__typename?: 'GitHubRepositoryMetadata';
|
|
11356
|
+
id: string;
|
|
11213
11357
|
githubRepoOwnerName: string;
|
|
11214
11358
|
githubRepoName: string;
|
|
11215
11359
|
};
|
|
@@ -11331,6 +11475,7 @@ export type SetDistributionCertificateMutation = {
|
|
|
11331
11475
|
id: string;
|
|
11332
11476
|
metadata: {
|
|
11333
11477
|
__typename?: 'GitHubRepositoryMetadata';
|
|
11478
|
+
id: string;
|
|
11334
11479
|
githubRepoOwnerName: string;
|
|
11335
11480
|
githubRepoName: string;
|
|
11336
11481
|
};
|
|
@@ -11452,6 +11597,7 @@ export type SetProvisioningProfileMutation = {
|
|
|
11452
11597
|
id: string;
|
|
11453
11598
|
metadata: {
|
|
11454
11599
|
__typename?: 'GitHubRepositoryMetadata';
|
|
11600
|
+
id: string;
|
|
11455
11601
|
githubRepoOwnerName: string;
|
|
11456
11602
|
githubRepoName: string;
|
|
11457
11603
|
};
|
|
@@ -11577,6 +11723,7 @@ export type CreateIosAppCredentialsMutation = {
|
|
|
11577
11723
|
id: string;
|
|
11578
11724
|
metadata: {
|
|
11579
11725
|
__typename?: 'GitHubRepositoryMetadata';
|
|
11726
|
+
id: string;
|
|
11580
11727
|
githubRepoOwnerName: string;
|
|
11581
11728
|
githubRepoName: string;
|
|
11582
11729
|
};
|
|
@@ -11662,6 +11809,7 @@ export type CreateIosAppCredentialsMutation = {
|
|
|
11662
11809
|
id: string;
|
|
11663
11810
|
metadata: {
|
|
11664
11811
|
__typename?: 'GitHubRepositoryMetadata';
|
|
11812
|
+
id: string;
|
|
11665
11813
|
githubRepoOwnerName: string;
|
|
11666
11814
|
githubRepoName: string;
|
|
11667
11815
|
};
|
|
@@ -11734,6 +11882,7 @@ export type CreateIosAppCredentialsMutation = {
|
|
|
11734
11882
|
id: string;
|
|
11735
11883
|
metadata: {
|
|
11736
11884
|
__typename?: 'GitHubRepositoryMetadata';
|
|
11885
|
+
id: string;
|
|
11737
11886
|
githubRepoOwnerName: string;
|
|
11738
11887
|
githubRepoName: string;
|
|
11739
11888
|
};
|
|
@@ -11844,6 +11993,7 @@ export type SetPushKeyMutation = {
|
|
|
11844
11993
|
id: string;
|
|
11845
11994
|
metadata: {
|
|
11846
11995
|
__typename?: 'GitHubRepositoryMetadata';
|
|
11996
|
+
id: string;
|
|
11847
11997
|
githubRepoOwnerName: string;
|
|
11848
11998
|
githubRepoName: string;
|
|
11849
11999
|
};
|
|
@@ -11929,6 +12079,7 @@ export type SetPushKeyMutation = {
|
|
|
11929
12079
|
id: string;
|
|
11930
12080
|
metadata: {
|
|
11931
12081
|
__typename?: 'GitHubRepositoryMetadata';
|
|
12082
|
+
id: string;
|
|
11932
12083
|
githubRepoOwnerName: string;
|
|
11933
12084
|
githubRepoName: string;
|
|
11934
12085
|
};
|
|
@@ -12001,6 +12152,7 @@ export type SetPushKeyMutation = {
|
|
|
12001
12152
|
id: string;
|
|
12002
12153
|
metadata: {
|
|
12003
12154
|
__typename?: 'GitHubRepositoryMetadata';
|
|
12155
|
+
id: string;
|
|
12004
12156
|
githubRepoOwnerName: string;
|
|
12005
12157
|
githubRepoName: string;
|
|
12006
12158
|
};
|
|
@@ -12111,6 +12263,7 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
12111
12263
|
id: string;
|
|
12112
12264
|
metadata: {
|
|
12113
12265
|
__typename?: 'GitHubRepositoryMetadata';
|
|
12266
|
+
id: string;
|
|
12114
12267
|
githubRepoOwnerName: string;
|
|
12115
12268
|
githubRepoName: string;
|
|
12116
12269
|
};
|
|
@@ -12196,6 +12349,7 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
12196
12349
|
id: string;
|
|
12197
12350
|
metadata: {
|
|
12198
12351
|
__typename?: 'GitHubRepositoryMetadata';
|
|
12352
|
+
id: string;
|
|
12199
12353
|
githubRepoOwnerName: string;
|
|
12200
12354
|
githubRepoName: string;
|
|
12201
12355
|
};
|
|
@@ -12268,6 +12422,7 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
12268
12422
|
id: string;
|
|
12269
12423
|
metadata: {
|
|
12270
12424
|
__typename?: 'GitHubRepositoryMetadata';
|
|
12425
|
+
id: string;
|
|
12271
12426
|
githubRepoOwnerName: string;
|
|
12272
12427
|
githubRepoName: string;
|
|
12273
12428
|
};
|
|
@@ -12526,6 +12681,7 @@ export type AppleDistributionCertificateByAppQuery = {
|
|
|
12526
12681
|
id: string;
|
|
12527
12682
|
metadata: {
|
|
12528
12683
|
__typename?: 'GitHubRepositoryMetadata';
|
|
12684
|
+
id: string;
|
|
12529
12685
|
githubRepoOwnerName: string;
|
|
12530
12686
|
githubRepoName: string;
|
|
12531
12687
|
};
|
|
@@ -12632,6 +12788,7 @@ export type AppleDistributionCertificatesPaginatedByAccountQuery = {
|
|
|
12632
12788
|
id: string;
|
|
12633
12789
|
metadata: {
|
|
12634
12790
|
__typename?: 'GitHubRepositoryMetadata';
|
|
12791
|
+
id: string;
|
|
12635
12792
|
githubRepoOwnerName: string;
|
|
12636
12793
|
githubRepoName: string;
|
|
12637
12794
|
};
|
|
@@ -12789,6 +12946,7 @@ export type ApplePushKeysPaginatedByAccountQuery = {
|
|
|
12789
12946
|
id: string;
|
|
12790
12947
|
metadata: {
|
|
12791
12948
|
__typename?: 'GitHubRepositoryMetadata';
|
|
12949
|
+
id: string;
|
|
12792
12950
|
githubRepoOwnerName: string;
|
|
12793
12951
|
githubRepoName: string;
|
|
12794
12952
|
};
|
|
@@ -12933,6 +13091,7 @@ export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuery = {
|
|
|
12933
13091
|
id: string;
|
|
12934
13092
|
metadata: {
|
|
12935
13093
|
__typename?: 'GitHubRepositoryMetadata';
|
|
13094
|
+
id: string;
|
|
12936
13095
|
githubRepoOwnerName: string;
|
|
12937
13096
|
githubRepoName: string;
|
|
12938
13097
|
};
|
|
@@ -13063,6 +13222,7 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
|
13063
13222
|
id: string;
|
|
13064
13223
|
metadata: {
|
|
13065
13224
|
__typename?: 'GitHubRepositoryMetadata';
|
|
13225
|
+
id: string;
|
|
13066
13226
|
githubRepoOwnerName: string;
|
|
13067
13227
|
githubRepoName: string;
|
|
13068
13228
|
};
|
|
@@ -13148,6 +13308,7 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
|
13148
13308
|
id: string;
|
|
13149
13309
|
metadata: {
|
|
13150
13310
|
__typename?: 'GitHubRepositoryMetadata';
|
|
13311
|
+
id: string;
|
|
13151
13312
|
githubRepoOwnerName: string;
|
|
13152
13313
|
githubRepoName: string;
|
|
13153
13314
|
};
|
|
@@ -13220,6 +13381,7 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
|
13220
13381
|
id: string;
|
|
13221
13382
|
metadata: {
|
|
13222
13383
|
__typename?: 'GitHubRepositoryMetadata';
|
|
13384
|
+
id: string;
|
|
13223
13385
|
githubRepoOwnerName: string;
|
|
13224
13386
|
githubRepoName: string;
|
|
13225
13387
|
};
|
|
@@ -13334,6 +13496,7 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
|
|
|
13334
13496
|
id: string;
|
|
13335
13497
|
metadata: {
|
|
13336
13498
|
__typename?: 'GitHubRepositoryMetadata';
|
|
13499
|
+
id: string;
|
|
13337
13500
|
githubRepoOwnerName: string;
|
|
13338
13501
|
githubRepoName: string;
|
|
13339
13502
|
};
|
|
@@ -13419,6 +13582,7 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
|
|
|
13419
13582
|
id: string;
|
|
13420
13583
|
metadata: {
|
|
13421
13584
|
__typename?: 'GitHubRepositoryMetadata';
|
|
13585
|
+
id: string;
|
|
13422
13586
|
githubRepoOwnerName: string;
|
|
13423
13587
|
githubRepoName: string;
|
|
13424
13588
|
};
|
|
@@ -13491,6 +13655,7 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
|
|
|
13491
13655
|
id: string;
|
|
13492
13656
|
metadata: {
|
|
13493
13657
|
__typename?: 'GitHubRepositoryMetadata';
|
|
13658
|
+
id: string;
|
|
13494
13659
|
githubRepoOwnerName: string;
|
|
13495
13660
|
githubRepoName: string;
|
|
13496
13661
|
};
|
|
@@ -15171,6 +15336,7 @@ export type AppByIdQuery = {
|
|
|
15171
15336
|
id: string;
|
|
15172
15337
|
metadata: {
|
|
15173
15338
|
__typename?: 'GitHubRepositoryMetadata';
|
|
15339
|
+
id: string;
|
|
15174
15340
|
githubRepoOwnerName: string;
|
|
15175
15341
|
githubRepoName: string;
|
|
15176
15342
|
};
|
|
@@ -15227,6 +15393,7 @@ export type AppByFullNameQuery = {
|
|
|
15227
15393
|
id: string;
|
|
15228
15394
|
metadata: {
|
|
15229
15395
|
__typename?: 'GitHubRepositoryMetadata';
|
|
15396
|
+
id: string;
|
|
15230
15397
|
githubRepoOwnerName: string;
|
|
15231
15398
|
githubRepoName: string;
|
|
15232
15399
|
};
|
|
@@ -16555,11 +16722,30 @@ export type DeviceRunSessionByIdQuery = {
|
|
|
16555
16722
|
__typename?: 'DeviceRunSession';
|
|
16556
16723
|
id: string;
|
|
16557
16724
|
status: DeviceRunSessionStatus;
|
|
16725
|
+
type: DeviceRunSessionType;
|
|
16726
|
+
app: {
|
|
16727
|
+
__typename?: 'App';
|
|
16728
|
+
id: string;
|
|
16729
|
+
slug: string;
|
|
16730
|
+
ownerAccount: {
|
|
16731
|
+
__typename?: 'Account';
|
|
16732
|
+
id: string;
|
|
16733
|
+
name: string;
|
|
16734
|
+
};
|
|
16735
|
+
};
|
|
16736
|
+
remoteConfig?: {
|
|
16737
|
+
__typename: 'AgentDeviceRunSessionRemoteConfig';
|
|
16738
|
+
url: string;
|
|
16739
|
+
token: string;
|
|
16740
|
+
} | {
|
|
16741
|
+
__typename: 'ServeSimRunSessionRemoteConfig';
|
|
16742
|
+
previewUrl: string;
|
|
16743
|
+
streamUrl: string;
|
|
16744
|
+
} | null;
|
|
16558
16745
|
turtleJobRun?: {
|
|
16559
16746
|
__typename?: 'JobRun';
|
|
16560
16747
|
id: string;
|
|
16561
16748
|
status: JobRunStatus;
|
|
16562
|
-
logFileUrls: Array<string>;
|
|
16563
16749
|
} | null;
|
|
16564
16750
|
};
|
|
16565
16751
|
};
|
|
@@ -18567,6 +18753,7 @@ export type AppFragment = {
|
|
|
18567
18753
|
id: string;
|
|
18568
18754
|
metadata: {
|
|
18569
18755
|
__typename?: 'GitHubRepositoryMetadata';
|
|
18756
|
+
id: string;
|
|
18570
18757
|
githubRepoOwnerName: string;
|
|
18571
18758
|
githubRepoName: string;
|
|
18572
18759
|
};
|
|
@@ -19628,6 +19815,7 @@ export type CommonAndroidAppCredentialsFragment = {
|
|
|
19628
19815
|
id: string;
|
|
19629
19816
|
metadata: {
|
|
19630
19817
|
__typename?: 'GitHubRepositoryMetadata';
|
|
19818
|
+
id: string;
|
|
19631
19819
|
githubRepoOwnerName: string;
|
|
19632
19820
|
githubRepoName: string;
|
|
19633
19821
|
};
|
|
@@ -19825,6 +20013,7 @@ export type AppleDistributionCertificateFragment = {
|
|
|
19825
20013
|
id: string;
|
|
19826
20014
|
metadata: {
|
|
19827
20015
|
__typename?: 'GitHubRepositoryMetadata';
|
|
20016
|
+
id: string;
|
|
19828
20017
|
githubRepoOwnerName: string;
|
|
19829
20018
|
githubRepoName: string;
|
|
19830
20019
|
};
|
|
@@ -19928,6 +20117,7 @@ export type ApplePushKeyFragment = {
|
|
|
19928
20117
|
id: string;
|
|
19929
20118
|
metadata: {
|
|
19930
20119
|
__typename?: 'GitHubRepositoryMetadata';
|
|
20120
|
+
id: string;
|
|
19931
20121
|
githubRepoOwnerName: string;
|
|
19932
20122
|
githubRepoName: string;
|
|
19933
20123
|
};
|
|
@@ -20024,6 +20214,7 @@ export type IosAppBuildCredentialsFragment = {
|
|
|
20024
20214
|
id: string;
|
|
20025
20215
|
metadata: {
|
|
20026
20216
|
__typename?: 'GitHubRepositoryMetadata';
|
|
20217
|
+
id: string;
|
|
20027
20218
|
githubRepoOwnerName: string;
|
|
20028
20219
|
githubRepoName: string;
|
|
20029
20220
|
};
|
|
@@ -20112,6 +20303,7 @@ export type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
20112
20303
|
id: string;
|
|
20113
20304
|
metadata: {
|
|
20114
20305
|
__typename?: 'GitHubRepositoryMetadata';
|
|
20306
|
+
id: string;
|
|
20115
20307
|
githubRepoOwnerName: string;
|
|
20116
20308
|
githubRepoName: string;
|
|
20117
20309
|
};
|
|
@@ -20184,6 +20376,7 @@ export type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
20184
20376
|
id: string;
|
|
20185
20377
|
metadata: {
|
|
20186
20378
|
__typename?: 'GitHubRepositoryMetadata';
|
|
20379
|
+
id: string;
|
|
20187
20380
|
githubRepoOwnerName: string;
|
|
20188
20381
|
githubRepoName: string;
|
|
20189
20382
|
};
|
|
@@ -20284,6 +20477,7 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
20284
20477
|
id: string;
|
|
20285
20478
|
metadata: {
|
|
20286
20479
|
__typename?: 'GitHubRepositoryMetadata';
|
|
20480
|
+
id: string;
|
|
20287
20481
|
githubRepoOwnerName: string;
|
|
20288
20482
|
githubRepoName: string;
|
|
20289
20483
|
};
|
|
@@ -20369,6 +20563,7 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
20369
20563
|
id: string;
|
|
20370
20564
|
metadata: {
|
|
20371
20565
|
__typename?: 'GitHubRepositoryMetadata';
|
|
20566
|
+
id: string;
|
|
20372
20567
|
githubRepoOwnerName: string;
|
|
20373
20568
|
githubRepoName: string;
|
|
20374
20569
|
};
|
|
@@ -20441,6 +20636,7 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
20441
20636
|
id: string;
|
|
20442
20637
|
metadata: {
|
|
20443
20638
|
__typename?: 'GitHubRepositoryMetadata';
|
|
20639
|
+
id: string;
|
|
20444
20640
|
githubRepoOwnerName: string;
|
|
20445
20641
|
githubRepoName: string;
|
|
20446
20642
|
};
|