@forge/cli-shared 3.10.3-next.0 → 3.11.0-next.10
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/CHANGELOG.md +69 -0
- package/out/graphql/graphql-client.d.ts +3 -1
- package/out/graphql/graphql-client.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +431 -42
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +29 -4
- package/out/graphql/minimal-graphql-runner.d.ts +0 -2
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +1 -5
- package/out/graphql/mutation-aware-graphql-client.d.ts +4 -3
- package/out/graphql/mutation-aware-graphql-client.d.ts.map +1 -1
- package/out/graphql/mutation-aware-graphql-client.js +3 -6
- package/out/shared/environment.d.ts +3 -1
- package/out/shared/environment.d.ts.map +1 -1
- package/out/shared/environment.js +15 -4
- package/out/shared/error-handling.d.ts +4 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +12 -1
- package/out/ui/text.d.ts +24 -6
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +24 -6
- package/package.json +6 -6
|
@@ -350,9 +350,11 @@ export declare enum ApiGroup {
|
|
|
350
350
|
VirtualAgent = "VIRTUAL_AGENT",
|
|
351
351
|
CollaborationGraph = "COLLABORATION_GRAPH",
|
|
352
352
|
DevopsThirdParty = "DEVOPS_THIRD_PARTY",
|
|
353
|
+
DevopsToolchain = "DEVOPS_TOOLCHAIN",
|
|
353
354
|
CloudAdmin = "CLOUD_ADMIN",
|
|
354
355
|
CustomerService = "CUSTOMER_SERVICE",
|
|
355
|
-
SurfacePlatform = "SURFACE_PLATFORM"
|
|
356
|
+
SurfacePlatform = "SURFACE_PLATFORM",
|
|
357
|
+
AppRecommendations = "APP_RECOMMENDATIONS"
|
|
356
358
|
}
|
|
357
359
|
export declare type App = {
|
|
358
360
|
__typename?: 'App';
|
|
@@ -2108,6 +2110,8 @@ export declare type CompassCatalogMutationApi = {
|
|
|
2108
2110
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
2109
2111
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
2110
2112
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
2113
|
+
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
2114
|
+
deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
|
|
2111
2115
|
};
|
|
2112
2116
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
2113
2117
|
cloudId: Scalars['ID'];
|
|
@@ -2276,6 +2280,12 @@ export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
|
2276
2280
|
export declare type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
|
|
2277
2281
|
input: CreateCompassComponentFromTemplateInput;
|
|
2278
2282
|
};
|
|
2283
|
+
export declare type CompassCatalogMutationApiCreateStarredComponentArgs = {
|
|
2284
|
+
input: CreateCompassStarredComponentInput;
|
|
2285
|
+
};
|
|
2286
|
+
export declare type CompassCatalogMutationApiDeleteStarredComponentArgs = {
|
|
2287
|
+
input: DeleteCompassStarredComponentInput;
|
|
2288
|
+
};
|
|
2279
2289
|
export declare type CompassCatalogQueryApi = {
|
|
2280
2290
|
__typename?: 'CompassCatalogQueryApi';
|
|
2281
2291
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -2296,6 +2306,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
2296
2306
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
2297
2307
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
2298
2308
|
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
2309
|
+
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
2299
2310
|
};
|
|
2300
2311
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
2301
2312
|
id: Scalars['ID'];
|
|
@@ -2363,6 +2374,9 @@ export declare type CompassCatalogQueryApiMetricValuesTimeSeriesArgs = {
|
|
|
2363
2374
|
cloudId: Scalars['ID'];
|
|
2364
2375
|
metricSourceId: Scalars['ID'];
|
|
2365
2376
|
};
|
|
2377
|
+
export declare type CompassCatalogQueryApiStarredComponentsArgs = {
|
|
2378
|
+
cloudId: Scalars['ID'];
|
|
2379
|
+
};
|
|
2366
2380
|
export declare type CompassChangeMetadata = {
|
|
2367
2381
|
__typename?: 'CompassChangeMetadata';
|
|
2368
2382
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -3551,6 +3565,7 @@ export declare type CompassScorecardAppliedToComponentsThresholdFilter = {
|
|
|
3551
3565
|
export declare type CompassScorecardComponentStats = {
|
|
3552
3566
|
__typename?: 'CompassScorecardComponentStats';
|
|
3553
3567
|
componentStats?: Maybe<CompassComponentStats>;
|
|
3568
|
+
scorecardCriteriaStats?: Maybe<Array<CompassScorecardCriteriaStats>>;
|
|
3554
3569
|
totalCount: Scalars['Int'];
|
|
3555
3570
|
};
|
|
3556
3571
|
export declare type CompassScorecardComponentStatsQueryResult = CompassScorecardComponentStats | QueryError;
|
|
@@ -3579,6 +3594,14 @@ export declare type CompassScorecardCriteriaScore = {
|
|
|
3579
3594
|
export declare type CompassScorecardCriteriaScoreQuery = {
|
|
3580
3595
|
componentId: Scalars['ID'];
|
|
3581
3596
|
};
|
|
3597
|
+
export declare type CompassScorecardCriteriaStats = {
|
|
3598
|
+
__typename?: 'CompassScorecardCriteriaStats';
|
|
3599
|
+
scorecardCriteriaId: Scalars['ID'];
|
|
3600
|
+
weight: Scalars['Int'];
|
|
3601
|
+
passing: Scalars['Int'];
|
|
3602
|
+
failing: Scalars['Int'];
|
|
3603
|
+
error: Scalars['Int'];
|
|
3604
|
+
};
|
|
3582
3605
|
export declare type CompassScorecardEdge = {
|
|
3583
3606
|
__typename?: 'CompassScorecardEdge';
|
|
3584
3607
|
cursor: Scalars['String'];
|
|
@@ -3681,6 +3704,18 @@ export declare type CompassSloMetricSourceConfigurationInput = {
|
|
|
3681
3704
|
goodQuery: Scalars['String'];
|
|
3682
3705
|
badQuery: Scalars['String'];
|
|
3683
3706
|
};
|
|
3707
|
+
export declare type CompassStarredComponentConnection = {
|
|
3708
|
+
__typename?: 'CompassStarredComponentConnection';
|
|
3709
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
3710
|
+
edges?: Maybe<Array<CompassStarredComponentEdge>>;
|
|
3711
|
+
pageInfo: PageInfo;
|
|
3712
|
+
};
|
|
3713
|
+
export declare type CompassStarredComponentEdge = {
|
|
3714
|
+
__typename?: 'CompassStarredComponentEdge';
|
|
3715
|
+
cursor: Scalars['String'];
|
|
3716
|
+
node?: Maybe<CompassComponent>;
|
|
3717
|
+
};
|
|
3718
|
+
export declare type CompassStarredComponentsResult = CompassStarredComponentConnection | QueryError;
|
|
3684
3719
|
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
3685
3720
|
cloudId: Scalars['ID'];
|
|
3686
3721
|
forgeAppId: Scalars['ID'];
|
|
@@ -5385,6 +5420,14 @@ export declare type CreateCompassScorecardPayload = Payload & {
|
|
|
5385
5420
|
errors?: Maybe<Array<MutationError>>;
|
|
5386
5421
|
scorecardDetails?: Maybe<CompassScorecard>;
|
|
5387
5422
|
};
|
|
5423
|
+
export declare type CreateCompassStarredComponentInput = {
|
|
5424
|
+
componentId: Scalars['ID'];
|
|
5425
|
+
};
|
|
5426
|
+
export declare type CreateCompassStarredComponentPayload = Payload & {
|
|
5427
|
+
__typename?: 'CreateCompassStarredComponentPayload';
|
|
5428
|
+
success: Scalars['Boolean'];
|
|
5429
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5430
|
+
};
|
|
5388
5431
|
export declare type CreateCustomFilterInput = {
|
|
5389
5432
|
boardId: Scalars['ID'];
|
|
5390
5433
|
name: Scalars['String'];
|
|
@@ -5860,6 +5903,7 @@ export declare type CustomerServiceIndividualUpdateAttributeValuePayload = Paylo
|
|
|
5860
5903
|
__typename?: 'CustomerServiceIndividualUpdateAttributeValuePayload';
|
|
5861
5904
|
success: Scalars['Boolean'];
|
|
5862
5905
|
errors?: Maybe<Array<MutationError>>;
|
|
5906
|
+
attribute?: Maybe<CustomerServiceAttributeValue>;
|
|
5863
5907
|
};
|
|
5864
5908
|
export declare type CustomerServiceMutationApi = {
|
|
5865
5909
|
__typename?: 'CustomerServiceMutationApi';
|
|
@@ -5951,6 +5995,7 @@ export declare type CustomerServiceOrganizationUpdateAttributeValuePayload = Pay
|
|
|
5951
5995
|
__typename?: 'CustomerServiceOrganizationUpdateAttributeValuePayload';
|
|
5952
5996
|
success: Scalars['Boolean'];
|
|
5953
5997
|
errors?: Maybe<Array<MutationError>>;
|
|
5998
|
+
attribute?: Maybe<CustomerServiceAttributeValue>;
|
|
5954
5999
|
};
|
|
5955
6000
|
export declare type CustomerServiceOrganizationUpdateInput = {
|
|
5956
6001
|
id: Scalars['ID'];
|
|
@@ -6044,6 +6089,15 @@ export declare type DateSearchInput = {
|
|
|
6044
6089
|
earliestStart?: Maybe<Scalars['String']>;
|
|
6045
6090
|
latestStart?: Maybe<Scalars['String']>;
|
|
6046
6091
|
};
|
|
6092
|
+
export declare type DeleteAppEnvironmentInput = {
|
|
6093
|
+
appAri: Scalars['ID'];
|
|
6094
|
+
environmentKey: Scalars['String'];
|
|
6095
|
+
};
|
|
6096
|
+
export declare type DeleteAppEnvironmentResponse = Payload & {
|
|
6097
|
+
__typename?: 'DeleteAppEnvironmentResponse';
|
|
6098
|
+
success: Scalars['Boolean'];
|
|
6099
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6100
|
+
};
|
|
6047
6101
|
export declare type DeleteAppEnvironmentVariableInput = {
|
|
6048
6102
|
environment: AppEnvironmentInput;
|
|
6049
6103
|
key: Scalars['String'];
|
|
@@ -6165,6 +6219,14 @@ export declare type DeleteCompassScorecardPayload = Payload & {
|
|
|
6165
6219
|
errors?: Maybe<Array<MutationError>>;
|
|
6166
6220
|
scorecardId: Scalars['ID'];
|
|
6167
6221
|
};
|
|
6222
|
+
export declare type DeleteCompassStarredComponentInput = {
|
|
6223
|
+
componentId: Scalars['ID'];
|
|
6224
|
+
};
|
|
6225
|
+
export declare type DeleteCompassStarredComponentPayload = Payload & {
|
|
6226
|
+
__typename?: 'DeleteCompassStarredComponentPayload';
|
|
6227
|
+
success: Scalars['Boolean'];
|
|
6228
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6229
|
+
};
|
|
6168
6230
|
export declare type DeleteCustomFilterInput = {
|
|
6169
6231
|
boardId: Scalars['ID'];
|
|
6170
6232
|
customFilterId: Scalars['String'];
|
|
@@ -6382,6 +6444,7 @@ export declare type DevOps = {
|
|
|
6382
6444
|
providers?: Maybe<DevOpsProviders>;
|
|
6383
6445
|
providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
6384
6446
|
ariGraph?: Maybe<AriGraph>;
|
|
6447
|
+
graph?: Maybe<Graph>;
|
|
6385
6448
|
toolchain?: Maybe<Toolchain>;
|
|
6386
6449
|
};
|
|
6387
6450
|
export declare type DevOpsEntitiesByAssociationsArgs = {
|
|
@@ -6738,6 +6801,8 @@ export declare type DevOpsMutation = {
|
|
|
6738
6801
|
__typename?: 'DevOpsMutation';
|
|
6739
6802
|
_empty?: Maybe<Scalars['String']>;
|
|
6740
6803
|
ariGraph?: Maybe<AriGraphMutation>;
|
|
6804
|
+
graph?: Maybe<GraphMutation>;
|
|
6805
|
+
toolchain?: Maybe<ToolchainMutation>;
|
|
6741
6806
|
};
|
|
6742
6807
|
export declare type DevOpsMutation_EmptyArgs = {
|
|
6743
6808
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -7525,6 +7590,7 @@ export declare type EcosystemMutation = {
|
|
|
7525
7590
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
7526
7591
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
7527
7592
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
7593
|
+
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
7528
7594
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
7529
7595
|
};
|
|
7530
7596
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
@@ -7545,6 +7611,9 @@ export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
|
7545
7611
|
export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
7546
7612
|
input: CreateAppEnvironmentInput;
|
|
7547
7613
|
};
|
|
7614
|
+
export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
7615
|
+
input: DeleteAppEnvironmentInput;
|
|
7616
|
+
};
|
|
7548
7617
|
export declare type EcosystemMutationForgeAlertsArgs = {
|
|
7549
7618
|
appId: Scalars['ID'];
|
|
7550
7619
|
};
|
|
@@ -8302,6 +8371,98 @@ export declare enum GrantCheckProduct {
|
|
|
8302
8371
|
Compass = "COMPASS",
|
|
8303
8372
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
8304
8373
|
}
|
|
8374
|
+
export declare type Graph = {
|
|
8375
|
+
__typename?: 'Graph';
|
|
8376
|
+
issueAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
8377
|
+
issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
|
|
8378
|
+
issueAssociatedPrRelationship?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
|
|
8379
|
+
issueAssociatedPrRelationshipInverse?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
|
|
8380
|
+
};
|
|
8381
|
+
export declare type GraphIssueAssociatedPrArgs = {
|
|
8382
|
+
after?: Maybe<Scalars['String']>;
|
|
8383
|
+
first?: Maybe<Scalars['Int']>;
|
|
8384
|
+
from: Scalars['ID'];
|
|
8385
|
+
};
|
|
8386
|
+
export declare type GraphIssueAssociatedPrInverseArgs = {
|
|
8387
|
+
after?: Maybe<Scalars['String']>;
|
|
8388
|
+
first?: Maybe<Scalars['Int']>;
|
|
8389
|
+
to: Scalars['ID'];
|
|
8390
|
+
};
|
|
8391
|
+
export declare type GraphIssueAssociatedPrRelationshipArgs = {
|
|
8392
|
+
after?: Maybe<Scalars['String']>;
|
|
8393
|
+
first?: Maybe<Scalars['Int']>;
|
|
8394
|
+
from: Scalars['ID'];
|
|
8395
|
+
};
|
|
8396
|
+
export declare type GraphIssueAssociatedPrRelationshipInverseArgs = {
|
|
8397
|
+
after?: Maybe<Scalars['String']>;
|
|
8398
|
+
first?: Maybe<Scalars['Int']>;
|
|
8399
|
+
to: Scalars['ID'];
|
|
8400
|
+
};
|
|
8401
|
+
export declare type GraphCreateIssueAssociatedPrInput = {
|
|
8402
|
+
from: Scalars['ID'];
|
|
8403
|
+
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
8404
|
+
to: Scalars['ID'];
|
|
8405
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
8406
|
+
};
|
|
8407
|
+
export declare type GraphIssueAssociatedPrPayload = Payload & {
|
|
8408
|
+
__typename?: 'GraphIssueAssociatedPrPayload';
|
|
8409
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8410
|
+
issueAssociatedPrRelationship: Array<Maybe<GraphIssueAssociatedPrRelationship>>;
|
|
8411
|
+
success: Scalars['Boolean'];
|
|
8412
|
+
};
|
|
8413
|
+
export declare type GraphIssueAssociatedPrRelationship = Node & {
|
|
8414
|
+
__typename?: 'GraphIssueAssociatedPrRelationship';
|
|
8415
|
+
from: GraphJiraIssue;
|
|
8416
|
+
id: Scalars['ID'];
|
|
8417
|
+
lastUpdated: Scalars['DateTime'];
|
|
8418
|
+
to: GraphJiraPullRequest;
|
|
8419
|
+
};
|
|
8420
|
+
export declare type GraphIssueAssociatedPrRelationshipConnection = {
|
|
8421
|
+
__typename?: 'GraphIssueAssociatedPrRelationshipConnection';
|
|
8422
|
+
edges: Array<Maybe<GraphIssueAssociatedPrRelationshipEdge>>;
|
|
8423
|
+
pageInfo: PageInfo;
|
|
8424
|
+
};
|
|
8425
|
+
export declare type GraphIssueAssociatedPrRelationshipEdge = {
|
|
8426
|
+
__typename?: 'GraphIssueAssociatedPrRelationshipEdge';
|
|
8427
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8428
|
+
node: GraphIssueAssociatedPrRelationship;
|
|
8429
|
+
};
|
|
8430
|
+
export declare type GraphJiraIssue = Node & {
|
|
8431
|
+
__typename?: 'GraphJiraIssue';
|
|
8432
|
+
id: Scalars['ID'];
|
|
8433
|
+
};
|
|
8434
|
+
export declare type GraphJiraIssueConnection = {
|
|
8435
|
+
__typename?: 'GraphJiraIssueConnection';
|
|
8436
|
+
edges: Array<Maybe<GraphJiraIssueEdge>>;
|
|
8437
|
+
pageInfo: PageInfo;
|
|
8438
|
+
};
|
|
8439
|
+
export declare type GraphJiraIssueEdge = {
|
|
8440
|
+
__typename?: 'GraphJiraIssueEdge';
|
|
8441
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8442
|
+
node: GraphJiraIssue;
|
|
8443
|
+
};
|
|
8444
|
+
export declare type GraphJiraPullRequest = Node & {
|
|
8445
|
+
__typename?: 'GraphJiraPullRequest';
|
|
8446
|
+
id: Scalars['ID'];
|
|
8447
|
+
pullRequest?: Maybe<DevOpsPullRequestDetails>;
|
|
8448
|
+
};
|
|
8449
|
+
export declare type GraphJiraPullRequestConnection = {
|
|
8450
|
+
__typename?: 'GraphJiraPullRequestConnection';
|
|
8451
|
+
edges: Array<Maybe<GraphJiraPullRequestEdge>>;
|
|
8452
|
+
pageInfo: PageInfo;
|
|
8453
|
+
};
|
|
8454
|
+
export declare type GraphJiraPullRequestEdge = {
|
|
8455
|
+
__typename?: 'GraphJiraPullRequestEdge';
|
|
8456
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8457
|
+
node: GraphJiraPullRequest;
|
|
8458
|
+
};
|
|
8459
|
+
export declare type GraphMutation = {
|
|
8460
|
+
__typename?: 'GraphMutation';
|
|
8461
|
+
createIssueAssociatedPr?: Maybe<GraphIssueAssociatedPrPayload>;
|
|
8462
|
+
};
|
|
8463
|
+
export declare type GraphMutationCreateIssueAssociatedPrArgs = {
|
|
8464
|
+
input: GraphCreateIssueAssociatedPrInput;
|
|
8465
|
+
};
|
|
8305
8466
|
export declare type HasPageInfo = {
|
|
8306
8467
|
pageInfo: PageInfo;
|
|
8307
8468
|
};
|
|
@@ -8311,7 +8472,10 @@ export declare type HasTotal = {
|
|
|
8311
8472
|
export declare type HelpCenter = Node & {
|
|
8312
8473
|
__typename?: 'HelpCenter';
|
|
8313
8474
|
id: Scalars['ID'];
|
|
8475
|
+
type?: Maybe<HelpCenterType>;
|
|
8476
|
+
slug?: Maybe<Scalars['String']>;
|
|
8314
8477
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
8478
|
+
layout?: Maybe<HelpCenterHomePageLayout>;
|
|
8315
8479
|
};
|
|
8316
8480
|
export declare type HelpCenterBulkCreateTopicsInput = {
|
|
8317
8481
|
helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
|
|
@@ -8342,6 +8506,10 @@ export declare type HelpCenterDeleteUpdateTopicPayload = Payload & {
|
|
|
8342
8506
|
topicIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedTopicIds>>;
|
|
8343
8507
|
};
|
|
8344
8508
|
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError;
|
|
8509
|
+
export declare type HelpCenterHomePageLayout = {
|
|
8510
|
+
__typename?: 'HelpCenterHomePageLayout';
|
|
8511
|
+
layoutId: Scalars['ID'];
|
|
8512
|
+
};
|
|
8345
8513
|
export declare type HelpCenterMutationApi = {
|
|
8346
8514
|
__typename?: 'HelpCenterMutationApi';
|
|
8347
8515
|
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
@@ -8432,6 +8600,9 @@ export declare type HelpCenterTopicItemInput = {
|
|
|
8432
8600
|
ari: Scalars['ID'];
|
|
8433
8601
|
};
|
|
8434
8602
|
export declare type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
8603
|
+
export declare enum HelpCenterType {
|
|
8604
|
+
Advanced = "ADVANCED"
|
|
8605
|
+
}
|
|
8435
8606
|
export declare type HelpCenterUpdateTopicInput = {
|
|
8436
8607
|
productName: Scalars['String'];
|
|
8437
8608
|
topicId: Scalars['ID'];
|
|
@@ -8449,6 +8620,145 @@ export declare type HelpCenterUpdateTopicsOrderPayload = Payload & {
|
|
|
8449
8620
|
success: Scalars['Boolean'];
|
|
8450
8621
|
errors?: Maybe<Array<MutationError>>;
|
|
8451
8622
|
};
|
|
8623
|
+
export declare type HelpLayout = Node & {
|
|
8624
|
+
__typename?: 'HelpLayout';
|
|
8625
|
+
id: Scalars['ID'];
|
|
8626
|
+
sections?: Maybe<HelpLayoutSectionConnection>;
|
|
8627
|
+
};
|
|
8628
|
+
export declare type HelpLayoutSectionsArgs = {
|
|
8629
|
+
first?: Maybe<Scalars['Int']>;
|
|
8630
|
+
after?: Maybe<Scalars['String']>;
|
|
8631
|
+
};
|
|
8632
|
+
export declare type HelpLayoutCell = {
|
|
8633
|
+
__typename?: 'HelpLayoutCell';
|
|
8634
|
+
span: Scalars['Int'];
|
|
8635
|
+
elements?: Maybe<Array<Maybe<HelpLayoutElement>>>;
|
|
8636
|
+
};
|
|
8637
|
+
export declare type HelpLayoutCellElementsArgs = {
|
|
8638
|
+
supported: Array<HelpLayoutElementTypeName>;
|
|
8639
|
+
};
|
|
8640
|
+
export declare type HelpLayoutCellInput = {
|
|
8641
|
+
span: Scalars['Int'];
|
|
8642
|
+
elements: Array<HelpLayoutElementInput>;
|
|
8643
|
+
};
|
|
8644
|
+
export declare type HelpLayoutCreationInput = {
|
|
8645
|
+
sections: Array<HelpLayoutSectionInput>;
|
|
8646
|
+
};
|
|
8647
|
+
export declare type HelpLayoutElement = HelpLayoutTextElement | HelpLayoutImageElement | HelpLayoutHeroElement;
|
|
8648
|
+
export declare type HelpLayoutElementInput = {
|
|
8649
|
+
elementType: HelpLayoutElementTypeInput;
|
|
8650
|
+
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
8651
|
+
textConfigInput?: Maybe<HelpLayoutTextConfigInput>;
|
|
8652
|
+
};
|
|
8653
|
+
export declare type HelpLayoutElementType = {
|
|
8654
|
+
name?: Maybe<HelpLayoutElementTypeName>;
|
|
8655
|
+
displayName?: Maybe<Scalars['String']>;
|
|
8656
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
8657
|
+
};
|
|
8658
|
+
export declare enum HelpLayoutElementTypeInput {
|
|
8659
|
+
Image = "IMAGE",
|
|
8660
|
+
Text = "TEXT"
|
|
8661
|
+
}
|
|
8662
|
+
export declare enum HelpLayoutElementTypeName {
|
|
8663
|
+
Image = "IMAGE",
|
|
8664
|
+
Text = "TEXT",
|
|
8665
|
+
Hero = "HERO"
|
|
8666
|
+
}
|
|
8667
|
+
export declare type HelpLayoutHeroElement = {
|
|
8668
|
+
__typename?: 'HelpLayoutHeroElement';
|
|
8669
|
+
config?: Maybe<HelpLayoutHeroElementConfig>;
|
|
8670
|
+
};
|
|
8671
|
+
export declare type HelpLayoutHeroElementConfig = {
|
|
8672
|
+
__typename?: 'HelpLayoutHeroElementConfig';
|
|
8673
|
+
header?: Maybe<Scalars['String']>;
|
|
8674
|
+
isSearchBarShown?: Maybe<Scalars['Boolean']>;
|
|
8675
|
+
backgroundImageUrl?: Maybe<Scalars['String']>;
|
|
8676
|
+
};
|
|
8677
|
+
export declare type HelpLayoutHeroElementType = HelpLayoutElementType & {
|
|
8678
|
+
__typename?: 'HelpLayoutHeroElementType';
|
|
8679
|
+
name?: Maybe<HelpLayoutElementTypeName>;
|
|
8680
|
+
displayName?: Maybe<Scalars['String']>;
|
|
8681
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
8682
|
+
};
|
|
8683
|
+
export declare type HelpLayoutImageConfigInput = {
|
|
8684
|
+
fileId?: Maybe<Scalars['String']>;
|
|
8685
|
+
altText?: Maybe<Scalars['String']>;
|
|
8686
|
+
caption?: Maybe<Scalars['String']>;
|
|
8687
|
+
};
|
|
8688
|
+
export declare type HelpLayoutImageElement = {
|
|
8689
|
+
__typename?: 'HelpLayoutImageElement';
|
|
8690
|
+
config?: Maybe<HelpLayoutImageElementConfig>;
|
|
8691
|
+
};
|
|
8692
|
+
export declare type HelpLayoutImageElementConfig = {
|
|
8693
|
+
__typename?: 'HelpLayoutImageElementConfig';
|
|
8694
|
+
fileId?: Maybe<Scalars['String']>;
|
|
8695
|
+
altText?: Maybe<Scalars['String']>;
|
|
8696
|
+
caption?: Maybe<Scalars['String']>;
|
|
8697
|
+
};
|
|
8698
|
+
export declare type HelpLayoutImageElementType = HelpLayoutElementType & {
|
|
8699
|
+
__typename?: 'HelpLayoutImageElementType';
|
|
8700
|
+
name?: Maybe<HelpLayoutElementTypeName>;
|
|
8701
|
+
displayName?: Maybe<Scalars['String']>;
|
|
8702
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
8703
|
+
};
|
|
8704
|
+
export declare type HelpLayoutMutationApi = {
|
|
8705
|
+
__typename?: 'HelpLayoutMutationApi';
|
|
8706
|
+
createLayout: Scalars['ID'];
|
|
8707
|
+
deleteLayout?: Maybe<Scalars['Boolean']>;
|
|
8708
|
+
updateLayout?: Maybe<Scalars['Boolean']>;
|
|
8709
|
+
};
|
|
8710
|
+
export declare type HelpLayoutMutationApiCreateLayoutArgs = {
|
|
8711
|
+
input: HelpLayoutCreationInput;
|
|
8712
|
+
};
|
|
8713
|
+
export declare type HelpLayoutMutationApiDeleteLayoutArgs = {
|
|
8714
|
+
layoutId: Scalars['ID'];
|
|
8715
|
+
};
|
|
8716
|
+
export declare type HelpLayoutMutationApiUpdateLayoutArgs = {
|
|
8717
|
+
layoutId: Scalars['ID'];
|
|
8718
|
+
input: HelpLayoutCreationInput;
|
|
8719
|
+
};
|
|
8720
|
+
export declare type HelpLayoutQueryApi = {
|
|
8721
|
+
__typename?: 'HelpLayoutQueryApi';
|
|
8722
|
+
layout?: Maybe<HelpLayout>;
|
|
8723
|
+
elementTypes?: Maybe<Array<Maybe<HelpLayoutElementType>>>;
|
|
8724
|
+
};
|
|
8725
|
+
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
8726
|
+
id: Scalars['ID'];
|
|
8727
|
+
};
|
|
8728
|
+
export declare type HelpLayoutSectionConnection = {
|
|
8729
|
+
__typename?: 'HelpLayoutSectionConnection';
|
|
8730
|
+
edges?: Maybe<Array<Maybe<HelpLayoutSectionEdge>>>;
|
|
8731
|
+
pageInfo: PageInfo;
|
|
8732
|
+
};
|
|
8733
|
+
export declare type HelpLayoutSectionEdge = {
|
|
8734
|
+
__typename?: 'HelpLayoutSectionEdge';
|
|
8735
|
+
cursor: Scalars['String'];
|
|
8736
|
+
node?: Maybe<HelpLayoutSectionNode>;
|
|
8737
|
+
};
|
|
8738
|
+
export declare type HelpLayoutSectionInput = {
|
|
8739
|
+
cells: Array<HelpLayoutCellInput>;
|
|
8740
|
+
};
|
|
8741
|
+
export declare type HelpLayoutSectionNode = {
|
|
8742
|
+
__typename?: 'HelpLayoutSectionNode';
|
|
8743
|
+
cells?: Maybe<Array<Maybe<HelpLayoutCell>>>;
|
|
8744
|
+
};
|
|
8745
|
+
export declare type HelpLayoutTextConfigInput = {
|
|
8746
|
+
adf?: Maybe<Scalars['String']>;
|
|
8747
|
+
};
|
|
8748
|
+
export declare type HelpLayoutTextElement = {
|
|
8749
|
+
__typename?: 'HelpLayoutTextElement';
|
|
8750
|
+
config?: Maybe<HelpLayoutTextElementConfig>;
|
|
8751
|
+
};
|
|
8752
|
+
export declare type HelpLayoutTextElementConfig = {
|
|
8753
|
+
__typename?: 'HelpLayoutTextElementConfig';
|
|
8754
|
+
adf?: Maybe<Scalars['String']>;
|
|
8755
|
+
};
|
|
8756
|
+
export declare type HelpLayoutTextElementType = HelpLayoutElementType & {
|
|
8757
|
+
__typename?: 'HelpLayoutTextElementType';
|
|
8758
|
+
name?: Maybe<HelpLayoutElementTypeName>;
|
|
8759
|
+
displayName?: Maybe<Scalars['String']>;
|
|
8760
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
8761
|
+
};
|
|
8452
8762
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
8453
8763
|
__typename?: 'HelpObjectStoreArticle';
|
|
8454
8764
|
id: Scalars['ID'];
|
|
@@ -9405,6 +9715,7 @@ export declare type JiraCannedResponseUpdatePayload = Payload & {
|
|
|
9405
9715
|
export declare type JiraCascadingOption = {
|
|
9406
9716
|
__typename?: 'JiraCascadingOption';
|
|
9407
9717
|
parentOptionValue?: Maybe<JiraOption>;
|
|
9718
|
+
parentValue?: Maybe<JiraParentOption>;
|
|
9408
9719
|
childOptionValue?: Maybe<JiraOption>;
|
|
9409
9720
|
};
|
|
9410
9721
|
export declare type JiraCascadingOptions = {
|
|
@@ -9434,6 +9745,7 @@ export declare type JiraCascadingSelectField = Node & JiraIssueField & JiraIssue
|
|
|
9434
9745
|
description?: Maybe<Scalars['String']>;
|
|
9435
9746
|
cascadingOption?: Maybe<JiraCascadingOption>;
|
|
9436
9747
|
cascadingOptions?: Maybe<JiraCascadingOptionsConnection>;
|
|
9748
|
+
parentOptions?: Maybe<JiraParentOptionConnection>;
|
|
9437
9749
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9438
9750
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9439
9751
|
};
|
|
@@ -9443,6 +9755,13 @@ export declare type JiraCascadingSelectFieldCascadingOptionsArgs = {
|
|
|
9443
9755
|
last?: Maybe<Scalars['Int']>;
|
|
9444
9756
|
before?: Maybe<Scalars['String']>;
|
|
9445
9757
|
};
|
|
9758
|
+
export declare type JiraCascadingSelectFieldParentOptionsArgs = {
|
|
9759
|
+
first?: Maybe<Scalars['Int']>;
|
|
9760
|
+
after?: Maybe<Scalars['String']>;
|
|
9761
|
+
last?: Maybe<Scalars['Int']>;
|
|
9762
|
+
before?: Maybe<Scalars['String']>;
|
|
9763
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
9764
|
+
};
|
|
9446
9765
|
export declare type JiraCascadingSelectFieldOperationInput = {
|
|
9447
9766
|
operation: JiraSingleValueFieldOperations;
|
|
9448
9767
|
parentOption?: Maybe<Scalars['ID']>;
|
|
@@ -10520,7 +10839,7 @@ export declare type JiraGlobalPermission = {
|
|
|
10520
10839
|
};
|
|
10521
10840
|
export declare type JiraGlobalPermissionAddGroupGrantInput = {
|
|
10522
10841
|
key: Scalars['String'];
|
|
10523
|
-
|
|
10842
|
+
groupAri: Scalars['ID'];
|
|
10524
10843
|
};
|
|
10525
10844
|
export declare type JiraGlobalPermissionAddGroupGrantPayload = Payload & {
|
|
10526
10845
|
__typename?: 'JiraGlobalPermissionAddGroupGrantPayload';
|
|
@@ -10529,7 +10848,7 @@ export declare type JiraGlobalPermissionAddGroupGrantPayload = Payload & {
|
|
|
10529
10848
|
};
|
|
10530
10849
|
export declare type JiraGlobalPermissionDeleteGroupGrantInput = {
|
|
10531
10850
|
key: Scalars['String'];
|
|
10532
|
-
|
|
10851
|
+
groupAri: Scalars['ID'];
|
|
10533
10852
|
};
|
|
10534
10853
|
export declare type JiraGlobalPermissionDeleteGroupGrantPayload = Payload & {
|
|
10535
10854
|
__typename?: 'JiraGlobalPermissionDeleteGroupGrantPayload';
|
|
@@ -11498,9 +11817,11 @@ export declare type JiraJqlBuilder = {
|
|
|
11498
11817
|
};
|
|
11499
11818
|
export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
|
|
11500
11819
|
query?: Maybe<Scalars['String']>;
|
|
11820
|
+
viewContext?: Maybe<JiraJqlViewContext>;
|
|
11501
11821
|
};
|
|
11502
11822
|
export declare type JiraJqlBuilderHydrateJqlQueryForFilterArgs = {
|
|
11503
11823
|
id: Scalars['ID'];
|
|
11824
|
+
viewContext?: Maybe<JiraJqlViewContext>;
|
|
11504
11825
|
};
|
|
11505
11826
|
export declare type JiraJqlBuilderFieldsArgs = {
|
|
11506
11827
|
jqlContext?: Maybe<Scalars['String']>;
|
|
@@ -11522,6 +11843,7 @@ export declare type JiraJqlBuilderRecentFieldsArgs = {
|
|
|
11522
11843
|
export declare type JiraJqlBuilderFieldValuesArgs = {
|
|
11523
11844
|
jqlContext?: Maybe<Scalars['String']>;
|
|
11524
11845
|
jqlTerm: Scalars['String'];
|
|
11846
|
+
viewContext?: Maybe<JiraJqlViewContext>;
|
|
11525
11847
|
searchString?: Maybe<Scalars['String']>;
|
|
11526
11848
|
first?: Maybe<Scalars['Int']>;
|
|
11527
11849
|
after?: Maybe<Scalars['String']>;
|
|
@@ -12659,6 +12981,32 @@ export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFiel
|
|
|
12659
12981
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
12660
12982
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
12661
12983
|
};
|
|
12984
|
+
export declare type JiraParentOption = Node & {
|
|
12985
|
+
__typename?: 'JiraParentOption';
|
|
12986
|
+
id: Scalars['ID'];
|
|
12987
|
+
value?: Maybe<Scalars['String']>;
|
|
12988
|
+
isDisabled?: Maybe<Scalars['Boolean']>;
|
|
12989
|
+
childOptions?: Maybe<JiraOptionConnection>;
|
|
12990
|
+
};
|
|
12991
|
+
export declare type JiraParentOptionChildOptionsArgs = {
|
|
12992
|
+
first?: Maybe<Scalars['Int']>;
|
|
12993
|
+
after?: Maybe<Scalars['String']>;
|
|
12994
|
+
last?: Maybe<Scalars['Int']>;
|
|
12995
|
+
before?: Maybe<Scalars['String']>;
|
|
12996
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
12997
|
+
};
|
|
12998
|
+
export declare type JiraParentOptionConnection = {
|
|
12999
|
+
__typename?: 'JiraParentOptionConnection';
|
|
13000
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
13001
|
+
pageInfo: PageInfo;
|
|
13002
|
+
edges?: Maybe<Array<Maybe<JiraParentOptionEdge>>>;
|
|
13003
|
+
errors?: Maybe<Array<QueryError>>;
|
|
13004
|
+
};
|
|
13005
|
+
export declare type JiraParentOptionEdge = {
|
|
13006
|
+
__typename?: 'JiraParentOptionEdge';
|
|
13007
|
+
node?: Maybe<JiraParentOption>;
|
|
13008
|
+
cursor: Scalars['String'];
|
|
13009
|
+
};
|
|
12662
13010
|
export declare type JiraParentVisibility = {
|
|
12663
13011
|
__typename?: 'JiraParentVisibility';
|
|
12664
13012
|
hasEpicLinkFieldDependency?: Maybe<Scalars['Boolean']>;
|
|
@@ -16740,7 +17088,6 @@ export declare type Mutation = {
|
|
|
16740
17088
|
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
16741
17089
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
16742
17090
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
16743
|
-
createThirdPartyContainer?: Maybe<ThirdPartyCreateContainerPayload>;
|
|
16744
17091
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
16745
17092
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
16746
17093
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
@@ -16800,6 +17147,7 @@ export declare type Mutation = {
|
|
|
16800
17147
|
createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
|
|
16801
17148
|
updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
|
|
16802
17149
|
deleteJwmOverview?: Maybe<JiraWorkManagementDeleteOverviewPayload>;
|
|
17150
|
+
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
16803
17151
|
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
16804
17152
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
16805
17153
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
@@ -17098,9 +17446,6 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
17098
17446
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
17099
17447
|
id: Scalars['ID'];
|
|
17100
17448
|
};
|
|
17101
|
-
export declare type MutationCreateThirdPartyContainerArgs = {
|
|
17102
|
-
input: ThirdPartyCreateContainerInput;
|
|
17103
|
-
};
|
|
17104
17449
|
export declare type MutationWatchMarketplaceAppArgs = {
|
|
17105
17450
|
id: Scalars['ID'];
|
|
17106
17451
|
};
|
|
@@ -17266,6 +17611,9 @@ export declare type MutationDeleteJwmOverviewArgs = {
|
|
|
17266
17611
|
cloudId: Scalars['ID'];
|
|
17267
17612
|
input: JiraWorkManagementDeleteOverviewInput;
|
|
17268
17613
|
};
|
|
17614
|
+
export declare type MutationHelpLayoutArgs = {
|
|
17615
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
17616
|
+
};
|
|
17269
17617
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
17270
17618
|
input: CreateAppDeploymentUrlInput;
|
|
17271
17619
|
};
|
|
@@ -17655,6 +18003,18 @@ export declare type PartnerCatalogApi = {
|
|
|
17655
18003
|
export declare type PartnerCatalogApiPartnerOfferingDetailsArgs = {
|
|
17656
18004
|
where?: Maybe<PartnerOfferingFilter>;
|
|
17657
18005
|
};
|
|
18006
|
+
export declare type PartnerCloudApp = PartnerOfferingNode & {
|
|
18007
|
+
__typename?: 'PartnerCloudApp';
|
|
18008
|
+
key: Scalars['ID'];
|
|
18009
|
+
name?: Maybe<Scalars['String']>;
|
|
18010
|
+
sku?: Maybe<Scalars['String']>;
|
|
18011
|
+
level?: Maybe<Scalars['Int']>;
|
|
18012
|
+
supportedBillingSystems?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
18013
|
+
hostingType?: Maybe<Scalars['String']>;
|
|
18014
|
+
pricingType?: Maybe<Scalars['String']>;
|
|
18015
|
+
billingType?: Maybe<Scalars['String']>;
|
|
18016
|
+
parent?: Maybe<Scalars['String']>;
|
|
18017
|
+
};
|
|
17658
18018
|
export declare enum PartnerCloudLicenseType {
|
|
17659
18019
|
Academic = "ACADEMIC",
|
|
17660
18020
|
Commercial = "COMMERCIAL",
|
|
@@ -17674,6 +18034,11 @@ export declare type PartnerCloudProduct = PartnerCloudProductNode & {
|
|
|
17674
18034
|
offerings?: Maybe<Array<Maybe<PartnerOfferingItem>>>;
|
|
17675
18035
|
uncollectibleAction?: Maybe<PartnerUncollectibleAction>;
|
|
17676
18036
|
};
|
|
18037
|
+
export declare type PartnerCloudProductItem = PartnerCloudProductNode & {
|
|
18038
|
+
__typename?: 'PartnerCloudProductItem';
|
|
18039
|
+
key: Scalars['ID'];
|
|
18040
|
+
name?: Maybe<Scalars['String']>;
|
|
18041
|
+
};
|
|
17677
18042
|
export declare type PartnerCloudProductNode = {
|
|
17678
18043
|
key: Scalars['ID'];
|
|
17679
18044
|
name?: Maybe<Scalars['String']>;
|
|
@@ -17696,7 +18061,7 @@ export declare type PartnerOfferingDetailsResponse = {
|
|
|
17696
18061
|
__typename?: 'PartnerOfferingDetailsResponse';
|
|
17697
18062
|
btfApps?: Maybe<Array<Maybe<PartnerBtfProduct>>>;
|
|
17698
18063
|
btfProducts?: Maybe<Array<Maybe<PartnerBtfProduct>>>;
|
|
17699
|
-
cloudApps?: Maybe<Array<Maybe<
|
|
18064
|
+
cloudApps?: Maybe<Array<Maybe<PartnerCloudApp>>>;
|
|
17700
18065
|
cloudProducts?: Maybe<Array<Maybe<PartnerCloudProduct>>>;
|
|
17701
18066
|
};
|
|
17702
18067
|
export declare type PartnerOfferingFilter = {
|
|
@@ -17719,7 +18084,7 @@ export declare type PartnerOfferingItem = PartnerOfferingNode & {
|
|
|
17719
18084
|
export declare type PartnerOfferingListResponse = {
|
|
17720
18085
|
__typename?: 'PartnerOfferingListResponse';
|
|
17721
18086
|
btfProducts?: Maybe<Array<Maybe<PartnerBtfProduct>>>;
|
|
17722
|
-
cloudProducts?: Maybe<Array<Maybe<
|
|
18087
|
+
cloudProducts?: Maybe<Array<Maybe<PartnerCloudProductItem>>>;
|
|
17723
18088
|
};
|
|
17724
18089
|
export declare type PartnerOfferingNode = {
|
|
17725
18090
|
key: Scalars['ID'];
|
|
@@ -18137,6 +18502,7 @@ export declare type PolarisIdeaIntervalField = PolarisIdeaField & {
|
|
|
18137
18502
|
description?: Maybe<Scalars['String']>;
|
|
18138
18503
|
emoji?: Maybe<Scalars['String']>;
|
|
18139
18504
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
18505
|
+
configuration?: Maybe<Scalars['JSON']>;
|
|
18140
18506
|
};
|
|
18141
18507
|
export declare type PolarisIdeaIssueCommentsField = PolarisIdeaField & {
|
|
18142
18508
|
__typename?: 'PolarisIdeaIssueCommentsField';
|
|
@@ -19167,7 +19533,8 @@ export declare type Query = {
|
|
|
19167
19533
|
jwmOverviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
19168
19534
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
19169
19535
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
19170
|
-
|
|
19536
|
+
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
19537
|
+
xflow?: Maybe<Scalars['String']>;
|
|
19171
19538
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
19172
19539
|
jiraReleases?: Maybe<JiraReleases>;
|
|
19173
19540
|
appDeployment?: Maybe<AppDeployment>;
|
|
@@ -19532,6 +19899,9 @@ export declare type QueryTenantContextsArgs = {
|
|
|
19532
19899
|
cloudIds?: Maybe<Array<Scalars['ID']>>;
|
|
19533
19900
|
hostNames?: Maybe<Array<Scalars['String']>>;
|
|
19534
19901
|
};
|
|
19902
|
+
export declare type QueryHelpLayoutArgs = {
|
|
19903
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
19904
|
+
};
|
|
19535
19905
|
export declare type QueryAppDeploymentArgs = {
|
|
19536
19906
|
appId: Scalars['ID'];
|
|
19537
19907
|
environmentKey: Scalars['String'];
|
|
@@ -19593,6 +19963,7 @@ export declare enum RateLimitingCurrency {
|
|
|
19593
19963
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
19594
19964
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
19595
19965
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
19966
|
+
HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
|
|
19596
19967
|
ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
|
|
19597
19968
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
19598
19969
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
@@ -20790,6 +21161,10 @@ export declare type SearchFilterInput = {
|
|
|
20790
21161
|
confluenceFilters?: Maybe<SearchConfluenceFilter>;
|
|
20791
21162
|
jiraFilters?: Maybe<SearchJiraFilter>;
|
|
20792
21163
|
};
|
|
21164
|
+
export declare enum SearchIssueStatusCategory {
|
|
21165
|
+
Open = "OPEN",
|
|
21166
|
+
Done = "DONE"
|
|
21167
|
+
}
|
|
20793
21168
|
export declare type SearchItemConnection = {
|
|
20794
21169
|
__typename?: 'SearchItemConnection';
|
|
20795
21170
|
edges: Array<SearchResultItemEdge>;
|
|
@@ -20800,6 +21175,13 @@ export declare type SearchItemConnection = {
|
|
|
20800
21175
|
export declare type SearchJiraFilter = {
|
|
20801
21176
|
boardFilter?: Maybe<SearchBoardFilter>;
|
|
20802
21177
|
projectFilter?: Maybe<SearchJiraProjectFilter>;
|
|
21178
|
+
issueFilter?: Maybe<SearchJiraIssueFilter>;
|
|
21179
|
+
};
|
|
21180
|
+
export declare type SearchJiraIssueFilter = {
|
|
21181
|
+
assigneeARIs?: Maybe<Array<Scalars['ID']>>;
|
|
21182
|
+
reporterARIs?: Maybe<Array<Scalars['ID']>>;
|
|
21183
|
+
projectARIs?: Maybe<Array<Scalars['ID']>>;
|
|
21184
|
+
statusCategories?: Maybe<Array<SearchIssueStatusCategory>>;
|
|
20803
21185
|
};
|
|
20804
21186
|
export declare type SearchJiraProjectFilter = {
|
|
20805
21187
|
projectType?: Maybe<SearchProjectType>;
|
|
@@ -20876,6 +21258,16 @@ export declare type SearchResultJiraBoardUserContainer = {
|
|
|
20876
21258
|
userAccountId: Scalars['String'];
|
|
20877
21259
|
userName: Scalars['String'];
|
|
20878
21260
|
};
|
|
21261
|
+
export declare type SearchResultJiraIssue = SearchResult & {
|
|
21262
|
+
__typename?: 'SearchResultJiraIssue';
|
|
21263
|
+
id: Scalars['ID'];
|
|
21264
|
+
title: Scalars['String'];
|
|
21265
|
+
url: Scalars['URL'];
|
|
21266
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
21267
|
+
type: SearchResultType;
|
|
21268
|
+
description: Scalars['String'];
|
|
21269
|
+
issue?: Maybe<JiraIssue>;
|
|
21270
|
+
};
|
|
20879
21271
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
20880
21272
|
__typename?: 'SearchResultJiraProject';
|
|
20881
21273
|
id: Scalars['ID'];
|
|
@@ -21145,6 +21537,8 @@ export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
|
21145
21537
|
export declare enum ShepherdAlertStatus {
|
|
21146
21538
|
InProgress = "IN_PROGRESS",
|
|
21147
21539
|
Triaged = "TRIAGED",
|
|
21540
|
+
TriagedExpectedActivity = "TRIAGED_EXPECTED_ACTIVITY",
|
|
21541
|
+
TriagedTruePositive = "TRIAGED_TRUE_POSITIVE",
|
|
21148
21542
|
Untriaged = "UNTRIAGED"
|
|
21149
21543
|
}
|
|
21150
21544
|
export declare type ShepherdAlertSupportingData = {
|
|
@@ -22494,19 +22888,6 @@ export declare type TestingActivityItem = Node & {
|
|
|
22494
22888
|
__typename?: 'TestingActivityItem';
|
|
22495
22889
|
id: Scalars['ID'];
|
|
22496
22890
|
};
|
|
22497
|
-
export declare type ThirdPartyCreateContainerInput = {
|
|
22498
|
-
cloudId: Scalars['ID'];
|
|
22499
|
-
providerId?: Maybe<Scalars['ID']>;
|
|
22500
|
-
workspaceId?: Maybe<Scalars['ID']>;
|
|
22501
|
-
name: Scalars['String'];
|
|
22502
|
-
type?: Maybe<Scalars['String']>;
|
|
22503
|
-
};
|
|
22504
|
-
export declare type ThirdPartyCreateContainerPayload = Payload & {
|
|
22505
|
-
__typename?: 'ThirdPartyCreateContainerPayload';
|
|
22506
|
-
success: Scalars['Boolean'];
|
|
22507
|
-
errors?: Maybe<Array<MutationError>>;
|
|
22508
|
-
createdContainer?: Maybe<ThirdPartyEntity>;
|
|
22509
|
-
};
|
|
22510
22891
|
export declare type ThirdPartyDetails = {
|
|
22511
22892
|
__typename?: 'ThirdPartyDetails';
|
|
22512
22893
|
name: Scalars['String'];
|
|
@@ -22514,7 +22895,6 @@ export declare type ThirdPartyDetails = {
|
|
|
22514
22895
|
purpose: Scalars['String'];
|
|
22515
22896
|
thirdPartyCountries: Array<Maybe<Scalars['String']>>;
|
|
22516
22897
|
};
|
|
22517
|
-
export declare type ThirdPartyEntity = ThirdPartySecurityWorkspace | ThirdPartySecurityContainer;
|
|
22518
22898
|
export declare type ThirdPartyInformation = {
|
|
22519
22899
|
__typename?: 'ThirdPartyInformation';
|
|
22520
22900
|
isEndUserDataShared: Scalars['Boolean'];
|
|
@@ -22591,6 +22971,26 @@ export declare type ToolchainContainerEdge = {
|
|
|
22591
22971
|
cursor: Scalars['String'];
|
|
22592
22972
|
node?: Maybe<ToolchainContainer>;
|
|
22593
22973
|
};
|
|
22974
|
+
export declare type ToolchainCreateContainerInput = {
|
|
22975
|
+
cloudId: Scalars['ID'];
|
|
22976
|
+
providerId?: Maybe<Scalars['ID']>;
|
|
22977
|
+
workspaceId?: Maybe<Scalars['ID']>;
|
|
22978
|
+
name: Scalars['String'];
|
|
22979
|
+
type?: Maybe<Scalars['String']>;
|
|
22980
|
+
};
|
|
22981
|
+
export declare type ToolchainCreateContainerPayload = Payload & {
|
|
22982
|
+
__typename?: 'ToolchainCreateContainerPayload';
|
|
22983
|
+
success: Scalars['Boolean'];
|
|
22984
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22985
|
+
createdContainer?: Maybe<ToolchainContainer>;
|
|
22986
|
+
};
|
|
22987
|
+
export declare type ToolchainMutation = {
|
|
22988
|
+
__typename?: 'ToolchainMutation';
|
|
22989
|
+
createContainer?: Maybe<ToolchainCreateContainerPayload>;
|
|
22990
|
+
};
|
|
22991
|
+
export declare type ToolchainMutationCreateContainerArgs = {
|
|
22992
|
+
input: ToolchainCreateContainerInput;
|
|
22993
|
+
};
|
|
22594
22994
|
export declare type TownsquareComment = Node & {
|
|
22595
22995
|
__typename?: 'TownsquareComment';
|
|
22596
22996
|
creator?: Maybe<User>;
|
|
@@ -22837,7 +23237,7 @@ export declare type TrelloBoard = {
|
|
|
22837
23237
|
prefs: TrelloBoardPrefs;
|
|
22838
23238
|
shortLink: Scalars['TrelloShortLink'];
|
|
22839
23239
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
22840
|
-
workspace?: Maybe<
|
|
23240
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
22841
23241
|
};
|
|
22842
23242
|
export declare type TrelloBoardBackground = {
|
|
22843
23243
|
__typename?: 'TrelloBoardBackground';
|
|
@@ -22915,12 +23315,12 @@ export declare type TrelloListLimits = {
|
|
|
22915
23315
|
export declare type TrelloQueryApi = {
|
|
22916
23316
|
__typename?: 'TrelloQueryApi';
|
|
22917
23317
|
board?: Maybe<TrelloBoard>;
|
|
22918
|
-
echo
|
|
23318
|
+
echo?: Maybe<Scalars['String']>;
|
|
22919
23319
|
list?: Maybe<TrelloList>;
|
|
22920
|
-
recentBoardsByIds
|
|
22921
|
-
templateCategories
|
|
23320
|
+
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
23321
|
+
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
22922
23322
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
22923
|
-
templateLanguages
|
|
23323
|
+
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
22924
23324
|
};
|
|
22925
23325
|
export declare type TrelloQueryApiBoardArgs = {
|
|
22926
23326
|
id: Scalars['ID'];
|
|
@@ -22988,8 +23388,8 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
22988
23388
|
locale: Scalars['String'];
|
|
22989
23389
|
localizedDescription: Scalars['String'];
|
|
22990
23390
|
};
|
|
22991
|
-
export declare type
|
|
22992
|
-
__typename?: '
|
|
23391
|
+
export declare type TrelloWorkspace = {
|
|
23392
|
+
__typename?: 'TrelloWorkspace';
|
|
22993
23393
|
displayName: Scalars['String'];
|
|
22994
23394
|
id: Scalars['ID'];
|
|
22995
23395
|
};
|
|
@@ -24014,17 +24414,6 @@ export declare type WebTriggerUrlInput = {
|
|
|
24014
24414
|
triggerKey: Scalars['String'];
|
|
24015
24415
|
contextId: Scalars['ID'];
|
|
24016
24416
|
};
|
|
24017
|
-
export declare type XFlowQuery = {
|
|
24018
|
-
__typename?: 'XFlowQuery';
|
|
24019
|
-
recommendedApps?: Maybe<Array<XFlowRecommendedApp>>;
|
|
24020
|
-
};
|
|
24021
|
-
export declare type XFlowQueryRecommendedAppsArgs = {
|
|
24022
|
-
site: Scalars['ID'];
|
|
24023
|
-
};
|
|
24024
|
-
export declare type XFlowRecommendedApp = {
|
|
24025
|
-
__typename?: 'XFlowRecommendedApp';
|
|
24026
|
-
appKey: Scalars['String'];
|
|
24027
|
-
};
|
|
24028
24417
|
export declare type _AppliedDirective = {
|
|
24029
24418
|
__typename?: '_AppliedDirective';
|
|
24030
24419
|
name: Scalars['String'];
|