eas-cli 3.3.1 → 3.3.2
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 +56 -63
- package/build/analytics/AnalyticsManager.d.ts +2 -2
- package/build/build/android/prepareJob.js +2 -0
- package/build/build/build.d.ts +2 -2
- package/build/build/context.d.ts +1 -1
- package/build/build/graphql.d.ts +2 -1
- package/build/build/graphql.js +11 -1
- package/build/build/ios/graphql.js +1 -1
- package/build/build/ios/prepareJob.js +2 -0
- package/build/channel/utils.d.ts +1 -1
- package/build/commandUtils/EasCommand.d.ts +2 -2
- package/build/commandUtils/context/DynamicProjectConfigContextField.d.ts +1 -1
- package/build/commandUtils/pagination.d.ts +1 -1
- package/build/commands/update/index.js +1 -1
- package/build/commands/update/republish.d.ts +2 -2
- package/build/commands/update/view.js +2 -2
- package/build/credentials/android/api/graphql/mutations/AndroidAppBuildCredentialsMutation.d.ts +1 -1
- package/build/credentials/android/credentials.d.ts +3 -3
- package/build/credentials/context.d.ts +1 -1
- package/build/credentials/credentialsJson/types.d.ts +2 -2
- package/build/credentials/ios/api/graphql/mutations/AppleDistributionCertificateMutation.d.ts +1 -1
- package/build/credentials/ios/api/graphql/mutations/AppleProvisioningProfileMutation.d.ts +1 -1
- package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.d.ts +1 -1
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.d.ts +4 -4
- package/build/credentials/ios/api/graphql/queries/AppleProvisioningProfileQuery.d.ts +1 -1
- package/build/credentials/ios/appstore/Credentials.types.d.ts +2 -2
- package/build/credentials/ios/appstore/authenticate.d.ts +1 -1
- package/build/credentials/ios/appstore/authenticateTypes.d.ts +4 -4
- package/build/credentials/ios/appstore/bundleIdCapabilities.d.ts +2 -2
- package/build/credentials/ios/credentials.d.ts +1 -1
- package/build/credentials/ios/types.d.ts +3 -3
- package/build/credentials/manager/Actions.d.ts +1 -1
- package/build/credentials/utils/promptForCredentials.d.ts +2 -2
- package/build/devices/utils/formatDevice.d.ts +3 -3
- package/build/graphql/generated.d.ts +781 -744
- package/build/graphql/mutations/PublishMutation.d.ts +2 -2
- package/build/graphql/mutations/PublishMutation.js +4 -4
- package/build/graphql/queries/BranchQuery.d.ts +1 -1
- package/build/graphql/queries/ChannelQuery.d.ts +2 -2
- package/build/graphql/queries/EnvironmentSecretsQuery.d.ts +1 -1
- package/build/graphql/queries/SubmissionQuery.d.ts +1 -1
- package/build/graphql/queries/UserQuery.js +3 -0
- package/build/graphql/types/Update.js +1 -0
- package/build/metadata/apple/config/reader.d.ts +1 -1
- package/build/metadata/apple/data.d.ts +2 -2
- package/build/metadata/apple/task.d.ts +3 -3
- package/build/metadata/apple/tasks/age-rating.d.ts +1 -1
- package/build/metadata/apple/tasks/app-info.d.ts +1 -1
- package/build/metadata/apple/tasks/app-review-detail.d.ts +1 -1
- package/build/metadata/apple/tasks/app-version.d.ts +2 -2
- package/build/metadata/apple/tasks/index.d.ts +1 -1
- package/build/metadata/apple/types.d.ts +3 -3
- package/build/metadata/auth.d.ts +1 -1
- package/build/metadata/config/resolve.js +2 -1
- package/build/metadata/utils/asc.d.ts +1 -1
- package/build/metadata/utils/log.d.ts +1 -1
- package/build/metadata/utils/retry.d.ts +1 -1
- package/build/metadata/utils/telemetry.d.ts +1 -1
- package/build/project/publish.d.ts +8 -8
- package/build/prompts.d.ts +1 -1
- package/build/submit/ArchiveSource.d.ts +2 -2
- package/build/submit/android/ServiceAccountSource.d.ts +5 -5
- package/build/submit/ios/AppProduce.d.ts +1 -1
- package/build/submit/ios/AppSpecificPasswordSource.d.ts +1 -1
- package/build/submit/ios/AscApiKeySource.d.ts +4 -4
- package/build/update/utils.d.ts +9 -5
- package/build/update/utils.js +15 -1
- package/build/user/SessionManager.d.ts +2 -2
- package/build/user/User.d.ts +1 -1
- package/build/user/User.js +1 -1
- package/build/user/UserSettings.d.ts +1 -1
- package/build/utils/code-signing.d.ts +1 -1
- package/build/utils/code-signing.js +1 -1
- package/build/utils/formatFields.d.ts +2 -2
- package/build/utils/profiles.d.ts +2 -2
- package/build/utils/progress.d.ts +2 -2
- package/build/utils/queries.d.ts +3 -3
- package/oclif.manifest.json +1 -1
- package/package.json +34 -34
|
@@ -4,21 +4,21 @@
|
|
|
4
4
|
* Run this during development for automatic type generation when editing GraphQL documents
|
|
5
5
|
* For more info and docs, visit https://graphql-code-generator.com/
|
|
6
6
|
*/
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
7
|
+
export type Maybe<T> = T | null;
|
|
8
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
9
|
+
export type Exact<T extends {
|
|
10
10
|
[key: string]: unknown;
|
|
11
11
|
}> = {
|
|
12
12
|
[K in keyof T]: T[K];
|
|
13
13
|
};
|
|
14
|
-
export
|
|
14
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
15
15
|
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
16
16
|
};
|
|
17
|
-
export
|
|
17
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
18
18
|
[SubKey in K]: Maybe<T[SubKey]>;
|
|
19
19
|
};
|
|
20
20
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
21
|
-
export
|
|
21
|
+
export type Scalars = {
|
|
22
22
|
ID: string;
|
|
23
23
|
String: string;
|
|
24
24
|
Boolean: boolean;
|
|
@@ -29,12 +29,12 @@ export declare type Scalars = {
|
|
|
29
29
|
JSONObject: any;
|
|
30
30
|
Upload: any;
|
|
31
31
|
};
|
|
32
|
-
export
|
|
32
|
+
export type AcceptUserInvitationResult = {
|
|
33
33
|
__typename?: 'AcceptUserInvitationResult';
|
|
34
34
|
success: Scalars['Boolean'];
|
|
35
35
|
};
|
|
36
36
|
/** A method of authentication for an Actor */
|
|
37
|
-
export
|
|
37
|
+
export type AccessToken = {
|
|
38
38
|
__typename?: 'AccessToken';
|
|
39
39
|
createdAt: Scalars['DateTime'];
|
|
40
40
|
id: Scalars['ID'];
|
|
@@ -45,7 +45,7 @@ export declare type AccessToken = {
|
|
|
45
45
|
updatedAt: Scalars['DateTime'];
|
|
46
46
|
visibleTokenPrefix: Scalars['String'];
|
|
47
47
|
};
|
|
48
|
-
export
|
|
48
|
+
export type AccessTokenMutation = {
|
|
49
49
|
__typename?: 'AccessTokenMutation';
|
|
50
50
|
/** Create an AccessToken for an Actor */
|
|
51
51
|
createAccessToken: CreateAccessTokenResponse;
|
|
@@ -54,13 +54,13 @@ export declare type AccessTokenMutation = {
|
|
|
54
54
|
/** Revoke an AccessToken */
|
|
55
55
|
setAccessTokenRevoked: AccessToken;
|
|
56
56
|
};
|
|
57
|
-
export
|
|
57
|
+
export type AccessTokenMutationCreateAccessTokenArgs = {
|
|
58
58
|
createAccessTokenData: CreateAccessTokenInput;
|
|
59
59
|
};
|
|
60
|
-
export
|
|
60
|
+
export type AccessTokenMutationDeleteAccessTokenArgs = {
|
|
61
61
|
id: Scalars['ID'];
|
|
62
62
|
};
|
|
63
|
-
export
|
|
63
|
+
export type AccessTokenMutationSetAccessTokenRevokedArgs = {
|
|
64
64
|
id: Scalars['ID'];
|
|
65
65
|
revoked?: InputMaybe<Scalars['Boolean']>;
|
|
66
66
|
};
|
|
@@ -68,7 +68,7 @@ export declare type AccessTokenMutationSetAccessTokenRevokedArgs = {
|
|
|
68
68
|
* An account is a container owning projects, credentials, billing and other organization
|
|
69
69
|
* data and settings. Actors may own and be members of accounts.
|
|
70
70
|
*/
|
|
71
|
-
export
|
|
71
|
+
export type Account = {
|
|
72
72
|
__typename?: 'Account';
|
|
73
73
|
/** @deprecated Legacy access tokens are deprecated */
|
|
74
74
|
accessTokens: Array<Maybe<AccessToken>>;
|
|
@@ -140,7 +140,7 @@ export declare type Account = {
|
|
|
140
140
|
* An account is a container owning projects, credentials, billing and other organization
|
|
141
141
|
* data and settings. Actors may own and be members of accounts.
|
|
142
142
|
*/
|
|
143
|
-
export
|
|
143
|
+
export type AccountActivityTimelineProjectActivitiesArgs = {
|
|
144
144
|
createdBefore?: InputMaybe<Scalars['DateTime']>;
|
|
145
145
|
filterTypes?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
|
|
146
146
|
limit: Scalars['Int'];
|
|
@@ -149,14 +149,14 @@ export declare type AccountActivityTimelineProjectActivitiesArgs = {
|
|
|
149
149
|
* An account is a container owning projects, credentials, billing and other organization
|
|
150
150
|
* data and settings. Actors may own and be members of accounts.
|
|
151
151
|
*/
|
|
152
|
-
export
|
|
152
|
+
export type AccountAppleAppIdentifiersArgs = {
|
|
153
153
|
bundleIdentifier?: InputMaybe<Scalars['String']>;
|
|
154
154
|
};
|
|
155
155
|
/**
|
|
156
156
|
* An account is a container owning projects, credentials, billing and other organization
|
|
157
157
|
* data and settings. Actors may own and be members of accounts.
|
|
158
158
|
*/
|
|
159
|
-
export
|
|
159
|
+
export type AccountAppleDevicesArgs = {
|
|
160
160
|
identifier?: InputMaybe<Scalars['String']>;
|
|
161
161
|
limit?: InputMaybe<Scalars['Int']>;
|
|
162
162
|
offset?: InputMaybe<Scalars['Int']>;
|
|
@@ -165,14 +165,14 @@ export declare type AccountAppleDevicesArgs = {
|
|
|
165
165
|
* An account is a container owning projects, credentials, billing and other organization
|
|
166
166
|
* data and settings. Actors may own and be members of accounts.
|
|
167
167
|
*/
|
|
168
|
-
export
|
|
168
|
+
export type AccountAppleProvisioningProfilesArgs = {
|
|
169
169
|
appleAppIdentifierId?: InputMaybe<Scalars['ID']>;
|
|
170
170
|
};
|
|
171
171
|
/**
|
|
172
172
|
* An account is a container owning projects, credentials, billing and other organization
|
|
173
173
|
* data and settings. Actors may own and be members of accounts.
|
|
174
174
|
*/
|
|
175
|
-
export
|
|
175
|
+
export type AccountAppleTeamsArgs = {
|
|
176
176
|
appleTeamIdentifier?: InputMaybe<Scalars['String']>;
|
|
177
177
|
limit?: InputMaybe<Scalars['Int']>;
|
|
178
178
|
offset?: InputMaybe<Scalars['Int']>;
|
|
@@ -181,7 +181,7 @@ export declare type AccountAppleTeamsArgs = {
|
|
|
181
181
|
* An account is a container owning projects, credentials, billing and other organization
|
|
182
182
|
* data and settings. Actors may own and be members of accounts.
|
|
183
183
|
*/
|
|
184
|
-
export
|
|
184
|
+
export type AccountAppsArgs = {
|
|
185
185
|
includeUnpublished?: InputMaybe<Scalars['Boolean']>;
|
|
186
186
|
limit: Scalars['Int'];
|
|
187
187
|
offset: Scalars['Int'];
|
|
@@ -190,14 +190,14 @@ export declare type AccountAppsArgs = {
|
|
|
190
190
|
* An account is a container owning projects, credentials, billing and other organization
|
|
191
191
|
* data and settings. Actors may own and be members of accounts.
|
|
192
192
|
*/
|
|
193
|
-
export
|
|
193
|
+
export type AccountBillingPeriodArgs = {
|
|
194
194
|
date: Scalars['DateTime'];
|
|
195
195
|
};
|
|
196
196
|
/**
|
|
197
197
|
* An account is a container owning projects, credentials, billing and other organization
|
|
198
198
|
* data and settings. Actors may own and be members of accounts.
|
|
199
199
|
*/
|
|
200
|
-
export
|
|
200
|
+
export type AccountBuildJobsArgs = {
|
|
201
201
|
limit: Scalars['Int'];
|
|
202
202
|
offset: Scalars['Int'];
|
|
203
203
|
status?: InputMaybe<BuildJobStatus>;
|
|
@@ -206,7 +206,7 @@ export declare type AccountBuildJobsArgs = {
|
|
|
206
206
|
* An account is a container owning projects, credentials, billing and other organization
|
|
207
207
|
* data and settings. Actors may own and be members of accounts.
|
|
208
208
|
*/
|
|
209
|
-
export
|
|
209
|
+
export type AccountBuildOrBuildJobsArgs = {
|
|
210
210
|
createdBefore?: InputMaybe<Scalars['DateTime']>;
|
|
211
211
|
limit: Scalars['Int'];
|
|
212
212
|
};
|
|
@@ -214,7 +214,7 @@ export declare type AccountBuildOrBuildJobsArgs = {
|
|
|
214
214
|
* An account is a container owning projects, credentials, billing and other organization
|
|
215
215
|
* data and settings. Actors may own and be members of accounts.
|
|
216
216
|
*/
|
|
217
|
-
export
|
|
217
|
+
export type AccountBuildsArgs = {
|
|
218
218
|
limit: Scalars['Int'];
|
|
219
219
|
offset: Scalars['Int'];
|
|
220
220
|
platform?: InputMaybe<AppPlatform>;
|
|
@@ -224,21 +224,21 @@ export declare type AccountBuildsArgs = {
|
|
|
224
224
|
* An account is a container owning projects, credentials, billing and other organization
|
|
225
225
|
* data and settings. Actors may own and be members of accounts.
|
|
226
226
|
*/
|
|
227
|
-
export
|
|
227
|
+
export type AccountEnvironmentSecretsArgs = {
|
|
228
228
|
filterNames?: InputMaybe<Array<Scalars['String']>>;
|
|
229
229
|
};
|
|
230
230
|
/**
|
|
231
231
|
* An account is a container owning projects, credentials, billing and other organization
|
|
232
232
|
* data and settings. Actors may own and be members of accounts.
|
|
233
233
|
*/
|
|
234
|
-
export
|
|
234
|
+
export type AccountSnacksArgs = {
|
|
235
235
|
limit: Scalars['Int'];
|
|
236
236
|
offset: Scalars['Int'];
|
|
237
237
|
};
|
|
238
|
-
export
|
|
238
|
+
export type AccountDataInput = {
|
|
239
239
|
name: Scalars['String'];
|
|
240
240
|
};
|
|
241
|
-
export
|
|
241
|
+
export type AccountMutation = {
|
|
242
242
|
__typename?: 'AccountMutation';
|
|
243
243
|
/**
|
|
244
244
|
* Makes a one time purchase
|
|
@@ -269,76 +269,76 @@ export declare type AccountMutation = {
|
|
|
269
269
|
/** Require authorization to send push notifications for experiences owned by this account */
|
|
270
270
|
setPushSecurityEnabled: Account;
|
|
271
271
|
};
|
|
272
|
-
export
|
|
272
|
+
export type AccountMutationBuyProductArgs = {
|
|
273
273
|
accountName: Scalars['ID'];
|
|
274
274
|
autoRenew?: InputMaybe<Scalars['Boolean']>;
|
|
275
275
|
paymentSource?: InputMaybe<Scalars['ID']>;
|
|
276
276
|
productId: Scalars['ID'];
|
|
277
277
|
};
|
|
278
|
-
export
|
|
278
|
+
export type AccountMutationCancelScheduledSubscriptionChangeArgs = {
|
|
279
279
|
accountID: Scalars['ID'];
|
|
280
280
|
};
|
|
281
|
-
export
|
|
281
|
+
export type AccountMutationCancelSubscriptionArgs = {
|
|
282
282
|
accountName: Scalars['ID'];
|
|
283
283
|
};
|
|
284
|
-
export
|
|
284
|
+
export type AccountMutationChangePlanArgs = {
|
|
285
285
|
accountID: Scalars['ID'];
|
|
286
286
|
couponCode?: InputMaybe<Scalars['String']>;
|
|
287
287
|
newPlanIdentifier: Scalars['String'];
|
|
288
288
|
};
|
|
289
|
-
export
|
|
289
|
+
export type AccountMutationGrantActorPermissionsArgs = {
|
|
290
290
|
accountID: Scalars['ID'];
|
|
291
291
|
actorID: Scalars['ID'];
|
|
292
292
|
permissions?: InputMaybe<Array<InputMaybe<Permission>>>;
|
|
293
293
|
};
|
|
294
|
-
export
|
|
294
|
+
export type AccountMutationRenameArgs = {
|
|
295
295
|
accountID: Scalars['ID'];
|
|
296
296
|
newName: Scalars['String'];
|
|
297
297
|
};
|
|
298
|
-
export
|
|
298
|
+
export type AccountMutationRequestRefundArgs = {
|
|
299
299
|
accountID: Scalars['ID'];
|
|
300
300
|
chargeID: Scalars['ID'];
|
|
301
301
|
description?: InputMaybe<Scalars['String']>;
|
|
302
302
|
reason?: InputMaybe<Scalars['String']>;
|
|
303
303
|
};
|
|
304
|
-
export
|
|
304
|
+
export type AccountMutationRevokeActorPermissionsArgs = {
|
|
305
305
|
accountID: Scalars['ID'];
|
|
306
306
|
actorID: Scalars['ID'];
|
|
307
307
|
permissions?: InputMaybe<Array<InputMaybe<Permission>>>;
|
|
308
308
|
};
|
|
309
|
-
export
|
|
309
|
+
export type AccountMutationSetBuildAutoRenewArgs = {
|
|
310
310
|
accountName: Scalars['ID'];
|
|
311
311
|
autoRenew?: InputMaybe<Scalars['Boolean']>;
|
|
312
312
|
};
|
|
313
|
-
export
|
|
313
|
+
export type AccountMutationSetPaymentSourceArgs = {
|
|
314
314
|
accountName: Scalars['ID'];
|
|
315
315
|
paymentSource: Scalars['ID'];
|
|
316
316
|
};
|
|
317
|
-
export
|
|
317
|
+
export type AccountMutationSetPushSecurityEnabledArgs = {
|
|
318
318
|
accountID: Scalars['ID'];
|
|
319
319
|
pushSecurityEnabled: Scalars['Boolean'];
|
|
320
320
|
};
|
|
321
|
-
export
|
|
321
|
+
export type AccountNotificationSubscriptionInput = {
|
|
322
322
|
accountId: Scalars['ID'];
|
|
323
323
|
event: NotificationEvent;
|
|
324
324
|
type: NotificationType;
|
|
325
325
|
userId: Scalars['ID'];
|
|
326
326
|
};
|
|
327
|
-
export
|
|
327
|
+
export type AccountQuery = {
|
|
328
328
|
__typename?: 'AccountQuery';
|
|
329
329
|
/** Query an Account by ID */
|
|
330
330
|
byId: Account;
|
|
331
331
|
/** Query an Account by name */
|
|
332
332
|
byName: Account;
|
|
333
333
|
};
|
|
334
|
-
export
|
|
334
|
+
export type AccountQueryByIdArgs = {
|
|
335
335
|
accountId: Scalars['String'];
|
|
336
336
|
};
|
|
337
|
-
export
|
|
337
|
+
export type AccountQueryByNameArgs = {
|
|
338
338
|
accountName: Scalars['String'];
|
|
339
339
|
};
|
|
340
340
|
/** Auth configuration data for an SSO account. */
|
|
341
|
-
export
|
|
341
|
+
export type AccountSsoConfiguration = {
|
|
342
342
|
__typename?: 'AccountSSOConfiguration';
|
|
343
343
|
authEndpoint?: Maybe<Scalars['String']>;
|
|
344
344
|
authProtocol: AuthProtocolType;
|
|
@@ -354,7 +354,7 @@ export declare type AccountSsoConfiguration = {
|
|
|
354
354
|
updatedAt: Scalars['DateTime'];
|
|
355
355
|
userInfoEndpoint?: Maybe<Scalars['String']>;
|
|
356
356
|
};
|
|
357
|
-
export
|
|
357
|
+
export type AccountSsoConfigurationData = {
|
|
358
358
|
authEndpoint?: InputMaybe<Scalars['String']>;
|
|
359
359
|
authProtocol: AuthProtocolType;
|
|
360
360
|
authProviderIdentifier: Scalars['String'];
|
|
@@ -366,7 +366,7 @@ export declare type AccountSsoConfigurationData = {
|
|
|
366
366
|
tokenEndpoint?: InputMaybe<Scalars['String']>;
|
|
367
367
|
userInfoEndpoint?: InputMaybe<Scalars['String']>;
|
|
368
368
|
};
|
|
369
|
-
export
|
|
369
|
+
export type AccountSsoConfigurationMutation = {
|
|
370
370
|
__typename?: 'AccountSSOConfigurationMutation';
|
|
371
371
|
/** Create an AccountSSOConfiguration for an Account */
|
|
372
372
|
createAccountSSOConfiguration: AccountSsoConfiguration;
|
|
@@ -375,19 +375,19 @@ export declare type AccountSsoConfigurationMutation = {
|
|
|
375
375
|
/** Update an AccountSSOConfiguration */
|
|
376
376
|
updateAccountSSOConfiguration: AccountSsoConfiguration;
|
|
377
377
|
};
|
|
378
|
-
export
|
|
378
|
+
export type AccountSsoConfigurationMutationCreateAccountSsoConfigurationArgs = {
|
|
379
379
|
accountId: Scalars['ID'];
|
|
380
380
|
accountSSOConfigurationData: AccountSsoConfigurationData;
|
|
381
381
|
};
|
|
382
|
-
export
|
|
382
|
+
export type AccountSsoConfigurationMutationDeleteAccountSsoConfigurationArgs = {
|
|
383
383
|
id: Scalars['ID'];
|
|
384
384
|
};
|
|
385
|
-
export
|
|
385
|
+
export type AccountSsoConfigurationMutationUpdateAccountSsoConfigurationArgs = {
|
|
386
386
|
accountSSOConfigurationData: AccountSsoConfigurationData;
|
|
387
387
|
id: Scalars['ID'];
|
|
388
388
|
};
|
|
389
389
|
/** Public auth configuration data for an SSO account. */
|
|
390
|
-
export
|
|
390
|
+
export type AccountSsoConfigurationPublicData = {
|
|
391
391
|
__typename?: 'AccountSSOConfigurationPublicData';
|
|
392
392
|
authEndpoint?: Maybe<Scalars['String']>;
|
|
393
393
|
authProtocol: AuthProtocolType;
|
|
@@ -400,15 +400,15 @@ export declare type AccountSsoConfigurationPublicData = {
|
|
|
400
400
|
tokenEndpoint?: Maybe<Scalars['String']>;
|
|
401
401
|
userInfoEndpoint?: Maybe<Scalars['String']>;
|
|
402
402
|
};
|
|
403
|
-
export
|
|
403
|
+
export type AccountSsoConfigurationPublicDataQuery = {
|
|
404
404
|
__typename?: 'AccountSSOConfigurationPublicDataQuery';
|
|
405
405
|
/** Get AccountSSOConfiguration public data by account name */
|
|
406
406
|
publicDataByAccountName: AccountSsoConfigurationPublicData;
|
|
407
407
|
};
|
|
408
|
-
export
|
|
408
|
+
export type AccountSsoConfigurationPublicDataQueryPublicDataByAccountNameArgs = {
|
|
409
409
|
accountName: Scalars['String'];
|
|
410
410
|
};
|
|
411
|
-
export
|
|
411
|
+
export type AccountUsageMetric = {
|
|
412
412
|
__typename?: 'AccountUsageMetric';
|
|
413
413
|
id: Scalars['ID'];
|
|
414
414
|
metricType: UsageMetricType;
|
|
@@ -416,7 +416,7 @@ export declare type AccountUsageMetric = {
|
|
|
416
416
|
timestamp: Scalars['DateTime'];
|
|
417
417
|
value: Scalars['Float'];
|
|
418
418
|
};
|
|
419
|
-
export
|
|
419
|
+
export type AccountUsageMetricAndCost = {
|
|
420
420
|
__typename?: 'AccountUsageMetricAndCost';
|
|
421
421
|
id: Scalars['ID'];
|
|
422
422
|
/** The limit, in units, allowed by this plan */
|
|
@@ -427,21 +427,21 @@ export declare type AccountUsageMetricAndCost = {
|
|
|
427
427
|
totalCost: Scalars['Float'];
|
|
428
428
|
value: Scalars['Float'];
|
|
429
429
|
};
|
|
430
|
-
export
|
|
430
|
+
export type AccountUsageMetrics = {
|
|
431
431
|
__typename?: 'AccountUsageMetrics';
|
|
432
432
|
byBillingPeriod: UsageMetricTotal;
|
|
433
433
|
metricsForServiceMetric: Array<AccountUsageMetric>;
|
|
434
434
|
};
|
|
435
|
-
export
|
|
435
|
+
export type AccountUsageMetricsByBillingPeriodArgs = {
|
|
436
436
|
date: Scalars['DateTime'];
|
|
437
437
|
};
|
|
438
|
-
export
|
|
438
|
+
export type AccountUsageMetricsMetricsForServiceMetricArgs = {
|
|
439
439
|
filterParams?: InputMaybe<Scalars['JSONObject']>;
|
|
440
440
|
granularity: UsageMetricsGranularity;
|
|
441
441
|
serviceMetric: EasServiceMetric;
|
|
442
442
|
timespan: UsageMetricsTimespan;
|
|
443
443
|
};
|
|
444
|
-
export
|
|
444
|
+
export type ActivityTimelineProjectActivity = {
|
|
445
445
|
activityTimestamp: Scalars['DateTime'];
|
|
446
446
|
actor?: Maybe<Actor>;
|
|
447
447
|
id: Scalars['ID'];
|
|
@@ -453,7 +453,7 @@ export declare enum ActivityTimelineProjectActivityType {
|
|
|
453
453
|
Update = "UPDATE"
|
|
454
454
|
}
|
|
455
455
|
/** A user or robot that can authenticate with Expo services and be a member of accounts. */
|
|
456
|
-
export
|
|
456
|
+
export type Actor = {
|
|
457
457
|
/** Access Tokens belonging to this actor */
|
|
458
458
|
accessTokens: Array<AccessToken>;
|
|
459
459
|
/** Associated accounts */
|
|
@@ -474,23 +474,23 @@ export declare type Actor = {
|
|
|
474
474
|
isExpoAdmin: Scalars['Boolean'];
|
|
475
475
|
};
|
|
476
476
|
/** A user or robot that can authenticate with Expo services and be a member of accounts. */
|
|
477
|
-
export
|
|
477
|
+
export type ActorFeatureGatesArgs = {
|
|
478
478
|
filter?: InputMaybe<Array<Scalars['String']>>;
|
|
479
479
|
};
|
|
480
|
-
export
|
|
480
|
+
export type ActorQuery = {
|
|
481
481
|
__typename?: 'ActorQuery';
|
|
482
482
|
/** Query an Actor by ID */
|
|
483
483
|
byId: Actor;
|
|
484
484
|
};
|
|
485
|
-
export
|
|
485
|
+
export type ActorQueryByIdArgs = {
|
|
486
486
|
id: Scalars['ID'];
|
|
487
487
|
};
|
|
488
|
-
export
|
|
488
|
+
export type AddUserInput = {
|
|
489
489
|
audience?: InputMaybe<MailchimpAudience>;
|
|
490
490
|
email: Scalars['String'];
|
|
491
491
|
tags?: InputMaybe<Array<MailchimpTag>>;
|
|
492
492
|
};
|
|
493
|
-
export
|
|
493
|
+
export type AddUserPayload = {
|
|
494
494
|
__typename?: 'AddUserPayload';
|
|
495
495
|
email_address?: Maybe<Scalars['String']>;
|
|
496
496
|
id?: Maybe<Scalars['String']>;
|
|
@@ -499,7 +499,7 @@ export declare type AddUserPayload = {
|
|
|
499
499
|
tags?: Maybe<Array<MailchimpTagPayload>>;
|
|
500
500
|
timestamp_signup?: Maybe<Scalars['String']>;
|
|
501
501
|
};
|
|
502
|
-
export
|
|
502
|
+
export type AddonDetails = {
|
|
503
503
|
__typename?: 'AddonDetails';
|
|
504
504
|
id: Scalars['ID'];
|
|
505
505
|
name: Scalars['String'];
|
|
@@ -507,7 +507,7 @@ export declare type AddonDetails = {
|
|
|
507
507
|
planId: Scalars['String'];
|
|
508
508
|
willCancel?: Maybe<Scalars['Boolean']>;
|
|
509
509
|
};
|
|
510
|
-
export
|
|
510
|
+
export type Address = {
|
|
511
511
|
__typename?: 'Address';
|
|
512
512
|
city?: Maybe<Scalars['String']>;
|
|
513
513
|
country?: Maybe<Scalars['String']>;
|
|
@@ -515,7 +515,7 @@ export declare type Address = {
|
|
|
515
515
|
state?: Maybe<Scalars['String']>;
|
|
516
516
|
zip?: Maybe<Scalars['String']>;
|
|
517
517
|
};
|
|
518
|
-
export
|
|
518
|
+
export type AndroidAppBuildCredentials = {
|
|
519
519
|
__typename?: 'AndroidAppBuildCredentials';
|
|
520
520
|
androidKeystore?: Maybe<AndroidKeystore>;
|
|
521
521
|
id: Scalars['ID'];
|
|
@@ -524,12 +524,12 @@ export declare type AndroidAppBuildCredentials = {
|
|
|
524
524
|
name: Scalars['String'];
|
|
525
525
|
};
|
|
526
526
|
/** @isDefault: if set, these build credentials will become the default for the Android app. All other build credentials will have their default status set to false. */
|
|
527
|
-
export
|
|
527
|
+
export type AndroidAppBuildCredentialsInput = {
|
|
528
528
|
isDefault: Scalars['Boolean'];
|
|
529
529
|
keystoreId: Scalars['ID'];
|
|
530
530
|
name: Scalars['String'];
|
|
531
531
|
};
|
|
532
|
-
export
|
|
532
|
+
export type AndroidAppBuildCredentialsMutation = {
|
|
533
533
|
__typename?: 'AndroidAppBuildCredentialsMutation';
|
|
534
534
|
/** Create a set of build credentials for an Android app */
|
|
535
535
|
createAndroidAppBuildCredentials: AndroidAppBuildCredentials;
|
|
@@ -542,26 +542,26 @@ export declare type AndroidAppBuildCredentialsMutation = {
|
|
|
542
542
|
/** Set the name of a set of build credentials to be used for an Android app */
|
|
543
543
|
setName: AndroidAppBuildCredentials;
|
|
544
544
|
};
|
|
545
|
-
export
|
|
545
|
+
export type AndroidAppBuildCredentialsMutationCreateAndroidAppBuildCredentialsArgs = {
|
|
546
546
|
androidAppBuildCredentialsInput: AndroidAppBuildCredentialsInput;
|
|
547
547
|
androidAppCredentialsId: Scalars['ID'];
|
|
548
548
|
};
|
|
549
|
-
export
|
|
549
|
+
export type AndroidAppBuildCredentialsMutationDeleteAndroidAppBuildCredentialsArgs = {
|
|
550
550
|
id: Scalars['ID'];
|
|
551
551
|
};
|
|
552
|
-
export
|
|
552
|
+
export type AndroidAppBuildCredentialsMutationSetDefaultArgs = {
|
|
553
553
|
id: Scalars['ID'];
|
|
554
554
|
isDefault: Scalars['Boolean'];
|
|
555
555
|
};
|
|
556
|
-
export
|
|
556
|
+
export type AndroidAppBuildCredentialsMutationSetKeystoreArgs = {
|
|
557
557
|
id: Scalars['ID'];
|
|
558
558
|
keystoreId: Scalars['ID'];
|
|
559
559
|
};
|
|
560
|
-
export
|
|
560
|
+
export type AndroidAppBuildCredentialsMutationSetNameArgs = {
|
|
561
561
|
id: Scalars['ID'];
|
|
562
562
|
name: Scalars['String'];
|
|
563
563
|
};
|
|
564
|
-
export
|
|
564
|
+
export type AndroidAppCredentials = {
|
|
565
565
|
__typename?: 'AndroidAppCredentials';
|
|
566
566
|
/** @deprecated use androidAppBuildCredentialsList instead */
|
|
567
567
|
androidAppBuildCredentialsArray: Array<AndroidAppBuildCredentials>;
|
|
@@ -573,15 +573,15 @@ export declare type AndroidAppCredentials = {
|
|
|
573
573
|
id: Scalars['ID'];
|
|
574
574
|
isLegacy: Scalars['Boolean'];
|
|
575
575
|
};
|
|
576
|
-
export
|
|
576
|
+
export type AndroidAppCredentialsFilter = {
|
|
577
577
|
applicationIdentifier?: InputMaybe<Scalars['String']>;
|
|
578
578
|
legacyOnly?: InputMaybe<Scalars['Boolean']>;
|
|
579
579
|
};
|
|
580
|
-
export
|
|
580
|
+
export type AndroidAppCredentialsInput = {
|
|
581
581
|
fcmId?: InputMaybe<Scalars['ID']>;
|
|
582
582
|
googleServiceAccountKeyForSubmissionsId?: InputMaybe<Scalars['ID']>;
|
|
583
583
|
};
|
|
584
|
-
export
|
|
584
|
+
export type AndroidAppCredentialsMutation = {
|
|
585
585
|
__typename?: 'AndroidAppCredentialsMutation';
|
|
586
586
|
/** Create a set of credentials for an Android app */
|
|
587
587
|
createAndroidAppCredentials: AndroidAppCredentials;
|
|
@@ -590,16 +590,16 @@ export declare type AndroidAppCredentialsMutation = {
|
|
|
590
590
|
/** Set the Google Service Account Key to be used for submitting an Android app */
|
|
591
591
|
setGoogleServiceAccountKeyForSubmissions: AndroidAppCredentials;
|
|
592
592
|
};
|
|
593
|
-
export
|
|
593
|
+
export type AndroidAppCredentialsMutationCreateAndroidAppCredentialsArgs = {
|
|
594
594
|
androidAppCredentialsInput: AndroidAppCredentialsInput;
|
|
595
595
|
appId: Scalars['ID'];
|
|
596
596
|
applicationIdentifier: Scalars['String'];
|
|
597
597
|
};
|
|
598
|
-
export
|
|
598
|
+
export type AndroidAppCredentialsMutationSetFcmArgs = {
|
|
599
599
|
fcmId: Scalars['ID'];
|
|
600
600
|
id: Scalars['ID'];
|
|
601
601
|
};
|
|
602
|
-
export
|
|
602
|
+
export type AndroidAppCredentialsMutationSetGoogleServiceAccountKeyForSubmissionsArgs = {
|
|
603
603
|
googleServiceAccountKeyId: Scalars['ID'];
|
|
604
604
|
id: Scalars['ID'];
|
|
605
605
|
};
|
|
@@ -609,7 +609,7 @@ export declare enum AndroidBuildType {
|
|
|
609
609
|
/** @deprecated Use developmentClient option instead. */
|
|
610
610
|
DevelopmentClient = "DEVELOPMENT_CLIENT"
|
|
611
611
|
}
|
|
612
|
-
export
|
|
612
|
+
export type AndroidBuilderEnvironmentInput = {
|
|
613
613
|
env?: InputMaybe<Scalars['JSONObject']>;
|
|
614
614
|
expoCli?: InputMaybe<Scalars['String']>;
|
|
615
615
|
image?: InputMaybe<Scalars['String']>;
|
|
@@ -617,7 +617,7 @@ export declare type AndroidBuilderEnvironmentInput = {
|
|
|
617
617
|
node?: InputMaybe<Scalars['String']>;
|
|
618
618
|
yarn?: InputMaybe<Scalars['String']>;
|
|
619
619
|
};
|
|
620
|
-
export
|
|
620
|
+
export type AndroidFcm = {
|
|
621
621
|
__typename?: 'AndroidFcm';
|
|
622
622
|
account: Account;
|
|
623
623
|
createdAt: Scalars['DateTime'];
|
|
@@ -631,32 +631,32 @@ export declare type AndroidFcm = {
|
|
|
631
631
|
updatedAt: Scalars['DateTime'];
|
|
632
632
|
version: AndroidFcmVersion;
|
|
633
633
|
};
|
|
634
|
-
export
|
|
634
|
+
export type AndroidFcmInput = {
|
|
635
635
|
credential: Scalars['String'];
|
|
636
636
|
version: AndroidFcmVersion;
|
|
637
637
|
};
|
|
638
|
-
export
|
|
638
|
+
export type AndroidFcmMutation = {
|
|
639
639
|
__typename?: 'AndroidFcmMutation';
|
|
640
640
|
/** Create an FCM credential */
|
|
641
641
|
createAndroidFcm: AndroidFcm;
|
|
642
642
|
/** Delete an FCM credential */
|
|
643
643
|
deleteAndroidFcm: DeleteAndroidFcmResult;
|
|
644
644
|
};
|
|
645
|
-
export
|
|
645
|
+
export type AndroidFcmMutationCreateAndroidFcmArgs = {
|
|
646
646
|
accountId: Scalars['ID'];
|
|
647
647
|
androidFcmInput: AndroidFcmInput;
|
|
648
648
|
};
|
|
649
|
-
export
|
|
649
|
+
export type AndroidFcmMutationDeleteAndroidFcmArgs = {
|
|
650
650
|
id: Scalars['ID'];
|
|
651
651
|
};
|
|
652
652
|
export declare enum AndroidFcmVersion {
|
|
653
653
|
Legacy = "LEGACY",
|
|
654
654
|
V1 = "V1"
|
|
655
655
|
}
|
|
656
|
-
export
|
|
656
|
+
export type AndroidJobBuildCredentialsInput = {
|
|
657
657
|
keystore: AndroidJobKeystoreInput;
|
|
658
658
|
};
|
|
659
|
-
export
|
|
659
|
+
export type AndroidJobInput = {
|
|
660
660
|
applicationArchivePath?: InputMaybe<Scalars['String']>;
|
|
661
661
|
/** @deprecated */
|
|
662
662
|
artifactPath?: InputMaybe<Scalars['String']>;
|
|
@@ -677,13 +677,13 @@ export declare type AndroidJobInput = {
|
|
|
677
677
|
username?: InputMaybe<Scalars['String']>;
|
|
678
678
|
version?: InputMaybe<AndroidJobVersionInput>;
|
|
679
679
|
};
|
|
680
|
-
export
|
|
680
|
+
export type AndroidJobKeystoreInput = {
|
|
681
681
|
dataBase64: Scalars['String'];
|
|
682
682
|
keyAlias: Scalars['String'];
|
|
683
683
|
keyPassword?: InputMaybe<Scalars['String']>;
|
|
684
684
|
keystorePassword: Scalars['String'];
|
|
685
685
|
};
|
|
686
|
-
export
|
|
686
|
+
export type AndroidJobOverridesInput = {
|
|
687
687
|
applicationArchivePath?: InputMaybe<Scalars['String']>;
|
|
688
688
|
/** @deprecated */
|
|
689
689
|
artifactPath?: InputMaybe<Scalars['String']>;
|
|
@@ -701,13 +701,13 @@ export declare type AndroidJobOverridesInput = {
|
|
|
701
701
|
username?: InputMaybe<Scalars['String']>;
|
|
702
702
|
version?: InputMaybe<AndroidJobVersionInput>;
|
|
703
703
|
};
|
|
704
|
-
export
|
|
704
|
+
export type AndroidJobSecretsInput = {
|
|
705
705
|
buildCredentials?: InputMaybe<AndroidJobBuildCredentialsInput>;
|
|
706
706
|
};
|
|
707
|
-
export
|
|
707
|
+
export type AndroidJobVersionInput = {
|
|
708
708
|
versionCode: Scalars['String'];
|
|
709
709
|
};
|
|
710
|
-
export
|
|
710
|
+
export type AndroidKeystore = {
|
|
711
711
|
__typename?: 'AndroidKeystore';
|
|
712
712
|
account: Account;
|
|
713
713
|
createdAt: Scalars['DateTime'];
|
|
@@ -722,25 +722,25 @@ export declare type AndroidKeystore = {
|
|
|
722
722
|
type: AndroidKeystoreType;
|
|
723
723
|
updatedAt: Scalars['DateTime'];
|
|
724
724
|
};
|
|
725
|
-
export
|
|
725
|
+
export type AndroidKeystoreInput = {
|
|
726
726
|
base64EncodedKeystore: Scalars['String'];
|
|
727
727
|
keyAlias: Scalars['String'];
|
|
728
728
|
keyPassword?: InputMaybe<Scalars['String']>;
|
|
729
729
|
keystorePassword: Scalars['String'];
|
|
730
730
|
type: AndroidKeystoreType;
|
|
731
731
|
};
|
|
732
|
-
export
|
|
732
|
+
export type AndroidKeystoreMutation = {
|
|
733
733
|
__typename?: 'AndroidKeystoreMutation';
|
|
734
734
|
/** Create a Keystore */
|
|
735
735
|
createAndroidKeystore?: Maybe<AndroidKeystore>;
|
|
736
736
|
/** Delete a Keystore */
|
|
737
737
|
deleteAndroidKeystore: DeleteAndroidKeystoreResult;
|
|
738
738
|
};
|
|
739
|
-
export
|
|
739
|
+
export type AndroidKeystoreMutationCreateAndroidKeystoreArgs = {
|
|
740
740
|
accountId: Scalars['ID'];
|
|
741
741
|
androidKeystoreInput: AndroidKeystoreInput;
|
|
742
742
|
};
|
|
743
|
-
export
|
|
743
|
+
export type AndroidKeystoreMutationDeleteAndroidKeystoreArgs = {
|
|
744
744
|
id: Scalars['ID'];
|
|
745
745
|
};
|
|
746
746
|
export declare enum AndroidKeystoreType {
|
|
@@ -748,7 +748,7 @@ export declare enum AndroidKeystoreType {
|
|
|
748
748
|
Pkcs12 = "PKCS12",
|
|
749
749
|
Unknown = "UNKNOWN"
|
|
750
750
|
}
|
|
751
|
-
export
|
|
751
|
+
export type AndroidSubmissionConfig = {
|
|
752
752
|
__typename?: 'AndroidSubmissionConfig';
|
|
753
753
|
/** @deprecated applicationIdentifier is deprecated and will be auto-detected on submit */
|
|
754
754
|
applicationIdentifier?: Maybe<Scalars['String']>;
|
|
@@ -757,7 +757,7 @@ export declare type AndroidSubmissionConfig = {
|
|
|
757
757
|
releaseStatus?: Maybe<SubmissionAndroidReleaseStatus>;
|
|
758
758
|
track: SubmissionAndroidTrack;
|
|
759
759
|
};
|
|
760
|
-
export
|
|
760
|
+
export type AndroidSubmissionConfigInput = {
|
|
761
761
|
applicationIdentifier?: InputMaybe<Scalars['String']>;
|
|
762
762
|
archiveUrl?: InputMaybe<Scalars['String']>;
|
|
763
763
|
changesNotSentForReview?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -767,7 +767,7 @@ export declare type AndroidSubmissionConfigInput = {
|
|
|
767
767
|
track: SubmissionAndroidTrack;
|
|
768
768
|
};
|
|
769
769
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
770
|
-
export
|
|
770
|
+
export type App = Project & {
|
|
771
771
|
__typename?: 'App';
|
|
772
772
|
/** @deprecated Legacy access tokens are deprecated */
|
|
773
773
|
accessTokens: Array<Maybe<AccessToken>>;
|
|
@@ -869,7 +869,7 @@ export declare type App = Project & {
|
|
|
869
869
|
webhooks: Array<Webhook>;
|
|
870
870
|
};
|
|
871
871
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
872
|
-
export
|
|
872
|
+
export type AppActivityTimelineProjectActivitiesArgs = {
|
|
873
873
|
createdBefore?: InputMaybe<Scalars['DateTime']>;
|
|
874
874
|
filterChannels?: InputMaybe<Array<Scalars['String']>>;
|
|
875
875
|
filterPlatforms?: InputMaybe<Array<AppPlatform>>;
|
|
@@ -878,22 +878,22 @@ export declare type AppActivityTimelineProjectActivitiesArgs = {
|
|
|
878
878
|
limit: Scalars['Int'];
|
|
879
879
|
};
|
|
880
880
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
881
|
-
export
|
|
881
|
+
export type AppAndroidAppCredentialsArgs = {
|
|
882
882
|
filter?: InputMaybe<AndroidAppCredentialsFilter>;
|
|
883
883
|
};
|
|
884
884
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
885
|
-
export
|
|
885
|
+
export type AppBuildJobsArgs = {
|
|
886
886
|
limit: Scalars['Int'];
|
|
887
887
|
offset: Scalars['Int'];
|
|
888
888
|
status?: InputMaybe<BuildStatus>;
|
|
889
889
|
};
|
|
890
890
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
891
|
-
export
|
|
891
|
+
export type AppBuildOrBuildJobsArgs = {
|
|
892
892
|
createdBefore?: InputMaybe<Scalars['DateTime']>;
|
|
893
893
|
limit: Scalars['Int'];
|
|
894
894
|
};
|
|
895
895
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
896
|
-
export
|
|
896
|
+
export type AppBuildsArgs = {
|
|
897
897
|
filter?: InputMaybe<BuildFilter>;
|
|
898
898
|
limit: Scalars['Int'];
|
|
899
899
|
offset: Scalars['Int'];
|
|
@@ -901,96 +901,96 @@ export declare type AppBuildsArgs = {
|
|
|
901
901
|
status?: InputMaybe<BuildStatus>;
|
|
902
902
|
};
|
|
903
903
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
904
|
-
export
|
|
904
|
+
export type AppDeploymentArgs = {
|
|
905
905
|
channel: Scalars['String'];
|
|
906
906
|
options?: InputMaybe<DeploymentOptions>;
|
|
907
907
|
runtimeVersion: Scalars['String'];
|
|
908
908
|
};
|
|
909
909
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
910
|
-
export
|
|
910
|
+
export type AppDeploymentNewArgs = {
|
|
911
911
|
channel: Scalars['String'];
|
|
912
912
|
runtimeVersion: Scalars['String'];
|
|
913
913
|
};
|
|
914
914
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
915
|
-
export
|
|
915
|
+
export type AppDeploymentsArgs = {
|
|
916
916
|
limit: Scalars['Int'];
|
|
917
917
|
mostRecentlyUpdatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
918
918
|
options?: InputMaybe<DeploymentOptions>;
|
|
919
919
|
};
|
|
920
920
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
921
|
-
export
|
|
921
|
+
export type AppDeploymentsNewArgs = {
|
|
922
922
|
after?: InputMaybe<Scalars['String']>;
|
|
923
923
|
before?: InputMaybe<Scalars['String']>;
|
|
924
924
|
first?: InputMaybe<Scalars['Int']>;
|
|
925
925
|
last?: InputMaybe<Scalars['Int']>;
|
|
926
926
|
};
|
|
927
927
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
928
|
-
export
|
|
928
|
+
export type AppEnvironmentSecretsArgs = {
|
|
929
929
|
filterNames?: InputMaybe<Array<Scalars['String']>>;
|
|
930
930
|
};
|
|
931
931
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
932
|
-
export
|
|
932
|
+
export type AppIosAppCredentialsArgs = {
|
|
933
933
|
filter?: InputMaybe<IosAppCredentialsFilter>;
|
|
934
934
|
};
|
|
935
935
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
936
|
-
export
|
|
936
|
+
export type AppLatestAppVersionByPlatformAndApplicationIdentifierArgs = {
|
|
937
937
|
applicationIdentifier: Scalars['String'];
|
|
938
938
|
platform: AppPlatform;
|
|
939
939
|
};
|
|
940
940
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
941
|
-
export
|
|
941
|
+
export type AppLatestReleaseForReleaseChannelArgs = {
|
|
942
942
|
platform: AppPlatform;
|
|
943
943
|
releaseChannel: Scalars['String'];
|
|
944
944
|
};
|
|
945
945
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
946
|
-
export
|
|
946
|
+
export type AppLikedByArgs = {
|
|
947
947
|
limit?: InputMaybe<Scalars['Int']>;
|
|
948
948
|
offset?: InputMaybe<Scalars['Int']>;
|
|
949
949
|
};
|
|
950
950
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
951
|
-
export
|
|
951
|
+
export type AppSubmissionsArgs = {
|
|
952
952
|
filter: SubmissionFilter;
|
|
953
953
|
limit: Scalars['Int'];
|
|
954
954
|
offset: Scalars['Int'];
|
|
955
955
|
};
|
|
956
956
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
957
|
-
export
|
|
957
|
+
export type AppUpdateBranchByNameArgs = {
|
|
958
958
|
name: Scalars['String'];
|
|
959
959
|
};
|
|
960
960
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
961
|
-
export
|
|
961
|
+
export type AppUpdateBranchesArgs = {
|
|
962
962
|
limit: Scalars['Int'];
|
|
963
963
|
offset: Scalars['Int'];
|
|
964
964
|
};
|
|
965
965
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
966
|
-
export
|
|
966
|
+
export type AppUpdateChannelByNameArgs = {
|
|
967
967
|
name: Scalars['String'];
|
|
968
968
|
};
|
|
969
969
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
970
|
-
export
|
|
970
|
+
export type AppUpdateChannelsArgs = {
|
|
971
971
|
limit: Scalars['Int'];
|
|
972
972
|
offset: Scalars['Int'];
|
|
973
973
|
};
|
|
974
974
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
975
|
-
export
|
|
975
|
+
export type AppUpdateGroupsArgs = {
|
|
976
976
|
filter?: InputMaybe<UpdatesFilter>;
|
|
977
977
|
limit: Scalars['Int'];
|
|
978
978
|
offset: Scalars['Int'];
|
|
979
979
|
};
|
|
980
980
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
981
|
-
export
|
|
981
|
+
export type AppUpdatesArgs = {
|
|
982
982
|
limit: Scalars['Int'];
|
|
983
983
|
offset: Scalars['Int'];
|
|
984
984
|
};
|
|
985
985
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
986
|
-
export
|
|
986
|
+
export type AppWebhooksArgs = {
|
|
987
987
|
filter?: InputMaybe<WebhookFilter>;
|
|
988
988
|
};
|
|
989
|
-
export
|
|
989
|
+
export type AppDataInput = {
|
|
990
990
|
id: Scalars['ID'];
|
|
991
991
|
privacy?: InputMaybe<Scalars['String']>;
|
|
992
992
|
};
|
|
993
|
-
export
|
|
993
|
+
export type AppIcon = {
|
|
994
994
|
__typename?: 'AppIcon';
|
|
995
995
|
/** @deprecated No longer supported */
|
|
996
996
|
colorPalette?: Maybe<Scalars['JSON']>;
|
|
@@ -998,16 +998,16 @@ export declare type AppIcon = {
|
|
|
998
998
|
primaryColor?: Maybe<Scalars['String']>;
|
|
999
999
|
url: Scalars['String'];
|
|
1000
1000
|
};
|
|
1001
|
-
export
|
|
1001
|
+
export type AppInfoInput = {
|
|
1002
1002
|
displayName?: InputMaybe<Scalars['String']>;
|
|
1003
1003
|
};
|
|
1004
|
-
export
|
|
1004
|
+
export type AppInput = {
|
|
1005
1005
|
accountId: Scalars['ID'];
|
|
1006
1006
|
appInfo?: InputMaybe<AppInfoInput>;
|
|
1007
1007
|
privacy: AppPrivacy;
|
|
1008
1008
|
projectName: Scalars['String'];
|
|
1009
1009
|
};
|
|
1010
|
-
export
|
|
1010
|
+
export type AppMutation = {
|
|
1011
1011
|
__typename?: 'AppMutation';
|
|
1012
1012
|
/** Create an unpublished app */
|
|
1013
1013
|
createApp: App;
|
|
@@ -1018,22 +1018,22 @@ export declare type AppMutation = {
|
|
|
1018
1018
|
/** Require api token to send push notifs for experience */
|
|
1019
1019
|
setPushSecurityEnabled: App;
|
|
1020
1020
|
};
|
|
1021
|
-
export
|
|
1021
|
+
export type AppMutationCreateAppArgs = {
|
|
1022
1022
|
appInput: AppInput;
|
|
1023
1023
|
};
|
|
1024
|
-
export
|
|
1024
|
+
export type AppMutationGrantAccessArgs = {
|
|
1025
1025
|
accessLevel?: InputMaybe<Scalars['String']>;
|
|
1026
1026
|
toUser: Scalars['ID'];
|
|
1027
1027
|
};
|
|
1028
|
-
export
|
|
1028
|
+
export type AppMutationSetAppInfoArgs = {
|
|
1029
1029
|
appId: Scalars['ID'];
|
|
1030
1030
|
appInfo: AppInfoInput;
|
|
1031
1031
|
};
|
|
1032
|
-
export
|
|
1032
|
+
export type AppMutationSetPushSecurityEnabledArgs = {
|
|
1033
1033
|
appId: Scalars['ID'];
|
|
1034
1034
|
pushSecurityEnabled: Scalars['Boolean'];
|
|
1035
1035
|
};
|
|
1036
|
-
export
|
|
1036
|
+
export type AppNotificationSubscriptionInput = {
|
|
1037
1037
|
appId: Scalars['ID'];
|
|
1038
1038
|
event: NotificationEvent;
|
|
1039
1039
|
type: NotificationType;
|
|
@@ -1048,7 +1048,7 @@ export declare enum AppPrivacy {
|
|
|
1048
1048
|
Public = "PUBLIC",
|
|
1049
1049
|
Unlisted = "UNLISTED"
|
|
1050
1050
|
}
|
|
1051
|
-
export
|
|
1051
|
+
export type AppQuery = {
|
|
1052
1052
|
__typename?: 'AppQuery';
|
|
1053
1053
|
/**
|
|
1054
1054
|
* Public apps in the app directory
|
|
@@ -1059,19 +1059,19 @@ export declare type AppQuery = {
|
|
|
1059
1059
|
/** Look up app by app id */
|
|
1060
1060
|
byId: App;
|
|
1061
1061
|
};
|
|
1062
|
-
export
|
|
1062
|
+
export type AppQueryAllArgs = {
|
|
1063
1063
|
filter: AppsFilter;
|
|
1064
1064
|
limit?: InputMaybe<Scalars['Int']>;
|
|
1065
1065
|
offset?: InputMaybe<Scalars['Int']>;
|
|
1066
1066
|
sort: AppSort;
|
|
1067
1067
|
};
|
|
1068
|
-
export
|
|
1068
|
+
export type AppQueryByFullNameArgs = {
|
|
1069
1069
|
fullName: Scalars['String'];
|
|
1070
1070
|
};
|
|
1071
|
-
export
|
|
1071
|
+
export type AppQueryByIdArgs = {
|
|
1072
1072
|
appId: Scalars['String'];
|
|
1073
1073
|
};
|
|
1074
|
-
export
|
|
1074
|
+
export type AppRelease = {
|
|
1075
1075
|
__typename?: 'AppRelease';
|
|
1076
1076
|
hash: Scalars['String'];
|
|
1077
1077
|
id: Scalars['ID'];
|
|
@@ -1090,7 +1090,7 @@ export declare enum AppSort {
|
|
|
1090
1090
|
/** Sort by highest trendScore */
|
|
1091
1091
|
Viewed = "VIEWED"
|
|
1092
1092
|
}
|
|
1093
|
-
export
|
|
1093
|
+
export type AppStoreConnectApiKey = {
|
|
1094
1094
|
__typename?: 'AppStoreConnectApiKey';
|
|
1095
1095
|
account: Account;
|
|
1096
1096
|
appleTeam?: Maybe<AppleTeam>;
|
|
@@ -1102,7 +1102,7 @@ export declare type AppStoreConnectApiKey = {
|
|
|
1102
1102
|
roles?: Maybe<Array<AppStoreConnectUserRole>>;
|
|
1103
1103
|
updatedAt: Scalars['DateTime'];
|
|
1104
1104
|
};
|
|
1105
|
-
export
|
|
1105
|
+
export type AppStoreConnectApiKeyInput = {
|
|
1106
1106
|
appleTeamId?: InputMaybe<Scalars['ID']>;
|
|
1107
1107
|
issuerIdentifier: Scalars['String'];
|
|
1108
1108
|
keyIdentifier: Scalars['String'];
|
|
@@ -1110,18 +1110,18 @@ export declare type AppStoreConnectApiKeyInput = {
|
|
|
1110
1110
|
name?: InputMaybe<Scalars['String']>;
|
|
1111
1111
|
roles?: InputMaybe<Array<AppStoreConnectUserRole>>;
|
|
1112
1112
|
};
|
|
1113
|
-
export
|
|
1113
|
+
export type AppStoreConnectApiKeyMutation = {
|
|
1114
1114
|
__typename?: 'AppStoreConnectApiKeyMutation';
|
|
1115
1115
|
/** Create an App Store Connect Api Key for an Apple Team */
|
|
1116
1116
|
createAppStoreConnectApiKey: AppStoreConnectApiKey;
|
|
1117
1117
|
/** Delete an App Store Connect Api Key */
|
|
1118
1118
|
deleteAppStoreConnectApiKey: DeleteAppStoreConnectApiKeyResult;
|
|
1119
1119
|
};
|
|
1120
|
-
export
|
|
1120
|
+
export type AppStoreConnectApiKeyMutationCreateAppStoreConnectApiKeyArgs = {
|
|
1121
1121
|
accountId: Scalars['ID'];
|
|
1122
1122
|
appStoreConnectApiKeyInput: AppStoreConnectApiKeyInput;
|
|
1123
1123
|
};
|
|
1124
|
-
export
|
|
1124
|
+
export type AppStoreConnectApiKeyMutationDeleteAppStoreConnectApiKeyArgs = {
|
|
1125
1125
|
id: Scalars['ID'];
|
|
1126
1126
|
};
|
|
1127
1127
|
export declare enum AppStoreConnectUserRole {
|
|
@@ -1143,7 +1143,7 @@ export declare enum AppStoreConnectUserRole {
|
|
|
1143
1143
|
Unknown = "UNKNOWN"
|
|
1144
1144
|
}
|
|
1145
1145
|
/** Represents Play Store/App Store version of an application */
|
|
1146
|
-
export
|
|
1146
|
+
export type AppVersion = {
|
|
1147
1147
|
__typename?: 'AppVersion';
|
|
1148
1148
|
/**
|
|
1149
1149
|
* Store identifier for an application
|
|
@@ -1167,7 +1167,7 @@ export declare type AppVersion = {
|
|
|
1167
1167
|
*/
|
|
1168
1168
|
storeVersion: Scalars['String'];
|
|
1169
1169
|
};
|
|
1170
|
-
export
|
|
1170
|
+
export type AppVersionInput = {
|
|
1171
1171
|
appId: Scalars['ID'];
|
|
1172
1172
|
applicationIdentifier: Scalars['String'];
|
|
1173
1173
|
buildVersion: Scalars['String'];
|
|
@@ -1175,15 +1175,15 @@ export declare type AppVersionInput = {
|
|
|
1175
1175
|
runtimeVersion?: InputMaybe<Scalars['String']>;
|
|
1176
1176
|
storeVersion: Scalars['String'];
|
|
1177
1177
|
};
|
|
1178
|
-
export
|
|
1178
|
+
export type AppVersionMutation = {
|
|
1179
1179
|
__typename?: 'AppVersionMutation';
|
|
1180
1180
|
/** Create an app version */
|
|
1181
1181
|
createAppVersion: AppVersion;
|
|
1182
1182
|
};
|
|
1183
|
-
export
|
|
1183
|
+
export type AppVersionMutationCreateAppVersionArgs = {
|
|
1184
1184
|
appVersionInput: AppVersionInput;
|
|
1185
1185
|
};
|
|
1186
|
-
export
|
|
1186
|
+
export type AppleAppIdentifier = {
|
|
1187
1187
|
__typename?: 'AppleAppIdentifier';
|
|
1188
1188
|
account: Account;
|
|
1189
1189
|
appleTeam?: Maybe<AppleTeam>;
|
|
@@ -1191,21 +1191,21 @@ export declare type AppleAppIdentifier = {
|
|
|
1191
1191
|
id: Scalars['ID'];
|
|
1192
1192
|
parentAppleAppIdentifier?: Maybe<AppleAppIdentifier>;
|
|
1193
1193
|
};
|
|
1194
|
-
export
|
|
1194
|
+
export type AppleAppIdentifierInput = {
|
|
1195
1195
|
appleTeamId?: InputMaybe<Scalars['ID']>;
|
|
1196
1196
|
bundleIdentifier: Scalars['String'];
|
|
1197
1197
|
parentAppleAppId?: InputMaybe<Scalars['ID']>;
|
|
1198
1198
|
};
|
|
1199
|
-
export
|
|
1199
|
+
export type AppleAppIdentifierMutation = {
|
|
1200
1200
|
__typename?: 'AppleAppIdentifierMutation';
|
|
1201
1201
|
/** Create an Identifier for an iOS App */
|
|
1202
1202
|
createAppleAppIdentifier: AppleAppIdentifier;
|
|
1203
1203
|
};
|
|
1204
|
-
export
|
|
1204
|
+
export type AppleAppIdentifierMutationCreateAppleAppIdentifierArgs = {
|
|
1205
1205
|
accountId: Scalars['ID'];
|
|
1206
1206
|
appleAppIdentifierInput: AppleAppIdentifierInput;
|
|
1207
1207
|
};
|
|
1208
|
-
export
|
|
1208
|
+
export type AppleDevice = {
|
|
1209
1209
|
__typename?: 'AppleDevice';
|
|
1210
1210
|
account: Account;
|
|
1211
1211
|
appleTeam: AppleTeam;
|
|
@@ -1221,7 +1221,7 @@ export declare enum AppleDeviceClass {
|
|
|
1221
1221
|
Ipad = "IPAD",
|
|
1222
1222
|
Iphone = "IPHONE"
|
|
1223
1223
|
}
|
|
1224
|
-
export
|
|
1224
|
+
export type AppleDeviceInput = {
|
|
1225
1225
|
appleTeamId: Scalars['ID'];
|
|
1226
1226
|
deviceClass?: InputMaybe<AppleDeviceClass>;
|
|
1227
1227
|
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -1230,43 +1230,43 @@ export declare type AppleDeviceInput = {
|
|
|
1230
1230
|
name?: InputMaybe<Scalars['String']>;
|
|
1231
1231
|
softwareVersion?: InputMaybe<Scalars['String']>;
|
|
1232
1232
|
};
|
|
1233
|
-
export
|
|
1233
|
+
export type AppleDeviceMutation = {
|
|
1234
1234
|
__typename?: 'AppleDeviceMutation';
|
|
1235
1235
|
/** Create an Apple Device */
|
|
1236
1236
|
createAppleDevice: AppleDevice;
|
|
1237
1237
|
/** Delete an Apple Device */
|
|
1238
1238
|
deleteAppleDevice: DeleteAppleDeviceResult;
|
|
1239
1239
|
};
|
|
1240
|
-
export
|
|
1240
|
+
export type AppleDeviceMutationCreateAppleDeviceArgs = {
|
|
1241
1241
|
accountId: Scalars['ID'];
|
|
1242
1242
|
appleDeviceInput: AppleDeviceInput;
|
|
1243
1243
|
};
|
|
1244
|
-
export
|
|
1244
|
+
export type AppleDeviceMutationDeleteAppleDeviceArgs = {
|
|
1245
1245
|
id: Scalars['ID'];
|
|
1246
1246
|
};
|
|
1247
|
-
export
|
|
1247
|
+
export type AppleDeviceRegistrationRequest = {
|
|
1248
1248
|
__typename?: 'AppleDeviceRegistrationRequest';
|
|
1249
1249
|
account: Account;
|
|
1250
1250
|
appleTeam: AppleTeam;
|
|
1251
1251
|
id: Scalars['ID'];
|
|
1252
1252
|
};
|
|
1253
|
-
export
|
|
1253
|
+
export type AppleDeviceRegistrationRequestMutation = {
|
|
1254
1254
|
__typename?: 'AppleDeviceRegistrationRequestMutation';
|
|
1255
1255
|
/** Create an Apple Device registration request */
|
|
1256
1256
|
createAppleDeviceRegistrationRequest: AppleDeviceRegistrationRequest;
|
|
1257
1257
|
};
|
|
1258
|
-
export
|
|
1258
|
+
export type AppleDeviceRegistrationRequestMutationCreateAppleDeviceRegistrationRequestArgs = {
|
|
1259
1259
|
accountId: Scalars['ID'];
|
|
1260
1260
|
appleTeamId: Scalars['ID'];
|
|
1261
1261
|
};
|
|
1262
|
-
export
|
|
1262
|
+
export type AppleDeviceRegistrationRequestQuery = {
|
|
1263
1263
|
__typename?: 'AppleDeviceRegistrationRequestQuery';
|
|
1264
1264
|
byId: AppleDeviceRegistrationRequest;
|
|
1265
1265
|
};
|
|
1266
|
-
export
|
|
1266
|
+
export type AppleDeviceRegistrationRequestQueryByIdArgs = {
|
|
1267
1267
|
id: Scalars['ID'];
|
|
1268
1268
|
};
|
|
1269
|
-
export
|
|
1269
|
+
export type AppleDistributionCertificate = {
|
|
1270
1270
|
__typename?: 'AppleDistributionCertificate';
|
|
1271
1271
|
account: Account;
|
|
1272
1272
|
appleTeam?: Maybe<AppleTeam>;
|
|
@@ -1282,28 +1282,28 @@ export declare type AppleDistributionCertificate = {
|
|
|
1282
1282
|
validityNotAfter: Scalars['DateTime'];
|
|
1283
1283
|
validityNotBefore: Scalars['DateTime'];
|
|
1284
1284
|
};
|
|
1285
|
-
export
|
|
1285
|
+
export type AppleDistributionCertificateInput = {
|
|
1286
1286
|
appleTeamId?: InputMaybe<Scalars['ID']>;
|
|
1287
1287
|
certP12: Scalars['String'];
|
|
1288
1288
|
certPassword: Scalars['String'];
|
|
1289
1289
|
certPrivateSigningKey?: InputMaybe<Scalars['String']>;
|
|
1290
1290
|
developerPortalIdentifier?: InputMaybe<Scalars['String']>;
|
|
1291
1291
|
};
|
|
1292
|
-
export
|
|
1292
|
+
export type AppleDistributionCertificateMutation = {
|
|
1293
1293
|
__typename?: 'AppleDistributionCertificateMutation';
|
|
1294
1294
|
/** Create a Distribution Certificate */
|
|
1295
1295
|
createAppleDistributionCertificate?: Maybe<AppleDistributionCertificate>;
|
|
1296
1296
|
/** Delete a Distribution Certificate */
|
|
1297
1297
|
deleteAppleDistributionCertificate: DeleteAppleDistributionCertificateResult;
|
|
1298
1298
|
};
|
|
1299
|
-
export
|
|
1299
|
+
export type AppleDistributionCertificateMutationCreateAppleDistributionCertificateArgs = {
|
|
1300
1300
|
accountId: Scalars['ID'];
|
|
1301
1301
|
appleDistributionCertificateInput: AppleDistributionCertificateInput;
|
|
1302
1302
|
};
|
|
1303
|
-
export
|
|
1303
|
+
export type AppleDistributionCertificateMutationDeleteAppleDistributionCertificateArgs = {
|
|
1304
1304
|
id: Scalars['ID'];
|
|
1305
1305
|
};
|
|
1306
|
-
export
|
|
1306
|
+
export type AppleProvisioningProfile = {
|
|
1307
1307
|
__typename?: 'AppleProvisioningProfile';
|
|
1308
1308
|
account: Account;
|
|
1309
1309
|
appleAppIdentifier: AppleAppIdentifier;
|
|
@@ -1318,11 +1318,11 @@ export declare type AppleProvisioningProfile = {
|
|
|
1318
1318
|
status: Scalars['String'];
|
|
1319
1319
|
updatedAt: Scalars['DateTime'];
|
|
1320
1320
|
};
|
|
1321
|
-
export
|
|
1321
|
+
export type AppleProvisioningProfileInput = {
|
|
1322
1322
|
appleProvisioningProfile: Scalars['String'];
|
|
1323
1323
|
developerPortalIdentifier?: InputMaybe<Scalars['String']>;
|
|
1324
1324
|
};
|
|
1325
|
-
export
|
|
1325
|
+
export type AppleProvisioningProfileMutation = {
|
|
1326
1326
|
__typename?: 'AppleProvisioningProfileMutation';
|
|
1327
1327
|
/** Create a Provisioning Profile */
|
|
1328
1328
|
createAppleProvisioningProfile: AppleProvisioningProfile;
|
|
@@ -1333,22 +1333,22 @@ export declare type AppleProvisioningProfileMutation = {
|
|
|
1333
1333
|
/** Update a Provisioning Profile */
|
|
1334
1334
|
updateAppleProvisioningProfile: AppleProvisioningProfile;
|
|
1335
1335
|
};
|
|
1336
|
-
export
|
|
1336
|
+
export type AppleProvisioningProfileMutationCreateAppleProvisioningProfileArgs = {
|
|
1337
1337
|
accountId: Scalars['ID'];
|
|
1338
1338
|
appleAppIdentifierId: Scalars['ID'];
|
|
1339
1339
|
appleProvisioningProfileInput: AppleProvisioningProfileInput;
|
|
1340
1340
|
};
|
|
1341
|
-
export
|
|
1341
|
+
export type AppleProvisioningProfileMutationDeleteAppleProvisioningProfileArgs = {
|
|
1342
1342
|
id: Scalars['ID'];
|
|
1343
1343
|
};
|
|
1344
|
-
export
|
|
1344
|
+
export type AppleProvisioningProfileMutationDeleteAppleProvisioningProfilesArgs = {
|
|
1345
1345
|
ids: Array<Scalars['ID']>;
|
|
1346
1346
|
};
|
|
1347
|
-
export
|
|
1347
|
+
export type AppleProvisioningProfileMutationUpdateAppleProvisioningProfileArgs = {
|
|
1348
1348
|
appleProvisioningProfileInput: AppleProvisioningProfileInput;
|
|
1349
1349
|
id: Scalars['ID'];
|
|
1350
1350
|
};
|
|
1351
|
-
export
|
|
1351
|
+
export type ApplePushKey = {
|
|
1352
1352
|
__typename?: 'ApplePushKey';
|
|
1353
1353
|
account: Account;
|
|
1354
1354
|
appleTeam?: Maybe<AppleTeam>;
|
|
@@ -1359,26 +1359,26 @@ export declare type ApplePushKey = {
|
|
|
1359
1359
|
keyP8: Scalars['String'];
|
|
1360
1360
|
updatedAt: Scalars['DateTime'];
|
|
1361
1361
|
};
|
|
1362
|
-
export
|
|
1362
|
+
export type ApplePushKeyInput = {
|
|
1363
1363
|
appleTeamId: Scalars['ID'];
|
|
1364
1364
|
keyIdentifier: Scalars['String'];
|
|
1365
1365
|
keyP8: Scalars['String'];
|
|
1366
1366
|
};
|
|
1367
|
-
export
|
|
1367
|
+
export type ApplePushKeyMutation = {
|
|
1368
1368
|
__typename?: 'ApplePushKeyMutation';
|
|
1369
1369
|
/** Create an Apple Push Notification key */
|
|
1370
1370
|
createApplePushKey: ApplePushKey;
|
|
1371
1371
|
/** Delete an Apple Push Notification key */
|
|
1372
1372
|
deleteApplePushKey: DeleteApplePushKeyResult;
|
|
1373
1373
|
};
|
|
1374
|
-
export
|
|
1374
|
+
export type ApplePushKeyMutationCreateApplePushKeyArgs = {
|
|
1375
1375
|
accountId: Scalars['ID'];
|
|
1376
1376
|
applePushKeyInput: ApplePushKeyInput;
|
|
1377
1377
|
};
|
|
1378
|
-
export
|
|
1378
|
+
export type ApplePushKeyMutationDeleteApplePushKeyArgs = {
|
|
1379
1379
|
id: Scalars['ID'];
|
|
1380
1380
|
};
|
|
1381
|
-
export
|
|
1381
|
+
export type AppleTeam = {
|
|
1382
1382
|
__typename?: 'AppleTeam';
|
|
1383
1383
|
account: Account;
|
|
1384
1384
|
appleAppIdentifiers: Array<AppleAppIdentifier>;
|
|
@@ -1390,34 +1390,34 @@ export declare type AppleTeam = {
|
|
|
1390
1390
|
appleTeamName?: Maybe<Scalars['String']>;
|
|
1391
1391
|
id: Scalars['ID'];
|
|
1392
1392
|
};
|
|
1393
|
-
export
|
|
1393
|
+
export type AppleTeamAppleAppIdentifiersArgs = {
|
|
1394
1394
|
bundleIdentifier?: InputMaybe<Scalars['String']>;
|
|
1395
1395
|
};
|
|
1396
|
-
export
|
|
1396
|
+
export type AppleTeamAppleDevicesArgs = {
|
|
1397
1397
|
limit?: InputMaybe<Scalars['Int']>;
|
|
1398
1398
|
offset?: InputMaybe<Scalars['Int']>;
|
|
1399
1399
|
};
|
|
1400
|
-
export
|
|
1400
|
+
export type AppleTeamAppleProvisioningProfilesArgs = {
|
|
1401
1401
|
appleAppIdentifierId?: InputMaybe<Scalars['ID']>;
|
|
1402
1402
|
};
|
|
1403
|
-
export
|
|
1403
|
+
export type AppleTeamInput = {
|
|
1404
1404
|
appleTeamIdentifier: Scalars['String'];
|
|
1405
1405
|
appleTeamName?: InputMaybe<Scalars['String']>;
|
|
1406
1406
|
};
|
|
1407
|
-
export
|
|
1407
|
+
export type AppleTeamMutation = {
|
|
1408
1408
|
__typename?: 'AppleTeamMutation';
|
|
1409
1409
|
/** Create an Apple Team */
|
|
1410
1410
|
createAppleTeam: AppleTeam;
|
|
1411
1411
|
};
|
|
1412
|
-
export
|
|
1412
|
+
export type AppleTeamMutationCreateAppleTeamArgs = {
|
|
1413
1413
|
accountId: Scalars['ID'];
|
|
1414
1414
|
appleTeamInput: AppleTeamInput;
|
|
1415
1415
|
};
|
|
1416
|
-
export
|
|
1416
|
+
export type AppleTeamQuery = {
|
|
1417
1417
|
__typename?: 'AppleTeamQuery';
|
|
1418
1418
|
byAppleTeamIdentifier?: Maybe<AppleTeam>;
|
|
1419
1419
|
};
|
|
1420
|
-
export
|
|
1420
|
+
export type AppleTeamQueryByAppleTeamIdentifierArgs = {
|
|
1421
1421
|
accountId: Scalars['ID'];
|
|
1422
1422
|
identifier: Scalars['String'];
|
|
1423
1423
|
};
|
|
@@ -1427,12 +1427,12 @@ export declare enum AppsFilter {
|
|
|
1427
1427
|
/** New Projects */
|
|
1428
1428
|
New = "NEW"
|
|
1429
1429
|
}
|
|
1430
|
-
export
|
|
1430
|
+
export type AscApiKeyInput = {
|
|
1431
1431
|
issuerIdentifier: Scalars['String'];
|
|
1432
1432
|
keyIdentifier: Scalars['String'];
|
|
1433
1433
|
keyP8: Scalars['String'];
|
|
1434
1434
|
};
|
|
1435
|
-
export
|
|
1435
|
+
export type AssetMetadataResult = {
|
|
1436
1436
|
__typename?: 'AssetMetadataResult';
|
|
1437
1437
|
status: AssetMetadataStatus;
|
|
1438
1438
|
storageKey: Scalars['String'];
|
|
@@ -1441,7 +1441,7 @@ export declare enum AssetMetadataStatus {
|
|
|
1441
1441
|
DoesNotExist = "DOES_NOT_EXIST",
|
|
1442
1442
|
Exists = "EXISTS"
|
|
1443
1443
|
}
|
|
1444
|
-
export
|
|
1444
|
+
export type AssetMutation = {
|
|
1445
1445
|
__typename?: 'AssetMutation';
|
|
1446
1446
|
/**
|
|
1447
1447
|
* Returns an array of specifications for upload. Each URL is valid for an hour.
|
|
@@ -1449,22 +1449,22 @@ export declare type AssetMutation = {
|
|
|
1449
1449
|
*/
|
|
1450
1450
|
getSignedAssetUploadSpecifications: GetSignedAssetUploadSpecificationsResult;
|
|
1451
1451
|
};
|
|
1452
|
-
export
|
|
1452
|
+
export type AssetMutationGetSignedAssetUploadSpecificationsArgs = {
|
|
1453
1453
|
assetContentTypes: Array<InputMaybe<Scalars['String']>>;
|
|
1454
1454
|
};
|
|
1455
1455
|
/** Check to see if assets with given storageKeys exist */
|
|
1456
|
-
export
|
|
1456
|
+
export type AssetQuery = {
|
|
1457
1457
|
__typename?: 'AssetQuery';
|
|
1458
1458
|
metadata: Array<AssetMetadataResult>;
|
|
1459
1459
|
};
|
|
1460
1460
|
/** Check to see if assets with given storageKeys exist */
|
|
1461
|
-
export
|
|
1461
|
+
export type AssetQueryMetadataArgs = {
|
|
1462
1462
|
storageKeys: Array<Scalars['String']>;
|
|
1463
1463
|
};
|
|
1464
1464
|
export declare enum AuthProtocolType {
|
|
1465
1465
|
Oidc = "OIDC"
|
|
1466
1466
|
}
|
|
1467
|
-
export
|
|
1467
|
+
export type Billing = {
|
|
1468
1468
|
__typename?: 'Billing';
|
|
1469
1469
|
/** History of invoices */
|
|
1470
1470
|
charges?: Maybe<Array<Maybe<Charge>>>;
|
|
@@ -1473,7 +1473,7 @@ export declare type Billing = {
|
|
|
1473
1473
|
payment?: Maybe<PaymentDetails>;
|
|
1474
1474
|
subscription?: Maybe<SubscriptionDetails>;
|
|
1475
1475
|
};
|
|
1476
|
-
export
|
|
1476
|
+
export type BillingPeriod = {
|
|
1477
1477
|
__typename?: 'BillingPeriod';
|
|
1478
1478
|
anchor: Scalars['DateTime'];
|
|
1479
1479
|
end: Scalars['DateTime'];
|
|
@@ -1481,7 +1481,7 @@ export declare type BillingPeriod = {
|
|
|
1481
1481
|
start: Scalars['DateTime'];
|
|
1482
1482
|
};
|
|
1483
1483
|
/** Represents an EAS Build */
|
|
1484
|
-
export
|
|
1484
|
+
export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
|
|
1485
1485
|
__typename?: 'Build';
|
|
1486
1486
|
activityTimestamp: Scalars['DateTime'];
|
|
1487
1487
|
actor?: Maybe<Actor>;
|
|
@@ -1539,22 +1539,22 @@ export declare type Build = ActivityTimelineProjectActivity & BuildOrBuildJob &
|
|
|
1539
1539
|
workerStartedAt?: Maybe<Scalars['DateTime']>;
|
|
1540
1540
|
};
|
|
1541
1541
|
/** Represents an EAS Build */
|
|
1542
|
-
export
|
|
1542
|
+
export type BuildCanRetryArgs = {
|
|
1543
1543
|
newMode?: InputMaybe<BuildMode>;
|
|
1544
1544
|
};
|
|
1545
|
-
export
|
|
1545
|
+
export type BuildArtifact = {
|
|
1546
1546
|
__typename?: 'BuildArtifact';
|
|
1547
1547
|
manifestPlistUrl?: Maybe<Scalars['String']>;
|
|
1548
1548
|
url: Scalars['String'];
|
|
1549
1549
|
};
|
|
1550
|
-
export
|
|
1550
|
+
export type BuildArtifacts = {
|
|
1551
1551
|
__typename?: 'BuildArtifacts';
|
|
1552
1552
|
applicationArchiveUrl?: Maybe<Scalars['String']>;
|
|
1553
1553
|
buildArtifactsUrl?: Maybe<Scalars['String']>;
|
|
1554
1554
|
buildUrl?: Maybe<Scalars['String']>;
|
|
1555
1555
|
xcodeBuildLogsUrl?: Maybe<Scalars['String']>;
|
|
1556
1556
|
};
|
|
1557
|
-
export
|
|
1557
|
+
export type BuildCacheInput = {
|
|
1558
1558
|
cacheDefaultPaths?: InputMaybe<Scalars['Boolean']>;
|
|
1559
1559
|
clear?: InputMaybe<Scalars['Boolean']>;
|
|
1560
1560
|
customPaths?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
@@ -1565,13 +1565,13 @@ export declare enum BuildCredentialsSource {
|
|
|
1565
1565
|
Local = "LOCAL",
|
|
1566
1566
|
Remote = "REMOTE"
|
|
1567
1567
|
}
|
|
1568
|
-
export
|
|
1568
|
+
export type BuildError = {
|
|
1569
1569
|
__typename?: 'BuildError';
|
|
1570
1570
|
docsUrl?: Maybe<Scalars['String']>;
|
|
1571
1571
|
errorCode: Scalars['String'];
|
|
1572
1572
|
message: Scalars['String'];
|
|
1573
1573
|
};
|
|
1574
|
-
export
|
|
1574
|
+
export type BuildFilter = {
|
|
1575
1575
|
appBuildVersion?: InputMaybe<Scalars['String']>;
|
|
1576
1576
|
appIdentifier?: InputMaybe<Scalars['String']>;
|
|
1577
1577
|
appVersion?: InputMaybe<Scalars['String']>;
|
|
@@ -1589,7 +1589,7 @@ export declare enum BuildIosEnterpriseProvisioning {
|
|
|
1589
1589
|
Universal = "UNIVERSAL"
|
|
1590
1590
|
}
|
|
1591
1591
|
/** Represents an Standalone App build job */
|
|
1592
|
-
export
|
|
1592
|
+
export type BuildJob = ActivityTimelineProjectActivity & BuildOrBuildJob & {
|
|
1593
1593
|
__typename?: 'BuildJob';
|
|
1594
1594
|
activityTimestamp: Scalars['DateTime'];
|
|
1595
1595
|
actor?: Maybe<Actor>;
|
|
@@ -1613,13 +1613,13 @@ export declare enum BuildJobLogsFormat {
|
|
|
1613
1613
|
Json = "JSON",
|
|
1614
1614
|
Raw = "RAW"
|
|
1615
1615
|
}
|
|
1616
|
-
export
|
|
1616
|
+
export type BuildJobMutation = {
|
|
1617
1617
|
__typename?: 'BuildJobMutation';
|
|
1618
1618
|
cancel: BuildJob;
|
|
1619
1619
|
del?: Maybe<BuildJob>;
|
|
1620
1620
|
restart: BuildJob;
|
|
1621
1621
|
};
|
|
1622
|
-
export
|
|
1622
|
+
export type BuildJobQuery = {
|
|
1623
1623
|
__typename?: 'BuildJobQuery';
|
|
1624
1624
|
/**
|
|
1625
1625
|
* get all build jobs by an optional filter
|
|
@@ -1628,7 +1628,7 @@ export declare type BuildJobQuery = {
|
|
|
1628
1628
|
all: Array<Maybe<BuildJob>>;
|
|
1629
1629
|
byId: BuildJob;
|
|
1630
1630
|
};
|
|
1631
|
-
export
|
|
1631
|
+
export type BuildJobQueryAllArgs = {
|
|
1632
1632
|
experienceSlug?: InputMaybe<Scalars['String']>;
|
|
1633
1633
|
limit?: InputMaybe<Scalars['Int']>;
|
|
1634
1634
|
offset?: InputMaybe<Scalars['Int']>;
|
|
@@ -1636,7 +1636,7 @@ export declare type BuildJobQueryAllArgs = {
|
|
|
1636
1636
|
status?: InputMaybe<BuildJobStatus>;
|
|
1637
1637
|
username?: InputMaybe<Scalars['String']>;
|
|
1638
1638
|
};
|
|
1639
|
-
export
|
|
1639
|
+
export type BuildJobQueryByIdArgs = {
|
|
1640
1640
|
buildId: Scalars['ID'];
|
|
1641
1641
|
};
|
|
1642
1642
|
export declare enum BuildJobStatus {
|
|
@@ -1647,12 +1647,12 @@ export declare enum BuildJobStatus {
|
|
|
1647
1647
|
SentToQueue = "SENT_TO_QUEUE",
|
|
1648
1648
|
Started = "STARTED"
|
|
1649
1649
|
}
|
|
1650
|
-
export
|
|
1650
|
+
export type BuildLogs = {
|
|
1651
1651
|
__typename?: 'BuildLogs';
|
|
1652
1652
|
format?: Maybe<BuildJobLogsFormat>;
|
|
1653
1653
|
url?: Maybe<Scalars['String']>;
|
|
1654
1654
|
};
|
|
1655
|
-
export
|
|
1655
|
+
export type BuildMetadataInput = {
|
|
1656
1656
|
appBuildVersion?: InputMaybe<Scalars['String']>;
|
|
1657
1657
|
appIdentifier?: InputMaybe<Scalars['String']>;
|
|
1658
1658
|
appName?: InputMaybe<Scalars['String']>;
|
|
@@ -1678,7 +1678,7 @@ export declare type BuildMetadataInput = {
|
|
|
1678
1678
|
username?: InputMaybe<Scalars['String']>;
|
|
1679
1679
|
workflow?: InputMaybe<BuildWorkflow>;
|
|
1680
1680
|
};
|
|
1681
|
-
export
|
|
1681
|
+
export type BuildMetrics = {
|
|
1682
1682
|
__typename?: 'BuildMetrics';
|
|
1683
1683
|
buildDuration?: Maybe<Scalars['Int']>;
|
|
1684
1684
|
buildQueueTime?: Maybe<Scalars['Int']>;
|
|
@@ -1688,7 +1688,7 @@ export declare enum BuildMode {
|
|
|
1688
1688
|
Build = "BUILD",
|
|
1689
1689
|
Resign = "RESIGN"
|
|
1690
1690
|
}
|
|
1691
|
-
export
|
|
1691
|
+
export type BuildMutation = {
|
|
1692
1692
|
__typename?: 'BuildMutation';
|
|
1693
1693
|
/**
|
|
1694
1694
|
* Cancel an EAS Build build
|
|
@@ -1713,47 +1713,47 @@ export declare type BuildMutation = {
|
|
|
1713
1713
|
/** Retry an iOS EAS Build */
|
|
1714
1714
|
retryIosBuild: Build;
|
|
1715
1715
|
};
|
|
1716
|
-
export
|
|
1716
|
+
export type BuildMutationCancelBuildArgs = {
|
|
1717
1717
|
buildId: Scalars['ID'];
|
|
1718
1718
|
};
|
|
1719
|
-
export
|
|
1719
|
+
export type BuildMutationCreateAndroidBuildArgs = {
|
|
1720
1720
|
appId: Scalars['ID'];
|
|
1721
1721
|
buildParams?: InputMaybe<BuildParamsInput>;
|
|
1722
1722
|
job: AndroidJobInput;
|
|
1723
1723
|
metadata?: InputMaybe<BuildMetadataInput>;
|
|
1724
1724
|
};
|
|
1725
|
-
export
|
|
1725
|
+
export type BuildMutationCreateIosBuildArgs = {
|
|
1726
1726
|
appId: Scalars['ID'];
|
|
1727
1727
|
buildParams?: InputMaybe<BuildParamsInput>;
|
|
1728
1728
|
job: IosJobInput;
|
|
1729
1729
|
metadata?: InputMaybe<BuildMetadataInput>;
|
|
1730
1730
|
};
|
|
1731
|
-
export
|
|
1731
|
+
export type BuildMutationDeleteBuildArgs = {
|
|
1732
1732
|
buildId: Scalars['ID'];
|
|
1733
1733
|
};
|
|
1734
|
-
export
|
|
1734
|
+
export type BuildMutationRetryAndroidBuildArgs = {
|
|
1735
1735
|
buildId: Scalars['ID'];
|
|
1736
1736
|
jobOverrides?: InputMaybe<AndroidJobOverridesInput>;
|
|
1737
1737
|
};
|
|
1738
|
-
export
|
|
1738
|
+
export type BuildMutationRetryBuildArgs = {
|
|
1739
1739
|
buildId: Scalars['ID'];
|
|
1740
1740
|
};
|
|
1741
|
-
export
|
|
1741
|
+
export type BuildMutationRetryIosBuildArgs = {
|
|
1742
1742
|
buildId: Scalars['ID'];
|
|
1743
1743
|
jobOverrides?: InputMaybe<IosJobOverridesInput>;
|
|
1744
1744
|
};
|
|
1745
|
-
export
|
|
1745
|
+
export type BuildOrBuildJob = {
|
|
1746
1746
|
id: Scalars['ID'];
|
|
1747
1747
|
};
|
|
1748
|
-
export
|
|
1748
|
+
export type BuildOrBuildJobQuery = {
|
|
1749
1749
|
__typename?: 'BuildOrBuildJobQuery';
|
|
1750
1750
|
/** Look up EAS Build or Classic Build Job by ID */
|
|
1751
1751
|
byId: EasBuildOrClassicBuildJob;
|
|
1752
1752
|
};
|
|
1753
|
-
export
|
|
1753
|
+
export type BuildOrBuildJobQueryByIdArgs = {
|
|
1754
1754
|
buildOrBuildJobId: Scalars['ID'];
|
|
1755
1755
|
};
|
|
1756
|
-
export
|
|
1756
|
+
export type BuildParamsInput = {
|
|
1757
1757
|
resourceClass: BuildResourceClass;
|
|
1758
1758
|
};
|
|
1759
1759
|
export declare enum BuildPriority {
|
|
@@ -1762,7 +1762,7 @@ export declare enum BuildPriority {
|
|
|
1762
1762
|
NormalPlus = "NORMAL_PLUS"
|
|
1763
1763
|
}
|
|
1764
1764
|
/** Publicly visible data for a Build. */
|
|
1765
|
-
export
|
|
1765
|
+
export type BuildPublicData = {
|
|
1766
1766
|
__typename?: 'BuildPublicData';
|
|
1767
1767
|
artifacts: PublicArtifacts;
|
|
1768
1768
|
distribution?: Maybe<DistributionType>;
|
|
@@ -1771,15 +1771,15 @@ export declare type BuildPublicData = {
|
|
|
1771
1771
|
project: ProjectPublicData;
|
|
1772
1772
|
status: BuildStatus;
|
|
1773
1773
|
};
|
|
1774
|
-
export
|
|
1774
|
+
export type BuildPublicDataQuery = {
|
|
1775
1775
|
__typename?: 'BuildPublicDataQuery';
|
|
1776
1776
|
/** Get BuildPublicData by ID */
|
|
1777
1777
|
byId?: Maybe<BuildPublicData>;
|
|
1778
1778
|
};
|
|
1779
|
-
export
|
|
1779
|
+
export type BuildPublicDataQueryByIdArgs = {
|
|
1780
1780
|
id: Scalars['ID'];
|
|
1781
1781
|
};
|
|
1782
|
-
export
|
|
1782
|
+
export type BuildQuery = {
|
|
1783
1783
|
__typename?: 'BuildQuery';
|
|
1784
1784
|
/**
|
|
1785
1785
|
* Get all builds.
|
|
@@ -1796,23 +1796,23 @@ export declare type BuildQuery = {
|
|
|
1796
1796
|
/** Look up EAS Build by build ID */
|
|
1797
1797
|
byId: Build;
|
|
1798
1798
|
};
|
|
1799
|
-
export
|
|
1799
|
+
export type BuildQueryAllArgs = {
|
|
1800
1800
|
limit?: InputMaybe<Scalars['Int']>;
|
|
1801
1801
|
offset?: InputMaybe<Scalars['Int']>;
|
|
1802
1802
|
order?: InputMaybe<Order>;
|
|
1803
1803
|
statuses?: InputMaybe<Array<BuildStatus>>;
|
|
1804
1804
|
};
|
|
1805
|
-
export
|
|
1805
|
+
export type BuildQueryAllForAppArgs = {
|
|
1806
1806
|
appId: Scalars['String'];
|
|
1807
1807
|
limit?: InputMaybe<Scalars['Int']>;
|
|
1808
1808
|
offset?: InputMaybe<Scalars['Int']>;
|
|
1809
1809
|
platform?: InputMaybe<AppPlatform>;
|
|
1810
1810
|
status?: InputMaybe<BuildStatus>;
|
|
1811
1811
|
};
|
|
1812
|
-
export
|
|
1812
|
+
export type BuildQueryByIdArgs = {
|
|
1813
1813
|
buildId: Scalars['ID'];
|
|
1814
1814
|
};
|
|
1815
|
-
export
|
|
1815
|
+
export type BuildResignInput = {
|
|
1816
1816
|
applicationArchiveSource?: InputMaybe<ProjectArchiveSourceInput>;
|
|
1817
1817
|
};
|
|
1818
1818
|
export declare enum BuildResourceClass {
|
|
@@ -1836,7 +1836,7 @@ export declare enum BuildStatus {
|
|
|
1836
1836
|
InQueue = "IN_QUEUE",
|
|
1837
1837
|
New = "NEW"
|
|
1838
1838
|
}
|
|
1839
|
-
export
|
|
1839
|
+
export type BuildUpdatesInput = {
|
|
1840
1840
|
channel?: InputMaybe<Scalars['String']>;
|
|
1841
1841
|
};
|
|
1842
1842
|
export declare enum BuildWorkflow {
|
|
@@ -1848,7 +1848,7 @@ export declare enum CacheControlScope {
|
|
|
1848
1848
|
Private = "PRIVATE",
|
|
1849
1849
|
Public = "PUBLIC"
|
|
1850
1850
|
}
|
|
1851
|
-
export
|
|
1851
|
+
export type Card = {
|
|
1852
1852
|
__typename?: 'Card';
|
|
1853
1853
|
brand?: Maybe<Scalars['String']>;
|
|
1854
1854
|
cardHolder?: Maybe<Scalars['String']>;
|
|
@@ -1856,7 +1856,7 @@ export declare type Card = {
|
|
|
1856
1856
|
expYear?: Maybe<Scalars['Int']>;
|
|
1857
1857
|
last4?: Maybe<Scalars['String']>;
|
|
1858
1858
|
};
|
|
1859
|
-
export
|
|
1859
|
+
export type Charge = {
|
|
1860
1860
|
__typename?: 'Charge';
|
|
1861
1861
|
amount?: Maybe<Scalars['Int']>;
|
|
1862
1862
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1867,7 +1867,7 @@ export declare type Charge = {
|
|
|
1867
1867
|
wasRefunded?: Maybe<Scalars['Boolean']>;
|
|
1868
1868
|
};
|
|
1869
1869
|
/** Represents a client build request */
|
|
1870
|
-
export
|
|
1870
|
+
export type ClientBuild = {
|
|
1871
1871
|
__typename?: 'ClientBuild';
|
|
1872
1872
|
buildJobId?: Maybe<Scalars['String']>;
|
|
1873
1873
|
id: Scalars['ID'];
|
|
@@ -1876,160 +1876,160 @@ export declare type ClientBuild = {
|
|
|
1876
1876
|
userFacingErrorMessage?: Maybe<Scalars['String']>;
|
|
1877
1877
|
userId?: Maybe<Scalars['String']>;
|
|
1878
1878
|
};
|
|
1879
|
-
export
|
|
1879
|
+
export type ClientBuildQuery = {
|
|
1880
1880
|
__typename?: 'ClientBuildQuery';
|
|
1881
1881
|
byId: ClientBuild;
|
|
1882
1882
|
};
|
|
1883
|
-
export
|
|
1883
|
+
export type ClientBuildQueryByIdArgs = {
|
|
1884
1884
|
requestId: Scalars['ID'];
|
|
1885
1885
|
};
|
|
1886
|
-
export
|
|
1886
|
+
export type CodeSigningInfo = {
|
|
1887
1887
|
__typename?: 'CodeSigningInfo';
|
|
1888
1888
|
alg: Scalars['String'];
|
|
1889
1889
|
keyid: Scalars['String'];
|
|
1890
1890
|
sig: Scalars['String'];
|
|
1891
1891
|
};
|
|
1892
|
-
export
|
|
1892
|
+
export type CodeSigningInfoInput = {
|
|
1893
1893
|
alg: Scalars['String'];
|
|
1894
1894
|
keyid: Scalars['String'];
|
|
1895
1895
|
sig: Scalars['String'];
|
|
1896
1896
|
};
|
|
1897
|
-
export
|
|
1897
|
+
export type Concurrencies = {
|
|
1898
1898
|
__typename?: 'Concurrencies';
|
|
1899
1899
|
android: Scalars['Int'];
|
|
1900
1900
|
ios: Scalars['Int'];
|
|
1901
1901
|
total: Scalars['Int'];
|
|
1902
1902
|
};
|
|
1903
|
-
export
|
|
1903
|
+
export type CreateAccessTokenInput = {
|
|
1904
1904
|
actorID: Scalars['ID'];
|
|
1905
1905
|
note?: InputMaybe<Scalars['String']>;
|
|
1906
1906
|
};
|
|
1907
|
-
export
|
|
1907
|
+
export type CreateAccessTokenResponse = {
|
|
1908
1908
|
__typename?: 'CreateAccessTokenResponse';
|
|
1909
1909
|
/** AccessToken created */
|
|
1910
1910
|
accessToken: AccessToken;
|
|
1911
1911
|
/** Full token string to be used for authentication */
|
|
1912
1912
|
token: Scalars['String'];
|
|
1913
1913
|
};
|
|
1914
|
-
export
|
|
1914
|
+
export type CreateAndroidSubmissionInput = {
|
|
1915
1915
|
appId: Scalars['ID'];
|
|
1916
1916
|
archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;
|
|
1917
1917
|
archiveUrl?: InputMaybe<Scalars['String']>;
|
|
1918
1918
|
config: AndroidSubmissionConfigInput;
|
|
1919
1919
|
submittedBuildId?: InputMaybe<Scalars['ID']>;
|
|
1920
1920
|
};
|
|
1921
|
-
export
|
|
1921
|
+
export type CreateBuildResult = {
|
|
1922
1922
|
__typename?: 'CreateBuildResult';
|
|
1923
1923
|
build: Build;
|
|
1924
1924
|
deprecationInfo?: Maybe<EasBuildDeprecationInfo>;
|
|
1925
1925
|
};
|
|
1926
|
-
export
|
|
1926
|
+
export type CreateEnvironmentSecretInput = {
|
|
1927
1927
|
name: Scalars['String'];
|
|
1928
1928
|
type?: InputMaybe<EnvironmentSecretType>;
|
|
1929
1929
|
value: Scalars['String'];
|
|
1930
1930
|
};
|
|
1931
|
-
export
|
|
1931
|
+
export type CreateGitHubAppInstallationInput = {
|
|
1932
1932
|
accountId: Scalars['ID'];
|
|
1933
1933
|
installationIdentifier: Scalars['Int'];
|
|
1934
1934
|
};
|
|
1935
|
-
export
|
|
1935
|
+
export type CreateGitHubRepositoryInput = {
|
|
1936
1936
|
appId: Scalars['ID'];
|
|
1937
1937
|
githubAppInstallationId: Scalars['ID'];
|
|
1938
1938
|
githubRepositoryIdentifier: Scalars['Int'];
|
|
1939
1939
|
nodeIdentifier: Scalars['String'];
|
|
1940
1940
|
};
|
|
1941
|
-
export
|
|
1941
|
+
export type CreateGitHubRepositorySettingsInput = {
|
|
1942
1942
|
appId: Scalars['ID'];
|
|
1943
1943
|
/** The base directory is the directory to change to before starting a build. This string should be a properly formatted Unix path starting with '/', './', or the name of the directory relative to the root of the repository. Valid examples include: '/apps/expo-app', './apps/expo-app', and 'apps/expo-app'. This is intended for monorepos or apps that live in a subdirectory of a repository. */
|
|
1944
1944
|
baseDirectory: Scalars['String'];
|
|
1945
1945
|
};
|
|
1946
|
-
export
|
|
1946
|
+
export type CreateIosSubmissionInput = {
|
|
1947
1947
|
appId: Scalars['ID'];
|
|
1948
1948
|
archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;
|
|
1949
1949
|
archiveUrl?: InputMaybe<Scalars['String']>;
|
|
1950
1950
|
config: IosSubmissionConfigInput;
|
|
1951
1951
|
submittedBuildId?: InputMaybe<Scalars['ID']>;
|
|
1952
1952
|
};
|
|
1953
|
-
export
|
|
1953
|
+
export type CreateServerlessFunctionUploadUrlResult = {
|
|
1954
1954
|
__typename?: 'CreateServerlessFunctionUploadUrlResult';
|
|
1955
1955
|
formDataFields: Scalars['JSONObject'];
|
|
1956
1956
|
url: Scalars['String'];
|
|
1957
1957
|
};
|
|
1958
|
-
export
|
|
1958
|
+
export type CreateSubmissionResult = {
|
|
1959
1959
|
__typename?: 'CreateSubmissionResult';
|
|
1960
1960
|
/** Created submission */
|
|
1961
1961
|
submission: Submission;
|
|
1962
1962
|
};
|
|
1963
|
-
export
|
|
1963
|
+
export type DeleteAccessTokenResult = {
|
|
1964
1964
|
__typename?: 'DeleteAccessTokenResult';
|
|
1965
1965
|
id: Scalars['ID'];
|
|
1966
1966
|
};
|
|
1967
|
-
export
|
|
1967
|
+
export type DeleteAccountResult = {
|
|
1968
1968
|
__typename?: 'DeleteAccountResult';
|
|
1969
1969
|
id: Scalars['ID'];
|
|
1970
1970
|
};
|
|
1971
|
-
export
|
|
1971
|
+
export type DeleteAccountSsoConfigurationResult = {
|
|
1972
1972
|
__typename?: 'DeleteAccountSSOConfigurationResult';
|
|
1973
1973
|
id: Scalars['ID'];
|
|
1974
1974
|
};
|
|
1975
|
-
export
|
|
1975
|
+
export type DeleteAndroidKeystoreResult = {
|
|
1976
1976
|
__typename?: 'DeleteAndroidKeystoreResult';
|
|
1977
1977
|
id: Scalars['ID'];
|
|
1978
1978
|
};
|
|
1979
|
-
export
|
|
1979
|
+
export type DeleteAppleDeviceResult = {
|
|
1980
1980
|
__typename?: 'DeleteAppleDeviceResult';
|
|
1981
1981
|
id: Scalars['ID'];
|
|
1982
1982
|
};
|
|
1983
|
-
export
|
|
1983
|
+
export type DeleteAppleDistributionCertificateResult = {
|
|
1984
1984
|
__typename?: 'DeleteAppleDistributionCertificateResult';
|
|
1985
1985
|
id: Scalars['ID'];
|
|
1986
1986
|
};
|
|
1987
|
-
export
|
|
1987
|
+
export type DeleteAppleProvisioningProfileResult = {
|
|
1988
1988
|
__typename?: 'DeleteAppleProvisioningProfileResult';
|
|
1989
1989
|
id: Scalars['ID'];
|
|
1990
1990
|
};
|
|
1991
|
-
export
|
|
1991
|
+
export type DeleteEnvironmentSecretResult = {
|
|
1992
1992
|
__typename?: 'DeleteEnvironmentSecretResult';
|
|
1993
1993
|
id: Scalars['ID'];
|
|
1994
1994
|
};
|
|
1995
|
-
export
|
|
1995
|
+
export type DeleteGoogleServiceAccountKeyResult = {
|
|
1996
1996
|
__typename?: 'DeleteGoogleServiceAccountKeyResult';
|
|
1997
1997
|
id: Scalars['ID'];
|
|
1998
1998
|
};
|
|
1999
|
-
export
|
|
1999
|
+
export type DeleteIosAppBuildCredentialsResult = {
|
|
2000
2000
|
__typename?: 'DeleteIosAppBuildCredentialsResult';
|
|
2001
2001
|
id: Scalars['ID'];
|
|
2002
2002
|
};
|
|
2003
|
-
export
|
|
2003
|
+
export type DeleteIosAppCredentialsResult = {
|
|
2004
2004
|
__typename?: 'DeleteIosAppCredentialsResult';
|
|
2005
2005
|
id: Scalars['ID'];
|
|
2006
2006
|
};
|
|
2007
|
-
export
|
|
2007
|
+
export type DeleteRobotResult = {
|
|
2008
2008
|
__typename?: 'DeleteRobotResult';
|
|
2009
2009
|
id: Scalars['ID'];
|
|
2010
2010
|
};
|
|
2011
|
-
export
|
|
2011
|
+
export type DeleteUpdateBranchResult = {
|
|
2012
2012
|
__typename?: 'DeleteUpdateBranchResult';
|
|
2013
2013
|
id: Scalars['ID'];
|
|
2014
2014
|
};
|
|
2015
|
-
export
|
|
2015
|
+
export type DeleteUpdateChannelResult = {
|
|
2016
2016
|
__typename?: 'DeleteUpdateChannelResult';
|
|
2017
2017
|
id: Scalars['ID'];
|
|
2018
2018
|
};
|
|
2019
|
-
export
|
|
2019
|
+
export type DeleteUpdateGroupResult = {
|
|
2020
2020
|
__typename?: 'DeleteUpdateGroupResult';
|
|
2021
2021
|
group: Scalars['ID'];
|
|
2022
2022
|
};
|
|
2023
|
-
export
|
|
2023
|
+
export type DeleteWebhookResult = {
|
|
2024
2024
|
__typename?: 'DeleteWebhookResult';
|
|
2025
2025
|
id: Scalars['ID'];
|
|
2026
2026
|
};
|
|
2027
|
-
export
|
|
2027
|
+
export type DeployServerlessFunctionResult = {
|
|
2028
2028
|
__typename?: 'DeployServerlessFunctionResult';
|
|
2029
2029
|
url: Scalars['String'];
|
|
2030
2030
|
};
|
|
2031
2031
|
/** Represents a Deployment - a set of Builds with the same Runtime Version and Channel */
|
|
2032
|
-
export
|
|
2032
|
+
export type Deployment = {
|
|
2033
2033
|
__typename?: 'Deployment';
|
|
2034
2034
|
channel?: Maybe<UpdateChannel>;
|
|
2035
2035
|
/**
|
|
@@ -2042,24 +2042,24 @@ export declare type Deployment = {
|
|
|
2042
2042
|
recentBuilds: Array<Build>;
|
|
2043
2043
|
runtimeVersion: Scalars['String'];
|
|
2044
2044
|
};
|
|
2045
|
-
export
|
|
2045
|
+
export type DeploymentBuildEdge = {
|
|
2046
2046
|
__typename?: 'DeploymentBuildEdge';
|
|
2047
2047
|
cursor: Scalars['String'];
|
|
2048
2048
|
node: Build;
|
|
2049
2049
|
};
|
|
2050
2050
|
/** Represents the connection over the builds edge of a Deployment */
|
|
2051
|
-
export
|
|
2051
|
+
export type DeploymentBuildsConnection = {
|
|
2052
2052
|
__typename?: 'DeploymentBuildsConnection';
|
|
2053
2053
|
edges: Array<DeploymentBuildEdge>;
|
|
2054
2054
|
pageInfo: PageInfo;
|
|
2055
2055
|
};
|
|
2056
|
-
export
|
|
2056
|
+
export type DeploymentEdge = {
|
|
2057
2057
|
__typename?: 'DeploymentEdge';
|
|
2058
2058
|
cursor: Scalars['String'];
|
|
2059
2059
|
node: DeploymentNew;
|
|
2060
2060
|
};
|
|
2061
2061
|
/** Represents a Deployment - a set of Builds with the same Runtime Version and Channel */
|
|
2062
|
-
export
|
|
2062
|
+
export type DeploymentNew = {
|
|
2063
2063
|
__typename?: 'DeploymentNew';
|
|
2064
2064
|
builds: DeploymentBuildsConnection;
|
|
2065
2065
|
channel: UpdateChannel;
|
|
@@ -2067,18 +2067,18 @@ export declare type DeploymentNew = {
|
|
|
2067
2067
|
runtime: Runtime;
|
|
2068
2068
|
};
|
|
2069
2069
|
/** Represents a Deployment - a set of Builds with the same Runtime Version and Channel */
|
|
2070
|
-
export
|
|
2070
|
+
export type DeploymentNewBuildsArgs = {
|
|
2071
2071
|
after?: InputMaybe<Scalars['String']>;
|
|
2072
2072
|
before?: InputMaybe<Scalars['String']>;
|
|
2073
2073
|
first?: InputMaybe<Scalars['Int']>;
|
|
2074
2074
|
last?: InputMaybe<Scalars['Int']>;
|
|
2075
2075
|
};
|
|
2076
|
-
export
|
|
2076
|
+
export type DeploymentOptions = {
|
|
2077
2077
|
/** Max number of associated builds to return */
|
|
2078
2078
|
buildListMaxSize?: InputMaybe<Scalars['Int']>;
|
|
2079
2079
|
};
|
|
2080
2080
|
/** Represents the connection over the deploymentsNew edge of an App */
|
|
2081
|
-
export
|
|
2081
|
+
export type DeploymentsConnection = {
|
|
2082
2082
|
__typename?: 'DeploymentsConnection';
|
|
2083
2083
|
edges: Array<DeploymentEdge>;
|
|
2084
2084
|
pageInfo: PageInfo;
|
|
@@ -2088,7 +2088,7 @@ export declare enum DistributionType {
|
|
|
2088
2088
|
Simulator = "SIMULATOR",
|
|
2089
2089
|
Store = "STORE"
|
|
2090
2090
|
}
|
|
2091
|
-
export
|
|
2091
|
+
export type EasBuildDeprecationInfo = {
|
|
2092
2092
|
__typename?: 'EASBuildDeprecationInfo';
|
|
2093
2093
|
message: Scalars['String'];
|
|
2094
2094
|
type: EasBuildDeprecationInfoType;
|
|
@@ -2097,7 +2097,7 @@ export declare enum EasBuildDeprecationInfoType {
|
|
|
2097
2097
|
Internal = "INTERNAL",
|
|
2098
2098
|
UserFacing = "USER_FACING"
|
|
2099
2099
|
}
|
|
2100
|
-
export
|
|
2100
|
+
export type EasBuildOrClassicBuildJob = Build | BuildJob;
|
|
2101
2101
|
export declare enum EasServiceMetric {
|
|
2102
2102
|
AssetsRequests = "ASSETS_REQUESTS",
|
|
2103
2103
|
BandwidthUsage = "BANDWIDTH_USAGE",
|
|
@@ -2106,7 +2106,7 @@ export declare enum EasServiceMetric {
|
|
|
2106
2106
|
UniqueUpdaters = "UNIQUE_UPDATERS",
|
|
2107
2107
|
UniqueUsers = "UNIQUE_USERS"
|
|
2108
2108
|
}
|
|
2109
|
-
export
|
|
2109
|
+
export type EasTotalPlanEnablement = {
|
|
2110
2110
|
__typename?: 'EASTotalPlanEnablement';
|
|
2111
2111
|
total: Scalars['Int'];
|
|
2112
2112
|
unit?: Maybe<EasTotalPlanEnablementUnit>;
|
|
@@ -2119,20 +2119,20 @@ export declare enum EasTotalPlanEnablementUnit {
|
|
|
2119
2119
|
Updater = "UPDATER",
|
|
2120
2120
|
User = "USER"
|
|
2121
2121
|
}
|
|
2122
|
-
export
|
|
2122
|
+
export type EditUpdateBranchInput = {
|
|
2123
2123
|
appId?: InputMaybe<Scalars['ID']>;
|
|
2124
2124
|
id?: InputMaybe<Scalars['ID']>;
|
|
2125
2125
|
name?: InputMaybe<Scalars['String']>;
|
|
2126
2126
|
newName: Scalars['String'];
|
|
2127
2127
|
};
|
|
2128
|
-
export
|
|
2128
|
+
export type EmailSubscriptionMutation = {
|
|
2129
2129
|
__typename?: 'EmailSubscriptionMutation';
|
|
2130
2130
|
addUser: AddUserPayload;
|
|
2131
2131
|
};
|
|
2132
|
-
export
|
|
2132
|
+
export type EmailSubscriptionMutationAddUserArgs = {
|
|
2133
2133
|
addUserInput: AddUserInput;
|
|
2134
2134
|
};
|
|
2135
|
-
export
|
|
2135
|
+
export type EnvironmentSecret = {
|
|
2136
2136
|
__typename?: 'EnvironmentSecret';
|
|
2137
2137
|
createdAt: Scalars['DateTime'];
|
|
2138
2138
|
id: Scalars['ID'];
|
|
@@ -2140,7 +2140,7 @@ export declare type EnvironmentSecret = {
|
|
|
2140
2140
|
type: EnvironmentSecretType;
|
|
2141
2141
|
updatedAt: Scalars['DateTime'];
|
|
2142
2142
|
};
|
|
2143
|
-
export
|
|
2143
|
+
export type EnvironmentSecretMutation = {
|
|
2144
2144
|
__typename?: 'EnvironmentSecretMutation';
|
|
2145
2145
|
/** Create an environment secret for an Account */
|
|
2146
2146
|
createEnvironmentSecretForAccount: EnvironmentSecret;
|
|
@@ -2149,22 +2149,22 @@ export declare type EnvironmentSecretMutation = {
|
|
|
2149
2149
|
/** Delete an environment secret */
|
|
2150
2150
|
deleteEnvironmentSecret: DeleteEnvironmentSecretResult;
|
|
2151
2151
|
};
|
|
2152
|
-
export
|
|
2152
|
+
export type EnvironmentSecretMutationCreateEnvironmentSecretForAccountArgs = {
|
|
2153
2153
|
accountId: Scalars['String'];
|
|
2154
2154
|
environmentSecretData: CreateEnvironmentSecretInput;
|
|
2155
2155
|
};
|
|
2156
|
-
export
|
|
2156
|
+
export type EnvironmentSecretMutationCreateEnvironmentSecretForAppArgs = {
|
|
2157
2157
|
appId: Scalars['String'];
|
|
2158
2158
|
environmentSecretData: CreateEnvironmentSecretInput;
|
|
2159
2159
|
};
|
|
2160
|
-
export
|
|
2160
|
+
export type EnvironmentSecretMutationDeleteEnvironmentSecretArgs = {
|
|
2161
2161
|
id: Scalars['String'];
|
|
2162
2162
|
};
|
|
2163
2163
|
export declare enum EnvironmentSecretType {
|
|
2164
2164
|
FileBase64 = "FILE_BASE64",
|
|
2165
2165
|
String = "STRING"
|
|
2166
2166
|
}
|
|
2167
|
-
export
|
|
2167
|
+
export type ExperimentationQuery = {
|
|
2168
2168
|
__typename?: 'ExperimentationQuery';
|
|
2169
2169
|
/** Get device experimentation config */
|
|
2170
2170
|
deviceConfig: Scalars['JSONObject'];
|
|
@@ -2173,13 +2173,13 @@ export declare type ExperimentationQuery = {
|
|
|
2173
2173
|
/** Get user experimentation config */
|
|
2174
2174
|
userConfig: Scalars['JSONObject'];
|
|
2175
2175
|
};
|
|
2176
|
-
export
|
|
2177
|
-
export
|
|
2176
|
+
export type FcmSnippet = FcmSnippetLegacy | FcmSnippetV1;
|
|
2177
|
+
export type FcmSnippetLegacy = {
|
|
2178
2178
|
__typename?: 'FcmSnippetLegacy';
|
|
2179
2179
|
firstFourCharacters: Scalars['String'];
|
|
2180
2180
|
lastFourCharacters: Scalars['String'];
|
|
2181
2181
|
};
|
|
2182
|
-
export
|
|
2182
|
+
export type FcmSnippetV1 = {
|
|
2183
2183
|
__typename?: 'FcmSnippetV1';
|
|
2184
2184
|
clientId?: Maybe<Scalars['String']>;
|
|
2185
2185
|
keyId: Scalars['String'];
|
|
@@ -2196,7 +2196,7 @@ export declare enum Feature {
|
|
|
2196
2196
|
/** Share access to projects */
|
|
2197
2197
|
Teams = "TEAMS"
|
|
2198
2198
|
}
|
|
2199
|
-
export
|
|
2199
|
+
export type FutureSubscription = {
|
|
2200
2200
|
__typename?: 'FutureSubscription';
|
|
2201
2201
|
createdAt: Scalars['DateTime'];
|
|
2202
2202
|
id: Scalars['ID'];
|
|
@@ -2204,7 +2204,7 @@ export declare type FutureSubscription = {
|
|
|
2204
2204
|
planId: Scalars['String'];
|
|
2205
2205
|
startDate: Scalars['DateTime'];
|
|
2206
2206
|
};
|
|
2207
|
-
export
|
|
2207
|
+
export type GetSignedAssetUploadSpecificationsResult = {
|
|
2208
2208
|
__typename?: 'GetSignedAssetUploadSpecificationsResult';
|
|
2209
2209
|
specifications: Array<Scalars['String']>;
|
|
2210
2210
|
};
|
|
@@ -2213,7 +2213,7 @@ export declare enum GitHubAppEnvironment {
|
|
|
2213
2213
|
Production = "PRODUCTION",
|
|
2214
2214
|
Staging = "STAGING"
|
|
2215
2215
|
}
|
|
2216
|
-
export
|
|
2216
|
+
export type GitHubAppInstallation = {
|
|
2217
2217
|
__typename?: 'GitHubAppInstallation';
|
|
2218
2218
|
accessibleRepositories: GitHubRepositoryPaginationResult;
|
|
2219
2219
|
account: Account;
|
|
@@ -2222,11 +2222,11 @@ export declare type GitHubAppInstallation = {
|
|
|
2222
2222
|
installationIdentifier: Scalars['Int'];
|
|
2223
2223
|
metadata: GitHubAppInstallationMetadata;
|
|
2224
2224
|
};
|
|
2225
|
-
export
|
|
2225
|
+
export type GitHubAppInstallationAccessibleRepositoriesArgs = {
|
|
2226
2226
|
page?: InputMaybe<Scalars['Int']>;
|
|
2227
2227
|
perPage?: InputMaybe<Scalars['Int']>;
|
|
2228
2228
|
};
|
|
2229
|
-
export
|
|
2229
|
+
export type GitHubAppInstallationAccessibleRepository = {
|
|
2230
2230
|
__typename?: 'GitHubAppInstallationAccessibleRepository';
|
|
2231
2231
|
defaultBranch?: Maybe<Scalars['String']>;
|
|
2232
2232
|
description?: Maybe<Scalars['String']>;
|
|
@@ -2237,23 +2237,23 @@ export declare type GitHubAppInstallationAccessibleRepository = {
|
|
|
2237
2237
|
private: Scalars['Boolean'];
|
|
2238
2238
|
url: Scalars['String'];
|
|
2239
2239
|
};
|
|
2240
|
-
export
|
|
2240
|
+
export type GitHubAppInstallationMetadata = {
|
|
2241
2241
|
__typename?: 'GitHubAppInstallationMetadata';
|
|
2242
2242
|
githubAccountAvatarUrl?: Maybe<Scalars['String']>;
|
|
2243
2243
|
githubAccountName?: Maybe<Scalars['String']>;
|
|
2244
2244
|
installationStatus: GitHubAppInstallationStatus;
|
|
2245
2245
|
};
|
|
2246
|
-
export
|
|
2246
|
+
export type GitHubAppInstallationMutation = {
|
|
2247
2247
|
__typename?: 'GitHubAppInstallationMutation';
|
|
2248
2248
|
/** Create a GitHub App installation for an Account */
|
|
2249
2249
|
createGitHubAppInstallationForAccount: GitHubAppInstallation;
|
|
2250
2250
|
/** Delete a GitHub App installation by ID */
|
|
2251
2251
|
deleteGitHubAppInstallation: GitHubAppInstallation;
|
|
2252
2252
|
};
|
|
2253
|
-
export
|
|
2253
|
+
export type GitHubAppInstallationMutationCreateGitHubAppInstallationForAccountArgs = {
|
|
2254
2254
|
githubAppInstallationData: CreateGitHubAppInstallationInput;
|
|
2255
2255
|
};
|
|
2256
|
-
export
|
|
2256
|
+
export type GitHubAppInstallationMutationDeleteGitHubAppInstallationArgs = {
|
|
2257
2257
|
githubAppInstallationId: Scalars['ID'];
|
|
2258
2258
|
};
|
|
2259
2259
|
export declare enum GitHubAppInstallationStatus {
|
|
@@ -2261,7 +2261,7 @@ export declare enum GitHubAppInstallationStatus {
|
|
|
2261
2261
|
NotInstalled = "NOT_INSTALLED",
|
|
2262
2262
|
Suspended = "SUSPENDED"
|
|
2263
2263
|
}
|
|
2264
|
-
export
|
|
2264
|
+
export type GitHubAppQuery = {
|
|
2265
2265
|
__typename?: 'GitHubAppQuery';
|
|
2266
2266
|
appIdentifier: Scalars['String'];
|
|
2267
2267
|
clientIdentifier: Scalars['String'];
|
|
@@ -2270,14 +2270,14 @@ export declare type GitHubAppQuery = {
|
|
|
2270
2270
|
name: Scalars['String'];
|
|
2271
2271
|
searchRepositories: GitHubRepositoryPaginationResult;
|
|
2272
2272
|
};
|
|
2273
|
-
export
|
|
2273
|
+
export type GitHubAppQueryInstallationArgs = {
|
|
2274
2274
|
id: Scalars['ID'];
|
|
2275
2275
|
};
|
|
2276
|
-
export
|
|
2276
|
+
export type GitHubAppQuerySearchRepositoriesArgs = {
|
|
2277
2277
|
githubAppInstallationId: Scalars['ID'];
|
|
2278
2278
|
query: Scalars['String'];
|
|
2279
2279
|
};
|
|
2280
|
-
export
|
|
2280
|
+
export type GitHubRepository = {
|
|
2281
2281
|
__typename?: 'GitHubRepository';
|
|
2282
2282
|
app: App;
|
|
2283
2283
|
githubAppInstallation: GitHubAppInstallation;
|
|
@@ -2286,7 +2286,7 @@ export declare type GitHubRepository = {
|
|
|
2286
2286
|
metadata?: Maybe<GitHubRepositoryMetadata>;
|
|
2287
2287
|
nodeIdentifier: Scalars['String'];
|
|
2288
2288
|
};
|
|
2289
|
-
export
|
|
2289
|
+
export type GitHubRepositoryMetadata = {
|
|
2290
2290
|
__typename?: 'GitHubRepositoryMetadata';
|
|
2291
2291
|
defaultBranch?: Maybe<Scalars['String']>;
|
|
2292
2292
|
githubRepoDescription?: Maybe<Scalars['String']>;
|
|
@@ -2298,38 +2298,38 @@ export declare type GitHubRepositoryMetadata = {
|
|
|
2298
2298
|
openGraphImageUrl?: Maybe<Scalars['String']>;
|
|
2299
2299
|
private: Scalars['Boolean'];
|
|
2300
2300
|
};
|
|
2301
|
-
export
|
|
2301
|
+
export type GitHubRepositoryMutation = {
|
|
2302
2302
|
__typename?: 'GitHubRepositoryMutation';
|
|
2303
2303
|
/** Create a GitHub repository for an App */
|
|
2304
2304
|
createGitHubRepository: GitHubRepository;
|
|
2305
2305
|
/** Delete a GitHub repository by ID */
|
|
2306
2306
|
deleteGitHubRepository: GitHubRepository;
|
|
2307
2307
|
};
|
|
2308
|
-
export
|
|
2308
|
+
export type GitHubRepositoryMutationCreateGitHubRepositoryArgs = {
|
|
2309
2309
|
githubRepositoryData: CreateGitHubRepositoryInput;
|
|
2310
2310
|
};
|
|
2311
|
-
export
|
|
2311
|
+
export type GitHubRepositoryMutationDeleteGitHubRepositoryArgs = {
|
|
2312
2312
|
githubRepositoryId: Scalars['ID'];
|
|
2313
2313
|
};
|
|
2314
|
-
export
|
|
2314
|
+
export type GitHubRepositoryOwner = {
|
|
2315
2315
|
__typename?: 'GitHubRepositoryOwner';
|
|
2316
2316
|
avatarUrl: Scalars['String'];
|
|
2317
2317
|
id: Scalars['Int'];
|
|
2318
2318
|
login: Scalars['String'];
|
|
2319
2319
|
url: Scalars['String'];
|
|
2320
2320
|
};
|
|
2321
|
-
export
|
|
2321
|
+
export type GitHubRepositoryPaginationResult = {
|
|
2322
2322
|
__typename?: 'GitHubRepositoryPaginationResult';
|
|
2323
2323
|
repositories: Array<GitHubAppInstallationAccessibleRepository>;
|
|
2324
2324
|
totalCount: Scalars['Int'];
|
|
2325
2325
|
};
|
|
2326
|
-
export
|
|
2326
|
+
export type GitHubRepositorySettings = {
|
|
2327
2327
|
__typename?: 'GitHubRepositorySettings';
|
|
2328
2328
|
app: App;
|
|
2329
2329
|
baseDirectory: Scalars['String'];
|
|
2330
2330
|
id: Scalars['ID'];
|
|
2331
2331
|
};
|
|
2332
|
-
export
|
|
2332
|
+
export type GitHubRepositorySettingsMutation = {
|
|
2333
2333
|
__typename?: 'GitHubRepositorySettingsMutation';
|
|
2334
2334
|
/** Create GitHub repository settings for an App */
|
|
2335
2335
|
createGitHubRepositorySettings: GitHubRepositorySettings;
|
|
@@ -2338,17 +2338,17 @@ export declare type GitHubRepositorySettingsMutation = {
|
|
|
2338
2338
|
/** Update GitHub repository settings */
|
|
2339
2339
|
updateGitHubRepositorySettings: GitHubRepositorySettings;
|
|
2340
2340
|
};
|
|
2341
|
-
export
|
|
2341
|
+
export type GitHubRepositorySettingsMutationCreateGitHubRepositorySettingsArgs = {
|
|
2342
2342
|
githubRepositorySettingsData: CreateGitHubRepositorySettingsInput;
|
|
2343
2343
|
};
|
|
2344
|
-
export
|
|
2344
|
+
export type GitHubRepositorySettingsMutationDeleteGitHubRepositorySettingsArgs = {
|
|
2345
2345
|
githubRepositorySettingsId: Scalars['ID'];
|
|
2346
2346
|
};
|
|
2347
|
-
export
|
|
2347
|
+
export type GitHubRepositorySettingsMutationUpdateGitHubRepositorySettingsArgs = {
|
|
2348
2348
|
githubRepositorySettingsData: UpdateGitHubRepositorySettingsInput;
|
|
2349
2349
|
githubRepositorySettingsId: Scalars['ID'];
|
|
2350
2350
|
};
|
|
2351
|
-
export
|
|
2351
|
+
export type GoogleServiceAccountKey = {
|
|
2352
2352
|
__typename?: 'GoogleServiceAccountKey';
|
|
2353
2353
|
account: Account;
|
|
2354
2354
|
clientEmail: Scalars['String'];
|
|
@@ -2359,24 +2359,24 @@ export declare type GoogleServiceAccountKey = {
|
|
|
2359
2359
|
projectIdentifier: Scalars['String'];
|
|
2360
2360
|
updatedAt: Scalars['DateTime'];
|
|
2361
2361
|
};
|
|
2362
|
-
export
|
|
2362
|
+
export type GoogleServiceAccountKeyInput = {
|
|
2363
2363
|
jsonKey: Scalars['JSONObject'];
|
|
2364
2364
|
};
|
|
2365
|
-
export
|
|
2365
|
+
export type GoogleServiceAccountKeyMutation = {
|
|
2366
2366
|
__typename?: 'GoogleServiceAccountKeyMutation';
|
|
2367
2367
|
/** Create a Google Service Account Key */
|
|
2368
2368
|
createGoogleServiceAccountKey: GoogleServiceAccountKey;
|
|
2369
2369
|
/** Delete a Google Service Account Key */
|
|
2370
2370
|
deleteGoogleServiceAccountKey: DeleteGoogleServiceAccountKeyResult;
|
|
2371
2371
|
};
|
|
2372
|
-
export
|
|
2372
|
+
export type GoogleServiceAccountKeyMutationCreateGoogleServiceAccountKeyArgs = {
|
|
2373
2373
|
accountId: Scalars['ID'];
|
|
2374
2374
|
googleServiceAccountKeyInput: GoogleServiceAccountKeyInput;
|
|
2375
2375
|
};
|
|
2376
|
-
export
|
|
2376
|
+
export type GoogleServiceAccountKeyMutationDeleteGoogleServiceAccountKeyArgs = {
|
|
2377
2377
|
id: Scalars['ID'];
|
|
2378
2378
|
};
|
|
2379
|
-
export
|
|
2379
|
+
export type Invoice = {
|
|
2380
2380
|
__typename?: 'Invoice';
|
|
2381
2381
|
/** The total amount due for the invoice, in cents */
|
|
2382
2382
|
amountDue: Scalars['Int'];
|
|
@@ -2393,7 +2393,7 @@ export declare type Invoice = {
|
|
|
2393
2393
|
total: Scalars['Int'];
|
|
2394
2394
|
totalDiscountedAmount: Scalars['Int'];
|
|
2395
2395
|
};
|
|
2396
|
-
export
|
|
2396
|
+
export type InvoiceDiscount = {
|
|
2397
2397
|
__typename?: 'InvoiceDiscount';
|
|
2398
2398
|
/** The coupon's discount value, in percentage or in dollar amount */
|
|
2399
2399
|
amount: Scalars['Int'];
|
|
@@ -2407,7 +2407,7 @@ export declare enum InvoiceDiscountType {
|
|
|
2407
2407
|
Amount = "AMOUNT",
|
|
2408
2408
|
Percentage = "PERCENTAGE"
|
|
2409
2409
|
}
|
|
2410
|
-
export
|
|
2410
|
+
export type InvoiceLineItem = {
|
|
2411
2411
|
__typename?: 'InvoiceLineItem';
|
|
2412
2412
|
/** Line-item amount in cents */
|
|
2413
2413
|
amount: Scalars['Int'];
|
|
@@ -2419,27 +2419,27 @@ export declare type InvoiceLineItem = {
|
|
|
2419
2419
|
quantity: Scalars['Int'];
|
|
2420
2420
|
title: Scalars['String'];
|
|
2421
2421
|
};
|
|
2422
|
-
export
|
|
2422
|
+
export type InvoiceLineItemPlan = {
|
|
2423
2423
|
__typename?: 'InvoiceLineItemPlan';
|
|
2424
2424
|
id: Scalars['ID'];
|
|
2425
2425
|
name: Scalars['String'];
|
|
2426
2426
|
};
|
|
2427
|
-
export
|
|
2427
|
+
export type InvoicePeriod = {
|
|
2428
2428
|
__typename?: 'InvoicePeriod';
|
|
2429
2429
|
end: Scalars['DateTime'];
|
|
2430
2430
|
start: Scalars['DateTime'];
|
|
2431
2431
|
};
|
|
2432
|
-
export
|
|
2432
|
+
export type InvoiceQuery = {
|
|
2433
2433
|
__typename?: 'InvoiceQuery';
|
|
2434
2434
|
/** Preview an upgrade subscription invoice, with proration */
|
|
2435
2435
|
previewInvoiceForSubscriptionUpdate: Invoice;
|
|
2436
2436
|
};
|
|
2437
|
-
export
|
|
2437
|
+
export type InvoiceQueryPreviewInvoiceForSubscriptionUpdateArgs = {
|
|
2438
2438
|
accountId: Scalars['String'];
|
|
2439
2439
|
couponCode?: InputMaybe<Scalars['String']>;
|
|
2440
2440
|
newPlanIdentifier: Scalars['String'];
|
|
2441
2441
|
};
|
|
2442
|
-
export
|
|
2442
|
+
export type IosAppBuildCredentials = {
|
|
2443
2443
|
__typename?: 'IosAppBuildCredentials';
|
|
2444
2444
|
/** @deprecated Get Apple Devices from AppleProvisioningProfile instead */
|
|
2445
2445
|
appleDevices?: Maybe<Array<Maybe<AppleDevice>>>;
|
|
@@ -2449,15 +2449,15 @@ export declare type IosAppBuildCredentials = {
|
|
|
2449
2449
|
iosDistributionType: IosDistributionType;
|
|
2450
2450
|
provisioningProfile?: Maybe<AppleProvisioningProfile>;
|
|
2451
2451
|
};
|
|
2452
|
-
export
|
|
2452
|
+
export type IosAppBuildCredentialsFilter = {
|
|
2453
2453
|
iosDistributionType?: InputMaybe<IosDistributionType>;
|
|
2454
2454
|
};
|
|
2455
|
-
export
|
|
2455
|
+
export type IosAppBuildCredentialsInput = {
|
|
2456
2456
|
distributionCertificateId: Scalars['ID'];
|
|
2457
2457
|
iosDistributionType: IosDistributionType;
|
|
2458
2458
|
provisioningProfileId: Scalars['ID'];
|
|
2459
2459
|
};
|
|
2460
|
-
export
|
|
2460
|
+
export type IosAppBuildCredentialsMutation = {
|
|
2461
2461
|
__typename?: 'IosAppBuildCredentialsMutation';
|
|
2462
2462
|
/** Create a set of build credentials for an iOS app */
|
|
2463
2463
|
createIosAppBuildCredentials: IosAppBuildCredentials;
|
|
@@ -2468,22 +2468,22 @@ export declare type IosAppBuildCredentialsMutation = {
|
|
|
2468
2468
|
/** Set the provisioning profile to be used for an iOS app */
|
|
2469
2469
|
setProvisioningProfile: IosAppBuildCredentials;
|
|
2470
2470
|
};
|
|
2471
|
-
export
|
|
2471
|
+
export type IosAppBuildCredentialsMutationCreateIosAppBuildCredentialsArgs = {
|
|
2472
2472
|
iosAppBuildCredentialsInput: IosAppBuildCredentialsInput;
|
|
2473
2473
|
iosAppCredentialsId: Scalars['ID'];
|
|
2474
2474
|
};
|
|
2475
|
-
export
|
|
2475
|
+
export type IosAppBuildCredentialsMutationDeleteIosAppBuildCredentialsArgs = {
|
|
2476
2476
|
id: Scalars['ID'];
|
|
2477
2477
|
};
|
|
2478
|
-
export
|
|
2478
|
+
export type IosAppBuildCredentialsMutationSetDistributionCertificateArgs = {
|
|
2479
2479
|
distributionCertificateId: Scalars['ID'];
|
|
2480
2480
|
id: Scalars['ID'];
|
|
2481
2481
|
};
|
|
2482
|
-
export
|
|
2482
|
+
export type IosAppBuildCredentialsMutationSetProvisioningProfileArgs = {
|
|
2483
2483
|
id: Scalars['ID'];
|
|
2484
2484
|
provisioningProfileId: Scalars['ID'];
|
|
2485
2485
|
};
|
|
2486
|
-
export
|
|
2486
|
+
export type IosAppCredentials = {
|
|
2487
2487
|
__typename?: 'IosAppCredentials';
|
|
2488
2488
|
app: App;
|
|
2489
2489
|
appStoreConnectApiKeyForSubmissions?: Maybe<AppStoreConnectApiKey>;
|
|
@@ -2495,21 +2495,21 @@ export declare type IosAppCredentials = {
|
|
|
2495
2495
|
iosAppBuildCredentialsList: Array<IosAppBuildCredentials>;
|
|
2496
2496
|
pushKey?: Maybe<ApplePushKey>;
|
|
2497
2497
|
};
|
|
2498
|
-
export
|
|
2498
|
+
export type IosAppCredentialsIosAppBuildCredentialsArrayArgs = {
|
|
2499
2499
|
filter?: InputMaybe<IosAppBuildCredentialsFilter>;
|
|
2500
2500
|
};
|
|
2501
|
-
export
|
|
2501
|
+
export type IosAppCredentialsIosAppBuildCredentialsListArgs = {
|
|
2502
2502
|
filter?: InputMaybe<IosAppBuildCredentialsFilter>;
|
|
2503
2503
|
};
|
|
2504
|
-
export
|
|
2504
|
+
export type IosAppCredentialsFilter = {
|
|
2505
2505
|
appleAppIdentifierId?: InputMaybe<Scalars['String']>;
|
|
2506
2506
|
};
|
|
2507
|
-
export
|
|
2507
|
+
export type IosAppCredentialsInput = {
|
|
2508
2508
|
appStoreConnectApiKeyForSubmissionsId?: InputMaybe<Scalars['ID']>;
|
|
2509
2509
|
appleTeamId?: InputMaybe<Scalars['ID']>;
|
|
2510
2510
|
pushKeyId?: InputMaybe<Scalars['ID']>;
|
|
2511
2511
|
};
|
|
2512
|
-
export
|
|
2512
|
+
export type IosAppCredentialsMutation = {
|
|
2513
2513
|
__typename?: 'IosAppCredentialsMutation';
|
|
2514
2514
|
/** Create a set of credentials for an iOS app */
|
|
2515
2515
|
createIosAppCredentials: IosAppCredentials;
|
|
@@ -2520,27 +2520,27 @@ export declare type IosAppCredentialsMutation = {
|
|
|
2520
2520
|
/** Set the push key to be used in an iOS app */
|
|
2521
2521
|
setPushKey: IosAppCredentials;
|
|
2522
2522
|
};
|
|
2523
|
-
export
|
|
2523
|
+
export type IosAppCredentialsMutationCreateIosAppCredentialsArgs = {
|
|
2524
2524
|
appId: Scalars['ID'];
|
|
2525
2525
|
appleAppIdentifierId: Scalars['ID'];
|
|
2526
2526
|
iosAppCredentialsInput: IosAppCredentialsInput;
|
|
2527
2527
|
};
|
|
2528
|
-
export
|
|
2528
|
+
export type IosAppCredentialsMutationDeleteIosAppCredentialsArgs = {
|
|
2529
2529
|
id: Scalars['ID'];
|
|
2530
2530
|
};
|
|
2531
|
-
export
|
|
2531
|
+
export type IosAppCredentialsMutationSetAppStoreConnectApiKeyForSubmissionsArgs = {
|
|
2532
2532
|
ascApiKeyId: Scalars['ID'];
|
|
2533
2533
|
id: Scalars['ID'];
|
|
2534
2534
|
};
|
|
2535
|
-
export
|
|
2535
|
+
export type IosAppCredentialsMutationSetPushKeyArgs = {
|
|
2536
2536
|
id: Scalars['ID'];
|
|
2537
2537
|
pushKeyId: Scalars['ID'];
|
|
2538
2538
|
};
|
|
2539
|
-
export
|
|
2539
|
+
export type IosAppCredentialsQuery = {
|
|
2540
2540
|
__typename?: 'IosAppCredentialsQuery';
|
|
2541
2541
|
byId: IosAppCredentials;
|
|
2542
2542
|
};
|
|
2543
|
-
export
|
|
2543
|
+
export type IosAppCredentialsQueryByIdArgs = {
|
|
2544
2544
|
iosAppCredentialsId: Scalars['ID'];
|
|
2545
2545
|
};
|
|
2546
2546
|
/** @deprecated Use developmentClient option instead. */
|
|
@@ -2548,7 +2548,7 @@ export declare enum IosBuildType {
|
|
|
2548
2548
|
DevelopmentClient = "DEVELOPMENT_CLIENT",
|
|
2549
2549
|
Release = "RELEASE"
|
|
2550
2550
|
}
|
|
2551
|
-
export
|
|
2551
|
+
export type IosBuilderEnvironmentInput = {
|
|
2552
2552
|
bundler?: InputMaybe<Scalars['String']>;
|
|
2553
2553
|
cocoapods?: InputMaybe<Scalars['String']>;
|
|
2554
2554
|
env?: InputMaybe<Scalars['JSONObject']>;
|
|
@@ -2564,11 +2564,11 @@ export declare enum IosDistributionType {
|
|
|
2564
2564
|
Development = "DEVELOPMENT",
|
|
2565
2565
|
Enterprise = "ENTERPRISE"
|
|
2566
2566
|
}
|
|
2567
|
-
export
|
|
2567
|
+
export type IosJobDistributionCertificateInput = {
|
|
2568
2568
|
dataBase64: Scalars['String'];
|
|
2569
2569
|
password: Scalars['String'];
|
|
2570
2570
|
};
|
|
2571
|
-
export
|
|
2571
|
+
export type IosJobInput = {
|
|
2572
2572
|
applicationArchivePath?: InputMaybe<Scalars['String']>;
|
|
2573
2573
|
/** @deprecated */
|
|
2574
2574
|
artifactPath?: InputMaybe<Scalars['String']>;
|
|
@@ -2594,7 +2594,7 @@ export declare type IosJobInput = {
|
|
|
2594
2594
|
username?: InputMaybe<Scalars['String']>;
|
|
2595
2595
|
version?: InputMaybe<IosJobVersionInput>;
|
|
2596
2596
|
};
|
|
2597
|
-
export
|
|
2597
|
+
export type IosJobOverridesInput = {
|
|
2598
2598
|
applicationArchivePath?: InputMaybe<Scalars['String']>;
|
|
2599
2599
|
/** @deprecated */
|
|
2600
2600
|
artifactPath?: InputMaybe<Scalars['String']>;
|
|
@@ -2619,15 +2619,15 @@ export declare type IosJobOverridesInput = {
|
|
|
2619
2619
|
username?: InputMaybe<Scalars['String']>;
|
|
2620
2620
|
version?: InputMaybe<IosJobVersionInput>;
|
|
2621
2621
|
};
|
|
2622
|
-
export
|
|
2622
|
+
export type IosJobSecretsInput = {
|
|
2623
2623
|
buildCredentials?: InputMaybe<Array<InputMaybe<IosJobTargetCredentialsInput>>>;
|
|
2624
2624
|
};
|
|
2625
|
-
export
|
|
2625
|
+
export type IosJobTargetCredentialsInput = {
|
|
2626
2626
|
distributionCertificate: IosJobDistributionCertificateInput;
|
|
2627
2627
|
provisioningProfileBase64: Scalars['String'];
|
|
2628
2628
|
targetName: Scalars['String'];
|
|
2629
2629
|
};
|
|
2630
|
-
export
|
|
2630
|
+
export type IosJobVersionInput = {
|
|
2631
2631
|
buildNumber: Scalars['String'];
|
|
2632
2632
|
};
|
|
2633
2633
|
/** @deprecated Use developmentClient option instead. */
|
|
@@ -2639,13 +2639,13 @@ export declare enum IosSchemeBuildConfiguration {
|
|
|
2639
2639
|
Debug = "DEBUG",
|
|
2640
2640
|
Release = "RELEASE"
|
|
2641
2641
|
}
|
|
2642
|
-
export
|
|
2642
|
+
export type IosSubmissionConfig = {
|
|
2643
2643
|
__typename?: 'IosSubmissionConfig';
|
|
2644
2644
|
appleIdUsername?: Maybe<Scalars['String']>;
|
|
2645
2645
|
ascApiKeyId?: Maybe<Scalars['String']>;
|
|
2646
2646
|
ascAppIdentifier: Scalars['String'];
|
|
2647
2647
|
};
|
|
2648
|
-
export
|
|
2648
|
+
export type IosSubmissionConfigInput = {
|
|
2649
2649
|
appleAppSpecificPassword?: InputMaybe<Scalars['String']>;
|
|
2650
2650
|
appleIdUsername?: InputMaybe<Scalars['String']>;
|
|
2651
2651
|
archiveUrl?: InputMaybe<Scalars['String']>;
|
|
@@ -2653,17 +2653,17 @@ export declare type IosSubmissionConfigInput = {
|
|
|
2653
2653
|
ascApiKeyId?: InputMaybe<Scalars['String']>;
|
|
2654
2654
|
ascAppIdentifier: Scalars['String'];
|
|
2655
2655
|
};
|
|
2656
|
-
export
|
|
2656
|
+
export type KeystoreGenerationUrl = {
|
|
2657
2657
|
__typename?: 'KeystoreGenerationUrl';
|
|
2658
2658
|
id: Scalars['ID'];
|
|
2659
2659
|
url: Scalars['String'];
|
|
2660
2660
|
};
|
|
2661
|
-
export
|
|
2661
|
+
export type KeystoreGenerationUrlMutation = {
|
|
2662
2662
|
__typename?: 'KeystoreGenerationUrlMutation';
|
|
2663
2663
|
/** Create a Keystore Generation URL */
|
|
2664
2664
|
createKeystoreGenerationUrl: KeystoreGenerationUrl;
|
|
2665
2665
|
};
|
|
2666
|
-
export
|
|
2666
|
+
export type LeaveAccountResult = {
|
|
2667
2667
|
__typename?: 'LeaveAccountResult';
|
|
2668
2668
|
success: Scalars['Boolean'];
|
|
2669
2669
|
};
|
|
@@ -2674,12 +2674,12 @@ export declare enum MailchimpTag {
|
|
|
2674
2674
|
DevClientUsers = "DEV_CLIENT_USERS",
|
|
2675
2675
|
EasMasterList = "EAS_MASTER_LIST"
|
|
2676
2676
|
}
|
|
2677
|
-
export
|
|
2677
|
+
export type MailchimpTagPayload = {
|
|
2678
2678
|
__typename?: 'MailchimpTagPayload';
|
|
2679
2679
|
id?: Maybe<Scalars['Int']>;
|
|
2680
2680
|
name?: Maybe<Scalars['String']>;
|
|
2681
2681
|
};
|
|
2682
|
-
export
|
|
2682
|
+
export type MeMutation = {
|
|
2683
2683
|
__typename?: 'MeMutation';
|
|
2684
2684
|
/** Add an additional second factor device */
|
|
2685
2685
|
addSecondFactorDevice: SecondFactorDeviceConfigurationResult;
|
|
@@ -2716,59 +2716,59 @@ export declare type MeMutation = {
|
|
|
2716
2716
|
/** Update the current user's data */
|
|
2717
2717
|
updateProfile: User;
|
|
2718
2718
|
};
|
|
2719
|
-
export
|
|
2719
|
+
export type MeMutationAddSecondFactorDeviceArgs = {
|
|
2720
2720
|
deviceConfiguration: SecondFactorDeviceConfiguration;
|
|
2721
2721
|
otp: Scalars['String'];
|
|
2722
2722
|
};
|
|
2723
|
-
export
|
|
2723
|
+
export type MeMutationCertifySecondFactorDeviceArgs = {
|
|
2724
2724
|
otp: Scalars['String'];
|
|
2725
2725
|
};
|
|
2726
|
-
export
|
|
2726
|
+
export type MeMutationCreateAccountArgs = {
|
|
2727
2727
|
accountData: AccountDataInput;
|
|
2728
2728
|
};
|
|
2729
|
-
export
|
|
2729
|
+
export type MeMutationDeleteAccountArgs = {
|
|
2730
2730
|
accountId: Scalars['ID'];
|
|
2731
2731
|
};
|
|
2732
|
-
export
|
|
2732
|
+
export type MeMutationDeleteSecondFactorDeviceArgs = {
|
|
2733
2733
|
otp: Scalars['String'];
|
|
2734
2734
|
userSecondFactorDeviceId: Scalars['ID'];
|
|
2735
2735
|
};
|
|
2736
|
-
export
|
|
2736
|
+
export type MeMutationDeleteSnackArgs = {
|
|
2737
2737
|
snackId: Scalars['ID'];
|
|
2738
2738
|
};
|
|
2739
|
-
export
|
|
2739
|
+
export type MeMutationDisableSecondFactorAuthenticationArgs = {
|
|
2740
2740
|
otp: Scalars['String'];
|
|
2741
2741
|
};
|
|
2742
|
-
export
|
|
2742
|
+
export type MeMutationInitiateSecondFactorAuthenticationArgs = {
|
|
2743
2743
|
deviceConfigurations: Array<SecondFactorDeviceConfiguration>;
|
|
2744
2744
|
recaptchaResponseToken?: InputMaybe<Scalars['String']>;
|
|
2745
2745
|
};
|
|
2746
|
-
export
|
|
2746
|
+
export type MeMutationLeaveAccountArgs = {
|
|
2747
2747
|
accountId: Scalars['ID'];
|
|
2748
2748
|
};
|
|
2749
|
-
export
|
|
2749
|
+
export type MeMutationRegenerateSecondFactorBackupCodesArgs = {
|
|
2750
2750
|
otp: Scalars['String'];
|
|
2751
2751
|
};
|
|
2752
|
-
export
|
|
2752
|
+
export type MeMutationSendSmsotpToSecondFactorDeviceArgs = {
|
|
2753
2753
|
userSecondFactorDeviceId: Scalars['ID'];
|
|
2754
2754
|
};
|
|
2755
|
-
export
|
|
2755
|
+
export type MeMutationSetPrimarySecondFactorDeviceArgs = {
|
|
2756
2756
|
userSecondFactorDeviceId: Scalars['ID'];
|
|
2757
2757
|
};
|
|
2758
|
-
export
|
|
2758
|
+
export type MeMutationTransferAppArgs = {
|
|
2759
2759
|
appId: Scalars['ID'];
|
|
2760
2760
|
destinationAccountId: Scalars['ID'];
|
|
2761
2761
|
};
|
|
2762
|
-
export
|
|
2762
|
+
export type MeMutationUnpublishAppArgs = {
|
|
2763
2763
|
appId: Scalars['ID'];
|
|
2764
2764
|
};
|
|
2765
|
-
export
|
|
2765
|
+
export type MeMutationUpdateAppArgs = {
|
|
2766
2766
|
appData: AppDataInput;
|
|
2767
2767
|
};
|
|
2768
|
-
export
|
|
2768
|
+
export type MeMutationUpdateProfileArgs = {
|
|
2769
2769
|
userData: UserDataInput;
|
|
2770
2770
|
};
|
|
2771
|
-
export
|
|
2771
|
+
export type MeteredBillingStatus = {
|
|
2772
2772
|
__typename?: 'MeteredBillingStatus';
|
|
2773
2773
|
EAS_UPDATE: Scalars['Boolean'];
|
|
2774
2774
|
};
|
|
@@ -2776,7 +2776,7 @@ export declare enum NotificationEvent {
|
|
|
2776
2776
|
BuildComplete = "BUILD_COMPLETE",
|
|
2777
2777
|
SubmissionComplete = "SUBMISSION_COMPLETE"
|
|
2778
2778
|
}
|
|
2779
|
-
export
|
|
2779
|
+
export type NotificationSubscription = {
|
|
2780
2780
|
__typename?: 'NotificationSubscription';
|
|
2781
2781
|
account?: Maybe<Account>;
|
|
2782
2782
|
actor?: Maybe<Actor>;
|
|
@@ -2786,31 +2786,31 @@ export declare type NotificationSubscription = {
|
|
|
2786
2786
|
id: Scalars['ID'];
|
|
2787
2787
|
type: NotificationType;
|
|
2788
2788
|
};
|
|
2789
|
-
export
|
|
2789
|
+
export type NotificationSubscriptionFilter = {
|
|
2790
2790
|
accountId?: InputMaybe<Scalars['ID']>;
|
|
2791
2791
|
appId?: InputMaybe<Scalars['ID']>;
|
|
2792
2792
|
event?: InputMaybe<NotificationEvent>;
|
|
2793
2793
|
type?: InputMaybe<NotificationType>;
|
|
2794
2794
|
};
|
|
2795
|
-
export
|
|
2795
|
+
export type NotificationSubscriptionMutation = {
|
|
2796
2796
|
__typename?: 'NotificationSubscriptionMutation';
|
|
2797
2797
|
subscribeToEventForAccount: SubscribeToNotificationResult;
|
|
2798
2798
|
subscribeToEventForApp: SubscribeToNotificationResult;
|
|
2799
2799
|
unsubscribe: UnsubscribeFromNotificationResult;
|
|
2800
2800
|
};
|
|
2801
|
-
export
|
|
2801
|
+
export type NotificationSubscriptionMutationSubscribeToEventForAccountArgs = {
|
|
2802
2802
|
input: AccountNotificationSubscriptionInput;
|
|
2803
2803
|
};
|
|
2804
|
-
export
|
|
2804
|
+
export type NotificationSubscriptionMutationSubscribeToEventForAppArgs = {
|
|
2805
2805
|
input: AppNotificationSubscriptionInput;
|
|
2806
2806
|
};
|
|
2807
|
-
export
|
|
2807
|
+
export type NotificationSubscriptionMutationUnsubscribeArgs = {
|
|
2808
2808
|
id: Scalars['ID'];
|
|
2809
2809
|
};
|
|
2810
2810
|
export declare enum NotificationType {
|
|
2811
2811
|
Email = "EMAIL"
|
|
2812
2812
|
}
|
|
2813
|
-
export
|
|
2813
|
+
export type Offer = {
|
|
2814
2814
|
__typename?: 'Offer';
|
|
2815
2815
|
features?: Maybe<Array<Maybe<Feature>>>;
|
|
2816
2816
|
id: Scalars['ID'];
|
|
@@ -2821,7 +2821,7 @@ export declare type Offer = {
|
|
|
2821
2821
|
trialLength?: Maybe<Scalars['Int']>;
|
|
2822
2822
|
type: OfferType;
|
|
2823
2823
|
};
|
|
2824
|
-
export
|
|
2824
|
+
export type OfferPrerequisite = {
|
|
2825
2825
|
__typename?: 'OfferPrerequisite';
|
|
2826
2826
|
stripeIds: Array<Scalars['String']>;
|
|
2827
2827
|
type: Scalars['String'];
|
|
@@ -2838,26 +2838,26 @@ export declare enum Order {
|
|
|
2838
2838
|
Asc = "ASC",
|
|
2839
2839
|
Desc = "DESC"
|
|
2840
2840
|
}
|
|
2841
|
-
export
|
|
2841
|
+
export type PageInfo = {
|
|
2842
2842
|
__typename?: 'PageInfo';
|
|
2843
2843
|
endCursor?: Maybe<Scalars['String']>;
|
|
2844
2844
|
hasNextPage: Scalars['Boolean'];
|
|
2845
2845
|
hasPreviousPage: Scalars['Boolean'];
|
|
2846
2846
|
startCursor?: Maybe<Scalars['String']>;
|
|
2847
2847
|
};
|
|
2848
|
-
export
|
|
2848
|
+
export type PartialManifest = {
|
|
2849
2849
|
assets: Array<InputMaybe<PartialManifestAsset>>;
|
|
2850
2850
|
extra?: InputMaybe<Scalars['JSONObject']>;
|
|
2851
2851
|
launchAsset: PartialManifestAsset;
|
|
2852
2852
|
};
|
|
2853
|
-
export
|
|
2853
|
+
export type PartialManifestAsset = {
|
|
2854
2854
|
bundleKey: Scalars['String'];
|
|
2855
2855
|
contentType: Scalars['String'];
|
|
2856
2856
|
fileExtension?: InputMaybe<Scalars['String']>;
|
|
2857
2857
|
fileSHA256: Scalars['String'];
|
|
2858
2858
|
storageKey: Scalars['String'];
|
|
2859
2859
|
};
|
|
2860
|
-
export
|
|
2860
|
+
export type PaymentDetails = {
|
|
2861
2861
|
__typename?: 'PaymentDetails';
|
|
2862
2862
|
address?: Maybe<Address>;
|
|
2863
2863
|
card?: Maybe<Card>;
|
|
@@ -2869,8 +2869,8 @@ export declare enum Permission {
|
|
|
2869
2869
|
Publish = "PUBLISH",
|
|
2870
2870
|
View = "VIEW"
|
|
2871
2871
|
}
|
|
2872
|
-
export
|
|
2873
|
-
export
|
|
2872
|
+
export type PlanEnablement = Concurrencies | EasTotalPlanEnablement;
|
|
2873
|
+
export type Project = {
|
|
2874
2874
|
description: Scalars['String'];
|
|
2875
2875
|
fullName: Scalars['String'];
|
|
2876
2876
|
/** @deprecated No longer supported */
|
|
@@ -2882,7 +2882,7 @@ export declare type Project = {
|
|
|
2882
2882
|
updated: Scalars['DateTime'];
|
|
2883
2883
|
username: Scalars['String'];
|
|
2884
2884
|
};
|
|
2885
|
-
export
|
|
2885
|
+
export type ProjectArchiveSourceInput = {
|
|
2886
2886
|
bucketKey?: InputMaybe<Scalars['String']>;
|
|
2887
2887
|
type: ProjectArchiveSourceType;
|
|
2888
2888
|
url?: InputMaybe<Scalars['String']>;
|
|
@@ -2893,12 +2893,12 @@ export declare enum ProjectArchiveSourceType {
|
|
|
2893
2893
|
S3 = "S3",
|
|
2894
2894
|
Url = "URL"
|
|
2895
2895
|
}
|
|
2896
|
-
export
|
|
2896
|
+
export type ProjectPublicData = {
|
|
2897
2897
|
__typename?: 'ProjectPublicData';
|
|
2898
2898
|
fullName: Scalars['String'];
|
|
2899
2899
|
id: Scalars['ID'];
|
|
2900
2900
|
};
|
|
2901
|
-
export
|
|
2901
|
+
export type ProjectQuery = {
|
|
2902
2902
|
__typename?: 'ProjectQuery';
|
|
2903
2903
|
byAccountNameAndSlug: Project;
|
|
2904
2904
|
/** @deprecated No longer supported */
|
|
@@ -2906,27 +2906,27 @@ export declare type ProjectQuery = {
|
|
|
2906
2906
|
/** @deprecated See byAccountNameAndSlug */
|
|
2907
2907
|
byUsernameAndSlug: Project;
|
|
2908
2908
|
};
|
|
2909
|
-
export
|
|
2909
|
+
export type ProjectQueryByAccountNameAndSlugArgs = {
|
|
2910
2910
|
accountName: Scalars['String'];
|
|
2911
2911
|
platform?: InputMaybe<AppPlatform>;
|
|
2912
2912
|
sdkVersions?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
2913
2913
|
slug: Scalars['String'];
|
|
2914
2914
|
};
|
|
2915
|
-
export
|
|
2915
|
+
export type ProjectQueryByPathsArgs = {
|
|
2916
2916
|
paths?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
2917
2917
|
};
|
|
2918
|
-
export
|
|
2918
|
+
export type ProjectQueryByUsernameAndSlugArgs = {
|
|
2919
2919
|
platform?: InputMaybe<Scalars['String']>;
|
|
2920
2920
|
sdkVersions?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
2921
2921
|
slug: Scalars['String'];
|
|
2922
2922
|
username: Scalars['String'];
|
|
2923
2923
|
};
|
|
2924
|
-
export
|
|
2924
|
+
export type PublicArtifacts = {
|
|
2925
2925
|
__typename?: 'PublicArtifacts';
|
|
2926
2926
|
applicationArchiveUrl?: Maybe<Scalars['String']>;
|
|
2927
2927
|
buildUrl?: Maybe<Scalars['String']>;
|
|
2928
2928
|
};
|
|
2929
|
-
export
|
|
2929
|
+
export type PublishUpdateGroupInput = {
|
|
2930
2930
|
awaitingCodeSigningInfo?: InputMaybe<Scalars['Boolean']>;
|
|
2931
2931
|
branchId: Scalars['String'];
|
|
2932
2932
|
excludedAssets?: InputMaybe<Array<PartialManifestAsset>>;
|
|
@@ -2936,12 +2936,12 @@ export declare type PublishUpdateGroupInput = {
|
|
|
2936
2936
|
runtimeVersion: Scalars['String'];
|
|
2937
2937
|
updateInfoGroup: UpdateInfoGroup;
|
|
2938
2938
|
};
|
|
2939
|
-
export
|
|
2939
|
+
export type RescindUserInvitationResult = {
|
|
2940
2940
|
__typename?: 'RescindUserInvitationResult';
|
|
2941
2941
|
id: Scalars['ID'];
|
|
2942
2942
|
};
|
|
2943
2943
|
/** Represents a robot (not human) actor. */
|
|
2944
|
-
export
|
|
2944
|
+
export type Robot = Actor & {
|
|
2945
2945
|
__typename?: 'Robot';
|
|
2946
2946
|
/** Access Tokens belonging to this actor */
|
|
2947
2947
|
accessTokens: Array<AccessToken>;
|
|
@@ -2959,13 +2959,13 @@ export declare type Robot = Actor & {
|
|
|
2959
2959
|
isExpoAdmin: Scalars['Boolean'];
|
|
2960
2960
|
};
|
|
2961
2961
|
/** Represents a robot (not human) actor. */
|
|
2962
|
-
export
|
|
2962
|
+
export type RobotFeatureGatesArgs = {
|
|
2963
2963
|
filter?: InputMaybe<Array<Scalars['String']>>;
|
|
2964
2964
|
};
|
|
2965
|
-
export
|
|
2965
|
+
export type RobotDataInput = {
|
|
2966
2966
|
name?: InputMaybe<Scalars['String']>;
|
|
2967
2967
|
};
|
|
2968
|
-
export
|
|
2968
|
+
export type RobotMutation = {
|
|
2969
2969
|
__typename?: 'RobotMutation';
|
|
2970
2970
|
/** Create a Robot and grant it Permissions on an Account */
|
|
2971
2971
|
createRobotForAccount: Robot;
|
|
@@ -2974,15 +2974,15 @@ export declare type RobotMutation = {
|
|
|
2974
2974
|
/** Update a Robot */
|
|
2975
2975
|
updateRobot: Robot;
|
|
2976
2976
|
};
|
|
2977
|
-
export
|
|
2977
|
+
export type RobotMutationCreateRobotForAccountArgs = {
|
|
2978
2978
|
accountID: Scalars['String'];
|
|
2979
2979
|
permissions: Array<InputMaybe<Permission>>;
|
|
2980
2980
|
robotData?: InputMaybe<RobotDataInput>;
|
|
2981
2981
|
};
|
|
2982
|
-
export
|
|
2982
|
+
export type RobotMutationDeleteRobotArgs = {
|
|
2983
2983
|
id: Scalars['String'];
|
|
2984
2984
|
};
|
|
2985
|
-
export
|
|
2985
|
+
export type RobotMutationUpdateRobotArgs = {
|
|
2986
2986
|
id: Scalars['String'];
|
|
2987
2987
|
robotData: RobotDataInput;
|
|
2988
2988
|
};
|
|
@@ -2995,7 +2995,7 @@ export declare enum Role {
|
|
|
2995
2995
|
Owner = "OWNER",
|
|
2996
2996
|
ViewOnly = "VIEW_ONLY"
|
|
2997
2997
|
}
|
|
2998
|
-
export
|
|
2998
|
+
export type RootMutation = {
|
|
2999
2999
|
__typename?: 'RootMutation';
|
|
3000
3000
|
/**
|
|
3001
3001
|
* This is a placeholder field
|
|
@@ -3076,19 +3076,19 @@ export declare type RootMutation = {
|
|
|
3076
3076
|
/** Mutations that create, delete, update Webhooks */
|
|
3077
3077
|
webhook: WebhookMutation;
|
|
3078
3078
|
};
|
|
3079
|
-
export
|
|
3079
|
+
export type RootMutationAccountArgs = {
|
|
3080
3080
|
accountName: Scalars['ID'];
|
|
3081
3081
|
};
|
|
3082
|
-
export
|
|
3082
|
+
export type RootMutationAppArgs = {
|
|
3083
3083
|
appId?: InputMaybe<Scalars['ID']>;
|
|
3084
3084
|
};
|
|
3085
|
-
export
|
|
3085
|
+
export type RootMutationBuildArgs = {
|
|
3086
3086
|
buildId?: InputMaybe<Scalars['ID']>;
|
|
3087
3087
|
};
|
|
3088
|
-
export
|
|
3088
|
+
export type RootMutationBuildJobArgs = {
|
|
3089
3089
|
buildId: Scalars['ID'];
|
|
3090
3090
|
};
|
|
3091
|
-
export
|
|
3091
|
+
export type RootQuery = {
|
|
3092
3092
|
__typename?: 'RootQuery';
|
|
3093
3093
|
/**
|
|
3094
3094
|
* This is a placeholder field
|
|
@@ -3166,25 +3166,25 @@ export declare type RootQuery = {
|
|
|
3166
3166
|
/** Top-level query object for querying Webhooks. */
|
|
3167
3167
|
webhook: WebhookQuery;
|
|
3168
3168
|
};
|
|
3169
|
-
export
|
|
3169
|
+
export type RootQueryAllPublicAppsArgs = {
|
|
3170
3170
|
filter: AppsFilter;
|
|
3171
3171
|
limit?: InputMaybe<Scalars['Int']>;
|
|
3172
3172
|
offset?: InputMaybe<Scalars['Int']>;
|
|
3173
3173
|
sort: AppSort;
|
|
3174
3174
|
};
|
|
3175
|
-
export
|
|
3175
|
+
export type RootQueryAppByAppIdArgs = {
|
|
3176
3176
|
appId: Scalars['String'];
|
|
3177
3177
|
};
|
|
3178
|
-
export
|
|
3178
|
+
export type RootQueryUpdatesByGroupArgs = {
|
|
3179
3179
|
group: Scalars['ID'];
|
|
3180
3180
|
};
|
|
3181
|
-
export
|
|
3181
|
+
export type RootQueryUserByUserIdArgs = {
|
|
3182
3182
|
userId: Scalars['String'];
|
|
3183
3183
|
};
|
|
3184
|
-
export
|
|
3184
|
+
export type RootQueryUserByUsernameArgs = {
|
|
3185
3185
|
username: Scalars['String'];
|
|
3186
3186
|
};
|
|
3187
|
-
export
|
|
3187
|
+
export type Runtime = {
|
|
3188
3188
|
__typename?: 'Runtime';
|
|
3189
3189
|
app: App;
|
|
3190
3190
|
firstBuildCreatedAt: Scalars['DateTime'];
|
|
@@ -3192,7 +3192,7 @@ export declare type Runtime = {
|
|
|
3192
3192
|
version: Scalars['String'];
|
|
3193
3193
|
};
|
|
3194
3194
|
/** Represents a human SSO (not robot) actor. */
|
|
3195
|
-
export
|
|
3195
|
+
export type SsoUser = Actor & {
|
|
3196
3196
|
__typename?: 'SSOUser';
|
|
3197
3197
|
/** Access Tokens belonging to this actor, none at present */
|
|
3198
3198
|
accessTokens: Array<AccessToken>;
|
|
@@ -3227,56 +3227,56 @@ export declare type SsoUser = Actor & {
|
|
|
3227
3227
|
username: Scalars['String'];
|
|
3228
3228
|
};
|
|
3229
3229
|
/** Represents a human SSO (not robot) actor. */
|
|
3230
|
-
export
|
|
3230
|
+
export type SsoUserActivityTimelineProjectActivitiesArgs = {
|
|
3231
3231
|
createdBefore?: InputMaybe<Scalars['DateTime']>;
|
|
3232
3232
|
filterTypes?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
|
|
3233
3233
|
limit: Scalars['Int'];
|
|
3234
3234
|
};
|
|
3235
3235
|
/** Represents a human SSO (not robot) actor. */
|
|
3236
|
-
export
|
|
3236
|
+
export type SsoUserAppsArgs = {
|
|
3237
3237
|
includeUnpublished?: InputMaybe<Scalars['Boolean']>;
|
|
3238
3238
|
limit: Scalars['Int'];
|
|
3239
3239
|
offset: Scalars['Int'];
|
|
3240
3240
|
};
|
|
3241
3241
|
/** Represents a human SSO (not robot) actor. */
|
|
3242
|
-
export
|
|
3242
|
+
export type SsoUserFeatureGatesArgs = {
|
|
3243
3243
|
filter?: InputMaybe<Array<Scalars['String']>>;
|
|
3244
3244
|
};
|
|
3245
3245
|
/** Represents a human SSO (not robot) actor. */
|
|
3246
|
-
export
|
|
3246
|
+
export type SsoUserSnacksArgs = {
|
|
3247
3247
|
limit: Scalars['Int'];
|
|
3248
3248
|
offset: Scalars['Int'];
|
|
3249
3249
|
};
|
|
3250
|
-
export
|
|
3250
|
+
export type SsoUserQuery = {
|
|
3251
3251
|
__typename?: 'SSOUserQuery';
|
|
3252
3252
|
/** Query an SSOUser by ID */
|
|
3253
3253
|
byId: SsoUser;
|
|
3254
3254
|
/** Query an SSOUser by username */
|
|
3255
3255
|
byUsername: SsoUser;
|
|
3256
3256
|
};
|
|
3257
|
-
export
|
|
3257
|
+
export type SsoUserQueryByIdArgs = {
|
|
3258
3258
|
userId: Scalars['String'];
|
|
3259
3259
|
};
|
|
3260
|
-
export
|
|
3260
|
+
export type SsoUserQueryByUsernameArgs = {
|
|
3261
3261
|
username: Scalars['String'];
|
|
3262
3262
|
};
|
|
3263
|
-
export
|
|
3263
|
+
export type SecondFactorBooleanResult = {
|
|
3264
3264
|
__typename?: 'SecondFactorBooleanResult';
|
|
3265
3265
|
success: Scalars['Boolean'];
|
|
3266
3266
|
};
|
|
3267
|
-
export
|
|
3267
|
+
export type SecondFactorDeviceConfiguration = {
|
|
3268
3268
|
isPrimary: Scalars['Boolean'];
|
|
3269
3269
|
method: SecondFactorMethod;
|
|
3270
3270
|
name: Scalars['String'];
|
|
3271
3271
|
smsPhoneNumber?: InputMaybe<Scalars['String']>;
|
|
3272
3272
|
};
|
|
3273
|
-
export
|
|
3273
|
+
export type SecondFactorDeviceConfigurationResult = {
|
|
3274
3274
|
__typename?: 'SecondFactorDeviceConfigurationResult';
|
|
3275
3275
|
keyURI: Scalars['String'];
|
|
3276
3276
|
secondFactorDevice: UserSecondFactorDevice;
|
|
3277
3277
|
secret: Scalars['String'];
|
|
3278
3278
|
};
|
|
3279
|
-
export
|
|
3279
|
+
export type SecondFactorInitiationResult = {
|
|
3280
3280
|
__typename?: 'SecondFactorInitiationResult';
|
|
3281
3281
|
configurationResults: Array<SecondFactorDeviceConfigurationResult>;
|
|
3282
3282
|
plaintextBackupCodes: Array<Scalars['String']>;
|
|
@@ -3287,27 +3287,27 @@ export declare enum SecondFactorMethod {
|
|
|
3287
3287
|
/** SMS */
|
|
3288
3288
|
Sms = "SMS"
|
|
3289
3289
|
}
|
|
3290
|
-
export
|
|
3290
|
+
export type SecondFactorRegenerateBackupCodesResult = {
|
|
3291
3291
|
__typename?: 'SecondFactorRegenerateBackupCodesResult';
|
|
3292
3292
|
plaintextBackupCodes: Array<Scalars['String']>;
|
|
3293
3293
|
};
|
|
3294
|
-
export
|
|
3294
|
+
export type ServerlessFunctionIdentifierInput = {
|
|
3295
3295
|
gitCommitSHA1: Scalars['String'];
|
|
3296
3296
|
};
|
|
3297
|
-
export
|
|
3297
|
+
export type ServerlessFunctionMutation = {
|
|
3298
3298
|
__typename?: 'ServerlessFunctionMutation';
|
|
3299
3299
|
createDeployment: DeployServerlessFunctionResult;
|
|
3300
3300
|
createUploadPresignedUrl: CreateServerlessFunctionUploadUrlResult;
|
|
3301
3301
|
};
|
|
3302
|
-
export
|
|
3302
|
+
export type ServerlessFunctionMutationCreateDeploymentArgs = {
|
|
3303
3303
|
appId: Scalars['ID'];
|
|
3304
3304
|
serverlessFunctionIdentifierInput: ServerlessFunctionIdentifierInput;
|
|
3305
3305
|
};
|
|
3306
|
-
export
|
|
3306
|
+
export type ServerlessFunctionMutationCreateUploadPresignedUrlArgs = {
|
|
3307
3307
|
appId: Scalars['ID'];
|
|
3308
3308
|
serverlessFunctionIdentifierInput: ServerlessFunctionIdentifierInput;
|
|
3309
3309
|
};
|
|
3310
|
-
export
|
|
3310
|
+
export type Snack = Project & {
|
|
3311
3311
|
__typename?: 'Snack';
|
|
3312
3312
|
/** Description of the Snack */
|
|
3313
3313
|
description: Scalars['String'];
|
|
@@ -3333,7 +3333,7 @@ export declare type Snack = Project & {
|
|
|
3333
3333
|
/** Name of the user that created the Snack, or "snack" when the Snack was saved anonymously */
|
|
3334
3334
|
username: Scalars['String'];
|
|
3335
3335
|
};
|
|
3336
|
-
export
|
|
3336
|
+
export type SnackQuery = {
|
|
3337
3337
|
__typename?: 'SnackQuery';
|
|
3338
3338
|
/** Get snack by hashId */
|
|
3339
3339
|
byHashId: Snack;
|
|
@@ -3343,10 +3343,10 @@ export declare type SnackQuery = {
|
|
|
3343
3343
|
*/
|
|
3344
3344
|
byId: Snack;
|
|
3345
3345
|
};
|
|
3346
|
-
export
|
|
3346
|
+
export type SnackQueryByHashIdArgs = {
|
|
3347
3347
|
hashId: Scalars['ID'];
|
|
3348
3348
|
};
|
|
3349
|
-
export
|
|
3349
|
+
export type SnackQueryByIdArgs = {
|
|
3350
3350
|
id: Scalars['ID'];
|
|
3351
3351
|
};
|
|
3352
3352
|
export declare enum StandardOffer {
|
|
@@ -3360,7 +3360,7 @@ export declare enum StandardOffer {
|
|
|
3360
3360
|
YearlySub = "YEARLY_SUB"
|
|
3361
3361
|
}
|
|
3362
3362
|
/** Incident for a given component from Expo status page API. */
|
|
3363
|
-
export
|
|
3363
|
+
export type StatuspageIncident = {
|
|
3364
3364
|
__typename?: 'StatuspageIncident';
|
|
3365
3365
|
createdAt: Scalars['DateTime'];
|
|
3366
3366
|
id: Scalars['ID'];
|
|
@@ -3396,7 +3396,7 @@ export declare enum StatuspageIncidentStatus {
|
|
|
3396
3396
|
Verifying = "VERIFYING"
|
|
3397
3397
|
}
|
|
3398
3398
|
/** Update for an Incident from Expo status page API. */
|
|
3399
|
-
export
|
|
3399
|
+
export type StatuspageIncidentUpdate = {
|
|
3400
3400
|
__typename?: 'StatuspageIncidentUpdate';
|
|
3401
3401
|
/** Text of an update from Expo status page. */
|
|
3402
3402
|
body: Scalars['String'];
|
|
@@ -3406,7 +3406,7 @@ export declare type StatuspageIncidentUpdate = {
|
|
|
3406
3406
|
status: StatuspageIncidentStatus;
|
|
3407
3407
|
};
|
|
3408
3408
|
/** Service monitored by Expo status page. */
|
|
3409
|
-
export
|
|
3409
|
+
export type StatuspageService = {
|
|
3410
3410
|
__typename?: 'StatuspageService';
|
|
3411
3411
|
/** Description of a service from Expo status page. */
|
|
3412
3412
|
description?: Maybe<Scalars['String']>;
|
|
@@ -3427,12 +3427,12 @@ export declare enum StatuspageServiceName {
|
|
|
3427
3427
|
EasSubmit = "EAS_SUBMIT",
|
|
3428
3428
|
EasUpdate = "EAS_UPDATE"
|
|
3429
3429
|
}
|
|
3430
|
-
export
|
|
3430
|
+
export type StatuspageServiceQuery = {
|
|
3431
3431
|
__typename?: 'StatuspageServiceQuery';
|
|
3432
3432
|
/** Query services from Expo status page by names. */
|
|
3433
3433
|
byServiceNames: Array<StatuspageService>;
|
|
3434
3434
|
};
|
|
3435
|
-
export
|
|
3435
|
+
export type StatuspageServiceQueryByServiceNamesArgs = {
|
|
3436
3436
|
serviceNames: Array<StatuspageServiceName>;
|
|
3437
3437
|
};
|
|
3438
3438
|
/** Possible statuses for a service. */
|
|
@@ -3443,7 +3443,7 @@ export declare enum StatuspageServiceStatus {
|
|
|
3443
3443
|
PartialOutage = "PARTIAL_OUTAGE",
|
|
3444
3444
|
UnderMaintenance = "UNDER_MAINTENANCE"
|
|
3445
3445
|
}
|
|
3446
|
-
export
|
|
3446
|
+
export type StripeCoupon = {
|
|
3447
3447
|
__typename?: 'StripeCoupon';
|
|
3448
3448
|
amountOff?: Maybe<Scalars['String']>;
|
|
3449
3449
|
appliesTo?: Maybe<Scalars['String']>;
|
|
@@ -3453,7 +3453,7 @@ export declare type StripeCoupon = {
|
|
|
3453
3453
|
valid: Scalars['Boolean'];
|
|
3454
3454
|
};
|
|
3455
3455
|
/** Represents an EAS Submission */
|
|
3456
|
-
export
|
|
3456
|
+
export type Submission = ActivityTimelineProjectActivity & {
|
|
3457
3457
|
__typename?: 'Submission';
|
|
3458
3458
|
activityTimestamp: Scalars['DateTime'];
|
|
3459
3459
|
actor?: Maybe<Actor>;
|
|
@@ -3494,7 +3494,7 @@ export declare enum SubmissionAndroidTrack {
|
|
|
3494
3494
|
Internal = "INTERNAL",
|
|
3495
3495
|
Production = "PRODUCTION"
|
|
3496
3496
|
}
|
|
3497
|
-
export
|
|
3497
|
+
export type SubmissionArchiveSourceInput = {
|
|
3498
3498
|
/** Required if the archive source type is GCS_BUILD_APPLICATION_ARCHIVE or GCS_SUBMIT_ARCHIVE */
|
|
3499
3499
|
bucketKey?: InputMaybe<Scalars['String']>;
|
|
3500
3500
|
type: SubmissionArchiveSourceType;
|
|
@@ -3506,16 +3506,16 @@ export declare enum SubmissionArchiveSourceType {
|
|
|
3506
3506
|
GcsSubmitArchive = "GCS_SUBMIT_ARCHIVE",
|
|
3507
3507
|
Url = "URL"
|
|
3508
3508
|
}
|
|
3509
|
-
export
|
|
3509
|
+
export type SubmissionError = {
|
|
3510
3510
|
__typename?: 'SubmissionError';
|
|
3511
3511
|
errorCode?: Maybe<Scalars['String']>;
|
|
3512
3512
|
message?: Maybe<Scalars['String']>;
|
|
3513
3513
|
};
|
|
3514
|
-
export
|
|
3514
|
+
export type SubmissionFilter = {
|
|
3515
3515
|
platform?: InputMaybe<AppPlatform>;
|
|
3516
3516
|
status?: InputMaybe<SubmissionStatus>;
|
|
3517
3517
|
};
|
|
3518
|
-
export
|
|
3518
|
+
export type SubmissionMutation = {
|
|
3519
3519
|
__typename?: 'SubmissionMutation';
|
|
3520
3520
|
/** Cancel an EAS Submit submission */
|
|
3521
3521
|
cancelSubmission: Submission;
|
|
@@ -3526,24 +3526,24 @@ export declare type SubmissionMutation = {
|
|
|
3526
3526
|
/** Retry an EAS Submit submission */
|
|
3527
3527
|
retrySubmission: CreateSubmissionResult;
|
|
3528
3528
|
};
|
|
3529
|
-
export
|
|
3529
|
+
export type SubmissionMutationCancelSubmissionArgs = {
|
|
3530
3530
|
submissionId: Scalars['ID'];
|
|
3531
3531
|
};
|
|
3532
|
-
export
|
|
3532
|
+
export type SubmissionMutationCreateAndroidSubmissionArgs = {
|
|
3533
3533
|
input: CreateAndroidSubmissionInput;
|
|
3534
3534
|
};
|
|
3535
|
-
export
|
|
3535
|
+
export type SubmissionMutationCreateIosSubmissionArgs = {
|
|
3536
3536
|
input: CreateIosSubmissionInput;
|
|
3537
3537
|
};
|
|
3538
|
-
export
|
|
3538
|
+
export type SubmissionMutationRetrySubmissionArgs = {
|
|
3539
3539
|
parentSubmissionId: Scalars['ID'];
|
|
3540
3540
|
};
|
|
3541
|
-
export
|
|
3541
|
+
export type SubmissionQuery = {
|
|
3542
3542
|
__typename?: 'SubmissionQuery';
|
|
3543
3543
|
/** Look up EAS Submission by submission ID */
|
|
3544
3544
|
byId: Submission;
|
|
3545
3545
|
};
|
|
3546
|
-
export
|
|
3546
|
+
export type SubmissionQueryByIdArgs = {
|
|
3547
3547
|
submissionId: Scalars['ID'];
|
|
3548
3548
|
};
|
|
3549
3549
|
export declare enum SubmissionStatus {
|
|
@@ -3554,11 +3554,11 @@ export declare enum SubmissionStatus {
|
|
|
3554
3554
|
InProgress = "IN_PROGRESS",
|
|
3555
3555
|
InQueue = "IN_QUEUE"
|
|
3556
3556
|
}
|
|
3557
|
-
export
|
|
3557
|
+
export type SubscribeToNotificationResult = {
|
|
3558
3558
|
__typename?: 'SubscribeToNotificationResult';
|
|
3559
3559
|
notificationSubscription: NotificationSubscription;
|
|
3560
3560
|
};
|
|
3561
|
-
export
|
|
3561
|
+
export type SubscriptionDetails = {
|
|
3562
3562
|
__typename?: 'SubscriptionDetails';
|
|
3563
3563
|
addons: Array<AddonDetails>;
|
|
3564
3564
|
cancelledAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -3578,14 +3578,14 @@ export declare type SubscriptionDetails = {
|
|
|
3578
3578
|
trialEnd?: Maybe<Scalars['DateTime']>;
|
|
3579
3579
|
willCancel?: Maybe<Scalars['Boolean']>;
|
|
3580
3580
|
};
|
|
3581
|
-
export
|
|
3581
|
+
export type SubscriptionDetailsPlanEnablementArgs = {
|
|
3582
3582
|
serviceMetric: EasServiceMetric;
|
|
3583
3583
|
};
|
|
3584
|
-
export
|
|
3584
|
+
export type UnsubscribeFromNotificationResult = {
|
|
3585
3585
|
__typename?: 'UnsubscribeFromNotificationResult';
|
|
3586
3586
|
notificationSubscription: NotificationSubscription;
|
|
3587
3587
|
};
|
|
3588
|
-
export
|
|
3588
|
+
export type Update = ActivityTimelineProjectActivity & {
|
|
3589
3589
|
__typename?: 'Update';
|
|
3590
3590
|
activityTimestamp: Scalars['DateTime'];
|
|
3591
3591
|
actor?: Maybe<Actor>;
|
|
@@ -3605,7 +3605,7 @@ export declare type Update = ActivityTimelineProjectActivity & {
|
|
|
3605
3605
|
runtimeVersion: Scalars['String'];
|
|
3606
3606
|
updatedAt: Scalars['DateTime'];
|
|
3607
3607
|
};
|
|
3608
|
-
export
|
|
3608
|
+
export type UpdateBranch = {
|
|
3609
3609
|
__typename?: 'UpdateBranch';
|
|
3610
3610
|
appId: Scalars['ID'];
|
|
3611
3611
|
createdAt: Scalars['DateTime'];
|
|
@@ -3615,17 +3615,17 @@ export declare type UpdateBranch = {
|
|
|
3615
3615
|
updatedAt: Scalars['DateTime'];
|
|
3616
3616
|
updates: Array<Update>;
|
|
3617
3617
|
};
|
|
3618
|
-
export
|
|
3618
|
+
export type UpdateBranchUpdateGroupsArgs = {
|
|
3619
3619
|
filter?: InputMaybe<UpdatesFilter>;
|
|
3620
3620
|
limit: Scalars['Int'];
|
|
3621
3621
|
offset: Scalars['Int'];
|
|
3622
3622
|
};
|
|
3623
|
-
export
|
|
3623
|
+
export type UpdateBranchUpdatesArgs = {
|
|
3624
3624
|
filter?: InputMaybe<UpdatesFilter>;
|
|
3625
3625
|
limit: Scalars['Int'];
|
|
3626
3626
|
offset: Scalars['Int'];
|
|
3627
3627
|
};
|
|
3628
|
-
export
|
|
3628
|
+
export type UpdateBranchMutation = {
|
|
3629
3629
|
__typename?: 'UpdateBranchMutation';
|
|
3630
3630
|
/** Create an EAS branch for an app */
|
|
3631
3631
|
createUpdateBranchForApp: UpdateBranch;
|
|
@@ -3639,20 +3639,20 @@ export declare type UpdateBranchMutation = {
|
|
|
3639
3639
|
/** Publish an update group to a branch */
|
|
3640
3640
|
publishUpdateGroups: Array<Update>;
|
|
3641
3641
|
};
|
|
3642
|
-
export
|
|
3642
|
+
export type UpdateBranchMutationCreateUpdateBranchForAppArgs = {
|
|
3643
3643
|
appId: Scalars['ID'];
|
|
3644
3644
|
name: Scalars['String'];
|
|
3645
3645
|
};
|
|
3646
|
-
export
|
|
3646
|
+
export type UpdateBranchMutationDeleteUpdateBranchArgs = {
|
|
3647
3647
|
branchId: Scalars['ID'];
|
|
3648
3648
|
};
|
|
3649
|
-
export
|
|
3649
|
+
export type UpdateBranchMutationEditUpdateBranchArgs = {
|
|
3650
3650
|
input: EditUpdateBranchInput;
|
|
3651
3651
|
};
|
|
3652
|
-
export
|
|
3652
|
+
export type UpdateBranchMutationPublishUpdateGroupsArgs = {
|
|
3653
3653
|
publishUpdateGroupsInput: Array<PublishUpdateGroupInput>;
|
|
3654
3654
|
};
|
|
3655
|
-
export
|
|
3655
|
+
export type UpdateChannel = {
|
|
3656
3656
|
__typename?: 'UpdateChannel';
|
|
3657
3657
|
appId: Scalars['ID'];
|
|
3658
3658
|
branchMapping: Scalars['String'];
|
|
@@ -3662,11 +3662,11 @@ export declare type UpdateChannel = {
|
|
|
3662
3662
|
updateBranches: Array<UpdateBranch>;
|
|
3663
3663
|
updatedAt: Scalars['DateTime'];
|
|
3664
3664
|
};
|
|
3665
|
-
export
|
|
3665
|
+
export type UpdateChannelUpdateBranchesArgs = {
|
|
3666
3666
|
limit: Scalars['Int'];
|
|
3667
3667
|
offset: Scalars['Int'];
|
|
3668
3668
|
};
|
|
3669
|
-
export
|
|
3669
|
+
export type UpdateChannelMutation = {
|
|
3670
3670
|
__typename?: 'UpdateChannelMutation';
|
|
3671
3671
|
/**
|
|
3672
3672
|
* Create an EAS channel for an app.
|
|
@@ -3685,50 +3685,50 @@ export declare type UpdateChannelMutation = {
|
|
|
3685
3685
|
*/
|
|
3686
3686
|
editUpdateChannel: UpdateChannel;
|
|
3687
3687
|
};
|
|
3688
|
-
export
|
|
3688
|
+
export type UpdateChannelMutationCreateUpdateChannelForAppArgs = {
|
|
3689
3689
|
appId: Scalars['ID'];
|
|
3690
3690
|
branchMapping?: InputMaybe<Scalars['String']>;
|
|
3691
3691
|
name: Scalars['String'];
|
|
3692
3692
|
};
|
|
3693
|
-
export
|
|
3693
|
+
export type UpdateChannelMutationDeleteUpdateChannelArgs = {
|
|
3694
3694
|
channelId: Scalars['ID'];
|
|
3695
3695
|
};
|
|
3696
|
-
export
|
|
3696
|
+
export type UpdateChannelMutationEditUpdateChannelArgs = {
|
|
3697
3697
|
branchMapping: Scalars['String'];
|
|
3698
3698
|
channelId: Scalars['ID'];
|
|
3699
3699
|
};
|
|
3700
|
-
export
|
|
3700
|
+
export type UpdateGitHubRepositorySettingsInput = {
|
|
3701
3701
|
baseDirectory: Scalars['String'];
|
|
3702
3702
|
};
|
|
3703
|
-
export
|
|
3703
|
+
export type UpdateInfoGroup = {
|
|
3704
3704
|
android?: InputMaybe<PartialManifest>;
|
|
3705
3705
|
ios?: InputMaybe<PartialManifest>;
|
|
3706
3706
|
web?: InputMaybe<PartialManifest>;
|
|
3707
3707
|
};
|
|
3708
|
-
export
|
|
3708
|
+
export type UpdateMutation = {
|
|
3709
3709
|
__typename?: 'UpdateMutation';
|
|
3710
3710
|
/** Delete an EAS update group */
|
|
3711
3711
|
deleteUpdateGroup: DeleteUpdateGroupResult;
|
|
3712
3712
|
/** Set code signing info for an update */
|
|
3713
3713
|
setCodeSigningInfo: Update;
|
|
3714
3714
|
};
|
|
3715
|
-
export
|
|
3715
|
+
export type UpdateMutationDeleteUpdateGroupArgs = {
|
|
3716
3716
|
group: Scalars['ID'];
|
|
3717
3717
|
};
|
|
3718
|
-
export
|
|
3718
|
+
export type UpdateMutationSetCodeSigningInfoArgs = {
|
|
3719
3719
|
codeSigningInfo: CodeSigningInfoInput;
|
|
3720
3720
|
updateId: Scalars['ID'];
|
|
3721
3721
|
};
|
|
3722
|
-
export
|
|
3722
|
+
export type UpdatesFilter = {
|
|
3723
3723
|
platform?: InputMaybe<AppPlatform>;
|
|
3724
3724
|
runtimeVersions?: InputMaybe<Array<Scalars['String']>>;
|
|
3725
3725
|
};
|
|
3726
|
-
export
|
|
3726
|
+
export type UploadSession = {
|
|
3727
3727
|
__typename?: 'UploadSession';
|
|
3728
3728
|
/** Create an Upload Session */
|
|
3729
3729
|
createUploadSession: Scalars['JSONObject'];
|
|
3730
3730
|
};
|
|
3731
|
-
export
|
|
3731
|
+
export type UploadSessionCreateUploadSessionArgs = {
|
|
3732
3732
|
type: UploadSessionType;
|
|
3733
3733
|
};
|
|
3734
3734
|
export declare enum UploadSessionType {
|
|
@@ -3737,7 +3737,7 @@ export declare enum UploadSessionType {
|
|
|
3737
3737
|
EasSubmitAppArchive = "EAS_SUBMIT_APP_ARCHIVE",
|
|
3738
3738
|
EasSubmitGcsAppArchive = "EAS_SUBMIT_GCS_APP_ARCHIVE"
|
|
3739
3739
|
}
|
|
3740
|
-
export
|
|
3740
|
+
export type UsageMetricTotal = {
|
|
3741
3741
|
__typename?: 'UsageMetricTotal';
|
|
3742
3742
|
billingPeriod: BillingPeriod;
|
|
3743
3743
|
id: Scalars['ID'];
|
|
@@ -3759,12 +3759,12 @@ export declare enum UsageMetricsGranularity {
|
|
|
3759
3759
|
Minute = "MINUTE",
|
|
3760
3760
|
Total = "TOTAL"
|
|
3761
3761
|
}
|
|
3762
|
-
export
|
|
3762
|
+
export type UsageMetricsTimespan = {
|
|
3763
3763
|
end: Scalars['DateTime'];
|
|
3764
3764
|
start: Scalars['DateTime'];
|
|
3765
3765
|
};
|
|
3766
3766
|
/** Represents a human (not robot) actor. */
|
|
3767
|
-
export
|
|
3767
|
+
export type User = Actor & {
|
|
3768
3768
|
__typename?: 'User';
|
|
3769
3769
|
/** Access Tokens belonging to this actor */
|
|
3770
3770
|
accessTokens: Array<AccessToken>;
|
|
@@ -3809,31 +3809,31 @@ export declare type User = Actor & {
|
|
|
3809
3809
|
username: Scalars['String'];
|
|
3810
3810
|
};
|
|
3811
3811
|
/** Represents a human (not robot) actor. */
|
|
3812
|
-
export
|
|
3812
|
+
export type UserActivityTimelineProjectActivitiesArgs = {
|
|
3813
3813
|
createdBefore?: InputMaybe<Scalars['DateTime']>;
|
|
3814
3814
|
filterTypes?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
|
|
3815
3815
|
limit: Scalars['Int'];
|
|
3816
3816
|
};
|
|
3817
3817
|
/** Represents a human (not robot) actor. */
|
|
3818
|
-
export
|
|
3818
|
+
export type UserAppsArgs = {
|
|
3819
3819
|
includeUnpublished?: InputMaybe<Scalars['Boolean']>;
|
|
3820
3820
|
limit: Scalars['Int'];
|
|
3821
3821
|
offset: Scalars['Int'];
|
|
3822
3822
|
};
|
|
3823
3823
|
/** Represents a human (not robot) actor. */
|
|
3824
|
-
export
|
|
3824
|
+
export type UserFeatureGatesArgs = {
|
|
3825
3825
|
filter?: InputMaybe<Array<Scalars['String']>>;
|
|
3826
3826
|
};
|
|
3827
3827
|
/** Represents a human (not robot) actor. */
|
|
3828
|
-
export
|
|
3828
|
+
export type UserNotificationSubscriptionsArgs = {
|
|
3829
3829
|
filter?: InputMaybe<NotificationSubscriptionFilter>;
|
|
3830
3830
|
};
|
|
3831
3831
|
/** Represents a human (not robot) actor. */
|
|
3832
|
-
export
|
|
3832
|
+
export type UserSnacksArgs = {
|
|
3833
3833
|
limit: Scalars['Int'];
|
|
3834
3834
|
offset: Scalars['Int'];
|
|
3835
3835
|
};
|
|
3836
|
-
export
|
|
3836
|
+
export type UserDataInput = {
|
|
3837
3837
|
appetizeCode?: InputMaybe<Scalars['String']>;
|
|
3838
3838
|
email?: InputMaybe<Scalars['String']>;
|
|
3839
3839
|
firstName?: InputMaybe<Scalars['String']>;
|
|
@@ -3848,7 +3848,7 @@ export declare type UserDataInput = {
|
|
|
3848
3848
|
username?: InputMaybe<Scalars['String']>;
|
|
3849
3849
|
};
|
|
3850
3850
|
/** An pending invitation sent to an email granting membership on an Account. */
|
|
3851
|
-
export
|
|
3851
|
+
export type UserInvitation = {
|
|
3852
3852
|
__typename?: 'UserInvitation';
|
|
3853
3853
|
accountName: Scalars['String'];
|
|
3854
3854
|
/** If the invite is for a personal team, the profile photo of account owner */
|
|
@@ -3865,7 +3865,7 @@ export declare type UserInvitation = {
|
|
|
3865
3865
|
/** Role to be granted upon acceptance of this invitation */
|
|
3866
3866
|
role: Role;
|
|
3867
3867
|
};
|
|
3868
|
-
export
|
|
3868
|
+
export type UserInvitationMutation = {
|
|
3869
3869
|
__typename?: 'UserInvitationMutation';
|
|
3870
3870
|
/** Accept UserInvitation by ID. Viewer must have matching email and email must be verified. */
|
|
3871
3871
|
acceptUserInvitationAsViewer: AcceptUserInvitationResult;
|
|
@@ -3890,28 +3890,28 @@ export declare type UserInvitationMutation = {
|
|
|
3890
3890
|
/** Re-send UserInivitation by ID */
|
|
3891
3891
|
resendUserInvitation: UserInvitation;
|
|
3892
3892
|
};
|
|
3893
|
-
export
|
|
3893
|
+
export type UserInvitationMutationAcceptUserInvitationAsViewerArgs = {
|
|
3894
3894
|
id: Scalars['ID'];
|
|
3895
3895
|
};
|
|
3896
|
-
export
|
|
3896
|
+
export type UserInvitationMutationAcceptUserInvitationByTokenAsViewerArgs = {
|
|
3897
3897
|
token: Scalars['ID'];
|
|
3898
3898
|
};
|
|
3899
|
-
export
|
|
3899
|
+
export type UserInvitationMutationCreateUserInvitationForAccountArgs = {
|
|
3900
3900
|
accountID: Scalars['ID'];
|
|
3901
3901
|
email: Scalars['String'];
|
|
3902
3902
|
permissions: Array<InputMaybe<Permission>>;
|
|
3903
3903
|
};
|
|
3904
|
-
export
|
|
3904
|
+
export type UserInvitationMutationDeleteUserInvitationArgs = {
|
|
3905
3905
|
id: Scalars['ID'];
|
|
3906
3906
|
};
|
|
3907
|
-
export
|
|
3907
|
+
export type UserInvitationMutationDeleteUserInvitationByTokenArgs = {
|
|
3908
3908
|
token: Scalars['ID'];
|
|
3909
3909
|
};
|
|
3910
|
-
export
|
|
3910
|
+
export type UserInvitationMutationResendUserInvitationArgs = {
|
|
3911
3911
|
id: Scalars['ID'];
|
|
3912
3912
|
};
|
|
3913
3913
|
/** Publicly visible data for a UserInvitation. */
|
|
3914
|
-
export
|
|
3914
|
+
export type UserInvitationPublicData = {
|
|
3915
3915
|
__typename?: 'UserInvitationPublicData';
|
|
3916
3916
|
accountName: Scalars['String'];
|
|
3917
3917
|
accountProfilePhoto?: Maybe<Scalars['String']>;
|
|
@@ -3922,15 +3922,15 @@ export declare type UserInvitationPublicData = {
|
|
|
3922
3922
|
id: Scalars['ID'];
|
|
3923
3923
|
isForOrganization: Scalars['Boolean'];
|
|
3924
3924
|
};
|
|
3925
|
-
export
|
|
3925
|
+
export type UserInvitationPublicDataQuery = {
|
|
3926
3926
|
__typename?: 'UserInvitationPublicDataQuery';
|
|
3927
3927
|
/** Get UserInvitationPublicData by token */
|
|
3928
3928
|
byToken: UserInvitationPublicData;
|
|
3929
3929
|
};
|
|
3930
|
-
export
|
|
3930
|
+
export type UserInvitationPublicDataQueryByTokenArgs = {
|
|
3931
3931
|
token: Scalars['ID'];
|
|
3932
3932
|
};
|
|
3933
|
-
export
|
|
3933
|
+
export type UserPermission = {
|
|
3934
3934
|
__typename?: 'UserPermission';
|
|
3935
3935
|
actor: Actor;
|
|
3936
3936
|
permissions: Array<Permission>;
|
|
@@ -3938,21 +3938,21 @@ export declare type UserPermission = {
|
|
|
3938
3938
|
/** @deprecated User type is deprecated */
|
|
3939
3939
|
user?: Maybe<User>;
|
|
3940
3940
|
};
|
|
3941
|
-
export
|
|
3941
|
+
export type UserQuery = {
|
|
3942
3942
|
__typename?: 'UserQuery';
|
|
3943
3943
|
/** Query a User by ID */
|
|
3944
3944
|
byId: User;
|
|
3945
3945
|
/** Query a User by username */
|
|
3946
3946
|
byUsername: User;
|
|
3947
3947
|
};
|
|
3948
|
-
export
|
|
3948
|
+
export type UserQueryByIdArgs = {
|
|
3949
3949
|
userId: Scalars['String'];
|
|
3950
3950
|
};
|
|
3951
|
-
export
|
|
3951
|
+
export type UserQueryByUsernameArgs = {
|
|
3952
3952
|
username: Scalars['String'];
|
|
3953
3953
|
};
|
|
3954
3954
|
/** A second factor device belonging to a User */
|
|
3955
|
-
export
|
|
3955
|
+
export type UserSecondFactorDevice = {
|
|
3956
3956
|
__typename?: 'UserSecondFactorDevice';
|
|
3957
3957
|
createdAt: Scalars['DateTime'];
|
|
3958
3958
|
id: Scalars['ID'];
|
|
@@ -3964,7 +3964,7 @@ export declare type UserSecondFactorDevice = {
|
|
|
3964
3964
|
updatedAt: Scalars['DateTime'];
|
|
3965
3965
|
user: User;
|
|
3966
3966
|
};
|
|
3967
|
-
export
|
|
3967
|
+
export type Webhook = {
|
|
3968
3968
|
__typename?: 'Webhook';
|
|
3969
3969
|
appId: Scalars['ID'];
|
|
3970
3970
|
createdAt: Scalars['DateTime'];
|
|
@@ -3973,15 +3973,15 @@ export declare type Webhook = {
|
|
|
3973
3973
|
updatedAt: Scalars['DateTime'];
|
|
3974
3974
|
url: Scalars['String'];
|
|
3975
3975
|
};
|
|
3976
|
-
export
|
|
3976
|
+
export type WebhookFilter = {
|
|
3977
3977
|
event?: InputMaybe<WebhookType>;
|
|
3978
3978
|
};
|
|
3979
|
-
export
|
|
3979
|
+
export type WebhookInput = {
|
|
3980
3980
|
event: WebhookType;
|
|
3981
3981
|
secret: Scalars['String'];
|
|
3982
3982
|
url: Scalars['String'];
|
|
3983
3983
|
};
|
|
3984
|
-
export
|
|
3984
|
+
export type WebhookMutation = {
|
|
3985
3985
|
__typename?: 'WebhookMutation';
|
|
3986
3986
|
/** Create a Webhook */
|
|
3987
3987
|
createWebhook: Webhook;
|
|
@@ -3990,49 +3990,49 @@ export declare type WebhookMutation = {
|
|
|
3990
3990
|
/** Update a Webhook */
|
|
3991
3991
|
updateWebhook: Webhook;
|
|
3992
3992
|
};
|
|
3993
|
-
export
|
|
3993
|
+
export type WebhookMutationCreateWebhookArgs = {
|
|
3994
3994
|
appId: Scalars['String'];
|
|
3995
3995
|
webhookInput: WebhookInput;
|
|
3996
3996
|
};
|
|
3997
|
-
export
|
|
3997
|
+
export type WebhookMutationDeleteWebhookArgs = {
|
|
3998
3998
|
webhookId: Scalars['ID'];
|
|
3999
3999
|
};
|
|
4000
|
-
export
|
|
4000
|
+
export type WebhookMutationUpdateWebhookArgs = {
|
|
4001
4001
|
webhookId: Scalars['ID'];
|
|
4002
4002
|
webhookInput: WebhookInput;
|
|
4003
4003
|
};
|
|
4004
|
-
export
|
|
4004
|
+
export type WebhookQuery = {
|
|
4005
4005
|
__typename?: 'WebhookQuery';
|
|
4006
4006
|
byId: Webhook;
|
|
4007
4007
|
};
|
|
4008
|
-
export
|
|
4008
|
+
export type WebhookQueryByIdArgs = {
|
|
4009
4009
|
id: Scalars['ID'];
|
|
4010
4010
|
};
|
|
4011
4011
|
export declare enum WebhookType {
|
|
4012
4012
|
Build = "BUILD",
|
|
4013
4013
|
Submit = "SUBMIT"
|
|
4014
4014
|
}
|
|
4015
|
-
export
|
|
4015
|
+
export type DeleteAndroidAppBuildCredentialsResult = {
|
|
4016
4016
|
__typename?: 'deleteAndroidAppBuildCredentialsResult';
|
|
4017
4017
|
id: Scalars['ID'];
|
|
4018
4018
|
};
|
|
4019
|
-
export
|
|
4019
|
+
export type DeleteAndroidFcmResult = {
|
|
4020
4020
|
__typename?: 'deleteAndroidFcmResult';
|
|
4021
4021
|
id: Scalars['ID'];
|
|
4022
4022
|
};
|
|
4023
|
-
export
|
|
4023
|
+
export type DeleteAppStoreConnectApiKeyResult = {
|
|
4024
4024
|
__typename?: 'deleteAppStoreConnectApiKeyResult';
|
|
4025
4025
|
id: Scalars['ID'];
|
|
4026
4026
|
};
|
|
4027
|
-
export
|
|
4027
|
+
export type DeleteApplePushKeyResult = {
|
|
4028
4028
|
__typename?: 'deleteApplePushKeyResult';
|
|
4029
4029
|
id: Scalars['ID'];
|
|
4030
4030
|
};
|
|
4031
|
-
export
|
|
4031
|
+
export type CreateUpdateBranchForAppMutationVariables = Exact<{
|
|
4032
4032
|
appId: Scalars['ID'];
|
|
4033
4033
|
name: Scalars['String'];
|
|
4034
4034
|
}>;
|
|
4035
|
-
export
|
|
4035
|
+
export type CreateUpdateBranchForAppMutation = {
|
|
4036
4036
|
__typename?: 'RootMutation';
|
|
4037
4037
|
updateBranch: {
|
|
4038
4038
|
__typename?: 'UpdateBranchMutation';
|
|
@@ -4043,12 +4043,12 @@ export declare type CreateUpdateBranchForAppMutation = {
|
|
|
4043
4043
|
};
|
|
4044
4044
|
};
|
|
4045
4045
|
};
|
|
4046
|
-
export
|
|
4046
|
+
export type CreateUpdateChannelOnAppMutationVariables = Exact<{
|
|
4047
4047
|
appId: Scalars['ID'];
|
|
4048
4048
|
name: Scalars['String'];
|
|
4049
4049
|
branchMapping: Scalars['String'];
|
|
4050
4050
|
}>;
|
|
4051
|
-
export
|
|
4051
|
+
export type CreateUpdateChannelOnAppMutation = {
|
|
4052
4052
|
__typename?: 'RootMutation';
|
|
4053
4053
|
updateChannel: {
|
|
4054
4054
|
__typename?: 'UpdateChannelMutation';
|
|
@@ -4060,11 +4060,11 @@ export declare type CreateUpdateChannelOnAppMutation = {
|
|
|
4060
4060
|
};
|
|
4061
4061
|
};
|
|
4062
4062
|
};
|
|
4063
|
-
export
|
|
4063
|
+
export type GetBranchInfoQueryVariables = Exact<{
|
|
4064
4064
|
appId: Scalars['String'];
|
|
4065
4065
|
name: Scalars['String'];
|
|
4066
4066
|
}>;
|
|
4067
|
-
export
|
|
4067
|
+
export type GetBranchInfoQuery = {
|
|
4068
4068
|
__typename?: 'RootQuery';
|
|
4069
4069
|
app: {
|
|
4070
4070
|
__typename?: 'AppQuery';
|
|
@@ -4079,10 +4079,10 @@ export declare type GetBranchInfoQuery = {
|
|
|
4079
4079
|
};
|
|
4080
4080
|
};
|
|
4081
4081
|
};
|
|
4082
|
-
export
|
|
4082
|
+
export type DeleteUpdateBranchMutationVariables = Exact<{
|
|
4083
4083
|
branchId: Scalars['ID'];
|
|
4084
4084
|
}>;
|
|
4085
|
-
export
|
|
4085
|
+
export type DeleteUpdateBranchMutation = {
|
|
4086
4086
|
__typename?: 'RootMutation';
|
|
4087
4087
|
updateBranch: {
|
|
4088
4088
|
__typename?: 'UpdateBranchMutation';
|
|
@@ -4092,10 +4092,10 @@ export declare type DeleteUpdateBranchMutation = {
|
|
|
4092
4092
|
};
|
|
4093
4093
|
};
|
|
4094
4094
|
};
|
|
4095
|
-
export
|
|
4095
|
+
export type EditUpdateBranchMutationVariables = Exact<{
|
|
4096
4096
|
input: EditUpdateBranchInput;
|
|
4097
4097
|
}>;
|
|
4098
|
-
export
|
|
4098
|
+
export type EditUpdateBranchMutation = {
|
|
4099
4099
|
__typename?: 'RootMutation';
|
|
4100
4100
|
updateBranch: {
|
|
4101
4101
|
__typename?: 'UpdateBranchMutation';
|
|
@@ -4106,10 +4106,10 @@ export declare type EditUpdateBranchMutation = {
|
|
|
4106
4106
|
};
|
|
4107
4107
|
};
|
|
4108
4108
|
};
|
|
4109
|
-
export
|
|
4109
|
+
export type CancelBuildMutationVariables = Exact<{
|
|
4110
4110
|
buildId: Scalars['ID'];
|
|
4111
4111
|
}>;
|
|
4112
|
-
export
|
|
4112
|
+
export type CancelBuildMutation = {
|
|
4113
4113
|
__typename?: 'RootMutation';
|
|
4114
4114
|
build: {
|
|
4115
4115
|
__typename?: 'BuildMutation';
|
|
@@ -4120,10 +4120,10 @@ export declare type CancelBuildMutation = {
|
|
|
4120
4120
|
};
|
|
4121
4121
|
};
|
|
4122
4122
|
};
|
|
4123
|
-
export
|
|
4123
|
+
export type DeleteUpdateChannelMutationVariables = Exact<{
|
|
4124
4124
|
channelId: Scalars['ID'];
|
|
4125
4125
|
}>;
|
|
4126
|
-
export
|
|
4126
|
+
export type DeleteUpdateChannelMutation = {
|
|
4127
4127
|
__typename?: 'RootMutation';
|
|
4128
4128
|
updateChannel: {
|
|
4129
4129
|
__typename?: 'UpdateChannelMutation';
|
|
@@ -4133,11 +4133,11 @@ export declare type DeleteUpdateChannelMutation = {
|
|
|
4133
4133
|
};
|
|
4134
4134
|
};
|
|
4135
4135
|
};
|
|
4136
|
-
export
|
|
4136
|
+
export type UpdateChannelBranchMappingMutationVariables = Exact<{
|
|
4137
4137
|
channelId: Scalars['ID'];
|
|
4138
4138
|
branchMapping: Scalars['String'];
|
|
4139
4139
|
}>;
|
|
4140
|
-
export
|
|
4140
|
+
export type UpdateChannelBranchMappingMutation = {
|
|
4141
4141
|
__typename?: 'RootMutation';
|
|
4142
4142
|
updateChannel: {
|
|
4143
4143
|
__typename?: 'UpdateChannelMutation';
|
|
@@ -4149,10 +4149,10 @@ export declare type UpdateChannelBranchMappingMutation = {
|
|
|
4149
4149
|
};
|
|
4150
4150
|
};
|
|
4151
4151
|
};
|
|
4152
|
-
export
|
|
4152
|
+
export type AppInfoQueryVariables = Exact<{
|
|
4153
4153
|
appId: Scalars['String'];
|
|
4154
4154
|
}>;
|
|
4155
|
-
export
|
|
4155
|
+
export type AppInfoQuery = {
|
|
4156
4156
|
__typename?: 'RootQuery';
|
|
4157
4157
|
app: {
|
|
4158
4158
|
__typename?: 'AppQuery';
|
|
@@ -4163,10 +4163,10 @@ export declare type AppInfoQuery = {
|
|
|
4163
4163
|
};
|
|
4164
4164
|
};
|
|
4165
4165
|
};
|
|
4166
|
-
export
|
|
4166
|
+
export type DeleteUpdateGroupMutationVariables = Exact<{
|
|
4167
4167
|
group: Scalars['ID'];
|
|
4168
4168
|
}>;
|
|
4169
|
-
export
|
|
4169
|
+
export type DeleteUpdateGroupMutation = {
|
|
4170
4170
|
__typename?: 'RootMutation';
|
|
4171
4171
|
update: {
|
|
4172
4172
|
__typename?: 'UpdateMutation';
|
|
@@ -4176,11 +4176,11 @@ export declare type DeleteUpdateGroupMutation = {
|
|
|
4176
4176
|
};
|
|
4177
4177
|
};
|
|
4178
4178
|
};
|
|
4179
|
-
export
|
|
4179
|
+
export type CreateAndroidAppBuildCredentialsMutationVariables = Exact<{
|
|
4180
4180
|
androidAppBuildCredentialsInput: AndroidAppBuildCredentialsInput;
|
|
4181
4181
|
androidAppCredentialsId: Scalars['ID'];
|
|
4182
4182
|
}>;
|
|
4183
|
-
export
|
|
4183
|
+
export type CreateAndroidAppBuildCredentialsMutation = {
|
|
4184
4184
|
__typename?: 'RootMutation';
|
|
4185
4185
|
androidAppBuildCredentials: {
|
|
4186
4186
|
__typename?: 'AndroidAppBuildCredentialsMutation';
|
|
@@ -4207,11 +4207,11 @@ export declare type CreateAndroidAppBuildCredentialsMutation = {
|
|
|
4207
4207
|
};
|
|
4208
4208
|
};
|
|
4209
4209
|
};
|
|
4210
|
-
export
|
|
4210
|
+
export type SetKeystoreMutationVariables = Exact<{
|
|
4211
4211
|
androidAppBuildCredentialsId: Scalars['ID'];
|
|
4212
4212
|
keystoreId: Scalars['ID'];
|
|
4213
4213
|
}>;
|
|
4214
|
-
export
|
|
4214
|
+
export type SetKeystoreMutation = {
|
|
4215
4215
|
__typename?: 'RootMutation';
|
|
4216
4216
|
androidAppBuildCredentials: {
|
|
4217
4217
|
__typename?: 'AndroidAppBuildCredentialsMutation';
|
|
@@ -4238,12 +4238,12 @@ export declare type SetKeystoreMutation = {
|
|
|
4238
4238
|
};
|
|
4239
4239
|
};
|
|
4240
4240
|
};
|
|
4241
|
-
export
|
|
4241
|
+
export type CreateAndroidAppCredentialsMutationVariables = Exact<{
|
|
4242
4242
|
androidAppCredentialsInput: AndroidAppCredentialsInput;
|
|
4243
4243
|
appId: Scalars['ID'];
|
|
4244
4244
|
applicationIdentifier: Scalars['String'];
|
|
4245
4245
|
}>;
|
|
4246
|
-
export
|
|
4246
|
+
export type CreateAndroidAppCredentialsMutation = {
|
|
4247
4247
|
__typename?: 'RootMutation';
|
|
4248
4248
|
androidAppCredentials: {
|
|
4249
4249
|
__typename?: 'AndroidAppCredentialsMutation';
|
|
@@ -4330,11 +4330,11 @@ export declare type CreateAndroidAppCredentialsMutation = {
|
|
|
4330
4330
|
};
|
|
4331
4331
|
};
|
|
4332
4332
|
};
|
|
4333
|
-
export
|
|
4333
|
+
export type SetFcmMutationVariables = Exact<{
|
|
4334
4334
|
androidAppCredentialsId: Scalars['ID'];
|
|
4335
4335
|
fcmId: Scalars['ID'];
|
|
4336
4336
|
}>;
|
|
4337
|
-
export
|
|
4337
|
+
export type SetFcmMutation = {
|
|
4338
4338
|
__typename?: 'RootMutation';
|
|
4339
4339
|
androidAppCredentials: {
|
|
4340
4340
|
__typename?: 'AndroidAppCredentialsMutation';
|
|
@@ -4421,11 +4421,11 @@ export declare type SetFcmMutation = {
|
|
|
4421
4421
|
};
|
|
4422
4422
|
};
|
|
4423
4423
|
};
|
|
4424
|
-
export
|
|
4424
|
+
export type SetGoogleServiceAccountKeyForSubmissionsMutationVariables = Exact<{
|
|
4425
4425
|
androidAppCredentialsId: Scalars['ID'];
|
|
4426
4426
|
googleServiceAccountKeyId: Scalars['ID'];
|
|
4427
4427
|
}>;
|
|
4428
|
-
export
|
|
4428
|
+
export type SetGoogleServiceAccountKeyForSubmissionsMutation = {
|
|
4429
4429
|
__typename?: 'RootMutation';
|
|
4430
4430
|
androidAppCredentials: {
|
|
4431
4431
|
__typename?: 'AndroidAppCredentialsMutation';
|
|
@@ -4512,11 +4512,11 @@ export declare type SetGoogleServiceAccountKeyForSubmissionsMutation = {
|
|
|
4512
4512
|
};
|
|
4513
4513
|
};
|
|
4514
4514
|
};
|
|
4515
|
-
export
|
|
4515
|
+
export type CreateAndroidFcmMutationVariables = Exact<{
|
|
4516
4516
|
androidFcmInput: AndroidFcmInput;
|
|
4517
4517
|
accountId: Scalars['ID'];
|
|
4518
4518
|
}>;
|
|
4519
|
-
export
|
|
4519
|
+
export type CreateAndroidFcmMutation = {
|
|
4520
4520
|
__typename?: 'RootMutation';
|
|
4521
4521
|
androidFcm: {
|
|
4522
4522
|
__typename?: 'AndroidFcmMutation';
|
|
@@ -4541,10 +4541,10 @@ export declare type CreateAndroidFcmMutation = {
|
|
|
4541
4541
|
};
|
|
4542
4542
|
};
|
|
4543
4543
|
};
|
|
4544
|
-
export
|
|
4544
|
+
export type DeleteAndroidFcmMutationVariables = Exact<{
|
|
4545
4545
|
androidFcmId: Scalars['ID'];
|
|
4546
4546
|
}>;
|
|
4547
|
-
export
|
|
4547
|
+
export type DeleteAndroidFcmMutation = {
|
|
4548
4548
|
__typename?: 'RootMutation';
|
|
4549
4549
|
androidFcm: {
|
|
4550
4550
|
__typename?: 'AndroidFcmMutation';
|
|
@@ -4554,11 +4554,11 @@ export declare type DeleteAndroidFcmMutation = {
|
|
|
4554
4554
|
};
|
|
4555
4555
|
};
|
|
4556
4556
|
};
|
|
4557
|
-
export
|
|
4557
|
+
export type CreateAndroidKeystoreMutationVariables = Exact<{
|
|
4558
4558
|
androidKeystoreInput: AndroidKeystoreInput;
|
|
4559
4559
|
accountId: Scalars['ID'];
|
|
4560
4560
|
}>;
|
|
4561
|
-
export
|
|
4561
|
+
export type CreateAndroidKeystoreMutation = {
|
|
4562
4562
|
__typename?: 'RootMutation';
|
|
4563
4563
|
androidKeystore: {
|
|
4564
4564
|
__typename?: 'AndroidKeystoreMutation';
|
|
@@ -4578,10 +4578,10 @@ export declare type CreateAndroidKeystoreMutation = {
|
|
|
4578
4578
|
} | null;
|
|
4579
4579
|
};
|
|
4580
4580
|
};
|
|
4581
|
-
export
|
|
4581
|
+
export type DeleteAndroidKeystoreMutationVariables = Exact<{
|
|
4582
4582
|
androidKeystoreId: Scalars['ID'];
|
|
4583
4583
|
}>;
|
|
4584
|
-
export
|
|
4584
|
+
export type DeleteAndroidKeystoreMutation = {
|
|
4585
4585
|
__typename?: 'RootMutation';
|
|
4586
4586
|
androidKeystore: {
|
|
4587
4587
|
__typename?: 'AndroidKeystoreMutation';
|
|
@@ -4591,11 +4591,11 @@ export declare type DeleteAndroidKeystoreMutation = {
|
|
|
4591
4591
|
};
|
|
4592
4592
|
};
|
|
4593
4593
|
};
|
|
4594
|
-
export
|
|
4594
|
+
export type CreateGoogleServiceAccountKeyMutationVariables = Exact<{
|
|
4595
4595
|
googleServiceAccountKeyInput: GoogleServiceAccountKeyInput;
|
|
4596
4596
|
accountId: Scalars['ID'];
|
|
4597
4597
|
}>;
|
|
4598
|
-
export
|
|
4598
|
+
export type CreateGoogleServiceAccountKeyMutation = {
|
|
4599
4599
|
__typename?: 'RootMutation';
|
|
4600
4600
|
googleServiceAccountKey: {
|
|
4601
4601
|
__typename?: 'GoogleServiceAccountKeyMutation';
|
|
@@ -4611,10 +4611,10 @@ export declare type CreateGoogleServiceAccountKeyMutation = {
|
|
|
4611
4611
|
};
|
|
4612
4612
|
};
|
|
4613
4613
|
};
|
|
4614
|
-
export
|
|
4614
|
+
export type DeleteGoogleServiceAccountKeyMutationVariables = Exact<{
|
|
4615
4615
|
googleServiceAccountKeyId: Scalars['ID'];
|
|
4616
4616
|
}>;
|
|
4617
|
-
export
|
|
4617
|
+
export type DeleteGoogleServiceAccountKeyMutation = {
|
|
4618
4618
|
__typename?: 'RootMutation';
|
|
4619
4619
|
googleServiceAccountKey: {
|
|
4620
4620
|
__typename?: 'GoogleServiceAccountKeyMutation';
|
|
@@ -4624,12 +4624,12 @@ export declare type DeleteGoogleServiceAccountKeyMutation = {
|
|
|
4624
4624
|
};
|
|
4625
4625
|
};
|
|
4626
4626
|
};
|
|
4627
|
-
export
|
|
4627
|
+
export type CommonAndroidAppCredentialsWithBuildCredentialsByApplicationIdentifierQueryVariables = Exact<{
|
|
4628
4628
|
projectFullName: Scalars['String'];
|
|
4629
4629
|
applicationIdentifier?: InputMaybe<Scalars['String']>;
|
|
4630
4630
|
legacyOnly?: InputMaybe<Scalars['Boolean']>;
|
|
4631
4631
|
}>;
|
|
4632
|
-
export
|
|
4632
|
+
export type CommonAndroidAppCredentialsWithBuildCredentialsByApplicationIdentifierQuery = {
|
|
4633
4633
|
__typename?: 'RootQuery';
|
|
4634
4634
|
app: {
|
|
4635
4635
|
__typename?: 'AppQuery';
|
|
@@ -4720,10 +4720,10 @@ export declare type CommonAndroidAppCredentialsWithBuildCredentialsByApplication
|
|
|
4720
4720
|
};
|
|
4721
4721
|
};
|
|
4722
4722
|
};
|
|
4723
|
-
export
|
|
4723
|
+
export type GoogleServiceAccountKeyByAccountQueryVariables = Exact<{
|
|
4724
4724
|
accountName: Scalars['String'];
|
|
4725
4725
|
}>;
|
|
4726
|
-
export
|
|
4726
|
+
export type GoogleServiceAccountKeyByAccountQuery = {
|
|
4727
4727
|
__typename?: 'RootQuery';
|
|
4728
4728
|
account: {
|
|
4729
4729
|
__typename?: 'AccountQuery';
|
|
@@ -4743,11 +4743,11 @@ export declare type GoogleServiceAccountKeyByAccountQuery = {
|
|
|
4743
4743
|
};
|
|
4744
4744
|
};
|
|
4745
4745
|
};
|
|
4746
|
-
export
|
|
4746
|
+
export type CreateAppStoreConnectApiKeyMutationVariables = Exact<{
|
|
4747
4747
|
appStoreConnectApiKeyInput: AppStoreConnectApiKeyInput;
|
|
4748
4748
|
accountId: Scalars['ID'];
|
|
4749
4749
|
}>;
|
|
4750
|
-
export
|
|
4750
|
+
export type CreateAppStoreConnectApiKeyMutation = {
|
|
4751
4751
|
__typename?: 'RootMutation';
|
|
4752
4752
|
appStoreConnectApiKey: {
|
|
4753
4753
|
__typename?: 'AppStoreConnectApiKeyMutation';
|
|
@@ -4769,10 +4769,10 @@ export declare type CreateAppStoreConnectApiKeyMutation = {
|
|
|
4769
4769
|
};
|
|
4770
4770
|
};
|
|
4771
4771
|
};
|
|
4772
|
-
export
|
|
4772
|
+
export type DeleteAppStoreConnectApiKeyMutationVariables = Exact<{
|
|
4773
4773
|
appStoreConnectApiKeyId: Scalars['ID'];
|
|
4774
4774
|
}>;
|
|
4775
|
-
export
|
|
4775
|
+
export type DeleteAppStoreConnectApiKeyMutation = {
|
|
4776
4776
|
__typename?: 'RootMutation';
|
|
4777
4777
|
appStoreConnectApiKey: {
|
|
4778
4778
|
__typename?: 'AppStoreConnectApiKeyMutation';
|
|
@@ -4782,11 +4782,11 @@ export declare type DeleteAppStoreConnectApiKeyMutation = {
|
|
|
4782
4782
|
};
|
|
4783
4783
|
};
|
|
4784
4784
|
};
|
|
4785
|
-
export
|
|
4785
|
+
export type CreateAppleAppIdentifierMutationVariables = Exact<{
|
|
4786
4786
|
appleAppIdentifierInput: AppleAppIdentifierInput;
|
|
4787
4787
|
accountId: Scalars['ID'];
|
|
4788
4788
|
}>;
|
|
4789
|
-
export
|
|
4789
|
+
export type CreateAppleAppIdentifierMutation = {
|
|
4790
4790
|
__typename?: 'RootMutation';
|
|
4791
4791
|
appleAppIdentifier: {
|
|
4792
4792
|
__typename?: 'AppleAppIdentifierMutation';
|
|
@@ -4797,11 +4797,11 @@ export declare type CreateAppleAppIdentifierMutation = {
|
|
|
4797
4797
|
};
|
|
4798
4798
|
};
|
|
4799
4799
|
};
|
|
4800
|
-
export
|
|
4800
|
+
export type CreateAppleDeviceMutationVariables = Exact<{
|
|
4801
4801
|
appleDeviceInput: AppleDeviceInput;
|
|
4802
4802
|
accountId: Scalars['ID'];
|
|
4803
4803
|
}>;
|
|
4804
|
-
export
|
|
4804
|
+
export type CreateAppleDeviceMutation = {
|
|
4805
4805
|
__typename?: 'RootMutation';
|
|
4806
4806
|
appleDevice: {
|
|
4807
4807
|
__typename?: 'AppleDeviceMutation';
|
|
@@ -4815,10 +4815,10 @@ export declare type CreateAppleDeviceMutation = {
|
|
|
4815
4815
|
};
|
|
4816
4816
|
};
|
|
4817
4817
|
};
|
|
4818
|
-
export
|
|
4818
|
+
export type DeleteAppleDeviceMutationVariables = Exact<{
|
|
4819
4819
|
deviceId: Scalars['ID'];
|
|
4820
4820
|
}>;
|
|
4821
|
-
export
|
|
4821
|
+
export type DeleteAppleDeviceMutation = {
|
|
4822
4822
|
__typename?: 'RootMutation';
|
|
4823
4823
|
appleDevice: {
|
|
4824
4824
|
__typename?: 'AppleDeviceMutation';
|
|
@@ -4828,11 +4828,11 @@ export declare type DeleteAppleDeviceMutation = {
|
|
|
4828
4828
|
};
|
|
4829
4829
|
};
|
|
4830
4830
|
};
|
|
4831
|
-
export
|
|
4831
|
+
export type CreateAppleDeviceRegistrationRequestMutationVariables = Exact<{
|
|
4832
4832
|
appleTeamId: Scalars['ID'];
|
|
4833
4833
|
accountId: Scalars['ID'];
|
|
4834
4834
|
}>;
|
|
4835
|
-
export
|
|
4835
|
+
export type CreateAppleDeviceRegistrationRequestMutation = {
|
|
4836
4836
|
__typename?: 'RootMutation';
|
|
4837
4837
|
appleDeviceRegistrationRequest: {
|
|
4838
4838
|
__typename?: 'AppleDeviceRegistrationRequestMutation';
|
|
@@ -4842,11 +4842,11 @@ export declare type CreateAppleDeviceRegistrationRequestMutation = {
|
|
|
4842
4842
|
};
|
|
4843
4843
|
};
|
|
4844
4844
|
};
|
|
4845
|
-
export
|
|
4845
|
+
export type CreateAppleDistributionCertificateMutationVariables = Exact<{
|
|
4846
4846
|
appleDistributionCertificateInput: AppleDistributionCertificateInput;
|
|
4847
4847
|
accountId: Scalars['ID'];
|
|
4848
4848
|
}>;
|
|
4849
|
-
export
|
|
4849
|
+
export type CreateAppleDistributionCertificateMutation = {
|
|
4850
4850
|
__typename?: 'RootMutation';
|
|
4851
4851
|
appleDistributionCertificate: {
|
|
4852
4852
|
__typename?: 'AppleDistributionCertificateMutation';
|
|
@@ -4912,10 +4912,10 @@ export declare type CreateAppleDistributionCertificateMutation = {
|
|
|
4912
4912
|
} | null;
|
|
4913
4913
|
};
|
|
4914
4914
|
};
|
|
4915
|
-
export
|
|
4915
|
+
export type DeleteAppleDistributionCertificateMutationVariables = Exact<{
|
|
4916
4916
|
appleDistributionCertificateId: Scalars['ID'];
|
|
4917
4917
|
}>;
|
|
4918
|
-
export
|
|
4918
|
+
export type DeleteAppleDistributionCertificateMutation = {
|
|
4919
4919
|
__typename?: 'RootMutation';
|
|
4920
4920
|
appleDistributionCertificate: {
|
|
4921
4921
|
__typename?: 'AppleDistributionCertificateMutation';
|
|
@@ -4925,12 +4925,12 @@ export declare type DeleteAppleDistributionCertificateMutation = {
|
|
|
4925
4925
|
};
|
|
4926
4926
|
};
|
|
4927
4927
|
};
|
|
4928
|
-
export
|
|
4928
|
+
export type CreateAppleProvisioningProfileMutationVariables = Exact<{
|
|
4929
4929
|
appleProvisioningProfileInput: AppleProvisioningProfileInput;
|
|
4930
4930
|
accountId: Scalars['ID'];
|
|
4931
4931
|
appleAppIdentifierId: Scalars['ID'];
|
|
4932
4932
|
}>;
|
|
4933
|
-
export
|
|
4933
|
+
export type CreateAppleProvisioningProfileMutation = {
|
|
4934
4934
|
__typename?: 'RootMutation';
|
|
4935
4935
|
appleProvisioningProfile: {
|
|
4936
4936
|
__typename?: 'AppleProvisioningProfileMutation';
|
|
@@ -4959,11 +4959,11 @@ export declare type CreateAppleProvisioningProfileMutation = {
|
|
|
4959
4959
|
};
|
|
4960
4960
|
};
|
|
4961
4961
|
};
|
|
4962
|
-
export
|
|
4962
|
+
export type UpdateAppleProvisioningProfileMutationVariables = Exact<{
|
|
4963
4963
|
appleProvisioningProfileId: Scalars['ID'];
|
|
4964
4964
|
appleProvisioningProfileInput: AppleProvisioningProfileInput;
|
|
4965
4965
|
}>;
|
|
4966
|
-
export
|
|
4966
|
+
export type UpdateAppleProvisioningProfileMutation = {
|
|
4967
4967
|
__typename?: 'RootMutation';
|
|
4968
4968
|
appleProvisioningProfile: {
|
|
4969
4969
|
__typename?: 'AppleProvisioningProfileMutation';
|
|
@@ -4992,10 +4992,10 @@ export declare type UpdateAppleProvisioningProfileMutation = {
|
|
|
4992
4992
|
};
|
|
4993
4993
|
};
|
|
4994
4994
|
};
|
|
4995
|
-
export
|
|
4995
|
+
export type DeleteAppleProvisioningProfilesMutationVariables = Exact<{
|
|
4996
4996
|
appleProvisioningProfileIds: Array<Scalars['ID']> | Scalars['ID'];
|
|
4997
4997
|
}>;
|
|
4998
|
-
export
|
|
4998
|
+
export type DeleteAppleProvisioningProfilesMutation = {
|
|
4999
4999
|
__typename?: 'RootMutation';
|
|
5000
5000
|
appleProvisioningProfile: {
|
|
5001
5001
|
__typename?: 'AppleProvisioningProfileMutation';
|
|
@@ -5005,11 +5005,11 @@ export declare type DeleteAppleProvisioningProfilesMutation = {
|
|
|
5005
5005
|
}>;
|
|
5006
5006
|
};
|
|
5007
5007
|
};
|
|
5008
|
-
export
|
|
5008
|
+
export type CreateApplePushKeyMutationVariables = Exact<{
|
|
5009
5009
|
applePushKeyInput: ApplePushKeyInput;
|
|
5010
5010
|
accountId: Scalars['ID'];
|
|
5011
5011
|
}>;
|
|
5012
|
-
export
|
|
5012
|
+
export type CreateApplePushKeyMutation = {
|
|
5013
5013
|
__typename?: 'RootMutation';
|
|
5014
5014
|
applePushKey: {
|
|
5015
5015
|
__typename?: 'ApplePushKeyMutation';
|
|
@@ -5061,10 +5061,10 @@ export declare type CreateApplePushKeyMutation = {
|
|
|
5061
5061
|
};
|
|
5062
5062
|
};
|
|
5063
5063
|
};
|
|
5064
|
-
export
|
|
5064
|
+
export type DeleteApplePushKeyMutationVariables = Exact<{
|
|
5065
5065
|
applePushKeyId: Scalars['ID'];
|
|
5066
5066
|
}>;
|
|
5067
|
-
export
|
|
5067
|
+
export type DeleteApplePushKeyMutation = {
|
|
5068
5068
|
__typename?: 'RootMutation';
|
|
5069
5069
|
applePushKey: {
|
|
5070
5070
|
__typename?: 'ApplePushKeyMutation';
|
|
@@ -5074,11 +5074,11 @@ export declare type DeleteApplePushKeyMutation = {
|
|
|
5074
5074
|
};
|
|
5075
5075
|
};
|
|
5076
5076
|
};
|
|
5077
|
-
export
|
|
5077
|
+
export type CreateAppleTeamMutationVariables = Exact<{
|
|
5078
5078
|
appleTeamInput: AppleTeamInput;
|
|
5079
5079
|
accountId: Scalars['ID'];
|
|
5080
5080
|
}>;
|
|
5081
|
-
export
|
|
5081
|
+
export type CreateAppleTeamMutation = {
|
|
5082
5082
|
__typename?: 'RootMutation';
|
|
5083
5083
|
appleTeam: {
|
|
5084
5084
|
__typename?: 'AppleTeamMutation';
|
|
@@ -5109,11 +5109,11 @@ export declare type CreateAppleTeamMutation = {
|
|
|
5109
5109
|
};
|
|
5110
5110
|
};
|
|
5111
5111
|
};
|
|
5112
|
-
export
|
|
5112
|
+
export type CreateIosAppBuildCredentialsMutationVariables = Exact<{
|
|
5113
5113
|
iosAppBuildCredentialsInput: IosAppBuildCredentialsInput;
|
|
5114
5114
|
iosAppCredentialsId: Scalars['ID'];
|
|
5115
5115
|
}>;
|
|
5116
|
-
export
|
|
5116
|
+
export type CreateIosAppBuildCredentialsMutation = {
|
|
5117
5117
|
__typename?: 'RootMutation';
|
|
5118
5118
|
iosAppBuildCredentials: {
|
|
5119
5119
|
__typename?: 'IosAppBuildCredentialsMutation';
|
|
@@ -5207,11 +5207,11 @@ export declare type CreateIosAppBuildCredentialsMutation = {
|
|
|
5207
5207
|
};
|
|
5208
5208
|
};
|
|
5209
5209
|
};
|
|
5210
|
-
export
|
|
5210
|
+
export type SetDistributionCertificateMutationVariables = Exact<{
|
|
5211
5211
|
iosAppBuildCredentialsId: Scalars['ID'];
|
|
5212
5212
|
distributionCertificateId: Scalars['ID'];
|
|
5213
5213
|
}>;
|
|
5214
|
-
export
|
|
5214
|
+
export type SetDistributionCertificateMutation = {
|
|
5215
5215
|
__typename?: 'RootMutation';
|
|
5216
5216
|
iosAppBuildCredentials: {
|
|
5217
5217
|
__typename?: 'IosAppBuildCredentialsMutation';
|
|
@@ -5305,11 +5305,11 @@ export declare type SetDistributionCertificateMutation = {
|
|
|
5305
5305
|
};
|
|
5306
5306
|
};
|
|
5307
5307
|
};
|
|
5308
|
-
export
|
|
5308
|
+
export type SetProvisioningProfileMutationVariables = Exact<{
|
|
5309
5309
|
iosAppBuildCredentialsId: Scalars['ID'];
|
|
5310
5310
|
provisioningProfileId: Scalars['ID'];
|
|
5311
5311
|
}>;
|
|
5312
|
-
export
|
|
5312
|
+
export type SetProvisioningProfileMutation = {
|
|
5313
5313
|
__typename?: 'RootMutation';
|
|
5314
5314
|
iosAppBuildCredentials: {
|
|
5315
5315
|
__typename?: 'IosAppBuildCredentialsMutation';
|
|
@@ -5403,12 +5403,12 @@ export declare type SetProvisioningProfileMutation = {
|
|
|
5403
5403
|
};
|
|
5404
5404
|
};
|
|
5405
5405
|
};
|
|
5406
|
-
export
|
|
5406
|
+
export type CreateIosAppCredentialsMutationVariables = Exact<{
|
|
5407
5407
|
iosAppCredentialsInput: IosAppCredentialsInput;
|
|
5408
5408
|
appId: Scalars['ID'];
|
|
5409
5409
|
appleAppIdentifierId: Scalars['ID'];
|
|
5410
5410
|
}>;
|
|
5411
|
-
export
|
|
5411
|
+
export type CreateIosAppCredentialsMutation = {
|
|
5412
5412
|
__typename?: 'RootMutation';
|
|
5413
5413
|
iosAppCredentials: {
|
|
5414
5414
|
__typename?: 'IosAppCredentialsMutation';
|
|
@@ -5604,11 +5604,11 @@ export declare type CreateIosAppCredentialsMutation = {
|
|
|
5604
5604
|
};
|
|
5605
5605
|
};
|
|
5606
5606
|
};
|
|
5607
|
-
export
|
|
5607
|
+
export type SetPushKeyMutationVariables = Exact<{
|
|
5608
5608
|
iosAppCredentialsId: Scalars['ID'];
|
|
5609
5609
|
pushKeyId: Scalars['ID'];
|
|
5610
5610
|
}>;
|
|
5611
|
-
export
|
|
5611
|
+
export type SetPushKeyMutation = {
|
|
5612
5612
|
__typename?: 'RootMutation';
|
|
5613
5613
|
iosAppCredentials: {
|
|
5614
5614
|
__typename?: 'IosAppCredentialsMutation';
|
|
@@ -5804,11 +5804,11 @@ export declare type SetPushKeyMutation = {
|
|
|
5804
5804
|
};
|
|
5805
5805
|
};
|
|
5806
5806
|
};
|
|
5807
|
-
export
|
|
5807
|
+
export type SetAppStoreConnectApiKeyForSubmissionsMutationVariables = Exact<{
|
|
5808
5808
|
iosAppCredentialsId: Scalars['ID'];
|
|
5809
5809
|
ascApiKeyId: Scalars['ID'];
|
|
5810
5810
|
}>;
|
|
5811
|
-
export
|
|
5811
|
+
export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
5812
5812
|
__typename?: 'RootMutation';
|
|
5813
5813
|
iosAppCredentials: {
|
|
5814
5814
|
__typename?: 'IosAppCredentialsMutation';
|
|
@@ -6004,10 +6004,10 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
6004
6004
|
};
|
|
6005
6005
|
};
|
|
6006
6006
|
};
|
|
6007
|
-
export
|
|
6007
|
+
export type AppStoreConnectApiKeyByAccountQueryVariables = Exact<{
|
|
6008
6008
|
accountName: Scalars['String'];
|
|
6009
6009
|
}>;
|
|
6010
|
-
export
|
|
6010
|
+
export type AppStoreConnectApiKeyByAccountQuery = {
|
|
6011
6011
|
__typename?: 'RootQuery';
|
|
6012
6012
|
account: {
|
|
6013
6013
|
__typename?: 'AccountQuery';
|
|
@@ -6033,11 +6033,11 @@ export declare type AppStoreConnectApiKeyByAccountQuery = {
|
|
|
6033
6033
|
};
|
|
6034
6034
|
};
|
|
6035
6035
|
};
|
|
6036
|
-
export
|
|
6036
|
+
export type AppleAppIdentifierByBundleIdQueryVariables = Exact<{
|
|
6037
6037
|
accountName: Scalars['String'];
|
|
6038
6038
|
bundleIdentifier: Scalars['String'];
|
|
6039
6039
|
}>;
|
|
6040
|
-
export
|
|
6040
|
+
export type AppleAppIdentifierByBundleIdQuery = {
|
|
6041
6041
|
__typename?: 'RootQuery';
|
|
6042
6042
|
account: {
|
|
6043
6043
|
__typename?: 'AccountQuery';
|
|
@@ -6052,11 +6052,11 @@ export declare type AppleAppIdentifierByBundleIdQuery = {
|
|
|
6052
6052
|
};
|
|
6053
6053
|
};
|
|
6054
6054
|
};
|
|
6055
|
-
export
|
|
6055
|
+
export type AppleDevicesByAppleTeamQueryVariables = Exact<{
|
|
6056
6056
|
accountId: Scalars['ID'];
|
|
6057
6057
|
appleTeamIdentifier: Scalars['String'];
|
|
6058
6058
|
}>;
|
|
6059
|
-
export
|
|
6059
|
+
export type AppleDevicesByAppleTeamQuery = {
|
|
6060
6060
|
__typename?: 'RootQuery';
|
|
6061
6061
|
appleTeam: {
|
|
6062
6062
|
__typename?: 'AppleTeamQuery';
|
|
@@ -6082,13 +6082,13 @@ export declare type AppleDevicesByAppleTeamQuery = {
|
|
|
6082
6082
|
} | null;
|
|
6083
6083
|
};
|
|
6084
6084
|
};
|
|
6085
|
-
export
|
|
6085
|
+
export type AppleDevicesByTeamIdentifierQueryVariables = Exact<{
|
|
6086
6086
|
accountName: Scalars['String'];
|
|
6087
6087
|
appleTeamIdentifier: Scalars['String'];
|
|
6088
6088
|
offset?: InputMaybe<Scalars['Int']>;
|
|
6089
6089
|
limit?: InputMaybe<Scalars['Int']>;
|
|
6090
6090
|
}>;
|
|
6091
|
-
export
|
|
6091
|
+
export type AppleDevicesByTeamIdentifierQuery = {
|
|
6092
6092
|
__typename?: 'RootQuery';
|
|
6093
6093
|
account: {
|
|
6094
6094
|
__typename?: 'AccountQuery';
|
|
@@ -6113,11 +6113,11 @@ export declare type AppleDevicesByTeamIdentifierQuery = {
|
|
|
6113
6113
|
};
|
|
6114
6114
|
};
|
|
6115
6115
|
};
|
|
6116
|
-
export
|
|
6116
|
+
export type AppleDevicesByIdentifierQueryVariables = Exact<{
|
|
6117
6117
|
accountName: Scalars['String'];
|
|
6118
6118
|
identifier: Scalars['String'];
|
|
6119
6119
|
}>;
|
|
6120
|
-
export
|
|
6120
|
+
export type AppleDevicesByIdentifierQuery = {
|
|
6121
6121
|
__typename?: 'RootQuery';
|
|
6122
6122
|
account: {
|
|
6123
6123
|
__typename?: 'AccountQuery';
|
|
@@ -6142,12 +6142,12 @@ export declare type AppleDevicesByIdentifierQuery = {
|
|
|
6142
6142
|
};
|
|
6143
6143
|
};
|
|
6144
6144
|
};
|
|
6145
|
-
export
|
|
6145
|
+
export type AppleDistributionCertificateByAppQueryVariables = Exact<{
|
|
6146
6146
|
projectFullName: Scalars['String'];
|
|
6147
6147
|
appleAppIdentifierId: Scalars['String'];
|
|
6148
6148
|
iosDistributionType: IosDistributionType;
|
|
6149
6149
|
}>;
|
|
6150
|
-
export
|
|
6150
|
+
export type AppleDistributionCertificateByAppQuery = {
|
|
6151
6151
|
__typename?: 'RootQuery';
|
|
6152
6152
|
app: {
|
|
6153
6153
|
__typename?: 'AppQuery';
|
|
@@ -6225,10 +6225,10 @@ export declare type AppleDistributionCertificateByAppQuery = {
|
|
|
6225
6225
|
};
|
|
6226
6226
|
};
|
|
6227
6227
|
};
|
|
6228
|
-
export
|
|
6228
|
+
export type AppleDistributionCertificateByAccountQueryVariables = Exact<{
|
|
6229
6229
|
accountName: Scalars['String'];
|
|
6230
6230
|
}>;
|
|
6231
|
-
export
|
|
6231
|
+
export type AppleDistributionCertificateByAccountQuery = {
|
|
6232
6232
|
__typename?: 'RootQuery';
|
|
6233
6233
|
account: {
|
|
6234
6234
|
__typename?: 'AccountQuery';
|
|
@@ -6298,12 +6298,12 @@ export declare type AppleDistributionCertificateByAccountQuery = {
|
|
|
6298
6298
|
};
|
|
6299
6299
|
};
|
|
6300
6300
|
};
|
|
6301
|
-
export
|
|
6301
|
+
export type AppleProvisioningProfilesByAppQueryVariables = Exact<{
|
|
6302
6302
|
projectFullName: Scalars['String'];
|
|
6303
6303
|
appleAppIdentifierId: Scalars['String'];
|
|
6304
6304
|
iosDistributionType: IosDistributionType;
|
|
6305
6305
|
}>;
|
|
6306
|
-
export
|
|
6306
|
+
export type AppleProvisioningProfilesByAppQuery = {
|
|
6307
6307
|
__typename?: 'RootQuery';
|
|
6308
6308
|
app: {
|
|
6309
6309
|
__typename?: 'AppQuery';
|
|
@@ -6349,10 +6349,10 @@ export declare type AppleProvisioningProfilesByAppQuery = {
|
|
|
6349
6349
|
};
|
|
6350
6350
|
};
|
|
6351
6351
|
};
|
|
6352
|
-
export
|
|
6352
|
+
export type ApplePushKeyByAccountQueryVariables = Exact<{
|
|
6353
6353
|
accountName: Scalars['String'];
|
|
6354
6354
|
}>;
|
|
6355
|
-
export
|
|
6355
|
+
export type ApplePushKeyByAccountQuery = {
|
|
6356
6356
|
__typename?: 'RootQuery';
|
|
6357
6357
|
account: {
|
|
6358
6358
|
__typename?: 'AccountQuery';
|
|
@@ -6408,12 +6408,12 @@ export declare type ApplePushKeyByAccountQuery = {
|
|
|
6408
6408
|
};
|
|
6409
6409
|
};
|
|
6410
6410
|
};
|
|
6411
|
-
export
|
|
6411
|
+
export type AppleTeamsByAccountNameQueryVariables = Exact<{
|
|
6412
6412
|
accountName: Scalars['String'];
|
|
6413
6413
|
offset?: InputMaybe<Scalars['Int']>;
|
|
6414
6414
|
limit?: InputMaybe<Scalars['Int']>;
|
|
6415
6415
|
}>;
|
|
6416
|
-
export
|
|
6416
|
+
export type AppleTeamsByAccountNameQuery = {
|
|
6417
6417
|
__typename?: 'RootQuery';
|
|
6418
6418
|
account: {
|
|
6419
6419
|
__typename?: 'AccountQuery';
|
|
@@ -6429,11 +6429,11 @@ export declare type AppleTeamsByAccountNameQuery = {
|
|
|
6429
6429
|
};
|
|
6430
6430
|
};
|
|
6431
6431
|
};
|
|
6432
|
-
export
|
|
6432
|
+
export type AppleTeamByIdentifierQueryVariables = Exact<{
|
|
6433
6433
|
accountId: Scalars['ID'];
|
|
6434
6434
|
appleTeamIdentifier: Scalars['String'];
|
|
6435
6435
|
}>;
|
|
6436
|
-
export
|
|
6436
|
+
export type AppleTeamByIdentifierQuery = {
|
|
6437
6437
|
__typename?: 'RootQuery';
|
|
6438
6438
|
appleTeam: {
|
|
6439
6439
|
__typename?: 'AppleTeamQuery';
|
|
@@ -6445,12 +6445,12 @@ export declare type AppleTeamByIdentifierQuery = {
|
|
|
6445
6445
|
} | null;
|
|
6446
6446
|
};
|
|
6447
6447
|
};
|
|
6448
|
-
export
|
|
6448
|
+
export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQueryVariables = Exact<{
|
|
6449
6449
|
projectFullName: Scalars['String'];
|
|
6450
6450
|
appleAppIdentifierId: Scalars['String'];
|
|
6451
6451
|
iosDistributionType: IosDistributionType;
|
|
6452
6452
|
}>;
|
|
6453
|
-
export
|
|
6453
|
+
export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuery = {
|
|
6454
6454
|
__typename?: 'RootQuery';
|
|
6455
6455
|
app: {
|
|
6456
6456
|
__typename?: 'AppQuery';
|
|
@@ -6552,12 +6552,12 @@ export declare type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuer
|
|
|
6552
6552
|
};
|
|
6553
6553
|
};
|
|
6554
6554
|
};
|
|
6555
|
-
export
|
|
6555
|
+
export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQueryVariables = Exact<{
|
|
6556
6556
|
projectFullName: Scalars['String'];
|
|
6557
6557
|
appleAppIdentifierId: Scalars['String'];
|
|
6558
6558
|
iosDistributionType?: InputMaybe<IosDistributionType>;
|
|
6559
6559
|
}>;
|
|
6560
|
-
export
|
|
6560
|
+
export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
6561
6561
|
__typename?: 'RootQuery';
|
|
6562
6562
|
app: {
|
|
6563
6563
|
__typename?: 'AppQuery';
|
|
@@ -6757,11 +6757,11 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
|
|
|
6757
6757
|
};
|
|
6758
6758
|
};
|
|
6759
6759
|
};
|
|
6760
|
-
export
|
|
6760
|
+
export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQueryVariables = Exact<{
|
|
6761
6761
|
projectFullName: Scalars['String'];
|
|
6762
6762
|
appleAppIdentifierId: Scalars['String'];
|
|
6763
6763
|
}>;
|
|
6764
|
-
export
|
|
6764
|
+
export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
6765
6765
|
__typename?: 'RootQuery';
|
|
6766
6766
|
app: {
|
|
6767
6767
|
__typename?: 'AppQuery';
|
|
@@ -6961,10 +6961,10 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
|
|
|
6961
6961
|
};
|
|
6962
6962
|
};
|
|
6963
6963
|
};
|
|
6964
|
-
export
|
|
6964
|
+
export type CreateAppMutationVariables = Exact<{
|
|
6965
6965
|
appInput: AppInput;
|
|
6966
6966
|
}>;
|
|
6967
|
-
export
|
|
6967
|
+
export type CreateAppMutation = {
|
|
6968
6968
|
__typename?: 'RootMutation';
|
|
6969
6969
|
app?: {
|
|
6970
6970
|
__typename?: 'AppMutation';
|
|
@@ -6974,10 +6974,10 @@ export declare type CreateAppMutation = {
|
|
|
6974
6974
|
};
|
|
6975
6975
|
} | null;
|
|
6976
6976
|
};
|
|
6977
|
-
export
|
|
6977
|
+
export type CreateAppVersionMutationVariables = Exact<{
|
|
6978
6978
|
appVersionInput: AppVersionInput;
|
|
6979
6979
|
}>;
|
|
6980
|
-
export
|
|
6980
|
+
export type CreateAppVersionMutation = {
|
|
6981
6981
|
__typename?: 'RootMutation';
|
|
6982
6982
|
appVersion: {
|
|
6983
6983
|
__typename?: 'AppVersionMutation';
|
|
@@ -6987,13 +6987,13 @@ export declare type CreateAppVersionMutation = {
|
|
|
6987
6987
|
};
|
|
6988
6988
|
};
|
|
6989
6989
|
};
|
|
6990
|
-
export
|
|
6990
|
+
export type CreateAndroidBuildMutationVariables = Exact<{
|
|
6991
6991
|
appId: Scalars['ID'];
|
|
6992
6992
|
job: AndroidJobInput;
|
|
6993
6993
|
metadata?: InputMaybe<BuildMetadataInput>;
|
|
6994
6994
|
buildParams?: InputMaybe<BuildParamsInput>;
|
|
6995
6995
|
}>;
|
|
6996
|
-
export
|
|
6996
|
+
export type CreateAndroidBuildMutation = {
|
|
6997
6997
|
__typename?: 'RootMutation';
|
|
6998
6998
|
build: {
|
|
6999
6999
|
__typename?: 'BuildMutation';
|
|
@@ -7072,13 +7072,13 @@ export declare type CreateAndroidBuildMutation = {
|
|
|
7072
7072
|
};
|
|
7073
7073
|
};
|
|
7074
7074
|
};
|
|
7075
|
-
export
|
|
7075
|
+
export type CreateIosBuildMutationVariables = Exact<{
|
|
7076
7076
|
appId: Scalars['ID'];
|
|
7077
7077
|
job: IosJobInput;
|
|
7078
7078
|
metadata?: InputMaybe<BuildMetadataInput>;
|
|
7079
7079
|
buildParams?: InputMaybe<BuildParamsInput>;
|
|
7080
7080
|
}>;
|
|
7081
|
-
export
|
|
7081
|
+
export type CreateIosBuildMutation = {
|
|
7082
7082
|
__typename?: 'RootMutation';
|
|
7083
7083
|
build: {
|
|
7084
7084
|
__typename?: 'BuildMutation';
|
|
@@ -7157,11 +7157,11 @@ export declare type CreateIosBuildMutation = {
|
|
|
7157
7157
|
};
|
|
7158
7158
|
};
|
|
7159
7159
|
};
|
|
7160
|
-
export
|
|
7160
|
+
export type RetryIosBuildMutationVariables = Exact<{
|
|
7161
7161
|
buildId: Scalars['ID'];
|
|
7162
7162
|
jobOverrides: IosJobOverridesInput;
|
|
7163
7163
|
}>;
|
|
7164
|
-
export
|
|
7164
|
+
export type RetryIosBuildMutation = {
|
|
7165
7165
|
__typename?: 'RootMutation';
|
|
7166
7166
|
build: {
|
|
7167
7167
|
__typename?: 'BuildMutation';
|
|
@@ -7232,11 +7232,11 @@ export declare type RetryIosBuildMutation = {
|
|
|
7232
7232
|
};
|
|
7233
7233
|
};
|
|
7234
7234
|
};
|
|
7235
|
-
export
|
|
7235
|
+
export type CreateEnvironmentSecretForAccountMutationVariables = Exact<{
|
|
7236
7236
|
input: CreateEnvironmentSecretInput;
|
|
7237
7237
|
accountId: Scalars['String'];
|
|
7238
7238
|
}>;
|
|
7239
|
-
export
|
|
7239
|
+
export type CreateEnvironmentSecretForAccountMutation = {
|
|
7240
7240
|
__typename?: 'RootMutation';
|
|
7241
7241
|
environmentSecret: {
|
|
7242
7242
|
__typename?: 'EnvironmentSecretMutation';
|
|
@@ -7249,11 +7249,11 @@ export declare type CreateEnvironmentSecretForAccountMutation = {
|
|
|
7249
7249
|
};
|
|
7250
7250
|
};
|
|
7251
7251
|
};
|
|
7252
|
-
export
|
|
7252
|
+
export type CreateEnvironmentSecretForAppMutationVariables = Exact<{
|
|
7253
7253
|
input: CreateEnvironmentSecretInput;
|
|
7254
7254
|
appId: Scalars['String'];
|
|
7255
7255
|
}>;
|
|
7256
|
-
export
|
|
7256
|
+
export type CreateEnvironmentSecretForAppMutation = {
|
|
7257
7257
|
__typename?: 'RootMutation';
|
|
7258
7258
|
environmentSecret: {
|
|
7259
7259
|
__typename?: 'EnvironmentSecretMutation';
|
|
@@ -7266,10 +7266,10 @@ export declare type CreateEnvironmentSecretForAppMutation = {
|
|
|
7266
7266
|
};
|
|
7267
7267
|
};
|
|
7268
7268
|
};
|
|
7269
|
-
export
|
|
7269
|
+
export type DeleteEnvironmentSecretMutationVariables = Exact<{
|
|
7270
7270
|
id: Scalars['String'];
|
|
7271
7271
|
}>;
|
|
7272
|
-
export
|
|
7272
|
+
export type DeleteEnvironmentSecretMutation = {
|
|
7273
7273
|
__typename?: 'RootMutation';
|
|
7274
7274
|
environmentSecret: {
|
|
7275
7275
|
__typename?: 'EnvironmentSecretMutation';
|
|
@@ -7279,10 +7279,10 @@ export declare type DeleteEnvironmentSecretMutation = {
|
|
|
7279
7279
|
};
|
|
7280
7280
|
};
|
|
7281
7281
|
};
|
|
7282
|
-
export
|
|
7282
|
+
export type CreateKeystoreGenerationUrlMutationVariables = Exact<{
|
|
7283
7283
|
[key: string]: never;
|
|
7284
7284
|
}>;
|
|
7285
|
-
export
|
|
7285
|
+
export type CreateKeystoreGenerationUrlMutation = {
|
|
7286
7286
|
__typename?: 'RootMutation';
|
|
7287
7287
|
keystoreGenerationUrl: {
|
|
7288
7288
|
__typename?: 'KeystoreGenerationUrlMutation';
|
|
@@ -7293,10 +7293,10 @@ export declare type CreateKeystoreGenerationUrlMutation = {
|
|
|
7293
7293
|
};
|
|
7294
7294
|
};
|
|
7295
7295
|
};
|
|
7296
|
-
export
|
|
7296
|
+
export type GetSignedUploadMutationVariables = Exact<{
|
|
7297
7297
|
contentTypes: Array<Scalars['String']> | Scalars['String'];
|
|
7298
7298
|
}>;
|
|
7299
|
-
export
|
|
7299
|
+
export type GetSignedUploadMutation = {
|
|
7300
7300
|
__typename?: 'RootMutation';
|
|
7301
7301
|
asset: {
|
|
7302
7302
|
__typename?: 'AssetMutation';
|
|
@@ -7306,10 +7306,10 @@ export declare type GetSignedUploadMutation = {
|
|
|
7306
7306
|
};
|
|
7307
7307
|
};
|
|
7308
7308
|
};
|
|
7309
|
-
export
|
|
7309
|
+
export type UpdatePublishMutationVariables = Exact<{
|
|
7310
7310
|
publishUpdateGroupsInput: Array<PublishUpdateGroupInput> | PublishUpdateGroupInput;
|
|
7311
7311
|
}>;
|
|
7312
|
-
export
|
|
7312
|
+
export type UpdatePublishMutation = {
|
|
7313
7313
|
__typename?: 'RootMutation';
|
|
7314
7314
|
updateBranch: {
|
|
7315
7315
|
__typename?: 'UpdateBranchMutation';
|
|
@@ -7317,17 +7317,44 @@ export declare type UpdatePublishMutation = {
|
|
|
7317
7317
|
__typename?: 'Update';
|
|
7318
7318
|
id: string;
|
|
7319
7319
|
group: string;
|
|
7320
|
+
message?: string | null;
|
|
7321
|
+
createdAt: any;
|
|
7320
7322
|
runtimeVersion: string;
|
|
7321
7323
|
platform: string;
|
|
7324
|
+
manifestFragment: string;
|
|
7322
7325
|
manifestPermalink: string;
|
|
7326
|
+
gitCommitHash?: string | null;
|
|
7327
|
+
actor?: {
|
|
7328
|
+
__typename: 'Robot';
|
|
7329
|
+
firstName?: string | null;
|
|
7330
|
+
id: string;
|
|
7331
|
+
} | {
|
|
7332
|
+
__typename: 'SSOUser';
|
|
7333
|
+
id: string;
|
|
7334
|
+
} | {
|
|
7335
|
+
__typename: 'User';
|
|
7336
|
+
username: string;
|
|
7337
|
+
id: string;
|
|
7338
|
+
} | null;
|
|
7339
|
+
branch: {
|
|
7340
|
+
__typename?: 'UpdateBranch';
|
|
7341
|
+
id: string;
|
|
7342
|
+
name: string;
|
|
7343
|
+
};
|
|
7344
|
+
codeSigningInfo?: {
|
|
7345
|
+
__typename?: 'CodeSigningInfo';
|
|
7346
|
+
keyid: string;
|
|
7347
|
+
sig: string;
|
|
7348
|
+
alg: string;
|
|
7349
|
+
} | null;
|
|
7323
7350
|
}>;
|
|
7324
7351
|
};
|
|
7325
7352
|
};
|
|
7326
|
-
export
|
|
7353
|
+
export type SetCodeSigningInfoMutationVariables = Exact<{
|
|
7327
7354
|
updateId: Scalars['ID'];
|
|
7328
7355
|
codeSigningInfo: CodeSigningInfoInput;
|
|
7329
7356
|
}>;
|
|
7330
|
-
export
|
|
7357
|
+
export type SetCodeSigningInfoMutation = {
|
|
7331
7358
|
__typename?: 'RootMutation';
|
|
7332
7359
|
update: {
|
|
7333
7360
|
__typename?: 'UpdateMutation';
|
|
@@ -7345,13 +7372,13 @@ export declare type SetCodeSigningInfoMutation = {
|
|
|
7345
7372
|
};
|
|
7346
7373
|
};
|
|
7347
7374
|
};
|
|
7348
|
-
export
|
|
7375
|
+
export type CreateAndroidSubmissionMutationVariables = Exact<{
|
|
7349
7376
|
appId: Scalars['ID'];
|
|
7350
7377
|
config: AndroidSubmissionConfigInput;
|
|
7351
7378
|
submittedBuildId?: InputMaybe<Scalars['ID']>;
|
|
7352
7379
|
archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;
|
|
7353
7380
|
}>;
|
|
7354
|
-
export
|
|
7381
|
+
export type CreateAndroidSubmissionMutation = {
|
|
7355
7382
|
__typename?: 'RootMutation';
|
|
7356
7383
|
submission: {
|
|
7357
7384
|
__typename?: 'SubmissionMutation';
|
|
@@ -7394,13 +7421,13 @@ export declare type CreateAndroidSubmissionMutation = {
|
|
|
7394
7421
|
};
|
|
7395
7422
|
};
|
|
7396
7423
|
};
|
|
7397
|
-
export
|
|
7424
|
+
export type CreateIosSubmissionMutationVariables = Exact<{
|
|
7398
7425
|
appId: Scalars['ID'];
|
|
7399
7426
|
config: IosSubmissionConfigInput;
|
|
7400
7427
|
submittedBuildId?: InputMaybe<Scalars['ID']>;
|
|
7401
7428
|
archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;
|
|
7402
7429
|
}>;
|
|
7403
|
-
export
|
|
7430
|
+
export type CreateIosSubmissionMutation = {
|
|
7404
7431
|
__typename?: 'RootMutation';
|
|
7405
7432
|
submission: {
|
|
7406
7433
|
__typename?: 'SubmissionMutation';
|
|
@@ -7443,21 +7470,21 @@ export declare type CreateIosSubmissionMutation = {
|
|
|
7443
7470
|
};
|
|
7444
7471
|
};
|
|
7445
7472
|
};
|
|
7446
|
-
export
|
|
7473
|
+
export type CreateUploadSessionMutationVariables = Exact<{
|
|
7447
7474
|
type: UploadSessionType;
|
|
7448
7475
|
}>;
|
|
7449
|
-
export
|
|
7476
|
+
export type CreateUploadSessionMutation = {
|
|
7450
7477
|
__typename?: 'RootMutation';
|
|
7451
7478
|
uploadSession: {
|
|
7452
7479
|
__typename?: 'UploadSession';
|
|
7453
7480
|
createUploadSession: any;
|
|
7454
7481
|
};
|
|
7455
7482
|
};
|
|
7456
|
-
export
|
|
7483
|
+
export type CreateWebhookMutationVariables = Exact<{
|
|
7457
7484
|
appId: Scalars['String'];
|
|
7458
7485
|
webhookInput: WebhookInput;
|
|
7459
7486
|
}>;
|
|
7460
|
-
export
|
|
7487
|
+
export type CreateWebhookMutation = {
|
|
7461
7488
|
__typename?: 'RootMutation';
|
|
7462
7489
|
webhook: {
|
|
7463
7490
|
__typename?: 'WebhookMutation';
|
|
@@ -7471,11 +7498,11 @@ export declare type CreateWebhookMutation = {
|
|
|
7471
7498
|
};
|
|
7472
7499
|
};
|
|
7473
7500
|
};
|
|
7474
|
-
export
|
|
7501
|
+
export type UpdateWebhookMutationVariables = Exact<{
|
|
7475
7502
|
webhookId: Scalars['ID'];
|
|
7476
7503
|
webhookInput: WebhookInput;
|
|
7477
7504
|
}>;
|
|
7478
|
-
export
|
|
7505
|
+
export type UpdateWebhookMutation = {
|
|
7479
7506
|
__typename?: 'RootMutation';
|
|
7480
7507
|
webhook: {
|
|
7481
7508
|
__typename?: 'WebhookMutation';
|
|
@@ -7489,10 +7516,10 @@ export declare type UpdateWebhookMutation = {
|
|
|
7489
7516
|
};
|
|
7490
7517
|
};
|
|
7491
7518
|
};
|
|
7492
|
-
export
|
|
7519
|
+
export type DeleteWebhookMutationVariables = Exact<{
|
|
7493
7520
|
webhookId: Scalars['ID'];
|
|
7494
7521
|
}>;
|
|
7495
|
-
export
|
|
7522
|
+
export type DeleteWebhookMutation = {
|
|
7496
7523
|
__typename?: 'RootMutation';
|
|
7497
7524
|
webhook: {
|
|
7498
7525
|
__typename?: 'WebhookMutation';
|
|
@@ -7502,10 +7529,10 @@ export declare type DeleteWebhookMutation = {
|
|
|
7502
7529
|
};
|
|
7503
7530
|
};
|
|
7504
7531
|
};
|
|
7505
|
-
export
|
|
7532
|
+
export type AppByIdQueryVariables = Exact<{
|
|
7506
7533
|
appId: Scalars['String'];
|
|
7507
7534
|
}>;
|
|
7508
|
-
export
|
|
7535
|
+
export type AppByIdQuery = {
|
|
7509
7536
|
__typename?: 'RootQuery';
|
|
7510
7537
|
app: {
|
|
7511
7538
|
__typename?: 'AppQuery';
|
|
@@ -7536,10 +7563,10 @@ export declare type AppByIdQuery = {
|
|
|
7536
7563
|
};
|
|
7537
7564
|
};
|
|
7538
7565
|
};
|
|
7539
|
-
export
|
|
7566
|
+
export type AppByFullNameQueryVariables = Exact<{
|
|
7540
7567
|
fullName: Scalars['String'];
|
|
7541
7568
|
}>;
|
|
7542
|
-
export
|
|
7569
|
+
export type AppByFullNameQuery = {
|
|
7543
7570
|
__typename?: 'RootQuery';
|
|
7544
7571
|
app: {
|
|
7545
7572
|
__typename?: 'AppQuery';
|
|
@@ -7570,12 +7597,12 @@ export declare type AppByFullNameQuery = {
|
|
|
7570
7597
|
};
|
|
7571
7598
|
};
|
|
7572
7599
|
};
|
|
7573
|
-
export
|
|
7600
|
+
export type LatestAppVersionQueryVariables = Exact<{
|
|
7574
7601
|
appId: Scalars['String'];
|
|
7575
7602
|
platform: AppPlatform;
|
|
7576
7603
|
applicationIdentifier: Scalars['String'];
|
|
7577
7604
|
}>;
|
|
7578
|
-
export
|
|
7605
|
+
export type LatestAppVersionQuery = {
|
|
7579
7606
|
__typename?: 'RootQuery';
|
|
7580
7607
|
app: {
|
|
7581
7608
|
__typename?: 'AppQuery';
|
|
@@ -7591,11 +7618,11 @@ export declare type LatestAppVersionQuery = {
|
|
|
7591
7618
|
};
|
|
7592
7619
|
};
|
|
7593
7620
|
};
|
|
7594
|
-
export
|
|
7621
|
+
export type ViewBranchQueryVariables = Exact<{
|
|
7595
7622
|
appId: Scalars['String'];
|
|
7596
7623
|
name: Scalars['String'];
|
|
7597
7624
|
}>;
|
|
7598
|
-
export
|
|
7625
|
+
export type ViewBranchQuery = {
|
|
7599
7626
|
__typename?: 'RootQuery';
|
|
7600
7627
|
app: {
|
|
7601
7628
|
__typename?: 'AppQuery';
|
|
@@ -7610,12 +7637,12 @@ export declare type ViewBranchQuery = {
|
|
|
7610
7637
|
};
|
|
7611
7638
|
};
|
|
7612
7639
|
};
|
|
7613
|
-
export
|
|
7640
|
+
export type BranchesByAppQueryVariables = Exact<{
|
|
7614
7641
|
appId: Scalars['String'];
|
|
7615
7642
|
limit: Scalars['Int'];
|
|
7616
7643
|
offset: Scalars['Int'];
|
|
7617
7644
|
}>;
|
|
7618
|
-
export
|
|
7645
|
+
export type BranchesByAppQuery = {
|
|
7619
7646
|
__typename?: 'RootQuery';
|
|
7620
7647
|
app: {
|
|
7621
7648
|
__typename?: 'AppQuery';
|
|
@@ -7635,6 +7662,7 @@ export declare type BranchesByAppQuery = {
|
|
|
7635
7662
|
runtimeVersion: string;
|
|
7636
7663
|
platform: string;
|
|
7637
7664
|
manifestFragment: string;
|
|
7665
|
+
manifestPermalink: string;
|
|
7638
7666
|
gitCommitHash?: string | null;
|
|
7639
7667
|
actor?: {
|
|
7640
7668
|
__typename: 'Robot';
|
|
@@ -7664,13 +7692,13 @@ export declare type BranchesByAppQuery = {
|
|
|
7664
7692
|
};
|
|
7665
7693
|
};
|
|
7666
7694
|
};
|
|
7667
|
-
export
|
|
7695
|
+
export type ViewBranchesOnUpdateChannelQueryVariables = Exact<{
|
|
7668
7696
|
appId: Scalars['String'];
|
|
7669
7697
|
channelName: Scalars['String'];
|
|
7670
7698
|
offset: Scalars['Int'];
|
|
7671
7699
|
limit: Scalars['Int'];
|
|
7672
7700
|
}>;
|
|
7673
|
-
export
|
|
7701
|
+
export type ViewBranchesOnUpdateChannelQuery = {
|
|
7674
7702
|
__typename?: 'RootQuery';
|
|
7675
7703
|
app: {
|
|
7676
7704
|
__typename?: 'AppQuery';
|
|
@@ -7693,6 +7721,7 @@ export declare type ViewBranchesOnUpdateChannelQuery = {
|
|
|
7693
7721
|
runtimeVersion: string;
|
|
7694
7722
|
platform: string;
|
|
7695
7723
|
manifestFragment: string;
|
|
7724
|
+
manifestPermalink: string;
|
|
7696
7725
|
gitCommitHash?: string | null;
|
|
7697
7726
|
actor?: {
|
|
7698
7727
|
__typename: 'Robot';
|
|
@@ -7723,10 +7752,10 @@ export declare type ViewBranchesOnUpdateChannelQuery = {
|
|
|
7723
7752
|
};
|
|
7724
7753
|
};
|
|
7725
7754
|
};
|
|
7726
|
-
export
|
|
7755
|
+
export type BuildsByIdQueryVariables = Exact<{
|
|
7727
7756
|
buildId: Scalars['ID'];
|
|
7728
7757
|
}>;
|
|
7729
|
-
export
|
|
7758
|
+
export type BuildsByIdQuery = {
|
|
7730
7759
|
__typename?: 'RootQuery';
|
|
7731
7760
|
builds: {
|
|
7732
7761
|
__typename?: 'BuildQuery';
|
|
@@ -7797,10 +7826,10 @@ export declare type BuildsByIdQuery = {
|
|
|
7797
7826
|
};
|
|
7798
7827
|
};
|
|
7799
7828
|
};
|
|
7800
|
-
export
|
|
7829
|
+
export type BuildsWithSubmissionsByIdQueryVariables = Exact<{
|
|
7801
7830
|
buildId: Scalars['ID'];
|
|
7802
7831
|
}>;
|
|
7803
|
-
export
|
|
7832
|
+
export type BuildsWithSubmissionsByIdQuery = {
|
|
7804
7833
|
__typename?: 'RootQuery';
|
|
7805
7834
|
builds: {
|
|
7806
7835
|
__typename?: 'BuildQuery';
|
|
@@ -7905,13 +7934,13 @@ export declare type BuildsWithSubmissionsByIdQuery = {
|
|
|
7905
7934
|
};
|
|
7906
7935
|
};
|
|
7907
7936
|
};
|
|
7908
|
-
export
|
|
7937
|
+
export type ViewBuildsOnAppQueryVariables = Exact<{
|
|
7909
7938
|
appId: Scalars['String'];
|
|
7910
7939
|
offset: Scalars['Int'];
|
|
7911
7940
|
limit: Scalars['Int'];
|
|
7912
7941
|
filter?: InputMaybe<BuildFilter>;
|
|
7913
7942
|
}>;
|
|
7914
|
-
export
|
|
7943
|
+
export type ViewBuildsOnAppQuery = {
|
|
7915
7944
|
__typename?: 'RootQuery';
|
|
7916
7945
|
app: {
|
|
7917
7946
|
__typename?: 'AppQuery';
|
|
@@ -7986,11 +8015,11 @@ export declare type ViewBuildsOnAppQuery = {
|
|
|
7986
8015
|
};
|
|
7987
8016
|
};
|
|
7988
8017
|
};
|
|
7989
|
-
export
|
|
8018
|
+
export type ViewUpdateChannelOnAppQueryVariables = Exact<{
|
|
7990
8019
|
appId: Scalars['String'];
|
|
7991
8020
|
channelName: Scalars['String'];
|
|
7992
8021
|
}>;
|
|
7993
|
-
export
|
|
8022
|
+
export type ViewUpdateChannelOnAppQuery = {
|
|
7994
8023
|
__typename?: 'RootQuery';
|
|
7995
8024
|
app: {
|
|
7996
8025
|
__typename?: 'AppQuery';
|
|
@@ -8016,6 +8045,7 @@ export declare type ViewUpdateChannelOnAppQuery = {
|
|
|
8016
8045
|
runtimeVersion: string;
|
|
8017
8046
|
platform: string;
|
|
8018
8047
|
manifestFragment: string;
|
|
8048
|
+
manifestPermalink: string;
|
|
8019
8049
|
gitCommitHash?: string | null;
|
|
8020
8050
|
actor?: {
|
|
8021
8051
|
__typename: 'Robot';
|
|
@@ -8046,12 +8076,12 @@ export declare type ViewUpdateChannelOnAppQuery = {
|
|
|
8046
8076
|
};
|
|
8047
8077
|
};
|
|
8048
8078
|
};
|
|
8049
|
-
export
|
|
8079
|
+
export type ViewUpdateChannelsOnAppQueryVariables = Exact<{
|
|
8050
8080
|
appId: Scalars['String'];
|
|
8051
8081
|
offset: Scalars['Int'];
|
|
8052
8082
|
limit: Scalars['Int'];
|
|
8053
8083
|
}>;
|
|
8054
|
-
export
|
|
8084
|
+
export type ViewUpdateChannelsOnAppQuery = {
|
|
8055
8085
|
__typename?: 'RootQuery';
|
|
8056
8086
|
app: {
|
|
8057
8087
|
__typename?: 'AppQuery';
|
|
@@ -8076,6 +8106,7 @@ export declare type ViewUpdateChannelsOnAppQuery = {
|
|
|
8076
8106
|
runtimeVersion: string;
|
|
8077
8107
|
platform: string;
|
|
8078
8108
|
manifestFragment: string;
|
|
8109
|
+
manifestPermalink: string;
|
|
8079
8110
|
gitCommitHash?: string | null;
|
|
8080
8111
|
actor?: {
|
|
8081
8112
|
__typename: 'Robot';
|
|
@@ -8106,10 +8137,10 @@ export declare type ViewUpdateChannelsOnAppQuery = {
|
|
|
8106
8137
|
};
|
|
8107
8138
|
};
|
|
8108
8139
|
};
|
|
8109
|
-
export
|
|
8140
|
+
export type EnvironmentSecretsByAppIdQueryVariables = Exact<{
|
|
8110
8141
|
appId: Scalars['String'];
|
|
8111
8142
|
}>;
|
|
8112
|
-
export
|
|
8143
|
+
export type EnvironmentSecretsByAppIdQuery = {
|
|
8113
8144
|
__typename?: 'RootQuery';
|
|
8114
8145
|
app: {
|
|
8115
8146
|
__typename?: 'AppQuery';
|
|
@@ -8137,10 +8168,10 @@ export declare type EnvironmentSecretsByAppIdQuery = {
|
|
|
8137
8168
|
};
|
|
8138
8169
|
};
|
|
8139
8170
|
};
|
|
8140
|
-
export
|
|
8171
|
+
export type GetAssetMetadataQueryVariables = Exact<{
|
|
8141
8172
|
storageKeys: Array<Scalars['String']> | Scalars['String'];
|
|
8142
8173
|
}>;
|
|
8143
|
-
export
|
|
8174
|
+
export type GetAssetMetadataQuery = {
|
|
8144
8175
|
__typename?: 'RootQuery';
|
|
8145
8176
|
asset: {
|
|
8146
8177
|
__typename?: 'AssetQuery';
|
|
@@ -8151,10 +8182,10 @@ export declare type GetAssetMetadataQuery = {
|
|
|
8151
8182
|
}>;
|
|
8152
8183
|
};
|
|
8153
8184
|
};
|
|
8154
|
-
export
|
|
8185
|
+
export type GetAssetLimitPerUpdateGroupForAppQueryVariables = Exact<{
|
|
8155
8186
|
appId: Scalars['String'];
|
|
8156
8187
|
}>;
|
|
8157
|
-
export
|
|
8188
|
+
export type GetAssetLimitPerUpdateGroupForAppQuery = {
|
|
8158
8189
|
__typename?: 'RootQuery';
|
|
8159
8190
|
app: {
|
|
8160
8191
|
__typename?: 'AppQuery';
|
|
@@ -8165,10 +8196,10 @@ export declare type GetAssetLimitPerUpdateGroupForAppQuery = {
|
|
|
8165
8196
|
};
|
|
8166
8197
|
};
|
|
8167
8198
|
};
|
|
8168
|
-
export
|
|
8199
|
+
export type StatuspageServiceByServiceNamesQueryVariables = Exact<{
|
|
8169
8200
|
serviceNames: Array<StatuspageServiceName> | StatuspageServiceName;
|
|
8170
8201
|
}>;
|
|
8171
|
-
export
|
|
8202
|
+
export type StatuspageServiceByServiceNamesQuery = {
|
|
8172
8203
|
__typename?: 'RootQuery';
|
|
8173
8204
|
statuspageService: {
|
|
8174
8205
|
__typename?: 'StatuspageServiceQuery';
|
|
@@ -8188,10 +8219,10 @@ export declare type StatuspageServiceByServiceNamesQuery = {
|
|
|
8188
8219
|
}>;
|
|
8189
8220
|
};
|
|
8190
8221
|
};
|
|
8191
|
-
export
|
|
8222
|
+
export type SubmissionsByIdQueryVariables = Exact<{
|
|
8192
8223
|
submissionId: Scalars['ID'];
|
|
8193
8224
|
}>;
|
|
8194
|
-
export
|
|
8225
|
+
export type SubmissionsByIdQuery = {
|
|
8195
8226
|
__typename?: 'RootQuery';
|
|
8196
8227
|
submissions: {
|
|
8197
8228
|
__typename?: 'SubmissionQuery';
|
|
@@ -8231,14 +8262,14 @@ export declare type SubmissionsByIdQuery = {
|
|
|
8231
8262
|
};
|
|
8232
8263
|
};
|
|
8233
8264
|
};
|
|
8234
|
-
export
|
|
8265
|
+
export type GetAllSubmissionsForAppQueryVariables = Exact<{
|
|
8235
8266
|
appId: Scalars['String'];
|
|
8236
8267
|
offset: Scalars['Int'];
|
|
8237
8268
|
limit: Scalars['Int'];
|
|
8238
8269
|
status?: InputMaybe<SubmissionStatus>;
|
|
8239
8270
|
platform?: InputMaybe<AppPlatform>;
|
|
8240
8271
|
}>;
|
|
8241
|
-
export
|
|
8272
|
+
export type GetAllSubmissionsForAppQuery = {
|
|
8242
8273
|
__typename?: 'RootQuery';
|
|
8243
8274
|
app: {
|
|
8244
8275
|
__typename?: 'AppQuery';
|
|
@@ -8282,10 +8313,10 @@ export declare type GetAllSubmissionsForAppQuery = {
|
|
|
8282
8313
|
};
|
|
8283
8314
|
};
|
|
8284
8315
|
};
|
|
8285
|
-
export
|
|
8316
|
+
export type ViewUpdatesByGroupQueryVariables = Exact<{
|
|
8286
8317
|
groupId: Scalars['ID'];
|
|
8287
8318
|
}>;
|
|
8288
|
-
export
|
|
8319
|
+
export type ViewUpdatesByGroupQuery = {
|
|
8289
8320
|
__typename?: 'RootQuery';
|
|
8290
8321
|
updatesByGroup: Array<{
|
|
8291
8322
|
__typename?: 'Update';
|
|
@@ -8296,6 +8327,7 @@ export declare type ViewUpdatesByGroupQuery = {
|
|
|
8296
8327
|
runtimeVersion: string;
|
|
8297
8328
|
platform: string;
|
|
8298
8329
|
manifestFragment: string;
|
|
8330
|
+
manifestPermalink: string;
|
|
8299
8331
|
gitCommitHash?: string | null;
|
|
8300
8332
|
actor?: {
|
|
8301
8333
|
__typename: 'Robot';
|
|
@@ -8322,14 +8354,14 @@ export declare type ViewUpdatesByGroupQuery = {
|
|
|
8322
8354
|
} | null;
|
|
8323
8355
|
}>;
|
|
8324
8356
|
};
|
|
8325
|
-
export
|
|
8357
|
+
export type ViewUpdateGroupsOnBranchQueryVariables = Exact<{
|
|
8326
8358
|
appId: Scalars['String'];
|
|
8327
8359
|
branchName: Scalars['String'];
|
|
8328
8360
|
limit: Scalars['Int'];
|
|
8329
8361
|
offset: Scalars['Int'];
|
|
8330
8362
|
filter?: InputMaybe<UpdatesFilter>;
|
|
8331
8363
|
}>;
|
|
8332
|
-
export
|
|
8364
|
+
export type ViewUpdateGroupsOnBranchQuery = {
|
|
8333
8365
|
__typename?: 'RootQuery';
|
|
8334
8366
|
app: {
|
|
8335
8367
|
__typename?: 'AppQuery';
|
|
@@ -8348,6 +8380,7 @@ export declare type ViewUpdateGroupsOnBranchQuery = {
|
|
|
8348
8380
|
runtimeVersion: string;
|
|
8349
8381
|
platform: string;
|
|
8350
8382
|
manifestFragment: string;
|
|
8383
|
+
manifestPermalink: string;
|
|
8351
8384
|
gitCommitHash?: string | null;
|
|
8352
8385
|
actor?: {
|
|
8353
8386
|
__typename: 'Robot';
|
|
@@ -8377,13 +8410,13 @@ export declare type ViewUpdateGroupsOnBranchQuery = {
|
|
|
8377
8410
|
};
|
|
8378
8411
|
};
|
|
8379
8412
|
};
|
|
8380
|
-
export
|
|
8413
|
+
export type ViewUpdateGroupsOnAppQueryVariables = Exact<{
|
|
8381
8414
|
appId: Scalars['String'];
|
|
8382
8415
|
limit: Scalars['Int'];
|
|
8383
8416
|
offset: Scalars['Int'];
|
|
8384
8417
|
filter?: InputMaybe<UpdatesFilter>;
|
|
8385
8418
|
}>;
|
|
8386
|
-
export
|
|
8419
|
+
export type ViewUpdateGroupsOnAppQuery = {
|
|
8387
8420
|
__typename?: 'RootQuery';
|
|
8388
8421
|
app: {
|
|
8389
8422
|
__typename?: 'AppQuery';
|
|
@@ -8399,6 +8432,7 @@ export declare type ViewUpdateGroupsOnAppQuery = {
|
|
|
8399
8432
|
runtimeVersion: string;
|
|
8400
8433
|
platform: string;
|
|
8401
8434
|
manifestFragment: string;
|
|
8435
|
+
manifestPermalink: string;
|
|
8402
8436
|
gitCommitHash?: string | null;
|
|
8403
8437
|
actor?: {
|
|
8404
8438
|
__typename: 'Robot';
|
|
@@ -8427,10 +8461,10 @@ export declare type ViewUpdateGroupsOnAppQuery = {
|
|
|
8427
8461
|
};
|
|
8428
8462
|
};
|
|
8429
8463
|
};
|
|
8430
|
-
export
|
|
8464
|
+
export type CurrentUserQueryVariables = Exact<{
|
|
8431
8465
|
[key: string]: never;
|
|
8432
8466
|
}>;
|
|
8433
|
-
export
|
|
8467
|
+
export type CurrentUserQuery = {
|
|
8434
8468
|
__typename?: 'RootQuery';
|
|
8435
8469
|
meActor?: {
|
|
8436
8470
|
__typename: 'Robot';
|
|
@@ -8459,6 +8493,7 @@ export declare type CurrentUserQuery = {
|
|
|
8459
8493
|
}>;
|
|
8460
8494
|
} | {
|
|
8461
8495
|
__typename: 'SSOUser';
|
|
8496
|
+
username: string;
|
|
8462
8497
|
id: string;
|
|
8463
8498
|
featureGates: any;
|
|
8464
8499
|
isExpoAdmin: boolean;
|
|
@@ -8527,11 +8562,11 @@ export declare type CurrentUserQuery = {
|
|
|
8527
8562
|
}>;
|
|
8528
8563
|
} | null;
|
|
8529
8564
|
};
|
|
8530
|
-
export
|
|
8565
|
+
export type WebhooksByAppIdQueryVariables = Exact<{
|
|
8531
8566
|
appId: Scalars['String'];
|
|
8532
8567
|
webhookFilter?: InputMaybe<WebhookFilter>;
|
|
8533
8568
|
}>;
|
|
8534
|
-
export
|
|
8569
|
+
export type WebhooksByAppIdQuery = {
|
|
8535
8570
|
__typename?: 'RootQuery';
|
|
8536
8571
|
app: {
|
|
8537
8572
|
__typename?: 'AppQuery';
|
|
@@ -8549,10 +8584,10 @@ export declare type WebhooksByAppIdQuery = {
|
|
|
8549
8584
|
};
|
|
8550
8585
|
};
|
|
8551
8586
|
};
|
|
8552
|
-
export
|
|
8587
|
+
export type WebhookByIdQueryVariables = Exact<{
|
|
8553
8588
|
webhookId: Scalars['ID'];
|
|
8554
8589
|
}>;
|
|
8555
|
-
export
|
|
8590
|
+
export type WebhookByIdQuery = {
|
|
8556
8591
|
__typename?: 'RootQuery';
|
|
8557
8592
|
webhook: {
|
|
8558
8593
|
__typename?: 'WebhookQuery';
|
|
@@ -8566,7 +8601,7 @@ export declare type WebhookByIdQuery = {
|
|
|
8566
8601
|
};
|
|
8567
8602
|
};
|
|
8568
8603
|
};
|
|
8569
|
-
export
|
|
8604
|
+
export type AccountFragment = {
|
|
8570
8605
|
__typename?: 'Account';
|
|
8571
8606
|
id: string;
|
|
8572
8607
|
name: string;
|
|
@@ -8585,7 +8620,7 @@ export declare type AccountFragment = {
|
|
|
8585
8620
|
};
|
|
8586
8621
|
}>;
|
|
8587
8622
|
};
|
|
8588
|
-
export
|
|
8623
|
+
export type AppFragment = {
|
|
8589
8624
|
__typename?: 'App';
|
|
8590
8625
|
id: string;
|
|
8591
8626
|
fullName: string;
|
|
@@ -8610,7 +8645,7 @@ export declare type AppFragment = {
|
|
|
8610
8645
|
}>;
|
|
8611
8646
|
};
|
|
8612
8647
|
};
|
|
8613
|
-
export
|
|
8648
|
+
export type BuildFragment = {
|
|
8614
8649
|
__typename?: 'Build';
|
|
8615
8650
|
id: string;
|
|
8616
8651
|
status: BuildStatus;
|
|
@@ -8675,7 +8710,7 @@ export declare type BuildFragment = {
|
|
|
8675
8710
|
slug: string;
|
|
8676
8711
|
};
|
|
8677
8712
|
};
|
|
8678
|
-
export
|
|
8713
|
+
export type BuildWithSubmissionsFragment = {
|
|
8679
8714
|
__typename?: 'Build';
|
|
8680
8715
|
id: string;
|
|
8681
8716
|
status: BuildStatus;
|
|
@@ -8774,14 +8809,14 @@ export declare type BuildWithSubmissionsFragment = {
|
|
|
8774
8809
|
slug: string;
|
|
8775
8810
|
};
|
|
8776
8811
|
};
|
|
8777
|
-
export
|
|
8812
|
+
export type EnvironmentSecretFragment = {
|
|
8778
8813
|
__typename?: 'EnvironmentSecret';
|
|
8779
8814
|
id: string;
|
|
8780
8815
|
name: string;
|
|
8781
8816
|
type: EnvironmentSecretType;
|
|
8782
8817
|
createdAt: any;
|
|
8783
8818
|
};
|
|
8784
|
-
export
|
|
8819
|
+
export type StatuspageServiceFragment = {
|
|
8785
8820
|
__typename?: 'StatuspageService';
|
|
8786
8821
|
id: string;
|
|
8787
8822
|
name: StatuspageServiceName;
|
|
@@ -8795,7 +8830,7 @@ export declare type StatuspageServiceFragment = {
|
|
|
8795
8830
|
shortlink: string;
|
|
8796
8831
|
}>;
|
|
8797
8832
|
};
|
|
8798
|
-
export
|
|
8833
|
+
export type SubmissionFragment = {
|
|
8799
8834
|
__typename?: 'Submission';
|
|
8800
8835
|
id: string;
|
|
8801
8836
|
status: SubmissionStatus;
|
|
@@ -8829,7 +8864,7 @@ export declare type SubmissionFragment = {
|
|
|
8829
8864
|
message?: string | null;
|
|
8830
8865
|
} | null;
|
|
8831
8866
|
};
|
|
8832
|
-
export
|
|
8867
|
+
export type UpdateFragment = {
|
|
8833
8868
|
__typename?: 'Update';
|
|
8834
8869
|
id: string;
|
|
8835
8870
|
group: string;
|
|
@@ -8838,6 +8873,7 @@ export declare type UpdateFragment = {
|
|
|
8838
8873
|
runtimeVersion: string;
|
|
8839
8874
|
platform: string;
|
|
8840
8875
|
manifestFragment: string;
|
|
8876
|
+
manifestPermalink: string;
|
|
8841
8877
|
gitCommitHash?: string | null;
|
|
8842
8878
|
actor?: {
|
|
8843
8879
|
__typename: 'Robot';
|
|
@@ -8863,7 +8899,7 @@ export declare type UpdateFragment = {
|
|
|
8863
8899
|
alg: string;
|
|
8864
8900
|
} | null;
|
|
8865
8901
|
};
|
|
8866
|
-
export
|
|
8902
|
+
export type UpdateBranchFragment = {
|
|
8867
8903
|
__typename?: 'UpdateBranch';
|
|
8868
8904
|
id: string;
|
|
8869
8905
|
name: string;
|
|
@@ -8876,6 +8912,7 @@ export declare type UpdateBranchFragment = {
|
|
|
8876
8912
|
runtimeVersion: string;
|
|
8877
8913
|
platform: string;
|
|
8878
8914
|
manifestFragment: string;
|
|
8915
|
+
manifestPermalink: string;
|
|
8879
8916
|
gitCommitHash?: string | null;
|
|
8880
8917
|
actor?: {
|
|
8881
8918
|
__typename: 'Robot';
|
|
@@ -8902,7 +8939,7 @@ export declare type UpdateBranchFragment = {
|
|
|
8902
8939
|
} | null;
|
|
8903
8940
|
}>;
|
|
8904
8941
|
};
|
|
8905
|
-
export
|
|
8942
|
+
export type WebhookFragment = {
|
|
8906
8943
|
__typename?: 'Webhook';
|
|
8907
8944
|
id: string;
|
|
8908
8945
|
event: WebhookType;
|
|
@@ -8910,7 +8947,7 @@ export declare type WebhookFragment = {
|
|
|
8910
8947
|
createdAt: any;
|
|
8911
8948
|
updatedAt: any;
|
|
8912
8949
|
};
|
|
8913
|
-
export
|
|
8950
|
+
export type AndroidAppBuildCredentialsFragment = {
|
|
8914
8951
|
__typename?: 'AndroidAppBuildCredentials';
|
|
8915
8952
|
id: string;
|
|
8916
8953
|
isDefault: boolean;
|
|
@@ -8931,7 +8968,7 @@ export declare type AndroidAppBuildCredentialsFragment = {
|
|
|
8931
8968
|
updatedAt: any;
|
|
8932
8969
|
} | null;
|
|
8933
8970
|
};
|
|
8934
|
-
export
|
|
8971
|
+
export type CommonAndroidAppCredentialsFragment = {
|
|
8935
8972
|
__typename?: 'AndroidAppCredentials';
|
|
8936
8973
|
id: string;
|
|
8937
8974
|
applicationIdentifier?: string | null;
|
|
@@ -9012,7 +9049,7 @@ export declare type CommonAndroidAppCredentialsFragment = {
|
|
|
9012
9049
|
} | null;
|
|
9013
9050
|
}>;
|
|
9014
9051
|
};
|
|
9015
|
-
export
|
|
9052
|
+
export type AndroidFcmFragment = {
|
|
9016
9053
|
__typename?: 'AndroidFcm';
|
|
9017
9054
|
id: string;
|
|
9018
9055
|
credential: any;
|
|
@@ -9031,7 +9068,7 @@ export declare type AndroidFcmFragment = {
|
|
|
9031
9068
|
clientId?: string | null;
|
|
9032
9069
|
};
|
|
9033
9070
|
};
|
|
9034
|
-
export
|
|
9071
|
+
export type AndroidKeystoreFragment = {
|
|
9035
9072
|
__typename?: 'AndroidKeystore';
|
|
9036
9073
|
id: string;
|
|
9037
9074
|
type: AndroidKeystoreType;
|
|
@@ -9045,7 +9082,7 @@ export declare type AndroidKeystoreFragment = {
|
|
|
9045
9082
|
createdAt: any;
|
|
9046
9083
|
updatedAt: any;
|
|
9047
9084
|
};
|
|
9048
|
-
export
|
|
9085
|
+
export type AppStoreConnectApiKeyFragment = {
|
|
9049
9086
|
__typename?: 'AppStoreConnectApiKey';
|
|
9050
9087
|
id: string;
|
|
9051
9088
|
issuerIdentifier: string;
|
|
@@ -9061,12 +9098,12 @@ export declare type AppStoreConnectApiKeyFragment = {
|
|
|
9061
9098
|
appleTeamName?: string | null;
|
|
9062
9099
|
} | null;
|
|
9063
9100
|
};
|
|
9064
|
-
export
|
|
9101
|
+
export type AppleAppIdentifierFragment = {
|
|
9065
9102
|
__typename?: 'AppleAppIdentifier';
|
|
9066
9103
|
id: string;
|
|
9067
9104
|
bundleIdentifier: string;
|
|
9068
9105
|
};
|
|
9069
|
-
export
|
|
9106
|
+
export type AppleDeviceFragment = {
|
|
9070
9107
|
__typename?: 'AppleDevice';
|
|
9071
9108
|
id: string;
|
|
9072
9109
|
identifier: string;
|
|
@@ -9074,11 +9111,11 @@ export declare type AppleDeviceFragment = {
|
|
|
9074
9111
|
model?: string | null;
|
|
9075
9112
|
deviceClass?: AppleDeviceClass | null;
|
|
9076
9113
|
};
|
|
9077
|
-
export
|
|
9114
|
+
export type AppleDeviceRegistrationRequestFragment = {
|
|
9078
9115
|
__typename?: 'AppleDeviceRegistrationRequest';
|
|
9079
9116
|
id: string;
|
|
9080
9117
|
};
|
|
9081
|
-
export
|
|
9118
|
+
export type AppleDistributionCertificateFragment = {
|
|
9082
9119
|
__typename?: 'AppleDistributionCertificate';
|
|
9083
9120
|
id: string;
|
|
9084
9121
|
certificateP12?: string | null;
|
|
@@ -9138,7 +9175,7 @@ export declare type AppleDistributionCertificateFragment = {
|
|
|
9138
9175
|
} | null;
|
|
9139
9176
|
}>;
|
|
9140
9177
|
};
|
|
9141
|
-
export
|
|
9178
|
+
export type AppleProvisioningProfileFragment = {
|
|
9142
9179
|
__typename?: 'AppleProvisioningProfile';
|
|
9143
9180
|
id: string;
|
|
9144
9181
|
expiration: any;
|
|
@@ -9161,12 +9198,12 @@ export declare type AppleProvisioningProfileFragment = {
|
|
|
9161
9198
|
deviceClass?: AppleDeviceClass | null;
|
|
9162
9199
|
}>;
|
|
9163
9200
|
};
|
|
9164
|
-
export
|
|
9201
|
+
export type AppleProvisioningProfileIdentifiersFragment = {
|
|
9165
9202
|
__typename?: 'AppleProvisioningProfile';
|
|
9166
9203
|
id: string;
|
|
9167
9204
|
developerPortalIdentifier?: string | null;
|
|
9168
9205
|
};
|
|
9169
|
-
export
|
|
9206
|
+
export type ApplePushKeyFragment = {
|
|
9170
9207
|
__typename?: 'ApplePushKey';
|
|
9171
9208
|
id: string;
|
|
9172
9209
|
keyIdentifier: string;
|
|
@@ -9212,13 +9249,13 @@ export declare type ApplePushKeyFragment = {
|
|
|
9212
9249
|
};
|
|
9213
9250
|
}>;
|
|
9214
9251
|
};
|
|
9215
|
-
export
|
|
9252
|
+
export type AppleTeamFragment = {
|
|
9216
9253
|
__typename?: 'AppleTeam';
|
|
9217
9254
|
id: string;
|
|
9218
9255
|
appleTeamIdentifier: string;
|
|
9219
9256
|
appleTeamName?: string | null;
|
|
9220
9257
|
};
|
|
9221
|
-
export
|
|
9258
|
+
export type GoogleServiceAccountKeyFragment = {
|
|
9222
9259
|
__typename?: 'GoogleServiceAccountKey';
|
|
9223
9260
|
id: string;
|
|
9224
9261
|
projectIdentifier: string;
|
|
@@ -9228,7 +9265,7 @@ export declare type GoogleServiceAccountKeyFragment = {
|
|
|
9228
9265
|
createdAt: any;
|
|
9229
9266
|
updatedAt: any;
|
|
9230
9267
|
};
|
|
9231
|
-
export
|
|
9268
|
+
export type IosAppBuildCredentialsFragment = {
|
|
9232
9269
|
__typename?: 'IosAppBuildCredentials';
|
|
9233
9270
|
id: string;
|
|
9234
9271
|
iosDistributionType: IosDistributionType;
|
|
@@ -9316,7 +9353,7 @@ export declare type IosAppBuildCredentialsFragment = {
|
|
|
9316
9353
|
}>;
|
|
9317
9354
|
} | null;
|
|
9318
9355
|
};
|
|
9319
|
-
export
|
|
9356
|
+
export type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
9320
9357
|
__typename?: 'IosAppCredentials';
|
|
9321
9358
|
id: string;
|
|
9322
9359
|
app: {
|
|
@@ -9418,7 +9455,7 @@ export declare type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
9418
9455
|
} | null;
|
|
9419
9456
|
} | null;
|
|
9420
9457
|
};
|
|
9421
|
-
export
|
|
9458
|
+
export type CommonIosAppCredentialsFragment = {
|
|
9422
9459
|
__typename?: 'IosAppCredentials';
|
|
9423
9460
|
id: string;
|
|
9424
9461
|
iosAppBuildCredentialsList: Array<{
|