eas-cli 12.3.0 → 12.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +60 -60
- package/build/build/ios/version.js +11 -6
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.d.ts +1 -0
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +3 -1
- package/build/commands/worker/alias.d.ts +22 -0
- package/build/commands/worker/alias.js +168 -0
- package/build/commands/worker/deploy.d.ts +62 -1
- package/build/commands/worker/deploy.js +186 -65
- package/build/graphql/generated.d.ts +372 -146
- package/build/graphql/generated.js +46 -44
- package/build/project/expoConfig.d.ts +1 -0
- package/build/project/expoConfig.js +1 -0
- package/build/worker/assets.d.ts +12 -0
- package/build/worker/assets.js +20 -1
- package/build/worker/deployment.d.ts +25 -2
- package/build/worker/deployment.js +106 -15
- package/build/worker/fragments/WorkerDeployment.d.ts +1 -0
- package/build/worker/fragments/WorkerDeployment.js +14 -0
- package/build/worker/fragments/WorkerDeploymentAlias.d.ts +1 -0
- package/build/worker/fragments/WorkerDeploymentAlias.js +12 -0
- package/build/worker/mutations.d.ts +6 -0
- package/build/worker/mutations.js +33 -0
- package/build/worker/queries.d.ts +7 -0
- package/build/worker/queries.js +61 -0
- package/build/worker/utils/logs.d.ts +35 -0
- package/build/worker/utils/logs.js +54 -0
- package/oclif.manifest.json +129 -3
- package/package.json +4 -3
|
@@ -1184,6 +1184,7 @@ export type App = Project & {
|
|
|
1184
1184
|
/** EAS Submissions associated with this app */
|
|
1185
1185
|
submissions: Array<Submission>;
|
|
1186
1186
|
submissionsPaginated: AppSubmissionsConnection;
|
|
1187
|
+
suggestedDevDomainName: Scalars['String']['output'];
|
|
1187
1188
|
/** Coalesced project activity for an app using pagination */
|
|
1188
1189
|
timelineActivity: TimelineActivityConnection;
|
|
1189
1190
|
/** @deprecated 'likes' have been deprecated. */
|
|
@@ -1216,11 +1217,10 @@ export type App = Project & {
|
|
|
1216
1217
|
workerDeployment?: Maybe<WorkerDeployment>;
|
|
1217
1218
|
workerDeploymentAlias?: Maybe<WorkerDeploymentAlias>;
|
|
1218
1219
|
workerDeploymentAliases: WorkerDeploymentAliasesConnection;
|
|
1219
|
-
workerDeploymentRequest: WorkerDeploymentRequestEdge;
|
|
1220
1220
|
workerDeployments: WorkerDeploymentsConnection;
|
|
1221
1221
|
workerDeploymentsCrash: WorkerDeploymentCrashEdge;
|
|
1222
1222
|
workerDeploymentsCrashes?: Maybe<WorkerDeploymentCrashes>;
|
|
1223
|
-
|
|
1223
|
+
workerDeploymentsRequest: WorkerDeploymentRequestEdge;
|
|
1224
1224
|
workerDeploymentsRequests?: Maybe<WorkerDeploymentRequests>;
|
|
1225
1225
|
};
|
|
1226
1226
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
@@ -1398,10 +1398,6 @@ export type AppWorkerDeploymentAliasesArgs = {
|
|
|
1398
1398
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1399
1399
|
};
|
|
1400
1400
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1401
|
-
export type AppWorkerDeploymentRequestArgs = {
|
|
1402
|
-
requestId: Scalars['ID']['input'];
|
|
1403
|
-
};
|
|
1404
|
-
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1405
1401
|
export type AppWorkerDeploymentsArgs = {
|
|
1406
1402
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
1407
1403
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1419,14 +1415,12 @@ export type AppWorkerDeploymentsCrashesArgs = {
|
|
|
1419
1415
|
timespan: CrashesTimespan;
|
|
1420
1416
|
};
|
|
1421
1417
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1422
|
-
export type
|
|
1423
|
-
|
|
1424
|
-
timespan: MetricsTimespan;
|
|
1418
|
+
export type AppWorkerDeploymentsRequestArgs = {
|
|
1419
|
+
requestKey: Scalars['ID']['input'];
|
|
1425
1420
|
};
|
|
1426
1421
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1427
1422
|
export type AppWorkerDeploymentsRequestsArgs = {
|
|
1428
|
-
|
|
1429
|
-
limit?: Scalars['Int']['input'];
|
|
1423
|
+
filters?: InputMaybe<RequestsFilters>;
|
|
1430
1424
|
timespan: RequestsTimespan;
|
|
1431
1425
|
};
|
|
1432
1426
|
export type AppBranchEdge = {
|
|
@@ -2120,6 +2114,8 @@ export type AuditLogExportInput = {
|
|
|
2120
2114
|
createdAfter: Scalars['String']['input'];
|
|
2121
2115
|
createdBefore: Scalars['String']['input'];
|
|
2122
2116
|
format: AuditLogsExportFormat;
|
|
2117
|
+
targetEntityMutationType?: InputMaybe<Array<TargetEntityMutationType>>;
|
|
2118
|
+
targetEntityTypeName?: InputMaybe<Array<EntityTypeName>>;
|
|
2123
2119
|
};
|
|
2124
2120
|
export type AuditLogFilterInput = {
|
|
2125
2121
|
entityTypes?: InputMaybe<Array<EntityTypeName>>;
|
|
@@ -2186,6 +2182,7 @@ export type BackgroundJobReceiptQueryByIdArgs = {
|
|
|
2186
2182
|
export declare enum BackgroundJobResultType {
|
|
2187
2183
|
AuditLogsExport = "AUDIT_LOGS_EXPORT",
|
|
2188
2184
|
GithubBuild = "GITHUB_BUILD",
|
|
2185
|
+
UserAuditLogsExport = "USER_AUDIT_LOGS_EXPORT",
|
|
2189
2186
|
Void = "VOID"
|
|
2190
2187
|
}
|
|
2191
2188
|
export declare enum BackgroundJobState {
|
|
@@ -2235,6 +2232,7 @@ export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
|
|
|
2235
2232
|
buildProfile?: Maybe<Scalars['String']['output']>;
|
|
2236
2233
|
canRetry: Scalars['Boolean']['output'];
|
|
2237
2234
|
cancelingActor?: Maybe<Actor>;
|
|
2235
|
+
/** @deprecated Use 'updateChannel' field instead. */
|
|
2238
2236
|
channel?: Maybe<Scalars['String']['output']>;
|
|
2239
2237
|
childBuild?: Maybe<Build>;
|
|
2240
2238
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -2291,12 +2289,13 @@ export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
|
|
|
2291
2289
|
retryDisabledReason?: Maybe<BuildRetryDisabledReason>;
|
|
2292
2290
|
runFromCI?: Maybe<Scalars['Boolean']['output']>;
|
|
2293
2291
|
runtime?: Maybe<Runtime>;
|
|
2294
|
-
/** @deprecated Use 'runtime' field . */
|
|
2292
|
+
/** @deprecated Use 'runtime' field instead. */
|
|
2295
2293
|
runtimeVersion?: Maybe<Scalars['String']['output']>;
|
|
2296
2294
|
sdkVersion?: Maybe<Scalars['String']['output']>;
|
|
2297
2295
|
selectedImage?: Maybe<Scalars['String']['output']>;
|
|
2298
2296
|
status: BuildStatus;
|
|
2299
2297
|
submissions: Array<Submission>;
|
|
2298
|
+
updateChannel?: Maybe<UpdateChannel>;
|
|
2300
2299
|
updatedAt: Scalars['DateTime']['output'];
|
|
2301
2300
|
workerStartedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2302
2301
|
};
|
|
@@ -2877,6 +2876,7 @@ export type CustomDomainDnsRecord = {
|
|
|
2877
2876
|
isConfigured: Scalars['Boolean']['output'];
|
|
2878
2877
|
};
|
|
2879
2878
|
export declare enum CustomDomainDnsRecordType {
|
|
2879
|
+
A = "A",
|
|
2880
2880
|
Cname = "CNAME",
|
|
2881
2881
|
Txt = "TXT"
|
|
2882
2882
|
}
|
|
@@ -3227,8 +3227,6 @@ export declare enum EntityTypeName {
|
|
|
3227
3227
|
Customer = "Customer",
|
|
3228
3228
|
GoogleServiceAccountKey = "GoogleServiceAccountKey",
|
|
3229
3229
|
IosAppCredentials = "IosAppCredentials",
|
|
3230
|
-
TurtleBuild = "TurtleBuild",
|
|
3231
|
-
Update = "Update",
|
|
3232
3230
|
UserInvitation = "UserInvitation",
|
|
3233
3231
|
UserPermission = "UserPermission"
|
|
3234
3232
|
}
|
|
@@ -4277,42 +4275,6 @@ export type MeteredBillingStatus = {
|
|
|
4277
4275
|
EAS_BUILD: Scalars['Boolean']['output'];
|
|
4278
4276
|
EAS_UPDATE: Scalars['Boolean']['output'];
|
|
4279
4277
|
};
|
|
4280
|
-
export declare enum MetricsCacheStatus {
|
|
4281
|
-
Hit = "HIT",
|
|
4282
|
-
Miss = "MISS",
|
|
4283
|
-
Pass = "PASS"
|
|
4284
|
-
}
|
|
4285
|
-
export type MetricsFilters = {
|
|
4286
|
-
cacheStatus?: InputMaybe<Array<MetricsCacheStatus>>;
|
|
4287
|
-
continent?: InputMaybe<Array<ContinentCode>>;
|
|
4288
|
-
hasCustomDomainOrigin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4289
|
-
isAsset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4290
|
-
isCrash?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4291
|
-
isVerifiedBot?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4292
|
-
method?: InputMaybe<Array<MetricsRequestMethod>>;
|
|
4293
|
-
os?: InputMaybe<Array<UserAgentOs>>;
|
|
4294
|
-
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
4295
|
-
status?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
4296
|
-
statusType?: InputMaybe<Array<MetricsStatusType>>;
|
|
4297
|
-
};
|
|
4298
|
-
export declare enum MetricsRequestMethod {
|
|
4299
|
-
Delete = "DELETE",
|
|
4300
|
-
Get = "GET",
|
|
4301
|
-
Options = "OPTIONS",
|
|
4302
|
-
Post = "POST",
|
|
4303
|
-
Put = "PUT"
|
|
4304
|
-
}
|
|
4305
|
-
export declare enum MetricsStatusType {
|
|
4306
|
-
ClientError = "CLIENT_ERROR",
|
|
4307
|
-
None = "NONE",
|
|
4308
|
-
Redirect = "REDIRECT",
|
|
4309
|
-
ServerError = "SERVER_ERROR",
|
|
4310
|
-
Successful = "SUCCESSFUL"
|
|
4311
|
-
}
|
|
4312
|
-
export type MetricsTimespan = {
|
|
4313
|
-
end: Scalars['DateTime']['input'];
|
|
4314
|
-
start: Scalars['DateTime']['input'];
|
|
4315
|
-
};
|
|
4316
4278
|
export type Notification = {
|
|
4317
4279
|
__typename?: 'Notification';
|
|
4318
4280
|
accountName: Scalars['String']['output'];
|
|
@@ -4511,15 +4473,32 @@ export type PublishUpdateGroupInput = {
|
|
|
4511
4473
|
turtleJobRunId?: InputMaybe<Scalars['String']['input']>;
|
|
4512
4474
|
updateInfoGroup?: InputMaybe<UpdateInfoGroup>;
|
|
4513
4475
|
};
|
|
4514
|
-
export declare enum
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4476
|
+
export declare enum RequestMethod {
|
|
4477
|
+
Delete = "DELETE",
|
|
4478
|
+
Get = "GET",
|
|
4479
|
+
Head = "HEAD",
|
|
4480
|
+
Options = "OPTIONS",
|
|
4481
|
+
Patch = "PATCH",
|
|
4482
|
+
Post = "POST",
|
|
4483
|
+
Put = "PUT"
|
|
4519
4484
|
}
|
|
4485
|
+
export type RequestsFilters = {
|
|
4486
|
+
cacheStatus?: InputMaybe<Array<ResponseCacheStatus>>;
|
|
4487
|
+
continent?: InputMaybe<Array<ContinentCode>>;
|
|
4488
|
+
hasCustomDomainOrigin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4489
|
+
isAsset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4490
|
+
isCrash?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4491
|
+
isVerifiedBot?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4492
|
+
method?: InputMaybe<Array<RequestMethod>>;
|
|
4493
|
+
os?: InputMaybe<Array<UserAgentOs>>;
|
|
4494
|
+
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
4495
|
+
responseType?: InputMaybe<Array<ResponseType>>;
|
|
4496
|
+
status?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
4497
|
+
statusType?: InputMaybe<Array<ResponseStatusType>>;
|
|
4498
|
+
};
|
|
4520
4499
|
export type RequestsTimespan = {
|
|
4521
4500
|
end: Scalars['DateTime']['input'];
|
|
4522
|
-
start
|
|
4501
|
+
start: Scalars['DateTime']['input'];
|
|
4523
4502
|
};
|
|
4524
4503
|
export type RescindUserInvitationResult = {
|
|
4525
4504
|
__typename?: 'RescindUserInvitationResult';
|
|
@@ -4529,6 +4508,24 @@ export declare enum ResourceClassExperiment {
|
|
|
4529
4508
|
C3D = "C3D",
|
|
4530
4509
|
N2 = "N2"
|
|
4531
4510
|
}
|
|
4511
|
+
export declare enum ResponseCacheStatus {
|
|
4512
|
+
Hit = "HIT",
|
|
4513
|
+
Miss = "MISS",
|
|
4514
|
+
Pass = "PASS"
|
|
4515
|
+
}
|
|
4516
|
+
export declare enum ResponseStatusType {
|
|
4517
|
+
ClientError = "CLIENT_ERROR",
|
|
4518
|
+
None = "NONE",
|
|
4519
|
+
Redirect = "REDIRECT",
|
|
4520
|
+
ServerError = "SERVER_ERROR",
|
|
4521
|
+
Successful = "SUCCESSFUL"
|
|
4522
|
+
}
|
|
4523
|
+
export declare enum ResponseType {
|
|
4524
|
+
Asset = "ASSET",
|
|
4525
|
+
Crash = "CRASH",
|
|
4526
|
+
Rejected = "REJECTED",
|
|
4527
|
+
Route = "ROUTE"
|
|
4528
|
+
}
|
|
4532
4529
|
/** Represents a robot (not human) actor. */
|
|
4533
4530
|
export type Robot = Actor & {
|
|
4534
4531
|
__typename?: 'Robot';
|
|
@@ -4685,6 +4682,7 @@ export type RootMutation = {
|
|
|
4685
4682
|
uploadSession: UploadSession;
|
|
4686
4683
|
/** Mutations that create, update, and delete pinned apps */
|
|
4687
4684
|
userAppPins: UserAppPinMutation;
|
|
4685
|
+
userAuditLog: UserAuditLogMutation;
|
|
4688
4686
|
/** Mutations that create, delete, and accept UserInvitations */
|
|
4689
4687
|
userInvitation: UserInvitationMutation;
|
|
4690
4688
|
/** Mutations that create, delete, update Webhooks */
|
|
@@ -4733,7 +4731,7 @@ export type RootQuery = {
|
|
|
4733
4731
|
/** Top-level query object for querying Apple Teams. */
|
|
4734
4732
|
appleTeam: AppleTeamQuery;
|
|
4735
4733
|
asset: AssetQuery;
|
|
4736
|
-
/** Top-level query object for querying Audit Logs. */
|
|
4734
|
+
/** Top-level query object for querying Account Audit Logs. */
|
|
4737
4735
|
auditLogs: AuditLogQuery;
|
|
4738
4736
|
backgroundJobReceipt: BackgroundJobReceiptQuery;
|
|
4739
4737
|
/** Top-level query object for querying Branchs. */
|
|
@@ -4793,6 +4791,8 @@ export type RootQuery = {
|
|
|
4793
4791
|
userActor: UserActorQuery;
|
|
4794
4792
|
/** Top-level query object for querying UserActorPublicData publicly. */
|
|
4795
4793
|
userActorPublicData: UserActorPublicDataQuery;
|
|
4794
|
+
/** Top-level query object for querying User Audit Logs. */
|
|
4795
|
+
userAuditLogs: UserAuditLogQuery;
|
|
4796
4796
|
/** @deprecated Use 'byId' field under 'user'. */
|
|
4797
4797
|
userByUserId?: Maybe<User>;
|
|
4798
4798
|
/** @deprecated Use 'byUsername' field under 'user'. */
|
|
@@ -4829,11 +4829,47 @@ export type RootQueryUserByUsernameArgs = {
|
|
|
4829
4829
|
export type Runtime = {
|
|
4830
4830
|
__typename?: 'Runtime';
|
|
4831
4831
|
app: App;
|
|
4832
|
+
builds: AppBuildsConnection;
|
|
4833
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4834
|
+
deployments: DeploymentsConnection;
|
|
4832
4835
|
fingerprintDebugInfoUrl?: Maybe<Scalars['String']['output']>;
|
|
4833
|
-
firstBuildCreatedAt
|
|
4836
|
+
firstBuildCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4834
4837
|
id: Scalars['ID']['output'];
|
|
4838
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4839
|
+
updates: AppUpdatesConnection;
|
|
4835
4840
|
version: Scalars['String']['output'];
|
|
4836
4841
|
};
|
|
4842
|
+
export type RuntimeBuildsArgs = {
|
|
4843
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4844
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
4845
|
+
filter?: InputMaybe<RuntimeBuildsFilterInput>;
|
|
4846
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4847
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4848
|
+
};
|
|
4849
|
+
export type RuntimeDeploymentsArgs = {
|
|
4850
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4851
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
4852
|
+
filter?: InputMaybe<RuntimeDeploymentsFilterInput>;
|
|
4853
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4854
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4855
|
+
};
|
|
4856
|
+
export type RuntimeUpdatesArgs = {
|
|
4857
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4858
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
4859
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4860
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4861
|
+
};
|
|
4862
|
+
export type RuntimeBuildsFilterInput = {
|
|
4863
|
+
channel?: InputMaybe<Scalars['String']['input']>;
|
|
4864
|
+
developmentClient?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4865
|
+
distributions?: InputMaybe<Array<DistributionType>>;
|
|
4866
|
+
platforms?: InputMaybe<Array<AppPlatform>>;
|
|
4867
|
+
releaseChannel?: InputMaybe<Scalars['String']['input']>;
|
|
4868
|
+
simulator?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4869
|
+
};
|
|
4870
|
+
export type RuntimeDeploymentsFilterInput = {
|
|
4871
|
+
channel?: InputMaybe<Scalars['String']['input']>;
|
|
4872
|
+
};
|
|
4837
4873
|
export type RuntimeEdge = {
|
|
4838
4874
|
__typename?: 'RuntimeEdge';
|
|
4839
4875
|
cursor: Scalars['String']['output'];
|
|
@@ -5325,6 +5361,7 @@ export type Update = ActivityTimelineProjectActivity & {
|
|
|
5325
5361
|
branchId: Scalars['ID']['output'];
|
|
5326
5362
|
codeSigningInfo?: Maybe<CodeSigningInfo>;
|
|
5327
5363
|
createdAt: Scalars['DateTime']['output'];
|
|
5364
|
+
deployments: UpdateDeploymentsConnection;
|
|
5328
5365
|
expoGoSDKVersion?: Maybe<Scalars['String']['output']>;
|
|
5329
5366
|
gitCommitHash?: Maybe<Scalars['String']['output']>;
|
|
5330
5367
|
group: Scalars['String']['output'];
|
|
@@ -5345,6 +5382,12 @@ export type Update = ActivityTimelineProjectActivity & {
|
|
|
5345
5382
|
runtimeVersion: Scalars['String']['output'];
|
|
5346
5383
|
updatedAt: Scalars['DateTime']['output'];
|
|
5347
5384
|
};
|
|
5385
|
+
export type UpdateDeploymentsArgs = {
|
|
5386
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5387
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
5388
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5389
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
5390
|
+
};
|
|
5348
5391
|
export type UpdateBranch = {
|
|
5349
5392
|
__typename?: 'UpdateBranch';
|
|
5350
5393
|
app: App;
|
|
@@ -5448,6 +5491,16 @@ export type UpdateChannelMutationEditUpdateChannelArgs = {
|
|
|
5448
5491
|
branchMapping: Scalars['String']['input'];
|
|
5449
5492
|
channelId: Scalars['ID']['input'];
|
|
5450
5493
|
};
|
|
5494
|
+
export type UpdateDeploymentEdge = {
|
|
5495
|
+
__typename?: 'UpdateDeploymentEdge';
|
|
5496
|
+
cursor: Scalars['String']['output'];
|
|
5497
|
+
node: Deployment;
|
|
5498
|
+
};
|
|
5499
|
+
export type UpdateDeploymentsConnection = {
|
|
5500
|
+
__typename?: 'UpdateDeploymentsConnection';
|
|
5501
|
+
edges: Array<UpdateDeploymentEdge>;
|
|
5502
|
+
pageInfo: PageInfo;
|
|
5503
|
+
};
|
|
5451
5504
|
export type UpdateGitHubBuildTriggerInput = {
|
|
5452
5505
|
autoSubmit: Scalars['Boolean']['input'];
|
|
5453
5506
|
buildProfile: Scalars['String']['input'];
|
|
@@ -5842,6 +5895,71 @@ export type UserAppPinMutationPinAppArgs = {
|
|
|
5842
5895
|
export type UserAppPinMutationUnpinAppArgs = {
|
|
5843
5896
|
appId: Scalars['ID']['input'];
|
|
5844
5897
|
};
|
|
5898
|
+
export type UserAuditLog = {
|
|
5899
|
+
__typename?: 'UserAuditLog';
|
|
5900
|
+
actor: Actor;
|
|
5901
|
+
createdAt: Scalars['DateTime']['output'];
|
|
5902
|
+
id: Scalars['ID']['output'];
|
|
5903
|
+
ip?: Maybe<Scalars['String']['output']>;
|
|
5904
|
+
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
5905
|
+
targetEntityId: Scalars['ID']['output'];
|
|
5906
|
+
targetEntityMutationType: TargetEntityMutationType;
|
|
5907
|
+
targetEntityTypeName: Scalars['String']['output'];
|
|
5908
|
+
user: User;
|
|
5909
|
+
websiteMessage: Scalars['String']['output'];
|
|
5910
|
+
};
|
|
5911
|
+
export type UserAuditLogConnection = {
|
|
5912
|
+
__typename?: 'UserAuditLogConnection';
|
|
5913
|
+
edges: Array<UserAuditLogEdge>;
|
|
5914
|
+
pageInfo: PageInfo;
|
|
5915
|
+
};
|
|
5916
|
+
export type UserAuditLogEdge = {
|
|
5917
|
+
__typename?: 'UserAuditLogEdge';
|
|
5918
|
+
cursor: Scalars['String']['output'];
|
|
5919
|
+
node: UserAuditLog;
|
|
5920
|
+
};
|
|
5921
|
+
export type UserAuditLogExportInput = {
|
|
5922
|
+
createdAfter: Scalars['String']['input'];
|
|
5923
|
+
createdBefore: Scalars['String']['input'];
|
|
5924
|
+
format: AuditLogsExportFormat;
|
|
5925
|
+
targetEntityMutationType?: InputMaybe<Array<TargetEntityMutationType>>;
|
|
5926
|
+
targetEntityTypeName?: InputMaybe<Array<UserEntityTypeName>>;
|
|
5927
|
+
userId: Scalars['ID']['input'];
|
|
5928
|
+
};
|
|
5929
|
+
export type UserAuditLogFilterInput = {
|
|
5930
|
+
entityTypes?: InputMaybe<Array<UserEntityTypeName>>;
|
|
5931
|
+
mutationTypes?: InputMaybe<Array<TargetEntityMutationType>>;
|
|
5932
|
+
};
|
|
5933
|
+
export type UserAuditLogMutation = {
|
|
5934
|
+
__typename?: 'UserAuditLogMutation';
|
|
5935
|
+
/** Exports User Audit Logs for an user. Returns the ID of the background job receipt. Use BackgroundJobReceiptQuery to get the status of the job. */
|
|
5936
|
+
exportUserAuditLogs: BackgroundJobReceipt;
|
|
5937
|
+
};
|
|
5938
|
+
export type UserAuditLogMutationExportUserAuditLogsArgs = {
|
|
5939
|
+
exportInput: UserAuditLogExportInput;
|
|
5940
|
+
};
|
|
5941
|
+
export type UserAuditLogQuery = {
|
|
5942
|
+
__typename?: 'UserAuditLogQuery';
|
|
5943
|
+
/** Query User Audit Logs by user ID */
|
|
5944
|
+
byUserId: Array<UserAuditLog>;
|
|
5945
|
+
/** Audit logs for user */
|
|
5946
|
+
byUserIdPaginated: UserAuditLogConnection;
|
|
5947
|
+
};
|
|
5948
|
+
export type UserAuditLogQueryByUserIdArgs = {
|
|
5949
|
+
limit: Scalars['Int']['input'];
|
|
5950
|
+
offset: Scalars['Int']['input'];
|
|
5951
|
+
targetEntityMutationType?: InputMaybe<Array<TargetEntityMutationType>>;
|
|
5952
|
+
targetEntityTypeName?: InputMaybe<Array<UserEntityTypeName>>;
|
|
5953
|
+
userId: Scalars['ID']['input'];
|
|
5954
|
+
};
|
|
5955
|
+
export type UserAuditLogQueryByUserIdPaginatedArgs = {
|
|
5956
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5957
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
5958
|
+
filter?: InputMaybe<UserAuditLogFilterInput>;
|
|
5959
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5960
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
5961
|
+
userId: Scalars['ID']['input'];
|
|
5962
|
+
};
|
|
5845
5963
|
export type UserDataInput = {
|
|
5846
5964
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
5847
5965
|
firstName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5851,6 +5969,16 @@ export type UserDataInput = {
|
|
|
5851
5969
|
profilePhoto?: InputMaybe<Scalars['String']['input']>;
|
|
5852
5970
|
username?: InputMaybe<Scalars['String']['input']>;
|
|
5853
5971
|
};
|
|
5972
|
+
export declare enum UserEntityTypeName {
|
|
5973
|
+
AccessToken = "AccessToken",
|
|
5974
|
+
DiscordUser = "DiscordUser",
|
|
5975
|
+
GitHubUser = "GitHubUser",
|
|
5976
|
+
Password = "Password",
|
|
5977
|
+
SsoUser = "SSOUser",
|
|
5978
|
+
User = "User",
|
|
5979
|
+
UserSecondFactorBackupCodes = "UserSecondFactorBackupCodes",
|
|
5980
|
+
UserSecondFactorDevice = "UserSecondFactorDevice"
|
|
5981
|
+
}
|
|
5854
5982
|
/** An pending invitation sent to an email granting membership on an Account. */
|
|
5855
5983
|
export type UserInvitation = {
|
|
5856
5984
|
__typename?: 'UserInvitation';
|
|
@@ -6104,8 +6232,9 @@ export type WorkerDeployment = {
|
|
|
6104
6232
|
deploymentIdentifier: Scalars['WorkerDeploymentIdentifier']['output'];
|
|
6105
6233
|
devDomainName: Scalars['DevDomainName']['output'];
|
|
6106
6234
|
id: Scalars['ID']['output'];
|
|
6235
|
+
initiatingActor?: Maybe<Actor>;
|
|
6107
6236
|
logs?: Maybe<WorkerDeploymentLogs>;
|
|
6108
|
-
|
|
6237
|
+
requests?: Maybe<WorkerDeploymentRequests>;
|
|
6109
6238
|
subdomain: Scalars['String']['output'];
|
|
6110
6239
|
url: Scalars['String']['output'];
|
|
6111
6240
|
};
|
|
@@ -6113,9 +6242,9 @@ export type WorkerDeploymentLogsArgs = {
|
|
|
6113
6242
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6114
6243
|
timespan: LogsTimespan;
|
|
6115
6244
|
};
|
|
6116
|
-
export type
|
|
6117
|
-
filters?: InputMaybe<
|
|
6118
|
-
timespan:
|
|
6245
|
+
export type WorkerDeploymentRequestsArgs = {
|
|
6246
|
+
filters?: InputMaybe<RequestsFilters>;
|
|
6247
|
+
timespan: RequestsTimespan;
|
|
6119
6248
|
};
|
|
6120
6249
|
export type WorkerDeploymentAlias = {
|
|
6121
6250
|
__typename?: 'WorkerDeploymentAlias';
|
|
@@ -6142,7 +6271,7 @@ export type WorkerDeploymentAliasesConnection = {
|
|
|
6142
6271
|
export type WorkerDeploymentCrashEdge = {
|
|
6143
6272
|
__typename?: 'WorkerDeploymentCrashEdge';
|
|
6144
6273
|
logs: Array<WorkerDeploymentLogNode>;
|
|
6145
|
-
request
|
|
6274
|
+
request?: Maybe<WorkerDeploymentRequestNode>;
|
|
6146
6275
|
sample: WorkerDeploymentCrashSample;
|
|
6147
6276
|
};
|
|
6148
6277
|
export type WorkerDeploymentCrashNode = {
|
|
@@ -6191,27 +6320,63 @@ export type WorkerDeploymentLogs = {
|
|
|
6191
6320
|
minRowsWithoutLimit?: Maybe<Scalars['Int']['output']>;
|
|
6192
6321
|
nodes: Array<WorkerDeploymentLogNode>;
|
|
6193
6322
|
};
|
|
6194
|
-
export type
|
|
6195
|
-
__typename?: '
|
|
6196
|
-
|
|
6197
|
-
byContinent: Array<WorkerDeploymentMetricsContinentEdge>;
|
|
6198
|
-
byOS: Array<WorkerDeploymentMetricsOperatingSystemEdge>;
|
|
6199
|
-
interval: Scalars['Int']['output'];
|
|
6200
|
-
summary: WorkerDeploymentMetricsNode;
|
|
6201
|
-
timeseries: Array<WorkerDeploymentMetricsTimeseriesEdge>;
|
|
6323
|
+
export type WorkerDeploymentQuery = {
|
|
6324
|
+
__typename?: 'WorkerDeploymentQuery';
|
|
6325
|
+
byId: WorkerDeployment;
|
|
6202
6326
|
};
|
|
6203
|
-
export type
|
|
6204
|
-
|
|
6205
|
-
browser?: Maybe<UserAgentBrowser>;
|
|
6206
|
-
node: WorkerDeploymentMetricsNode;
|
|
6327
|
+
export type WorkerDeploymentQueryByIdArgs = {
|
|
6328
|
+
id: Scalars['ID']['input'];
|
|
6207
6329
|
};
|
|
6208
|
-
export type
|
|
6209
|
-
__typename?: '
|
|
6210
|
-
|
|
6211
|
-
|
|
6330
|
+
export type WorkerDeploymentRequestEdge = {
|
|
6331
|
+
__typename?: 'WorkerDeploymentRequestEdge';
|
|
6332
|
+
crash?: Maybe<WorkerDeploymentCrashSample>;
|
|
6333
|
+
logs: Array<WorkerDeploymentLogNode>;
|
|
6334
|
+
node: WorkerDeploymentRequestNode;
|
|
6212
6335
|
};
|
|
6213
|
-
export type
|
|
6214
|
-
__typename?: '
|
|
6336
|
+
export type WorkerDeploymentRequestNode = {
|
|
6337
|
+
__typename?: 'WorkerDeploymentRequestNode';
|
|
6338
|
+
browserKind?: Maybe<UserAgentBrowser>;
|
|
6339
|
+
browserVersion?: Maybe<Scalars['String']['output']>;
|
|
6340
|
+
cacheStatus?: Maybe<ResponseCacheStatus>;
|
|
6341
|
+
continent?: Maybe<ContinentCode>;
|
|
6342
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
6343
|
+
deploymentIdentifier: Scalars['String']['output'];
|
|
6344
|
+
duration: Scalars['Int']['output'];
|
|
6345
|
+
hasCustomDomainOrigin: Scalars['Boolean']['output'];
|
|
6346
|
+
isAsset: Scalars['Boolean']['output'];
|
|
6347
|
+
isCrash: Scalars['Boolean']['output'];
|
|
6348
|
+
isRejected: Scalars['Boolean']['output'];
|
|
6349
|
+
isStaleIfError: Scalars['Boolean']['output'];
|
|
6350
|
+
isStaleWhileRevalidate: Scalars['Boolean']['output'];
|
|
6351
|
+
isVerifiedBot: Scalars['Boolean']['output'];
|
|
6352
|
+
key: Scalars['ID']['output'];
|
|
6353
|
+
method: Scalars['String']['output'];
|
|
6354
|
+
os?: Maybe<UserAgentOs>;
|
|
6355
|
+
pathname: Scalars['String']['output'];
|
|
6356
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
6357
|
+
requestTimestamp: Scalars['DateTime']['output'];
|
|
6358
|
+
responseType: ResponseType;
|
|
6359
|
+
scriptName: Scalars['String']['output'];
|
|
6360
|
+
search?: Maybe<Scalars['String']['output']>;
|
|
6361
|
+
status: Scalars['Int']['output'];
|
|
6362
|
+
statusType?: Maybe<ResponseStatusType>;
|
|
6363
|
+
};
|
|
6364
|
+
export type WorkerDeploymentRequests = {
|
|
6365
|
+
__typename?: 'WorkerDeploymentRequests';
|
|
6366
|
+
byBrowser: Array<WorkerDeploymentRequestsBrowserEdge>;
|
|
6367
|
+
byCacheStatus: Array<WorkerDeploymentRequestsCacheStatusEdge>;
|
|
6368
|
+
byContinent: Array<WorkerDeploymentRequestsContinentEdge>;
|
|
6369
|
+
byMethod: Array<WorkerDeploymentRequestsMethodEdge>;
|
|
6370
|
+
byOS: Array<WorkerDeploymentRequestsOperatingSystemEdge>;
|
|
6371
|
+
byStatusType: Array<WorkerDeploymentRequestsStatusTypeEdge>;
|
|
6372
|
+
interval: Scalars['Int']['output'];
|
|
6373
|
+
minRowsWithoutLimit: Scalars['Int']['output'];
|
|
6374
|
+
nodes: Array<WorkerDeploymentRequestNode>;
|
|
6375
|
+
summary: WorkerDeploymentRequestsAggregationNode;
|
|
6376
|
+
timeseries: Array<WorkerDeploymentRequestsTimeseriesEdge>;
|
|
6377
|
+
};
|
|
6378
|
+
export type WorkerDeploymentRequestsAggregationNode = {
|
|
6379
|
+
__typename?: 'WorkerDeploymentRequestsAggregationNode';
|
|
6215
6380
|
assetsPerMs?: Maybe<Scalars['Float']['output']>;
|
|
6216
6381
|
assetsSum: Scalars['Int']['output'];
|
|
6217
6382
|
cacheHitRatio: Scalars['Float']['output'];
|
|
@@ -6250,78 +6415,47 @@ export type WorkerDeploymentMetricsNode = {
|
|
|
6250
6415
|
staleWhileRevalidatePerMs?: Maybe<Scalars['Float']['output']>;
|
|
6251
6416
|
staleWhileRevalidateSum: Scalars['Int']['output'];
|
|
6252
6417
|
};
|
|
6253
|
-
export type
|
|
6254
|
-
__typename?: '
|
|
6255
|
-
|
|
6256
|
-
|
|
6257
|
-
};
|
|
6258
|
-
export type WorkerDeploymentMetricsTimeseriesEdge = {
|
|
6259
|
-
__typename?: 'WorkerDeploymentMetricsTimeseriesEdge';
|
|
6260
|
-
byBrowser: Array<WorkerDeploymentMetricsBrowserEdge>;
|
|
6261
|
-
byContinent: Array<WorkerDeploymentMetricsContinentEdge>;
|
|
6262
|
-
byOS: Array<WorkerDeploymentMetricsOperatingSystemEdge>;
|
|
6263
|
-
node?: Maybe<WorkerDeploymentMetricsNode>;
|
|
6264
|
-
timestamp: Scalars['DateTime']['output'];
|
|
6265
|
-
};
|
|
6266
|
-
export type WorkerDeploymentQuery = {
|
|
6267
|
-
__typename?: 'WorkerDeploymentQuery';
|
|
6268
|
-
byId: WorkerDeployment;
|
|
6269
|
-
};
|
|
6270
|
-
export type WorkerDeploymentQueryByIdArgs = {
|
|
6271
|
-
id: Scalars['ID']['input'];
|
|
6418
|
+
export type WorkerDeploymentRequestsBrowserEdge = {
|
|
6419
|
+
__typename?: 'WorkerDeploymentRequestsBrowserEdge';
|
|
6420
|
+
browser?: Maybe<UserAgentBrowser>;
|
|
6421
|
+
node: WorkerDeploymentRequestsAggregationNode;
|
|
6272
6422
|
};
|
|
6273
|
-
export type
|
|
6274
|
-
__typename?: '
|
|
6275
|
-
|
|
6276
|
-
|
|
6277
|
-
node: WorkerDeploymentRequestNode;
|
|
6423
|
+
export type WorkerDeploymentRequestsCacheStatusEdge = {
|
|
6424
|
+
__typename?: 'WorkerDeploymentRequestsCacheStatusEdge';
|
|
6425
|
+
cacheStatus?: Maybe<ResponseCacheStatus>;
|
|
6426
|
+
node: WorkerDeploymentRequestsAggregationNode;
|
|
6278
6427
|
};
|
|
6279
|
-
export
|
|
6280
|
-
|
|
6281
|
-
|
|
6282
|
-
|
|
6283
|
-
}
|
|
6284
|
-
export type WorkerDeploymentRequestLocation = {
|
|
6285
|
-
__typename?: 'WorkerDeploymentRequestLocation';
|
|
6286
|
-
continent?: Maybe<ContinentCode>;
|
|
6287
|
-
countryCode?: Maybe<Scalars['String']['output']>;
|
|
6288
|
-
regionCode?: Maybe<Scalars['String']['output']>;
|
|
6428
|
+
export type WorkerDeploymentRequestsContinentEdge = {
|
|
6429
|
+
__typename?: 'WorkerDeploymentRequestsContinentEdge';
|
|
6430
|
+
continent: ContinentCode;
|
|
6431
|
+
node: WorkerDeploymentRequestsAggregationNode;
|
|
6289
6432
|
};
|
|
6290
|
-
export type
|
|
6291
|
-
__typename?: '
|
|
6292
|
-
browser?: Maybe<UserAgentBrowser>;
|
|
6293
|
-
browserVersion?: Maybe<Scalars['String']['output']>;
|
|
6294
|
-
hasCustomDomainOrigin: Scalars['Boolean']['output'];
|
|
6295
|
-
id: Scalars['ID']['output'];
|
|
6296
|
-
isVerifiedBot: Scalars['Boolean']['output'];
|
|
6297
|
-
kind?: Maybe<WorkerDeploymentRequestKind>;
|
|
6298
|
-
location?: Maybe<WorkerDeploymentRequestLocation>;
|
|
6433
|
+
export type WorkerDeploymentRequestsMethodEdge = {
|
|
6434
|
+
__typename?: 'WorkerDeploymentRequestsMethodEdge';
|
|
6299
6435
|
method: Scalars['String']['output'];
|
|
6300
|
-
|
|
6301
|
-
pathname: Scalars['String']['output'];
|
|
6302
|
-
scriptName: Scalars['String']['output'];
|
|
6303
|
-
search?: Maybe<Scalars['String']['output']>;
|
|
6304
|
-
status: Scalars['Int']['output'];
|
|
6305
|
-
timestamp: Scalars['DateTime']['output'];
|
|
6306
|
-
wallTime: Scalars['Int']['output'];
|
|
6436
|
+
node: WorkerDeploymentRequestsAggregationNode;
|
|
6307
6437
|
};
|
|
6308
|
-
export type
|
|
6309
|
-
__typename?: '
|
|
6310
|
-
|
|
6311
|
-
|
|
6438
|
+
export type WorkerDeploymentRequestsOperatingSystemEdge = {
|
|
6439
|
+
__typename?: 'WorkerDeploymentRequestsOperatingSystemEdge';
|
|
6440
|
+
node: WorkerDeploymentRequestsAggregationNode;
|
|
6441
|
+
os?: Maybe<UserAgentOs>;
|
|
6312
6442
|
};
|
|
6313
|
-
export type
|
|
6314
|
-
|
|
6315
|
-
|
|
6316
|
-
|
|
6317
|
-
|
|
6318
|
-
|
|
6319
|
-
|
|
6443
|
+
export type WorkerDeploymentRequestsStatusTypeEdge = {
|
|
6444
|
+
__typename?: 'WorkerDeploymentRequestsStatusTypeEdge';
|
|
6445
|
+
node: WorkerDeploymentRequestsAggregationNode;
|
|
6446
|
+
statusType?: Maybe<ResponseStatusType>;
|
|
6447
|
+
};
|
|
6448
|
+
export type WorkerDeploymentRequestsTimeseriesEdge = {
|
|
6449
|
+
__typename?: 'WorkerDeploymentRequestsTimeseriesEdge';
|
|
6450
|
+
byBrowser: Array<WorkerDeploymentRequestsBrowserEdge>;
|
|
6451
|
+
byCacheStatus: Array<WorkerDeploymentRequestsCacheStatusEdge>;
|
|
6452
|
+
byContinent: Array<WorkerDeploymentRequestsContinentEdge>;
|
|
6453
|
+
byMethod: Array<WorkerDeploymentRequestsMethodEdge>;
|
|
6454
|
+
byOS: Array<WorkerDeploymentRequestsOperatingSystemEdge>;
|
|
6455
|
+
byStatusType: Array<WorkerDeploymentRequestsStatusTypeEdge>;
|
|
6456
|
+
node?: Maybe<WorkerDeploymentRequestsAggregationNode>;
|
|
6457
|
+
timestamp: Scalars['DateTime']['output'];
|
|
6320
6458
|
};
|
|
6321
|
-
export declare enum WorkerDeploymentRequestsInclude {
|
|
6322
|
-
Assets = "ASSETS",
|
|
6323
|
-
Routes = "ROUTES"
|
|
6324
|
-
}
|
|
6325
6459
|
export type WorkerDeploymentsConnection = {
|
|
6326
6460
|
__typename?: 'WorkerDeploymentsConnection';
|
|
6327
6461
|
edges: Array<WorkerDeploymentEdge>;
|
|
@@ -13769,6 +13903,20 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
13769
13903
|
} | null;
|
|
13770
13904
|
} | null;
|
|
13771
13905
|
};
|
|
13906
|
+
export type WorkerDeploymentFragment = {
|
|
13907
|
+
__typename?: 'WorkerDeployment';
|
|
13908
|
+
id: string;
|
|
13909
|
+
url: string;
|
|
13910
|
+
deploymentIdentifier: any;
|
|
13911
|
+
deploymentDomain: string;
|
|
13912
|
+
createdAt: any;
|
|
13913
|
+
};
|
|
13914
|
+
export type WorkerDeploymentAliasFragment = {
|
|
13915
|
+
__typename?: 'WorkerDeploymentAlias';
|
|
13916
|
+
id: string;
|
|
13917
|
+
aliasName?: any | null;
|
|
13918
|
+
url: string;
|
|
13919
|
+
};
|
|
13772
13920
|
export type CreateDeploymentUrlMutationVariables = Exact<{
|
|
13773
13921
|
appId: Scalars['ID']['input'];
|
|
13774
13922
|
deploymentIdentifier?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -13800,3 +13948,81 @@ export type AssignDevDomainNameMutation = {
|
|
|
13800
13948
|
};
|
|
13801
13949
|
};
|
|
13802
13950
|
};
|
|
13951
|
+
export type AssignAliasMutationVariables = Exact<{
|
|
13952
|
+
appId: Scalars['ID']['input'];
|
|
13953
|
+
deploymentId: Scalars['ID']['input'];
|
|
13954
|
+
aliasName?: InputMaybe<Scalars['WorkerDeploymentIdentifier']['input']>;
|
|
13955
|
+
}>;
|
|
13956
|
+
export type AssignAliasMutation = {
|
|
13957
|
+
__typename?: 'RootMutation';
|
|
13958
|
+
deployments: {
|
|
13959
|
+
__typename?: 'DeploymentsMutation';
|
|
13960
|
+
assignAlias: {
|
|
13961
|
+
__typename?: 'WorkerDeploymentAlias';
|
|
13962
|
+
id: string;
|
|
13963
|
+
aliasName?: any | null;
|
|
13964
|
+
url: string;
|
|
13965
|
+
workerDeployment: {
|
|
13966
|
+
__typename?: 'WorkerDeployment';
|
|
13967
|
+
id: string;
|
|
13968
|
+
url: string;
|
|
13969
|
+
deploymentIdentifier: any;
|
|
13970
|
+
deploymentDomain: string;
|
|
13971
|
+
createdAt: any;
|
|
13972
|
+
};
|
|
13973
|
+
};
|
|
13974
|
+
};
|
|
13975
|
+
};
|
|
13976
|
+
export type PaginatedWorkerDeploymentsQueryVariables = Exact<{
|
|
13977
|
+
appId: Scalars['String']['input'];
|
|
13978
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13979
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13980
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13981
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
13982
|
+
}>;
|
|
13983
|
+
export type PaginatedWorkerDeploymentsQuery = {
|
|
13984
|
+
__typename?: 'RootQuery';
|
|
13985
|
+
app: {
|
|
13986
|
+
__typename?: 'AppQuery';
|
|
13987
|
+
byId: {
|
|
13988
|
+
__typename?: 'App';
|
|
13989
|
+
id: string;
|
|
13990
|
+
workerDeployments: {
|
|
13991
|
+
__typename?: 'WorkerDeploymentsConnection';
|
|
13992
|
+
pageInfo: {
|
|
13993
|
+
__typename?: 'PageInfo';
|
|
13994
|
+
hasNextPage: boolean;
|
|
13995
|
+
hasPreviousPage: boolean;
|
|
13996
|
+
startCursor?: string | null;
|
|
13997
|
+
endCursor?: string | null;
|
|
13998
|
+
};
|
|
13999
|
+
edges: Array<{
|
|
14000
|
+
__typename?: 'WorkerDeploymentEdge';
|
|
14001
|
+
cursor: string;
|
|
14002
|
+
node: {
|
|
14003
|
+
__typename?: 'WorkerDeployment';
|
|
14004
|
+
id: string;
|
|
14005
|
+
url: string;
|
|
14006
|
+
deploymentIdentifier: any;
|
|
14007
|
+
deploymentDomain: string;
|
|
14008
|
+
createdAt: any;
|
|
14009
|
+
};
|
|
14010
|
+
}>;
|
|
14011
|
+
};
|
|
14012
|
+
};
|
|
14013
|
+
};
|
|
14014
|
+
};
|
|
14015
|
+
export type SuggestedDevDomainNameQueryVariables = Exact<{
|
|
14016
|
+
appId: Scalars['String']['input'];
|
|
14017
|
+
}>;
|
|
14018
|
+
export type SuggestedDevDomainNameQuery = {
|
|
14019
|
+
__typename?: 'RootQuery';
|
|
14020
|
+
app: {
|
|
14021
|
+
__typename?: 'AppQuery';
|
|
14022
|
+
byId: {
|
|
14023
|
+
__typename?: 'App';
|
|
14024
|
+
id: string;
|
|
14025
|
+
suggestedDevDomainName: string;
|
|
14026
|
+
};
|
|
14027
|
+
};
|
|
14028
|
+
};
|