@forge/cli-shared 3.26.0 → 3.26.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/out/apps/app-config.d.ts.map +1 -1
- package/out/apps/app-config.js +3 -1
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +3 -1
- package/out/apps/register-app.d.ts +8 -4
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/apps/register-app.js +6 -4
- package/out/config/config-file-section-reader.d.ts +3 -0
- package/out/config/config-file-section-reader.d.ts.map +1 -1
- package/out/config/config-file-section-reader.js +2 -1
- package/out/graphql/graphql-types.d.ts +345 -43
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +74 -8
- package/package.json +1 -1
|
@@ -132,9 +132,7 @@ export declare type ActionsAction = {
|
|
|
132
132
|
};
|
|
133
133
|
export declare type ActionsActionType = {
|
|
134
134
|
__typename?: 'ActionsActionType';
|
|
135
|
-
|
|
136
|
-
aiPromptAdditional?: Maybe<Scalars['String']['output']>;
|
|
137
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
135
|
+
description?: Maybe<ActionsDescription>;
|
|
138
136
|
displayName: Scalars['String']['output'];
|
|
139
137
|
entityType?: Maybe<Scalars['String']['output']>;
|
|
140
138
|
inputs?: Maybe<Array<ActionsActionTypeInputTuple>>;
|
|
@@ -143,10 +141,8 @@ export declare type ActionsActionType = {
|
|
|
143
141
|
};
|
|
144
142
|
export declare type ActionsActionTypeInput = {
|
|
145
143
|
__typename?: 'ActionsActionTypeInput';
|
|
146
|
-
aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
147
|
-
aiPromptAdditional?: Maybe<Scalars['String']['output']>;
|
|
148
144
|
default?: Maybe<Scalars['JSON']['output']>;
|
|
149
|
-
description
|
|
145
|
+
description?: Maybe<ActionsDescription>;
|
|
150
146
|
pattern?: Maybe<Scalars['String']['output']>;
|
|
151
147
|
required: Scalars['Boolean']['output'];
|
|
152
148
|
type: Scalars['String']['output'];
|
|
@@ -158,7 +154,7 @@ export declare type ActionsActionTypeInputTuple = {
|
|
|
158
154
|
};
|
|
159
155
|
export declare type ActionsActionTypeOutput = {
|
|
160
156
|
__typename?: 'ActionsActionTypeOutput';
|
|
161
|
-
description
|
|
157
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
162
158
|
nullable: Scalars['Boolean']['output'];
|
|
163
159
|
type: Scalars['String']['output'];
|
|
164
160
|
};
|
|
@@ -171,10 +167,10 @@ export declare type ActionsActionableApp = {
|
|
|
171
167
|
__typename?: 'ActionsActionableApp';
|
|
172
168
|
actions?: Maybe<Array<Maybe<ActionsAction>>>;
|
|
173
169
|
appDefinitionId?: Maybe<Scalars['String']['output']>;
|
|
174
|
-
appId
|
|
170
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
175
171
|
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
176
172
|
name: Scalars['String']['output'];
|
|
177
|
-
oauthClientId
|
|
173
|
+
oauthClientId?: Maybe<Scalars['String']['output']>;
|
|
178
174
|
};
|
|
179
175
|
export declare type ActionsActionableAppConnection = {
|
|
180
176
|
__typename?: 'ActionsActionableAppConnection';
|
|
@@ -196,6 +192,11 @@ export declare enum ActionsAuthType {
|
|
|
196
192
|
ThreeLegged = "THREE_LEGGED",
|
|
197
193
|
TwoLegged = "TWO_LEGGED"
|
|
198
194
|
}
|
|
195
|
+
export declare type ActionsDescription = {
|
|
196
|
+
__typename?: 'ActionsDescription';
|
|
197
|
+
ai?: Maybe<Scalars['String']['output']>;
|
|
198
|
+
default: Scalars['String']['output'];
|
|
199
|
+
};
|
|
199
200
|
export declare type ActionsExecuteActionFilter = {
|
|
200
201
|
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
201
202
|
oauthClientId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -203,7 +204,6 @@ export declare type ActionsExecuteActionFilter = {
|
|
|
203
204
|
};
|
|
204
205
|
export declare type ActionsExecuteActionInput = {
|
|
205
206
|
inputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
206
|
-
targetUrl?: InputMaybe<Scalars['String']['input']>;
|
|
207
207
|
};
|
|
208
208
|
export declare type ActionsExecuteResponse = {
|
|
209
209
|
__typename?: 'ActionsExecuteResponse';
|
|
@@ -453,8 +453,10 @@ export declare enum ActivityObjectType {
|
|
|
453
453
|
}
|
|
454
454
|
export declare type ActivityPageInfo = {
|
|
455
455
|
__typename?: 'ActivityPageInfo';
|
|
456
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
456
457
|
hasNextPage: Scalars['Boolean']['output'];
|
|
457
458
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
459
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
458
460
|
};
|
|
459
461
|
export declare enum ActivityProduct {
|
|
460
462
|
Confluence = "CONFLUENCE",
|
|
@@ -813,6 +815,7 @@ export declare enum ApiGroup {
|
|
|
813
815
|
Forge = "FORGE",
|
|
814
816
|
Help = "HELP",
|
|
815
817
|
Identity = "IDENTITY",
|
|
818
|
+
InsightsXperienceService = "INSIGHTS_XPERIENCE_SERVICE",
|
|
816
819
|
Jira = "JIRA",
|
|
817
820
|
Papi = "PAPI",
|
|
818
821
|
Polaris = "POLARIS",
|
|
@@ -3533,9 +3536,9 @@ export declare type CompassCatalogQueryApi = {
|
|
|
3533
3536
|
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
3534
3537
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
3535
3538
|
documentationCategories?: Maybe<CompassDocumentationCategoriesConnection>;
|
|
3539
|
+
documents?: Maybe<CompassDocumentConnection>;
|
|
3536
3540
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
3537
3541
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
3538
|
-
getDocumentation?: Maybe<CompassDocumentConnection>;
|
|
3539
3542
|
incomingWebhooks?: Maybe<CompassIncomingWebhooksConnection>;
|
|
3540
3543
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
3541
3544
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
@@ -3592,6 +3595,11 @@ export declare type CompassCatalogQueryApiDocumentationCategoriesArgs = {
|
|
|
3592
3595
|
cloudId: Scalars['ID']['input'];
|
|
3593
3596
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3594
3597
|
};
|
|
3598
|
+
export declare type CompassCatalogQueryApiDocumentsArgs = {
|
|
3599
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3600
|
+
componentId: Scalars['ID']['input'];
|
|
3601
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3602
|
+
};
|
|
3595
3603
|
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
3596
3604
|
cloudId: Scalars['ID']['input'];
|
|
3597
3605
|
eventType: CompassEventType;
|
|
@@ -3601,11 +3609,6 @@ export declare type CompassCatalogQueryApiFieldDefinitionsByComponentTypeArgs =
|
|
|
3601
3609
|
cloudId: Scalars['ID']['input'];
|
|
3602
3610
|
input: CompassComponentType;
|
|
3603
3611
|
};
|
|
3604
|
-
export declare type CompassCatalogQueryApiGetDocumentationArgs = {
|
|
3605
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
3606
|
-
componentId: Scalars['ID']['input'];
|
|
3607
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3608
|
-
};
|
|
3609
3612
|
export declare type CompassCatalogQueryApiIncomingWebhooksArgs = {
|
|
3610
3613
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3611
3614
|
cloudId: Scalars['ID']['input'];
|
|
@@ -5761,7 +5764,7 @@ export declare type CompassUpdateDocumentInput = {
|
|
|
5761
5764
|
};
|
|
5762
5765
|
export declare type CompassUpdateDocumentPayload = Payload & {
|
|
5763
5766
|
__typename?: 'CompassUpdateDocumentPayload';
|
|
5764
|
-
documentDetails
|
|
5767
|
+
documentDetails?: Maybe<CompassDocument>;
|
|
5765
5768
|
errors?: Maybe<Array<MutationError>>;
|
|
5766
5769
|
success: Scalars['Boolean']['output'];
|
|
5767
5770
|
};
|
|
@@ -8616,6 +8619,11 @@ export declare type CustomerServiceCustomDetailValue = Node & {
|
|
|
8616
8619
|
value?: Maybe<Scalars['String']['output']>;
|
|
8617
8620
|
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
8618
8621
|
};
|
|
8622
|
+
export declare type CustomerServiceCustomDetailValues = {
|
|
8623
|
+
__typename?: 'CustomerServiceCustomDetailValues';
|
|
8624
|
+
results: Array<CustomerServiceCustomDetailValue>;
|
|
8625
|
+
};
|
|
8626
|
+
export declare type CustomerServiceCustomDetailValuesQueryResult = CustomerServiceCustomDetailValues | QueryError;
|
|
8619
8627
|
export declare type CustomerServiceCustomDetails = {
|
|
8620
8628
|
__typename?: 'CustomerServiceCustomDetails';
|
|
8621
8629
|
customDetails: Array<CustomerServiceCustomDetail>;
|
|
@@ -8631,6 +8639,7 @@ export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual |
|
|
|
8631
8639
|
export declare type CustomerServiceEntitlement = Node & {
|
|
8632
8640
|
__typename?: 'CustomerServiceEntitlement';
|
|
8633
8641
|
customDetails: Array<CustomerServiceCustomDetailValue>;
|
|
8642
|
+
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
8634
8643
|
entity: CustomerServiceEntitledEntity;
|
|
8635
8644
|
id: Scalars['ID']['output'];
|
|
8636
8645
|
product: CustomerServiceProduct;
|
|
@@ -8677,6 +8686,7 @@ export declare type CustomerServiceFilterInput = {
|
|
|
8677
8686
|
export declare type CustomerServiceIndividual = Node & {
|
|
8678
8687
|
__typename?: 'CustomerServiceIndividual';
|
|
8679
8688
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
8689
|
+
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
8680
8690
|
entitlementList: Array<CustomerServiceEntitlement>;
|
|
8681
8691
|
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
8682
8692
|
id: Scalars['ID']['output'];
|
|
@@ -8953,6 +8963,7 @@ export declare type CustomerServiceNotesQueryResult = CustomerServiceNotes | Que
|
|
|
8953
8963
|
export declare type CustomerServiceOrganization = Node & {
|
|
8954
8964
|
__typename?: 'CustomerServiceOrganization';
|
|
8955
8965
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
8966
|
+
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
8956
8967
|
entitlementList: Array<CustomerServiceEntitlement>;
|
|
8957
8968
|
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
8958
8969
|
id: Scalars['ID']['output'];
|
|
@@ -9730,7 +9741,6 @@ export declare type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
|
9730
9741
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
9731
9742
|
configState?: Maybe<JiraAppConfigState>;
|
|
9732
9743
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
9733
|
-
grant3LOUrl?: Maybe<Scalars['String']['output']>;
|
|
9734
9744
|
handledDomainName?: Maybe<Scalars['String']['output']>;
|
|
9735
9745
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
9736
9746
|
id: Scalars['ID']['output'];
|
|
@@ -9824,7 +9834,6 @@ export declare type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
|
9824
9834
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
9825
9835
|
configState?: Maybe<JiraAppConfigState>;
|
|
9826
9836
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
9827
|
-
grant3LOUrl?: Maybe<Scalars['String']['output']>;
|
|
9828
9837
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
9829
9838
|
id: Scalars['ID']['output'];
|
|
9830
9839
|
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -10712,10 +10721,8 @@ export declare type DevOpsSummarisedFeatureFlags = {
|
|
|
10712
10721
|
export declare type DevOpsSupportedActions = {
|
|
10713
10722
|
__typename?: 'DevOpsSupportedActions';
|
|
10714
10723
|
associate?: Maybe<Scalars['Boolean']['output']>;
|
|
10715
|
-
check3LO?: Maybe<Scalars['Boolean']['output']>;
|
|
10716
10724
|
checkAuth?: Maybe<Scalars['Boolean']['output']>;
|
|
10717
10725
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
10718
|
-
grant3LO?: Maybe<Scalars['Boolean']['output']>;
|
|
10719
10726
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
10720
10727
|
searchConnectedWorkspaces?: Maybe<Scalars['Boolean']['output']>;
|
|
10721
10728
|
searchContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -11562,6 +11569,12 @@ export declare type FeatureReleaseTimeRangeInput = {
|
|
|
11562
11569
|
endEpoch?: InputMaybe<Scalars['Int']['input']>;
|
|
11563
11570
|
startEpoch?: InputMaybe<Scalars['Int']['input']>;
|
|
11564
11571
|
};
|
|
11572
|
+
export declare type FieldValidationMutationErrorExtension = MutationErrorExtension & {
|
|
11573
|
+
__typename?: 'FieldValidationMutationErrorExtension';
|
|
11574
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
11575
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
11576
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
11577
|
+
};
|
|
11565
11578
|
export declare type FilterQuery = {
|
|
11566
11579
|
__typename?: 'FilterQuery';
|
|
11567
11580
|
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -16132,6 +16145,8 @@ export declare type GraphStore = {
|
|
|
16132
16145
|
projectHasIssueInverse?: Maybe<GraphStoreSimplifiedProjectHasIssueInverseConnection>;
|
|
16133
16146
|
projectHasIssueInverseRelationship?: Maybe<GraphStoreFullProjectHasIssueConnection>;
|
|
16134
16147
|
projectHasIssueRelationship?: Maybe<GraphStoreFullProjectHasIssueConnection>;
|
|
16148
|
+
projectHasRelatedWorkWithProject?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectConnection>;
|
|
16149
|
+
projectHasRelatedWorkWithProjectInverse?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseConnection>;
|
|
16135
16150
|
projectHasSharedVersionWith?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithConnection>;
|
|
16136
16151
|
projectHasSharedVersionWithInverse?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithInverseConnection>;
|
|
16137
16152
|
projectHasSharedVersionWithInverseRelationship?: Maybe<GraphStoreFullProjectHasSharedVersionWithConnection>;
|
|
@@ -17444,6 +17459,16 @@ export declare type GraphStoreProjectHasIssueRelationshipArgs = {
|
|
|
17444
17459
|
id: Scalars['ID']['input'];
|
|
17445
17460
|
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
17446
17461
|
};
|
|
17462
|
+
export declare type GraphStoreProjectHasRelatedWorkWithProjectArgs = {
|
|
17463
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17464
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17465
|
+
id: Scalars['ID']['input'];
|
|
17466
|
+
};
|
|
17467
|
+
export declare type GraphStoreProjectHasRelatedWorkWithProjectInverseArgs = {
|
|
17468
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17469
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17470
|
+
id: Scalars['ID']['input'];
|
|
17471
|
+
};
|
|
17447
17472
|
export declare type GraphStoreProjectHasSharedVersionWithArgs = {
|
|
17448
17473
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17449
17474
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18416,6 +18441,46 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIs
|
|
|
18416
18441
|
export declare type GraphStoreBooleanFilterInput = {
|
|
18417
18442
|
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18418
18443
|
};
|
|
18444
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentInput = {
|
|
18445
|
+
relationships: Array<GraphStoreCreateComponentImpactedByIncidentRelationshipInput>;
|
|
18446
|
+
};
|
|
18447
|
+
export declare enum GraphStoreCreateComponentImpactedByIncidentJiraIncidentPriorityInput {
|
|
18448
|
+
NotSet = "NOT_SET",
|
|
18449
|
+
P1 = "P1",
|
|
18450
|
+
P2 = "P2",
|
|
18451
|
+
P3 = "P3",
|
|
18452
|
+
P4 = "P4",
|
|
18453
|
+
P5 = "P5",
|
|
18454
|
+
Pending = "PENDING",
|
|
18455
|
+
Unknown = "UNKNOWN"
|
|
18456
|
+
}
|
|
18457
|
+
export declare enum GraphStoreCreateComponentImpactedByIncidentJiraIncidentStatusInput {
|
|
18458
|
+
Done = "DONE",
|
|
18459
|
+
Indeterminate = "INDETERMINATE",
|
|
18460
|
+
New = "NEW",
|
|
18461
|
+
NotSet = "NOT_SET",
|
|
18462
|
+
Undefined = "UNDEFINED"
|
|
18463
|
+
}
|
|
18464
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentPayload = Payload & {
|
|
18465
|
+
__typename?: 'GraphStoreCreateComponentImpactedByIncidentPayload';
|
|
18466
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18467
|
+
success: Scalars['Boolean']['output'];
|
|
18468
|
+
};
|
|
18469
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentRelationshipInput = {
|
|
18470
|
+
from: Scalars['ID']['input'];
|
|
18471
|
+
objectMetadata?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentRelationshipObjectMetadataInput>;
|
|
18472
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
18473
|
+
to: Scalars['ID']['input'];
|
|
18474
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18475
|
+
};
|
|
18476
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentRelationshipObjectMetadataInput = {
|
|
18477
|
+
affectedServiceAris?: InputMaybe<Scalars['String']['input']>;
|
|
18478
|
+
assigneeAri?: InputMaybe<Scalars['String']['input']>;
|
|
18479
|
+
majorIncident?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18480
|
+
priority?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentJiraIncidentPriorityInput>;
|
|
18481
|
+
reporterAri?: InputMaybe<Scalars['String']['input']>;
|
|
18482
|
+
status?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentJiraIncidentStatusInput>;
|
|
18483
|
+
};
|
|
18419
18484
|
export declare type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
18420
18485
|
relationships: Array<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
18421
18486
|
};
|
|
@@ -18570,6 +18635,20 @@ export declare type GraphStoreCreateProjectDocumentationSpaceRelationshipInput =
|
|
|
18570
18635
|
to: Scalars['ID']['input'];
|
|
18571
18636
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18572
18637
|
};
|
|
18638
|
+
export declare type GraphStoreCreateProjectHasRelatedWorkWithProjectInput = {
|
|
18639
|
+
relationships: Array<GraphStoreCreateProjectHasRelatedWorkWithProjectRelationshipInput>;
|
|
18640
|
+
};
|
|
18641
|
+
export declare type GraphStoreCreateProjectHasRelatedWorkWithProjectPayload = Payload & {
|
|
18642
|
+
__typename?: 'GraphStoreCreateProjectHasRelatedWorkWithProjectPayload';
|
|
18643
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18644
|
+
success: Scalars['Boolean']['output'];
|
|
18645
|
+
};
|
|
18646
|
+
export declare type GraphStoreCreateProjectHasRelatedWorkWithProjectRelationshipInput = {
|
|
18647
|
+
from: Scalars['ID']['input'];
|
|
18648
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
18649
|
+
to: Scalars['ID']['input'];
|
|
18650
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18651
|
+
};
|
|
18573
18652
|
export declare type GraphStoreCreateProjectHasSharedVersionWithInput = {
|
|
18574
18653
|
relationships: Array<GraphStoreCreateProjectHasSharedVersionWithRelationshipInput>;
|
|
18575
18654
|
};
|
|
@@ -18710,6 +18789,18 @@ export declare type GraphStoreDateFilterInput = {
|
|
|
18710
18789
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18711
18790
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18712
18791
|
};
|
|
18792
|
+
export declare type GraphStoreDeleteComponentImpactedByIncidentInput = {
|
|
18793
|
+
relationships: Array<GraphStoreDeleteComponentImpactedByIncidentRelationshipInput>;
|
|
18794
|
+
};
|
|
18795
|
+
export declare type GraphStoreDeleteComponentImpactedByIncidentPayload = Payload & {
|
|
18796
|
+
__typename?: 'GraphStoreDeleteComponentImpactedByIncidentPayload';
|
|
18797
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18798
|
+
success: Scalars['Boolean']['output'];
|
|
18799
|
+
};
|
|
18800
|
+
export declare type GraphStoreDeleteComponentImpactedByIncidentRelationshipInput = {
|
|
18801
|
+
from: Scalars['ID']['input'];
|
|
18802
|
+
to: Scalars['ID']['input'];
|
|
18803
|
+
};
|
|
18713
18804
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
18714
18805
|
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
18715
18806
|
};
|
|
@@ -18842,6 +18933,18 @@ export declare type GraphStoreDeleteProjectDocumentationSpaceRelationshipInput =
|
|
|
18842
18933
|
from: Scalars['ID']['input'];
|
|
18843
18934
|
to: Scalars['ID']['input'];
|
|
18844
18935
|
};
|
|
18936
|
+
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectInput = {
|
|
18937
|
+
relationships: Array<GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationshipInput>;
|
|
18938
|
+
};
|
|
18939
|
+
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload = Payload & {
|
|
18940
|
+
__typename?: 'GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload';
|
|
18941
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18942
|
+
success: Scalars['Boolean']['output'];
|
|
18943
|
+
};
|
|
18944
|
+
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationshipInput = {
|
|
18945
|
+
from: Scalars['ID']['input'];
|
|
18946
|
+
to: Scalars['ID']['input'];
|
|
18947
|
+
};
|
|
18845
18948
|
export declare type GraphStoreDeleteProjectHasSharedVersionWithInput = {
|
|
18846
18949
|
relationships: Array<GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput>;
|
|
18847
18950
|
};
|
|
@@ -22413,6 +22516,7 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
22413
22516
|
};
|
|
22414
22517
|
export declare type GraphStoreMutation = {
|
|
22415
22518
|
__typename?: 'GraphStoreMutation';
|
|
22519
|
+
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
22416
22520
|
createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
22417
22521
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
22418
22522
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
@@ -22424,6 +22528,7 @@ export declare type GraphStoreMutation = {
|
|
|
22424
22528
|
createProjectDocumentationEntity?: Maybe<GraphStoreCreateProjectDocumentationEntityPayload>;
|
|
22425
22529
|
createProjectDocumentationPage?: Maybe<GraphStoreCreateProjectDocumentationPagePayload>;
|
|
22426
22530
|
createProjectDocumentationSpace?: Maybe<GraphStoreCreateProjectDocumentationSpacePayload>;
|
|
22531
|
+
createProjectHasRelatedWorkWithProject?: Maybe<GraphStoreCreateProjectHasRelatedWorkWithProjectPayload>;
|
|
22427
22532
|
createProjectHasSharedVersionWith?: Maybe<GraphStoreCreateProjectHasSharedVersionWithPayload>;
|
|
22428
22533
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
22429
22534
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
@@ -22431,6 +22536,7 @@ export declare type GraphStoreMutation = {
|
|
|
22431
22536
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
22432
22537
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
22433
22538
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
22539
|
+
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
22434
22540
|
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
22435
22541
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
22436
22542
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
@@ -22442,6 +22548,7 @@ export declare type GraphStoreMutation = {
|
|
|
22442
22548
|
deleteProjectDocumentationEntity?: Maybe<GraphStoreDeleteProjectDocumentationEntityPayload>;
|
|
22443
22549
|
deleteProjectDocumentationPage?: Maybe<GraphStoreDeleteProjectDocumentationPagePayload>;
|
|
22444
22550
|
deleteProjectDocumentationSpace?: Maybe<GraphStoreDeleteProjectDocumentationSpacePayload>;
|
|
22551
|
+
deleteProjectHasRelatedWorkWithProject?: Maybe<GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload>;
|
|
22445
22552
|
deleteProjectHasSharedVersionWith?: Maybe<GraphStoreDeleteProjectHasSharedVersionWithPayload>;
|
|
22446
22553
|
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
22447
22554
|
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
@@ -22450,6 +22557,9 @@ export declare type GraphStoreMutation = {
|
|
|
22450
22557
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
22451
22558
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
22452
22559
|
};
|
|
22560
|
+
export declare type GraphStoreMutationCreateComponentImpactedByIncidentArgs = {
|
|
22561
|
+
input?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentInput>;
|
|
22562
|
+
};
|
|
22453
22563
|
export declare type GraphStoreMutationCreateIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
22454
22564
|
input?: InputMaybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
22455
22565
|
};
|
|
@@ -22483,6 +22593,9 @@ export declare type GraphStoreMutationCreateProjectDocumentationPageArgs = {
|
|
|
22483
22593
|
export declare type GraphStoreMutationCreateProjectDocumentationSpaceArgs = {
|
|
22484
22594
|
input?: InputMaybe<GraphStoreCreateProjectDocumentationSpaceInput>;
|
|
22485
22595
|
};
|
|
22596
|
+
export declare type GraphStoreMutationCreateProjectHasRelatedWorkWithProjectArgs = {
|
|
22597
|
+
input?: InputMaybe<GraphStoreCreateProjectHasRelatedWorkWithProjectInput>;
|
|
22598
|
+
};
|
|
22486
22599
|
export declare type GraphStoreMutationCreateProjectHasSharedVersionWithArgs = {
|
|
22487
22600
|
input?: InputMaybe<GraphStoreCreateProjectHasSharedVersionWithInput>;
|
|
22488
22601
|
};
|
|
@@ -22504,6 +22617,9 @@ export declare type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs
|
|
|
22504
22617
|
export declare type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
22505
22618
|
input?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueInput>;
|
|
22506
22619
|
};
|
|
22620
|
+
export declare type GraphStoreMutationDeleteComponentImpactedByIncidentArgs = {
|
|
22621
|
+
input?: InputMaybe<GraphStoreDeleteComponentImpactedByIncidentInput>;
|
|
22622
|
+
};
|
|
22507
22623
|
export declare type GraphStoreMutationDeleteIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
22508
22624
|
input?: InputMaybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
22509
22625
|
};
|
|
@@ -22537,6 +22653,9 @@ export declare type GraphStoreMutationDeleteProjectDocumentationPageArgs = {
|
|
|
22537
22653
|
export declare type GraphStoreMutationDeleteProjectDocumentationSpaceArgs = {
|
|
22538
22654
|
input?: InputMaybe<GraphStoreDeleteProjectDocumentationSpaceInput>;
|
|
22539
22655
|
};
|
|
22656
|
+
export declare type GraphStoreMutationDeleteProjectHasRelatedWorkWithProjectArgs = {
|
|
22657
|
+
input?: InputMaybe<GraphStoreDeleteProjectHasRelatedWorkWithProjectInput>;
|
|
22658
|
+
};
|
|
22540
22659
|
export declare type GraphStoreMutationDeleteProjectHasSharedVersionWithArgs = {
|
|
22541
22660
|
input?: InputMaybe<GraphStoreDeleteProjectHasSharedVersionWithInput>;
|
|
22542
22661
|
};
|
|
@@ -24380,6 +24499,36 @@ export declare type GraphStoreSimplifiedProjectHasIssueInverseEdge = {
|
|
|
24380
24499
|
};
|
|
24381
24500
|
export declare type GraphStoreSimplifiedProjectHasIssueInverseUnion = JiraProject;
|
|
24382
24501
|
export declare type GraphStoreSimplifiedProjectHasIssueUnion = JiraIssue;
|
|
24502
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectConnection = HasPageInfo & HasTotal & {
|
|
24503
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectConnection';
|
|
24504
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge>>>;
|
|
24505
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
24506
|
+
pageInfo: PageInfo;
|
|
24507
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
24508
|
+
};
|
|
24509
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge = {
|
|
24510
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge';
|
|
24511
|
+
createdAt: Scalars['DateTime']['output'];
|
|
24512
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
24513
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
24514
|
+
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectUnion>;
|
|
24515
|
+
};
|
|
24516
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
24517
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseConnection';
|
|
24518
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge>>>;
|
|
24519
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
24520
|
+
pageInfo: PageInfo;
|
|
24521
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
24522
|
+
};
|
|
24523
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge = {
|
|
24524
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge';
|
|
24525
|
+
createdAt: Scalars['DateTime']['output'];
|
|
24526
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
24527
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
24528
|
+
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseUnion>;
|
|
24529
|
+
};
|
|
24530
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseUnion = JiraProject;
|
|
24531
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectUnion = JiraProject;
|
|
24383
24532
|
export declare type GraphStoreSimplifiedProjectHasSharedVersionWithConnection = HasPageInfo & HasTotal & {
|
|
24384
24533
|
__typename?: 'GraphStoreSimplifiedProjectHasSharedVersionWithConnection';
|
|
24385
24534
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithEdge>>>;
|
|
@@ -27269,6 +27418,7 @@ export declare type InsightsGithubOnboardingDetails = {
|
|
|
27269
27418
|
};
|
|
27270
27419
|
export declare type InsightsMutation = {
|
|
27271
27420
|
__typename?: 'InsightsMutation';
|
|
27421
|
+
completeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27272
27422
|
purgeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27273
27423
|
purgeUserActionStateForCurrentUser?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27274
27424
|
removeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
@@ -27276,6 +27426,9 @@ export declare type InsightsMutation = {
|
|
|
27276
27426
|
snoozeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27277
27427
|
snoozeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27278
27428
|
};
|
|
27429
|
+
export declare type InsightsMutationCompleteOnboardingArgs = {
|
|
27430
|
+
input: InsightsGithubOnboardingActionInput;
|
|
27431
|
+
};
|
|
27279
27432
|
export declare type InsightsMutationPurgeOnboardingArgs = {
|
|
27280
27433
|
input: InsightsGithubOnboardingActionInput;
|
|
27281
27434
|
};
|
|
@@ -28105,10 +28258,16 @@ export declare type JiraAppConfigStateEdge = {
|
|
|
28105
28258
|
};
|
|
28106
28259
|
export declare type JiraAppNavigationItem = JiraNavigationItem & Node & {
|
|
28107
28260
|
__typename?: 'JiraAppNavigationItem';
|
|
28261
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
28262
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
28108
28263
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28109
28264
|
id: Scalars['ID']['output'];
|
|
28110
28265
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
28111
28266
|
label?: Maybe<Scalars['String']['output']>;
|
|
28267
|
+
section?: Maybe<Scalars['Boolean']['output']>;
|
|
28268
|
+
separator?: Maybe<Scalars['Boolean']['output']>;
|
|
28269
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28270
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
28112
28271
|
url?: Maybe<Scalars['String']['output']>;
|
|
28113
28272
|
};
|
|
28114
28273
|
export declare type JiraAppUiModifications = {
|
|
@@ -29578,7 +29737,7 @@ export declare enum JiraContactOrgAdminToEnableAtlassianIntelligenceState {
|
|
|
29578
29737
|
}
|
|
29579
29738
|
export declare type JiraCreateAgileReleaseTrainInput = {
|
|
29580
29739
|
cloudId: Scalars['ID']['input'];
|
|
29581
|
-
configurationId
|
|
29740
|
+
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
29582
29741
|
largeSolutionProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
29583
29742
|
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
29584
29743
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -29617,7 +29776,7 @@ export declare type JiraCreateCustomFilterPayload = Payload & {
|
|
|
29617
29776
|
};
|
|
29618
29777
|
export declare type JiraCreateLargeSolutionInput = {
|
|
29619
29778
|
cloudId: Scalars['ID']['input'];
|
|
29620
|
-
configurationId
|
|
29779
|
+
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
29621
29780
|
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
29622
29781
|
};
|
|
29623
29782
|
export declare type JiraCreateLargeSolutionPayload = Payload & {
|
|
@@ -30915,7 +31074,7 @@ export declare type JiraInvalidSyntaxError = {
|
|
|
30915
31074
|
};
|
|
30916
31075
|
export declare type JiraIssue = Node & {
|
|
30917
31076
|
__typename?: 'JiraIssue';
|
|
30918
|
-
|
|
31077
|
+
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
30919
31078
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
30920
31079
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
30921
31080
|
childIssues?: Maybe<JiraChildIssues>;
|
|
@@ -30927,7 +31086,7 @@ export declare type JiraIssue = Node & {
|
|
|
30927
31086
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
30928
31087
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
30929
31088
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
30930
|
-
|
|
31089
|
+
dueDateField?: Maybe<JiraDatePickerField>;
|
|
30931
31090
|
errorRetrievingData?: Maybe<Scalars['Boolean']['output']>;
|
|
30932
31091
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
30933
31092
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -30959,7 +31118,7 @@ export declare type JiraIssue = Node & {
|
|
|
30959
31118
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
30960
31119
|
shadowFieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
30961
31120
|
smartSummary?: Maybe<JiraAdf>;
|
|
30962
|
-
|
|
31121
|
+
startDateField?: Maybe<JiraDatePickerField>;
|
|
30963
31122
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
30964
31123
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
30965
31124
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
@@ -31903,11 +32062,17 @@ export declare type JiraIssueTransitionComment = {
|
|
|
31903
32062
|
export declare type JiraIssueTransitionCommentInput = {
|
|
31904
32063
|
body: JiraAdfInput;
|
|
31905
32064
|
operation: JiraAddValueFieldOperations;
|
|
32065
|
+
type?: InputMaybe<JiraIssueTransitionCommentType>;
|
|
32066
|
+
visibility?: InputMaybe<JiraIssueTransitionCommentVisibilityInput>;
|
|
31906
32067
|
};
|
|
31907
32068
|
export declare enum JiraIssueTransitionCommentType {
|
|
31908
32069
|
InternalNote = "INTERNAL_NOTE",
|
|
31909
32070
|
ReplyToCustomer = "REPLY_TO_CUSTOMER"
|
|
31910
32071
|
}
|
|
32072
|
+
export declare type JiraIssueTransitionCommentVisibilityInput = {
|
|
32073
|
+
groupId?: InputMaybe<Scalars['ID']['input']>;
|
|
32074
|
+
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
32075
|
+
};
|
|
31911
32076
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
31912
32077
|
JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
|
|
31913
32078
|
JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
|
|
@@ -31932,6 +32097,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
31932
32097
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
31933
32098
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
31934
32099
|
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
32100
|
+
JiraSingleVersionPickerField?: InputMaybe<Array<JiraUpdateSingleVersionPickerFieldInput>>;
|
|
31935
32101
|
JiraSprintField?: InputMaybe<Array<JiraUpdateSprintFieldInput>>;
|
|
31936
32102
|
JiraTeamViewField?: InputMaybe<Array<JiraUpdateTeamFieldInput>>;
|
|
31937
32103
|
JiraTimeTrackingField?: InputMaybe<Array<JiraUpdateTimeTrackingFieldInput>>;
|
|
@@ -33144,6 +33310,7 @@ export declare type JiraMutation = {
|
|
|
33144
33310
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
33145
33311
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
33146
33312
|
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
33313
|
+
updateSingleVersionPickerField?: Maybe<JiraSingleVersionPickerFieldPayload>;
|
|
33147
33314
|
updateSprintField?: Maybe<JiraSprintFieldPayload>;
|
|
33148
33315
|
updateStatusByQuickTransition?: Maybe<JiraStatusFieldPayload>;
|
|
33149
33316
|
updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
|
|
@@ -33497,6 +33664,9 @@ export declare type JiraMutationUpdateSingleSelectFieldArgs = {
|
|
|
33497
33664
|
export declare type JiraMutationUpdateSingleSelectUserPickerFieldArgs = {
|
|
33498
33665
|
input: JiraUpdateSingleSelectUserPickerFieldInput;
|
|
33499
33666
|
};
|
|
33667
|
+
export declare type JiraMutationUpdateSingleVersionPickerFieldArgs = {
|
|
33668
|
+
input: JiraUpdateSingleVersionPickerFieldInput;
|
|
33669
|
+
};
|
|
33500
33670
|
export declare type JiraMutationUpdateSprintFieldArgs = {
|
|
33501
33671
|
input: JiraUpdateSprintFieldInput;
|
|
33502
33672
|
};
|
|
@@ -33560,9 +33730,12 @@ export declare type JiraNaturalLanguageToJqlInput = {
|
|
|
33560
33730
|
naturalLanguageInput: Scalars['String']['input'];
|
|
33561
33731
|
};
|
|
33562
33732
|
export declare type JiraNavigationItem = {
|
|
33733
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
33734
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
33563
33735
|
id: Scalars['ID']['output'];
|
|
33564
33736
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
33565
33737
|
label?: Maybe<Scalars['String']['output']>;
|
|
33738
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
33566
33739
|
};
|
|
33567
33740
|
export declare type JiraNavigationItemConnection = HasPageInfo & {
|
|
33568
33741
|
__typename?: 'JiraNavigationItemConnection';
|
|
@@ -33575,6 +33748,33 @@ export declare type JiraNavigationItemEdge = {
|
|
|
33575
33748
|
cursor: Scalars['String']['output'];
|
|
33576
33749
|
node?: Maybe<JiraNavigationItem>;
|
|
33577
33750
|
};
|
|
33751
|
+
export declare enum JiraNavigationItemTypeKey {
|
|
33752
|
+
App = "APP",
|
|
33753
|
+
Approvals = "APPROVALS",
|
|
33754
|
+
Apps = "APPS",
|
|
33755
|
+
Attachments = "ATTACHMENTS",
|
|
33756
|
+
Backlog = "BACKLOG",
|
|
33757
|
+
Board = "BOARD",
|
|
33758
|
+
Calendar = "CALENDAR",
|
|
33759
|
+
Code = "CODE",
|
|
33760
|
+
Components = "COMPONENTS",
|
|
33761
|
+
Deployments = "DEPLOYMENTS",
|
|
33762
|
+
Forms = "FORMS",
|
|
33763
|
+
Goals = "GOALS",
|
|
33764
|
+
Incidents = "INCIDENTS",
|
|
33765
|
+
Issues = "ISSUES",
|
|
33766
|
+
List = "LIST",
|
|
33767
|
+
OnCall = "ON_CALL",
|
|
33768
|
+
Pages = "PAGES",
|
|
33769
|
+
Releases = "RELEASES",
|
|
33770
|
+
Reports = "REPORTS",
|
|
33771
|
+
Requests = "REQUESTS",
|
|
33772
|
+
Security = "SECURITY",
|
|
33773
|
+
Shortcut = "SHORTCUT",
|
|
33774
|
+
Shortcuts = "SHORTCUTS",
|
|
33775
|
+
Summary = "SUMMARY",
|
|
33776
|
+
Timeline = "TIMELINE"
|
|
33777
|
+
}
|
|
33578
33778
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
33579
33779
|
__typename?: 'JiraNavigationUIStateUserProperty';
|
|
33580
33780
|
id: Scalars['ID']['output'];
|
|
@@ -34222,6 +34422,7 @@ export declare type JiraPlan = Node & {
|
|
|
34222
34422
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
34223
34423
|
__typename?: 'JiraPlatformAttachment';
|
|
34224
34424
|
attachmentId: Scalars['String']['output'];
|
|
34425
|
+
attachmentProperty?: Maybe<Scalars['JSON']['output']>;
|
|
34225
34426
|
author?: Maybe<User>;
|
|
34226
34427
|
created: Scalars['DateTime']['output'];
|
|
34227
34428
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
@@ -34236,6 +34437,9 @@ export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
|
34236
34437
|
parentName?: Maybe<Scalars['String']['output']>;
|
|
34237
34438
|
searchViewContext?: Maybe<JiraAttachmentSearchViewContext>;
|
|
34238
34439
|
};
|
|
34440
|
+
export declare type JiraPlatformAttachmentAttachmentPropertyArgs = {
|
|
34441
|
+
key: Scalars['String']['input'];
|
|
34442
|
+
};
|
|
34239
34443
|
export declare type JiraPlatformAttachmentMediaReadTokenArgs = {
|
|
34240
34444
|
durationInSeconds: Scalars['Int']['input'];
|
|
34241
34445
|
maxTokenLength: Scalars['Int']['input'];
|
|
@@ -35104,6 +35308,7 @@ export declare type JiraQuery = {
|
|
|
35104
35308
|
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
35105
35309
|
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
35106
35310
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
35311
|
+
recentItems?: Maybe<JiraSearchableEntityConnection>;
|
|
35107
35312
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
35108
35313
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
35109
35314
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
@@ -35646,6 +35851,14 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
|
35646
35851
|
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
35647
35852
|
userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
|
|
35648
35853
|
};
|
|
35854
|
+
export declare type JiraQueryRecentItemsArgs = {
|
|
35855
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35856
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35857
|
+
cloudId: Scalars['ID']['input'];
|
|
35858
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35859
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35860
|
+
types: Array<JiraSearchableEntityType>;
|
|
35861
|
+
};
|
|
35649
35862
|
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
35650
35863
|
ids: Array<Scalars['ID']['input']>;
|
|
35651
35864
|
};
|
|
@@ -35688,7 +35901,7 @@ export declare type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
|
35688
35901
|
};
|
|
35689
35902
|
export declare type JiraQueryScaledConfigurationArgs = {
|
|
35690
35903
|
cloudId: Scalars['ID']['input'];
|
|
35691
|
-
id
|
|
35904
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
35692
35905
|
};
|
|
35693
35906
|
export declare type JiraQueryScaledConfigurationPermissionsArgs = {
|
|
35694
35907
|
cloudId: Scalars['ID']['input'];
|
|
@@ -36419,6 +36632,23 @@ export declare type JiraScreenTabLayoutItemEdge = {
|
|
|
36419
36632
|
cursor: Scalars['String']['output'];
|
|
36420
36633
|
node?: Maybe<JiraScreenTabLayoutItem>;
|
|
36421
36634
|
};
|
|
36635
|
+
export declare type JiraSearchableEntity = JiraBoard | JiraCustomFilter | JiraDashboard | JiraProject | JiraSystemFilter;
|
|
36636
|
+
export declare type JiraSearchableEntityConnection = {
|
|
36637
|
+
__typename?: 'JiraSearchableEntityConnection';
|
|
36638
|
+
edges?: Maybe<Array<Maybe<JiraSearchableEntityEdge>>>;
|
|
36639
|
+
pageInfo: PageInfo;
|
|
36640
|
+
};
|
|
36641
|
+
export declare type JiraSearchableEntityEdge = {
|
|
36642
|
+
__typename?: 'JiraSearchableEntityEdge';
|
|
36643
|
+
cursor: Scalars['String']['output'];
|
|
36644
|
+
node?: Maybe<JiraSearchableEntity>;
|
|
36645
|
+
};
|
|
36646
|
+
export declare enum JiraSearchableEntityType {
|
|
36647
|
+
Board = "BOARD",
|
|
36648
|
+
Dashboard = "DASHBOARD",
|
|
36649
|
+
Filter = "FILTER",
|
|
36650
|
+
Project = "PROJECT"
|
|
36651
|
+
}
|
|
36422
36652
|
export declare type JiraSecurityLevel = Node & {
|
|
36423
36653
|
__typename?: 'JiraSecurityLevel';
|
|
36424
36654
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -36447,6 +36677,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
36447
36677
|
id: Scalars['ID']['output'];
|
|
36448
36678
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
36449
36679
|
name: Scalars['String']['output'];
|
|
36680
|
+
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
36450
36681
|
securityLevel?: Maybe<JiraSecurityLevel>;
|
|
36451
36682
|
securityLevels?: Maybe<JiraSecurityLevelConnection>;
|
|
36452
36683
|
type: Scalars['String']['output'];
|
|
@@ -36455,6 +36686,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
36455
36686
|
export declare type JiraSecurityLevelFieldSecurityLevelsArgs = {
|
|
36456
36687
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36457
36688
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
36689
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
36458
36690
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36459
36691
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
36460
36692
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -37066,6 +37298,14 @@ export declare type JiraServiceManagementProjectTeamType = {
|
|
|
37066
37298
|
__typename?: 'JiraServiceManagementProjectTeamType';
|
|
37067
37299
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
37068
37300
|
};
|
|
37301
|
+
export declare type JiraServiceManagementQueue = Node & {
|
|
37302
|
+
__typename?: 'JiraServiceManagementQueue';
|
|
37303
|
+
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
37304
|
+
id: Scalars['ID']['output'];
|
|
37305
|
+
queueId?: Maybe<Scalars['Long']['output']>;
|
|
37306
|
+
queueUrl?: Maybe<Scalars['URL']['output']>;
|
|
37307
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
37308
|
+
};
|
|
37069
37309
|
export declare enum JiraServiceManagementRendererType {
|
|
37070
37310
|
AtlassianWikiRendererType = "ATLASSIAN_WIKI_RENDERER_TYPE",
|
|
37071
37311
|
JiraTextRendererType = "JIRA_TEXT_RENDERER_TYPE"
|
|
@@ -37473,9 +37713,12 @@ export declare type JiraShortcutDataInput = {
|
|
|
37473
37713
|
};
|
|
37474
37714
|
export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
37475
37715
|
__typename?: 'JiraShortcutNavigationItem';
|
|
37716
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
37717
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37476
37718
|
id: Scalars['ID']['output'];
|
|
37477
37719
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37478
37720
|
label?: Maybe<Scalars['String']['output']>;
|
|
37721
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
37479
37722
|
url?: Maybe<Scalars['String']['output']>;
|
|
37480
37723
|
};
|
|
37481
37724
|
export declare type JiraSimilarIssues = {
|
|
@@ -37651,6 +37894,7 @@ export declare type JiraSingleVersionPickerField = JiraIssueField & JiraIssueFie
|
|
|
37651
37894
|
export declare type JiraSingleVersionPickerFieldVersionsArgs = {
|
|
37652
37895
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37653
37896
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
37897
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
37654
37898
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37655
37899
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37656
37900
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -37660,12 +37904,25 @@ export declare type JiraSingleVersionPickerFieldInput = {
|
|
|
37660
37904
|
fieldId: Scalars['ID']['input'];
|
|
37661
37905
|
version: JiraVersionInput;
|
|
37662
37906
|
};
|
|
37907
|
+
export declare type JiraSingleVersionPickerFieldOperationInput = {
|
|
37908
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
37909
|
+
operation: JiraSingleValueFieldOperations;
|
|
37910
|
+
};
|
|
37911
|
+
export declare type JiraSingleVersionPickerFieldPayload = Payload & {
|
|
37912
|
+
__typename?: 'JiraSingleVersionPickerFieldPayload';
|
|
37913
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37914
|
+
field?: Maybe<JiraSingleVersionPickerField>;
|
|
37915
|
+
success: Scalars['Boolean']['output'];
|
|
37916
|
+
};
|
|
37663
37917
|
export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Node & {
|
|
37664
37918
|
__typename?: 'JiraSoftwareBuiltInNavigationItem';
|
|
37919
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
37920
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37665
37921
|
id: Scalars['ID']['output'];
|
|
37666
37922
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37667
37923
|
itemType?: Maybe<JiraSoftwareSimpleNavigationItemEnum>;
|
|
37668
37924
|
label?: Maybe<Scalars['String']['output']>;
|
|
37925
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
37669
37926
|
};
|
|
37670
37927
|
export declare type JiraSoftwareIssueSearchCustomInput = {
|
|
37671
37928
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38477,6 +38734,10 @@ export declare type JiraUpdateSingleSelectUserPickerFieldInput = {
|
|
|
38477
38734
|
id: Scalars['ID']['input'];
|
|
38478
38735
|
operation: JiraSingleSelectUserPickerFieldOperationInput;
|
|
38479
38736
|
};
|
|
38737
|
+
export declare type JiraUpdateSingleVersionPickerFieldInput = {
|
|
38738
|
+
id: Scalars['ID']['input'];
|
|
38739
|
+
operation: JiraSingleVersionPickerFieldOperationInput;
|
|
38740
|
+
};
|
|
38480
38741
|
export declare type JiraUpdateSprintFieldInput = {
|
|
38481
38742
|
id: Scalars['ID']['input'];
|
|
38482
38743
|
operation: JiraSprintFieldOperationInput;
|
|
@@ -39705,6 +39966,7 @@ export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
|
39705
39966
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
39706
39967
|
label?: Maybe<Scalars['String']['output']>;
|
|
39707
39968
|
type?: Maybe<JiraWorkManagementSavedViewType>;
|
|
39969
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
39708
39970
|
};
|
|
39709
39971
|
export declare type JiraWorkManagementSavedViewResult = JiraWorkManagementSavedView | QueryError;
|
|
39710
39972
|
export declare type JiraWorkManagementSavedViewType = Node & {
|
|
@@ -39712,6 +39974,7 @@ export declare type JiraWorkManagementSavedViewType = Node & {
|
|
|
39712
39974
|
id: Scalars['ID']['output'];
|
|
39713
39975
|
key?: Maybe<Scalars['String']['output']>;
|
|
39714
39976
|
label?: Maybe<Scalars['String']['output']>;
|
|
39977
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
39715
39978
|
};
|
|
39716
39979
|
export declare type JiraWorkManagementSavedViewTypeConnection = HasPageInfo & {
|
|
39717
39980
|
__typename?: 'JiraWorkManagementSavedViewTypeConnection';
|
|
@@ -40520,12 +40783,61 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
40520
40783
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
40521
40784
|
input: MarketplaceStoreInstallAppInput;
|
|
40522
40785
|
};
|
|
40786
|
+
export declare type MarketplaceStorePartnerAddress = {
|
|
40787
|
+
__typename?: 'MarketplaceStorePartnerAddress';
|
|
40788
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
40789
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
40790
|
+
line1?: Maybe<Scalars['String']['output']>;
|
|
40791
|
+
line2?: Maybe<Scalars['String']['output']>;
|
|
40792
|
+
postcode?: Maybe<Scalars['String']['output']>;
|
|
40793
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
40794
|
+
};
|
|
40795
|
+
export declare type MarketplaceStorePartnerContactDetails = {
|
|
40796
|
+
__typename?: 'MarketplaceStorePartnerContactDetails';
|
|
40797
|
+
email: Scalars['String']['output'];
|
|
40798
|
+
homepageUrl?: Maybe<Scalars['String']['output']>;
|
|
40799
|
+
otherContactDetails?: Maybe<Scalars['String']['output']>;
|
|
40800
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
40801
|
+
};
|
|
40802
|
+
export declare type MarketplaceStorePartnerEnrollment = {
|
|
40803
|
+
__typename?: 'MarketplaceStorePartnerEnrollment';
|
|
40804
|
+
program?: Maybe<MarketplaceStorePartnerEnrollmentProgram>;
|
|
40805
|
+
value?: Maybe<MarketplaceStorePartnerEnrollmentProgramValue>;
|
|
40806
|
+
};
|
|
40807
|
+
export declare enum MarketplaceStorePartnerEnrollmentProgram {
|
|
40808
|
+
MarketplacePartner = "MARKETPLACE_PARTNER",
|
|
40809
|
+
SolutionPartner = "SOLUTION_PARTNER"
|
|
40810
|
+
}
|
|
40811
|
+
export declare enum MarketplaceStorePartnerEnrollmentProgramValue {
|
|
40812
|
+
Gold = "GOLD",
|
|
40813
|
+
Platinum = "PLATINUM",
|
|
40814
|
+
Silver = "SILVER"
|
|
40815
|
+
}
|
|
40816
|
+
export declare type MarketplaceStorePartnerProfileResponse = {
|
|
40817
|
+
__typename?: 'MarketplaceStorePartnerProfileResponse';
|
|
40818
|
+
address?: Maybe<MarketplaceStorePartnerAddress>;
|
|
40819
|
+
contactDetails?: Maybe<MarketplaceStorePartnerContactDetails>;
|
|
40820
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
40821
|
+
enrollments: Array<Maybe<MarketplaceStorePartnerEnrollment>>;
|
|
40822
|
+
id: Scalars['ID']['output'];
|
|
40823
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
40824
|
+
name: Scalars['String']['output'];
|
|
40825
|
+
supportDetails?: Maybe<MarketplaceStorePartnerSupportDetails>;
|
|
40826
|
+
};
|
|
40827
|
+
export declare type MarketplaceStorePartnerSupportDetails = {
|
|
40828
|
+
__typename?: 'MarketplaceStorePartnerSupportDetails';
|
|
40829
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
40830
|
+
name: Scalars['String']['output'];
|
|
40831
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
40832
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
40833
|
+
};
|
|
40523
40834
|
export declare type MarketplaceStoreQueryApi = {
|
|
40524
40835
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
40525
40836
|
category: MarketplaceStoreCategoryResponse;
|
|
40526
40837
|
collection: MarketplaceStoreCollectionResponse;
|
|
40527
40838
|
homePage: MarketplaceStoreHomePageResponse;
|
|
40528
40839
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
40840
|
+
partnerProfile: MarketplaceStorePartnerProfileResponse;
|
|
40529
40841
|
};
|
|
40530
40842
|
export declare type MarketplaceStoreQueryApiCategoryArgs = {
|
|
40531
40843
|
slug: Scalars['String']['input'];
|
|
@@ -40539,6 +40851,10 @@ export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
|
40539
40851
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
40540
40852
|
id: Scalars['ID']['input'];
|
|
40541
40853
|
};
|
|
40854
|
+
export declare type MarketplaceStoreQueryApiPartnerProfileArgs = {
|
|
40855
|
+
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
40856
|
+
vendorId: Scalars['ID']['input'];
|
|
40857
|
+
};
|
|
40542
40858
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
40543
40859
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
40544
40860
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -45292,6 +45608,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
45292
45608
|
export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
45293
45609
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
45294
45610
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
45611
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
45295
45612
|
description: Scalars['String']['output'];
|
|
45296
45613
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
45297
45614
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
@@ -46344,6 +46661,7 @@ export declare type ShepherdDetectionResourceExclusion = {
|
|
|
46344
46661
|
ari: Scalars['ID']['output'];
|
|
46345
46662
|
createdBy?: Maybe<Scalars['ID']['output']>;
|
|
46346
46663
|
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
46664
|
+
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
46347
46665
|
};
|
|
46348
46666
|
export declare enum ShepherdDetectionScanningFrequency {
|
|
46349
46667
|
RealTime = "REAL_TIME",
|
|
@@ -46405,18 +46723,12 @@ export declare type ShepherdExclusionContentInfoResult = QueryError | ShepherdEx
|
|
|
46405
46723
|
export declare type ShepherdExclusionsQueries = {
|
|
46406
46724
|
__typename?: 'ShepherdExclusionsQueries';
|
|
46407
46725
|
contentInfo?: Maybe<ShepherdExclusionContentInfoResult>;
|
|
46408
|
-
contentInfoFromUrl?: Maybe<ShepherdExclusionContentInfoResult>;
|
|
46409
46726
|
};
|
|
46410
46727
|
export declare type ShepherdExclusionsQueriesContentInfoArgs = {
|
|
46411
46728
|
contentUrlOrAri: Scalars['String']['input'];
|
|
46412
46729
|
productAti: Scalars['String']['input'];
|
|
46413
46730
|
workspaceId: Scalars['ID']['input'];
|
|
46414
46731
|
};
|
|
46415
|
-
export declare type ShepherdExclusionsQueriesContentInfoFromUrlArgs = {
|
|
46416
|
-
contentUrl: Scalars['URL']['input'];
|
|
46417
|
-
productAti: Scalars['String']['input'];
|
|
46418
|
-
workspaceId: Scalars['ID']['input'];
|
|
46419
|
-
};
|
|
46420
46732
|
export declare type ShepherdExternalResource = JiraIssue;
|
|
46421
46733
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
46422
46734
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
@@ -47999,17 +48311,11 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
47999
48311
|
};
|
|
48000
48312
|
export declare type Toolchain = {
|
|
48001
48313
|
__typename?: 'Toolchain';
|
|
48002
|
-
check3LO?: Maybe<ToolchainCheck3Lo>;
|
|
48003
48314
|
checkAuth?: Maybe<ToolchainCheckAuth>;
|
|
48004
48315
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
48005
48316
|
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
48006
48317
|
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
48007
48318
|
};
|
|
48008
|
-
export declare type ToolchainCheck3LoArgs = {
|
|
48009
|
-
cloudId: Scalars['ID']['input'];
|
|
48010
|
-
providerId: Scalars['String']['input'];
|
|
48011
|
-
providerType?: InputMaybe<ToolchainProviderType>;
|
|
48012
|
-
};
|
|
48013
48319
|
export declare type ToolchainCheckAuthArgs = {
|
|
48014
48320
|
cloudId: Scalars['ID']['input'];
|
|
48015
48321
|
providerId: Scalars['String']['input'];
|
|
@@ -48077,10 +48383,6 @@ export declare type ToolchainAssociateEntityInput = {
|
|
|
48077
48383
|
};
|
|
48078
48384
|
export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsOperationsComponentDetails | DevOpsRepository | DevOpsService;
|
|
48079
48385
|
export declare type ToolchainAssociatedEntity = DevOpsDesign;
|
|
48080
|
-
export declare type ToolchainCheck3Lo = {
|
|
48081
|
-
__typename?: 'ToolchainCheck3LO';
|
|
48082
|
-
authorized: Scalars['Boolean']['output'];
|
|
48083
|
-
};
|
|
48084
48386
|
export declare type ToolchainCheck3LoAuth = ToolchainCheckAuth & {
|
|
48085
48387
|
__typename?: 'ToolchainCheck3LOAuth';
|
|
48086
48388
|
authorized: Scalars['Boolean']['output'];
|