@forge/cli-shared 6.4.0 → 6.4.1-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/out/graphql/graphql-types.d.ts +493 -7
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +69 -21
- package/package.json +2 -2
|
@@ -1152,6 +1152,7 @@ export declare type AppLogsWithMetaDataResponse = {
|
|
|
1152
1152
|
__typename?: 'AppLogsWithMetaDataResponse';
|
|
1153
1153
|
appLogs: Array<AppLogsWithMetaData>;
|
|
1154
1154
|
hasNextPage: Scalars['Boolean']['output'];
|
|
1155
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
1155
1156
|
totalLogs: Scalars['Int']['output'];
|
|
1156
1157
|
};
|
|
1157
1158
|
export declare type AppNetworkEgressPermission = {
|
|
@@ -2217,6 +2218,14 @@ export declare type Book = {
|
|
|
2217
2218
|
id?: Maybe<Scalars['String']['output']>;
|
|
2218
2219
|
title?: Maybe<Scalars['String']['output']>;
|
|
2219
2220
|
};
|
|
2221
|
+
export declare type BooleanUserInput = {
|
|
2222
|
+
type: BooleanUserInputType;
|
|
2223
|
+
value?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2224
|
+
variableName: Scalars['String']['input'];
|
|
2225
|
+
};
|
|
2226
|
+
export declare enum BooleanUserInputType {
|
|
2227
|
+
Boolean = "BOOLEAN"
|
|
2228
|
+
}
|
|
2220
2229
|
export declare enum BuiltinPolarisIdeaField {
|
|
2221
2230
|
Archived = "ARCHIVED",
|
|
2222
2231
|
ArchivedBy = "ARCHIVED_BY",
|
|
@@ -3581,6 +3590,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3581
3590
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3582
3591
|
updateCustomPermissionConfigs?: Maybe<CompassUpdatePermissionConfigsPayload>;
|
|
3583
3592
|
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
3593
|
+
updateJqlMetricSourceUser?: Maybe<CompassUpdateJqlMetricSourceUserPayload>;
|
|
3584
3594
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
3585
3595
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
3586
3596
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
@@ -3824,6 +3834,9 @@ export declare type CompassCatalogMutationApiUpdateCustomPermissionConfigsArgs =
|
|
|
3824
3834
|
export declare type CompassCatalogMutationApiUpdateDocumentArgs = {
|
|
3825
3835
|
input: CompassUpdateDocumentInput;
|
|
3826
3836
|
};
|
|
3837
|
+
export declare type CompassCatalogMutationApiUpdateJqlMetricSourceUserArgs = {
|
|
3838
|
+
input: CompassUpdateJqlMetricSourceUserInput;
|
|
3839
|
+
};
|
|
3827
3840
|
export declare type CompassCatalogMutationApiUpdateMetricDefinitionArgs = {
|
|
3828
3841
|
input: CompassUpdateMetricDefinitionInput;
|
|
3829
3842
|
};
|
|
@@ -7054,6 +7067,15 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
7054
7067
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7055
7068
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
7056
7069
|
};
|
|
7070
|
+
export declare type CompassUpdateJqlMetricSourceUserInput = {
|
|
7071
|
+
metricSourceId: Scalars['ID']['input'];
|
|
7072
|
+
};
|
|
7073
|
+
export declare type CompassUpdateJqlMetricSourceUserPayload = Payload & {
|
|
7074
|
+
__typename?: 'CompassUpdateJQLMetricSourceUserPayload';
|
|
7075
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7076
|
+
success: Scalars['Boolean']['output'];
|
|
7077
|
+
updatedMetricSource?: Maybe<CompassMetricSource>;
|
|
7078
|
+
};
|
|
7057
7079
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
7058
7080
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
7059
7081
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16284,6 +16306,37 @@ export declare type CreateIncomingWebhookToken = {
|
|
|
16284
16306
|
name?: Maybe<Scalars['String']['output']>;
|
|
16285
16307
|
value: Scalars['String']['output'];
|
|
16286
16308
|
};
|
|
16309
|
+
export declare type CreateJiraPlaybookInput = {
|
|
16310
|
+
cloudId: Scalars['ID']['input'];
|
|
16311
|
+
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
16312
|
+
name: Scalars['String']['input'];
|
|
16313
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
16314
|
+
scopeType: JiraPlaybookScopeType;
|
|
16315
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
16316
|
+
steps: Array<CreateJiraPlaybookStepInput>;
|
|
16317
|
+
};
|
|
16318
|
+
export declare type CreateJiraPlaybookPayload = Payload & {
|
|
16319
|
+
__typename?: 'CreateJiraPlaybookPayload';
|
|
16320
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16321
|
+
playbook?: Maybe<JiraPlaybook>;
|
|
16322
|
+
success: Scalars['Boolean']['output'];
|
|
16323
|
+
};
|
|
16324
|
+
export declare type CreateJiraPlaybookStepInput = {
|
|
16325
|
+
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
16326
|
+
name: Scalars['String']['input'];
|
|
16327
|
+
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
16328
|
+
type: JiraPlaybookStepType;
|
|
16329
|
+
};
|
|
16330
|
+
export declare type CreateJiraPlaybookStepRunInput = {
|
|
16331
|
+
playbookInstanceStepAri: Scalars['ID']['input'];
|
|
16332
|
+
userInputs?: InputMaybe<Array<UserInput>>;
|
|
16333
|
+
};
|
|
16334
|
+
export declare type CreateJiraPlaybookStepRunPayload = Payload & {
|
|
16335
|
+
__typename?: 'CreateJiraPlaybookStepRunPayload';
|
|
16336
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16337
|
+
playbookInstanceStep?: Maybe<JiraPlaybookInstanceStep>;
|
|
16338
|
+
success: Scalars['Boolean']['output'];
|
|
16339
|
+
};
|
|
16287
16340
|
export declare type CreatePolarisCommentInput = {
|
|
16288
16341
|
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
16289
16342
|
kind?: InputMaybe<PolarisCommentKind>;
|
|
@@ -17693,6 +17746,15 @@ export declare type DeleteEventSourcePayload = Payload & {
|
|
|
17693
17746
|
errors?: Maybe<Array<MutationError>>;
|
|
17694
17747
|
success: Scalars['Boolean']['output'];
|
|
17695
17748
|
};
|
|
17749
|
+
export declare type DeleteJiraPlaybookInput = {
|
|
17750
|
+
id: Scalars['ID']['input'];
|
|
17751
|
+
};
|
|
17752
|
+
export declare type DeleteJiraPlaybookPayload = Payload & {
|
|
17753
|
+
__typename?: 'DeleteJiraPlaybookPayload';
|
|
17754
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17755
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17756
|
+
success: Scalars['Boolean']['output'];
|
|
17757
|
+
};
|
|
17696
17758
|
export declare type DeletePolarisIdeaTemplateInput = {
|
|
17697
17759
|
id: Scalars['ID']['input'];
|
|
17698
17760
|
project: Scalars['ID']['input'];
|
|
@@ -25627,6 +25689,7 @@ export declare type GraphStore = {
|
|
|
25627
25689
|
appInstallationAssociatedToOperationsWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
|
|
25628
25690
|
appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
25629
25691
|
appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
25692
|
+
atlasGoalHasContributor?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorConnection>;
|
|
25630
25693
|
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
25631
25694
|
atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
|
|
25632
25695
|
atlasGoalHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection>;
|
|
@@ -25964,7 +26027,9 @@ export declare type GraphStore = {
|
|
|
25964
26027
|
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
25965
26028
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
25966
26029
|
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
26030
|
+
teamOwnsComponentInverse?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseConnection>;
|
|
25967
26031
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
26032
|
+
teamWorksOnProjectInverse?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectInverseConnection>;
|
|
25968
26033
|
teamWorksOnProjectInverseRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
25969
26034
|
teamWorksOnProjectRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
25970
26035
|
testPerfhammerMaterializationA?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAConnection>;
|
|
@@ -25992,6 +26057,7 @@ export declare type GraphStore = {
|
|
|
25992
26057
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
25993
26058
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
25994
26059
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
26060
|
+
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
25995
26061
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
25996
26062
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
25997
26063
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
@@ -26061,6 +26127,13 @@ export declare type GraphStoreAppInstallationAssociatedToSecurityWorkspaceRelati
|
|
|
26061
26127
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26062
26128
|
id: Scalars['ID']['input'];
|
|
26063
26129
|
};
|
|
26130
|
+
export declare type GraphStoreAtlasGoalHasContributorArgs = {
|
|
26131
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26132
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26133
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26134
|
+
id: Scalars['ID']['input'];
|
|
26135
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasContributorSortInput>;
|
|
26136
|
+
};
|
|
26064
26137
|
export declare type GraphStoreAtlasGoalHasContributorInverseArgs = {
|
|
26065
26138
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26066
26139
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -26111,8 +26184,7 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
26111
26184
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
26112
26185
|
};
|
|
26113
26186
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
26114
|
-
|
|
26115
|
-
userId: Scalars['ID']['input'];
|
|
26187
|
+
container_ids: Array<Scalars['ID']['input']>;
|
|
26116
26188
|
};
|
|
26117
26189
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
|
|
26118
26190
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28195,6 +28267,13 @@ export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
|
28195
28267
|
id: Scalars['ID']['input'];
|
|
28196
28268
|
sort?: InputMaybe<GraphStoreTeamOwnsComponentSortInput>;
|
|
28197
28269
|
};
|
|
28270
|
+
export declare type GraphStoreTeamOwnsComponentInverseArgs = {
|
|
28271
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28272
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28273
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28274
|
+
id: Scalars['ID']['input'];
|
|
28275
|
+
sort?: InputMaybe<GraphStoreTeamOwnsComponentSortInput>;
|
|
28276
|
+
};
|
|
28198
28277
|
export declare type GraphStoreTeamWorksOnProjectArgs = {
|
|
28199
28278
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28200
28279
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28202,6 +28281,13 @@ export declare type GraphStoreTeamWorksOnProjectArgs = {
|
|
|
28202
28281
|
id: Scalars['ID']['input'];
|
|
28203
28282
|
sort?: InputMaybe<GraphStoreTeamWorksOnProjectSortInput>;
|
|
28204
28283
|
};
|
|
28284
|
+
export declare type GraphStoreTeamWorksOnProjectInverseArgs = {
|
|
28285
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28286
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28287
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28288
|
+
id: Scalars['ID']['input'];
|
|
28289
|
+
sort?: InputMaybe<GraphStoreTeamWorksOnProjectSortInput>;
|
|
28290
|
+
};
|
|
28205
28291
|
export declare type GraphStoreTeamWorksOnProjectInverseRelationshipArgs = {
|
|
28206
28292
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28207
28293
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -28369,6 +28455,13 @@ export declare type GraphStoreUserHasTopProjectInverseArgs = {
|
|
|
28369
28455
|
id: Scalars['ID']['input'];
|
|
28370
28456
|
sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
|
|
28371
28457
|
};
|
|
28458
|
+
export declare type GraphStoreUserIsInTeamArgs = {
|
|
28459
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28460
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28461
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28462
|
+
id: Scalars['ID']['input'];
|
|
28463
|
+
sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
|
|
28464
|
+
};
|
|
28372
28465
|
export declare type GraphStoreUserIsInTeamInverseArgs = {
|
|
28373
28466
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28374
28467
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28709,7 +28802,7 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
28709
28802
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
28710
28803
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28711
28804
|
};
|
|
28712
|
-
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = JiraIssue | TownsquareGoal | TownsquareProject;
|
|
28805
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
28713
28806
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
28714
28807
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
28715
28808
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -29808,7 +29901,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
29808
29901
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
29809
29902
|
id: Scalars['ID']['output'];
|
|
29810
29903
|
};
|
|
29811
|
-
export declare type GraphStoreCypherQueryToNodeUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29904
|
+
export declare type GraphStoreCypherQueryToNodeUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | JiraIssue;
|
|
29812
29905
|
export declare type GraphStoreDateFilterInput = {
|
|
29813
29906
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29814
29907
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -32981,8 +33074,10 @@ export declare type GraphStoreFullTeamWorksOnProjectNode = Node & {
|
|
|
32981
33074
|
};
|
|
32982
33075
|
export declare type GraphStoreFullTeamWorksOnProjectStartNode = {
|
|
32983
33076
|
__typename?: 'GraphStoreFullTeamWorksOnProjectStartNode';
|
|
33077
|
+
data?: Maybe<GraphStoreFullTeamWorksOnProjectStartUnion>;
|
|
32984
33078
|
id: Scalars['ID']['output'];
|
|
32985
33079
|
};
|
|
33080
|
+
export declare type GraphStoreFullTeamWorksOnProjectStartUnion = TeamV2;
|
|
32986
33081
|
export declare type GraphStoreFullTestPerfhammerMaterializationAConnection = HasPageInfo & HasTotal & {
|
|
32987
33082
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAConnection';
|
|
32988
33083
|
edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationAEdge>>;
|
|
@@ -34466,6 +34561,19 @@ export declare type GraphStoreShipit57IssueRecursiveLinksToPageSortInput = {
|
|
|
34466
34561
|
export declare type GraphStoreShipit57PullRequestLinksToPageSortInput = {
|
|
34467
34562
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34468
34563
|
};
|
|
34564
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasContributorConnection = HasPageInfo & {
|
|
34565
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorConnection';
|
|
34566
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasContributorEdge>>>;
|
|
34567
|
+
pageInfo: PageInfo;
|
|
34568
|
+
};
|
|
34569
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasContributorEdge = {
|
|
34570
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorEdge';
|
|
34571
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34572
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34573
|
+
id: Scalars['ID']['output'];
|
|
34574
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34575
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorUnion>;
|
|
34576
|
+
};
|
|
34469
34577
|
export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection = HasPageInfo & {
|
|
34470
34578
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection';
|
|
34471
34579
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseEdge>>>;
|
|
@@ -34480,6 +34588,7 @@ export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseEdge = {
|
|
|
34480
34588
|
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion>;
|
|
34481
34589
|
};
|
|
34482
34590
|
export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion = TownsquareGoal;
|
|
34591
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasContributorUnion = TeamV2;
|
|
34483
34592
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerConnection = HasPageInfo & {
|
|
34484
34593
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerConnection';
|
|
34485
34594
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerEdge>>>;
|
|
@@ -34647,7 +34756,7 @@ export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge =
|
|
|
34647
34756
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion>;
|
|
34648
34757
|
};
|
|
34649
34758
|
export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion = TownsquareProject;
|
|
34650
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasContributorUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34759
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasContributorUnion = AppUser | AtlassianAccountUser | CustomerUser | TeamV2;
|
|
34651
34760
|
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerConnection = HasPageInfo & {
|
|
34652
34761
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerConnection';
|
|
34653
34762
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerEdge>>>;
|
|
@@ -37025,6 +37134,20 @@ export declare type GraphStoreSimplifiedTeamOwnsComponentEdge = {
|
|
|
37025
37134
|
lastUpdated: Scalars['DateTime']['output'];
|
|
37026
37135
|
node?: Maybe<GraphStoreSimplifiedTeamOwnsComponentUnion>;
|
|
37027
37136
|
};
|
|
37137
|
+
export declare type GraphStoreSimplifiedTeamOwnsComponentInverseConnection = HasPageInfo & {
|
|
37138
|
+
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentInverseConnection';
|
|
37139
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseEdge>>>;
|
|
37140
|
+
pageInfo: PageInfo;
|
|
37141
|
+
};
|
|
37142
|
+
export declare type GraphStoreSimplifiedTeamOwnsComponentInverseEdge = {
|
|
37143
|
+
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentInverseEdge';
|
|
37144
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37145
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37146
|
+
id: Scalars['ID']['output'];
|
|
37147
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37148
|
+
node?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseUnion>;
|
|
37149
|
+
};
|
|
37150
|
+
export declare type GraphStoreSimplifiedTeamOwnsComponentInverseUnion = TeamV2;
|
|
37028
37151
|
export declare type GraphStoreSimplifiedTeamOwnsComponentUnion = CompassComponent;
|
|
37029
37152
|
export declare type GraphStoreSimplifiedTeamWorksOnProjectConnection = HasPageInfo & HasTotal & {
|
|
37030
37153
|
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectConnection';
|
|
@@ -37041,6 +37164,22 @@ export declare type GraphStoreSimplifiedTeamWorksOnProjectEdge = {
|
|
|
37041
37164
|
lastUpdated: Scalars['DateTime']['output'];
|
|
37042
37165
|
node?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectUnion>;
|
|
37043
37166
|
};
|
|
37167
|
+
export declare type GraphStoreSimplifiedTeamWorksOnProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
37168
|
+
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectInverseConnection';
|
|
37169
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamWorksOnProjectInverseEdge>>>;
|
|
37170
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37171
|
+
pageInfo: PageInfo;
|
|
37172
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37173
|
+
};
|
|
37174
|
+
export declare type GraphStoreSimplifiedTeamWorksOnProjectInverseEdge = {
|
|
37175
|
+
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectInverseEdge';
|
|
37176
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37177
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37178
|
+
id: Scalars['ID']['output'];
|
|
37179
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37180
|
+
node?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectInverseUnion>;
|
|
37181
|
+
};
|
|
37182
|
+
export declare type GraphStoreSimplifiedTeamWorksOnProjectInverseUnion = TeamV2;
|
|
37044
37183
|
export declare type GraphStoreSimplifiedTeamWorksOnProjectUnion = JiraProject;
|
|
37045
37184
|
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAConnection = HasPageInfo & HasTotal & {
|
|
37046
37185
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationAConnection';
|
|
@@ -37264,6 +37403,19 @@ export declare type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
|
|
|
37264
37403
|
};
|
|
37265
37404
|
export declare type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37266
37405
|
export declare type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
|
|
37406
|
+
export declare type GraphStoreSimplifiedUserIsInTeamConnection = HasPageInfo & {
|
|
37407
|
+
__typename?: 'GraphStoreSimplifiedUserIsInTeamConnection';
|
|
37408
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamEdge>>>;
|
|
37409
|
+
pageInfo: PageInfo;
|
|
37410
|
+
};
|
|
37411
|
+
export declare type GraphStoreSimplifiedUserIsInTeamEdge = {
|
|
37412
|
+
__typename?: 'GraphStoreSimplifiedUserIsInTeamEdge';
|
|
37413
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37414
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37415
|
+
id: Scalars['ID']['output'];
|
|
37416
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37417
|
+
node?: Maybe<GraphStoreSimplifiedUserIsInTeamUnion>;
|
|
37418
|
+
};
|
|
37267
37419
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseConnection = HasPageInfo & {
|
|
37268
37420
|
__typename?: 'GraphStoreSimplifiedUserIsInTeamInverseConnection';
|
|
37269
37421
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamInverseEdge>>>;
|
|
@@ -37278,6 +37430,7 @@ export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
|
|
|
37278
37430
|
node?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseUnion>;
|
|
37279
37431
|
};
|
|
37280
37432
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37433
|
+
export declare type GraphStoreSimplifiedUserIsInTeamUnion = TeamV2;
|
|
37281
37434
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
37282
37435
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
37283
37436
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -38374,8 +38527,10 @@ export declare type GrowthUnifiedProfilePaidChannelContextByProduct = {
|
|
|
38374
38527
|
trello?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
38375
38528
|
};
|
|
38376
38529
|
export declare enum GrowthUnifiedProfileProduct {
|
|
38530
|
+
Compass = "compass",
|
|
38377
38531
|
Confluence = "confluence",
|
|
38378
38532
|
Jira = "jira",
|
|
38533
|
+
Jpd = "jpd",
|
|
38379
38534
|
Jsm = "jsm",
|
|
38380
38535
|
Jwm = "jwm",
|
|
38381
38536
|
Trello = "trello"
|
|
@@ -43966,6 +44121,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
43966
44121
|
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
43967
44122
|
modifyAutodevCode?: Maybe<JiraAutodevBasicPayload>;
|
|
43968
44123
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
44124
|
+
pauseAutodevCodeGeneration?: Maybe<JiraAutodevBasicPayload>;
|
|
43969
44125
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
43970
44126
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
43971
44127
|
resumeAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
@@ -44041,6 +44197,10 @@ export declare type JiraDevOpsMutationModifyAutodevCodeArgs = {
|
|
|
44041
44197
|
export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
44042
44198
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
44043
44199
|
};
|
|
44200
|
+
export declare type JiraDevOpsMutationPauseAutodevCodeGenerationArgs = {
|
|
44201
|
+
issueAri: Scalars['ID']['input'];
|
|
44202
|
+
jobId: Scalars['ID']['input'];
|
|
44203
|
+
};
|
|
44044
44204
|
export declare type JiraDevOpsMutationRegenerateAutodevPlanArgs = {
|
|
44045
44205
|
issueAri: Scalars['ID']['input'];
|
|
44046
44206
|
jobId: Scalars['ID']['input'];
|
|
@@ -44540,6 +44700,16 @@ export declare type JiraFieldType = {
|
|
|
44540
44700
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
44541
44701
|
name: Scalars['String']['output'];
|
|
44542
44702
|
};
|
|
44703
|
+
export declare type JiraFieldTypeConnection = {
|
|
44704
|
+
__typename?: 'JiraFieldTypeConnection';
|
|
44705
|
+
edges?: Maybe<Array<Maybe<JiraFieldTypeEdge>>>;
|
|
44706
|
+
pageInfo: PageInfo;
|
|
44707
|
+
};
|
|
44708
|
+
export declare type JiraFieldTypeEdge = {
|
|
44709
|
+
__typename?: 'JiraFieldTypeEdge';
|
|
44710
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44711
|
+
node?: Maybe<JiraProjectFieldsPageFieldType>;
|
|
44712
|
+
};
|
|
44543
44713
|
export declare type JiraFieldTypeGroup = {
|
|
44544
44714
|
__typename?: 'JiraFieldTypeGroup';
|
|
44545
44715
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -49635,6 +49805,152 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
49635
49805
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
49636
49806
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
49637
49807
|
};
|
|
49808
|
+
export declare type JiraPlaybook = Node & {
|
|
49809
|
+
__typename?: 'JiraPlaybook';
|
|
49810
|
+
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
49811
|
+
id: Scalars['ID']['output'];
|
|
49812
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
49813
|
+
owner?: Maybe<User>;
|
|
49814
|
+
scopeId?: Maybe<Scalars['String']['output']>;
|
|
49815
|
+
scopeType?: Maybe<JiraPlaybookScopeType>;
|
|
49816
|
+
state?: Maybe<JiraPlaybookStateField>;
|
|
49817
|
+
steps?: Maybe<Array<JiraPlaybookStep>>;
|
|
49818
|
+
};
|
|
49819
|
+
export declare type JiraPlaybookConnection = HasPageInfo & QueryPayload & {
|
|
49820
|
+
__typename?: 'JiraPlaybookConnection';
|
|
49821
|
+
edges?: Maybe<Array<JiraPlaybookEdge>>;
|
|
49822
|
+
errors?: Maybe<Array<QueryError>>;
|
|
49823
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybook>>>;
|
|
49824
|
+
pageInfo: PageInfo;
|
|
49825
|
+
success: Scalars['Boolean']['output'];
|
|
49826
|
+
};
|
|
49827
|
+
export declare type JiraPlaybookEdge = {
|
|
49828
|
+
__typename?: 'JiraPlaybookEdge';
|
|
49829
|
+
cursor: Scalars['String']['output'];
|
|
49830
|
+
node?: Maybe<JiraPlaybook>;
|
|
49831
|
+
};
|
|
49832
|
+
export declare type JiraPlaybookFilter = {
|
|
49833
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
49834
|
+
};
|
|
49835
|
+
export declare type JiraPlaybookInstance = Node & {
|
|
49836
|
+
__typename?: 'JiraPlaybookInstance';
|
|
49837
|
+
countOfAllSteps?: Maybe<Scalars['Int']['output']>;
|
|
49838
|
+
countOfCompletedSteps?: Maybe<Scalars['Int']['output']>;
|
|
49839
|
+
id: Scalars['ID']['output'];
|
|
49840
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
49841
|
+
steps?: Maybe<Array<JiraPlaybookInstanceStep>>;
|
|
49842
|
+
};
|
|
49843
|
+
export declare type JiraPlaybookInstanceConnection = HasPageInfo & QueryPayload & {
|
|
49844
|
+
__typename?: 'JiraPlaybookInstanceConnection';
|
|
49845
|
+
edges?: Maybe<Array<JiraPlaybookInstanceEdge>>;
|
|
49846
|
+
errors?: Maybe<Array<QueryError>>;
|
|
49847
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookInstance>>>;
|
|
49848
|
+
pageInfo: PageInfo;
|
|
49849
|
+
success: Scalars['Boolean']['output'];
|
|
49850
|
+
};
|
|
49851
|
+
export declare type JiraPlaybookInstanceEdge = {
|
|
49852
|
+
__typename?: 'JiraPlaybookInstanceEdge';
|
|
49853
|
+
cursor: Scalars['String']['output'];
|
|
49854
|
+
node?: Maybe<JiraPlaybookInstance>;
|
|
49855
|
+
};
|
|
49856
|
+
export declare type JiraPlaybookInstanceStep = Node & {
|
|
49857
|
+
__typename?: 'JiraPlaybookInstanceStep';
|
|
49858
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
49859
|
+
id: Scalars['ID']['output'];
|
|
49860
|
+
lastRun?: Maybe<JiraPlaybookStepRun>;
|
|
49861
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
49862
|
+
type?: Maybe<JiraPlaybookStepType>;
|
|
49863
|
+
};
|
|
49864
|
+
export declare type JiraPlaybookIssueFilter = {
|
|
49865
|
+
__typename?: 'JiraPlaybookIssueFilter';
|
|
49866
|
+
type?: Maybe<JiraPlaybookIssueFilterType>;
|
|
49867
|
+
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
49868
|
+
};
|
|
49869
|
+
export declare type JiraPlaybookIssueFilterInput = {
|
|
49870
|
+
type?: InputMaybe<JiraPlaybookIssueFilterType>;
|
|
49871
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
49872
|
+
};
|
|
49873
|
+
export declare enum JiraPlaybookIssueFilterType {
|
|
49874
|
+
Groups = "GROUPS",
|
|
49875
|
+
IssueTypes = "ISSUE_TYPES",
|
|
49876
|
+
RequestTypes = "REQUEST_TYPES"
|
|
49877
|
+
}
|
|
49878
|
+
export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
49879
|
+
__typename?: 'JiraPlaybookQueryPayload';
|
|
49880
|
+
errors?: Maybe<Array<QueryError>>;
|
|
49881
|
+
playbook?: Maybe<JiraPlaybook>;
|
|
49882
|
+
success: Scalars['Boolean']['output'];
|
|
49883
|
+
};
|
|
49884
|
+
export declare enum JiraPlaybookScopeType {
|
|
49885
|
+
Global = "GLOBAL",
|
|
49886
|
+
Project = "PROJECT",
|
|
49887
|
+
Team = "TEAM"
|
|
49888
|
+
}
|
|
49889
|
+
export declare enum JiraPlaybookStateField {
|
|
49890
|
+
Disabled = "DISABLED",
|
|
49891
|
+
Enabled = "ENABLED"
|
|
49892
|
+
}
|
|
49893
|
+
export declare type JiraPlaybookStep = {
|
|
49894
|
+
__typename?: 'JiraPlaybookStep';
|
|
49895
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
49896
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
49897
|
+
ruleId?: Maybe<Scalars['String']['output']>;
|
|
49898
|
+
stepId: Scalars['ID']['output'];
|
|
49899
|
+
type?: Maybe<JiraPlaybookStepType>;
|
|
49900
|
+
};
|
|
49901
|
+
export declare type JiraPlaybookStepOutput = {
|
|
49902
|
+
__typename?: 'JiraPlaybookStepOutput';
|
|
49903
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
49904
|
+
results?: Maybe<Array<JiraPlaybookStepOutputKeyValuePair>>;
|
|
49905
|
+
};
|
|
49906
|
+
export declare type JiraPlaybookStepOutputKeyValuePair = {
|
|
49907
|
+
__typename?: 'JiraPlaybookStepOutputKeyValuePair';
|
|
49908
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
49909
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
49910
|
+
};
|
|
49911
|
+
export declare type JiraPlaybookStepRun = Node & {
|
|
49912
|
+
__typename?: 'JiraPlaybookStepRun';
|
|
49913
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
49914
|
+
id: Scalars['ID']['output'];
|
|
49915
|
+
playbookName?: Maybe<Scalars['String']['output']>;
|
|
49916
|
+
stepDuration?: Maybe<Scalars['Long']['output']>;
|
|
49917
|
+
stepId?: Maybe<Scalars['ID']['output']>;
|
|
49918
|
+
stepName?: Maybe<Scalars['String']['output']>;
|
|
49919
|
+
stepOutput?: Maybe<Array<JiraPlaybookStepOutput>>;
|
|
49920
|
+
stepStatus?: Maybe<JiraPlaybookStepRunStatus>;
|
|
49921
|
+
stepType?: Maybe<JiraPlaybookStepType>;
|
|
49922
|
+
triggeredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
49923
|
+
triggeredBy?: Maybe<User>;
|
|
49924
|
+
};
|
|
49925
|
+
export declare type JiraPlaybookStepRunConnection = HasPageInfo & QueryPayload & {
|
|
49926
|
+
__typename?: 'JiraPlaybookStepRunConnection';
|
|
49927
|
+
edges?: Maybe<Array<JiraPlaybookStepRunEdge>>;
|
|
49928
|
+
errors?: Maybe<Array<QueryError>>;
|
|
49929
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookStepRun>>>;
|
|
49930
|
+
pageInfo: PageInfo;
|
|
49931
|
+
success: Scalars['Boolean']['output'];
|
|
49932
|
+
};
|
|
49933
|
+
export declare type JiraPlaybookStepRunEdge = {
|
|
49934
|
+
__typename?: 'JiraPlaybookStepRunEdge';
|
|
49935
|
+
cursor: Scalars['String']['output'];
|
|
49936
|
+
node?: Maybe<JiraPlaybookStepRun>;
|
|
49937
|
+
};
|
|
49938
|
+
export declare enum JiraPlaybookStepRunStatus {
|
|
49939
|
+
Failed = "FAILED",
|
|
49940
|
+
InProgress = "IN_PROGRESS",
|
|
49941
|
+
Success = "SUCCESS"
|
|
49942
|
+
}
|
|
49943
|
+
export declare enum JiraPlaybookStepType {
|
|
49944
|
+
AutomationRule = "AUTOMATION_RULE",
|
|
49945
|
+
InstructionalRule = "INSTRUCTIONAL_RULE"
|
|
49946
|
+
}
|
|
49947
|
+
export declare enum JiraPlaybooksSortBy {
|
|
49948
|
+
Name = "NAME"
|
|
49949
|
+
}
|
|
49950
|
+
export declare type JiraPlaybooksSortInput = {
|
|
49951
|
+
by: JiraPlaybooksSortBy;
|
|
49952
|
+
order?: SortDirection;
|
|
49953
|
+
};
|
|
49638
49954
|
export declare type JiraPostIncidentReviewLink = Node & {
|
|
49639
49955
|
__typename?: 'JiraPostIncidentReviewLink';
|
|
49640
49956
|
id: Scalars['ID']['output'];
|
|
@@ -49738,6 +50054,7 @@ export declare type JiraProject = Node & {
|
|
|
49738
50054
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
49739
50055
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
49740
50056
|
avatar?: Maybe<JiraAvatar>;
|
|
50057
|
+
background?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
49741
50058
|
boards?: Maybe<JiraBoardConnection>;
|
|
49742
50059
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']['output']>;
|
|
49743
50060
|
category?: Maybe<JiraProjectCategory>;
|
|
@@ -49757,6 +50074,7 @@ export declare type JiraProject = Node & {
|
|
|
49757
50074
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49758
50075
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49759
50076
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
50077
|
+
isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
49760
50078
|
isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49761
50079
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
49762
50080
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
@@ -50114,6 +50432,11 @@ export declare type JiraProjectFieldPayload = Payload & {
|
|
|
50114
50432
|
field?: Maybe<JiraProjectField>;
|
|
50115
50433
|
success: Scalars['Boolean']['output'];
|
|
50116
50434
|
};
|
|
50435
|
+
export declare type JiraProjectFieldsPageFieldType = {
|
|
50436
|
+
__typename?: 'JiraProjectFieldsPageFieldType';
|
|
50437
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
50438
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
50439
|
+
};
|
|
50117
50440
|
export declare type JiraProjectFilterInput = {
|
|
50118
50441
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
50119
50442
|
notificationConfigurationState?: InputMaybe<JiraProjectNotificationConfigurationState>;
|
|
@@ -50389,9 +50712,14 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
|
50389
50712
|
};
|
|
50390
50713
|
export declare type JiraProjectWithIssueTypeIds = {
|
|
50391
50714
|
__typename?: 'JiraProjectWithIssueTypeIds';
|
|
50715
|
+
allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
|
|
50392
50716
|
availableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
50393
50717
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
50394
50718
|
};
|
|
50719
|
+
export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
|
|
50720
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50721
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50722
|
+
};
|
|
50395
50723
|
export declare type JiraProjectWithIssueTypeIdsAvailableFieldsArgs = {
|
|
50396
50724
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50397
50725
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -50573,6 +50901,7 @@ export declare type JiraQuery = {
|
|
|
50573
50901
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
50574
50902
|
rankField?: Maybe<JiraJqlFieldWithAliases>;
|
|
50575
50903
|
recentItems?: Maybe<JiraSearchableEntityConnection>;
|
|
50904
|
+
recentProjects?: Maybe<JiraProjectConnection>;
|
|
50576
50905
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
50577
50906
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
50578
50907
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
@@ -51296,6 +51625,12 @@ export declare type JiraQueryRecentItemsArgs = {
|
|
|
51296
51625
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51297
51626
|
types: Array<JiraSearchableEntityType>;
|
|
51298
51627
|
};
|
|
51628
|
+
export declare type JiraQueryRecentProjectsArgs = {
|
|
51629
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51630
|
+
cloudId: Scalars['ID']['input'];
|
|
51631
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
51632
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51633
|
+
};
|
|
51299
51634
|
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
51300
51635
|
ids: Array<Scalars['ID']['input']>;
|
|
51301
51636
|
};
|
|
@@ -53777,6 +54112,7 @@ export declare type JiraSpreadsheetGroupConnection = {
|
|
|
53777
54112
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupEdge>>>;
|
|
53778
54113
|
errors?: Maybe<Array<QueryError>>;
|
|
53779
54114
|
firstGroup?: Maybe<JiraSpreadsheetGroup>;
|
|
54115
|
+
groupByField?: Maybe<Scalars['String']['output']>;
|
|
53780
54116
|
jql?: Maybe<Scalars['String']['output']>;
|
|
53781
54117
|
pageInfo: PageInfo;
|
|
53782
54118
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -57221,6 +57557,15 @@ export declare type KnowledgeDiscoveryAutoDefinition = {
|
|
|
57221
57557
|
definition: Scalars['String']['output'];
|
|
57222
57558
|
};
|
|
57223
57559
|
export declare type KnowledgeDiscoveryAutoDefinitionResult = KnowledgeDiscoveryAutoDefinition | QueryError;
|
|
57560
|
+
export declare type KnowledgeDiscoveryBatchCreateAdminhubBookmarkInput = {
|
|
57561
|
+
bookmarks?: InputMaybe<Array<KnowledgeDiscoveryCreateAdminhubBookmarkInput>>;
|
|
57562
|
+
};
|
|
57563
|
+
export declare type KnowledgeDiscoveryBatchCreateAdminhubBookmarkPayload = Payload & {
|
|
57564
|
+
__typename?: 'KnowledgeDiscoveryBatchCreateAdminhubBookmarkPayload';
|
|
57565
|
+
adminhubBookmark?: Maybe<Array<Maybe<KnowledgeDiscoveryAdminhubBookmark>>>;
|
|
57566
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57567
|
+
success: Scalars['Boolean']['output'];
|
|
57568
|
+
};
|
|
57224
57569
|
export declare type KnowledgeDiscoveryBookmark = {
|
|
57225
57570
|
__typename?: 'KnowledgeDiscoveryBookmark';
|
|
57226
57571
|
id: Scalars['ID']['output'];
|
|
@@ -57398,6 +57743,7 @@ export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPh
|
|
|
57398
57743
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
57399
57744
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
57400
57745
|
createBookmark?: Maybe<KnowledgeDiscoveryCreateAdminhubBookmarkPayload>;
|
|
57746
|
+
createBookmarks?: Maybe<KnowledgeDiscoveryBatchCreateAdminhubBookmarkPayload>;
|
|
57401
57747
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
57402
57748
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
57403
57749
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
@@ -57407,6 +57753,9 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
57407
57753
|
export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
|
|
57408
57754
|
input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
|
|
57409
57755
|
};
|
|
57756
|
+
export declare type KnowledgeDiscoveryMutationApiCreateBookmarksArgs = {
|
|
57757
|
+
input: KnowledgeDiscoveryBatchCreateAdminhubBookmarkInput;
|
|
57758
|
+
};
|
|
57410
57759
|
export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
57411
57760
|
input: KnowledgeDiscoveryCreateDefinitionInput;
|
|
57412
57761
|
};
|
|
@@ -61321,6 +61670,11 @@ export declare type Mutation = {
|
|
|
61321
61670
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
61322
61671
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
61323
61672
|
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
61673
|
+
playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
|
|
61674
|
+
playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
|
|
61675
|
+
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
61676
|
+
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
61677
|
+
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
61324
61678
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
61325
61679
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
61326
61680
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
@@ -62120,6 +62474,21 @@ export declare type MutationPlanModeCardCreateArgs = {
|
|
|
62120
62474
|
export declare type MutationPlanModeCardMoveArgs = {
|
|
62121
62475
|
input?: InputMaybe<PlanModeCardMoveInput>;
|
|
62122
62476
|
};
|
|
62477
|
+
export declare type MutationPlaybook_CreateJiraPlaybookArgs = {
|
|
62478
|
+
input: CreateJiraPlaybookInput;
|
|
62479
|
+
};
|
|
62480
|
+
export declare type MutationPlaybook_CreateJiraPlaybookStepRunArgs = {
|
|
62481
|
+
input: CreateJiraPlaybookStepRunInput;
|
|
62482
|
+
};
|
|
62483
|
+
export declare type MutationPlaybook_DeleteJiraPlaybookArgs = {
|
|
62484
|
+
input: DeleteJiraPlaybookInput;
|
|
62485
|
+
};
|
|
62486
|
+
export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
62487
|
+
input: UpdateJiraPlaybookInput;
|
|
62488
|
+
};
|
|
62489
|
+
export declare type MutationPlaybook_UpdateJiraPlaybookStateArgs = {
|
|
62490
|
+
input: UpdateJiraPlaybookStateInput;
|
|
62491
|
+
};
|
|
62123
62492
|
export declare type MutationPolarisAddReactionArgs = {
|
|
62124
62493
|
input: PolarisAddReactionInput;
|
|
62125
62494
|
};
|
|
@@ -62514,6 +62883,14 @@ export declare type NlpSource = {
|
|
|
62514
62883
|
export declare type Node = {
|
|
62515
62884
|
id: Scalars['ID']['output'];
|
|
62516
62885
|
};
|
|
62886
|
+
export declare type NumberUserInput = {
|
|
62887
|
+
type: NumberUserInputType;
|
|
62888
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
62889
|
+
variableName: Scalars['String']['input'];
|
|
62890
|
+
};
|
|
62891
|
+
export declare enum NumberUserInputType {
|
|
62892
|
+
Number = "NUMBER"
|
|
62893
|
+
}
|
|
62517
62894
|
export declare type OAuthClientsAccountGrant = {
|
|
62518
62895
|
__typename?: 'OAuthClientsAccountGrant';
|
|
62519
62896
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -64292,6 +64669,15 @@ export declare type Query = {
|
|
|
64292
64669
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
64293
64670
|
partner?: Maybe<Partner>;
|
|
64294
64671
|
partnerEarlyAccess?: Maybe<PeapQueryApi>;
|
|
64672
|
+
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
64673
|
+
playbook_jiraPlaybookInstanceSteps?: Maybe<Array<Maybe<JiraPlaybookInstanceStep>>>;
|
|
64674
|
+
playbook_jiraPlaybookInstances?: Maybe<Array<Maybe<JiraPlaybookInstance>>>;
|
|
64675
|
+
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
64676
|
+
playbook_jiraPlaybookStepRuns?: Maybe<Array<Maybe<JiraPlaybookStepRun>>>;
|
|
64677
|
+
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
64678
|
+
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
64679
|
+
playbook_jiraPlaybooks?: Maybe<Array<Maybe<JiraPlaybook>>>;
|
|
64680
|
+
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
64295
64681
|
pokemon?: Maybe<PokemonQuery>;
|
|
64296
64682
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
64297
64683
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
@@ -64316,7 +64702,9 @@ export declare type Query = {
|
|
|
64316
64702
|
productListings: Array<ProductListingResult>;
|
|
64317
64703
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
64318
64704
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
64705
|
+
radar_position?: Maybe<RadarPosition>;
|
|
64319
64706
|
radar_positions?: Maybe<RadarPositionConnection>;
|
|
64707
|
+
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
64320
64708
|
radar_workspace: RadarWorkspace;
|
|
64321
64709
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
64322
64710
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
@@ -65659,6 +66047,48 @@ export declare type QueryNodeArgs = {
|
|
|
65659
66047
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
65660
66048
|
id: Scalars['ID']['input'];
|
|
65661
66049
|
};
|
|
66050
|
+
export declare type QueryPlaybook_JiraPlaybookArgs = {
|
|
66051
|
+
playbookAri: Scalars['ID']['input'];
|
|
66052
|
+
};
|
|
66053
|
+
export declare type QueryPlaybook_JiraPlaybookInstanceStepsArgs = {
|
|
66054
|
+
ids: Array<Scalars['ID']['input']>;
|
|
66055
|
+
};
|
|
66056
|
+
export declare type QueryPlaybook_JiraPlaybookInstancesArgs = {
|
|
66057
|
+
ids: Array<Scalars['ID']['input']>;
|
|
66058
|
+
};
|
|
66059
|
+
export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
66060
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66061
|
+
cloudId: Scalars['ID']['input'];
|
|
66062
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66063
|
+
issueId: Scalars['String']['input'];
|
|
66064
|
+
projectKey: Scalars['String']['input'];
|
|
66065
|
+
};
|
|
66066
|
+
export declare type QueryPlaybook_JiraPlaybookStepRunsArgs = {
|
|
66067
|
+
ids: Array<Scalars['ID']['input']>;
|
|
66068
|
+
};
|
|
66069
|
+
export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
|
|
66070
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66071
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66072
|
+
playbookInstanceAri: Scalars['ID']['input'];
|
|
66073
|
+
};
|
|
66074
|
+
export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
66075
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66076
|
+
cloudId: Scalars['ID']['input'];
|
|
66077
|
+
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
66078
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66079
|
+
projectKey: Scalars['String']['input'];
|
|
66080
|
+
};
|
|
66081
|
+
export declare type QueryPlaybook_JiraPlaybooksArgs = {
|
|
66082
|
+
ids: Array<Scalars['ID']['input']>;
|
|
66083
|
+
};
|
|
66084
|
+
export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
66085
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66086
|
+
cloudId: Scalars['ID']['input'];
|
|
66087
|
+
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
66088
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66089
|
+
projectKey: Scalars['String']['input'];
|
|
66090
|
+
sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
|
|
66091
|
+
};
|
|
65662
66092
|
export declare type QueryPolarisCollabTokenArgs = {
|
|
65663
66093
|
viewID: Scalars['ID']['input'];
|
|
65664
66094
|
};
|
|
@@ -65742,6 +66172,9 @@ export declare type QueryRadar_GroupMetricsArgs = {
|
|
|
65742
66172
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
65743
66173
|
uniqueFieldIdIsIn: Array<Scalars['ID']['input']>;
|
|
65744
66174
|
};
|
|
66175
|
+
export declare type QueryRadar_PositionArgs = {
|
|
66176
|
+
id: Scalars['ID']['input'];
|
|
66177
|
+
};
|
|
65745
66178
|
export declare type QueryRadar_PositionsArgs = {
|
|
65746
66179
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65747
66180
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65751,6 +66184,9 @@ export declare type QueryRadar_PositionsArgs = {
|
|
|
65751
66184
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65752
66185
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
65753
66186
|
};
|
|
66187
|
+
export declare type QueryRadar_PositionsByArisArgs = {
|
|
66188
|
+
ids: Array<Scalars['ID']['input']>;
|
|
66189
|
+
};
|
|
65754
66190
|
export declare type QueryRadar_WorkspaceArgs = {
|
|
65755
66191
|
cloudId: Scalars['ID']['input'];
|
|
65756
66192
|
};
|
|
@@ -65840,6 +66276,10 @@ export declare type QueryErrorExtension = {
|
|
|
65840
66276
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
65841
66277
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
65842
66278
|
};
|
|
66279
|
+
export declare type QueryPayload = {
|
|
66280
|
+
errors?: Maybe<Array<QueryError>>;
|
|
66281
|
+
success: Scalars['Boolean']['output'];
|
|
66282
|
+
};
|
|
65843
66283
|
export declare type QuerySuggestionApi = {
|
|
65844
66284
|
__typename?: 'QuerySuggestionAPI';
|
|
65845
66285
|
suggest?: Maybe<QuerySuggestionItemConnection>;
|
|
@@ -65909,8 +66349,8 @@ export declare type RadarEntity = {
|
|
|
65909
66349
|
};
|
|
65910
66350
|
export declare enum RadarEntityType {
|
|
65911
66351
|
FocusArea = "focusArea",
|
|
65912
|
-
|
|
65913
|
-
|
|
66352
|
+
Position = "position",
|
|
66353
|
+
Worker = "worker"
|
|
65914
66354
|
}
|
|
65915
66355
|
export declare type RadarFieldDefinition = Node & {
|
|
65916
66356
|
__typename?: 'RadarFieldDefinition';
|
|
@@ -69973,6 +70413,16 @@ export declare type Storage = {
|
|
|
69973
70413
|
hosted?: Maybe<HostedStorage>;
|
|
69974
70414
|
remotes?: Maybe<Array<Remote>>;
|
|
69975
70415
|
};
|
|
70416
|
+
export declare type StringUserInput = {
|
|
70417
|
+
type: StringUserInputType;
|
|
70418
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
70419
|
+
variableName: Scalars['String']['input'];
|
|
70420
|
+
};
|
|
70421
|
+
export declare enum StringUserInputType {
|
|
70422
|
+
Dropdown = "DROPDOWN",
|
|
70423
|
+
Paragraph = "PARAGRAPH",
|
|
70424
|
+
Text = "TEXT"
|
|
70425
|
+
}
|
|
69976
70426
|
export declare type Subscription = {
|
|
69977
70427
|
__typename?: 'Subscription';
|
|
69978
70428
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
@@ -74318,6 +74768,37 @@ export declare type UpdateDeveloperLogAccessPayload = Payload & {
|
|
|
74318
74768
|
errors?: Maybe<Array<MutationError>>;
|
|
74319
74769
|
success: Scalars['Boolean']['output'];
|
|
74320
74770
|
};
|
|
74771
|
+
export declare type UpdateJiraPlaybookInput = {
|
|
74772
|
+
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
74773
|
+
id: Scalars['ID']['input'];
|
|
74774
|
+
name: Scalars['String']['input'];
|
|
74775
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
74776
|
+
scopeType: JiraPlaybookScopeType;
|
|
74777
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
74778
|
+
steps: Array<UpdateJiraPlaybookStepInput>;
|
|
74779
|
+
};
|
|
74780
|
+
export declare type UpdateJiraPlaybookPayload = Payload & {
|
|
74781
|
+
__typename?: 'UpdateJiraPlaybookPayload';
|
|
74782
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74783
|
+
playbook?: Maybe<JiraPlaybook>;
|
|
74784
|
+
success: Scalars['Boolean']['output'];
|
|
74785
|
+
};
|
|
74786
|
+
export declare type UpdateJiraPlaybookStateInput = {
|
|
74787
|
+
id: Scalars['ID']['input'];
|
|
74788
|
+
state: JiraPlaybookStateField;
|
|
74789
|
+
};
|
|
74790
|
+
export declare type UpdateJiraPlaybookStatePayload = Payload & {
|
|
74791
|
+
__typename?: 'UpdateJiraPlaybookStatePayload';
|
|
74792
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74793
|
+
playbook?: Maybe<JiraPlaybook>;
|
|
74794
|
+
success: Scalars['Boolean']['output'];
|
|
74795
|
+
};
|
|
74796
|
+
export declare type UpdateJiraPlaybookStepInput = {
|
|
74797
|
+
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
74798
|
+
name: Scalars['String']['input'];
|
|
74799
|
+
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
74800
|
+
type: JiraPlaybookStepType;
|
|
74801
|
+
};
|
|
74321
74802
|
export declare type UpdatePolarisCommentInput = {
|
|
74322
74803
|
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
74323
74804
|
delete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74593,6 +75074,11 @@ export declare type UserGrantPageInfo = {
|
|
|
74593
75074
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
74594
75075
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
74595
75076
|
};
|
|
75077
|
+
export declare type UserInput = {
|
|
75078
|
+
booleanUserInput?: InputMaybe<BooleanUserInput>;
|
|
75079
|
+
numberUserInput?: InputMaybe<NumberUserInput>;
|
|
75080
|
+
stringUserInput?: InputMaybe<StringUserInput>;
|
|
75081
|
+
};
|
|
74596
75082
|
export declare enum UserInstallationRuleValue {
|
|
74597
75083
|
Allow = "allow",
|
|
74598
75084
|
Deny = "deny"
|