@forge/cli-shared 5.5.2-next.2 → 5.5.2-next.4
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 +13 -0
- package/out/ari/ari.d.ts +6 -1
- package/out/ari/ari.d.ts.map +1 -1
- package/out/ari/ari.js +6 -1
- package/out/graphql/graphql-types.d.ts +513 -137
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +30 -6
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -0
- package/package.json +2 -2
|
@@ -2501,9 +2501,11 @@ export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementEx
|
|
|
2501
2501
|
};
|
|
2502
2502
|
export declare type CcpEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
2503
2503
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
2504
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
2504
2505
|
};
|
|
2505
2506
|
export declare type CcpEntitlementExperienceCapabilitiesChangeOfferingV2Args = {
|
|
2506
2507
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
2508
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
2507
2509
|
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2508
2510
|
};
|
|
2509
2511
|
export declare type CcpEntitlementPreDunning = CommerceEntitlementPreDunning & {
|
|
@@ -2575,6 +2577,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
2575
2577
|
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']['output']>;
|
|
2576
2578
|
catalogAccountId?: Maybe<Scalars['ID']['output']>;
|
|
2577
2579
|
chargeElements?: Maybe<Array<Maybe<CcpChargeElement>>>;
|
|
2580
|
+
defaultTransitions?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
2578
2581
|
dependsOnOfferingKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2579
2582
|
derivedFromOffering?: Maybe<CcpDerivedFromOffering>;
|
|
2580
2583
|
derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
|
|
@@ -2595,11 +2598,20 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
2595
2598
|
status?: Maybe<CcpOfferingStatus>;
|
|
2596
2599
|
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
2597
2600
|
syntheticTemplates?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2601
|
+
transitions?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
2598
2602
|
trial?: Maybe<CcpOfferingTrial>;
|
|
2599
2603
|
type?: Maybe<CcpOfferingType>;
|
|
2600
2604
|
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
2601
2605
|
version?: Maybe<Scalars['Int']['output']>;
|
|
2602
2606
|
};
|
|
2607
|
+
export declare type CcpOfferingDefaultTransitionsArgs = {
|
|
2608
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
2609
|
+
};
|
|
2610
|
+
export declare type CcpOfferingTransitionsArgs = {
|
|
2611
|
+
offeringGroupSlug?: InputMaybe<Scalars['String']['input']>;
|
|
2612
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
2613
|
+
status?: InputMaybe<CcpOfferingStatus>;
|
|
2614
|
+
};
|
|
2603
2615
|
export declare type CcpOfferingChargeElement = {
|
|
2604
2616
|
__typename?: 'CcpOfferingChargeElement';
|
|
2605
2617
|
catalogAccountId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -5717,6 +5729,13 @@ export declare type CompassRemoveTeamLabelsPayload = Payload & {
|
|
|
5717
5729
|
removedLabels?: Maybe<Array<CompassTeamLabel>>;
|
|
5718
5730
|
success: Scalars['Boolean']['output'];
|
|
5719
5731
|
};
|
|
5732
|
+
export declare type CompassRepositoryValue = {
|
|
5733
|
+
__typename?: 'CompassRepositoryValue';
|
|
5734
|
+
exists: Scalars['Boolean']['output'];
|
|
5735
|
+
};
|
|
5736
|
+
export declare type CompassRepositoryValueInput = {
|
|
5737
|
+
exists: Scalars['Boolean']['input'];
|
|
5738
|
+
};
|
|
5720
5739
|
export declare type CompassRichTextObject = {
|
|
5721
5740
|
__typename?: 'CompassRichTextObject';
|
|
5722
5741
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -5857,6 +5876,7 @@ export declare type CompassScorecardAutomaticApplicationModel = CompassScorecard
|
|
|
5857
5876
|
componentOwnerIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5858
5877
|
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
5859
5878
|
componentTypeIds: Array<Scalars['ID']['output']>;
|
|
5879
|
+
repositoryValues?: Maybe<CompassRepositoryValue>;
|
|
5860
5880
|
};
|
|
5861
5881
|
export declare type CompassScorecardConnection = {
|
|
5862
5882
|
__typename?: 'CompassScorecardConnection';
|
|
@@ -5973,6 +5993,7 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
|
|
|
5973
5993
|
edges?: Maybe<Array<CompassScorecardDeactivatedComponentsEdge>>;
|
|
5974
5994
|
nodes?: Maybe<Array<CompassComponent>>;
|
|
5975
5995
|
pageInfo: PageInfo;
|
|
5996
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5976
5997
|
};
|
|
5977
5998
|
export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
5978
5999
|
__typename?: 'CompassScorecardDeactivatedComponentsEdge';
|
|
@@ -15434,6 +15455,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
15434
15455
|
isDeactivationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15435
15456
|
name: Scalars['String']['input'];
|
|
15436
15457
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
15458
|
+
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
15437
15459
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
15438
15460
|
};
|
|
15439
15461
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
@@ -16541,7 +16563,6 @@ export declare type CustomerServicePermissionGroupEdge = {
|
|
|
16541
16563
|
export declare enum CustomerServicePermissionGroupType {
|
|
16542
16564
|
Admins = "ADMINS",
|
|
16543
16565
|
AdminsAgents = "ADMINS_AGENTS",
|
|
16544
|
-
AdminsAgentsCollaborators = "ADMINS_AGENTS_COLLABORATORS",
|
|
16545
16566
|
AdminsAgentsSiteAccess = "ADMINS_AGENTS_SITE_ACCESS"
|
|
16546
16567
|
}
|
|
16547
16568
|
export declare type CustomerServicePlatformDetailValue = CustomerServiceUserDetailValue;
|
|
@@ -19035,6 +19056,7 @@ export declare type EcosystemConnectAppRelationAppArgs = {
|
|
|
19035
19056
|
};
|
|
19036
19057
|
export declare type EcosystemConnectAppVersion = {
|
|
19037
19058
|
__typename?: 'EcosystemConnectAppVersion';
|
|
19059
|
+
isSystemApp: Scalars['Boolean']['output'];
|
|
19038
19060
|
permissions: Array<EcosystemAppPermission>;
|
|
19039
19061
|
relatedApps?: Maybe<Array<EcosystemConnectAppRelation>>;
|
|
19040
19062
|
version: Scalars['String']['output'];
|
|
@@ -20152,6 +20174,8 @@ export declare enum ForgeAlertsListOrderOptions {
|
|
|
20152
20174
|
export declare type ForgeAlertsListQueryInput = {
|
|
20153
20175
|
closedAtEndDate?: InputMaybe<Scalars['String']['input']>;
|
|
20154
20176
|
closedAtStartDate?: InputMaybe<Scalars['String']['input']>;
|
|
20177
|
+
createdAtEndDate?: InputMaybe<Scalars['String']['input']>;
|
|
20178
|
+
createdAtStartDate?: InputMaybe<Scalars['String']['input']>;
|
|
20155
20179
|
limit: Scalars['Int']['input'];
|
|
20156
20180
|
order: ForgeAlertsListOrderOptions;
|
|
20157
20181
|
orderBy: ForgeAlertsListOrderByColumns;
|
|
@@ -24690,6 +24714,8 @@ export declare type GraphStore = {
|
|
|
24690
24714
|
appInstallationAssociatedToOperationsWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
|
|
24691
24715
|
appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
24692
24716
|
appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
24717
|
+
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
24718
|
+
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
24693
24719
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
24694
24720
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
24695
24721
|
atlasProjectContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
@@ -25079,14 +25105,30 @@ export declare type GraphStoreAppInstallationAssociatedToSecurityWorkspaceRelati
|
|
|
25079
25105
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25080
25106
|
id: Scalars['ID']['input'];
|
|
25081
25107
|
};
|
|
25108
|
+
export declare type GraphStoreAtlasGoalHasSubAtlasGoalArgs = {
|
|
25109
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25110
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25111
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25112
|
+
id: Scalars['ID']['input'];
|
|
25113
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
25114
|
+
};
|
|
25115
|
+
export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
25116
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25117
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25118
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25119
|
+
id: Scalars['ID']['input'];
|
|
25120
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
25121
|
+
};
|
|
25082
25122
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
|
|
25083
25123
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25124
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25084
25125
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25085
25126
|
id: Scalars['ID']['input'];
|
|
25086
25127
|
sort?: InputMaybe<GraphStoreAtlasProjectContributesToAtlasGoalSortInput>;
|
|
25087
25128
|
};
|
|
25088
25129
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalInverseArgs = {
|
|
25089
25130
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25131
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25090
25132
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25091
25133
|
id: Scalars['ID']['input'];
|
|
25092
25134
|
sort?: InputMaybe<GraphStoreAtlasProjectContributesToAtlasGoalSortInput>;
|
|
@@ -25103,12 +25145,14 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalRelationshipArgs
|
|
|
25103
25145
|
};
|
|
25104
25146
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicArgs = {
|
|
25105
25147
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25148
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25106
25149
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25107
25150
|
id: Scalars['ID']['input'];
|
|
25108
25151
|
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
25109
25152
|
};
|
|
25110
25153
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicInverseArgs = {
|
|
25111
25154
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25155
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25112
25156
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25113
25157
|
id: Scalars['ID']['input'];
|
|
25114
25158
|
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
@@ -25125,12 +25169,14 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs =
|
|
|
25125
25169
|
};
|
|
25126
25170
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
25127
25171
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25172
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25128
25173
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25129
25174
|
id: Scalars['ID']['input'];
|
|
25130
25175
|
sort?: InputMaybe<GraphStoreComponentAssociatedDocumentSortInput>;
|
|
25131
25176
|
};
|
|
25132
25177
|
export declare type GraphStoreComponentAssociatedDocumentInverseArgs = {
|
|
25133
25178
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25179
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25134
25180
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25135
25181
|
id: Scalars['ID']['input'];
|
|
25136
25182
|
sort?: InputMaybe<GraphStoreComponentAssociatedDocumentSortInput>;
|
|
@@ -25147,12 +25193,14 @@ export declare type GraphStoreComponentAssociatedDocumentRelationshipArgs = {
|
|
|
25147
25193
|
};
|
|
25148
25194
|
export declare type GraphStoreComponentImpactedByIncidentArgs = {
|
|
25149
25195
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25196
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25150
25197
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25151
25198
|
id: Scalars['ID']['input'];
|
|
25152
25199
|
sort?: InputMaybe<GraphStoreComponentImpactedByIncidentSortInput>;
|
|
25153
25200
|
};
|
|
25154
25201
|
export declare type GraphStoreComponentImpactedByIncidentInverseArgs = {
|
|
25155
25202
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25203
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25156
25204
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25157
25205
|
id: Scalars['ID']['input'];
|
|
25158
25206
|
sort?: InputMaybe<GraphStoreComponentImpactedByIncidentSortInput>;
|
|
@@ -25169,18 +25217,21 @@ export declare type GraphStoreComponentImpactedByIncidentRelationshipArgs = {
|
|
|
25169
25217
|
};
|
|
25170
25218
|
export declare type GraphStoreComponentLinkIsJiraProjectArgs = {
|
|
25171
25219
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25220
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25172
25221
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25173
25222
|
id: Scalars['ID']['input'];
|
|
25174
25223
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
25175
25224
|
};
|
|
25176
25225
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
25177
25226
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25227
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25178
25228
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25179
25229
|
id: Scalars['ID']['input'];
|
|
25180
25230
|
sort?: InputMaybe<GraphStoreComponentLinkedJswIssueSortInput>;
|
|
25181
25231
|
};
|
|
25182
25232
|
export declare type GraphStoreComponentLinkedJswIssueInverseArgs = {
|
|
25183
25233
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25234
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25184
25235
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25185
25236
|
id: Scalars['ID']['input'];
|
|
25186
25237
|
sort?: InputMaybe<GraphStoreComponentLinkedJswIssueSortInput>;
|
|
@@ -25197,6 +25248,7 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
|
25197
25248
|
};
|
|
25198
25249
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
25199
25250
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25251
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25200
25252
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25201
25253
|
id: Scalars['ID']['input'];
|
|
25202
25254
|
sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
|
|
@@ -25209,6 +25261,7 @@ export declare type GraphStoreContentReferencedEntityBatchArgs = {
|
|
|
25209
25261
|
};
|
|
25210
25262
|
export declare type GraphStoreContentReferencedEntityInverseArgs = {
|
|
25211
25263
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25264
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25212
25265
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25213
25266
|
id: Scalars['ID']['input'];
|
|
25214
25267
|
sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
|
|
@@ -25237,6 +25290,7 @@ export declare type GraphStoreFetchAllRelationshipsArgs = {
|
|
|
25237
25290
|
};
|
|
25238
25291
|
export declare type GraphStoreFocusAreaAssociatedToProjectArgs = {
|
|
25239
25292
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25293
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25240
25294
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25241
25295
|
id: Scalars['ID']['input'];
|
|
25242
25296
|
sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
|
|
@@ -25249,6 +25303,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectBatchArgs = {
|
|
|
25249
25303
|
};
|
|
25250
25304
|
export declare type GraphStoreFocusAreaAssociatedToProjectInverseArgs = {
|
|
25251
25305
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25306
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25252
25307
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25253
25308
|
id: Scalars['ID']['input'];
|
|
25254
25309
|
sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
|
|
@@ -25261,6 +25316,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectInverseBatchArgs = {
|
|
|
25261
25316
|
};
|
|
25262
25317
|
export declare type GraphStoreFocusAreaHasAtlasGoalArgs = {
|
|
25263
25318
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25319
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25264
25320
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25265
25321
|
id: Scalars['ID']['input'];
|
|
25266
25322
|
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
@@ -25273,6 +25329,7 @@ export declare type GraphStoreFocusAreaHasAtlasGoalBatchArgs = {
|
|
|
25273
25329
|
};
|
|
25274
25330
|
export declare type GraphStoreFocusAreaHasAtlasGoalInverseArgs = {
|
|
25275
25331
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25332
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25276
25333
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25277
25334
|
id: Scalars['ID']['input'];
|
|
25278
25335
|
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
@@ -25285,6 +25342,7 @@ export declare type GraphStoreFocusAreaHasAtlasGoalInverseBatchArgs = {
|
|
|
25285
25342
|
};
|
|
25286
25343
|
export declare type GraphStoreFocusAreaHasFocusAreaArgs = {
|
|
25287
25344
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25345
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25288
25346
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25289
25347
|
id: Scalars['ID']['input'];
|
|
25290
25348
|
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
@@ -25297,6 +25355,7 @@ export declare type GraphStoreFocusAreaHasFocusAreaBatchArgs = {
|
|
|
25297
25355
|
};
|
|
25298
25356
|
export declare type GraphStoreFocusAreaHasFocusAreaInverseArgs = {
|
|
25299
25357
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25358
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25300
25359
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25301
25360
|
id: Scalars['ID']['input'];
|
|
25302
25361
|
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
@@ -25309,6 +25368,7 @@ export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
|
|
|
25309
25368
|
};
|
|
25310
25369
|
export declare type GraphStoreFocusAreaHasProjectArgs = {
|
|
25311
25370
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25371
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25312
25372
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25313
25373
|
id: Scalars['ID']['input'];
|
|
25314
25374
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
@@ -25321,6 +25381,7 @@ export declare type GraphStoreFocusAreaHasProjectBatchArgs = {
|
|
|
25321
25381
|
};
|
|
25322
25382
|
export declare type GraphStoreFocusAreaHasProjectInverseArgs = {
|
|
25323
25383
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25384
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25324
25385
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25325
25386
|
id: Scalars['ID']['input'];
|
|
25326
25387
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
@@ -25333,6 +25394,7 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
25333
25394
|
};
|
|
25334
25395
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
25335
25396
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25397
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25336
25398
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25337
25399
|
id: Scalars['ID']['input'];
|
|
25338
25400
|
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
|
|
@@ -25345,6 +25407,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewBatchArgs = {
|
|
|
25345
25407
|
};
|
|
25346
25408
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseArgs = {
|
|
25347
25409
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25410
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25348
25411
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25349
25412
|
id: Scalars['ID']['input'];
|
|
25350
25413
|
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
|
|
@@ -25362,6 +25425,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseRelatio
|
|
|
25362
25425
|
};
|
|
25363
25426
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
25364
25427
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25428
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25365
25429
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25366
25430
|
id: Scalars['ID']['input'];
|
|
25367
25431
|
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
|
|
@@ -25374,6 +25438,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkBatchArgs
|
|
|
25374
25438
|
};
|
|
25375
25439
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseArgs = {
|
|
25376
25440
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25441
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25377
25442
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25378
25443
|
id: Scalars['ID']['input'];
|
|
25379
25444
|
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
|
|
@@ -25401,6 +25466,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewRelationshipAr
|
|
|
25401
25466
|
};
|
|
25402
25467
|
export declare type GraphStoreIncidentHasActionItemArgs = {
|
|
25403
25468
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25469
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25404
25470
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25405
25471
|
id: Scalars['ID']['input'];
|
|
25406
25472
|
sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
|
|
@@ -25413,6 +25479,7 @@ export declare type GraphStoreIncidentHasActionItemBatchArgs = {
|
|
|
25413
25479
|
};
|
|
25414
25480
|
export declare type GraphStoreIncidentHasActionItemInverseArgs = {
|
|
25415
25481
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25482
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25416
25483
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25417
25484
|
id: Scalars['ID']['input'];
|
|
25418
25485
|
sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
|
|
@@ -25435,6 +25502,7 @@ export declare type GraphStoreIncidentHasActionItemRelationshipArgs = {
|
|
|
25435
25502
|
};
|
|
25436
25503
|
export declare type GraphStoreIncidentLinkedJswIssueArgs = {
|
|
25437
25504
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25505
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25438
25506
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25439
25507
|
id: Scalars['ID']['input'];
|
|
25440
25508
|
sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
|
|
@@ -25447,6 +25515,7 @@ export declare type GraphStoreIncidentLinkedJswIssueBatchArgs = {
|
|
|
25447
25515
|
};
|
|
25448
25516
|
export declare type GraphStoreIncidentLinkedJswIssueInverseArgs = {
|
|
25449
25517
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25518
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25450
25519
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25451
25520
|
id: Scalars['ID']['input'];
|
|
25452
25521
|
sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
|
|
@@ -25469,6 +25538,7 @@ export declare type GraphStoreIncidentLinkedJswIssueRelationshipArgs = {
|
|
|
25469
25538
|
};
|
|
25470
25539
|
export declare type GraphStoreIssueAssociatedBranchInverseArgs = {
|
|
25471
25540
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25541
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25472
25542
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25473
25543
|
id: Scalars['ID']['input'];
|
|
25474
25544
|
sort?: InputMaybe<GraphStoreIssueAssociatedBranchSortInput>;
|
|
@@ -25491,6 +25561,7 @@ export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
|
|
|
25491
25561
|
};
|
|
25492
25562
|
export declare type GraphStoreIssueAssociatedBuildInverseArgs = {
|
|
25493
25563
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25564
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25494
25565
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25495
25566
|
id: Scalars['ID']['input'];
|
|
25496
25567
|
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
@@ -25513,6 +25584,7 @@ export declare type GraphStoreIssueAssociatedBuildRelationshipArgs = {
|
|
|
25513
25584
|
};
|
|
25514
25585
|
export declare type GraphStoreIssueAssociatedCommitInverseArgs = {
|
|
25515
25586
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25587
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25516
25588
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25517
25589
|
id: Scalars['ID']['input'];
|
|
25518
25590
|
sort?: InputMaybe<GraphStoreIssueAssociatedCommitSortInput>;
|
|
@@ -25529,6 +25601,7 @@ export declare type GraphStoreIssueAssociatedCommitRelationshipArgs = {
|
|
|
25529
25601
|
};
|
|
25530
25602
|
export declare type GraphStoreIssueAssociatedDeploymentArgs = {
|
|
25531
25603
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25604
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25532
25605
|
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25533
25606
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25534
25607
|
id: Scalars['ID']['input'];
|
|
@@ -25543,6 +25616,7 @@ export declare type GraphStoreIssueAssociatedDeploymentBatchArgs = {
|
|
|
25543
25616
|
};
|
|
25544
25617
|
export declare type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
25545
25618
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25619
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25546
25620
|
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25547
25621
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25548
25622
|
id: Scalars['ID']['input'];
|
|
@@ -25571,12 +25645,14 @@ export declare type GraphStoreIssueAssociatedDeploymentRelationshipArgs = {
|
|
|
25571
25645
|
};
|
|
25572
25646
|
export declare type GraphStoreIssueAssociatedDesignArgs = {
|
|
25573
25647
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25648
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25574
25649
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25575
25650
|
id: Scalars['ID']['input'];
|
|
25576
25651
|
sort?: InputMaybe<GraphStoreIssueAssociatedDesignSortInput>;
|
|
25577
25652
|
};
|
|
25578
25653
|
export declare type GraphStoreIssueAssociatedDesignInverseArgs = {
|
|
25579
25654
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25655
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25580
25656
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25581
25657
|
id: Scalars['ID']['input'];
|
|
25582
25658
|
sort?: InputMaybe<GraphStoreIssueAssociatedDesignSortInput>;
|
|
@@ -25593,12 +25669,14 @@ export declare type GraphStoreIssueAssociatedDesignRelationshipArgs = {
|
|
|
25593
25669
|
};
|
|
25594
25670
|
export declare type GraphStoreIssueAssociatedFeatureFlagArgs = {
|
|
25595
25671
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25672
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25596
25673
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25597
25674
|
id: Scalars['ID']['input'];
|
|
25598
25675
|
sort?: InputMaybe<GraphStoreIssueAssociatedFeatureFlagSortInput>;
|
|
25599
25676
|
};
|
|
25600
25677
|
export declare type GraphStoreIssueAssociatedFeatureFlagInverseArgs = {
|
|
25601
25678
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25679
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25602
25680
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25603
25681
|
id: Scalars['ID']['input'];
|
|
25604
25682
|
sort?: InputMaybe<GraphStoreIssueAssociatedFeatureFlagSortInput>;
|
|
@@ -25615,6 +25693,7 @@ export declare type GraphStoreIssueAssociatedFeatureFlagRelationshipArgs = {
|
|
|
25615
25693
|
};
|
|
25616
25694
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkArgs = {
|
|
25617
25695
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25696
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25618
25697
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25619
25698
|
id: Scalars['ID']['input'];
|
|
25620
25699
|
sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
|
|
@@ -25627,6 +25706,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkBatchArgs = {
|
|
|
25627
25706
|
};
|
|
25628
25707
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseArgs = {
|
|
25629
25708
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25709
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25630
25710
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25631
25711
|
id: Scalars['ID']['input'];
|
|
25632
25712
|
sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
|
|
@@ -25649,12 +25729,14 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkRelationshipArgs = {
|
|
|
25649
25729
|
};
|
|
25650
25730
|
export declare type GraphStoreIssueAssociatedPrArgs = {
|
|
25651
25731
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25732
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25652
25733
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25653
25734
|
id: Scalars['ID']['input'];
|
|
25654
25735
|
sort?: InputMaybe<GraphStoreIssueAssociatedPrSortInput>;
|
|
25655
25736
|
};
|
|
25656
25737
|
export declare type GraphStoreIssueAssociatedPrInverseArgs = {
|
|
25657
25738
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25739
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25658
25740
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25659
25741
|
id: Scalars['ID']['input'];
|
|
25660
25742
|
sort?: InputMaybe<GraphStoreIssueAssociatedPrSortInput>;
|
|
@@ -25671,6 +25753,7 @@ export declare type GraphStoreIssueAssociatedPrRelationshipArgs = {
|
|
|
25671
25753
|
};
|
|
25672
25754
|
export declare type GraphStoreIssueAssociatedRemoteLinkInverseArgs = {
|
|
25673
25755
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25756
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25674
25757
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25675
25758
|
id: Scalars['ID']['input'];
|
|
25676
25759
|
sort?: InputMaybe<GraphStoreIssueAssociatedRemoteLinkSortInput>;
|
|
@@ -25687,12 +25770,14 @@ export declare type GraphStoreIssueAssociatedRemoteLinkRelationshipArgs = {
|
|
|
25687
25770
|
};
|
|
25688
25771
|
export declare type GraphStoreIssueChangesComponentArgs = {
|
|
25689
25772
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25773
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25690
25774
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25691
25775
|
id: Scalars['ID']['input'];
|
|
25692
25776
|
sort?: InputMaybe<GraphStoreIssueChangesComponentSortInput>;
|
|
25693
25777
|
};
|
|
25694
25778
|
export declare type GraphStoreIssueChangesComponentInverseArgs = {
|
|
25695
25779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25780
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25696
25781
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25697
25782
|
id: Scalars['ID']['input'];
|
|
25698
25783
|
sort?: InputMaybe<GraphStoreIssueChangesComponentSortInput>;
|
|
@@ -25709,12 +25794,14 @@ export declare type GraphStoreIssueChangesComponentRelationshipArgs = {
|
|
|
25709
25794
|
};
|
|
25710
25795
|
export declare type GraphStoreIssueRecursiveAssociatedDeploymentArgs = {
|
|
25711
25796
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25797
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25712
25798
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25713
25799
|
id: Scalars['ID']['input'];
|
|
25714
25800
|
sort?: InputMaybe<GraphStoreIssueRecursiveAssociatedDeploymentSortInput>;
|
|
25715
25801
|
};
|
|
25716
25802
|
export declare type GraphStoreIssueRecursiveAssociatedDeploymentInverseArgs = {
|
|
25717
25803
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25804
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25718
25805
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25719
25806
|
id: Scalars['ID']['input'];
|
|
25720
25807
|
sort?: InputMaybe<GraphStoreIssueRecursiveAssociatedDeploymentSortInput>;
|
|
@@ -25731,12 +25818,14 @@ export declare type GraphStoreIssueRecursiveAssociatedDeploymentRelationshipArgs
|
|
|
25731
25818
|
};
|
|
25732
25819
|
export declare type GraphStoreIssueRecursiveAssociatedFeatureFlagArgs = {
|
|
25733
25820
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25821
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25734
25822
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25735
25823
|
id: Scalars['ID']['input'];
|
|
25736
25824
|
sort?: InputMaybe<GraphStoreIssueRecursiveAssociatedFeatureFlagSortInput>;
|
|
25737
25825
|
};
|
|
25738
25826
|
export declare type GraphStoreIssueRecursiveAssociatedFeatureFlagInverseArgs = {
|
|
25739
25827
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25828
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25740
25829
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25741
25830
|
id: Scalars['ID']['input'];
|
|
25742
25831
|
sort?: InputMaybe<GraphStoreIssueRecursiveAssociatedFeatureFlagSortInput>;
|
|
@@ -25753,12 +25842,14 @@ export declare type GraphStoreIssueRecursiveAssociatedFeatureFlagRelationshipArg
|
|
|
25753
25842
|
};
|
|
25754
25843
|
export declare type GraphStoreIssueRecursiveAssociatedPrArgs = {
|
|
25755
25844
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25845
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25756
25846
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25757
25847
|
id: Scalars['ID']['input'];
|
|
25758
25848
|
sort?: InputMaybe<GraphStoreIssueRecursiveAssociatedPrSortInput>;
|
|
25759
25849
|
};
|
|
25760
25850
|
export declare type GraphStoreIssueRecursiveAssociatedPrInverseArgs = {
|
|
25761
25851
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25852
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25762
25853
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25763
25854
|
id: Scalars['ID']['input'];
|
|
25764
25855
|
sort?: InputMaybe<GraphStoreIssueRecursiveAssociatedPrSortInput>;
|
|
@@ -25775,12 +25866,14 @@ export declare type GraphStoreIssueRecursiveAssociatedPrRelationshipArgs = {
|
|
|
25775
25866
|
};
|
|
25776
25867
|
export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
25777
25868
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25869
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25778
25870
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25779
25871
|
id: Scalars['ID']['input'];
|
|
25780
25872
|
sort?: InputMaybe<GraphStoreIssueToWhiteboardSortInput>;
|
|
25781
25873
|
};
|
|
25782
25874
|
export declare type GraphStoreIssueToWhiteboardInverseArgs = {
|
|
25783
25875
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25876
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25784
25877
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25785
25878
|
id: Scalars['ID']['input'];
|
|
25786
25879
|
sort?: InputMaybe<GraphStoreIssueToWhiteboardSortInput>;
|
|
@@ -25797,12 +25890,14 @@ export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
|
|
|
25797
25890
|
};
|
|
25798
25891
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
|
|
25799
25892
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25893
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25800
25894
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25801
25895
|
id: Scalars['ID']['input'];
|
|
25802
25896
|
sort?: InputMaybe<GraphStoreJiraEpicContributesToAtlasGoalSortInput>;
|
|
25803
25897
|
};
|
|
25804
25898
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalInverseArgs = {
|
|
25805
25899
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25900
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25806
25901
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25807
25902
|
id: Scalars['ID']['input'];
|
|
25808
25903
|
sort?: InputMaybe<GraphStoreJiraEpicContributesToAtlasGoalSortInput>;
|
|
@@ -25819,12 +25914,14 @@ export declare type GraphStoreJiraEpicContributesToAtlasGoalRelationshipArgs = {
|
|
|
25819
25914
|
};
|
|
25820
25915
|
export declare type GraphStoreJiraProjectAssociatedAtlasGoalArgs = {
|
|
25821
25916
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25917
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25822
25918
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25823
25919
|
id: Scalars['ID']['input'];
|
|
25824
25920
|
sort?: InputMaybe<GraphStoreJiraProjectAssociatedAtlasGoalSortInput>;
|
|
25825
25921
|
};
|
|
25826
25922
|
export declare type GraphStoreJiraProjectAssociatedAtlasGoalInverseArgs = {
|
|
25827
25923
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25924
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25828
25925
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25829
25926
|
id: Scalars['ID']['input'];
|
|
25830
25927
|
sort?: InputMaybe<GraphStoreJiraProjectAssociatedAtlasGoalSortInput>;
|
|
@@ -25841,6 +25938,7 @@ export declare type GraphStoreJiraProjectAssociatedAtlasGoalRelationshipArgs = {
|
|
|
25841
25938
|
};
|
|
25842
25939
|
export declare type GraphStoreJsmProjectAssociatedServiceArgs = {
|
|
25843
25940
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25941
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25844
25942
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25845
25943
|
id: Scalars['ID']['input'];
|
|
25846
25944
|
sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
|
|
@@ -25853,6 +25951,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceBatchArgs = {
|
|
|
25853
25951
|
};
|
|
25854
25952
|
export declare type GraphStoreJsmProjectAssociatedServiceInverseArgs = {
|
|
25855
25953
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25954
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25856
25955
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25857
25956
|
id: Scalars['ID']['input'];
|
|
25858
25957
|
sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
|
|
@@ -25875,12 +25974,14 @@ export declare type GraphStoreJsmProjectAssociatedServiceRelationshipArgs = {
|
|
|
25875
25974
|
};
|
|
25876
25975
|
export declare type GraphStoreJswProjectAssociatedComponentArgs = {
|
|
25877
25976
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25977
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25878
25978
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25879
25979
|
id: Scalars['ID']['input'];
|
|
25880
25980
|
sort?: InputMaybe<GraphStoreJswProjectAssociatedComponentSortInput>;
|
|
25881
25981
|
};
|
|
25882
25982
|
export declare type GraphStoreJswProjectAssociatedComponentInverseArgs = {
|
|
25883
25983
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25984
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25884
25985
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25885
25986
|
id: Scalars['ID']['input'];
|
|
25886
25987
|
sort?: InputMaybe<GraphStoreJswProjectAssociatedComponentSortInput>;
|
|
@@ -25897,6 +25998,7 @@ export declare type GraphStoreJswProjectAssociatedComponentRelationshipArgs = {
|
|
|
25897
25998
|
};
|
|
25898
25999
|
export declare type GraphStoreJswProjectAssociatedIncidentArgs = {
|
|
25899
26000
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26001
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25900
26002
|
filter?: InputMaybe<GraphStoreJswProjectAssociatedIncidentFilterInput>;
|
|
25901
26003
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25902
26004
|
id: Scalars['ID']['input'];
|
|
@@ -25904,6 +26006,7 @@ export declare type GraphStoreJswProjectAssociatedIncidentArgs = {
|
|
|
25904
26006
|
};
|
|
25905
26007
|
export declare type GraphStoreJswProjectAssociatedIncidentInverseArgs = {
|
|
25906
26008
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26009
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25907
26010
|
filter?: InputMaybe<GraphStoreJswProjectAssociatedIncidentFilterInput>;
|
|
25908
26011
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25909
26012
|
id: Scalars['ID']['input'];
|
|
@@ -25925,12 +26028,14 @@ export declare type GraphStoreJswProjectAssociatedIncidentRelationshipArgs = {
|
|
|
25925
26028
|
};
|
|
25926
26029
|
export declare type GraphStoreJswProjectSharesComponentWithJsmProjectArgs = {
|
|
25927
26030
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26031
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25928
26032
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25929
26033
|
id: Scalars['ID']['input'];
|
|
25930
26034
|
sort?: InputMaybe<GraphStoreJswProjectSharesComponentWithJsmProjectSortInput>;
|
|
25931
26035
|
};
|
|
25932
26036
|
export declare type GraphStoreJswProjectSharesComponentWithJsmProjectInverseArgs = {
|
|
25933
26037
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26038
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25934
26039
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25935
26040
|
id: Scalars['ID']['input'];
|
|
25936
26041
|
sort?: InputMaybe<GraphStoreJswProjectSharesComponentWithJsmProjectSortInput>;
|
|
@@ -25947,12 +26052,14 @@ export declare type GraphStoreJswProjectSharesComponentWithJsmProjectRelationshi
|
|
|
25947
26052
|
};
|
|
25948
26053
|
export declare type GraphStoreLinkedProjectHasVersionArgs = {
|
|
25949
26054
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26055
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25950
26056
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25951
26057
|
id: Scalars['ID']['input'];
|
|
25952
26058
|
sort?: InputMaybe<GraphStoreLinkedProjectHasVersionSortInput>;
|
|
25953
26059
|
};
|
|
25954
26060
|
export declare type GraphStoreLinkedProjectHasVersionInverseArgs = {
|
|
25955
26061
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26062
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25956
26063
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25957
26064
|
id: Scalars['ID']['input'];
|
|
25958
26065
|
sort?: InputMaybe<GraphStoreLinkedProjectHasVersionSortInput>;
|
|
@@ -25969,6 +26076,7 @@ export declare type GraphStoreLinkedProjectHasVersionRelationshipArgs = {
|
|
|
25969
26076
|
};
|
|
25970
26077
|
export declare type GraphStoreMediaAttachedToContentArgs = {
|
|
25971
26078
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26079
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25972
26080
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25973
26081
|
id: Scalars['ID']['input'];
|
|
25974
26082
|
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
@@ -25987,24 +26095,28 @@ export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
|
25987
26095
|
};
|
|
25988
26096
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
25989
26097
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26098
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25990
26099
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25991
26100
|
id: Scalars['ID']['input'];
|
|
25992
26101
|
sort?: InputMaybe<GraphStoreOnPremProjectHasIssueSortInput>;
|
|
25993
26102
|
};
|
|
25994
26103
|
export declare type GraphStoreOnPremProjectHasIssueInverseArgs = {
|
|
25995
26104
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26105
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25996
26106
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25997
26107
|
id: Scalars['ID']['input'];
|
|
25998
26108
|
sort?: InputMaybe<GraphStoreOnPremProjectHasIssueSortInput>;
|
|
25999
26109
|
};
|
|
26000
26110
|
export declare type GraphStoreOperationsContainerImpactedByIncidentArgs = {
|
|
26001
26111
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26112
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26002
26113
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26003
26114
|
id: Scalars['ID']['input'];
|
|
26004
26115
|
sort?: InputMaybe<GraphStoreOperationsContainerImpactedByIncidentSortInput>;
|
|
26005
26116
|
};
|
|
26006
26117
|
export declare type GraphStoreOperationsContainerImpactedByIncidentInverseArgs = {
|
|
26007
26118
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26119
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26008
26120
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26009
26121
|
id: Scalars['ID']['input'];
|
|
26010
26122
|
sort?: InputMaybe<GraphStoreOperationsContainerImpactedByIncidentSortInput>;
|
|
@@ -26021,12 +26133,14 @@ export declare type GraphStoreOperationsContainerImpactedByIncidentRelationshipA
|
|
|
26021
26133
|
};
|
|
26022
26134
|
export declare type GraphStoreOperationsContainerImprovedByActionItemArgs = {
|
|
26023
26135
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26136
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26024
26137
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26025
26138
|
id: Scalars['ID']['input'];
|
|
26026
26139
|
sort?: InputMaybe<GraphStoreOperationsContainerImprovedByActionItemSortInput>;
|
|
26027
26140
|
};
|
|
26028
26141
|
export declare type GraphStoreOperationsContainerImprovedByActionItemInverseArgs = {
|
|
26029
26142
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26143
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26030
26144
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26031
26145
|
id: Scalars['ID']['input'];
|
|
26032
26146
|
sort?: InputMaybe<GraphStoreOperationsContainerImprovedByActionItemSortInput>;
|
|
@@ -26043,12 +26157,14 @@ export declare type GraphStoreOperationsContainerImprovedByActionItemRelationshi
|
|
|
26043
26157
|
};
|
|
26044
26158
|
export declare type GraphStoreParentDocumentHasChildDocumentArgs = {
|
|
26045
26159
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26160
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26046
26161
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26047
26162
|
id: Scalars['ID']['input'];
|
|
26048
26163
|
sort?: InputMaybe<GraphStoreParentDocumentHasChildDocumentSortInput>;
|
|
26049
26164
|
};
|
|
26050
26165
|
export declare type GraphStoreParentDocumentHasChildDocumentInverseArgs = {
|
|
26051
26166
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26167
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26052
26168
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26053
26169
|
id: Scalars['ID']['input'];
|
|
26054
26170
|
sort?: InputMaybe<GraphStoreParentDocumentHasChildDocumentSortInput>;
|
|
@@ -26065,12 +26181,14 @@ export declare type GraphStoreParentDocumentHasChildDocumentRelationshipArgs = {
|
|
|
26065
26181
|
};
|
|
26066
26182
|
export declare type GraphStoreParentIssueHasChildIssueArgs = {
|
|
26067
26183
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26184
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26068
26185
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26069
26186
|
id: Scalars['ID']['input'];
|
|
26070
26187
|
sort?: InputMaybe<GraphStoreParentIssueHasChildIssueSortInput>;
|
|
26071
26188
|
};
|
|
26072
26189
|
export declare type GraphStoreParentIssueHasChildIssueInverseArgs = {
|
|
26073
26190
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26191
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26074
26192
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26075
26193
|
id: Scalars['ID']['input'];
|
|
26076
26194
|
sort?: InputMaybe<GraphStoreParentIssueHasChildIssueSortInput>;
|
|
@@ -26087,12 +26205,14 @@ export declare type GraphStoreParentIssueHasChildIssueRelationshipArgs = {
|
|
|
26087
26205
|
};
|
|
26088
26206
|
export declare type GraphStorePrInRepoArgs = {
|
|
26089
26207
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26208
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26090
26209
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26091
26210
|
id: Scalars['ID']['input'];
|
|
26092
26211
|
sort?: InputMaybe<GraphStorePrInRepoSortInput>;
|
|
26093
26212
|
};
|
|
26094
26213
|
export declare type GraphStorePrInRepoInverseArgs = {
|
|
26095
26214
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26215
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26096
26216
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26097
26217
|
id: Scalars['ID']['input'];
|
|
26098
26218
|
sort?: InputMaybe<GraphStorePrInRepoSortInput>;
|
|
@@ -26109,6 +26229,7 @@ export declare type GraphStorePrInRepoRelationshipArgs = {
|
|
|
26109
26229
|
};
|
|
26110
26230
|
export declare type GraphStoreProjectAssociatedBranchInverseArgs = {
|
|
26111
26231
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26232
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26112
26233
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26113
26234
|
id: Scalars['ID']['input'];
|
|
26114
26235
|
sort?: InputMaybe<GraphStoreProjectAssociatedBranchSortInput>;
|
|
@@ -26125,6 +26246,7 @@ export declare type GraphStoreProjectAssociatedBranchRelationshipArgs = {
|
|
|
26125
26246
|
};
|
|
26126
26247
|
export declare type GraphStoreProjectAssociatedBuildInverseArgs = {
|
|
26127
26248
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26249
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26128
26250
|
filter?: InputMaybe<GraphStoreProjectAssociatedBuildFilterInput>;
|
|
26129
26251
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26130
26252
|
id: Scalars['ID']['input'];
|
|
@@ -26146,6 +26268,7 @@ export declare type GraphStoreProjectAssociatedBuildRelationshipArgs = {
|
|
|
26146
26268
|
};
|
|
26147
26269
|
export declare type GraphStoreProjectAssociatedDeploymentArgs = {
|
|
26148
26270
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26271
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26149
26272
|
filter?: InputMaybe<GraphStoreProjectAssociatedDeploymentFilterInput>;
|
|
26150
26273
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26151
26274
|
id: Scalars['ID']['input'];
|
|
@@ -26153,6 +26276,7 @@ export declare type GraphStoreProjectAssociatedDeploymentArgs = {
|
|
|
26153
26276
|
};
|
|
26154
26277
|
export declare type GraphStoreProjectAssociatedDeploymentInverseArgs = {
|
|
26155
26278
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26279
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26156
26280
|
filter?: InputMaybe<GraphStoreProjectAssociatedDeploymentFilterInput>;
|
|
26157
26281
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26158
26282
|
id: Scalars['ID']['input'];
|
|
@@ -26174,12 +26298,14 @@ export declare type GraphStoreProjectAssociatedDeploymentRelationshipArgs = {
|
|
|
26174
26298
|
};
|
|
26175
26299
|
export declare type GraphStoreProjectAssociatedFeatureFlagArgs = {
|
|
26176
26300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26301
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26177
26302
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26178
26303
|
id: Scalars['ID']['input'];
|
|
26179
26304
|
sort?: InputMaybe<GraphStoreProjectAssociatedFeatureFlagSortInput>;
|
|
26180
26305
|
};
|
|
26181
26306
|
export declare type GraphStoreProjectAssociatedFeatureFlagInverseArgs = {
|
|
26182
26307
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26308
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26183
26309
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26184
26310
|
id: Scalars['ID']['input'];
|
|
26185
26311
|
sort?: InputMaybe<GraphStoreProjectAssociatedFeatureFlagSortInput>;
|
|
@@ -26196,12 +26322,14 @@ export declare type GraphStoreProjectAssociatedFeatureFlagRelationshipArgs = {
|
|
|
26196
26322
|
};
|
|
26197
26323
|
export declare type GraphStoreProjectAssociatedIncidentArgs = {
|
|
26198
26324
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26325
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26199
26326
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26200
26327
|
id: Scalars['ID']['input'];
|
|
26201
26328
|
sort?: InputMaybe<GraphStoreProjectAssociatedIncidentSortInput>;
|
|
26202
26329
|
};
|
|
26203
26330
|
export declare type GraphStoreProjectAssociatedIncidentInverseArgs = {
|
|
26204
26331
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26332
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26205
26333
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26206
26334
|
id: Scalars['ID']['input'];
|
|
26207
26335
|
sort?: InputMaybe<GraphStoreProjectAssociatedIncidentSortInput>;
|
|
@@ -26218,12 +26346,14 @@ export declare type GraphStoreProjectAssociatedIncidentRelationshipArgs = {
|
|
|
26218
26346
|
};
|
|
26219
26347
|
export declare type GraphStoreProjectAssociatedOpsgenieTeamArgs = {
|
|
26220
26348
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26349
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26221
26350
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26222
26351
|
id: Scalars['ID']['input'];
|
|
26223
26352
|
sort?: InputMaybe<GraphStoreProjectAssociatedOpsgenieTeamSortInput>;
|
|
26224
26353
|
};
|
|
26225
26354
|
export declare type GraphStoreProjectAssociatedOpsgenieTeamInverseArgs = {
|
|
26226
26355
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26356
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26227
26357
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26228
26358
|
id: Scalars['ID']['input'];
|
|
26229
26359
|
sort?: InputMaybe<GraphStoreProjectAssociatedOpsgenieTeamSortInput>;
|
|
@@ -26240,6 +26370,7 @@ export declare type GraphStoreProjectAssociatedOpsgenieTeamRelationshipArgs = {
|
|
|
26240
26370
|
};
|
|
26241
26371
|
export declare type GraphStoreProjectAssociatedPrArgs = {
|
|
26242
26372
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26373
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26243
26374
|
filter?: InputMaybe<GraphStoreProjectAssociatedPrFilterInput>;
|
|
26244
26375
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26245
26376
|
id: Scalars['ID']['input'];
|
|
@@ -26247,6 +26378,7 @@ export declare type GraphStoreProjectAssociatedPrArgs = {
|
|
|
26247
26378
|
};
|
|
26248
26379
|
export declare type GraphStoreProjectAssociatedPrInverseArgs = {
|
|
26249
26380
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26381
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26250
26382
|
filter?: InputMaybe<GraphStoreProjectAssociatedPrFilterInput>;
|
|
26251
26383
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26252
26384
|
id: Scalars['ID']['input'];
|
|
@@ -26268,6 +26400,7 @@ export declare type GraphStoreProjectAssociatedPrRelationshipArgs = {
|
|
|
26268
26400
|
};
|
|
26269
26401
|
export declare type GraphStoreProjectAssociatedRepoArgs = {
|
|
26270
26402
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26403
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26271
26404
|
filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
|
|
26272
26405
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26273
26406
|
id: Scalars['ID']['input'];
|
|
@@ -26275,6 +26408,7 @@ export declare type GraphStoreProjectAssociatedRepoArgs = {
|
|
|
26275
26408
|
};
|
|
26276
26409
|
export declare type GraphStoreProjectAssociatedRepoInverseArgs = {
|
|
26277
26410
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26411
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26278
26412
|
filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
|
|
26279
26413
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26280
26414
|
id: Scalars['ID']['input'];
|
|
@@ -26296,12 +26430,14 @@ export declare type GraphStoreProjectAssociatedRepoRelationshipArgs = {
|
|
|
26296
26430
|
};
|
|
26297
26431
|
export declare type GraphStoreProjectAssociatedServiceArgs = {
|
|
26298
26432
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26433
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26299
26434
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26300
26435
|
id: Scalars['ID']['input'];
|
|
26301
26436
|
sort?: InputMaybe<GraphStoreProjectAssociatedServiceSortInput>;
|
|
26302
26437
|
};
|
|
26303
26438
|
export declare type GraphStoreProjectAssociatedServiceInverseArgs = {
|
|
26304
26439
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26440
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26305
26441
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26306
26442
|
id: Scalars['ID']['input'];
|
|
26307
26443
|
sort?: InputMaybe<GraphStoreProjectAssociatedServiceSortInput>;
|
|
@@ -26318,12 +26454,14 @@ export declare type GraphStoreProjectAssociatedServiceRelationshipArgs = {
|
|
|
26318
26454
|
};
|
|
26319
26455
|
export declare type GraphStoreProjectAssociatedToIncidentArgs = {
|
|
26320
26456
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26457
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26321
26458
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26322
26459
|
id: Scalars['ID']['input'];
|
|
26323
26460
|
sort?: InputMaybe<GraphStoreProjectAssociatedToIncidentSortInput>;
|
|
26324
26461
|
};
|
|
26325
26462
|
export declare type GraphStoreProjectAssociatedToIncidentInverseArgs = {
|
|
26326
26463
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26464
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26327
26465
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26328
26466
|
id: Scalars['ID']['input'];
|
|
26329
26467
|
sort?: InputMaybe<GraphStoreProjectAssociatedToIncidentSortInput>;
|
|
@@ -26340,12 +26478,14 @@ export declare type GraphStoreProjectAssociatedToIncidentRelationshipArgs = {
|
|
|
26340
26478
|
};
|
|
26341
26479
|
export declare type GraphStoreProjectAssociatedToOperationsContainerArgs = {
|
|
26342
26480
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26481
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26343
26482
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26344
26483
|
id: Scalars['ID']['input'];
|
|
26345
26484
|
sort?: InputMaybe<GraphStoreProjectAssociatedToOperationsContainerSortInput>;
|
|
26346
26485
|
};
|
|
26347
26486
|
export declare type GraphStoreProjectAssociatedToOperationsContainerInverseArgs = {
|
|
26348
26487
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26488
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26349
26489
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26350
26490
|
id: Scalars['ID']['input'];
|
|
26351
26491
|
sort?: InputMaybe<GraphStoreProjectAssociatedToOperationsContainerSortInput>;
|
|
@@ -26362,6 +26502,7 @@ export declare type GraphStoreProjectAssociatedToOperationsContainerRelationship
|
|
|
26362
26502
|
};
|
|
26363
26503
|
export declare type GraphStoreProjectAssociatedToSecurityContainerInverseArgs = {
|
|
26364
26504
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26505
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26365
26506
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26366
26507
|
id: Scalars['ID']['input'];
|
|
26367
26508
|
sort?: InputMaybe<GraphStoreProjectAssociatedToSecurityContainerSortInput>;
|
|
@@ -26378,6 +26519,7 @@ export declare type GraphStoreProjectAssociatedToSecurityContainerRelationshipAr
|
|
|
26378
26519
|
};
|
|
26379
26520
|
export declare type GraphStoreProjectAssociatedVulnerabilityArgs = {
|
|
26380
26521
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26522
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26381
26523
|
filter?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityFilterInput>;
|
|
26382
26524
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26383
26525
|
id: Scalars['ID']['input'];
|
|
@@ -26385,6 +26527,7 @@ export declare type GraphStoreProjectAssociatedVulnerabilityArgs = {
|
|
|
26385
26527
|
};
|
|
26386
26528
|
export declare type GraphStoreProjectAssociatedVulnerabilityInverseArgs = {
|
|
26387
26529
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26530
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26388
26531
|
filter?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityFilterInput>;
|
|
26389
26532
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26390
26533
|
id: Scalars['ID']['input'];
|
|
@@ -26406,12 +26549,14 @@ export declare type GraphStoreProjectAssociatedVulnerabilityRelationshipArgs = {
|
|
|
26406
26549
|
};
|
|
26407
26550
|
export declare type GraphStoreProjectDisassociatedRepoArgs = {
|
|
26408
26551
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26552
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26409
26553
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26410
26554
|
id: Scalars['ID']['input'];
|
|
26411
26555
|
sort?: InputMaybe<GraphStoreProjectDisassociatedRepoSortInput>;
|
|
26412
26556
|
};
|
|
26413
26557
|
export declare type GraphStoreProjectDisassociatedRepoInverseArgs = {
|
|
26414
26558
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26559
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26415
26560
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26416
26561
|
id: Scalars['ID']['input'];
|
|
26417
26562
|
sort?: InputMaybe<GraphStoreProjectDisassociatedRepoSortInput>;
|
|
@@ -26428,12 +26573,14 @@ export declare type GraphStoreProjectDisassociatedRepoRelationshipArgs = {
|
|
|
26428
26573
|
};
|
|
26429
26574
|
export declare type GraphStoreProjectDocumentationEntityArgs = {
|
|
26430
26575
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26576
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26431
26577
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26432
26578
|
id: Scalars['ID']['input'];
|
|
26433
26579
|
sort?: InputMaybe<GraphStoreProjectDocumentationEntitySortInput>;
|
|
26434
26580
|
};
|
|
26435
26581
|
export declare type GraphStoreProjectDocumentationEntityInverseArgs = {
|
|
26436
26582
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26583
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26437
26584
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26438
26585
|
id: Scalars['ID']['input'];
|
|
26439
26586
|
sort?: InputMaybe<GraphStoreProjectDocumentationEntitySortInput>;
|
|
@@ -26450,12 +26597,14 @@ export declare type GraphStoreProjectDocumentationEntityRelationshipArgs = {
|
|
|
26450
26597
|
};
|
|
26451
26598
|
export declare type GraphStoreProjectDocumentationPageArgs = {
|
|
26452
26599
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26600
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26453
26601
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26454
26602
|
id: Scalars['ID']['input'];
|
|
26455
26603
|
sort?: InputMaybe<GraphStoreProjectDocumentationPageSortInput>;
|
|
26456
26604
|
};
|
|
26457
26605
|
export declare type GraphStoreProjectDocumentationPageInverseArgs = {
|
|
26458
26606
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26607
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26459
26608
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26460
26609
|
id: Scalars['ID']['input'];
|
|
26461
26610
|
sort?: InputMaybe<GraphStoreProjectDocumentationPageSortInput>;
|
|
@@ -26472,12 +26621,14 @@ export declare type GraphStoreProjectDocumentationPageRelationshipArgs = {
|
|
|
26472
26621
|
};
|
|
26473
26622
|
export declare type GraphStoreProjectDocumentationSpaceArgs = {
|
|
26474
26623
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26624
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26475
26625
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26476
26626
|
id: Scalars['ID']['input'];
|
|
26477
26627
|
sort?: InputMaybe<GraphStoreProjectDocumentationSpaceSortInput>;
|
|
26478
26628
|
};
|
|
26479
26629
|
export declare type GraphStoreProjectDocumentationSpaceInverseArgs = {
|
|
26480
26630
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26631
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26481
26632
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26482
26633
|
id: Scalars['ID']['input'];
|
|
26483
26634
|
sort?: InputMaybe<GraphStoreProjectDocumentationSpaceSortInput>;
|
|
@@ -26494,12 +26645,14 @@ export declare type GraphStoreProjectDocumentationSpaceRelationshipArgs = {
|
|
|
26494
26645
|
};
|
|
26495
26646
|
export declare type GraphStoreProjectExplicitlyAssociatedRepoArgs = {
|
|
26496
26647
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26648
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26497
26649
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26498
26650
|
id: Scalars['ID']['input'];
|
|
26499
26651
|
sort?: InputMaybe<GraphStoreProjectExplicitlyAssociatedRepoSortInput>;
|
|
26500
26652
|
};
|
|
26501
26653
|
export declare type GraphStoreProjectExplicitlyAssociatedRepoInverseArgs = {
|
|
26502
26654
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26655
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26503
26656
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26504
26657
|
id: Scalars['ID']['input'];
|
|
26505
26658
|
sort?: InputMaybe<GraphStoreProjectExplicitlyAssociatedRepoSortInput>;
|
|
@@ -26516,6 +26669,7 @@ export declare type GraphStoreProjectExplicitlyAssociatedRepoRelationshipArgs =
|
|
|
26516
26669
|
};
|
|
26517
26670
|
export declare type GraphStoreProjectHasIssueArgs = {
|
|
26518
26671
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26672
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26519
26673
|
filter?: InputMaybe<GraphStoreProjectHasIssueFilterInput>;
|
|
26520
26674
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26521
26675
|
id: Scalars['ID']['input'];
|
|
@@ -26523,6 +26677,7 @@ export declare type GraphStoreProjectHasIssueArgs = {
|
|
|
26523
26677
|
};
|
|
26524
26678
|
export declare type GraphStoreProjectHasIssueInverseArgs = {
|
|
26525
26679
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26680
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26526
26681
|
filter?: InputMaybe<GraphStoreProjectHasIssueFilterInput>;
|
|
26527
26682
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26528
26683
|
id: Scalars['ID']['input'];
|
|
@@ -26544,24 +26699,28 @@ export declare type GraphStoreProjectHasIssueRelationshipArgs = {
|
|
|
26544
26699
|
};
|
|
26545
26700
|
export declare type GraphStoreProjectHasRelatedWorkWithProjectArgs = {
|
|
26546
26701
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26702
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26547
26703
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26548
26704
|
id: Scalars['ID']['input'];
|
|
26549
26705
|
sort?: InputMaybe<GraphStoreProjectHasRelatedWorkWithProjectSortInput>;
|
|
26550
26706
|
};
|
|
26551
26707
|
export declare type GraphStoreProjectHasRelatedWorkWithProjectInverseArgs = {
|
|
26552
26708
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26709
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26553
26710
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26554
26711
|
id: Scalars['ID']['input'];
|
|
26555
26712
|
sort?: InputMaybe<GraphStoreProjectHasRelatedWorkWithProjectSortInput>;
|
|
26556
26713
|
};
|
|
26557
26714
|
export declare type GraphStoreProjectHasSharedVersionWithArgs = {
|
|
26558
26715
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26716
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26559
26717
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26560
26718
|
id: Scalars['ID']['input'];
|
|
26561
26719
|
sort?: InputMaybe<GraphStoreProjectHasSharedVersionWithSortInput>;
|
|
26562
26720
|
};
|
|
26563
26721
|
export declare type GraphStoreProjectHasSharedVersionWithInverseArgs = {
|
|
26564
26722
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26723
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26565
26724
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26566
26725
|
id: Scalars['ID']['input'];
|
|
26567
26726
|
sort?: InputMaybe<GraphStoreProjectHasSharedVersionWithSortInput>;
|
|
@@ -26578,12 +26737,14 @@ export declare type GraphStoreProjectHasSharedVersionWithRelationshipArgs = {
|
|
|
26578
26737
|
};
|
|
26579
26738
|
export declare type GraphStoreProjectHasVersionArgs = {
|
|
26580
26739
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26740
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26581
26741
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26582
26742
|
id: Scalars['ID']['input'];
|
|
26583
26743
|
sort?: InputMaybe<GraphStoreProjectHasVersionSortInput>;
|
|
26584
26744
|
};
|
|
26585
26745
|
export declare type GraphStoreProjectHasVersionInverseArgs = {
|
|
26586
26746
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26747
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26587
26748
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26588
26749
|
id: Scalars['ID']['input'];
|
|
26589
26750
|
sort?: InputMaybe<GraphStoreProjectHasVersionSortInput>;
|
|
@@ -26600,18 +26761,21 @@ export declare type GraphStoreProjectHasVersionRelationshipArgs = {
|
|
|
26600
26761
|
};
|
|
26601
26762
|
export declare type GraphStoreProjectLinkedToCompassComponentArgs = {
|
|
26602
26763
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26764
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26603
26765
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26604
26766
|
id: Scalars['ID']['input'];
|
|
26605
26767
|
sort?: InputMaybe<GraphStoreProjectLinkedToCompassComponentSortInput>;
|
|
26606
26768
|
};
|
|
26607
26769
|
export declare type GraphStoreProjectLinkedToCompassComponentInverseArgs = {
|
|
26608
26770
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26771
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26609
26772
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26610
26773
|
id: Scalars['ID']['input'];
|
|
26611
26774
|
sort?: InputMaybe<GraphStoreProjectLinkedToCompassComponentSortInput>;
|
|
26612
26775
|
};
|
|
26613
26776
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
26614
26777
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26778
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26615
26779
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26616
26780
|
id: Scalars['ID']['input'];
|
|
26617
26781
|
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
@@ -26640,18 +26804,21 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityRelation
|
|
|
26640
26804
|
};
|
|
26641
26805
|
export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
26642
26806
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26807
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26643
26808
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26644
26809
|
id: Scalars['ID']['input'];
|
|
26645
26810
|
sort?: InputMaybe<GraphStoreServiceAssociatedDeploymentSortInput>;
|
|
26646
26811
|
};
|
|
26647
26812
|
export declare type GraphStoreServiceAssociatedDeploymentInverseArgs = {
|
|
26648
26813
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26814
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26649
26815
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26650
26816
|
id: Scalars['ID']['input'];
|
|
26651
26817
|
sort?: InputMaybe<GraphStoreServiceAssociatedDeploymentSortInput>;
|
|
26652
26818
|
};
|
|
26653
26819
|
export declare type GraphStoreServiceLinkedIncidentArgs = {
|
|
26654
26820
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26821
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26655
26822
|
filter?: InputMaybe<GraphStoreServiceLinkedIncidentFilterInput>;
|
|
26656
26823
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26657
26824
|
id: Scalars['ID']['input'];
|
|
@@ -26659,6 +26826,7 @@ export declare type GraphStoreServiceLinkedIncidentArgs = {
|
|
|
26659
26826
|
};
|
|
26660
26827
|
export declare type GraphStoreServiceLinkedIncidentInverseArgs = {
|
|
26661
26828
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26829
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26662
26830
|
filter?: InputMaybe<GraphStoreServiceLinkedIncidentFilterInput>;
|
|
26663
26831
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26664
26832
|
id: Scalars['ID']['input'];
|
|
@@ -26680,60 +26848,70 @@ export declare type GraphStoreServiceLinkedIncidentRelationshipArgs = {
|
|
|
26680
26848
|
};
|
|
26681
26849
|
export declare type GraphStoreShipit57IssueLinksToPageArgs = {
|
|
26682
26850
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26851
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26683
26852
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26684
26853
|
id: Scalars['ID']['input'];
|
|
26685
26854
|
sort?: InputMaybe<GraphStoreShipit57IssueLinksToPageSortInput>;
|
|
26686
26855
|
};
|
|
26687
26856
|
export declare type GraphStoreShipit57IssueLinksToPageInverseArgs = {
|
|
26688
26857
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26858
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26689
26859
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26690
26860
|
id: Scalars['ID']['input'];
|
|
26691
26861
|
sort?: InputMaybe<GraphStoreShipit57IssueLinksToPageSortInput>;
|
|
26692
26862
|
};
|
|
26693
26863
|
export declare type GraphStoreShipit57IssueLinksToPageManualArgs = {
|
|
26694
26864
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26865
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26695
26866
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26696
26867
|
id: Scalars['ID']['input'];
|
|
26697
26868
|
sort?: InputMaybe<GraphStoreShipit57IssueLinksToPageManualSortInput>;
|
|
26698
26869
|
};
|
|
26699
26870
|
export declare type GraphStoreShipit57IssueLinksToPageManualInverseArgs = {
|
|
26700
26871
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26872
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26701
26873
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26702
26874
|
id: Scalars['ID']['input'];
|
|
26703
26875
|
sort?: InputMaybe<GraphStoreShipit57IssueLinksToPageManualSortInput>;
|
|
26704
26876
|
};
|
|
26705
26877
|
export declare type GraphStoreShipit57IssueRecursiveLinksToPageArgs = {
|
|
26706
26878
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26879
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26707
26880
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26708
26881
|
id: Scalars['ID']['input'];
|
|
26709
26882
|
sort?: InputMaybe<GraphStoreShipit57IssueRecursiveLinksToPageSortInput>;
|
|
26710
26883
|
};
|
|
26711
26884
|
export declare type GraphStoreShipit57IssueRecursiveLinksToPageInverseArgs = {
|
|
26712
26885
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26886
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26713
26887
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26714
26888
|
id: Scalars['ID']['input'];
|
|
26715
26889
|
sort?: InputMaybe<GraphStoreShipit57IssueRecursiveLinksToPageSortInput>;
|
|
26716
26890
|
};
|
|
26717
26891
|
export declare type GraphStoreShipit57PullRequestLinksToPageArgs = {
|
|
26718
26892
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26893
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26719
26894
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26720
26895
|
id: Scalars['ID']['input'];
|
|
26721
26896
|
sort?: InputMaybe<GraphStoreShipit57PullRequestLinksToPageSortInput>;
|
|
26722
26897
|
};
|
|
26723
26898
|
export declare type GraphStoreShipit57PullRequestLinksToPageInverseArgs = {
|
|
26724
26899
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26900
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26725
26901
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26726
26902
|
id: Scalars['ID']['input'];
|
|
26727
26903
|
sort?: InputMaybe<GraphStoreShipit57PullRequestLinksToPageSortInput>;
|
|
26728
26904
|
};
|
|
26729
26905
|
export declare type GraphStoreSpaceAssociatedWithProjectArgs = {
|
|
26730
26906
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26907
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26731
26908
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26732
26909
|
id: Scalars['ID']['input'];
|
|
26733
26910
|
sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
|
|
26734
26911
|
};
|
|
26735
26912
|
export declare type GraphStoreSpaceAssociatedWithProjectInverseArgs = {
|
|
26736
26913
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26914
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26737
26915
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26738
26916
|
id: Scalars['ID']['input'];
|
|
26739
26917
|
sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
|
|
@@ -26754,6 +26932,7 @@ export declare type GraphStoreSprintAssociatedBuildRelationshipArgs = {
|
|
|
26754
26932
|
};
|
|
26755
26933
|
export declare type GraphStoreSprintAssociatedDeploymentArgs = {
|
|
26756
26934
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26935
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26757
26936
|
filter?: InputMaybe<GraphStoreSprintAssociatedDeploymentFilterInput>;
|
|
26758
26937
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26759
26938
|
id: Scalars['ID']['input'];
|
|
@@ -26775,6 +26954,7 @@ export declare type GraphStoreSprintAssociatedDeploymentRelationshipArgs = {
|
|
|
26775
26954
|
};
|
|
26776
26955
|
export declare type GraphStoreSprintAssociatedFeatureFlagArgs = {
|
|
26777
26956
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26957
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26778
26958
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26779
26959
|
id: Scalars['ID']['input'];
|
|
26780
26960
|
sort?: InputMaybe<GraphStoreSprintAssociatedFeatureFlagSortInput>;
|
|
@@ -26791,6 +26971,7 @@ export declare type GraphStoreSprintAssociatedFeatureFlagRelationshipArgs = {
|
|
|
26791
26971
|
};
|
|
26792
26972
|
export declare type GraphStoreSprintAssociatedPrArgs = {
|
|
26793
26973
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26974
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26794
26975
|
filter?: InputMaybe<GraphStoreSprintAssociatedPrFilterInput>;
|
|
26795
26976
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26796
26977
|
id: Scalars['ID']['input'];
|
|
@@ -26812,6 +26993,7 @@ export declare type GraphStoreSprintAssociatedPrRelationshipArgs = {
|
|
|
26812
26993
|
};
|
|
26813
26994
|
export declare type GraphStoreSprintAssociatedVulnerabilityArgs = {
|
|
26814
26995
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26996
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26815
26997
|
filter?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityFilterInput>;
|
|
26816
26998
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26817
26999
|
id: Scalars['ID']['input'];
|
|
@@ -26833,6 +27015,7 @@ export declare type GraphStoreSprintAssociatedVulnerabilityRelationshipArgs = {
|
|
|
26833
27015
|
};
|
|
26834
27016
|
export declare type GraphStoreSprintContainsIssueArgs = {
|
|
26835
27017
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27018
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26836
27019
|
filter?: InputMaybe<GraphStoreSprintContainsIssueFilterInput>;
|
|
26837
27020
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26838
27021
|
id: Scalars['ID']['input'];
|
|
@@ -26854,6 +27037,7 @@ export declare type GraphStoreSprintContainsIssueRelationshipArgs = {
|
|
|
26854
27037
|
};
|
|
26855
27038
|
export declare type GraphStoreSprintRetrospectivePageArgs = {
|
|
26856
27039
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27040
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26857
27041
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26858
27042
|
id: Scalars['ID']['input'];
|
|
26859
27043
|
sort?: InputMaybe<GraphStoreSprintRetrospectivePageSortInput>;
|
|
@@ -26870,6 +27054,7 @@ export declare type GraphStoreSprintRetrospectivePageRelationshipArgs = {
|
|
|
26870
27054
|
};
|
|
26871
27055
|
export declare type GraphStoreSprintRetrospectiveWhiteboardArgs = {
|
|
26872
27056
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27057
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26873
27058
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26874
27059
|
id: Scalars['ID']['input'];
|
|
26875
27060
|
sort?: InputMaybe<GraphStoreSprintRetrospectiveWhiteboardSortInput>;
|
|
@@ -26886,12 +27071,14 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardRelationshipArgs = {
|
|
|
26886
27071
|
};
|
|
26887
27072
|
export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
26888
27073
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27074
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26889
27075
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26890
27076
|
id: Scalars['ID']['input'];
|
|
26891
27077
|
sort?: InputMaybe<GraphStoreTeamOwnsComponentSortInput>;
|
|
26892
27078
|
};
|
|
26893
27079
|
export declare type GraphStoreTeamWorksOnProjectArgs = {
|
|
26894
27080
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27081
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26895
27082
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26896
27083
|
id: Scalars['ID']['input'];
|
|
26897
27084
|
sort?: InputMaybe<GraphStoreTeamWorksOnProjectSortInput>;
|
|
@@ -26908,6 +27095,7 @@ export declare type GraphStoreTeamWorksOnProjectRelationshipArgs = {
|
|
|
26908
27095
|
};
|
|
26909
27096
|
export declare type GraphStoreTestPerfhammerMaterializationAInverseArgs = {
|
|
26910
27097
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27098
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26911
27099
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26912
27100
|
id: Scalars['ID']['input'];
|
|
26913
27101
|
sort?: InputMaybe<GraphStoreTestPerfhammerMaterializationASortInput>;
|
|
@@ -26934,6 +27122,7 @@ export declare type GraphStoreTestPerfhammerMaterializationBRelationshipArgs = {
|
|
|
26934
27122
|
};
|
|
26935
27123
|
export declare type GraphStoreTestPerfhammerMaterializationInverseArgs = {
|
|
26936
27124
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27125
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26937
27126
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26938
27127
|
id: Scalars['ID']['input'];
|
|
26939
27128
|
sort?: InputMaybe<GraphStoreTestPerfhammerMaterializationSortInput>;
|
|
@@ -26956,6 +27145,7 @@ export declare type GraphStoreTestPerfhammerRelationshipBatchArgs = {
|
|
|
26956
27145
|
};
|
|
26957
27146
|
export declare type GraphStoreTestPerfhammerRelationshipInverseArgs = {
|
|
26958
27147
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27148
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26959
27149
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26960
27150
|
id: Scalars['ID']['input'];
|
|
26961
27151
|
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
@@ -26978,12 +27168,14 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
26978
27168
|
};
|
|
26979
27169
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
26980
27170
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27171
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26981
27172
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26982
27173
|
id: Scalars['ID']['input'];
|
|
26983
27174
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
26984
27175
|
};
|
|
26985
27176
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
26986
27177
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27178
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26987
27179
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26988
27180
|
id: Scalars['ID']['input'];
|
|
26989
27181
|
sort?: InputMaybe<GraphStoreVersionAssociatedBranchSortInput>;
|
|
@@ -27000,6 +27192,7 @@ export declare type GraphStoreVersionAssociatedBranchRelationshipArgs = {
|
|
|
27000
27192
|
};
|
|
27001
27193
|
export declare type GraphStoreVersionAssociatedBuildInverseArgs = {
|
|
27002
27194
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27195
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27003
27196
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27004
27197
|
id: Scalars['ID']['input'];
|
|
27005
27198
|
sort?: InputMaybe<GraphStoreVersionAssociatedBuildSortInput>;
|
|
@@ -27016,6 +27209,7 @@ export declare type GraphStoreVersionAssociatedBuildRelationshipArgs = {
|
|
|
27016
27209
|
};
|
|
27017
27210
|
export declare type GraphStoreVersionAssociatedCommitInverseArgs = {
|
|
27018
27211
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27212
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27019
27213
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27020
27214
|
id: Scalars['ID']['input'];
|
|
27021
27215
|
sort?: InputMaybe<GraphStoreVersionAssociatedCommitSortInput>;
|
|
@@ -27032,12 +27226,14 @@ export declare type GraphStoreVersionAssociatedCommitRelationshipArgs = {
|
|
|
27032
27226
|
};
|
|
27033
27227
|
export declare type GraphStoreVersionAssociatedDeploymentArgs = {
|
|
27034
27228
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27229
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27035
27230
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27036
27231
|
id: Scalars['ID']['input'];
|
|
27037
27232
|
sort?: InputMaybe<GraphStoreVersionAssociatedDeploymentSortInput>;
|
|
27038
27233
|
};
|
|
27039
27234
|
export declare type GraphStoreVersionAssociatedDeploymentInverseArgs = {
|
|
27040
27235
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27236
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27041
27237
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27042
27238
|
id: Scalars['ID']['input'];
|
|
27043
27239
|
sort?: InputMaybe<GraphStoreVersionAssociatedDeploymentSortInput>;
|
|
@@ -27054,6 +27250,7 @@ export declare type GraphStoreVersionAssociatedDeploymentRelationshipArgs = {
|
|
|
27054
27250
|
};
|
|
27055
27251
|
export declare type GraphStoreVersionAssociatedDesignArgs = {
|
|
27056
27252
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27253
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27057
27254
|
filter?: InputMaybe<GraphStoreVersionAssociatedDesignFilterInput>;
|
|
27058
27255
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27059
27256
|
id: Scalars['ID']['input'];
|
|
@@ -27061,6 +27258,7 @@ export declare type GraphStoreVersionAssociatedDesignArgs = {
|
|
|
27061
27258
|
};
|
|
27062
27259
|
export declare type GraphStoreVersionAssociatedDesignInverseArgs = {
|
|
27063
27260
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27261
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27064
27262
|
filter?: InputMaybe<GraphStoreVersionAssociatedDesignFilterInput>;
|
|
27065
27263
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27066
27264
|
id: Scalars['ID']['input'];
|
|
@@ -27082,12 +27280,14 @@ export declare type GraphStoreVersionAssociatedDesignRelationshipArgs = {
|
|
|
27082
27280
|
};
|
|
27083
27281
|
export declare type GraphStoreVersionAssociatedFeatureFlagArgs = {
|
|
27084
27282
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27283
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27085
27284
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27086
27285
|
id: Scalars['ID']['input'];
|
|
27087
27286
|
sort?: InputMaybe<GraphStoreVersionAssociatedFeatureFlagSortInput>;
|
|
27088
27287
|
};
|
|
27089
27288
|
export declare type GraphStoreVersionAssociatedFeatureFlagInverseArgs = {
|
|
27090
27289
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27290
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27091
27291
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27092
27292
|
id: Scalars['ID']['input'];
|
|
27093
27293
|
sort?: InputMaybe<GraphStoreVersionAssociatedFeatureFlagSortInput>;
|
|
@@ -27104,12 +27304,14 @@ export declare type GraphStoreVersionAssociatedFeatureFlagRelationshipArgs = {
|
|
|
27104
27304
|
};
|
|
27105
27305
|
export declare type GraphStoreVersionAssociatedIssueArgs = {
|
|
27106
27306
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27307
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27107
27308
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27108
27309
|
id: Scalars['ID']['input'];
|
|
27109
27310
|
sort?: InputMaybe<GraphStoreVersionAssociatedIssueSortInput>;
|
|
27110
27311
|
};
|
|
27111
27312
|
export declare type GraphStoreVersionAssociatedIssueInverseArgs = {
|
|
27112
27313
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27314
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27113
27315
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27114
27316
|
id: Scalars['ID']['input'];
|
|
27115
27317
|
sort?: InputMaybe<GraphStoreVersionAssociatedIssueSortInput>;
|
|
@@ -27126,12 +27328,14 @@ export declare type GraphStoreVersionAssociatedIssueRelationshipArgs = {
|
|
|
27126
27328
|
};
|
|
27127
27329
|
export declare type GraphStoreVersionAssociatedPullRequestArgs = {
|
|
27128
27330
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27331
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27129
27332
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27130
27333
|
id: Scalars['ID']['input'];
|
|
27131
27334
|
sort?: InputMaybe<GraphStoreVersionAssociatedPullRequestSortInput>;
|
|
27132
27335
|
};
|
|
27133
27336
|
export declare type GraphStoreVersionAssociatedPullRequestInverseArgs = {
|
|
27134
27337
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27338
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27135
27339
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27136
27340
|
id: Scalars['ID']['input'];
|
|
27137
27341
|
sort?: InputMaybe<GraphStoreVersionAssociatedPullRequestSortInput>;
|
|
@@ -27148,6 +27352,7 @@ export declare type GraphStoreVersionAssociatedPullRequestRelationshipArgs = {
|
|
|
27148
27352
|
};
|
|
27149
27353
|
export declare type GraphStoreVersionAssociatedRemoteLinkInverseArgs = {
|
|
27150
27354
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27355
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27151
27356
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27152
27357
|
id: Scalars['ID']['input'];
|
|
27153
27358
|
sort?: InputMaybe<GraphStoreVersionAssociatedRemoteLinkSortInput>;
|
|
@@ -27164,12 +27369,14 @@ export declare type GraphStoreVersionAssociatedRemoteLinkRelationshipArgs = {
|
|
|
27164
27369
|
};
|
|
27165
27370
|
export declare type GraphStoreVersionUserAssociatedFeatureFlagArgs = {
|
|
27166
27371
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27372
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27167
27373
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27168
27374
|
id: Scalars['ID']['input'];
|
|
27169
27375
|
sort?: InputMaybe<GraphStoreVersionUserAssociatedFeatureFlagSortInput>;
|
|
27170
27376
|
};
|
|
27171
27377
|
export declare type GraphStoreVersionUserAssociatedFeatureFlagInverseArgs = {
|
|
27172
27378
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27379
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27173
27380
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27174
27381
|
id: Scalars['ID']['input'];
|
|
27175
27382
|
sort?: InputMaybe<GraphStoreVersionUserAssociatedFeatureFlagSortInput>;
|
|
@@ -27186,12 +27393,14 @@ export declare type GraphStoreVersionUserAssociatedFeatureFlagRelationshipArgs =
|
|
|
27186
27393
|
};
|
|
27187
27394
|
export declare type GraphStoreVulnerabilityAssociatedIssueArgs = {
|
|
27188
27395
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27396
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27189
27397
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27190
27398
|
id: Scalars['ID']['input'];
|
|
27191
27399
|
sort?: InputMaybe<GraphStoreVulnerabilityAssociatedIssueSortInput>;
|
|
27192
27400
|
};
|
|
27193
27401
|
export declare type GraphStoreVulnerabilityAssociatedIssueInverseArgs = {
|
|
27194
27402
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27403
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27195
27404
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27196
27405
|
id: Scalars['ID']['input'];
|
|
27197
27406
|
sort?: InputMaybe<GraphStoreVulnerabilityAssociatedIssueSortInput>;
|
|
@@ -27236,6 +27445,9 @@ export declare type GraphStoreAtiFilterInput = {
|
|
|
27236
27445
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
27237
27446
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
27238
27447
|
};
|
|
27448
|
+
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
27449
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
27450
|
+
};
|
|
27239
27451
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
27240
27452
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
27241
27453
|
};
|
|
@@ -28594,7 +28806,10 @@ export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
|
|
|
28594
28806
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28595
28807
|
};
|
|
28596
28808
|
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
28809
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
28810
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
28597
28811
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28812
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
28598
28813
|
};
|
|
28599
28814
|
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection = HasPageInfo & {
|
|
28600
28815
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection';
|
|
@@ -32929,6 +33144,34 @@ export declare type GraphStoreShipit57IssueRecursiveLinksToPageSortInput = {
|
|
|
32929
33144
|
export declare type GraphStoreShipit57PullRequestLinksToPageSortInput = {
|
|
32930
33145
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32931
33146
|
};
|
|
33147
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection = HasPageInfo & {
|
|
33148
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection';
|
|
33149
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge>>>;
|
|
33150
|
+
pageInfo: PageInfo;
|
|
33151
|
+
};
|
|
33152
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge = {
|
|
33153
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge';
|
|
33154
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33155
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33156
|
+
id: Scalars['ID']['output'];
|
|
33157
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33158
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion>;
|
|
33159
|
+
};
|
|
33160
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection = HasPageInfo & {
|
|
33161
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection';
|
|
33162
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge>>>;
|
|
33163
|
+
pageInfo: PageInfo;
|
|
33164
|
+
};
|
|
33165
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
33166
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge';
|
|
33167
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33168
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33169
|
+
id: Scalars['ID']['output'];
|
|
33170
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33171
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion>;
|
|
33172
|
+
};
|
|
33173
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
33174
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
32932
33175
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
32933
33176
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
32934
33177
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -33203,10 +33446,12 @@ export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge = {
|
|
|
33203
33446
|
};
|
|
33204
33447
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion = MercuryFocusArea;
|
|
33205
33448
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaUnion = MercuryFocusArea;
|
|
33206
|
-
export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & {
|
|
33449
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & HasTotal & {
|
|
33207
33450
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectConnection';
|
|
33208
33451
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectEdge>>>;
|
|
33452
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33209
33453
|
pageInfo: PageInfo;
|
|
33454
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33210
33455
|
};
|
|
33211
33456
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectEdge = {
|
|
33212
33457
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectEdge';
|
|
@@ -33216,10 +33461,12 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectEdge = {
|
|
|
33216
33461
|
lastUpdated: Scalars['DateTime']['output'];
|
|
33217
33462
|
node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectUnion>;
|
|
33218
33463
|
};
|
|
33219
|
-
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseConnection = HasPageInfo & {
|
|
33464
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
33220
33465
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectInverseConnection';
|
|
33221
33466
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseEdge>>>;
|
|
33467
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33222
33468
|
pageInfo: PageInfo;
|
|
33469
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33223
33470
|
};
|
|
33224
33471
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
33225
33472
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectInverseEdge';
|
|
@@ -36382,12 +36629,11 @@ export declare type HasTotal = {
|
|
|
36382
36629
|
export declare type HelpCenter = Node & {
|
|
36383
36630
|
__typename?: 'HelpCenter';
|
|
36384
36631
|
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
36385
|
-
canCreateHelpDesks?: Maybe<Scalars['Boolean']['output']>;
|
|
36386
36632
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
36387
|
-
helpDesks: HelpCenterHelpDeskItemConnection;
|
|
36388
36633
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
36389
36634
|
id: Scalars['ID']['output'];
|
|
36390
36635
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
36636
|
+
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
36391
36637
|
name?: Maybe<HelpCenterName>;
|
|
36392
36638
|
portals?: Maybe<HelpCenterPortals>;
|
|
36393
36639
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
@@ -36397,10 +36643,6 @@ export declare type HelpCenter = Node & {
|
|
|
36397
36643
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
36398
36644
|
virtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36399
36645
|
};
|
|
36400
|
-
export declare type HelpCenterHelpDesksArgs = {
|
|
36401
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
36402
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36403
|
-
};
|
|
36404
36646
|
export declare type HelpCenterPortalsArgs = {
|
|
36405
36647
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
36406
36648
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
@@ -36534,77 +36776,6 @@ export declare enum HelpCenterDescriptionType {
|
|
|
36534
36776
|
RichText = "RICH_TEXT",
|
|
36535
36777
|
WikiMarkup = "WIKI_MARKUP"
|
|
36536
36778
|
}
|
|
36537
|
-
export declare type HelpCenterHelpDesk = Node & {
|
|
36538
|
-
__typename?: 'HelpCenterHelpDesk';
|
|
36539
|
-
announcement?: Maybe<Array<HelpCenterHelpDeskAnnouncement>>;
|
|
36540
|
-
canAdministerHelpDesk?: Maybe<Scalars['Boolean']['output']>;
|
|
36541
|
-
contactInfo: Scalars['String']['output'];
|
|
36542
|
-
description: Scalars['String']['output'];
|
|
36543
|
-
id: Scalars['ID']['output'];
|
|
36544
|
-
logo?: Maybe<HelpCenterHelpDeskLogo>;
|
|
36545
|
-
name: Scalars['String']['output'];
|
|
36546
|
-
};
|
|
36547
|
-
export declare type HelpCenterHelpDeskAnnouncement = {
|
|
36548
|
-
__typename?: 'HelpCenterHelpDeskAnnouncement';
|
|
36549
|
-
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
36550
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
36551
|
-
link?: Maybe<Scalars['String']['output']>;
|
|
36552
|
-
linkText?: Maybe<Scalars['String']['output']>;
|
|
36553
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
36554
|
-
};
|
|
36555
|
-
export declare type HelpCenterHelpDeskAnnouncementInput = {
|
|
36556
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
36557
|
-
link?: InputMaybe<Scalars['String']['input']>;
|
|
36558
|
-
linkDescription?: InputMaybe<Scalars['String']['input']>;
|
|
36559
|
-
title?: InputMaybe<Scalars['String']['input']>;
|
|
36560
|
-
};
|
|
36561
|
-
export declare type HelpCenterHelpDeskCreateInput = {
|
|
36562
|
-
announcement?: InputMaybe<Array<HelpCenterHelpDeskAnnouncementInput>>;
|
|
36563
|
-
contactInfo: Scalars['String']['input'];
|
|
36564
|
-
description: Scalars['String']['input'];
|
|
36565
|
-
helpCenterAri: Scalars['String']['input'];
|
|
36566
|
-
logo?: InputMaybe<HelpCenterHelpDeskLogoInput>;
|
|
36567
|
-
name: Scalars['String']['input'];
|
|
36568
|
-
};
|
|
36569
|
-
export declare type HelpCenterHelpDeskDeleteInput = {
|
|
36570
|
-
helpCenterAri: Scalars['String']['input'];
|
|
36571
|
-
helpDeskId: Scalars['String']['input'];
|
|
36572
|
-
};
|
|
36573
|
-
export declare type HelpCenterHelpDeskItemConnection = {
|
|
36574
|
-
__typename?: 'HelpCenterHelpDeskItemConnection';
|
|
36575
|
-
edges?: Maybe<Array<Maybe<HelpCenterHelpDeskItemEdge>>>;
|
|
36576
|
-
pageInfo: PageInfo;
|
|
36577
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
36578
|
-
};
|
|
36579
|
-
export declare type HelpCenterHelpDeskItemEdge = {
|
|
36580
|
-
__typename?: 'HelpCenterHelpDeskItemEdge';
|
|
36581
|
-
cursor: Scalars['String']['output'];
|
|
36582
|
-
node?: Maybe<HelpCenterHelpDesk>;
|
|
36583
|
-
};
|
|
36584
|
-
export declare type HelpCenterHelpDeskLogo = {
|
|
36585
|
-
__typename?: 'HelpCenterHelpDeskLogo';
|
|
36586
|
-
fileId?: Maybe<Scalars['String']['output']>;
|
|
36587
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
36588
|
-
};
|
|
36589
|
-
export declare type HelpCenterHelpDeskLogoInput = {
|
|
36590
|
-
fileId?: InputMaybe<Scalars['String']['input']>;
|
|
36591
|
-
};
|
|
36592
|
-
export declare type HelpCenterHelpDeskPayload = Payload & {
|
|
36593
|
-
__typename?: 'HelpCenterHelpDeskPayload';
|
|
36594
|
-
errors?: Maybe<Array<MutationError>>;
|
|
36595
|
-
helpDeskId?: Maybe<Scalars['ID']['output']>;
|
|
36596
|
-
success: Scalars['Boolean']['output'];
|
|
36597
|
-
};
|
|
36598
|
-
export declare type HelpCenterHelpDeskQueryResult = HelpCenterHelpDesk | QueryError;
|
|
36599
|
-
export declare type HelpCenterHelpDeskUpdateInput = {
|
|
36600
|
-
announcement?: InputMaybe<HelpCenterHelpDeskAnnouncementInput>;
|
|
36601
|
-
contactInfo: Scalars['String']['input'];
|
|
36602
|
-
description: Scalars['String']['input'];
|
|
36603
|
-
helpCenterAri?: InputMaybe<Scalars['String']['input']>;
|
|
36604
|
-
helpDeskId: Scalars['String']['input'];
|
|
36605
|
-
logo?: InputMaybe<HelpCenterHelpDeskLogoInput>;
|
|
36606
|
-
name: Scalars['String']['input'];
|
|
36607
|
-
};
|
|
36608
36779
|
export declare type HelpCenterHelpObject = HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
|
|
36609
36780
|
export declare type HelpCenterHomePageLayout = {
|
|
36610
36781
|
__typename?: 'HelpCenterHomePageLayout';
|
|
@@ -36642,13 +36813,10 @@ export declare enum HelpCenterMediaConfigOperationType {
|
|
|
36642
36813
|
export declare type HelpCenterMutationApi = {
|
|
36643
36814
|
__typename?: 'HelpCenterMutationApi';
|
|
36644
36815
|
createHelpCenter?: Maybe<HelpCenterCreatePayload>;
|
|
36645
|
-
createHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
36646
36816
|
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
36647
36817
|
deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
|
|
36648
|
-
deleteHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
36649
36818
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
36650
36819
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
36651
|
-
updateHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
36652
36820
|
updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
36653
36821
|
updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
36654
36822
|
updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
|
|
@@ -36659,27 +36827,18 @@ export declare type HelpCenterMutationApi = {
|
|
|
36659
36827
|
export declare type HelpCenterMutationApiCreateHelpCenterArgs = {
|
|
36660
36828
|
input: HelpCenterCreateInput;
|
|
36661
36829
|
};
|
|
36662
|
-
export declare type HelpCenterMutationApiCreateHelpDeskArgs = {
|
|
36663
|
-
input: HelpCenterHelpDeskCreateInput;
|
|
36664
|
-
};
|
|
36665
36830
|
export declare type HelpCenterMutationApiCreateTopicArgs = {
|
|
36666
36831
|
input: HelpCenterBulkCreateTopicsInput;
|
|
36667
36832
|
};
|
|
36668
36833
|
export declare type HelpCenterMutationApiDeleteHelpCenterArgs = {
|
|
36669
36834
|
input: HelpCenterDeleteInput;
|
|
36670
36835
|
};
|
|
36671
|
-
export declare type HelpCenterMutationApiDeleteHelpDeskArgs = {
|
|
36672
|
-
input: HelpCenterHelpDeskDeleteInput;
|
|
36673
|
-
};
|
|
36674
36836
|
export declare type HelpCenterMutationApiDeleteTopicArgs = {
|
|
36675
36837
|
input: HelpCenterBulkDeleteTopicInput;
|
|
36676
36838
|
};
|
|
36677
36839
|
export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
36678
36840
|
input: HelpCenterUpdateInput;
|
|
36679
36841
|
};
|
|
36680
|
-
export declare type HelpCenterMutationApiUpdateHelpDeskArgs = {
|
|
36681
|
-
input: HelpCenterHelpDeskUpdateInput;
|
|
36682
|
-
};
|
|
36683
36842
|
export declare type HelpCenterMutationApiUpdateHomePageAnnouncementArgs = {
|
|
36684
36843
|
input: HelpCenterAnnouncementInput;
|
|
36685
36844
|
};
|
|
@@ -36769,7 +36928,6 @@ export declare enum HelpCenterProjectType {
|
|
|
36769
36928
|
}
|
|
36770
36929
|
export declare type HelpCenterQueryApi = {
|
|
36771
36930
|
__typename?: 'HelpCenterQueryApi';
|
|
36772
|
-
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
36773
36931
|
helpCenterByHoistedProjectId?: Maybe<HelpCenterQueryResult>;
|
|
36774
36932
|
helpCenterByHoistedProjectIdRouted?: Maybe<HelpCenterQueryResult>;
|
|
36775
36933
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
@@ -36778,13 +36936,8 @@ export declare type HelpCenterQueryApi = {
|
|
|
36778
36936
|
helpCenters?: Maybe<HelpCenterQueryResultConnection>;
|
|
36779
36937
|
helpCentersConfig?: Maybe<HelpCentersConfigResult>;
|
|
36780
36938
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
36781
|
-
helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
36782
36939
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
36783
36940
|
};
|
|
36784
|
-
export declare type HelpCenterQueryApiGetHelpDeskByIdArgs = {
|
|
36785
|
-
helpCenterAri: Scalars['ID']['input'];
|
|
36786
|
-
helpDeskId: Scalars['ID']['input'];
|
|
36787
|
-
};
|
|
36788
36941
|
export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
|
|
36789
36942
|
projectAri: Scalars['ID']['input'];
|
|
36790
36943
|
};
|
|
@@ -36817,10 +36970,6 @@ export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
|
36817
36970
|
sortOrder: HelpCenterSortOrder;
|
|
36818
36971
|
workspaceAri: Scalars['ID']['input'];
|
|
36819
36972
|
};
|
|
36820
|
-
export declare type HelpCenterQueryApiHelpDeskByIdArgs = {
|
|
36821
|
-
helpCenterAri: Scalars['ID']['input'];
|
|
36822
|
-
helpDeskAri: Scalars['ID']['input'];
|
|
36823
|
-
};
|
|
36824
36973
|
export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
36825
36974
|
helpCenterAri: Scalars['ID']['input'];
|
|
36826
36975
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -37639,6 +37788,7 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
37639
37788
|
displayLink?: Maybe<Scalars['String']['output']>;
|
|
37640
37789
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
37641
37790
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
37791
|
+
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
37642
37792
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
37643
37793
|
id: Scalars['ID']['output'];
|
|
37644
37794
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -37656,6 +37806,7 @@ export declare type HelpObjectStoreChannel = HelpObjectStoreHelpObject & Node &
|
|
|
37656
37806
|
displayLink?: Maybe<Scalars['String']['output']>;
|
|
37657
37807
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
37658
37808
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
37809
|
+
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
37659
37810
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
37660
37811
|
id: Scalars['ID']['output'];
|
|
37661
37812
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -37679,6 +37830,7 @@ export declare type HelpObjectStoreHelpObject = {
|
|
|
37679
37830
|
ari: Scalars['ID']['output'];
|
|
37680
37831
|
description?: Maybe<Scalars['String']['output']>;
|
|
37681
37832
|
displayLink?: Maybe<Scalars['String']['output']>;
|
|
37833
|
+
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
37682
37834
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
37683
37835
|
id: Scalars['ID']['output'];
|
|
37684
37836
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -37716,6 +37868,7 @@ export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
|
37716
37868
|
displayLink?: Maybe<Scalars['String']['output']>;
|
|
37717
37869
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
37718
37870
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
37871
|
+
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
37719
37872
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
37720
37873
|
id: Scalars['ID']['output'];
|
|
37721
37874
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -37755,6 +37908,7 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
37755
37908
|
displayLink?: Maybe<Scalars['String']['output']>;
|
|
37756
37909
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
37757
37910
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
37911
|
+
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
37758
37912
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
37759
37913
|
id: Scalars['ID']['output'];
|
|
37760
37914
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -37781,6 +37935,7 @@ export declare type HelpObjectStoreSearchInput = {
|
|
|
37781
37935
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
37782
37936
|
cloudId: Scalars['ID']['input'];
|
|
37783
37937
|
entityType: HelpObjectStoreSearchEntityType;
|
|
37938
|
+
helpCenterAri?: InputMaybe<Scalars['String']['input']>;
|
|
37784
37939
|
highlightArticles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37785
37940
|
portalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
37786
37941
|
queryTerm: Scalars['String']['input'];
|
|
@@ -38821,6 +38976,17 @@ export declare enum JiraActionType {
|
|
|
38821
38976
|
CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT"
|
|
38822
38977
|
}
|
|
38823
38978
|
export declare type JiraActiveBackgroundDetailsResult = JiraAttachmentBackground | JiraColorBackground | JiraGradientBackground | JiraMediaBackground | QueryError;
|
|
38979
|
+
export declare type JiraAddFieldsToProjectInput = {
|
|
38980
|
+
cloudId: Scalars['ID']['input'];
|
|
38981
|
+
fieldIds: Array<Scalars['ID']['input']>;
|
|
38982
|
+
projectId: Scalars['ID']['input'];
|
|
38983
|
+
};
|
|
38984
|
+
export declare type JiraAddFieldsToProjectPayload = Payload & {
|
|
38985
|
+
__typename?: 'JiraAddFieldsToProjectPayload';
|
|
38986
|
+
addedFieldAssociations?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
38987
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38988
|
+
success: Scalars['Boolean']['output'];
|
|
38989
|
+
};
|
|
38824
38990
|
export declare type JiraAddIssuesToFixVersionInput = {
|
|
38825
38991
|
issueIds: Array<Scalars['ID']['input']>;
|
|
38826
38992
|
versionId: Scalars['ID']['input'];
|
|
@@ -39667,6 +39833,22 @@ export declare enum JiraAutofixStatus {
|
|
|
39667
39833
|
InProgress = "IN_PROGRESS",
|
|
39668
39834
|
Pending = "PENDING"
|
|
39669
39835
|
}
|
|
39836
|
+
export declare type JiraAvailableField = JiraProjectFieldAssociationInterface & {
|
|
39837
|
+
__typename?: 'JiraAvailableField';
|
|
39838
|
+
field?: Maybe<JiraField>;
|
|
39839
|
+
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
39840
|
+
id: Scalars['ID']['output'];
|
|
39841
|
+
};
|
|
39842
|
+
export declare type JiraAvailableFieldsConnection = {
|
|
39843
|
+
__typename?: 'JiraAvailableFieldsConnection';
|
|
39844
|
+
edges?: Maybe<Array<Maybe<JiraAvailableFieldsEdge>>>;
|
|
39845
|
+
pageInfo: PageInfo;
|
|
39846
|
+
};
|
|
39847
|
+
export declare type JiraAvailableFieldsEdge = {
|
|
39848
|
+
__typename?: 'JiraAvailableFieldsEdge';
|
|
39849
|
+
cursor: Scalars['String']['output'];
|
|
39850
|
+
node?: Maybe<JiraAvailableField>;
|
|
39851
|
+
};
|
|
39670
39852
|
export declare type JiraAvatar = {
|
|
39671
39853
|
__typename?: 'JiraAvatar';
|
|
39672
39854
|
large?: Maybe<Scalars['String']['output']>;
|
|
@@ -39922,6 +40104,7 @@ export declare type JiraCalendar = {
|
|
|
39922
40104
|
__typename?: 'JiraCalendar';
|
|
39923
40105
|
crossProjectVersions?: Maybe<JiraCrossProjectVersionConnection>;
|
|
39924
40106
|
endDateField?: Maybe<JiraIssueField>;
|
|
40107
|
+
issue?: Maybe<JiraIssueWithScenario>;
|
|
39925
40108
|
issues?: Maybe<JiraIssueConnection>;
|
|
39926
40109
|
issuesV2?: Maybe<JiraScenarioIssueLikeConnection>;
|
|
39927
40110
|
permissions?: Maybe<JiraCalendarPermissionConnection>;
|
|
@@ -39938,6 +40121,9 @@ export declare type JiraCalendarCrossProjectVersionsArgs = {
|
|
|
39938
40121
|
input?: InputMaybe<JiraCalendarCrossProjectVersionsInput>;
|
|
39939
40122
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39940
40123
|
};
|
|
40124
|
+
export declare type JiraCalendarIssueArgs = {
|
|
40125
|
+
id: Scalars['ID']['input'];
|
|
40126
|
+
};
|
|
39941
40127
|
export declare type JiraCalendarIssuesArgs = {
|
|
39942
40128
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39943
40129
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -42013,10 +42199,11 @@ export declare type JiraField = {
|
|
|
42013
42199
|
typeKey?: Maybe<Scalars['String']['output']>;
|
|
42014
42200
|
typeName?: Maybe<Scalars['String']['output']>;
|
|
42015
42201
|
};
|
|
42016
|
-
export declare type JiraFieldAssociationWithIssueTypes = {
|
|
42202
|
+
export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssociationInterface & {
|
|
42017
42203
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
42018
42204
|
field?: Maybe<JiraField>;
|
|
42019
42205
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
42206
|
+
id: Scalars['ID']['output'];
|
|
42020
42207
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
42021
42208
|
};
|
|
42022
42209
|
export declare type JiraFieldAssociationWithIssueTypesConnection = {
|
|
@@ -42096,6 +42283,20 @@ export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
|
|
|
42096
42283
|
errors?: Maybe<Array<MutationError>>;
|
|
42097
42284
|
success: Scalars['Boolean']['output'];
|
|
42098
42285
|
};
|
|
42286
|
+
export declare type JiraFieldSetView = Node & {
|
|
42287
|
+
__typename?: 'JiraFieldSetView';
|
|
42288
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
42289
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
42290
|
+
id: Scalars['ID']['output'];
|
|
42291
|
+
};
|
|
42292
|
+
export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
42293
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42294
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
42295
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
42296
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42297
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
42298
|
+
};
|
|
42299
|
+
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
42099
42300
|
export declare type JiraFieldSetsMutationInput = {
|
|
42100
42301
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
42101
42302
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -44002,6 +44203,13 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
44002
44203
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44003
44204
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
44004
44205
|
};
|
|
44206
|
+
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
44207
|
+
projectContext?: InputMaybe<JiraIssueSearchViewFieldSetsProjectContext>;
|
|
44208
|
+
};
|
|
44209
|
+
export declare type JiraIssueSearchViewFieldSetsProjectContext = {
|
|
44210
|
+
issueType?: InputMaybe<Scalars['ID']['input']>;
|
|
44211
|
+
project?: InputMaybe<Scalars['ID']['input']>;
|
|
44212
|
+
};
|
|
44005
44213
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
44006
44214
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
44007
44215
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -44193,6 +44401,10 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
44193
44401
|
Absolute = "ABSOLUTE",
|
|
44194
44402
|
Relative = "RELATIVE"
|
|
44195
44403
|
}
|
|
44404
|
+
export declare type JiraIssueWithScenario = {
|
|
44405
|
+
__typename?: 'JiraIssueWithScenario';
|
|
44406
|
+
scenarioIssueLike?: Maybe<JiraScenarioIssueLike>;
|
|
44407
|
+
};
|
|
44196
44408
|
export declare enum JiraIteration {
|
|
44197
44409
|
Iteration_1 = "ITERATION_1",
|
|
44198
44410
|
Iteration_2 = "ITERATION_2",
|
|
@@ -45245,6 +45457,7 @@ export declare type JiraMultipleVersionPickerFieldPayload = Payload & {
|
|
|
45245
45457
|
};
|
|
45246
45458
|
export declare type JiraMutation = {
|
|
45247
45459
|
__typename?: 'JiraMutation';
|
|
45460
|
+
addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
|
|
45248
45461
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
45249
45462
|
addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
|
|
45250
45463
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
@@ -45321,6 +45534,7 @@ export declare type JiraMutation = {
|
|
|
45321
45534
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
45322
45535
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
45323
45536
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
45537
|
+
setFieldAssociationWithIssueTypes?: Maybe<JiraSetFieldAssociationWithIssueTypesPayload>;
|
|
45324
45538
|
setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
|
|
45325
45539
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
45326
45540
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
@@ -45404,6 +45618,9 @@ export declare type JiraMutation = {
|
|
|
45404
45618
|
updateWatchesField?: Maybe<JiraWatchesFieldPayload>;
|
|
45405
45619
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
45406
45620
|
};
|
|
45621
|
+
export declare type JiraMutationAddFieldsToProjectArgs = {
|
|
45622
|
+
input: JiraAddFieldsToProjectInput;
|
|
45623
|
+
};
|
|
45407
45624
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
45408
45625
|
input: JiraAddIssuesToFixVersionInput;
|
|
45409
45626
|
};
|
|
@@ -45652,6 +45869,9 @@ export declare type JiraMutationSetDefaultNavigationItemArgs = {
|
|
|
45652
45869
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
45653
45870
|
input: JiraSetIsFavouriteInput;
|
|
45654
45871
|
};
|
|
45872
|
+
export declare type JiraMutationSetFieldAssociationWithIssueTypesArgs = {
|
|
45873
|
+
input: JiraSetFieldAssociationWithIssueTypesInput;
|
|
45874
|
+
};
|
|
45655
45875
|
export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
|
|
45656
45876
|
id: Scalars['ID']['input'];
|
|
45657
45877
|
};
|
|
@@ -46671,6 +46891,7 @@ export declare type JiraPlan = Node & {
|
|
|
46671
46891
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
46672
46892
|
id: Scalars['ID']['output'];
|
|
46673
46893
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
46894
|
+
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
46674
46895
|
planId?: Maybe<Scalars['Long']['output']>;
|
|
46675
46896
|
planStatus?: Maybe<JiraPlanStatus>;
|
|
46676
46897
|
planUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -47244,6 +47465,11 @@ export declare type JiraProjectFieldProjectsArgs = {
|
|
|
47244
47465
|
recent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47245
47466
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
47246
47467
|
};
|
|
47468
|
+
export declare type JiraProjectFieldAssociationInterface = {
|
|
47469
|
+
field?: Maybe<JiraField>;
|
|
47470
|
+
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
47471
|
+
id: Scalars['ID']['output'];
|
|
47472
|
+
};
|
|
47247
47473
|
export declare type JiraProjectFieldInput = {
|
|
47248
47474
|
fieldId: Scalars['ID']['input'];
|
|
47249
47475
|
project: JiraProjectInput;
|
|
@@ -47533,8 +47759,13 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
|
47533
47759
|
};
|
|
47534
47760
|
export declare type JiraProjectWithIssueTypeIds = {
|
|
47535
47761
|
__typename?: 'JiraProjectWithIssueTypeIds';
|
|
47762
|
+
availableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
47536
47763
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
47537
47764
|
};
|
|
47765
|
+
export declare type JiraProjectWithIssueTypeIdsAvailableFieldsArgs = {
|
|
47766
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
47767
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47768
|
+
};
|
|
47538
47769
|
export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArgs = {
|
|
47539
47770
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47540
47771
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -47596,6 +47827,7 @@ export declare type JiraQuery = {
|
|
|
47596
47827
|
epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
|
|
47597
47828
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
47598
47829
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
47830
|
+
fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
|
|
47599
47831
|
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
47600
47832
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
47601
47833
|
filter?: Maybe<JiraFilter>;
|
|
@@ -47890,6 +48122,11 @@ export declare type JiraQueryFavouritesArgs = {
|
|
|
47890
48122
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47891
48123
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47892
48124
|
};
|
|
48125
|
+
export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
48126
|
+
cloudId: Scalars['ID']['input'];
|
|
48127
|
+
issueTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
48128
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
48129
|
+
};
|
|
47893
48130
|
export declare type JiraQueryFieldSetsByIdArgs = {
|
|
47894
48131
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47895
48132
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -48886,6 +49123,7 @@ export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
|
48886
49123
|
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
48887
49124
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
48888
49125
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49126
|
+
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
48889
49127
|
inclusive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48890
49128
|
nodes: Array<Scalars['String']['input']>;
|
|
48891
49129
|
};
|
|
@@ -50320,6 +50558,19 @@ export declare type JiraSetDefaultNavigationItemPayload = Payload & {
|
|
|
50320
50558
|
previousDefault?: Maybe<JiraNavigationItem>;
|
|
50321
50559
|
success: Scalars['Boolean']['output'];
|
|
50322
50560
|
};
|
|
50561
|
+
export declare type JiraSetFieldAssociationWithIssueTypesInput = {
|
|
50562
|
+
cloudId: Scalars['ID']['input'];
|
|
50563
|
+
fieldId: Scalars['ID']['input'];
|
|
50564
|
+
issueTypeIdsToRemove: Array<Scalars['ID']['input']>;
|
|
50565
|
+
issueTypeIdsToUpsert: Array<Scalars['ID']['input']>;
|
|
50566
|
+
projectId: Scalars['ID']['input'];
|
|
50567
|
+
};
|
|
50568
|
+
export declare type JiraSetFieldAssociationWithIssueTypesPayload = Payload & {
|
|
50569
|
+
__typename?: 'JiraSetFieldAssociationWithIssueTypesPayload';
|
|
50570
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50571
|
+
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
50572
|
+
success: Scalars['Boolean']['output'];
|
|
50573
|
+
};
|
|
50323
50574
|
export declare type JiraSetIsFavouriteInput = {
|
|
50324
50575
|
beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
50325
50576
|
entityId: Scalars['ID']['input'];
|
|
@@ -50964,9 +51215,9 @@ export declare type JiraSubscription = {
|
|
|
50964
51215
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
50965
51216
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
50966
51217
|
onAutodevJobUpdated?: Maybe<JiraAutodevJobConnection>;
|
|
50967
|
-
onCalendarIssueCreated?: Maybe<
|
|
51218
|
+
onCalendarIssueCreated?: Maybe<JiraIssueWithScenario>;
|
|
50968
51219
|
onCalendarIssueDeleted?: Maybe<JiraStreamHubResourceIdentifier>;
|
|
50969
|
-
onCalendarIssueUpdated?: Maybe<
|
|
51220
|
+
onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
|
|
50970
51221
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
50971
51222
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
50972
51223
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
@@ -51072,6 +51323,8 @@ export declare type JiraSubtasksFieldSubtasksArgs = {
|
|
|
51072
51323
|
export declare type JiraSuggestedChildIssueError = {
|
|
51073
51324
|
__typename?: 'JiraSuggestedChildIssueError';
|
|
51074
51325
|
error?: Maybe<JiraSuggestedIssueErrorType>;
|
|
51326
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
51327
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
51075
51328
|
};
|
|
51076
51329
|
export declare type JiraSuggestedChildIssueStatus = {
|
|
51077
51330
|
__typename?: 'JiraSuggestedChildIssueStatus';
|
|
@@ -53138,7 +53391,27 @@ export declare enum JsmChatConnectedApps {
|
|
|
53138
53391
|
Slack = "SLACK",
|
|
53139
53392
|
Teams = "TEAMS"
|
|
53140
53393
|
}
|
|
53394
|
+
export declare enum JsmChatConversationAnalyticsEvent {
|
|
53395
|
+
UserClearedChat = "USER_CLEARED_CHAT",
|
|
53396
|
+
UserMarkedAsNotResolved = "USER_MARKED_AS_NOT_RESOLVED",
|
|
53397
|
+
UserMarkedAsResolved = "USER_MARKED_AS_RESOLVED",
|
|
53398
|
+
UserSharedCsat = "USER_SHARED_CSAT",
|
|
53399
|
+
VaRespondedWithKnowledgeAnswer = "VA_RESPONDED_WITH_KNOWLEDGE_ANSWER",
|
|
53400
|
+
VaRespondedWithNonKnowledgeAnswer = "VA_RESPONDED_WITH_NON_KNOWLEDGE_ANSWER"
|
|
53401
|
+
}
|
|
53402
|
+
export declare type JsmChatConversationAnalyticsMetadataInput = {
|
|
53403
|
+
channelType?: InputMaybe<JsmChatConversationChannelType>;
|
|
53404
|
+
csatScore?: InputMaybe<Scalars['Int']['input']>;
|
|
53405
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
53406
|
+
};
|
|
53141
53407
|
export declare type JsmChatConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
53408
|
+
export declare enum JsmChatConversationChannelType {
|
|
53409
|
+
Email = "EMAIL",
|
|
53410
|
+
HelpCenter = "HELP_CENTER",
|
|
53411
|
+
Portal = "PORTAL",
|
|
53412
|
+
Slack = "SLACK",
|
|
53413
|
+
Widget = "WIDGET"
|
|
53414
|
+
}
|
|
53142
53415
|
export declare type JsmChatConversationMessage = {
|
|
53143
53416
|
__typename?: 'JsmChatConversationMessage';
|
|
53144
53417
|
appendices?: Maybe<Array<Maybe<JsmChatConversationAppendixAction>>>;
|
|
@@ -53192,6 +53465,16 @@ export declare type JsmChatCreateCommentOutput = {
|
|
|
53192
53465
|
message: Scalars['String']['output'];
|
|
53193
53466
|
status: Scalars['Boolean']['output'];
|
|
53194
53467
|
};
|
|
53468
|
+
export declare type JsmChatCreateConversationAnalyticsInput = {
|
|
53469
|
+
conversationAnalyticsEvent: JsmChatConversationAnalyticsEvent;
|
|
53470
|
+
conversationAnalyticsMetadata?: InputMaybe<JsmChatConversationAnalyticsMetadataInput>;
|
|
53471
|
+
conversationId: Scalars['String']['input'];
|
|
53472
|
+
messageId?: InputMaybe<Scalars['String']['input']>;
|
|
53473
|
+
};
|
|
53474
|
+
export declare type JsmChatCreateConversationAnalyticsOutput = {
|
|
53475
|
+
__typename?: 'JsmChatCreateConversationAnalyticsOutput';
|
|
53476
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
53477
|
+
};
|
|
53195
53478
|
export declare type JsmChatCreateConversationInput = {
|
|
53196
53479
|
authorId: Scalars['String']['input'];
|
|
53197
53480
|
channelExperienceId: JsmChatChannelExperienceId;
|
|
@@ -53222,6 +53505,27 @@ export declare type JsmChatCreateConversationResponse = {
|
|
|
53222
53505
|
__typename?: 'JsmChatCreateConversationResponse';
|
|
53223
53506
|
id: Scalars['ID']['output'];
|
|
53224
53507
|
};
|
|
53508
|
+
export declare type JsmChatCreateWebConversationMessage = {
|
|
53509
|
+
__typename?: 'JsmChatCreateWebConversationMessage';
|
|
53510
|
+
appendices?: Maybe<Array<Maybe<JsmChatConversationAppendixAction>>>;
|
|
53511
|
+
authorType: Scalars['String']['output'];
|
|
53512
|
+
content: Scalars['JSON']['output'];
|
|
53513
|
+
contentType: JsmChatCreateWebConversationMessageContentType;
|
|
53514
|
+
id: Scalars['ID']['output'];
|
|
53515
|
+
};
|
|
53516
|
+
export declare enum JsmChatCreateWebConversationMessageContentType {
|
|
53517
|
+
Adf = "ADF"
|
|
53518
|
+
}
|
|
53519
|
+
export declare type JsmChatCreateWebConversationMessageInput = {
|
|
53520
|
+
authorId: Scalars['String']['input'];
|
|
53521
|
+
message: Scalars['String']['input'];
|
|
53522
|
+
};
|
|
53523
|
+
export declare type JsmChatCreateWebConversationMessagePayload = Payload & {
|
|
53524
|
+
__typename?: 'JsmChatCreateWebConversationMessagePayload';
|
|
53525
|
+
conversation?: Maybe<JsmChatMessageEdge>;
|
|
53526
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53527
|
+
success: Scalars['Boolean']['output'];
|
|
53528
|
+
};
|
|
53225
53529
|
export declare type JsmChatDeleteSlackChannelMappingOutput = {
|
|
53226
53530
|
__typename?: 'JsmChatDeleteSlackChannelMappingOutput';
|
|
53227
53531
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -53271,6 +53575,16 @@ export declare type JsmChatJiraFieldAppendix = {
|
|
|
53271
53575
|
jiraProjectId: Scalars['String']['output'];
|
|
53272
53576
|
requestTypeId: Scalars['String']['output'];
|
|
53273
53577
|
};
|
|
53578
|
+
export declare type JsmChatMessageConnection = {
|
|
53579
|
+
__typename?: 'JsmChatMessageConnection';
|
|
53580
|
+
edges?: Maybe<Array<Maybe<JsmChatMessageEdge>>>;
|
|
53581
|
+
pageInfo?: Maybe<PageInfo>;
|
|
53582
|
+
};
|
|
53583
|
+
export declare type JsmChatMessageEdge = {
|
|
53584
|
+
__typename?: 'JsmChatMessageEdge';
|
|
53585
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53586
|
+
node?: Maybe<JsmChatCreateWebConversationMessage>;
|
|
53587
|
+
};
|
|
53274
53588
|
export declare enum JsmChatMessageSource {
|
|
53275
53589
|
Email = "EMAIL"
|
|
53276
53590
|
}
|
|
@@ -53316,7 +53630,9 @@ export declare type JsmChatMutation = {
|
|
|
53316
53630
|
createChannel: JsmChatCreateChannelOutput;
|
|
53317
53631
|
createComment?: Maybe<JsmChatCreateCommentOutput>;
|
|
53318
53632
|
createConversation?: Maybe<JsmChatCreateConversationPayload>;
|
|
53633
|
+
createConversationAnalyticsEvent?: Maybe<JsmChatCreateConversationAnalyticsOutput>;
|
|
53319
53634
|
createConversationMessage?: Maybe<JsmChatCreateConversationMessagePayload>;
|
|
53635
|
+
createWebConversationMessage?: Maybe<JsmChatCreateWebConversationMessagePayload>;
|
|
53320
53636
|
deleteSlackChannelMapping: JsmChatDeleteSlackChannelMappingOutput;
|
|
53321
53637
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
53322
53638
|
disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
@@ -53343,11 +53659,20 @@ export declare type JsmChatMutationCreateConversationArgs = {
|
|
|
53343
53659
|
input: JsmChatCreateConversationInput;
|
|
53344
53660
|
workspaceAri: Scalars['ID']['input'];
|
|
53345
53661
|
};
|
|
53662
|
+
export declare type JsmChatMutationCreateConversationAnalyticsEventArgs = {
|
|
53663
|
+
input: JsmChatCreateConversationAnalyticsInput;
|
|
53664
|
+
workspaceAri: Scalars['ID']['input'];
|
|
53665
|
+
};
|
|
53346
53666
|
export declare type JsmChatMutationCreateConversationMessageArgs = {
|
|
53347
53667
|
conversationId: Scalars['ID']['input'];
|
|
53348
53668
|
input: JsmChatCreateConversationMessageInput;
|
|
53349
53669
|
workspaceAri: Scalars['ID']['input'];
|
|
53350
53670
|
};
|
|
53671
|
+
export declare type JsmChatMutationCreateWebConversationMessageArgs = {
|
|
53672
|
+
conversationId: Scalars['ID']['input'];
|
|
53673
|
+
input: JsmChatCreateWebConversationMessageInput;
|
|
53674
|
+
workspaceAri: Scalars['ID']['input'];
|
|
53675
|
+
};
|
|
53351
53676
|
export declare type JsmChatMutationDeleteSlackChannelMappingArgs = {
|
|
53352
53677
|
jiraProjectAri: Scalars['ID']['input'];
|
|
53353
53678
|
slackChannelAri: Scalars['ID']['input'];
|
|
@@ -53407,6 +53732,7 @@ export declare type JsmChatQuery = {
|
|
|
53407
53732
|
getAssistConfig: JsmChatAssistConfig;
|
|
53408
53733
|
getMsTeamsChatConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
53409
53734
|
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
53735
|
+
getWebConversation: JsmChatMessageConnection;
|
|
53410
53736
|
initializeConfig: JsmChatInitializeConfigResponse;
|
|
53411
53737
|
initializeNativeConfig: JsmChatInitializeNativeConfigResponse;
|
|
53412
53738
|
};
|
|
@@ -53421,6 +53747,10 @@ export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
|
53421
53747
|
jiraProjectAri: Scalars['ID']['input'];
|
|
53422
53748
|
paginationConfig?: InputMaybe<JsmChatPaginationConfig>;
|
|
53423
53749
|
};
|
|
53750
|
+
export declare type JsmChatQueryGetWebConversationArgs = {
|
|
53751
|
+
conversationId: Scalars['ID']['input'];
|
|
53752
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53753
|
+
};
|
|
53424
53754
|
export declare type JsmChatQueryInitializeConfigArgs = {
|
|
53425
53755
|
input: JsmChatInitializeConfigRequest;
|
|
53426
53756
|
};
|
|
@@ -53881,43 +54211,32 @@ export declare type KnowledgeBaseSpacePermission = {
|
|
|
53881
54211
|
editPermission: KnowledgeBaseSpacePermissionDetail;
|
|
53882
54212
|
viewPermission: KnowledgeBaseSpacePermissionDetail;
|
|
53883
54213
|
};
|
|
53884
|
-
export declare type KnowledgeBaseSpacePermissionBulkQueryApi = {
|
|
53885
|
-
__typename?: 'KnowledgeBaseSpacePermissionBulkQueryApi';
|
|
53886
|
-
knowledgeBaseSpacePermission_bulkQuery: KnowledgeBaseSpacePermissionBulkResponse;
|
|
53887
|
-
};
|
|
53888
|
-
export declare type KnowledgeBaseSpacePermissionBulkQueryApiKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
53889
|
-
input: KnowledgeBaseSpacePermissionInput;
|
|
53890
|
-
};
|
|
53891
|
-
export declare type KnowledgeBaseSpacePermissionBulkResponse = KnowledgeBaseSpacePermissions | QueryError;
|
|
53892
54214
|
export declare type KnowledgeBaseSpacePermissionDetail = {
|
|
53893
54215
|
__typename?: 'KnowledgeBaseSpacePermissionDetail';
|
|
53894
54216
|
currentPermission: KnowledgeBaseSpacePermissionType;
|
|
53895
54217
|
invalidPermissions: Array<Maybe<KnowledgeBaseSpacePermissionType>>;
|
|
53896
54218
|
validPermissions: Array<KnowledgeBaseSpacePermissionType>;
|
|
53897
54219
|
};
|
|
53898
|
-
export declare type
|
|
53899
|
-
|
|
53900
|
-
|
|
53901
|
-
|
|
53902
|
-
|
|
53903
|
-
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionUpdateResponse;
|
|
54220
|
+
export declare type KnowledgeBaseSpacePermissionMutationResponse = {
|
|
54221
|
+
__typename?: 'KnowledgeBaseSpacePermissionMutationResponse';
|
|
54222
|
+
error?: Maybe<MutationError>;
|
|
54223
|
+
permission?: Maybe<KnowledgeBaseSpacePermission>;
|
|
54224
|
+
success: Scalars['Boolean']['output'];
|
|
53904
54225
|
};
|
|
53905
|
-
export declare type
|
|
53906
|
-
|
|
54226
|
+
export declare type KnowledgeBaseSpacePermissionQueryResponse = KnowledgeBaseSpacePermissionResponse | QueryError;
|
|
54227
|
+
export declare type KnowledgeBaseSpacePermissionResponse = {
|
|
54228
|
+
__typename?: 'KnowledgeBaseSpacePermissionResponse';
|
|
54229
|
+
permission: KnowledgeBaseSpacePermission;
|
|
54230
|
+
spaceAri: Scalars['ID']['output'];
|
|
53907
54231
|
};
|
|
53908
54232
|
export declare enum KnowledgeBaseSpacePermissionType {
|
|
53909
54233
|
AnonymousUsers = "ANONYMOUS_USERS",
|
|
53910
54234
|
ConfluenceLicensedUsers = "CONFLUENCE_LICENSED_USERS",
|
|
53911
54235
|
ConfluenceUnlicensedUsers = "CONFLUENCE_UNLICENSED_USERS"
|
|
53912
54236
|
}
|
|
53913
|
-
export declare type KnowledgeBaseSpacePermissionUpdateResponse = KnowledgeBaseSpacePermission | MutationError;
|
|
53914
54237
|
export declare type KnowledgeBaseSpacePermissionUpdateViewInput = {
|
|
53915
|
-
spaceAri: Scalars['
|
|
53916
|
-
viewPermission
|
|
53917
|
-
};
|
|
53918
|
-
export declare type KnowledgeBaseSpacePermissions = {
|
|
53919
|
-
__typename?: 'KnowledgeBaseSpacePermissions';
|
|
53920
|
-
permissions: Array<Maybe<KnowledgeBaseSpacePermissions>>;
|
|
54238
|
+
spaceAri: Scalars['ID']['input'];
|
|
54239
|
+
viewPermission?: InputMaybe<KnowledgeBaseSpacePermissionType>;
|
|
53921
54240
|
};
|
|
53922
54241
|
export declare type KnowledgeBaseUnlinkResponse = {
|
|
53923
54242
|
__typename?: 'KnowledgeBaseUnlinkResponse';
|
|
@@ -56561,11 +56880,8 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
56561
56880
|
success: Scalars['Boolean']['output'];
|
|
56562
56881
|
};
|
|
56563
56882
|
export declare type MercuryLinkGoalsToFocusAreaInput = {
|
|
56564
|
-
atlasGoalAris
|
|
56565
|
-
|
|
56566
|
-
cloudId: Scalars['ID']['input'];
|
|
56567
|
-
focusAreaAri?: InputMaybe<Scalars['String']['input']>;
|
|
56568
|
-
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
56883
|
+
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
56884
|
+
focusAreaAri: Scalars['String']['input'];
|
|
56569
56885
|
};
|
|
56570
56886
|
export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
56571
56887
|
__typename?: 'MercuryLinkGoalsToFocusAreaPayload';
|
|
@@ -57553,7 +57869,7 @@ export declare type Mutation = {
|
|
|
57553
57869
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
57554
57870
|
jsw?: Maybe<JswMutation>;
|
|
57555
57871
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
57556
|
-
knowledgeBaseSpacePermission_updateView
|
|
57872
|
+
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
57557
57873
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
57558
57874
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
57559
57875
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
@@ -61067,7 +61383,7 @@ export declare type Query = {
|
|
|
61067
61383
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
61068
61384
|
jsw?: Maybe<JswQuery>;
|
|
61069
61385
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
61070
|
-
knowledgeBaseSpacePermission_bulkQuery
|
|
61386
|
+
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
61071
61387
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
61072
61388
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
61073
61389
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -62372,7 +62688,7 @@ export declare type QueryKnowledgeBaseArgs = {
|
|
|
62372
62688
|
cloudId: Scalars['ID']['input'];
|
|
62373
62689
|
};
|
|
62374
62690
|
export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
62375
|
-
|
|
62691
|
+
spaceAris: Array<Scalars['ID']['input']>;
|
|
62376
62692
|
};
|
|
62377
62693
|
export declare type QueryMarketplaceAppArgs = {
|
|
62378
62694
|
appId: Scalars['ID']['input'];
|
|
@@ -64854,10 +65170,14 @@ export declare type ShepherdAlertMetaData = {
|
|
|
64854
65170
|
};
|
|
64855
65171
|
export declare type ShepherdAlertQueries = {
|
|
64856
65172
|
__typename?: 'ShepherdAlertQueries';
|
|
65173
|
+
alertSnippets?: Maybe<ShepherdAlertSnippetResult>;
|
|
64857
65174
|
authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
|
|
64858
65175
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
64859
65176
|
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
64860
65177
|
};
|
|
65178
|
+
export declare type ShepherdAlertQueriesAlertSnippetsArgs = {
|
|
65179
|
+
id: Scalars['ID']['input'];
|
|
65180
|
+
};
|
|
64861
65181
|
export declare type ShepherdAlertQueriesAuthorizedActionsArgs = {
|
|
64862
65182
|
id: Scalars['ID']['input'];
|
|
64863
65183
|
resource: Scalars['ID']['input'];
|
|
@@ -64872,6 +65192,20 @@ export declare type ShepherdAlertQueriesByWorkspaceArgs = {
|
|
|
64872
65192
|
workspaceId: Scalars['ID']['input'];
|
|
64873
65193
|
};
|
|
64874
65194
|
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
65195
|
+
export declare type ShepherdAlertSnippet = {
|
|
65196
|
+
__typename?: 'ShepherdAlertSnippet';
|
|
65197
|
+
adf?: Maybe<Scalars['JSON']['output']>;
|
|
65198
|
+
contentId: Scalars['ID']['output'];
|
|
65199
|
+
field: Scalars['String']['output'];
|
|
65200
|
+
redactable: Scalars['Boolean']['output'];
|
|
65201
|
+
};
|
|
65202
|
+
export declare type ShepherdAlertSnippetResult = QueryError | ShepherdAlertSnippets;
|
|
65203
|
+
export declare type ShepherdAlertSnippets = {
|
|
65204
|
+
__typename?: 'ShepherdAlertSnippets';
|
|
65205
|
+
snippets?: Maybe<Array<ShepherdAlertSnippet>>;
|
|
65206
|
+
timestamp?: Maybe<Scalars['String']['output']>;
|
|
65207
|
+
versionMismatch?: Maybe<Scalars['Boolean']['output']>;
|
|
65208
|
+
};
|
|
64875
65209
|
export declare enum ShepherdAlertStatus {
|
|
64876
65210
|
InProgress = "IN_PROGRESS",
|
|
64877
65211
|
Triaged = "TRIAGED",
|
|
@@ -64915,6 +65249,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
64915
65249
|
ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
|
|
64916
65250
|
ConfluenceSuspiciousSearch = "CONFLUENCE_SUSPICIOUS_SEARCH",
|
|
64917
65251
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
65252
|
+
CreatedMobileAppPolicy = "CREATED_MOBILE_APP_POLICY",
|
|
64918
65253
|
CreatedPolicy = "CREATED_POLICY",
|
|
64919
65254
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
64920
65255
|
CreatedTunnel = "CREATED_TUNNEL",
|
|
@@ -64926,6 +65261,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
64926
65261
|
Default = "DEFAULT",
|
|
64927
65262
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
64928
65263
|
DeletedDomain = "DELETED_DOMAIN",
|
|
65264
|
+
DeletedMobileAppPolicy = "DELETED_MOBILE_APP_POLICY",
|
|
64929
65265
|
DeletedPolicy = "DELETED_POLICY",
|
|
64930
65266
|
DeletedTunnel = "DELETED_TUNNEL",
|
|
64931
65267
|
EcosystemAuditLogInstallationCreated = "ECOSYSTEM_AUDIT_LOG_INSTALLATION_CREATED",
|
|
@@ -64962,6 +65298,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
64962
65298
|
TokenCreated = "TOKEN_CREATED",
|
|
64963
65299
|
TokenRevoked = "TOKEN_REVOKED",
|
|
64964
65300
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
65301
|
+
UpdatedMobileAppPolicy = "UPDATED_MOBILE_APP_POLICY",
|
|
64965
65302
|
UpdatedPolicy = "UPDATED_POLICY",
|
|
64966
65303
|
UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
|
|
64967
65304
|
UserAddedToBeacon = "USER_ADDED_TO_BEACON",
|
|
@@ -65597,6 +65934,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
65597
65934
|
ReviewGsyncRemediation = "REVIEW_GSYNC_REMEDIATION",
|
|
65598
65935
|
ReviewIpAllowlistRemediation = "REVIEW_IP_ALLOWLIST_REMEDIATION",
|
|
65599
65936
|
ReviewIssueRemediation = "REVIEW_ISSUE_REMEDIATION",
|
|
65937
|
+
ReviewMobileAppPolicyRemediation = "REVIEW_MOBILE_APP_POLICY_REMEDIATION",
|
|
65600
65938
|
ReviewOtherAuthPoliciesRemediation = "REVIEW_OTHER_AUTH_POLICIES_REMEDIATION",
|
|
65601
65939
|
ReviewOtherIpAllowlistRemediation = "REVIEW_OTHER_IP_ALLOWLIST_REMEDIATION",
|
|
65602
65940
|
ReviewPageRemediation = "REVIEW_PAGE_REMEDIATION",
|
|
@@ -65843,6 +66181,7 @@ export declare type ShepherdWorkspace = {
|
|
|
65843
66181
|
bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
|
|
65844
66182
|
cloudId: Scalars['ID']['output'];
|
|
65845
66183
|
cloudName?: Maybe<Scalars['String']['output']>;
|
|
66184
|
+
createdOn: Scalars['DateTime']['output'];
|
|
65846
66185
|
currentUser?: Maybe<ShepherdCurrentUser>;
|
|
65847
66186
|
customDetections: Array<ShepherdCustomDetection>;
|
|
65848
66187
|
detections: Array<ShepherdDetection>;
|
|
@@ -67698,6 +68037,7 @@ export declare type TownsquareQueryApi = {
|
|
|
67698
68037
|
goal?: Maybe<TownsquareGoal>;
|
|
67699
68038
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
67700
68039
|
goalTql?: Maybe<TownsquareGoalConnection>;
|
|
68040
|
+
goalTqlFullHierarchy?: Maybe<TownsquareGoalConnection>;
|
|
67701
68041
|
goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
67702
68042
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
67703
68043
|
project?: Maybe<TownsquareProject>;
|
|
@@ -67731,6 +68071,14 @@ export declare type TownsquareQueryApiGoalTqlArgs = {
|
|
|
67731
68071
|
q: Scalars['String']['input'];
|
|
67732
68072
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
67733
68073
|
};
|
|
68074
|
+
export declare type TownsquareQueryApiGoalTqlFullHierarchyArgs = {
|
|
68075
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68076
|
+
childrenOf?: InputMaybe<Scalars['String']['input']>;
|
|
68077
|
+
containerId: Scalars['String']['input'];
|
|
68078
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68079
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
68080
|
+
sorts?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
68081
|
+
};
|
|
67734
68082
|
export declare type TownsquareQueryApiGoalTypesArgs = {
|
|
67735
68083
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67736
68084
|
containerId: Scalars['String']['input'];
|
|
@@ -68121,11 +68469,12 @@ export declare type TrelloBoardUpdated = {
|
|
|
68121
68469
|
description?: Maybe<TrelloDescription>;
|
|
68122
68470
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
68123
68471
|
id?: Maybe<Scalars['ID']['output']>;
|
|
68124
|
-
labels?: Maybe<
|
|
68472
|
+
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
68125
68473
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
68126
68474
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
68127
68475
|
name?: Maybe<Scalars['String']['output']>;
|
|
68128
68476
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
68477
|
+
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
68129
68478
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
68130
68479
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
68131
68480
|
url?: Maybe<Scalars['URL']['output']>;
|
|
@@ -68170,6 +68519,7 @@ export declare type TrelloCard = Node & {
|
|
|
68170
68519
|
list?: Maybe<TrelloList>;
|
|
68171
68520
|
location?: Maybe<TrelloCardLocation>;
|
|
68172
68521
|
members?: Maybe<TrelloMemberConnection>;
|
|
68522
|
+
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
68173
68523
|
name?: Maybe<Scalars['String']['output']>;
|
|
68174
68524
|
objectId: Scalars['ID']['output'];
|
|
68175
68525
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -68510,6 +68860,10 @@ export declare type TrelloImagePreviewUpdatedConnection = {
|
|
|
68510
68860
|
__typename?: 'TrelloImagePreviewUpdatedConnection';
|
|
68511
68861
|
nodes?: Maybe<Array<TrelloImagePreview>>;
|
|
68512
68862
|
};
|
|
68863
|
+
export declare type TrelloInbox = {
|
|
68864
|
+
__typename?: 'TrelloInbox';
|
|
68865
|
+
board: TrelloBoard;
|
|
68866
|
+
};
|
|
68513
68867
|
export declare type TrelloJwmWorkspaceLink = {
|
|
68514
68868
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
68515
68869
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -68530,11 +68884,31 @@ export declare type TrelloLabelConnection = {
|
|
|
68530
68884
|
nodes?: Maybe<Array<TrelloLabel>>;
|
|
68531
68885
|
pageInfo: PageInfo;
|
|
68532
68886
|
};
|
|
68887
|
+
export declare type TrelloLabelConnectionUpdated = {
|
|
68888
|
+
__typename?: 'TrelloLabelConnectionUpdated';
|
|
68889
|
+
edges?: Maybe<Array<TrelloLabelEdgeUpdated>>;
|
|
68890
|
+
};
|
|
68891
|
+
export declare type TrelloLabelDeleted = {
|
|
68892
|
+
__typename?: 'TrelloLabelDeleted';
|
|
68893
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
68894
|
+
};
|
|
68533
68895
|
export declare type TrelloLabelEdge = {
|
|
68534
68896
|
__typename?: 'TrelloLabelEdge';
|
|
68535
68897
|
cursor: Scalars['String']['output'];
|
|
68536
68898
|
node: TrelloLabel;
|
|
68537
68899
|
};
|
|
68900
|
+
export declare type TrelloLabelEdgeUpdated = {
|
|
68901
|
+
__typename?: 'TrelloLabelEdgeUpdated';
|
|
68902
|
+
node: TrelloLabelUpdated;
|
|
68903
|
+
};
|
|
68904
|
+
export declare type TrelloLabelUpdated = {
|
|
68905
|
+
__typename?: 'TrelloLabelUpdated';
|
|
68906
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
68907
|
+
id: Scalars['ID']['output'];
|
|
68908
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
68909
|
+
objectId: Scalars['ID']['output'];
|
|
68910
|
+
uses?: Maybe<Scalars['Int']['output']>;
|
|
68911
|
+
};
|
|
68538
68912
|
export declare type TrelloLabelUpdatedConnection = {
|
|
68539
68913
|
__typename?: 'TrelloLabelUpdatedConnection';
|
|
68540
68914
|
nodes: Array<TrelloLabel>;
|
|
@@ -68622,6 +68996,7 @@ export declare type TrelloMember = Node & {
|
|
|
68622
68996
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
68623
68997
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
68624
68998
|
id: Scalars['ID']['output'];
|
|
68999
|
+
inbox?: Maybe<TrelloInbox>;
|
|
68625
69000
|
initials?: Maybe<Scalars['String']['output']>;
|
|
68626
69001
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
68627
69002
|
objectId: Scalars['ID']['output'];
|
|
@@ -69935,6 +70310,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
69935
70310
|
isDeactivationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69936
70311
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69937
70312
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
70313
|
+
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
69938
70314
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
69939
70315
|
updateCriteria?: InputMaybe<Array<UpdateCompassScorecardCriteriaInput>>;
|
|
69940
70316
|
};
|