eas-cli 3.2.1 → 3.3.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 +54 -54
- package/build/build/runBuildAndSubmit.d.ts +2 -2
- package/build/build/runBuildAndSubmit.js +40 -16
- package/build/build/types.d.ts +0 -9
- package/build/build/types.js +1 -11
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +2 -0
- package/build/commands/build/index.d.ts +2 -2
- package/build/commands/build/index.js +6 -10
- package/build/commands/project/init.js +1 -1
- package/build/commands/update/index.js +1 -1
- package/build/commands/update/view.js +2 -2
- package/build/graphql/generated.d.ts +439 -4
- package/build/graphql/generated.js +25 -3
- package/build/graphql/mutations/PublishMutation.js +1 -4
- package/build/graphql/types/Update.js +1 -0
- package/build/project/projectUtils.js +2 -0
- package/build/update/utils.d.ts +4 -0
- package/build/update/utils.js +15 -1
- package/build/user/User.js +2 -0
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
|
@@ -318,6 +318,12 @@ export declare type AccountMutationSetPushSecurityEnabledArgs = {
|
|
|
318
318
|
accountID: Scalars['ID'];
|
|
319
319
|
pushSecurityEnabled: Scalars['Boolean'];
|
|
320
320
|
};
|
|
321
|
+
export declare type AccountNotificationSubscriptionInput = {
|
|
322
|
+
accountId: Scalars['ID'];
|
|
323
|
+
event: NotificationEvent;
|
|
324
|
+
type: NotificationType;
|
|
325
|
+
userId: Scalars['ID'];
|
|
326
|
+
};
|
|
321
327
|
export declare type AccountQuery = {
|
|
322
328
|
__typename?: 'AccountQuery';
|
|
323
329
|
/** Query an Account by ID */
|
|
@@ -341,7 +347,7 @@ export declare type AccountSsoConfiguration = {
|
|
|
341
347
|
clientSecret: Scalars['String'];
|
|
342
348
|
createdAt: Scalars['DateTime'];
|
|
343
349
|
id: Scalars['ID'];
|
|
344
|
-
issuer
|
|
350
|
+
issuer: Scalars['String'];
|
|
345
351
|
jwksEndpoint?: Maybe<Scalars['String']>;
|
|
346
352
|
revokeEndpoint?: Maybe<Scalars['String']>;
|
|
347
353
|
tokenEndpoint?: Maybe<Scalars['String']>;
|
|
@@ -354,7 +360,7 @@ export declare type AccountSsoConfigurationData = {
|
|
|
354
360
|
authProviderIdentifier: Scalars['String'];
|
|
355
361
|
clientIdentifier: Scalars['String'];
|
|
356
362
|
clientSecret: Scalars['String'];
|
|
357
|
-
issuer
|
|
363
|
+
issuer: Scalars['String'];
|
|
358
364
|
jwksEndpoint?: InputMaybe<Scalars['String']>;
|
|
359
365
|
revokeEndpoint?: InputMaybe<Scalars['String']>;
|
|
360
366
|
tokenEndpoint?: InputMaybe<Scalars['String']>;
|
|
@@ -388,7 +394,7 @@ export declare type AccountSsoConfigurationPublicData = {
|
|
|
388
394
|
authProviderIdentifier: Scalars['String'];
|
|
389
395
|
clientIdentifier: Scalars['String'];
|
|
390
396
|
id: Scalars['ID'];
|
|
391
|
-
issuer
|
|
397
|
+
issuer: Scalars['String'];
|
|
392
398
|
jwksEndpoint?: Maybe<Scalars['String']>;
|
|
393
399
|
revokeEndpoint?: Maybe<Scalars['String']>;
|
|
394
400
|
tokenEndpoint?: Maybe<Scalars['String']>;
|
|
@@ -786,6 +792,7 @@ export declare type App = Project & {
|
|
|
786
792
|
deploymentNew?: Maybe<DeploymentNew>;
|
|
787
793
|
/** Deployments associated with this app */
|
|
788
794
|
deployments: Array<Deployment>;
|
|
795
|
+
deploymentsNew: DeploymentsConnection;
|
|
789
796
|
description: Scalars['String'];
|
|
790
797
|
/** Environment secrets for an app */
|
|
791
798
|
environmentSecrets: Array<EnvironmentSecret>;
|
|
@@ -911,6 +918,13 @@ export declare type AppDeploymentsArgs = {
|
|
|
911
918
|
options?: InputMaybe<DeploymentOptions>;
|
|
912
919
|
};
|
|
913
920
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
921
|
+
export declare type AppDeploymentsNewArgs = {
|
|
922
|
+
after?: InputMaybe<Scalars['String']>;
|
|
923
|
+
before?: InputMaybe<Scalars['String']>;
|
|
924
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
925
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
926
|
+
};
|
|
927
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
914
928
|
export declare type AppEnvironmentSecretsArgs = {
|
|
915
929
|
filterNames?: InputMaybe<Array<Scalars['String']>>;
|
|
916
930
|
};
|
|
@@ -1019,6 +1033,12 @@ export declare type AppMutationSetPushSecurityEnabledArgs = {
|
|
|
1019
1033
|
appId: Scalars['ID'];
|
|
1020
1034
|
pushSecurityEnabled: Scalars['Boolean'];
|
|
1021
1035
|
};
|
|
1036
|
+
export declare type AppNotificationSubscriptionInput = {
|
|
1037
|
+
appId: Scalars['ID'];
|
|
1038
|
+
event: NotificationEvent;
|
|
1039
|
+
type: NotificationType;
|
|
1040
|
+
userId: Scalars['ID'];
|
|
1041
|
+
};
|
|
1022
1042
|
export declare enum AppPlatform {
|
|
1023
1043
|
Android = "ANDROID",
|
|
1024
1044
|
Ios = "IOS"
|
|
@@ -1457,6 +1477,7 @@ export declare type BillingPeriod = {
|
|
|
1457
1477
|
__typename?: 'BillingPeriod';
|
|
1458
1478
|
anchor: Scalars['DateTime'];
|
|
1459
1479
|
end: Scalars['DateTime'];
|
|
1480
|
+
id: Scalars['ID'];
|
|
1460
1481
|
start: Scalars['DateTime'];
|
|
1461
1482
|
};
|
|
1462
1483
|
/** Represents an EAS Build */
|
|
@@ -1469,6 +1490,7 @@ export declare type Build = ActivityTimelineProjectActivity & BuildOrBuildJob &
|
|
|
1469
1490
|
appBuildVersion?: Maybe<Scalars['String']>;
|
|
1470
1491
|
appVersion?: Maybe<Scalars['String']>;
|
|
1471
1492
|
artifacts?: Maybe<BuildArtifacts>;
|
|
1493
|
+
buildMode?: Maybe<BuildMode>;
|
|
1472
1494
|
buildProfile?: Maybe<Scalars['String']>;
|
|
1473
1495
|
canRetry: Scalars['Boolean'];
|
|
1474
1496
|
cancelingActor?: Maybe<Actor>;
|
|
@@ -1635,6 +1657,7 @@ export declare type BuildMetadataInput = {
|
|
|
1635
1657
|
appIdentifier?: InputMaybe<Scalars['String']>;
|
|
1636
1658
|
appName?: InputMaybe<Scalars['String']>;
|
|
1637
1659
|
appVersion?: InputMaybe<Scalars['String']>;
|
|
1660
|
+
buildMode?: InputMaybe<BuildMode>;
|
|
1638
1661
|
buildProfile?: InputMaybe<Scalars['String']>;
|
|
1639
1662
|
channel?: InputMaybe<Scalars['String']>;
|
|
1640
1663
|
cliVersion?: InputMaybe<Scalars['String']>;
|
|
@@ -1795,10 +1818,14 @@ export declare type BuildResignInput = {
|
|
|
1795
1818
|
export declare enum BuildResourceClass {
|
|
1796
1819
|
AndroidDefault = "ANDROID_DEFAULT",
|
|
1797
1820
|
AndroidLarge = "ANDROID_LARGE",
|
|
1821
|
+
AndroidMedium = "ANDROID_MEDIUM",
|
|
1798
1822
|
IosDefault = "IOS_DEFAULT",
|
|
1823
|
+
IosIntelLarge = "IOS_INTEL_LARGE",
|
|
1824
|
+
IosIntelMedium = "IOS_INTEL_MEDIUM",
|
|
1799
1825
|
IosLarge = "IOS_LARGE",
|
|
1800
|
-
/** @experimental This resource class is not yet ready to be used in production. For testing purposes only. */
|
|
1801
1826
|
IosM1Large = "IOS_M1_LARGE",
|
|
1827
|
+
IosM1Medium = "IOS_M1_MEDIUM",
|
|
1828
|
+
IosMedium = "IOS_MEDIUM",
|
|
1802
1829
|
Legacy = "LEGACY"
|
|
1803
1830
|
}
|
|
1804
1831
|
export declare enum BuildStatus {
|
|
@@ -2020,11 +2047,17 @@ export declare type DeploymentBuildEdge = {
|
|
|
2020
2047
|
cursor: Scalars['String'];
|
|
2021
2048
|
node: Build;
|
|
2022
2049
|
};
|
|
2050
|
+
/** Represents the connection over the builds edge of a Deployment */
|
|
2023
2051
|
export declare type DeploymentBuildsConnection = {
|
|
2024
2052
|
__typename?: 'DeploymentBuildsConnection';
|
|
2025
2053
|
edges: Array<DeploymentBuildEdge>;
|
|
2026
2054
|
pageInfo: PageInfo;
|
|
2027
2055
|
};
|
|
2056
|
+
export declare type DeploymentEdge = {
|
|
2057
|
+
__typename?: 'DeploymentEdge';
|
|
2058
|
+
cursor: Scalars['String'];
|
|
2059
|
+
node: DeploymentNew;
|
|
2060
|
+
};
|
|
2028
2061
|
/** Represents a Deployment - a set of Builds with the same Runtime Version and Channel */
|
|
2029
2062
|
export declare type DeploymentNew = {
|
|
2030
2063
|
__typename?: 'DeploymentNew';
|
|
@@ -2044,6 +2077,12 @@ export declare type DeploymentOptions = {
|
|
|
2044
2077
|
/** Max number of associated builds to return */
|
|
2045
2078
|
buildListMaxSize?: InputMaybe<Scalars['Int']>;
|
|
2046
2079
|
};
|
|
2080
|
+
/** Represents the connection over the deploymentsNew edge of an App */
|
|
2081
|
+
export declare type DeploymentsConnection = {
|
|
2082
|
+
__typename?: 'DeploymentsConnection';
|
|
2083
|
+
edges: Array<DeploymentEdge>;
|
|
2084
|
+
pageInfo: PageInfo;
|
|
2085
|
+
};
|
|
2047
2086
|
export declare enum DistributionType {
|
|
2048
2087
|
Internal = "INTERNAL",
|
|
2049
2088
|
Simulator = "SIMULATOR",
|
|
@@ -2067,6 +2106,19 @@ export declare enum EasServiceMetric {
|
|
|
2067
2106
|
UniqueUpdaters = "UNIQUE_UPDATERS",
|
|
2068
2107
|
UniqueUsers = "UNIQUE_USERS"
|
|
2069
2108
|
}
|
|
2109
|
+
export declare type EasTotalPlanEnablement = {
|
|
2110
|
+
__typename?: 'EASTotalPlanEnablement';
|
|
2111
|
+
total: Scalars['Int'];
|
|
2112
|
+
unit?: Maybe<EasTotalPlanEnablementUnit>;
|
|
2113
|
+
};
|
|
2114
|
+
export declare enum EasTotalPlanEnablementUnit {
|
|
2115
|
+
Build = "BUILD",
|
|
2116
|
+
Byte = "BYTE",
|
|
2117
|
+
Concurrency = "CONCURRENCY",
|
|
2118
|
+
Request = "REQUEST",
|
|
2119
|
+
Updater = "UPDATER",
|
|
2120
|
+
User = "USER"
|
|
2121
|
+
}
|
|
2070
2122
|
export declare type EditUpdateBranchInput = {
|
|
2071
2123
|
appId?: InputMaybe<Scalars['ID']>;
|
|
2072
2124
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -2720,6 +2772,44 @@ export declare type MeteredBillingStatus = {
|
|
|
2720
2772
|
__typename?: 'MeteredBillingStatus';
|
|
2721
2773
|
EAS_UPDATE: Scalars['Boolean'];
|
|
2722
2774
|
};
|
|
2775
|
+
export declare enum NotificationEvent {
|
|
2776
|
+
BuildComplete = "BUILD_COMPLETE",
|
|
2777
|
+
SubmissionComplete = "SUBMISSION_COMPLETE"
|
|
2778
|
+
}
|
|
2779
|
+
export declare type NotificationSubscription = {
|
|
2780
|
+
__typename?: 'NotificationSubscription';
|
|
2781
|
+
account?: Maybe<Account>;
|
|
2782
|
+
actor?: Maybe<Actor>;
|
|
2783
|
+
app?: Maybe<App>;
|
|
2784
|
+
createdAt: Scalars['DateTime'];
|
|
2785
|
+
event: NotificationEvent;
|
|
2786
|
+
id: Scalars['ID'];
|
|
2787
|
+
type: NotificationType;
|
|
2788
|
+
};
|
|
2789
|
+
export declare type NotificationSubscriptionFilter = {
|
|
2790
|
+
accountId?: InputMaybe<Scalars['ID']>;
|
|
2791
|
+
appId?: InputMaybe<Scalars['ID']>;
|
|
2792
|
+
event?: InputMaybe<NotificationEvent>;
|
|
2793
|
+
type?: InputMaybe<NotificationType>;
|
|
2794
|
+
};
|
|
2795
|
+
export declare type NotificationSubscriptionMutation = {
|
|
2796
|
+
__typename?: 'NotificationSubscriptionMutation';
|
|
2797
|
+
subscribeToEventForAccount: SubscribeToNotificationResult;
|
|
2798
|
+
subscribeToEventForApp: SubscribeToNotificationResult;
|
|
2799
|
+
unsubscribe: UnsubscribeFromNotificationResult;
|
|
2800
|
+
};
|
|
2801
|
+
export declare type NotificationSubscriptionMutationSubscribeToEventForAccountArgs = {
|
|
2802
|
+
input: AccountNotificationSubscriptionInput;
|
|
2803
|
+
};
|
|
2804
|
+
export declare type NotificationSubscriptionMutationSubscribeToEventForAppArgs = {
|
|
2805
|
+
input: AppNotificationSubscriptionInput;
|
|
2806
|
+
};
|
|
2807
|
+
export declare type NotificationSubscriptionMutationUnsubscribeArgs = {
|
|
2808
|
+
id: Scalars['ID'];
|
|
2809
|
+
};
|
|
2810
|
+
export declare enum NotificationType {
|
|
2811
|
+
Email = "EMAIL"
|
|
2812
|
+
}
|
|
2723
2813
|
export declare type Offer = {
|
|
2724
2814
|
__typename?: 'Offer';
|
|
2725
2815
|
features?: Maybe<Array<Maybe<Feature>>>;
|
|
@@ -2779,6 +2869,7 @@ export declare enum Permission {
|
|
|
2779
2869
|
Publish = "PUBLISH",
|
|
2780
2870
|
View = "VIEW"
|
|
2781
2871
|
}
|
|
2872
|
+
export declare type PlanEnablement = Concurrencies | EasTotalPlanEnablement;
|
|
2782
2873
|
export declare type Project = {
|
|
2783
2874
|
description: Scalars['String'];
|
|
2784
2875
|
fullName: Scalars['String'];
|
|
@@ -2969,6 +3060,8 @@ export declare type RootMutation = {
|
|
|
2969
3060
|
keystoreGenerationUrl: KeystoreGenerationUrlMutation;
|
|
2970
3061
|
/** Mutations that modify the currently authenticated User */
|
|
2971
3062
|
me: MeMutation;
|
|
3063
|
+
/** Mutations that modify a NotificationSubscription */
|
|
3064
|
+
notificationSubscription: NotificationSubscriptionMutation;
|
|
2972
3065
|
/** Mutations that create, update, and delete Robots */
|
|
2973
3066
|
robot: RobotMutation;
|
|
2974
3067
|
serverlessFunction: ServerlessFunctionMutation;
|
|
@@ -3050,6 +3143,8 @@ export declare type RootQuery = {
|
|
|
3050
3143
|
meActor?: Maybe<Actor>;
|
|
3051
3144
|
project: ProjectQuery;
|
|
3052
3145
|
snack: SnackQuery;
|
|
3146
|
+
/** Top-level query object for querying SSO Users. */
|
|
3147
|
+
ssoUser: SsoUserQuery;
|
|
3053
3148
|
/** Top-level query object for querying Expo status page services. */
|
|
3054
3149
|
statuspageService: StatuspageServiceQuery;
|
|
3055
3150
|
submissions: SubmissionQuery;
|
|
@@ -3096,6 +3191,75 @@ export declare type Runtime = {
|
|
|
3096
3191
|
id: Scalars['ID'];
|
|
3097
3192
|
version: Scalars['String'];
|
|
3098
3193
|
};
|
|
3194
|
+
/** Represents a human SSO (not robot) actor. */
|
|
3195
|
+
export declare type SsoUser = Actor & {
|
|
3196
|
+
__typename?: 'SSOUser';
|
|
3197
|
+
/** Access Tokens belonging to this actor, none at present */
|
|
3198
|
+
accessTokens: Array<AccessToken>;
|
|
3199
|
+
accounts: Array<Account>;
|
|
3200
|
+
/** Coalesced project activity for all apps belonging to all accounts this user belongs to. Only resolves for the viewer. */
|
|
3201
|
+
activityTimelineProjectActivities: Array<ActivityTimelineProjectActivity>;
|
|
3202
|
+
appCount: Scalars['Int'];
|
|
3203
|
+
appetizeCode?: Maybe<Scalars['String']>;
|
|
3204
|
+
/** Apps this user has published. If this user is the viewer, this field returns the apps the user has access to. */
|
|
3205
|
+
apps: Array<App>;
|
|
3206
|
+
created: Scalars['DateTime'];
|
|
3207
|
+
displayName: Scalars['String'];
|
|
3208
|
+
/**
|
|
3209
|
+
* Server feature gate values for this actor, optionally filtering by desired gates.
|
|
3210
|
+
* Only resolves for the viewer.
|
|
3211
|
+
*/
|
|
3212
|
+
featureGates: Scalars['JSONObject'];
|
|
3213
|
+
firstName?: Maybe<Scalars['String']>;
|
|
3214
|
+
fullName?: Maybe<Scalars['String']>;
|
|
3215
|
+
githubUsername?: Maybe<Scalars['String']>;
|
|
3216
|
+
id: Scalars['ID'];
|
|
3217
|
+
industry?: Maybe<Scalars['String']>;
|
|
3218
|
+
isExpoAdmin: Scalars['Boolean'];
|
|
3219
|
+
lastName?: Maybe<Scalars['String']>;
|
|
3220
|
+
location?: Maybe<Scalars['String']>;
|
|
3221
|
+
/** Associated accounts */
|
|
3222
|
+
primaryAccount: Account;
|
|
3223
|
+
profilePhoto: Scalars['String'];
|
|
3224
|
+
/** Snacks associated with this account */
|
|
3225
|
+
snacks: Array<Snack>;
|
|
3226
|
+
twitterUsername?: Maybe<Scalars['String']>;
|
|
3227
|
+
username: Scalars['String'];
|
|
3228
|
+
};
|
|
3229
|
+
/** Represents a human SSO (not robot) actor. */
|
|
3230
|
+
export declare type SsoUserActivityTimelineProjectActivitiesArgs = {
|
|
3231
|
+
createdBefore?: InputMaybe<Scalars['DateTime']>;
|
|
3232
|
+
filterTypes?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
|
|
3233
|
+
limit: Scalars['Int'];
|
|
3234
|
+
};
|
|
3235
|
+
/** Represents a human SSO (not robot) actor. */
|
|
3236
|
+
export declare type SsoUserAppsArgs = {
|
|
3237
|
+
includeUnpublished?: InputMaybe<Scalars['Boolean']>;
|
|
3238
|
+
limit: Scalars['Int'];
|
|
3239
|
+
offset: Scalars['Int'];
|
|
3240
|
+
};
|
|
3241
|
+
/** Represents a human SSO (not robot) actor. */
|
|
3242
|
+
export declare type SsoUserFeatureGatesArgs = {
|
|
3243
|
+
filter?: InputMaybe<Array<Scalars['String']>>;
|
|
3244
|
+
};
|
|
3245
|
+
/** Represents a human SSO (not robot) actor. */
|
|
3246
|
+
export declare type SsoUserSnacksArgs = {
|
|
3247
|
+
limit: Scalars['Int'];
|
|
3248
|
+
offset: Scalars['Int'];
|
|
3249
|
+
};
|
|
3250
|
+
export declare type SsoUserQuery = {
|
|
3251
|
+
__typename?: 'SSOUserQuery';
|
|
3252
|
+
/** Query an SSOUser by ID */
|
|
3253
|
+
byId: SsoUser;
|
|
3254
|
+
/** Query an SSOUser by username */
|
|
3255
|
+
byUsername: SsoUser;
|
|
3256
|
+
};
|
|
3257
|
+
export declare type SsoUserQueryByIdArgs = {
|
|
3258
|
+
userId: Scalars['String'];
|
|
3259
|
+
};
|
|
3260
|
+
export declare type SsoUserQueryByUsernameArgs = {
|
|
3261
|
+
username: Scalars['String'];
|
|
3262
|
+
};
|
|
3099
3263
|
export declare type SecondFactorBooleanResult = {
|
|
3100
3264
|
__typename?: 'SecondFactorBooleanResult';
|
|
3101
3265
|
success: Scalars['Boolean'];
|
|
@@ -3390,6 +3554,10 @@ export declare enum SubmissionStatus {
|
|
|
3390
3554
|
InProgress = "IN_PROGRESS",
|
|
3391
3555
|
InQueue = "IN_QUEUE"
|
|
3392
3556
|
}
|
|
3557
|
+
export declare type SubscribeToNotificationResult = {
|
|
3558
|
+
__typename?: 'SubscribeToNotificationResult';
|
|
3559
|
+
notificationSubscription: NotificationSubscription;
|
|
3560
|
+
};
|
|
3393
3561
|
export declare type SubscriptionDetails = {
|
|
3394
3562
|
__typename?: 'SubscriptionDetails';
|
|
3395
3563
|
addons: Array<AddonDetails>;
|
|
@@ -3403,12 +3571,20 @@ export declare type SubscriptionDetails = {
|
|
|
3403
3571
|
meteredBillingStatus: MeteredBillingStatus;
|
|
3404
3572
|
name?: Maybe<Scalars['String']>;
|
|
3405
3573
|
nextInvoice?: Maybe<Scalars['DateTime']>;
|
|
3574
|
+
planEnablement?: Maybe<PlanEnablement>;
|
|
3406
3575
|
planId?: Maybe<Scalars['String']>;
|
|
3407
3576
|
price: Scalars['Int'];
|
|
3408
3577
|
status?: Maybe<Scalars['String']>;
|
|
3409
3578
|
trialEnd?: Maybe<Scalars['DateTime']>;
|
|
3410
3579
|
willCancel?: Maybe<Scalars['Boolean']>;
|
|
3411
3580
|
};
|
|
3581
|
+
export declare type SubscriptionDetailsPlanEnablementArgs = {
|
|
3582
|
+
serviceMetric: EasServiceMetric;
|
|
3583
|
+
};
|
|
3584
|
+
export declare type UnsubscribeFromNotificationResult = {
|
|
3585
|
+
__typename?: 'UnsubscribeFromNotificationResult';
|
|
3586
|
+
notificationSubscription: NotificationSubscription;
|
|
3587
|
+
};
|
|
3412
3588
|
export declare type Update = ActivityTimelineProjectActivity & {
|
|
3413
3589
|
__typename?: 'Update';
|
|
3414
3590
|
activityTimestamp: Scalars['DateTime'];
|
|
@@ -3631,6 +3807,7 @@ export declare type User = Actor & {
|
|
|
3631
3807
|
/** @deprecated 'likes' have been deprecated. */
|
|
3632
3808
|
likes?: Maybe<Array<Maybe<App>>>;
|
|
3633
3809
|
location?: Maybe<Scalars['String']>;
|
|
3810
|
+
notificationSubscriptions: Array<NotificationSubscription>;
|
|
3634
3811
|
/** Pending UserInvitations for this user. Only resolves for the viewer. */
|
|
3635
3812
|
pendingUserInvitations: Array<UserInvitation>;
|
|
3636
3813
|
/** Associated accounts */
|
|
@@ -3667,6 +3844,10 @@ export declare type UserLikesArgs = {
|
|
|
3667
3844
|
offset: Scalars['Int'];
|
|
3668
3845
|
};
|
|
3669
3846
|
/** Represents a human (not robot) actor. */
|
|
3847
|
+
export declare type UserNotificationSubscriptionsArgs = {
|
|
3848
|
+
filter?: InputMaybe<NotificationSubscriptionFilter>;
|
|
3849
|
+
};
|
|
3850
|
+
/** Represents a human (not robot) actor. */
|
|
3670
3851
|
export declare type UserSnacksArgs = {
|
|
3671
3852
|
limit: Scalars['Int'];
|
|
3672
3853
|
offset: Scalars['Int'];
|
|
@@ -4109,6 +4290,9 @@ export declare type CreateAndroidAppCredentialsMutation = {
|
|
|
4109
4290
|
actor: {
|
|
4110
4291
|
__typename?: 'Robot';
|
|
4111
4292
|
id: string;
|
|
4293
|
+
} | {
|
|
4294
|
+
__typename?: 'SSOUser';
|
|
4295
|
+
id: string;
|
|
4112
4296
|
} | {
|
|
4113
4297
|
__typename?: 'User';
|
|
4114
4298
|
id: string;
|
|
@@ -4197,6 +4381,9 @@ export declare type SetFcmMutation = {
|
|
|
4197
4381
|
actor: {
|
|
4198
4382
|
__typename?: 'Robot';
|
|
4199
4383
|
id: string;
|
|
4384
|
+
} | {
|
|
4385
|
+
__typename?: 'SSOUser';
|
|
4386
|
+
id: string;
|
|
4200
4387
|
} | {
|
|
4201
4388
|
__typename?: 'User';
|
|
4202
4389
|
id: string;
|
|
@@ -4285,6 +4472,9 @@ export declare type SetGoogleServiceAccountKeyForSubmissionsMutation = {
|
|
|
4285
4472
|
actor: {
|
|
4286
4473
|
__typename?: 'Robot';
|
|
4287
4474
|
id: string;
|
|
4475
|
+
} | {
|
|
4476
|
+
__typename?: 'SSOUser';
|
|
4477
|
+
id: string;
|
|
4288
4478
|
} | {
|
|
4289
4479
|
__typename?: 'User';
|
|
4290
4480
|
id: string;
|
|
@@ -4489,6 +4679,9 @@ export declare type CommonAndroidAppCredentialsWithBuildCredentialsByApplication
|
|
|
4489
4679
|
actor: {
|
|
4490
4680
|
__typename?: 'Robot';
|
|
4491
4681
|
id: string;
|
|
4682
|
+
} | {
|
|
4683
|
+
__typename?: 'SSOUser';
|
|
4684
|
+
id: string;
|
|
4492
4685
|
} | {
|
|
4493
4686
|
__typename?: 'User';
|
|
4494
4687
|
id: string;
|
|
@@ -4717,6 +4910,9 @@ export declare type CreateAppleDistributionCertificateMutation = {
|
|
|
4717
4910
|
actor: {
|
|
4718
4911
|
__typename?: 'Robot';
|
|
4719
4912
|
id: string;
|
|
4913
|
+
} | {
|
|
4914
|
+
__typename?: 'SSOUser';
|
|
4915
|
+
id: string;
|
|
4720
4916
|
} | {
|
|
4721
4917
|
__typename?: 'User';
|
|
4722
4918
|
id: string;
|
|
@@ -4869,6 +5065,9 @@ export declare type CreateApplePushKeyMutation = {
|
|
|
4869
5065
|
actor: {
|
|
4870
5066
|
__typename?: 'Robot';
|
|
4871
5067
|
id: string;
|
|
5068
|
+
} | {
|
|
5069
|
+
__typename?: 'SSOUser';
|
|
5070
|
+
id: string;
|
|
4872
5071
|
} | {
|
|
4873
5072
|
__typename?: 'User';
|
|
4874
5073
|
id: string;
|
|
@@ -4921,6 +5120,9 @@ export declare type CreateAppleTeamMutation = {
|
|
|
4921
5120
|
actor: {
|
|
4922
5121
|
__typename?: 'Robot';
|
|
4923
5122
|
id: string;
|
|
5123
|
+
} | {
|
|
5124
|
+
__typename?: 'SSOUser';
|
|
5125
|
+
id: string;
|
|
4924
5126
|
} | {
|
|
4925
5127
|
__typename?: 'User';
|
|
4926
5128
|
id: string;
|
|
@@ -4979,6 +5181,9 @@ export declare type CreateIosAppBuildCredentialsMutation = {
|
|
|
4979
5181
|
actor: {
|
|
4980
5182
|
__typename?: 'Robot';
|
|
4981
5183
|
id: string;
|
|
5184
|
+
} | {
|
|
5185
|
+
__typename?: 'SSOUser';
|
|
5186
|
+
id: string;
|
|
4982
5187
|
} | {
|
|
4983
5188
|
__typename?: 'User';
|
|
4984
5189
|
id: string;
|
|
@@ -5074,6 +5279,9 @@ export declare type SetDistributionCertificateMutation = {
|
|
|
5074
5279
|
actor: {
|
|
5075
5280
|
__typename?: 'Robot';
|
|
5076
5281
|
id: string;
|
|
5282
|
+
} | {
|
|
5283
|
+
__typename?: 'SSOUser';
|
|
5284
|
+
id: string;
|
|
5077
5285
|
} | {
|
|
5078
5286
|
__typename?: 'User';
|
|
5079
5287
|
id: string;
|
|
@@ -5169,6 +5377,9 @@ export declare type SetProvisioningProfileMutation = {
|
|
|
5169
5377
|
actor: {
|
|
5170
5378
|
__typename?: 'Robot';
|
|
5171
5379
|
id: string;
|
|
5380
|
+
} | {
|
|
5381
|
+
__typename?: 'SSOUser';
|
|
5382
|
+
id: string;
|
|
5172
5383
|
} | {
|
|
5173
5384
|
__typename?: 'User';
|
|
5174
5385
|
id: string;
|
|
@@ -5268,6 +5479,9 @@ export declare type CreateIosAppCredentialsMutation = {
|
|
|
5268
5479
|
actor: {
|
|
5269
5480
|
__typename?: 'Robot';
|
|
5270
5481
|
id: string;
|
|
5482
|
+
} | {
|
|
5483
|
+
__typename?: 'SSOUser';
|
|
5484
|
+
id: string;
|
|
5271
5485
|
} | {
|
|
5272
5486
|
__typename?: 'User';
|
|
5273
5487
|
id: string;
|
|
@@ -5327,6 +5541,9 @@ export declare type CreateIosAppCredentialsMutation = {
|
|
|
5327
5541
|
actor: {
|
|
5328
5542
|
__typename?: 'Robot';
|
|
5329
5543
|
id: string;
|
|
5544
|
+
} | {
|
|
5545
|
+
__typename?: 'SSOUser';
|
|
5546
|
+
id: string;
|
|
5330
5547
|
} | {
|
|
5331
5548
|
__typename?: 'User';
|
|
5332
5549
|
id: string;
|
|
@@ -5374,6 +5591,9 @@ export declare type CreateIosAppCredentialsMutation = {
|
|
|
5374
5591
|
actor: {
|
|
5375
5592
|
__typename?: 'Robot';
|
|
5376
5593
|
id: string;
|
|
5594
|
+
} | {
|
|
5595
|
+
__typename?: 'SSOUser';
|
|
5596
|
+
id: string;
|
|
5377
5597
|
} | {
|
|
5378
5598
|
__typename?: 'User';
|
|
5379
5599
|
id: string;
|
|
@@ -5459,6 +5679,9 @@ export declare type SetPushKeyMutation = {
|
|
|
5459
5679
|
actor: {
|
|
5460
5680
|
__typename?: 'Robot';
|
|
5461
5681
|
id: string;
|
|
5682
|
+
} | {
|
|
5683
|
+
__typename?: 'SSOUser';
|
|
5684
|
+
id: string;
|
|
5462
5685
|
} | {
|
|
5463
5686
|
__typename?: 'User';
|
|
5464
5687
|
id: string;
|
|
@@ -5518,6 +5741,9 @@ export declare type SetPushKeyMutation = {
|
|
|
5518
5741
|
actor: {
|
|
5519
5742
|
__typename?: 'Robot';
|
|
5520
5743
|
id: string;
|
|
5744
|
+
} | {
|
|
5745
|
+
__typename?: 'SSOUser';
|
|
5746
|
+
id: string;
|
|
5521
5747
|
} | {
|
|
5522
5748
|
__typename?: 'User';
|
|
5523
5749
|
id: string;
|
|
@@ -5565,6 +5791,9 @@ export declare type SetPushKeyMutation = {
|
|
|
5565
5791
|
actor: {
|
|
5566
5792
|
__typename?: 'Robot';
|
|
5567
5793
|
id: string;
|
|
5794
|
+
} | {
|
|
5795
|
+
__typename?: 'SSOUser';
|
|
5796
|
+
id: string;
|
|
5568
5797
|
} | {
|
|
5569
5798
|
__typename?: 'User';
|
|
5570
5799
|
id: string;
|
|
@@ -5650,6 +5879,9 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
5650
5879
|
actor: {
|
|
5651
5880
|
__typename?: 'Robot';
|
|
5652
5881
|
id: string;
|
|
5882
|
+
} | {
|
|
5883
|
+
__typename?: 'SSOUser';
|
|
5884
|
+
id: string;
|
|
5653
5885
|
} | {
|
|
5654
5886
|
__typename?: 'User';
|
|
5655
5887
|
id: string;
|
|
@@ -5709,6 +5941,9 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
5709
5941
|
actor: {
|
|
5710
5942
|
__typename?: 'Robot';
|
|
5711
5943
|
id: string;
|
|
5944
|
+
} | {
|
|
5945
|
+
__typename?: 'SSOUser';
|
|
5946
|
+
id: string;
|
|
5712
5947
|
} | {
|
|
5713
5948
|
__typename?: 'User';
|
|
5714
5949
|
id: string;
|
|
@@ -5756,6 +5991,9 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
5756
5991
|
actor: {
|
|
5757
5992
|
__typename?: 'Robot';
|
|
5758
5993
|
id: string;
|
|
5994
|
+
} | {
|
|
5995
|
+
__typename?: 'SSOUser';
|
|
5996
|
+
id: string;
|
|
5759
5997
|
} | {
|
|
5760
5998
|
__typename?: 'User';
|
|
5761
5999
|
id: string;
|
|
@@ -5982,6 +6220,9 @@ export declare type AppleDistributionCertificateByAppQuery = {
|
|
|
5982
6220
|
actor: {
|
|
5983
6221
|
__typename?: 'Robot';
|
|
5984
6222
|
id: string;
|
|
6223
|
+
} | {
|
|
6224
|
+
__typename?: 'SSOUser';
|
|
6225
|
+
id: string;
|
|
5985
6226
|
} | {
|
|
5986
6227
|
__typename?: 'User';
|
|
5987
6228
|
id: string;
|
|
@@ -6054,6 +6295,9 @@ export declare type AppleDistributionCertificateByAccountQuery = {
|
|
|
6054
6295
|
actor: {
|
|
6055
6296
|
__typename?: 'Robot';
|
|
6056
6297
|
id: string;
|
|
6298
|
+
} | {
|
|
6299
|
+
__typename?: 'SSOUser';
|
|
6300
|
+
id: string;
|
|
6057
6301
|
} | {
|
|
6058
6302
|
__typename?: 'User';
|
|
6059
6303
|
id: string;
|
|
@@ -6167,6 +6411,9 @@ export declare type ApplePushKeyByAccountQuery = {
|
|
|
6167
6411
|
actor: {
|
|
6168
6412
|
__typename?: 'Robot';
|
|
6169
6413
|
id: string;
|
|
6414
|
+
} | {
|
|
6415
|
+
__typename?: 'SSOUser';
|
|
6416
|
+
id: string;
|
|
6170
6417
|
} | {
|
|
6171
6418
|
__typename?: 'User';
|
|
6172
6419
|
id: string;
|
|
@@ -6277,6 +6524,9 @@ export declare type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuer
|
|
|
6277
6524
|
actor: {
|
|
6278
6525
|
__typename?: 'Robot';
|
|
6279
6526
|
id: string;
|
|
6527
|
+
} | {
|
|
6528
|
+
__typename?: 'SSOUser';
|
|
6529
|
+
id: string;
|
|
6280
6530
|
} | {
|
|
6281
6531
|
__typename?: 'User';
|
|
6282
6532
|
id: string;
|
|
@@ -6381,6 +6631,9 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
|
|
|
6381
6631
|
actor: {
|
|
6382
6632
|
__typename?: 'Robot';
|
|
6383
6633
|
id: string;
|
|
6634
|
+
} | {
|
|
6635
|
+
__typename?: 'SSOUser';
|
|
6636
|
+
id: string;
|
|
6384
6637
|
} | {
|
|
6385
6638
|
__typename?: 'User';
|
|
6386
6639
|
id: string;
|
|
@@ -6440,6 +6693,9 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
|
|
|
6440
6693
|
actor: {
|
|
6441
6694
|
__typename?: 'Robot';
|
|
6442
6695
|
id: string;
|
|
6696
|
+
} | {
|
|
6697
|
+
__typename?: 'SSOUser';
|
|
6698
|
+
id: string;
|
|
6443
6699
|
} | {
|
|
6444
6700
|
__typename?: 'User';
|
|
6445
6701
|
id: string;
|
|
@@ -6487,6 +6743,9 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
|
|
|
6487
6743
|
actor: {
|
|
6488
6744
|
__typename?: 'Robot';
|
|
6489
6745
|
id: string;
|
|
6746
|
+
} | {
|
|
6747
|
+
__typename?: 'SSOUser';
|
|
6748
|
+
id: string;
|
|
6490
6749
|
} | {
|
|
6491
6750
|
__typename?: 'User';
|
|
6492
6751
|
id: string;
|
|
@@ -6576,6 +6835,9 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
|
|
|
6576
6835
|
actor: {
|
|
6577
6836
|
__typename?: 'Robot';
|
|
6578
6837
|
id: string;
|
|
6838
|
+
} | {
|
|
6839
|
+
__typename?: 'SSOUser';
|
|
6840
|
+
id: string;
|
|
6579
6841
|
} | {
|
|
6580
6842
|
__typename?: 'User';
|
|
6581
6843
|
id: string;
|
|
@@ -6635,6 +6897,9 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
|
|
|
6635
6897
|
actor: {
|
|
6636
6898
|
__typename?: 'Robot';
|
|
6637
6899
|
id: string;
|
|
6900
|
+
} | {
|
|
6901
|
+
__typename?: 'SSOUser';
|
|
6902
|
+
id: string;
|
|
6638
6903
|
} | {
|
|
6639
6904
|
__typename?: 'User';
|
|
6640
6905
|
id: string;
|
|
@@ -6682,6 +6947,9 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
|
|
|
6682
6947
|
actor: {
|
|
6683
6948
|
__typename?: 'Robot';
|
|
6684
6949
|
id: string;
|
|
6950
|
+
} | {
|
|
6951
|
+
__typename?: 'SSOUser';
|
|
6952
|
+
id: string;
|
|
6685
6953
|
} | {
|
|
6686
6954
|
__typename?: 'User';
|
|
6687
6955
|
id: string;
|
|
@@ -6793,6 +7061,10 @@ export declare type CreateAndroidBuildMutation = {
|
|
|
6793
7061
|
__typename: 'Robot';
|
|
6794
7062
|
id: string;
|
|
6795
7063
|
displayName: string;
|
|
7064
|
+
} | {
|
|
7065
|
+
__typename: 'SSOUser';
|
|
7066
|
+
id: string;
|
|
7067
|
+
displayName: string;
|
|
6796
7068
|
} | {
|
|
6797
7069
|
__typename: 'User';
|
|
6798
7070
|
id: string;
|
|
@@ -6874,6 +7146,10 @@ export declare type CreateIosBuildMutation = {
|
|
|
6874
7146
|
__typename: 'Robot';
|
|
6875
7147
|
id: string;
|
|
6876
7148
|
displayName: string;
|
|
7149
|
+
} | {
|
|
7150
|
+
__typename: 'SSOUser';
|
|
7151
|
+
id: string;
|
|
7152
|
+
displayName: string;
|
|
6877
7153
|
} | {
|
|
6878
7154
|
__typename: 'User';
|
|
6879
7155
|
id: string;
|
|
@@ -6951,6 +7227,10 @@ export declare type RetryIosBuildMutation = {
|
|
|
6951
7227
|
__typename: 'Robot';
|
|
6952
7228
|
id: string;
|
|
6953
7229
|
displayName: string;
|
|
7230
|
+
} | {
|
|
7231
|
+
__typename: 'SSOUser';
|
|
7232
|
+
id: string;
|
|
7233
|
+
displayName: string;
|
|
6954
7234
|
} | {
|
|
6955
7235
|
__typename: 'User';
|
|
6956
7236
|
id: string;
|
|
@@ -7060,9 +7340,36 @@ export declare type UpdatePublishMutation = {
|
|
|
7060
7340
|
__typename?: 'Update';
|
|
7061
7341
|
id: string;
|
|
7062
7342
|
group: string;
|
|
7343
|
+
message?: string | null;
|
|
7344
|
+
createdAt: any;
|
|
7063
7345
|
runtimeVersion: string;
|
|
7064
7346
|
platform: string;
|
|
7347
|
+
manifestFragment: string;
|
|
7065
7348
|
manifestPermalink: string;
|
|
7349
|
+
gitCommitHash?: string | null;
|
|
7350
|
+
actor?: {
|
|
7351
|
+
__typename: 'Robot';
|
|
7352
|
+
firstName?: string | null;
|
|
7353
|
+
id: string;
|
|
7354
|
+
} | {
|
|
7355
|
+
__typename: 'SSOUser';
|
|
7356
|
+
id: string;
|
|
7357
|
+
} | {
|
|
7358
|
+
__typename: 'User';
|
|
7359
|
+
username: string;
|
|
7360
|
+
id: string;
|
|
7361
|
+
} | null;
|
|
7362
|
+
branch: {
|
|
7363
|
+
__typename?: 'UpdateBranch';
|
|
7364
|
+
id: string;
|
|
7365
|
+
name: string;
|
|
7366
|
+
};
|
|
7367
|
+
codeSigningInfo?: {
|
|
7368
|
+
__typename?: 'CodeSigningInfo';
|
|
7369
|
+
keyid: string;
|
|
7370
|
+
sig: string;
|
|
7371
|
+
alg: string;
|
|
7372
|
+
} | null;
|
|
7066
7373
|
}>;
|
|
7067
7374
|
};
|
|
7068
7375
|
};
|
|
@@ -7267,6 +7574,9 @@ export declare type AppByIdQuery = {
|
|
|
7267
7574
|
actor: {
|
|
7268
7575
|
__typename?: 'Robot';
|
|
7269
7576
|
id: string;
|
|
7577
|
+
} | {
|
|
7578
|
+
__typename?: 'SSOUser';
|
|
7579
|
+
id: string;
|
|
7270
7580
|
} | {
|
|
7271
7581
|
__typename?: 'User';
|
|
7272
7582
|
id: string;
|
|
@@ -7298,6 +7608,9 @@ export declare type AppByFullNameQuery = {
|
|
|
7298
7608
|
actor: {
|
|
7299
7609
|
__typename?: 'Robot';
|
|
7300
7610
|
id: string;
|
|
7611
|
+
} | {
|
|
7612
|
+
__typename?: 'SSOUser';
|
|
7613
|
+
id: string;
|
|
7301
7614
|
} | {
|
|
7302
7615
|
__typename?: 'User';
|
|
7303
7616
|
id: string;
|
|
@@ -7372,11 +7685,15 @@ export declare type BranchesByAppQuery = {
|
|
|
7372
7685
|
runtimeVersion: string;
|
|
7373
7686
|
platform: string;
|
|
7374
7687
|
manifestFragment: string;
|
|
7688
|
+
manifestPermalink: string;
|
|
7375
7689
|
gitCommitHash?: string | null;
|
|
7376
7690
|
actor?: {
|
|
7377
7691
|
__typename: 'Robot';
|
|
7378
7692
|
firstName?: string | null;
|
|
7379
7693
|
id: string;
|
|
7694
|
+
} | {
|
|
7695
|
+
__typename: 'SSOUser';
|
|
7696
|
+
id: string;
|
|
7380
7697
|
} | {
|
|
7381
7698
|
__typename: 'User';
|
|
7382
7699
|
username: string;
|
|
@@ -7427,11 +7744,15 @@ export declare type ViewBranchesOnUpdateChannelQuery = {
|
|
|
7427
7744
|
runtimeVersion: string;
|
|
7428
7745
|
platform: string;
|
|
7429
7746
|
manifestFragment: string;
|
|
7747
|
+
manifestPermalink: string;
|
|
7430
7748
|
gitCommitHash?: string | null;
|
|
7431
7749
|
actor?: {
|
|
7432
7750
|
__typename: 'Robot';
|
|
7433
7751
|
firstName?: string | null;
|
|
7434
7752
|
id: string;
|
|
7753
|
+
} | {
|
|
7754
|
+
__typename: 'SSOUser';
|
|
7755
|
+
id: string;
|
|
7435
7756
|
} | {
|
|
7436
7757
|
__typename: 'User';
|
|
7437
7758
|
username: string;
|
|
@@ -7500,6 +7821,10 @@ export declare type BuildsByIdQuery = {
|
|
|
7500
7821
|
__typename: 'Robot';
|
|
7501
7822
|
id: string;
|
|
7502
7823
|
displayName: string;
|
|
7824
|
+
} | {
|
|
7825
|
+
__typename: 'SSOUser';
|
|
7826
|
+
id: string;
|
|
7827
|
+
displayName: string;
|
|
7503
7828
|
} | {
|
|
7504
7829
|
__typename: 'User';
|
|
7505
7830
|
id: string;
|
|
@@ -7604,6 +7929,10 @@ export declare type BuildsWithSubmissionsByIdQuery = {
|
|
|
7604
7929
|
__typename: 'Robot';
|
|
7605
7930
|
id: string;
|
|
7606
7931
|
displayName: string;
|
|
7932
|
+
} | {
|
|
7933
|
+
__typename: 'SSOUser';
|
|
7934
|
+
id: string;
|
|
7935
|
+
displayName: string;
|
|
7607
7936
|
} | {
|
|
7608
7937
|
__typename: 'User';
|
|
7609
7938
|
id: string;
|
|
@@ -7680,6 +8009,10 @@ export declare type ViewBuildsOnAppQuery = {
|
|
|
7680
8009
|
__typename: 'Robot';
|
|
7681
8010
|
id: string;
|
|
7682
8011
|
displayName: string;
|
|
8012
|
+
} | {
|
|
8013
|
+
__typename: 'SSOUser';
|
|
8014
|
+
id: string;
|
|
8015
|
+
displayName: string;
|
|
7683
8016
|
} | {
|
|
7684
8017
|
__typename: 'User';
|
|
7685
8018
|
id: string;
|
|
@@ -7735,11 +8068,15 @@ export declare type ViewUpdateChannelOnAppQuery = {
|
|
|
7735
8068
|
runtimeVersion: string;
|
|
7736
8069
|
platform: string;
|
|
7737
8070
|
manifestFragment: string;
|
|
8071
|
+
manifestPermalink: string;
|
|
7738
8072
|
gitCommitHash?: string | null;
|
|
7739
8073
|
actor?: {
|
|
7740
8074
|
__typename: 'Robot';
|
|
7741
8075
|
firstName?: string | null;
|
|
7742
8076
|
id: string;
|
|
8077
|
+
} | {
|
|
8078
|
+
__typename: 'SSOUser';
|
|
8079
|
+
id: string;
|
|
7743
8080
|
} | {
|
|
7744
8081
|
__typename: 'User';
|
|
7745
8082
|
username: string;
|
|
@@ -7792,11 +8129,15 @@ export declare type ViewUpdateChannelsOnAppQuery = {
|
|
|
7792
8129
|
runtimeVersion: string;
|
|
7793
8130
|
platform: string;
|
|
7794
8131
|
manifestFragment: string;
|
|
8132
|
+
manifestPermalink: string;
|
|
7795
8133
|
gitCommitHash?: string | null;
|
|
7796
8134
|
actor?: {
|
|
7797
8135
|
__typename: 'Robot';
|
|
7798
8136
|
firstName?: string | null;
|
|
7799
8137
|
id: string;
|
|
8138
|
+
} | {
|
|
8139
|
+
__typename: 'SSOUser';
|
|
8140
|
+
id: string;
|
|
7800
8141
|
} | {
|
|
7801
8142
|
__typename: 'User';
|
|
7802
8143
|
username: string;
|
|
@@ -8009,11 +8350,15 @@ export declare type ViewUpdatesByGroupQuery = {
|
|
|
8009
8350
|
runtimeVersion: string;
|
|
8010
8351
|
platform: string;
|
|
8011
8352
|
manifestFragment: string;
|
|
8353
|
+
manifestPermalink: string;
|
|
8012
8354
|
gitCommitHash?: string | null;
|
|
8013
8355
|
actor?: {
|
|
8014
8356
|
__typename: 'Robot';
|
|
8015
8357
|
firstName?: string | null;
|
|
8016
8358
|
id: string;
|
|
8359
|
+
} | {
|
|
8360
|
+
__typename: 'SSOUser';
|
|
8361
|
+
id: string;
|
|
8017
8362
|
} | {
|
|
8018
8363
|
__typename: 'User';
|
|
8019
8364
|
username: string;
|
|
@@ -8058,11 +8403,15 @@ export declare type ViewUpdateGroupsOnBranchQuery = {
|
|
|
8058
8403
|
runtimeVersion: string;
|
|
8059
8404
|
platform: string;
|
|
8060
8405
|
manifestFragment: string;
|
|
8406
|
+
manifestPermalink: string;
|
|
8061
8407
|
gitCommitHash?: string | null;
|
|
8062
8408
|
actor?: {
|
|
8063
8409
|
__typename: 'Robot';
|
|
8064
8410
|
firstName?: string | null;
|
|
8065
8411
|
id: string;
|
|
8412
|
+
} | {
|
|
8413
|
+
__typename: 'SSOUser';
|
|
8414
|
+
id: string;
|
|
8066
8415
|
} | {
|
|
8067
8416
|
__typename: 'User';
|
|
8068
8417
|
username: string;
|
|
@@ -8106,11 +8455,15 @@ export declare type ViewUpdateGroupsOnAppQuery = {
|
|
|
8106
8455
|
runtimeVersion: string;
|
|
8107
8456
|
platform: string;
|
|
8108
8457
|
manifestFragment: string;
|
|
8458
|
+
manifestPermalink: string;
|
|
8109
8459
|
gitCommitHash?: string | null;
|
|
8110
8460
|
actor?: {
|
|
8111
8461
|
__typename: 'Robot';
|
|
8112
8462
|
firstName?: string | null;
|
|
8113
8463
|
id: string;
|
|
8464
|
+
} | {
|
|
8465
|
+
__typename: 'SSOUser';
|
|
8466
|
+
id: string;
|
|
8114
8467
|
} | {
|
|
8115
8468
|
__typename: 'User';
|
|
8116
8469
|
username: string;
|
|
@@ -8152,6 +8505,33 @@ export declare type CurrentUserQuery = {
|
|
|
8152
8505
|
actor: {
|
|
8153
8506
|
__typename?: 'Robot';
|
|
8154
8507
|
id: string;
|
|
8508
|
+
} | {
|
|
8509
|
+
__typename?: 'SSOUser';
|
|
8510
|
+
id: string;
|
|
8511
|
+
} | {
|
|
8512
|
+
__typename?: 'User';
|
|
8513
|
+
id: string;
|
|
8514
|
+
};
|
|
8515
|
+
}>;
|
|
8516
|
+
}>;
|
|
8517
|
+
} | {
|
|
8518
|
+
__typename: 'SSOUser';
|
|
8519
|
+
id: string;
|
|
8520
|
+
featureGates: any;
|
|
8521
|
+
isExpoAdmin: boolean;
|
|
8522
|
+
accounts: Array<{
|
|
8523
|
+
__typename?: 'Account';
|
|
8524
|
+
id: string;
|
|
8525
|
+
name: string;
|
|
8526
|
+
users: Array<{
|
|
8527
|
+
__typename?: 'UserPermission';
|
|
8528
|
+
role?: Role | null;
|
|
8529
|
+
actor: {
|
|
8530
|
+
__typename?: 'Robot';
|
|
8531
|
+
id: string;
|
|
8532
|
+
} | {
|
|
8533
|
+
__typename?: 'SSOUser';
|
|
8534
|
+
id: string;
|
|
8155
8535
|
} | {
|
|
8156
8536
|
__typename?: 'User';
|
|
8157
8537
|
id: string;
|
|
@@ -8174,6 +8554,9 @@ export declare type CurrentUserQuery = {
|
|
|
8174
8554
|
actor: {
|
|
8175
8555
|
__typename?: 'Robot';
|
|
8176
8556
|
id: string;
|
|
8557
|
+
} | {
|
|
8558
|
+
__typename?: 'SSOUser';
|
|
8559
|
+
id: string;
|
|
8177
8560
|
} | {
|
|
8178
8561
|
__typename?: 'User';
|
|
8179
8562
|
id: string;
|
|
@@ -8190,6 +8573,9 @@ export declare type CurrentUserQuery = {
|
|
|
8190
8573
|
actor: {
|
|
8191
8574
|
__typename?: 'Robot';
|
|
8192
8575
|
id: string;
|
|
8576
|
+
} | {
|
|
8577
|
+
__typename?: 'SSOUser';
|
|
8578
|
+
id: string;
|
|
8193
8579
|
} | {
|
|
8194
8580
|
__typename?: 'User';
|
|
8195
8581
|
id: string;
|
|
@@ -8247,6 +8633,9 @@ export declare type AccountFragment = {
|
|
|
8247
8633
|
actor: {
|
|
8248
8634
|
__typename?: 'Robot';
|
|
8249
8635
|
id: string;
|
|
8636
|
+
} | {
|
|
8637
|
+
__typename?: 'SSOUser';
|
|
8638
|
+
id: string;
|
|
8250
8639
|
} | {
|
|
8251
8640
|
__typename?: 'User';
|
|
8252
8641
|
id: string;
|
|
@@ -8268,6 +8657,9 @@ export declare type AppFragment = {
|
|
|
8268
8657
|
actor: {
|
|
8269
8658
|
__typename?: 'Robot';
|
|
8270
8659
|
id: string;
|
|
8660
|
+
} | {
|
|
8661
|
+
__typename?: 'SSOUser';
|
|
8662
|
+
id: string;
|
|
8271
8663
|
} | {
|
|
8272
8664
|
__typename?: 'User';
|
|
8273
8665
|
id: string;
|
|
@@ -8314,6 +8706,10 @@ export declare type BuildFragment = {
|
|
|
8314
8706
|
__typename: 'Robot';
|
|
8315
8707
|
id: string;
|
|
8316
8708
|
displayName: string;
|
|
8709
|
+
} | {
|
|
8710
|
+
__typename: 'SSOUser';
|
|
8711
|
+
id: string;
|
|
8712
|
+
displayName: string;
|
|
8317
8713
|
} | {
|
|
8318
8714
|
__typename: 'User';
|
|
8319
8715
|
id: string;
|
|
@@ -8409,6 +8805,10 @@ export declare type BuildWithSubmissionsFragment = {
|
|
|
8409
8805
|
__typename: 'Robot';
|
|
8410
8806
|
id: string;
|
|
8411
8807
|
displayName: string;
|
|
8808
|
+
} | {
|
|
8809
|
+
__typename: 'SSOUser';
|
|
8810
|
+
id: string;
|
|
8811
|
+
displayName: string;
|
|
8412
8812
|
} | {
|
|
8413
8813
|
__typename: 'User';
|
|
8414
8814
|
id: string;
|
|
@@ -8495,11 +8895,15 @@ export declare type UpdateFragment = {
|
|
|
8495
8895
|
runtimeVersion: string;
|
|
8496
8896
|
platform: string;
|
|
8497
8897
|
manifestFragment: string;
|
|
8898
|
+
manifestPermalink: string;
|
|
8498
8899
|
gitCommitHash?: string | null;
|
|
8499
8900
|
actor?: {
|
|
8500
8901
|
__typename: 'Robot';
|
|
8501
8902
|
firstName?: string | null;
|
|
8502
8903
|
id: string;
|
|
8904
|
+
} | {
|
|
8905
|
+
__typename: 'SSOUser';
|
|
8906
|
+
id: string;
|
|
8503
8907
|
} | {
|
|
8504
8908
|
__typename: 'User';
|
|
8505
8909
|
username: string;
|
|
@@ -8530,11 +8934,15 @@ export declare type UpdateBranchFragment = {
|
|
|
8530
8934
|
runtimeVersion: string;
|
|
8531
8935
|
platform: string;
|
|
8532
8936
|
manifestFragment: string;
|
|
8937
|
+
manifestPermalink: string;
|
|
8533
8938
|
gitCommitHash?: string | null;
|
|
8534
8939
|
actor?: {
|
|
8535
8940
|
__typename: 'Robot';
|
|
8536
8941
|
firstName?: string | null;
|
|
8537
8942
|
id: string;
|
|
8943
|
+
} | {
|
|
8944
|
+
__typename: 'SSOUser';
|
|
8945
|
+
id: string;
|
|
8538
8946
|
} | {
|
|
8539
8947
|
__typename: 'User';
|
|
8540
8948
|
username: string;
|
|
@@ -8602,6 +9010,9 @@ export declare type CommonAndroidAppCredentialsFragment = {
|
|
|
8602
9010
|
actor: {
|
|
8603
9011
|
__typename?: 'Robot';
|
|
8604
9012
|
id: string;
|
|
9013
|
+
} | {
|
|
9014
|
+
__typename?: 'SSOUser';
|
|
9015
|
+
id: string;
|
|
8605
9016
|
} | {
|
|
8606
9017
|
__typename?: 'User';
|
|
8607
9018
|
id: string;
|
|
@@ -8763,6 +9174,9 @@ export declare type AppleDistributionCertificateFragment = {
|
|
|
8763
9174
|
actor: {
|
|
8764
9175
|
__typename?: 'Robot';
|
|
8765
9176
|
id: string;
|
|
9177
|
+
} | {
|
|
9178
|
+
__typename?: 'SSOUser';
|
|
9179
|
+
id: string;
|
|
8766
9180
|
} | {
|
|
8767
9181
|
__typename?: 'User';
|
|
8768
9182
|
id: string;
|
|
@@ -8840,6 +9254,9 @@ export declare type ApplePushKeyFragment = {
|
|
|
8840
9254
|
actor: {
|
|
8841
9255
|
__typename?: 'Robot';
|
|
8842
9256
|
id: string;
|
|
9257
|
+
} | {
|
|
9258
|
+
__typename?: 'SSOUser';
|
|
9259
|
+
id: string;
|
|
8843
9260
|
} | {
|
|
8844
9261
|
__typename?: 'User';
|
|
8845
9262
|
id: string;
|
|
@@ -8911,6 +9328,9 @@ export declare type IosAppBuildCredentialsFragment = {
|
|
|
8911
9328
|
actor: {
|
|
8912
9329
|
__typename?: 'Robot';
|
|
8913
9330
|
id: string;
|
|
9331
|
+
} | {
|
|
9332
|
+
__typename?: 'SSOUser';
|
|
9333
|
+
id: string;
|
|
8914
9334
|
} | {
|
|
8915
9335
|
__typename?: 'User';
|
|
8916
9336
|
id: string;
|
|
@@ -8973,6 +9393,9 @@ export declare type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
8973
9393
|
actor: {
|
|
8974
9394
|
__typename?: 'Robot';
|
|
8975
9395
|
id: string;
|
|
9396
|
+
} | {
|
|
9397
|
+
__typename?: 'SSOUser';
|
|
9398
|
+
id: string;
|
|
8976
9399
|
} | {
|
|
8977
9400
|
__typename?: 'User';
|
|
8978
9401
|
id: string;
|
|
@@ -9020,6 +9443,9 @@ export declare type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
9020
9443
|
actor: {
|
|
9021
9444
|
__typename?: 'Robot';
|
|
9022
9445
|
id: string;
|
|
9446
|
+
} | {
|
|
9447
|
+
__typename?: 'SSOUser';
|
|
9448
|
+
id: string;
|
|
9023
9449
|
} | {
|
|
9024
9450
|
__typename?: 'User';
|
|
9025
9451
|
id: string;
|
|
@@ -9095,6 +9521,9 @@ export declare type CommonIosAppCredentialsFragment = {
|
|
|
9095
9521
|
actor: {
|
|
9096
9522
|
__typename?: 'Robot';
|
|
9097
9523
|
id: string;
|
|
9524
|
+
} | {
|
|
9525
|
+
__typename?: 'SSOUser';
|
|
9526
|
+
id: string;
|
|
9098
9527
|
} | {
|
|
9099
9528
|
__typename?: 'User';
|
|
9100
9529
|
id: string;
|
|
@@ -9154,6 +9583,9 @@ export declare type CommonIosAppCredentialsFragment = {
|
|
|
9154
9583
|
actor: {
|
|
9155
9584
|
__typename?: 'Robot';
|
|
9156
9585
|
id: string;
|
|
9586
|
+
} | {
|
|
9587
|
+
__typename?: 'SSOUser';
|
|
9588
|
+
id: string;
|
|
9157
9589
|
} | {
|
|
9158
9590
|
__typename?: 'User';
|
|
9159
9591
|
id: string;
|
|
@@ -9201,6 +9633,9 @@ export declare type CommonIosAppCredentialsFragment = {
|
|
|
9201
9633
|
actor: {
|
|
9202
9634
|
__typename?: 'Robot';
|
|
9203
9635
|
id: string;
|
|
9636
|
+
} | {
|
|
9637
|
+
__typename?: 'SSOUser';
|
|
9638
|
+
id: string;
|
|
9204
9639
|
} | {
|
|
9205
9640
|
__typename?: 'User';
|
|
9206
9641
|
id: string;
|