eas-cli 3.3.0 → 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 +54 -104
- 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/republish.d.ts +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 +745 -767
- package/build/graphql/mutations/PublishMutation.d.ts +2 -2
- package/build/graphql/mutations/PublishMutation.js +3 -0
- 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/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 +6 -6
- 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>;
|
|
@@ -3791,21 +3791,9 @@ export declare type User = Actor & {
|
|
|
3791
3791
|
hasPendingUserInvitations: Scalars['Boolean'];
|
|
3792
3792
|
id: Scalars['ID'];
|
|
3793
3793
|
industry?: Maybe<Scalars['String']>;
|
|
3794
|
-
/** @deprecated No longer supported */
|
|
3795
|
-
isEmailUnsubscribed: Scalars['Boolean'];
|
|
3796
3794
|
isExpoAdmin: Scalars['Boolean'];
|
|
3797
|
-
/** @deprecated No longer supported */
|
|
3798
|
-
isLegacy?: Maybe<Scalars['Boolean']>;
|
|
3799
|
-
/** @deprecated No longer supported */
|
|
3800
|
-
isOnboarded?: Maybe<Scalars['Boolean']>;
|
|
3801
3795
|
isSecondFactorAuthenticationEnabled: Scalars['Boolean'];
|
|
3802
|
-
/** @deprecated No longer supported */
|
|
3803
|
-
lastLogin?: Maybe<Scalars['DateTime']>;
|
|
3804
3796
|
lastName?: Maybe<Scalars['String']>;
|
|
3805
|
-
/** @deprecated No longer supported */
|
|
3806
|
-
lastPasswordReset?: Maybe<Scalars['DateTime']>;
|
|
3807
|
-
/** @deprecated 'likes' have been deprecated. */
|
|
3808
|
-
likes?: Maybe<Array<Maybe<App>>>;
|
|
3809
3797
|
location?: Maybe<Scalars['String']>;
|
|
3810
3798
|
notificationSubscriptions: Array<NotificationSubscription>;
|
|
3811
3799
|
/** Pending UserInvitations for this user. Only resolves for the viewer. */
|
|
@@ -3819,40 +3807,33 @@ export declare type User = Actor & {
|
|
|
3819
3807
|
snacks: Array<Snack>;
|
|
3820
3808
|
twitterUsername?: Maybe<Scalars['String']>;
|
|
3821
3809
|
username: Scalars['String'];
|
|
3822
|
-
/** @deprecated No longer supported */
|
|
3823
|
-
wasLegacy?: Maybe<Scalars['Boolean']>;
|
|
3824
3810
|
};
|
|
3825
3811
|
/** Represents a human (not robot) actor. */
|
|
3826
|
-
export
|
|
3812
|
+
export type UserActivityTimelineProjectActivitiesArgs = {
|
|
3827
3813
|
createdBefore?: InputMaybe<Scalars['DateTime']>;
|
|
3828
3814
|
filterTypes?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
|
|
3829
3815
|
limit: Scalars['Int'];
|
|
3830
3816
|
};
|
|
3831
3817
|
/** Represents a human (not robot) actor. */
|
|
3832
|
-
export
|
|
3818
|
+
export type UserAppsArgs = {
|
|
3833
3819
|
includeUnpublished?: InputMaybe<Scalars['Boolean']>;
|
|
3834
3820
|
limit: Scalars['Int'];
|
|
3835
3821
|
offset: Scalars['Int'];
|
|
3836
3822
|
};
|
|
3837
3823
|
/** Represents a human (not robot) actor. */
|
|
3838
|
-
export
|
|
3824
|
+
export type UserFeatureGatesArgs = {
|
|
3839
3825
|
filter?: InputMaybe<Array<Scalars['String']>>;
|
|
3840
3826
|
};
|
|
3841
3827
|
/** Represents a human (not robot) actor. */
|
|
3842
|
-
export
|
|
3843
|
-
limit: Scalars['Int'];
|
|
3844
|
-
offset: Scalars['Int'];
|
|
3845
|
-
};
|
|
3846
|
-
/** Represents a human (not robot) actor. */
|
|
3847
|
-
export declare type UserNotificationSubscriptionsArgs = {
|
|
3828
|
+
export type UserNotificationSubscriptionsArgs = {
|
|
3848
3829
|
filter?: InputMaybe<NotificationSubscriptionFilter>;
|
|
3849
3830
|
};
|
|
3850
3831
|
/** Represents a human (not robot) actor. */
|
|
3851
|
-
export
|
|
3832
|
+
export type UserSnacksArgs = {
|
|
3852
3833
|
limit: Scalars['Int'];
|
|
3853
3834
|
offset: Scalars['Int'];
|
|
3854
3835
|
};
|
|
3855
|
-
export
|
|
3836
|
+
export type UserDataInput = {
|
|
3856
3837
|
appetizeCode?: InputMaybe<Scalars['String']>;
|
|
3857
3838
|
email?: InputMaybe<Scalars['String']>;
|
|
3858
3839
|
firstName?: InputMaybe<Scalars['String']>;
|
|
@@ -3860,18 +3841,14 @@ export declare type UserDataInput = {
|
|
|
3860
3841
|
githubUsername?: InputMaybe<Scalars['String']>;
|
|
3861
3842
|
id?: InputMaybe<Scalars['ID']>;
|
|
3862
3843
|
industry?: InputMaybe<Scalars['String']>;
|
|
3863
|
-
isEmailUnsubscribed?: InputMaybe<Scalars['Boolean']>;
|
|
3864
|
-
isLegacy?: InputMaybe<Scalars['Boolean']>;
|
|
3865
|
-
isOnboarded?: InputMaybe<Scalars['Boolean']>;
|
|
3866
3844
|
lastName?: InputMaybe<Scalars['String']>;
|
|
3867
3845
|
location?: InputMaybe<Scalars['String']>;
|
|
3868
3846
|
profilePhoto?: InputMaybe<Scalars['String']>;
|
|
3869
3847
|
twitterUsername?: InputMaybe<Scalars['String']>;
|
|
3870
3848
|
username?: InputMaybe<Scalars['String']>;
|
|
3871
|
-
wasLegacy?: InputMaybe<Scalars['Boolean']>;
|
|
3872
3849
|
};
|
|
3873
3850
|
/** An pending invitation sent to an email granting membership on an Account. */
|
|
3874
|
-
export
|
|
3851
|
+
export type UserInvitation = {
|
|
3875
3852
|
__typename?: 'UserInvitation';
|
|
3876
3853
|
accountName: Scalars['String'];
|
|
3877
3854
|
/** If the invite is for a personal team, the profile photo of account owner */
|
|
@@ -3888,7 +3865,7 @@ export declare type UserInvitation = {
|
|
|
3888
3865
|
/** Role to be granted upon acceptance of this invitation */
|
|
3889
3866
|
role: Role;
|
|
3890
3867
|
};
|
|
3891
|
-
export
|
|
3868
|
+
export type UserInvitationMutation = {
|
|
3892
3869
|
__typename?: 'UserInvitationMutation';
|
|
3893
3870
|
/** Accept UserInvitation by ID. Viewer must have matching email and email must be verified. */
|
|
3894
3871
|
acceptUserInvitationAsViewer: AcceptUserInvitationResult;
|
|
@@ -3913,28 +3890,28 @@ export declare type UserInvitationMutation = {
|
|
|
3913
3890
|
/** Re-send UserInivitation by ID */
|
|
3914
3891
|
resendUserInvitation: UserInvitation;
|
|
3915
3892
|
};
|
|
3916
|
-
export
|
|
3893
|
+
export type UserInvitationMutationAcceptUserInvitationAsViewerArgs = {
|
|
3917
3894
|
id: Scalars['ID'];
|
|
3918
3895
|
};
|
|
3919
|
-
export
|
|
3896
|
+
export type UserInvitationMutationAcceptUserInvitationByTokenAsViewerArgs = {
|
|
3920
3897
|
token: Scalars['ID'];
|
|
3921
3898
|
};
|
|
3922
|
-
export
|
|
3899
|
+
export type UserInvitationMutationCreateUserInvitationForAccountArgs = {
|
|
3923
3900
|
accountID: Scalars['ID'];
|
|
3924
3901
|
email: Scalars['String'];
|
|
3925
3902
|
permissions: Array<InputMaybe<Permission>>;
|
|
3926
3903
|
};
|
|
3927
|
-
export
|
|
3904
|
+
export type UserInvitationMutationDeleteUserInvitationArgs = {
|
|
3928
3905
|
id: Scalars['ID'];
|
|
3929
3906
|
};
|
|
3930
|
-
export
|
|
3907
|
+
export type UserInvitationMutationDeleteUserInvitationByTokenArgs = {
|
|
3931
3908
|
token: Scalars['ID'];
|
|
3932
3909
|
};
|
|
3933
|
-
export
|
|
3910
|
+
export type UserInvitationMutationResendUserInvitationArgs = {
|
|
3934
3911
|
id: Scalars['ID'];
|
|
3935
3912
|
};
|
|
3936
3913
|
/** Publicly visible data for a UserInvitation. */
|
|
3937
|
-
export
|
|
3914
|
+
export type UserInvitationPublicData = {
|
|
3938
3915
|
__typename?: 'UserInvitationPublicData';
|
|
3939
3916
|
accountName: Scalars['String'];
|
|
3940
3917
|
accountProfilePhoto?: Maybe<Scalars['String']>;
|
|
@@ -3945,15 +3922,15 @@ export declare type UserInvitationPublicData = {
|
|
|
3945
3922
|
id: Scalars['ID'];
|
|
3946
3923
|
isForOrganization: Scalars['Boolean'];
|
|
3947
3924
|
};
|
|
3948
|
-
export
|
|
3925
|
+
export type UserInvitationPublicDataQuery = {
|
|
3949
3926
|
__typename?: 'UserInvitationPublicDataQuery';
|
|
3950
3927
|
/** Get UserInvitationPublicData by token */
|
|
3951
3928
|
byToken: UserInvitationPublicData;
|
|
3952
3929
|
};
|
|
3953
|
-
export
|
|
3930
|
+
export type UserInvitationPublicDataQueryByTokenArgs = {
|
|
3954
3931
|
token: Scalars['ID'];
|
|
3955
3932
|
};
|
|
3956
|
-
export
|
|
3933
|
+
export type UserPermission = {
|
|
3957
3934
|
__typename?: 'UserPermission';
|
|
3958
3935
|
actor: Actor;
|
|
3959
3936
|
permissions: Array<Permission>;
|
|
@@ -3961,21 +3938,21 @@ export declare type UserPermission = {
|
|
|
3961
3938
|
/** @deprecated User type is deprecated */
|
|
3962
3939
|
user?: Maybe<User>;
|
|
3963
3940
|
};
|
|
3964
|
-
export
|
|
3941
|
+
export type UserQuery = {
|
|
3965
3942
|
__typename?: 'UserQuery';
|
|
3966
3943
|
/** Query a User by ID */
|
|
3967
3944
|
byId: User;
|
|
3968
3945
|
/** Query a User by username */
|
|
3969
3946
|
byUsername: User;
|
|
3970
3947
|
};
|
|
3971
|
-
export
|
|
3948
|
+
export type UserQueryByIdArgs = {
|
|
3972
3949
|
userId: Scalars['String'];
|
|
3973
3950
|
};
|
|
3974
|
-
export
|
|
3951
|
+
export type UserQueryByUsernameArgs = {
|
|
3975
3952
|
username: Scalars['String'];
|
|
3976
3953
|
};
|
|
3977
3954
|
/** A second factor device belonging to a User */
|
|
3978
|
-
export
|
|
3955
|
+
export type UserSecondFactorDevice = {
|
|
3979
3956
|
__typename?: 'UserSecondFactorDevice';
|
|
3980
3957
|
createdAt: Scalars['DateTime'];
|
|
3981
3958
|
id: Scalars['ID'];
|
|
@@ -3987,7 +3964,7 @@ export declare type UserSecondFactorDevice = {
|
|
|
3987
3964
|
updatedAt: Scalars['DateTime'];
|
|
3988
3965
|
user: User;
|
|
3989
3966
|
};
|
|
3990
|
-
export
|
|
3967
|
+
export type Webhook = {
|
|
3991
3968
|
__typename?: 'Webhook';
|
|
3992
3969
|
appId: Scalars['ID'];
|
|
3993
3970
|
createdAt: Scalars['DateTime'];
|
|
@@ -3996,15 +3973,15 @@ export declare type Webhook = {
|
|
|
3996
3973
|
updatedAt: Scalars['DateTime'];
|
|
3997
3974
|
url: Scalars['String'];
|
|
3998
3975
|
};
|
|
3999
|
-
export
|
|
3976
|
+
export type WebhookFilter = {
|
|
4000
3977
|
event?: InputMaybe<WebhookType>;
|
|
4001
3978
|
};
|
|
4002
|
-
export
|
|
3979
|
+
export type WebhookInput = {
|
|
4003
3980
|
event: WebhookType;
|
|
4004
3981
|
secret: Scalars['String'];
|
|
4005
3982
|
url: Scalars['String'];
|
|
4006
3983
|
};
|
|
4007
|
-
export
|
|
3984
|
+
export type WebhookMutation = {
|
|
4008
3985
|
__typename?: 'WebhookMutation';
|
|
4009
3986
|
/** Create a Webhook */
|
|
4010
3987
|
createWebhook: Webhook;
|
|
@@ -4013,49 +3990,49 @@ export declare type WebhookMutation = {
|
|
|
4013
3990
|
/** Update a Webhook */
|
|
4014
3991
|
updateWebhook: Webhook;
|
|
4015
3992
|
};
|
|
4016
|
-
export
|
|
3993
|
+
export type WebhookMutationCreateWebhookArgs = {
|
|
4017
3994
|
appId: Scalars['String'];
|
|
4018
3995
|
webhookInput: WebhookInput;
|
|
4019
3996
|
};
|
|
4020
|
-
export
|
|
3997
|
+
export type WebhookMutationDeleteWebhookArgs = {
|
|
4021
3998
|
webhookId: Scalars['ID'];
|
|
4022
3999
|
};
|
|
4023
|
-
export
|
|
4000
|
+
export type WebhookMutationUpdateWebhookArgs = {
|
|
4024
4001
|
webhookId: Scalars['ID'];
|
|
4025
4002
|
webhookInput: WebhookInput;
|
|
4026
4003
|
};
|
|
4027
|
-
export
|
|
4004
|
+
export type WebhookQuery = {
|
|
4028
4005
|
__typename?: 'WebhookQuery';
|
|
4029
4006
|
byId: Webhook;
|
|
4030
4007
|
};
|
|
4031
|
-
export
|
|
4008
|
+
export type WebhookQueryByIdArgs = {
|
|
4032
4009
|
id: Scalars['ID'];
|
|
4033
4010
|
};
|
|
4034
4011
|
export declare enum WebhookType {
|
|
4035
4012
|
Build = "BUILD",
|
|
4036
4013
|
Submit = "SUBMIT"
|
|
4037
4014
|
}
|
|
4038
|
-
export
|
|
4015
|
+
export type DeleteAndroidAppBuildCredentialsResult = {
|
|
4039
4016
|
__typename?: 'deleteAndroidAppBuildCredentialsResult';
|
|
4040
4017
|
id: Scalars['ID'];
|
|
4041
4018
|
};
|
|
4042
|
-
export
|
|
4019
|
+
export type DeleteAndroidFcmResult = {
|
|
4043
4020
|
__typename?: 'deleteAndroidFcmResult';
|
|
4044
4021
|
id: Scalars['ID'];
|
|
4045
4022
|
};
|
|
4046
|
-
export
|
|
4023
|
+
export type DeleteAppStoreConnectApiKeyResult = {
|
|
4047
4024
|
__typename?: 'deleteAppStoreConnectApiKeyResult';
|
|
4048
4025
|
id: Scalars['ID'];
|
|
4049
4026
|
};
|
|
4050
|
-
export
|
|
4027
|
+
export type DeleteApplePushKeyResult = {
|
|
4051
4028
|
__typename?: 'deleteApplePushKeyResult';
|
|
4052
4029
|
id: Scalars['ID'];
|
|
4053
4030
|
};
|
|
4054
|
-
export
|
|
4031
|
+
export type CreateUpdateBranchForAppMutationVariables = Exact<{
|
|
4055
4032
|
appId: Scalars['ID'];
|
|
4056
4033
|
name: Scalars['String'];
|
|
4057
4034
|
}>;
|
|
4058
|
-
export
|
|
4035
|
+
export type CreateUpdateBranchForAppMutation = {
|
|
4059
4036
|
__typename?: 'RootMutation';
|
|
4060
4037
|
updateBranch: {
|
|
4061
4038
|
__typename?: 'UpdateBranchMutation';
|
|
@@ -4066,12 +4043,12 @@ export declare type CreateUpdateBranchForAppMutation = {
|
|
|
4066
4043
|
};
|
|
4067
4044
|
};
|
|
4068
4045
|
};
|
|
4069
|
-
export
|
|
4046
|
+
export type CreateUpdateChannelOnAppMutationVariables = Exact<{
|
|
4070
4047
|
appId: Scalars['ID'];
|
|
4071
4048
|
name: Scalars['String'];
|
|
4072
4049
|
branchMapping: Scalars['String'];
|
|
4073
4050
|
}>;
|
|
4074
|
-
export
|
|
4051
|
+
export type CreateUpdateChannelOnAppMutation = {
|
|
4075
4052
|
__typename?: 'RootMutation';
|
|
4076
4053
|
updateChannel: {
|
|
4077
4054
|
__typename?: 'UpdateChannelMutation';
|
|
@@ -4083,11 +4060,11 @@ export declare type CreateUpdateChannelOnAppMutation = {
|
|
|
4083
4060
|
};
|
|
4084
4061
|
};
|
|
4085
4062
|
};
|
|
4086
|
-
export
|
|
4063
|
+
export type GetBranchInfoQueryVariables = Exact<{
|
|
4087
4064
|
appId: Scalars['String'];
|
|
4088
4065
|
name: Scalars['String'];
|
|
4089
4066
|
}>;
|
|
4090
|
-
export
|
|
4067
|
+
export type GetBranchInfoQuery = {
|
|
4091
4068
|
__typename?: 'RootQuery';
|
|
4092
4069
|
app: {
|
|
4093
4070
|
__typename?: 'AppQuery';
|
|
@@ -4102,10 +4079,10 @@ export declare type GetBranchInfoQuery = {
|
|
|
4102
4079
|
};
|
|
4103
4080
|
};
|
|
4104
4081
|
};
|
|
4105
|
-
export
|
|
4082
|
+
export type DeleteUpdateBranchMutationVariables = Exact<{
|
|
4106
4083
|
branchId: Scalars['ID'];
|
|
4107
4084
|
}>;
|
|
4108
|
-
export
|
|
4085
|
+
export type DeleteUpdateBranchMutation = {
|
|
4109
4086
|
__typename?: 'RootMutation';
|
|
4110
4087
|
updateBranch: {
|
|
4111
4088
|
__typename?: 'UpdateBranchMutation';
|
|
@@ -4115,10 +4092,10 @@ export declare type DeleteUpdateBranchMutation = {
|
|
|
4115
4092
|
};
|
|
4116
4093
|
};
|
|
4117
4094
|
};
|
|
4118
|
-
export
|
|
4095
|
+
export type EditUpdateBranchMutationVariables = Exact<{
|
|
4119
4096
|
input: EditUpdateBranchInput;
|
|
4120
4097
|
}>;
|
|
4121
|
-
export
|
|
4098
|
+
export type EditUpdateBranchMutation = {
|
|
4122
4099
|
__typename?: 'RootMutation';
|
|
4123
4100
|
updateBranch: {
|
|
4124
4101
|
__typename?: 'UpdateBranchMutation';
|
|
@@ -4129,10 +4106,10 @@ export declare type EditUpdateBranchMutation = {
|
|
|
4129
4106
|
};
|
|
4130
4107
|
};
|
|
4131
4108
|
};
|
|
4132
|
-
export
|
|
4109
|
+
export type CancelBuildMutationVariables = Exact<{
|
|
4133
4110
|
buildId: Scalars['ID'];
|
|
4134
4111
|
}>;
|
|
4135
|
-
export
|
|
4112
|
+
export type CancelBuildMutation = {
|
|
4136
4113
|
__typename?: 'RootMutation';
|
|
4137
4114
|
build: {
|
|
4138
4115
|
__typename?: 'BuildMutation';
|
|
@@ -4143,10 +4120,10 @@ export declare type CancelBuildMutation = {
|
|
|
4143
4120
|
};
|
|
4144
4121
|
};
|
|
4145
4122
|
};
|
|
4146
|
-
export
|
|
4123
|
+
export type DeleteUpdateChannelMutationVariables = Exact<{
|
|
4147
4124
|
channelId: Scalars['ID'];
|
|
4148
4125
|
}>;
|
|
4149
|
-
export
|
|
4126
|
+
export type DeleteUpdateChannelMutation = {
|
|
4150
4127
|
__typename?: 'RootMutation';
|
|
4151
4128
|
updateChannel: {
|
|
4152
4129
|
__typename?: 'UpdateChannelMutation';
|
|
@@ -4156,11 +4133,11 @@ export declare type DeleteUpdateChannelMutation = {
|
|
|
4156
4133
|
};
|
|
4157
4134
|
};
|
|
4158
4135
|
};
|
|
4159
|
-
export
|
|
4136
|
+
export type UpdateChannelBranchMappingMutationVariables = Exact<{
|
|
4160
4137
|
channelId: Scalars['ID'];
|
|
4161
4138
|
branchMapping: Scalars['String'];
|
|
4162
4139
|
}>;
|
|
4163
|
-
export
|
|
4140
|
+
export type UpdateChannelBranchMappingMutation = {
|
|
4164
4141
|
__typename?: 'RootMutation';
|
|
4165
4142
|
updateChannel: {
|
|
4166
4143
|
__typename?: 'UpdateChannelMutation';
|
|
@@ -4172,10 +4149,10 @@ export declare type UpdateChannelBranchMappingMutation = {
|
|
|
4172
4149
|
};
|
|
4173
4150
|
};
|
|
4174
4151
|
};
|
|
4175
|
-
export
|
|
4152
|
+
export type AppInfoQueryVariables = Exact<{
|
|
4176
4153
|
appId: Scalars['String'];
|
|
4177
4154
|
}>;
|
|
4178
|
-
export
|
|
4155
|
+
export type AppInfoQuery = {
|
|
4179
4156
|
__typename?: 'RootQuery';
|
|
4180
4157
|
app: {
|
|
4181
4158
|
__typename?: 'AppQuery';
|
|
@@ -4186,10 +4163,10 @@ export declare type AppInfoQuery = {
|
|
|
4186
4163
|
};
|
|
4187
4164
|
};
|
|
4188
4165
|
};
|
|
4189
|
-
export
|
|
4166
|
+
export type DeleteUpdateGroupMutationVariables = Exact<{
|
|
4190
4167
|
group: Scalars['ID'];
|
|
4191
4168
|
}>;
|
|
4192
|
-
export
|
|
4169
|
+
export type DeleteUpdateGroupMutation = {
|
|
4193
4170
|
__typename?: 'RootMutation';
|
|
4194
4171
|
update: {
|
|
4195
4172
|
__typename?: 'UpdateMutation';
|
|
@@ -4199,11 +4176,11 @@ export declare type DeleteUpdateGroupMutation = {
|
|
|
4199
4176
|
};
|
|
4200
4177
|
};
|
|
4201
4178
|
};
|
|
4202
|
-
export
|
|
4179
|
+
export type CreateAndroidAppBuildCredentialsMutationVariables = Exact<{
|
|
4203
4180
|
androidAppBuildCredentialsInput: AndroidAppBuildCredentialsInput;
|
|
4204
4181
|
androidAppCredentialsId: Scalars['ID'];
|
|
4205
4182
|
}>;
|
|
4206
|
-
export
|
|
4183
|
+
export type CreateAndroidAppBuildCredentialsMutation = {
|
|
4207
4184
|
__typename?: 'RootMutation';
|
|
4208
4185
|
androidAppBuildCredentials: {
|
|
4209
4186
|
__typename?: 'AndroidAppBuildCredentialsMutation';
|
|
@@ -4230,11 +4207,11 @@ export declare type CreateAndroidAppBuildCredentialsMutation = {
|
|
|
4230
4207
|
};
|
|
4231
4208
|
};
|
|
4232
4209
|
};
|
|
4233
|
-
export
|
|
4210
|
+
export type SetKeystoreMutationVariables = Exact<{
|
|
4234
4211
|
androidAppBuildCredentialsId: Scalars['ID'];
|
|
4235
4212
|
keystoreId: Scalars['ID'];
|
|
4236
4213
|
}>;
|
|
4237
|
-
export
|
|
4214
|
+
export type SetKeystoreMutation = {
|
|
4238
4215
|
__typename?: 'RootMutation';
|
|
4239
4216
|
androidAppBuildCredentials: {
|
|
4240
4217
|
__typename?: 'AndroidAppBuildCredentialsMutation';
|
|
@@ -4261,12 +4238,12 @@ export declare type SetKeystoreMutation = {
|
|
|
4261
4238
|
};
|
|
4262
4239
|
};
|
|
4263
4240
|
};
|
|
4264
|
-
export
|
|
4241
|
+
export type CreateAndroidAppCredentialsMutationVariables = Exact<{
|
|
4265
4242
|
androidAppCredentialsInput: AndroidAppCredentialsInput;
|
|
4266
4243
|
appId: Scalars['ID'];
|
|
4267
4244
|
applicationIdentifier: Scalars['String'];
|
|
4268
4245
|
}>;
|
|
4269
|
-
export
|
|
4246
|
+
export type CreateAndroidAppCredentialsMutation = {
|
|
4270
4247
|
__typename?: 'RootMutation';
|
|
4271
4248
|
androidAppCredentials: {
|
|
4272
4249
|
__typename?: 'AndroidAppCredentialsMutation';
|
|
@@ -4353,11 +4330,11 @@ export declare type CreateAndroidAppCredentialsMutation = {
|
|
|
4353
4330
|
};
|
|
4354
4331
|
};
|
|
4355
4332
|
};
|
|
4356
|
-
export
|
|
4333
|
+
export type SetFcmMutationVariables = Exact<{
|
|
4357
4334
|
androidAppCredentialsId: Scalars['ID'];
|
|
4358
4335
|
fcmId: Scalars['ID'];
|
|
4359
4336
|
}>;
|
|
4360
|
-
export
|
|
4337
|
+
export type SetFcmMutation = {
|
|
4361
4338
|
__typename?: 'RootMutation';
|
|
4362
4339
|
androidAppCredentials: {
|
|
4363
4340
|
__typename?: 'AndroidAppCredentialsMutation';
|
|
@@ -4444,11 +4421,11 @@ export declare type SetFcmMutation = {
|
|
|
4444
4421
|
};
|
|
4445
4422
|
};
|
|
4446
4423
|
};
|
|
4447
|
-
export
|
|
4424
|
+
export type SetGoogleServiceAccountKeyForSubmissionsMutationVariables = Exact<{
|
|
4448
4425
|
androidAppCredentialsId: Scalars['ID'];
|
|
4449
4426
|
googleServiceAccountKeyId: Scalars['ID'];
|
|
4450
4427
|
}>;
|
|
4451
|
-
export
|
|
4428
|
+
export type SetGoogleServiceAccountKeyForSubmissionsMutation = {
|
|
4452
4429
|
__typename?: 'RootMutation';
|
|
4453
4430
|
androidAppCredentials: {
|
|
4454
4431
|
__typename?: 'AndroidAppCredentialsMutation';
|
|
@@ -4535,11 +4512,11 @@ export declare type SetGoogleServiceAccountKeyForSubmissionsMutation = {
|
|
|
4535
4512
|
};
|
|
4536
4513
|
};
|
|
4537
4514
|
};
|
|
4538
|
-
export
|
|
4515
|
+
export type CreateAndroidFcmMutationVariables = Exact<{
|
|
4539
4516
|
androidFcmInput: AndroidFcmInput;
|
|
4540
4517
|
accountId: Scalars['ID'];
|
|
4541
4518
|
}>;
|
|
4542
|
-
export
|
|
4519
|
+
export type CreateAndroidFcmMutation = {
|
|
4543
4520
|
__typename?: 'RootMutation';
|
|
4544
4521
|
androidFcm: {
|
|
4545
4522
|
__typename?: 'AndroidFcmMutation';
|
|
@@ -4564,10 +4541,10 @@ export declare type CreateAndroidFcmMutation = {
|
|
|
4564
4541
|
};
|
|
4565
4542
|
};
|
|
4566
4543
|
};
|
|
4567
|
-
export
|
|
4544
|
+
export type DeleteAndroidFcmMutationVariables = Exact<{
|
|
4568
4545
|
androidFcmId: Scalars['ID'];
|
|
4569
4546
|
}>;
|
|
4570
|
-
export
|
|
4547
|
+
export type DeleteAndroidFcmMutation = {
|
|
4571
4548
|
__typename?: 'RootMutation';
|
|
4572
4549
|
androidFcm: {
|
|
4573
4550
|
__typename?: 'AndroidFcmMutation';
|
|
@@ -4577,11 +4554,11 @@ export declare type DeleteAndroidFcmMutation = {
|
|
|
4577
4554
|
};
|
|
4578
4555
|
};
|
|
4579
4556
|
};
|
|
4580
|
-
export
|
|
4557
|
+
export type CreateAndroidKeystoreMutationVariables = Exact<{
|
|
4581
4558
|
androidKeystoreInput: AndroidKeystoreInput;
|
|
4582
4559
|
accountId: Scalars['ID'];
|
|
4583
4560
|
}>;
|
|
4584
|
-
export
|
|
4561
|
+
export type CreateAndroidKeystoreMutation = {
|
|
4585
4562
|
__typename?: 'RootMutation';
|
|
4586
4563
|
androidKeystore: {
|
|
4587
4564
|
__typename?: 'AndroidKeystoreMutation';
|
|
@@ -4601,10 +4578,10 @@ export declare type CreateAndroidKeystoreMutation = {
|
|
|
4601
4578
|
} | null;
|
|
4602
4579
|
};
|
|
4603
4580
|
};
|
|
4604
|
-
export
|
|
4581
|
+
export type DeleteAndroidKeystoreMutationVariables = Exact<{
|
|
4605
4582
|
androidKeystoreId: Scalars['ID'];
|
|
4606
4583
|
}>;
|
|
4607
|
-
export
|
|
4584
|
+
export type DeleteAndroidKeystoreMutation = {
|
|
4608
4585
|
__typename?: 'RootMutation';
|
|
4609
4586
|
androidKeystore: {
|
|
4610
4587
|
__typename?: 'AndroidKeystoreMutation';
|
|
@@ -4614,11 +4591,11 @@ export declare type DeleteAndroidKeystoreMutation = {
|
|
|
4614
4591
|
};
|
|
4615
4592
|
};
|
|
4616
4593
|
};
|
|
4617
|
-
export
|
|
4594
|
+
export type CreateGoogleServiceAccountKeyMutationVariables = Exact<{
|
|
4618
4595
|
googleServiceAccountKeyInput: GoogleServiceAccountKeyInput;
|
|
4619
4596
|
accountId: Scalars['ID'];
|
|
4620
4597
|
}>;
|
|
4621
|
-
export
|
|
4598
|
+
export type CreateGoogleServiceAccountKeyMutation = {
|
|
4622
4599
|
__typename?: 'RootMutation';
|
|
4623
4600
|
googleServiceAccountKey: {
|
|
4624
4601
|
__typename?: 'GoogleServiceAccountKeyMutation';
|
|
@@ -4634,10 +4611,10 @@ export declare type CreateGoogleServiceAccountKeyMutation = {
|
|
|
4634
4611
|
};
|
|
4635
4612
|
};
|
|
4636
4613
|
};
|
|
4637
|
-
export
|
|
4614
|
+
export type DeleteGoogleServiceAccountKeyMutationVariables = Exact<{
|
|
4638
4615
|
googleServiceAccountKeyId: Scalars['ID'];
|
|
4639
4616
|
}>;
|
|
4640
|
-
export
|
|
4617
|
+
export type DeleteGoogleServiceAccountKeyMutation = {
|
|
4641
4618
|
__typename?: 'RootMutation';
|
|
4642
4619
|
googleServiceAccountKey: {
|
|
4643
4620
|
__typename?: 'GoogleServiceAccountKeyMutation';
|
|
@@ -4647,12 +4624,12 @@ export declare type DeleteGoogleServiceAccountKeyMutation = {
|
|
|
4647
4624
|
};
|
|
4648
4625
|
};
|
|
4649
4626
|
};
|
|
4650
|
-
export
|
|
4627
|
+
export type CommonAndroidAppCredentialsWithBuildCredentialsByApplicationIdentifierQueryVariables = Exact<{
|
|
4651
4628
|
projectFullName: Scalars['String'];
|
|
4652
4629
|
applicationIdentifier?: InputMaybe<Scalars['String']>;
|
|
4653
4630
|
legacyOnly?: InputMaybe<Scalars['Boolean']>;
|
|
4654
4631
|
}>;
|
|
4655
|
-
export
|
|
4632
|
+
export type CommonAndroidAppCredentialsWithBuildCredentialsByApplicationIdentifierQuery = {
|
|
4656
4633
|
__typename?: 'RootQuery';
|
|
4657
4634
|
app: {
|
|
4658
4635
|
__typename?: 'AppQuery';
|
|
@@ -4743,10 +4720,10 @@ export declare type CommonAndroidAppCredentialsWithBuildCredentialsByApplication
|
|
|
4743
4720
|
};
|
|
4744
4721
|
};
|
|
4745
4722
|
};
|
|
4746
|
-
export
|
|
4723
|
+
export type GoogleServiceAccountKeyByAccountQueryVariables = Exact<{
|
|
4747
4724
|
accountName: Scalars['String'];
|
|
4748
4725
|
}>;
|
|
4749
|
-
export
|
|
4726
|
+
export type GoogleServiceAccountKeyByAccountQuery = {
|
|
4750
4727
|
__typename?: 'RootQuery';
|
|
4751
4728
|
account: {
|
|
4752
4729
|
__typename?: 'AccountQuery';
|
|
@@ -4766,11 +4743,11 @@ export declare type GoogleServiceAccountKeyByAccountQuery = {
|
|
|
4766
4743
|
};
|
|
4767
4744
|
};
|
|
4768
4745
|
};
|
|
4769
|
-
export
|
|
4746
|
+
export type CreateAppStoreConnectApiKeyMutationVariables = Exact<{
|
|
4770
4747
|
appStoreConnectApiKeyInput: AppStoreConnectApiKeyInput;
|
|
4771
4748
|
accountId: Scalars['ID'];
|
|
4772
4749
|
}>;
|
|
4773
|
-
export
|
|
4750
|
+
export type CreateAppStoreConnectApiKeyMutation = {
|
|
4774
4751
|
__typename?: 'RootMutation';
|
|
4775
4752
|
appStoreConnectApiKey: {
|
|
4776
4753
|
__typename?: 'AppStoreConnectApiKeyMutation';
|
|
@@ -4792,10 +4769,10 @@ export declare type CreateAppStoreConnectApiKeyMutation = {
|
|
|
4792
4769
|
};
|
|
4793
4770
|
};
|
|
4794
4771
|
};
|
|
4795
|
-
export
|
|
4772
|
+
export type DeleteAppStoreConnectApiKeyMutationVariables = Exact<{
|
|
4796
4773
|
appStoreConnectApiKeyId: Scalars['ID'];
|
|
4797
4774
|
}>;
|
|
4798
|
-
export
|
|
4775
|
+
export type DeleteAppStoreConnectApiKeyMutation = {
|
|
4799
4776
|
__typename?: 'RootMutation';
|
|
4800
4777
|
appStoreConnectApiKey: {
|
|
4801
4778
|
__typename?: 'AppStoreConnectApiKeyMutation';
|
|
@@ -4805,11 +4782,11 @@ export declare type DeleteAppStoreConnectApiKeyMutation = {
|
|
|
4805
4782
|
};
|
|
4806
4783
|
};
|
|
4807
4784
|
};
|
|
4808
|
-
export
|
|
4785
|
+
export type CreateAppleAppIdentifierMutationVariables = Exact<{
|
|
4809
4786
|
appleAppIdentifierInput: AppleAppIdentifierInput;
|
|
4810
4787
|
accountId: Scalars['ID'];
|
|
4811
4788
|
}>;
|
|
4812
|
-
export
|
|
4789
|
+
export type CreateAppleAppIdentifierMutation = {
|
|
4813
4790
|
__typename?: 'RootMutation';
|
|
4814
4791
|
appleAppIdentifier: {
|
|
4815
4792
|
__typename?: 'AppleAppIdentifierMutation';
|
|
@@ -4820,11 +4797,11 @@ export declare type CreateAppleAppIdentifierMutation = {
|
|
|
4820
4797
|
};
|
|
4821
4798
|
};
|
|
4822
4799
|
};
|
|
4823
|
-
export
|
|
4800
|
+
export type CreateAppleDeviceMutationVariables = Exact<{
|
|
4824
4801
|
appleDeviceInput: AppleDeviceInput;
|
|
4825
4802
|
accountId: Scalars['ID'];
|
|
4826
4803
|
}>;
|
|
4827
|
-
export
|
|
4804
|
+
export type CreateAppleDeviceMutation = {
|
|
4828
4805
|
__typename?: 'RootMutation';
|
|
4829
4806
|
appleDevice: {
|
|
4830
4807
|
__typename?: 'AppleDeviceMutation';
|
|
@@ -4838,10 +4815,10 @@ export declare type CreateAppleDeviceMutation = {
|
|
|
4838
4815
|
};
|
|
4839
4816
|
};
|
|
4840
4817
|
};
|
|
4841
|
-
export
|
|
4818
|
+
export type DeleteAppleDeviceMutationVariables = Exact<{
|
|
4842
4819
|
deviceId: Scalars['ID'];
|
|
4843
4820
|
}>;
|
|
4844
|
-
export
|
|
4821
|
+
export type DeleteAppleDeviceMutation = {
|
|
4845
4822
|
__typename?: 'RootMutation';
|
|
4846
4823
|
appleDevice: {
|
|
4847
4824
|
__typename?: 'AppleDeviceMutation';
|
|
@@ -4851,11 +4828,11 @@ export declare type DeleteAppleDeviceMutation = {
|
|
|
4851
4828
|
};
|
|
4852
4829
|
};
|
|
4853
4830
|
};
|
|
4854
|
-
export
|
|
4831
|
+
export type CreateAppleDeviceRegistrationRequestMutationVariables = Exact<{
|
|
4855
4832
|
appleTeamId: Scalars['ID'];
|
|
4856
4833
|
accountId: Scalars['ID'];
|
|
4857
4834
|
}>;
|
|
4858
|
-
export
|
|
4835
|
+
export type CreateAppleDeviceRegistrationRequestMutation = {
|
|
4859
4836
|
__typename?: 'RootMutation';
|
|
4860
4837
|
appleDeviceRegistrationRequest: {
|
|
4861
4838
|
__typename?: 'AppleDeviceRegistrationRequestMutation';
|
|
@@ -4865,11 +4842,11 @@ export declare type CreateAppleDeviceRegistrationRequestMutation = {
|
|
|
4865
4842
|
};
|
|
4866
4843
|
};
|
|
4867
4844
|
};
|
|
4868
|
-
export
|
|
4845
|
+
export type CreateAppleDistributionCertificateMutationVariables = Exact<{
|
|
4869
4846
|
appleDistributionCertificateInput: AppleDistributionCertificateInput;
|
|
4870
4847
|
accountId: Scalars['ID'];
|
|
4871
4848
|
}>;
|
|
4872
|
-
export
|
|
4849
|
+
export type CreateAppleDistributionCertificateMutation = {
|
|
4873
4850
|
__typename?: 'RootMutation';
|
|
4874
4851
|
appleDistributionCertificate: {
|
|
4875
4852
|
__typename?: 'AppleDistributionCertificateMutation';
|
|
@@ -4935,10 +4912,10 @@ export declare type CreateAppleDistributionCertificateMutation = {
|
|
|
4935
4912
|
} | null;
|
|
4936
4913
|
};
|
|
4937
4914
|
};
|
|
4938
|
-
export
|
|
4915
|
+
export type DeleteAppleDistributionCertificateMutationVariables = Exact<{
|
|
4939
4916
|
appleDistributionCertificateId: Scalars['ID'];
|
|
4940
4917
|
}>;
|
|
4941
|
-
export
|
|
4918
|
+
export type DeleteAppleDistributionCertificateMutation = {
|
|
4942
4919
|
__typename?: 'RootMutation';
|
|
4943
4920
|
appleDistributionCertificate: {
|
|
4944
4921
|
__typename?: 'AppleDistributionCertificateMutation';
|
|
@@ -4948,12 +4925,12 @@ export declare type DeleteAppleDistributionCertificateMutation = {
|
|
|
4948
4925
|
};
|
|
4949
4926
|
};
|
|
4950
4927
|
};
|
|
4951
|
-
export
|
|
4928
|
+
export type CreateAppleProvisioningProfileMutationVariables = Exact<{
|
|
4952
4929
|
appleProvisioningProfileInput: AppleProvisioningProfileInput;
|
|
4953
4930
|
accountId: Scalars['ID'];
|
|
4954
4931
|
appleAppIdentifierId: Scalars['ID'];
|
|
4955
4932
|
}>;
|
|
4956
|
-
export
|
|
4933
|
+
export type CreateAppleProvisioningProfileMutation = {
|
|
4957
4934
|
__typename?: 'RootMutation';
|
|
4958
4935
|
appleProvisioningProfile: {
|
|
4959
4936
|
__typename?: 'AppleProvisioningProfileMutation';
|
|
@@ -4982,11 +4959,11 @@ export declare type CreateAppleProvisioningProfileMutation = {
|
|
|
4982
4959
|
};
|
|
4983
4960
|
};
|
|
4984
4961
|
};
|
|
4985
|
-
export
|
|
4962
|
+
export type UpdateAppleProvisioningProfileMutationVariables = Exact<{
|
|
4986
4963
|
appleProvisioningProfileId: Scalars['ID'];
|
|
4987
4964
|
appleProvisioningProfileInput: AppleProvisioningProfileInput;
|
|
4988
4965
|
}>;
|
|
4989
|
-
export
|
|
4966
|
+
export type UpdateAppleProvisioningProfileMutation = {
|
|
4990
4967
|
__typename?: 'RootMutation';
|
|
4991
4968
|
appleProvisioningProfile: {
|
|
4992
4969
|
__typename?: 'AppleProvisioningProfileMutation';
|
|
@@ -5015,10 +4992,10 @@ export declare type UpdateAppleProvisioningProfileMutation = {
|
|
|
5015
4992
|
};
|
|
5016
4993
|
};
|
|
5017
4994
|
};
|
|
5018
|
-
export
|
|
4995
|
+
export type DeleteAppleProvisioningProfilesMutationVariables = Exact<{
|
|
5019
4996
|
appleProvisioningProfileIds: Array<Scalars['ID']> | Scalars['ID'];
|
|
5020
4997
|
}>;
|
|
5021
|
-
export
|
|
4998
|
+
export type DeleteAppleProvisioningProfilesMutation = {
|
|
5022
4999
|
__typename?: 'RootMutation';
|
|
5023
5000
|
appleProvisioningProfile: {
|
|
5024
5001
|
__typename?: 'AppleProvisioningProfileMutation';
|
|
@@ -5028,11 +5005,11 @@ export declare type DeleteAppleProvisioningProfilesMutation = {
|
|
|
5028
5005
|
}>;
|
|
5029
5006
|
};
|
|
5030
5007
|
};
|
|
5031
|
-
export
|
|
5008
|
+
export type CreateApplePushKeyMutationVariables = Exact<{
|
|
5032
5009
|
applePushKeyInput: ApplePushKeyInput;
|
|
5033
5010
|
accountId: Scalars['ID'];
|
|
5034
5011
|
}>;
|
|
5035
|
-
export
|
|
5012
|
+
export type CreateApplePushKeyMutation = {
|
|
5036
5013
|
__typename?: 'RootMutation';
|
|
5037
5014
|
applePushKey: {
|
|
5038
5015
|
__typename?: 'ApplePushKeyMutation';
|
|
@@ -5084,10 +5061,10 @@ export declare type CreateApplePushKeyMutation = {
|
|
|
5084
5061
|
};
|
|
5085
5062
|
};
|
|
5086
5063
|
};
|
|
5087
|
-
export
|
|
5064
|
+
export type DeleteApplePushKeyMutationVariables = Exact<{
|
|
5088
5065
|
applePushKeyId: Scalars['ID'];
|
|
5089
5066
|
}>;
|
|
5090
|
-
export
|
|
5067
|
+
export type DeleteApplePushKeyMutation = {
|
|
5091
5068
|
__typename?: 'RootMutation';
|
|
5092
5069
|
applePushKey: {
|
|
5093
5070
|
__typename?: 'ApplePushKeyMutation';
|
|
@@ -5097,11 +5074,11 @@ export declare type DeleteApplePushKeyMutation = {
|
|
|
5097
5074
|
};
|
|
5098
5075
|
};
|
|
5099
5076
|
};
|
|
5100
|
-
export
|
|
5077
|
+
export type CreateAppleTeamMutationVariables = Exact<{
|
|
5101
5078
|
appleTeamInput: AppleTeamInput;
|
|
5102
5079
|
accountId: Scalars['ID'];
|
|
5103
5080
|
}>;
|
|
5104
|
-
export
|
|
5081
|
+
export type CreateAppleTeamMutation = {
|
|
5105
5082
|
__typename?: 'RootMutation';
|
|
5106
5083
|
appleTeam: {
|
|
5107
5084
|
__typename?: 'AppleTeamMutation';
|
|
@@ -5132,11 +5109,11 @@ export declare type CreateAppleTeamMutation = {
|
|
|
5132
5109
|
};
|
|
5133
5110
|
};
|
|
5134
5111
|
};
|
|
5135
|
-
export
|
|
5112
|
+
export type CreateIosAppBuildCredentialsMutationVariables = Exact<{
|
|
5136
5113
|
iosAppBuildCredentialsInput: IosAppBuildCredentialsInput;
|
|
5137
5114
|
iosAppCredentialsId: Scalars['ID'];
|
|
5138
5115
|
}>;
|
|
5139
|
-
export
|
|
5116
|
+
export type CreateIosAppBuildCredentialsMutation = {
|
|
5140
5117
|
__typename?: 'RootMutation';
|
|
5141
5118
|
iosAppBuildCredentials: {
|
|
5142
5119
|
__typename?: 'IosAppBuildCredentialsMutation';
|
|
@@ -5230,11 +5207,11 @@ export declare type CreateIosAppBuildCredentialsMutation = {
|
|
|
5230
5207
|
};
|
|
5231
5208
|
};
|
|
5232
5209
|
};
|
|
5233
|
-
export
|
|
5210
|
+
export type SetDistributionCertificateMutationVariables = Exact<{
|
|
5234
5211
|
iosAppBuildCredentialsId: Scalars['ID'];
|
|
5235
5212
|
distributionCertificateId: Scalars['ID'];
|
|
5236
5213
|
}>;
|
|
5237
|
-
export
|
|
5214
|
+
export type SetDistributionCertificateMutation = {
|
|
5238
5215
|
__typename?: 'RootMutation';
|
|
5239
5216
|
iosAppBuildCredentials: {
|
|
5240
5217
|
__typename?: 'IosAppBuildCredentialsMutation';
|
|
@@ -5328,11 +5305,11 @@ export declare type SetDistributionCertificateMutation = {
|
|
|
5328
5305
|
};
|
|
5329
5306
|
};
|
|
5330
5307
|
};
|
|
5331
|
-
export
|
|
5308
|
+
export type SetProvisioningProfileMutationVariables = Exact<{
|
|
5332
5309
|
iosAppBuildCredentialsId: Scalars['ID'];
|
|
5333
5310
|
provisioningProfileId: Scalars['ID'];
|
|
5334
5311
|
}>;
|
|
5335
|
-
export
|
|
5312
|
+
export type SetProvisioningProfileMutation = {
|
|
5336
5313
|
__typename?: 'RootMutation';
|
|
5337
5314
|
iosAppBuildCredentials: {
|
|
5338
5315
|
__typename?: 'IosAppBuildCredentialsMutation';
|
|
@@ -5426,12 +5403,12 @@ export declare type SetProvisioningProfileMutation = {
|
|
|
5426
5403
|
};
|
|
5427
5404
|
};
|
|
5428
5405
|
};
|
|
5429
|
-
export
|
|
5406
|
+
export type CreateIosAppCredentialsMutationVariables = Exact<{
|
|
5430
5407
|
iosAppCredentialsInput: IosAppCredentialsInput;
|
|
5431
5408
|
appId: Scalars['ID'];
|
|
5432
5409
|
appleAppIdentifierId: Scalars['ID'];
|
|
5433
5410
|
}>;
|
|
5434
|
-
export
|
|
5411
|
+
export type CreateIosAppCredentialsMutation = {
|
|
5435
5412
|
__typename?: 'RootMutation';
|
|
5436
5413
|
iosAppCredentials: {
|
|
5437
5414
|
__typename?: 'IosAppCredentialsMutation';
|
|
@@ -5627,11 +5604,11 @@ export declare type CreateIosAppCredentialsMutation = {
|
|
|
5627
5604
|
};
|
|
5628
5605
|
};
|
|
5629
5606
|
};
|
|
5630
|
-
export
|
|
5607
|
+
export type SetPushKeyMutationVariables = Exact<{
|
|
5631
5608
|
iosAppCredentialsId: Scalars['ID'];
|
|
5632
5609
|
pushKeyId: Scalars['ID'];
|
|
5633
5610
|
}>;
|
|
5634
|
-
export
|
|
5611
|
+
export type SetPushKeyMutation = {
|
|
5635
5612
|
__typename?: 'RootMutation';
|
|
5636
5613
|
iosAppCredentials: {
|
|
5637
5614
|
__typename?: 'IosAppCredentialsMutation';
|
|
@@ -5827,11 +5804,11 @@ export declare type SetPushKeyMutation = {
|
|
|
5827
5804
|
};
|
|
5828
5805
|
};
|
|
5829
5806
|
};
|
|
5830
|
-
export
|
|
5807
|
+
export type SetAppStoreConnectApiKeyForSubmissionsMutationVariables = Exact<{
|
|
5831
5808
|
iosAppCredentialsId: Scalars['ID'];
|
|
5832
5809
|
ascApiKeyId: Scalars['ID'];
|
|
5833
5810
|
}>;
|
|
5834
|
-
export
|
|
5811
|
+
export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
5835
5812
|
__typename?: 'RootMutation';
|
|
5836
5813
|
iosAppCredentials: {
|
|
5837
5814
|
__typename?: 'IosAppCredentialsMutation';
|
|
@@ -6027,10 +6004,10 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
6027
6004
|
};
|
|
6028
6005
|
};
|
|
6029
6006
|
};
|
|
6030
|
-
export
|
|
6007
|
+
export type AppStoreConnectApiKeyByAccountQueryVariables = Exact<{
|
|
6031
6008
|
accountName: Scalars['String'];
|
|
6032
6009
|
}>;
|
|
6033
|
-
export
|
|
6010
|
+
export type AppStoreConnectApiKeyByAccountQuery = {
|
|
6034
6011
|
__typename?: 'RootQuery';
|
|
6035
6012
|
account: {
|
|
6036
6013
|
__typename?: 'AccountQuery';
|
|
@@ -6056,11 +6033,11 @@ export declare type AppStoreConnectApiKeyByAccountQuery = {
|
|
|
6056
6033
|
};
|
|
6057
6034
|
};
|
|
6058
6035
|
};
|
|
6059
|
-
export
|
|
6036
|
+
export type AppleAppIdentifierByBundleIdQueryVariables = Exact<{
|
|
6060
6037
|
accountName: Scalars['String'];
|
|
6061
6038
|
bundleIdentifier: Scalars['String'];
|
|
6062
6039
|
}>;
|
|
6063
|
-
export
|
|
6040
|
+
export type AppleAppIdentifierByBundleIdQuery = {
|
|
6064
6041
|
__typename?: 'RootQuery';
|
|
6065
6042
|
account: {
|
|
6066
6043
|
__typename?: 'AccountQuery';
|
|
@@ -6075,11 +6052,11 @@ export declare type AppleAppIdentifierByBundleIdQuery = {
|
|
|
6075
6052
|
};
|
|
6076
6053
|
};
|
|
6077
6054
|
};
|
|
6078
|
-
export
|
|
6055
|
+
export type AppleDevicesByAppleTeamQueryVariables = Exact<{
|
|
6079
6056
|
accountId: Scalars['ID'];
|
|
6080
6057
|
appleTeamIdentifier: Scalars['String'];
|
|
6081
6058
|
}>;
|
|
6082
|
-
export
|
|
6059
|
+
export type AppleDevicesByAppleTeamQuery = {
|
|
6083
6060
|
__typename?: 'RootQuery';
|
|
6084
6061
|
appleTeam: {
|
|
6085
6062
|
__typename?: 'AppleTeamQuery';
|
|
@@ -6105,13 +6082,13 @@ export declare type AppleDevicesByAppleTeamQuery = {
|
|
|
6105
6082
|
} | null;
|
|
6106
6083
|
};
|
|
6107
6084
|
};
|
|
6108
|
-
export
|
|
6085
|
+
export type AppleDevicesByTeamIdentifierQueryVariables = Exact<{
|
|
6109
6086
|
accountName: Scalars['String'];
|
|
6110
6087
|
appleTeamIdentifier: Scalars['String'];
|
|
6111
6088
|
offset?: InputMaybe<Scalars['Int']>;
|
|
6112
6089
|
limit?: InputMaybe<Scalars['Int']>;
|
|
6113
6090
|
}>;
|
|
6114
|
-
export
|
|
6091
|
+
export type AppleDevicesByTeamIdentifierQuery = {
|
|
6115
6092
|
__typename?: 'RootQuery';
|
|
6116
6093
|
account: {
|
|
6117
6094
|
__typename?: 'AccountQuery';
|
|
@@ -6136,11 +6113,11 @@ export declare type AppleDevicesByTeamIdentifierQuery = {
|
|
|
6136
6113
|
};
|
|
6137
6114
|
};
|
|
6138
6115
|
};
|
|
6139
|
-
export
|
|
6116
|
+
export type AppleDevicesByIdentifierQueryVariables = Exact<{
|
|
6140
6117
|
accountName: Scalars['String'];
|
|
6141
6118
|
identifier: Scalars['String'];
|
|
6142
6119
|
}>;
|
|
6143
|
-
export
|
|
6120
|
+
export type AppleDevicesByIdentifierQuery = {
|
|
6144
6121
|
__typename?: 'RootQuery';
|
|
6145
6122
|
account: {
|
|
6146
6123
|
__typename?: 'AccountQuery';
|
|
@@ -6165,12 +6142,12 @@ export declare type AppleDevicesByIdentifierQuery = {
|
|
|
6165
6142
|
};
|
|
6166
6143
|
};
|
|
6167
6144
|
};
|
|
6168
|
-
export
|
|
6145
|
+
export type AppleDistributionCertificateByAppQueryVariables = Exact<{
|
|
6169
6146
|
projectFullName: Scalars['String'];
|
|
6170
6147
|
appleAppIdentifierId: Scalars['String'];
|
|
6171
6148
|
iosDistributionType: IosDistributionType;
|
|
6172
6149
|
}>;
|
|
6173
|
-
export
|
|
6150
|
+
export type AppleDistributionCertificateByAppQuery = {
|
|
6174
6151
|
__typename?: 'RootQuery';
|
|
6175
6152
|
app: {
|
|
6176
6153
|
__typename?: 'AppQuery';
|
|
@@ -6248,10 +6225,10 @@ export declare type AppleDistributionCertificateByAppQuery = {
|
|
|
6248
6225
|
};
|
|
6249
6226
|
};
|
|
6250
6227
|
};
|
|
6251
|
-
export
|
|
6228
|
+
export type AppleDistributionCertificateByAccountQueryVariables = Exact<{
|
|
6252
6229
|
accountName: Scalars['String'];
|
|
6253
6230
|
}>;
|
|
6254
|
-
export
|
|
6231
|
+
export type AppleDistributionCertificateByAccountQuery = {
|
|
6255
6232
|
__typename?: 'RootQuery';
|
|
6256
6233
|
account: {
|
|
6257
6234
|
__typename?: 'AccountQuery';
|
|
@@ -6321,12 +6298,12 @@ export declare type AppleDistributionCertificateByAccountQuery = {
|
|
|
6321
6298
|
};
|
|
6322
6299
|
};
|
|
6323
6300
|
};
|
|
6324
|
-
export
|
|
6301
|
+
export type AppleProvisioningProfilesByAppQueryVariables = Exact<{
|
|
6325
6302
|
projectFullName: Scalars['String'];
|
|
6326
6303
|
appleAppIdentifierId: Scalars['String'];
|
|
6327
6304
|
iosDistributionType: IosDistributionType;
|
|
6328
6305
|
}>;
|
|
6329
|
-
export
|
|
6306
|
+
export type AppleProvisioningProfilesByAppQuery = {
|
|
6330
6307
|
__typename?: 'RootQuery';
|
|
6331
6308
|
app: {
|
|
6332
6309
|
__typename?: 'AppQuery';
|
|
@@ -6372,10 +6349,10 @@ export declare type AppleProvisioningProfilesByAppQuery = {
|
|
|
6372
6349
|
};
|
|
6373
6350
|
};
|
|
6374
6351
|
};
|
|
6375
|
-
export
|
|
6352
|
+
export type ApplePushKeyByAccountQueryVariables = Exact<{
|
|
6376
6353
|
accountName: Scalars['String'];
|
|
6377
6354
|
}>;
|
|
6378
|
-
export
|
|
6355
|
+
export type ApplePushKeyByAccountQuery = {
|
|
6379
6356
|
__typename?: 'RootQuery';
|
|
6380
6357
|
account: {
|
|
6381
6358
|
__typename?: 'AccountQuery';
|
|
@@ -6431,12 +6408,12 @@ export declare type ApplePushKeyByAccountQuery = {
|
|
|
6431
6408
|
};
|
|
6432
6409
|
};
|
|
6433
6410
|
};
|
|
6434
|
-
export
|
|
6411
|
+
export type AppleTeamsByAccountNameQueryVariables = Exact<{
|
|
6435
6412
|
accountName: Scalars['String'];
|
|
6436
6413
|
offset?: InputMaybe<Scalars['Int']>;
|
|
6437
6414
|
limit?: InputMaybe<Scalars['Int']>;
|
|
6438
6415
|
}>;
|
|
6439
|
-
export
|
|
6416
|
+
export type AppleTeamsByAccountNameQuery = {
|
|
6440
6417
|
__typename?: 'RootQuery';
|
|
6441
6418
|
account: {
|
|
6442
6419
|
__typename?: 'AccountQuery';
|
|
@@ -6452,11 +6429,11 @@ export declare type AppleTeamsByAccountNameQuery = {
|
|
|
6452
6429
|
};
|
|
6453
6430
|
};
|
|
6454
6431
|
};
|
|
6455
|
-
export
|
|
6432
|
+
export type AppleTeamByIdentifierQueryVariables = Exact<{
|
|
6456
6433
|
accountId: Scalars['ID'];
|
|
6457
6434
|
appleTeamIdentifier: Scalars['String'];
|
|
6458
6435
|
}>;
|
|
6459
|
-
export
|
|
6436
|
+
export type AppleTeamByIdentifierQuery = {
|
|
6460
6437
|
__typename?: 'RootQuery';
|
|
6461
6438
|
appleTeam: {
|
|
6462
6439
|
__typename?: 'AppleTeamQuery';
|
|
@@ -6468,12 +6445,12 @@ export declare type AppleTeamByIdentifierQuery = {
|
|
|
6468
6445
|
} | null;
|
|
6469
6446
|
};
|
|
6470
6447
|
};
|
|
6471
|
-
export
|
|
6448
|
+
export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQueryVariables = Exact<{
|
|
6472
6449
|
projectFullName: Scalars['String'];
|
|
6473
6450
|
appleAppIdentifierId: Scalars['String'];
|
|
6474
6451
|
iosDistributionType: IosDistributionType;
|
|
6475
6452
|
}>;
|
|
6476
|
-
export
|
|
6453
|
+
export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuery = {
|
|
6477
6454
|
__typename?: 'RootQuery';
|
|
6478
6455
|
app: {
|
|
6479
6456
|
__typename?: 'AppQuery';
|
|
@@ -6575,12 +6552,12 @@ export declare type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuer
|
|
|
6575
6552
|
};
|
|
6576
6553
|
};
|
|
6577
6554
|
};
|
|
6578
|
-
export
|
|
6555
|
+
export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQueryVariables = Exact<{
|
|
6579
6556
|
projectFullName: Scalars['String'];
|
|
6580
6557
|
appleAppIdentifierId: Scalars['String'];
|
|
6581
6558
|
iosDistributionType?: InputMaybe<IosDistributionType>;
|
|
6582
6559
|
}>;
|
|
6583
|
-
export
|
|
6560
|
+
export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
6584
6561
|
__typename?: 'RootQuery';
|
|
6585
6562
|
app: {
|
|
6586
6563
|
__typename?: 'AppQuery';
|
|
@@ -6780,11 +6757,11 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
|
|
|
6780
6757
|
};
|
|
6781
6758
|
};
|
|
6782
6759
|
};
|
|
6783
|
-
export
|
|
6760
|
+
export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQueryVariables = Exact<{
|
|
6784
6761
|
projectFullName: Scalars['String'];
|
|
6785
6762
|
appleAppIdentifierId: Scalars['String'];
|
|
6786
6763
|
}>;
|
|
6787
|
-
export
|
|
6764
|
+
export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
6788
6765
|
__typename?: 'RootQuery';
|
|
6789
6766
|
app: {
|
|
6790
6767
|
__typename?: 'AppQuery';
|
|
@@ -6984,10 +6961,10 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
|
|
|
6984
6961
|
};
|
|
6985
6962
|
};
|
|
6986
6963
|
};
|
|
6987
|
-
export
|
|
6964
|
+
export type CreateAppMutationVariables = Exact<{
|
|
6988
6965
|
appInput: AppInput;
|
|
6989
6966
|
}>;
|
|
6990
|
-
export
|
|
6967
|
+
export type CreateAppMutation = {
|
|
6991
6968
|
__typename?: 'RootMutation';
|
|
6992
6969
|
app?: {
|
|
6993
6970
|
__typename?: 'AppMutation';
|
|
@@ -6997,10 +6974,10 @@ export declare type CreateAppMutation = {
|
|
|
6997
6974
|
};
|
|
6998
6975
|
} | null;
|
|
6999
6976
|
};
|
|
7000
|
-
export
|
|
6977
|
+
export type CreateAppVersionMutationVariables = Exact<{
|
|
7001
6978
|
appVersionInput: AppVersionInput;
|
|
7002
6979
|
}>;
|
|
7003
|
-
export
|
|
6980
|
+
export type CreateAppVersionMutation = {
|
|
7004
6981
|
__typename?: 'RootMutation';
|
|
7005
6982
|
appVersion: {
|
|
7006
6983
|
__typename?: 'AppVersionMutation';
|
|
@@ -7010,13 +6987,13 @@ export declare type CreateAppVersionMutation = {
|
|
|
7010
6987
|
};
|
|
7011
6988
|
};
|
|
7012
6989
|
};
|
|
7013
|
-
export
|
|
6990
|
+
export type CreateAndroidBuildMutationVariables = Exact<{
|
|
7014
6991
|
appId: Scalars['ID'];
|
|
7015
6992
|
job: AndroidJobInput;
|
|
7016
6993
|
metadata?: InputMaybe<BuildMetadataInput>;
|
|
7017
6994
|
buildParams?: InputMaybe<BuildParamsInput>;
|
|
7018
6995
|
}>;
|
|
7019
|
-
export
|
|
6996
|
+
export type CreateAndroidBuildMutation = {
|
|
7020
6997
|
__typename?: 'RootMutation';
|
|
7021
6998
|
build: {
|
|
7022
6999
|
__typename?: 'BuildMutation';
|
|
@@ -7095,13 +7072,13 @@ export declare type CreateAndroidBuildMutation = {
|
|
|
7095
7072
|
};
|
|
7096
7073
|
};
|
|
7097
7074
|
};
|
|
7098
|
-
export
|
|
7075
|
+
export type CreateIosBuildMutationVariables = Exact<{
|
|
7099
7076
|
appId: Scalars['ID'];
|
|
7100
7077
|
job: IosJobInput;
|
|
7101
7078
|
metadata?: InputMaybe<BuildMetadataInput>;
|
|
7102
7079
|
buildParams?: InputMaybe<BuildParamsInput>;
|
|
7103
7080
|
}>;
|
|
7104
|
-
export
|
|
7081
|
+
export type CreateIosBuildMutation = {
|
|
7105
7082
|
__typename?: 'RootMutation';
|
|
7106
7083
|
build: {
|
|
7107
7084
|
__typename?: 'BuildMutation';
|
|
@@ -7180,11 +7157,11 @@ export declare type CreateIosBuildMutation = {
|
|
|
7180
7157
|
};
|
|
7181
7158
|
};
|
|
7182
7159
|
};
|
|
7183
|
-
export
|
|
7160
|
+
export type RetryIosBuildMutationVariables = Exact<{
|
|
7184
7161
|
buildId: Scalars['ID'];
|
|
7185
7162
|
jobOverrides: IosJobOverridesInput;
|
|
7186
7163
|
}>;
|
|
7187
|
-
export
|
|
7164
|
+
export type RetryIosBuildMutation = {
|
|
7188
7165
|
__typename?: 'RootMutation';
|
|
7189
7166
|
build: {
|
|
7190
7167
|
__typename?: 'BuildMutation';
|
|
@@ -7255,11 +7232,11 @@ export declare type RetryIosBuildMutation = {
|
|
|
7255
7232
|
};
|
|
7256
7233
|
};
|
|
7257
7234
|
};
|
|
7258
|
-
export
|
|
7235
|
+
export type CreateEnvironmentSecretForAccountMutationVariables = Exact<{
|
|
7259
7236
|
input: CreateEnvironmentSecretInput;
|
|
7260
7237
|
accountId: Scalars['String'];
|
|
7261
7238
|
}>;
|
|
7262
|
-
export
|
|
7239
|
+
export type CreateEnvironmentSecretForAccountMutation = {
|
|
7263
7240
|
__typename?: 'RootMutation';
|
|
7264
7241
|
environmentSecret: {
|
|
7265
7242
|
__typename?: 'EnvironmentSecretMutation';
|
|
@@ -7272,11 +7249,11 @@ export declare type CreateEnvironmentSecretForAccountMutation = {
|
|
|
7272
7249
|
};
|
|
7273
7250
|
};
|
|
7274
7251
|
};
|
|
7275
|
-
export
|
|
7252
|
+
export type CreateEnvironmentSecretForAppMutationVariables = Exact<{
|
|
7276
7253
|
input: CreateEnvironmentSecretInput;
|
|
7277
7254
|
appId: Scalars['String'];
|
|
7278
7255
|
}>;
|
|
7279
|
-
export
|
|
7256
|
+
export type CreateEnvironmentSecretForAppMutation = {
|
|
7280
7257
|
__typename?: 'RootMutation';
|
|
7281
7258
|
environmentSecret: {
|
|
7282
7259
|
__typename?: 'EnvironmentSecretMutation';
|
|
@@ -7289,10 +7266,10 @@ export declare type CreateEnvironmentSecretForAppMutation = {
|
|
|
7289
7266
|
};
|
|
7290
7267
|
};
|
|
7291
7268
|
};
|
|
7292
|
-
export
|
|
7269
|
+
export type DeleteEnvironmentSecretMutationVariables = Exact<{
|
|
7293
7270
|
id: Scalars['String'];
|
|
7294
7271
|
}>;
|
|
7295
|
-
export
|
|
7272
|
+
export type DeleteEnvironmentSecretMutation = {
|
|
7296
7273
|
__typename?: 'RootMutation';
|
|
7297
7274
|
environmentSecret: {
|
|
7298
7275
|
__typename?: 'EnvironmentSecretMutation';
|
|
@@ -7302,10 +7279,10 @@ export declare type DeleteEnvironmentSecretMutation = {
|
|
|
7302
7279
|
};
|
|
7303
7280
|
};
|
|
7304
7281
|
};
|
|
7305
|
-
export
|
|
7282
|
+
export type CreateKeystoreGenerationUrlMutationVariables = Exact<{
|
|
7306
7283
|
[key: string]: never;
|
|
7307
7284
|
}>;
|
|
7308
|
-
export
|
|
7285
|
+
export type CreateKeystoreGenerationUrlMutation = {
|
|
7309
7286
|
__typename?: 'RootMutation';
|
|
7310
7287
|
keystoreGenerationUrl: {
|
|
7311
7288
|
__typename?: 'KeystoreGenerationUrlMutation';
|
|
@@ -7316,10 +7293,10 @@ export declare type CreateKeystoreGenerationUrlMutation = {
|
|
|
7316
7293
|
};
|
|
7317
7294
|
};
|
|
7318
7295
|
};
|
|
7319
|
-
export
|
|
7296
|
+
export type GetSignedUploadMutationVariables = Exact<{
|
|
7320
7297
|
contentTypes: Array<Scalars['String']> | Scalars['String'];
|
|
7321
7298
|
}>;
|
|
7322
|
-
export
|
|
7299
|
+
export type GetSignedUploadMutation = {
|
|
7323
7300
|
__typename?: 'RootMutation';
|
|
7324
7301
|
asset: {
|
|
7325
7302
|
__typename?: 'AssetMutation';
|
|
@@ -7329,10 +7306,10 @@ export declare type GetSignedUploadMutation = {
|
|
|
7329
7306
|
};
|
|
7330
7307
|
};
|
|
7331
7308
|
};
|
|
7332
|
-
export
|
|
7309
|
+
export type UpdatePublishMutationVariables = Exact<{
|
|
7333
7310
|
publishUpdateGroupsInput: Array<PublishUpdateGroupInput> | PublishUpdateGroupInput;
|
|
7334
7311
|
}>;
|
|
7335
|
-
export
|
|
7312
|
+
export type UpdatePublishMutation = {
|
|
7336
7313
|
__typename?: 'RootMutation';
|
|
7337
7314
|
updateBranch: {
|
|
7338
7315
|
__typename?: 'UpdateBranchMutation';
|
|
@@ -7373,11 +7350,11 @@ export declare type UpdatePublishMutation = {
|
|
|
7373
7350
|
}>;
|
|
7374
7351
|
};
|
|
7375
7352
|
};
|
|
7376
|
-
export
|
|
7353
|
+
export type SetCodeSigningInfoMutationVariables = Exact<{
|
|
7377
7354
|
updateId: Scalars['ID'];
|
|
7378
7355
|
codeSigningInfo: CodeSigningInfoInput;
|
|
7379
7356
|
}>;
|
|
7380
|
-
export
|
|
7357
|
+
export type SetCodeSigningInfoMutation = {
|
|
7381
7358
|
__typename?: 'RootMutation';
|
|
7382
7359
|
update: {
|
|
7383
7360
|
__typename?: 'UpdateMutation';
|
|
@@ -7395,13 +7372,13 @@ export declare type SetCodeSigningInfoMutation = {
|
|
|
7395
7372
|
};
|
|
7396
7373
|
};
|
|
7397
7374
|
};
|
|
7398
|
-
export
|
|
7375
|
+
export type CreateAndroidSubmissionMutationVariables = Exact<{
|
|
7399
7376
|
appId: Scalars['ID'];
|
|
7400
7377
|
config: AndroidSubmissionConfigInput;
|
|
7401
7378
|
submittedBuildId?: InputMaybe<Scalars['ID']>;
|
|
7402
7379
|
archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;
|
|
7403
7380
|
}>;
|
|
7404
|
-
export
|
|
7381
|
+
export type CreateAndroidSubmissionMutation = {
|
|
7405
7382
|
__typename?: 'RootMutation';
|
|
7406
7383
|
submission: {
|
|
7407
7384
|
__typename?: 'SubmissionMutation';
|
|
@@ -7444,13 +7421,13 @@ export declare type CreateAndroidSubmissionMutation = {
|
|
|
7444
7421
|
};
|
|
7445
7422
|
};
|
|
7446
7423
|
};
|
|
7447
|
-
export
|
|
7424
|
+
export type CreateIosSubmissionMutationVariables = Exact<{
|
|
7448
7425
|
appId: Scalars['ID'];
|
|
7449
7426
|
config: IosSubmissionConfigInput;
|
|
7450
7427
|
submittedBuildId?: InputMaybe<Scalars['ID']>;
|
|
7451
7428
|
archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;
|
|
7452
7429
|
}>;
|
|
7453
|
-
export
|
|
7430
|
+
export type CreateIosSubmissionMutation = {
|
|
7454
7431
|
__typename?: 'RootMutation';
|
|
7455
7432
|
submission: {
|
|
7456
7433
|
__typename?: 'SubmissionMutation';
|
|
@@ -7493,21 +7470,21 @@ export declare type CreateIosSubmissionMutation = {
|
|
|
7493
7470
|
};
|
|
7494
7471
|
};
|
|
7495
7472
|
};
|
|
7496
|
-
export
|
|
7473
|
+
export type CreateUploadSessionMutationVariables = Exact<{
|
|
7497
7474
|
type: UploadSessionType;
|
|
7498
7475
|
}>;
|
|
7499
|
-
export
|
|
7476
|
+
export type CreateUploadSessionMutation = {
|
|
7500
7477
|
__typename?: 'RootMutation';
|
|
7501
7478
|
uploadSession: {
|
|
7502
7479
|
__typename?: 'UploadSession';
|
|
7503
7480
|
createUploadSession: any;
|
|
7504
7481
|
};
|
|
7505
7482
|
};
|
|
7506
|
-
export
|
|
7483
|
+
export type CreateWebhookMutationVariables = Exact<{
|
|
7507
7484
|
appId: Scalars['String'];
|
|
7508
7485
|
webhookInput: WebhookInput;
|
|
7509
7486
|
}>;
|
|
7510
|
-
export
|
|
7487
|
+
export type CreateWebhookMutation = {
|
|
7511
7488
|
__typename?: 'RootMutation';
|
|
7512
7489
|
webhook: {
|
|
7513
7490
|
__typename?: 'WebhookMutation';
|
|
@@ -7521,11 +7498,11 @@ export declare type CreateWebhookMutation = {
|
|
|
7521
7498
|
};
|
|
7522
7499
|
};
|
|
7523
7500
|
};
|
|
7524
|
-
export
|
|
7501
|
+
export type UpdateWebhookMutationVariables = Exact<{
|
|
7525
7502
|
webhookId: Scalars['ID'];
|
|
7526
7503
|
webhookInput: WebhookInput;
|
|
7527
7504
|
}>;
|
|
7528
|
-
export
|
|
7505
|
+
export type UpdateWebhookMutation = {
|
|
7529
7506
|
__typename?: 'RootMutation';
|
|
7530
7507
|
webhook: {
|
|
7531
7508
|
__typename?: 'WebhookMutation';
|
|
@@ -7539,10 +7516,10 @@ export declare type UpdateWebhookMutation = {
|
|
|
7539
7516
|
};
|
|
7540
7517
|
};
|
|
7541
7518
|
};
|
|
7542
|
-
export
|
|
7519
|
+
export type DeleteWebhookMutationVariables = Exact<{
|
|
7543
7520
|
webhookId: Scalars['ID'];
|
|
7544
7521
|
}>;
|
|
7545
|
-
export
|
|
7522
|
+
export type DeleteWebhookMutation = {
|
|
7546
7523
|
__typename?: 'RootMutation';
|
|
7547
7524
|
webhook: {
|
|
7548
7525
|
__typename?: 'WebhookMutation';
|
|
@@ -7552,10 +7529,10 @@ export declare type DeleteWebhookMutation = {
|
|
|
7552
7529
|
};
|
|
7553
7530
|
};
|
|
7554
7531
|
};
|
|
7555
|
-
export
|
|
7532
|
+
export type AppByIdQueryVariables = Exact<{
|
|
7556
7533
|
appId: Scalars['String'];
|
|
7557
7534
|
}>;
|
|
7558
|
-
export
|
|
7535
|
+
export type AppByIdQuery = {
|
|
7559
7536
|
__typename?: 'RootQuery';
|
|
7560
7537
|
app: {
|
|
7561
7538
|
__typename?: 'AppQuery';
|
|
@@ -7586,10 +7563,10 @@ export declare type AppByIdQuery = {
|
|
|
7586
7563
|
};
|
|
7587
7564
|
};
|
|
7588
7565
|
};
|
|
7589
|
-
export
|
|
7566
|
+
export type AppByFullNameQueryVariables = Exact<{
|
|
7590
7567
|
fullName: Scalars['String'];
|
|
7591
7568
|
}>;
|
|
7592
|
-
export
|
|
7569
|
+
export type AppByFullNameQuery = {
|
|
7593
7570
|
__typename?: 'RootQuery';
|
|
7594
7571
|
app: {
|
|
7595
7572
|
__typename?: 'AppQuery';
|
|
@@ -7620,12 +7597,12 @@ export declare type AppByFullNameQuery = {
|
|
|
7620
7597
|
};
|
|
7621
7598
|
};
|
|
7622
7599
|
};
|
|
7623
|
-
export
|
|
7600
|
+
export type LatestAppVersionQueryVariables = Exact<{
|
|
7624
7601
|
appId: Scalars['String'];
|
|
7625
7602
|
platform: AppPlatform;
|
|
7626
7603
|
applicationIdentifier: Scalars['String'];
|
|
7627
7604
|
}>;
|
|
7628
|
-
export
|
|
7605
|
+
export type LatestAppVersionQuery = {
|
|
7629
7606
|
__typename?: 'RootQuery';
|
|
7630
7607
|
app: {
|
|
7631
7608
|
__typename?: 'AppQuery';
|
|
@@ -7641,11 +7618,11 @@ export declare type LatestAppVersionQuery = {
|
|
|
7641
7618
|
};
|
|
7642
7619
|
};
|
|
7643
7620
|
};
|
|
7644
|
-
export
|
|
7621
|
+
export type ViewBranchQueryVariables = Exact<{
|
|
7645
7622
|
appId: Scalars['String'];
|
|
7646
7623
|
name: Scalars['String'];
|
|
7647
7624
|
}>;
|
|
7648
|
-
export
|
|
7625
|
+
export type ViewBranchQuery = {
|
|
7649
7626
|
__typename?: 'RootQuery';
|
|
7650
7627
|
app: {
|
|
7651
7628
|
__typename?: 'AppQuery';
|
|
@@ -7660,12 +7637,12 @@ export declare type ViewBranchQuery = {
|
|
|
7660
7637
|
};
|
|
7661
7638
|
};
|
|
7662
7639
|
};
|
|
7663
|
-
export
|
|
7640
|
+
export type BranchesByAppQueryVariables = Exact<{
|
|
7664
7641
|
appId: Scalars['String'];
|
|
7665
7642
|
limit: Scalars['Int'];
|
|
7666
7643
|
offset: Scalars['Int'];
|
|
7667
7644
|
}>;
|
|
7668
|
-
export
|
|
7645
|
+
export type BranchesByAppQuery = {
|
|
7669
7646
|
__typename?: 'RootQuery';
|
|
7670
7647
|
app: {
|
|
7671
7648
|
__typename?: 'AppQuery';
|
|
@@ -7715,13 +7692,13 @@ export declare type BranchesByAppQuery = {
|
|
|
7715
7692
|
};
|
|
7716
7693
|
};
|
|
7717
7694
|
};
|
|
7718
|
-
export
|
|
7695
|
+
export type ViewBranchesOnUpdateChannelQueryVariables = Exact<{
|
|
7719
7696
|
appId: Scalars['String'];
|
|
7720
7697
|
channelName: Scalars['String'];
|
|
7721
7698
|
offset: Scalars['Int'];
|
|
7722
7699
|
limit: Scalars['Int'];
|
|
7723
7700
|
}>;
|
|
7724
|
-
export
|
|
7701
|
+
export type ViewBranchesOnUpdateChannelQuery = {
|
|
7725
7702
|
__typename?: 'RootQuery';
|
|
7726
7703
|
app: {
|
|
7727
7704
|
__typename?: 'AppQuery';
|
|
@@ -7775,10 +7752,10 @@ export declare type ViewBranchesOnUpdateChannelQuery = {
|
|
|
7775
7752
|
};
|
|
7776
7753
|
};
|
|
7777
7754
|
};
|
|
7778
|
-
export
|
|
7755
|
+
export type BuildsByIdQueryVariables = Exact<{
|
|
7779
7756
|
buildId: Scalars['ID'];
|
|
7780
7757
|
}>;
|
|
7781
|
-
export
|
|
7758
|
+
export type BuildsByIdQuery = {
|
|
7782
7759
|
__typename?: 'RootQuery';
|
|
7783
7760
|
builds: {
|
|
7784
7761
|
__typename?: 'BuildQuery';
|
|
@@ -7849,10 +7826,10 @@ export declare type BuildsByIdQuery = {
|
|
|
7849
7826
|
};
|
|
7850
7827
|
};
|
|
7851
7828
|
};
|
|
7852
|
-
export
|
|
7829
|
+
export type BuildsWithSubmissionsByIdQueryVariables = Exact<{
|
|
7853
7830
|
buildId: Scalars['ID'];
|
|
7854
7831
|
}>;
|
|
7855
|
-
export
|
|
7832
|
+
export type BuildsWithSubmissionsByIdQuery = {
|
|
7856
7833
|
__typename?: 'RootQuery';
|
|
7857
7834
|
builds: {
|
|
7858
7835
|
__typename?: 'BuildQuery';
|
|
@@ -7957,13 +7934,13 @@ export declare type BuildsWithSubmissionsByIdQuery = {
|
|
|
7957
7934
|
};
|
|
7958
7935
|
};
|
|
7959
7936
|
};
|
|
7960
|
-
export
|
|
7937
|
+
export type ViewBuildsOnAppQueryVariables = Exact<{
|
|
7961
7938
|
appId: Scalars['String'];
|
|
7962
7939
|
offset: Scalars['Int'];
|
|
7963
7940
|
limit: Scalars['Int'];
|
|
7964
7941
|
filter?: InputMaybe<BuildFilter>;
|
|
7965
7942
|
}>;
|
|
7966
|
-
export
|
|
7943
|
+
export type ViewBuildsOnAppQuery = {
|
|
7967
7944
|
__typename?: 'RootQuery';
|
|
7968
7945
|
app: {
|
|
7969
7946
|
__typename?: 'AppQuery';
|
|
@@ -8038,11 +8015,11 @@ export declare type ViewBuildsOnAppQuery = {
|
|
|
8038
8015
|
};
|
|
8039
8016
|
};
|
|
8040
8017
|
};
|
|
8041
|
-
export
|
|
8018
|
+
export type ViewUpdateChannelOnAppQueryVariables = Exact<{
|
|
8042
8019
|
appId: Scalars['String'];
|
|
8043
8020
|
channelName: Scalars['String'];
|
|
8044
8021
|
}>;
|
|
8045
|
-
export
|
|
8022
|
+
export type ViewUpdateChannelOnAppQuery = {
|
|
8046
8023
|
__typename?: 'RootQuery';
|
|
8047
8024
|
app: {
|
|
8048
8025
|
__typename?: 'AppQuery';
|
|
@@ -8099,12 +8076,12 @@ export declare type ViewUpdateChannelOnAppQuery = {
|
|
|
8099
8076
|
};
|
|
8100
8077
|
};
|
|
8101
8078
|
};
|
|
8102
|
-
export
|
|
8079
|
+
export type ViewUpdateChannelsOnAppQueryVariables = Exact<{
|
|
8103
8080
|
appId: Scalars['String'];
|
|
8104
8081
|
offset: Scalars['Int'];
|
|
8105
8082
|
limit: Scalars['Int'];
|
|
8106
8083
|
}>;
|
|
8107
|
-
export
|
|
8084
|
+
export type ViewUpdateChannelsOnAppQuery = {
|
|
8108
8085
|
__typename?: 'RootQuery';
|
|
8109
8086
|
app: {
|
|
8110
8087
|
__typename?: 'AppQuery';
|
|
@@ -8160,10 +8137,10 @@ export declare type ViewUpdateChannelsOnAppQuery = {
|
|
|
8160
8137
|
};
|
|
8161
8138
|
};
|
|
8162
8139
|
};
|
|
8163
|
-
export
|
|
8140
|
+
export type EnvironmentSecretsByAppIdQueryVariables = Exact<{
|
|
8164
8141
|
appId: Scalars['String'];
|
|
8165
8142
|
}>;
|
|
8166
|
-
export
|
|
8143
|
+
export type EnvironmentSecretsByAppIdQuery = {
|
|
8167
8144
|
__typename?: 'RootQuery';
|
|
8168
8145
|
app: {
|
|
8169
8146
|
__typename?: 'AppQuery';
|
|
@@ -8191,10 +8168,10 @@ export declare type EnvironmentSecretsByAppIdQuery = {
|
|
|
8191
8168
|
};
|
|
8192
8169
|
};
|
|
8193
8170
|
};
|
|
8194
|
-
export
|
|
8171
|
+
export type GetAssetMetadataQueryVariables = Exact<{
|
|
8195
8172
|
storageKeys: Array<Scalars['String']> | Scalars['String'];
|
|
8196
8173
|
}>;
|
|
8197
|
-
export
|
|
8174
|
+
export type GetAssetMetadataQuery = {
|
|
8198
8175
|
__typename?: 'RootQuery';
|
|
8199
8176
|
asset: {
|
|
8200
8177
|
__typename?: 'AssetQuery';
|
|
@@ -8205,10 +8182,10 @@ export declare type GetAssetMetadataQuery = {
|
|
|
8205
8182
|
}>;
|
|
8206
8183
|
};
|
|
8207
8184
|
};
|
|
8208
|
-
export
|
|
8185
|
+
export type GetAssetLimitPerUpdateGroupForAppQueryVariables = Exact<{
|
|
8209
8186
|
appId: Scalars['String'];
|
|
8210
8187
|
}>;
|
|
8211
|
-
export
|
|
8188
|
+
export type GetAssetLimitPerUpdateGroupForAppQuery = {
|
|
8212
8189
|
__typename?: 'RootQuery';
|
|
8213
8190
|
app: {
|
|
8214
8191
|
__typename?: 'AppQuery';
|
|
@@ -8219,10 +8196,10 @@ export declare type GetAssetLimitPerUpdateGroupForAppQuery = {
|
|
|
8219
8196
|
};
|
|
8220
8197
|
};
|
|
8221
8198
|
};
|
|
8222
|
-
export
|
|
8199
|
+
export type StatuspageServiceByServiceNamesQueryVariables = Exact<{
|
|
8223
8200
|
serviceNames: Array<StatuspageServiceName> | StatuspageServiceName;
|
|
8224
8201
|
}>;
|
|
8225
|
-
export
|
|
8202
|
+
export type StatuspageServiceByServiceNamesQuery = {
|
|
8226
8203
|
__typename?: 'RootQuery';
|
|
8227
8204
|
statuspageService: {
|
|
8228
8205
|
__typename?: 'StatuspageServiceQuery';
|
|
@@ -8242,10 +8219,10 @@ export declare type StatuspageServiceByServiceNamesQuery = {
|
|
|
8242
8219
|
}>;
|
|
8243
8220
|
};
|
|
8244
8221
|
};
|
|
8245
|
-
export
|
|
8222
|
+
export type SubmissionsByIdQueryVariables = Exact<{
|
|
8246
8223
|
submissionId: Scalars['ID'];
|
|
8247
8224
|
}>;
|
|
8248
|
-
export
|
|
8225
|
+
export type SubmissionsByIdQuery = {
|
|
8249
8226
|
__typename?: 'RootQuery';
|
|
8250
8227
|
submissions: {
|
|
8251
8228
|
__typename?: 'SubmissionQuery';
|
|
@@ -8285,14 +8262,14 @@ export declare type SubmissionsByIdQuery = {
|
|
|
8285
8262
|
};
|
|
8286
8263
|
};
|
|
8287
8264
|
};
|
|
8288
|
-
export
|
|
8265
|
+
export type GetAllSubmissionsForAppQueryVariables = Exact<{
|
|
8289
8266
|
appId: Scalars['String'];
|
|
8290
8267
|
offset: Scalars['Int'];
|
|
8291
8268
|
limit: Scalars['Int'];
|
|
8292
8269
|
status?: InputMaybe<SubmissionStatus>;
|
|
8293
8270
|
platform?: InputMaybe<AppPlatform>;
|
|
8294
8271
|
}>;
|
|
8295
|
-
export
|
|
8272
|
+
export type GetAllSubmissionsForAppQuery = {
|
|
8296
8273
|
__typename?: 'RootQuery';
|
|
8297
8274
|
app: {
|
|
8298
8275
|
__typename?: 'AppQuery';
|
|
@@ -8336,10 +8313,10 @@ export declare type GetAllSubmissionsForAppQuery = {
|
|
|
8336
8313
|
};
|
|
8337
8314
|
};
|
|
8338
8315
|
};
|
|
8339
|
-
export
|
|
8316
|
+
export type ViewUpdatesByGroupQueryVariables = Exact<{
|
|
8340
8317
|
groupId: Scalars['ID'];
|
|
8341
8318
|
}>;
|
|
8342
|
-
export
|
|
8319
|
+
export type ViewUpdatesByGroupQuery = {
|
|
8343
8320
|
__typename?: 'RootQuery';
|
|
8344
8321
|
updatesByGroup: Array<{
|
|
8345
8322
|
__typename?: 'Update';
|
|
@@ -8377,14 +8354,14 @@ export declare type ViewUpdatesByGroupQuery = {
|
|
|
8377
8354
|
} | null;
|
|
8378
8355
|
}>;
|
|
8379
8356
|
};
|
|
8380
|
-
export
|
|
8357
|
+
export type ViewUpdateGroupsOnBranchQueryVariables = Exact<{
|
|
8381
8358
|
appId: Scalars['String'];
|
|
8382
8359
|
branchName: Scalars['String'];
|
|
8383
8360
|
limit: Scalars['Int'];
|
|
8384
8361
|
offset: Scalars['Int'];
|
|
8385
8362
|
filter?: InputMaybe<UpdatesFilter>;
|
|
8386
8363
|
}>;
|
|
8387
|
-
export
|
|
8364
|
+
export type ViewUpdateGroupsOnBranchQuery = {
|
|
8388
8365
|
__typename?: 'RootQuery';
|
|
8389
8366
|
app: {
|
|
8390
8367
|
__typename?: 'AppQuery';
|
|
@@ -8433,13 +8410,13 @@ export declare type ViewUpdateGroupsOnBranchQuery = {
|
|
|
8433
8410
|
};
|
|
8434
8411
|
};
|
|
8435
8412
|
};
|
|
8436
|
-
export
|
|
8413
|
+
export type ViewUpdateGroupsOnAppQueryVariables = Exact<{
|
|
8437
8414
|
appId: Scalars['String'];
|
|
8438
8415
|
limit: Scalars['Int'];
|
|
8439
8416
|
offset: Scalars['Int'];
|
|
8440
8417
|
filter?: InputMaybe<UpdatesFilter>;
|
|
8441
8418
|
}>;
|
|
8442
|
-
export
|
|
8419
|
+
export type ViewUpdateGroupsOnAppQuery = {
|
|
8443
8420
|
__typename?: 'RootQuery';
|
|
8444
8421
|
app: {
|
|
8445
8422
|
__typename?: 'AppQuery';
|
|
@@ -8484,10 +8461,10 @@ export declare type ViewUpdateGroupsOnAppQuery = {
|
|
|
8484
8461
|
};
|
|
8485
8462
|
};
|
|
8486
8463
|
};
|
|
8487
|
-
export
|
|
8464
|
+
export type CurrentUserQueryVariables = Exact<{
|
|
8488
8465
|
[key: string]: never;
|
|
8489
8466
|
}>;
|
|
8490
|
-
export
|
|
8467
|
+
export type CurrentUserQuery = {
|
|
8491
8468
|
__typename?: 'RootQuery';
|
|
8492
8469
|
meActor?: {
|
|
8493
8470
|
__typename: 'Robot';
|
|
@@ -8516,6 +8493,7 @@ export declare type CurrentUserQuery = {
|
|
|
8516
8493
|
}>;
|
|
8517
8494
|
} | {
|
|
8518
8495
|
__typename: 'SSOUser';
|
|
8496
|
+
username: string;
|
|
8519
8497
|
id: string;
|
|
8520
8498
|
featureGates: any;
|
|
8521
8499
|
isExpoAdmin: boolean;
|
|
@@ -8584,11 +8562,11 @@ export declare type CurrentUserQuery = {
|
|
|
8584
8562
|
}>;
|
|
8585
8563
|
} | null;
|
|
8586
8564
|
};
|
|
8587
|
-
export
|
|
8565
|
+
export type WebhooksByAppIdQueryVariables = Exact<{
|
|
8588
8566
|
appId: Scalars['String'];
|
|
8589
8567
|
webhookFilter?: InputMaybe<WebhookFilter>;
|
|
8590
8568
|
}>;
|
|
8591
|
-
export
|
|
8569
|
+
export type WebhooksByAppIdQuery = {
|
|
8592
8570
|
__typename?: 'RootQuery';
|
|
8593
8571
|
app: {
|
|
8594
8572
|
__typename?: 'AppQuery';
|
|
@@ -8606,10 +8584,10 @@ export declare type WebhooksByAppIdQuery = {
|
|
|
8606
8584
|
};
|
|
8607
8585
|
};
|
|
8608
8586
|
};
|
|
8609
|
-
export
|
|
8587
|
+
export type WebhookByIdQueryVariables = Exact<{
|
|
8610
8588
|
webhookId: Scalars['ID'];
|
|
8611
8589
|
}>;
|
|
8612
|
-
export
|
|
8590
|
+
export type WebhookByIdQuery = {
|
|
8613
8591
|
__typename?: 'RootQuery';
|
|
8614
8592
|
webhook: {
|
|
8615
8593
|
__typename?: 'WebhookQuery';
|
|
@@ -8623,7 +8601,7 @@ export declare type WebhookByIdQuery = {
|
|
|
8623
8601
|
};
|
|
8624
8602
|
};
|
|
8625
8603
|
};
|
|
8626
|
-
export
|
|
8604
|
+
export type AccountFragment = {
|
|
8627
8605
|
__typename?: 'Account';
|
|
8628
8606
|
id: string;
|
|
8629
8607
|
name: string;
|
|
@@ -8642,7 +8620,7 @@ export declare type AccountFragment = {
|
|
|
8642
8620
|
};
|
|
8643
8621
|
}>;
|
|
8644
8622
|
};
|
|
8645
|
-
export
|
|
8623
|
+
export type AppFragment = {
|
|
8646
8624
|
__typename?: 'App';
|
|
8647
8625
|
id: string;
|
|
8648
8626
|
fullName: string;
|
|
@@ -8667,7 +8645,7 @@ export declare type AppFragment = {
|
|
|
8667
8645
|
}>;
|
|
8668
8646
|
};
|
|
8669
8647
|
};
|
|
8670
|
-
export
|
|
8648
|
+
export type BuildFragment = {
|
|
8671
8649
|
__typename?: 'Build';
|
|
8672
8650
|
id: string;
|
|
8673
8651
|
status: BuildStatus;
|
|
@@ -8732,7 +8710,7 @@ export declare type BuildFragment = {
|
|
|
8732
8710
|
slug: string;
|
|
8733
8711
|
};
|
|
8734
8712
|
};
|
|
8735
|
-
export
|
|
8713
|
+
export type BuildWithSubmissionsFragment = {
|
|
8736
8714
|
__typename?: 'Build';
|
|
8737
8715
|
id: string;
|
|
8738
8716
|
status: BuildStatus;
|
|
@@ -8831,14 +8809,14 @@ export declare type BuildWithSubmissionsFragment = {
|
|
|
8831
8809
|
slug: string;
|
|
8832
8810
|
};
|
|
8833
8811
|
};
|
|
8834
|
-
export
|
|
8812
|
+
export type EnvironmentSecretFragment = {
|
|
8835
8813
|
__typename?: 'EnvironmentSecret';
|
|
8836
8814
|
id: string;
|
|
8837
8815
|
name: string;
|
|
8838
8816
|
type: EnvironmentSecretType;
|
|
8839
8817
|
createdAt: any;
|
|
8840
8818
|
};
|
|
8841
|
-
export
|
|
8819
|
+
export type StatuspageServiceFragment = {
|
|
8842
8820
|
__typename?: 'StatuspageService';
|
|
8843
8821
|
id: string;
|
|
8844
8822
|
name: StatuspageServiceName;
|
|
@@ -8852,7 +8830,7 @@ export declare type StatuspageServiceFragment = {
|
|
|
8852
8830
|
shortlink: string;
|
|
8853
8831
|
}>;
|
|
8854
8832
|
};
|
|
8855
|
-
export
|
|
8833
|
+
export type SubmissionFragment = {
|
|
8856
8834
|
__typename?: 'Submission';
|
|
8857
8835
|
id: string;
|
|
8858
8836
|
status: SubmissionStatus;
|
|
@@ -8886,7 +8864,7 @@ export declare type SubmissionFragment = {
|
|
|
8886
8864
|
message?: string | null;
|
|
8887
8865
|
} | null;
|
|
8888
8866
|
};
|
|
8889
|
-
export
|
|
8867
|
+
export type UpdateFragment = {
|
|
8890
8868
|
__typename?: 'Update';
|
|
8891
8869
|
id: string;
|
|
8892
8870
|
group: string;
|
|
@@ -8921,7 +8899,7 @@ export declare type UpdateFragment = {
|
|
|
8921
8899
|
alg: string;
|
|
8922
8900
|
} | null;
|
|
8923
8901
|
};
|
|
8924
|
-
export
|
|
8902
|
+
export type UpdateBranchFragment = {
|
|
8925
8903
|
__typename?: 'UpdateBranch';
|
|
8926
8904
|
id: string;
|
|
8927
8905
|
name: string;
|
|
@@ -8961,7 +8939,7 @@ export declare type UpdateBranchFragment = {
|
|
|
8961
8939
|
} | null;
|
|
8962
8940
|
}>;
|
|
8963
8941
|
};
|
|
8964
|
-
export
|
|
8942
|
+
export type WebhookFragment = {
|
|
8965
8943
|
__typename?: 'Webhook';
|
|
8966
8944
|
id: string;
|
|
8967
8945
|
event: WebhookType;
|
|
@@ -8969,7 +8947,7 @@ export declare type WebhookFragment = {
|
|
|
8969
8947
|
createdAt: any;
|
|
8970
8948
|
updatedAt: any;
|
|
8971
8949
|
};
|
|
8972
|
-
export
|
|
8950
|
+
export type AndroidAppBuildCredentialsFragment = {
|
|
8973
8951
|
__typename?: 'AndroidAppBuildCredentials';
|
|
8974
8952
|
id: string;
|
|
8975
8953
|
isDefault: boolean;
|
|
@@ -8990,7 +8968,7 @@ export declare type AndroidAppBuildCredentialsFragment = {
|
|
|
8990
8968
|
updatedAt: any;
|
|
8991
8969
|
} | null;
|
|
8992
8970
|
};
|
|
8993
|
-
export
|
|
8971
|
+
export type CommonAndroidAppCredentialsFragment = {
|
|
8994
8972
|
__typename?: 'AndroidAppCredentials';
|
|
8995
8973
|
id: string;
|
|
8996
8974
|
applicationIdentifier?: string | null;
|
|
@@ -9071,7 +9049,7 @@ export declare type CommonAndroidAppCredentialsFragment = {
|
|
|
9071
9049
|
} | null;
|
|
9072
9050
|
}>;
|
|
9073
9051
|
};
|
|
9074
|
-
export
|
|
9052
|
+
export type AndroidFcmFragment = {
|
|
9075
9053
|
__typename?: 'AndroidFcm';
|
|
9076
9054
|
id: string;
|
|
9077
9055
|
credential: any;
|
|
@@ -9090,7 +9068,7 @@ export declare type AndroidFcmFragment = {
|
|
|
9090
9068
|
clientId?: string | null;
|
|
9091
9069
|
};
|
|
9092
9070
|
};
|
|
9093
|
-
export
|
|
9071
|
+
export type AndroidKeystoreFragment = {
|
|
9094
9072
|
__typename?: 'AndroidKeystore';
|
|
9095
9073
|
id: string;
|
|
9096
9074
|
type: AndroidKeystoreType;
|
|
@@ -9104,7 +9082,7 @@ export declare type AndroidKeystoreFragment = {
|
|
|
9104
9082
|
createdAt: any;
|
|
9105
9083
|
updatedAt: any;
|
|
9106
9084
|
};
|
|
9107
|
-
export
|
|
9085
|
+
export type AppStoreConnectApiKeyFragment = {
|
|
9108
9086
|
__typename?: 'AppStoreConnectApiKey';
|
|
9109
9087
|
id: string;
|
|
9110
9088
|
issuerIdentifier: string;
|
|
@@ -9120,12 +9098,12 @@ export declare type AppStoreConnectApiKeyFragment = {
|
|
|
9120
9098
|
appleTeamName?: string | null;
|
|
9121
9099
|
} | null;
|
|
9122
9100
|
};
|
|
9123
|
-
export
|
|
9101
|
+
export type AppleAppIdentifierFragment = {
|
|
9124
9102
|
__typename?: 'AppleAppIdentifier';
|
|
9125
9103
|
id: string;
|
|
9126
9104
|
bundleIdentifier: string;
|
|
9127
9105
|
};
|
|
9128
|
-
export
|
|
9106
|
+
export type AppleDeviceFragment = {
|
|
9129
9107
|
__typename?: 'AppleDevice';
|
|
9130
9108
|
id: string;
|
|
9131
9109
|
identifier: string;
|
|
@@ -9133,11 +9111,11 @@ export declare type AppleDeviceFragment = {
|
|
|
9133
9111
|
model?: string | null;
|
|
9134
9112
|
deviceClass?: AppleDeviceClass | null;
|
|
9135
9113
|
};
|
|
9136
|
-
export
|
|
9114
|
+
export type AppleDeviceRegistrationRequestFragment = {
|
|
9137
9115
|
__typename?: 'AppleDeviceRegistrationRequest';
|
|
9138
9116
|
id: string;
|
|
9139
9117
|
};
|
|
9140
|
-
export
|
|
9118
|
+
export type AppleDistributionCertificateFragment = {
|
|
9141
9119
|
__typename?: 'AppleDistributionCertificate';
|
|
9142
9120
|
id: string;
|
|
9143
9121
|
certificateP12?: string | null;
|
|
@@ -9197,7 +9175,7 @@ export declare type AppleDistributionCertificateFragment = {
|
|
|
9197
9175
|
} | null;
|
|
9198
9176
|
}>;
|
|
9199
9177
|
};
|
|
9200
|
-
export
|
|
9178
|
+
export type AppleProvisioningProfileFragment = {
|
|
9201
9179
|
__typename?: 'AppleProvisioningProfile';
|
|
9202
9180
|
id: string;
|
|
9203
9181
|
expiration: any;
|
|
@@ -9220,12 +9198,12 @@ export declare type AppleProvisioningProfileFragment = {
|
|
|
9220
9198
|
deviceClass?: AppleDeviceClass | null;
|
|
9221
9199
|
}>;
|
|
9222
9200
|
};
|
|
9223
|
-
export
|
|
9201
|
+
export type AppleProvisioningProfileIdentifiersFragment = {
|
|
9224
9202
|
__typename?: 'AppleProvisioningProfile';
|
|
9225
9203
|
id: string;
|
|
9226
9204
|
developerPortalIdentifier?: string | null;
|
|
9227
9205
|
};
|
|
9228
|
-
export
|
|
9206
|
+
export type ApplePushKeyFragment = {
|
|
9229
9207
|
__typename?: 'ApplePushKey';
|
|
9230
9208
|
id: string;
|
|
9231
9209
|
keyIdentifier: string;
|
|
@@ -9271,13 +9249,13 @@ export declare type ApplePushKeyFragment = {
|
|
|
9271
9249
|
};
|
|
9272
9250
|
}>;
|
|
9273
9251
|
};
|
|
9274
|
-
export
|
|
9252
|
+
export type AppleTeamFragment = {
|
|
9275
9253
|
__typename?: 'AppleTeam';
|
|
9276
9254
|
id: string;
|
|
9277
9255
|
appleTeamIdentifier: string;
|
|
9278
9256
|
appleTeamName?: string | null;
|
|
9279
9257
|
};
|
|
9280
|
-
export
|
|
9258
|
+
export type GoogleServiceAccountKeyFragment = {
|
|
9281
9259
|
__typename?: 'GoogleServiceAccountKey';
|
|
9282
9260
|
id: string;
|
|
9283
9261
|
projectIdentifier: string;
|
|
@@ -9287,7 +9265,7 @@ export declare type GoogleServiceAccountKeyFragment = {
|
|
|
9287
9265
|
createdAt: any;
|
|
9288
9266
|
updatedAt: any;
|
|
9289
9267
|
};
|
|
9290
|
-
export
|
|
9268
|
+
export type IosAppBuildCredentialsFragment = {
|
|
9291
9269
|
__typename?: 'IosAppBuildCredentials';
|
|
9292
9270
|
id: string;
|
|
9293
9271
|
iosDistributionType: IosDistributionType;
|
|
@@ -9375,7 +9353,7 @@ export declare type IosAppBuildCredentialsFragment = {
|
|
|
9375
9353
|
}>;
|
|
9376
9354
|
} | null;
|
|
9377
9355
|
};
|
|
9378
|
-
export
|
|
9356
|
+
export type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
9379
9357
|
__typename?: 'IosAppCredentials';
|
|
9380
9358
|
id: string;
|
|
9381
9359
|
app: {
|
|
@@ -9477,7 +9455,7 @@ export declare type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
9477
9455
|
} | null;
|
|
9478
9456
|
} | null;
|
|
9479
9457
|
};
|
|
9480
|
-
export
|
|
9458
|
+
export type CommonIosAppCredentialsFragment = {
|
|
9481
9459
|
__typename?: 'IosAppCredentials';
|
|
9482
9460
|
id: string;
|
|
9483
9461
|
iosAppBuildCredentialsList: Array<{
|