@forge/cli-shared 0.0.0-experimental-416047f → 0.0.0-experimental-4d1c111
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 +132 -2
- package/out/graphql/gateway.d.ts +1 -1
- package/out/graphql/gateway.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +1118 -130
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +312 -8
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/service/feature-flag-service.d.ts +35 -0
- package/out/service/feature-flag-service.d.ts.map +1 -0
- package/out/service/feature-flag-service.js +90 -0
- package/out/service/index.d.ts +1 -0
- package/out/service/index.d.ts.map +1 -1
- package/out/service/index.js +1 -0
- package/out/shared/error-handling.d.ts +3 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +12 -1
- package/out/ui/logger.d.ts +1 -0
- package/out/ui/logger.d.ts.map +1 -1
- package/out/ui/logger.js +17 -1
- package/package.json +6 -4
|
@@ -181,7 +181,7 @@ export declare type ActivityWorkedOnArgs = {
|
|
|
181
181
|
};
|
|
182
182
|
export declare type ActivityConnection = {
|
|
183
183
|
__typename?: 'ActivityConnection';
|
|
184
|
-
edges
|
|
184
|
+
edges: Array<ActivityItemEdge>;
|
|
185
185
|
pageInfo: ActivityPageInfo;
|
|
186
186
|
};
|
|
187
187
|
export declare type ActivityContributor = {
|
|
@@ -233,7 +233,7 @@ export declare type ActivityFilterArgs = {
|
|
|
233
233
|
export declare type ActivityItemEdge = {
|
|
234
234
|
__typename?: 'ActivityItemEdge';
|
|
235
235
|
cursor: Scalars['String'];
|
|
236
|
-
node
|
|
236
|
+
node: ActivityNode;
|
|
237
237
|
};
|
|
238
238
|
export declare type ActivityNode = Node & {
|
|
239
239
|
__typename?: 'ActivityNode';
|
|
@@ -432,6 +432,7 @@ export declare type AppEnvironment = {
|
|
|
432
432
|
type: AppEnvironmentType;
|
|
433
433
|
createdBy?: Maybe<User>;
|
|
434
434
|
createdAt: Scalars['String'];
|
|
435
|
+
scopes?: Maybe<Array<Scalars['String']>>;
|
|
435
436
|
versions?: Maybe<AppEnvironmentVersionConnection>;
|
|
436
437
|
oauthClient: AtlassianOAuthClient;
|
|
437
438
|
variables?: Maybe<Array<AppEnvironmentVariable>>;
|
|
@@ -1138,11 +1139,15 @@ export declare enum BitbucketPermission {
|
|
|
1138
1139
|
export declare type BitbucketQuery = {
|
|
1139
1140
|
__typename?: 'BitbucketQuery';
|
|
1140
1141
|
bitbucketRepository?: Maybe<BitbucketRepository>;
|
|
1142
|
+
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
1141
1143
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
1142
1144
|
};
|
|
1143
1145
|
export declare type BitbucketQueryBitbucketRepositoryArgs = {
|
|
1144
1146
|
id: Scalars['ID'];
|
|
1145
1147
|
};
|
|
1148
|
+
export declare type BitbucketQueryBitbucketRepositoriesArgs = {
|
|
1149
|
+
ids: Array<Scalars['ID']>;
|
|
1150
|
+
};
|
|
1146
1151
|
export declare type BitbucketQueryBitbucketWorkspaceArgs = {
|
|
1147
1152
|
id: Scalars['ID'];
|
|
1148
1153
|
};
|
|
@@ -1682,6 +1687,8 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1682
1687
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
1683
1688
|
createComponentExternalAlias?: Maybe<CreateCompassComponentExternalAliasPayload>;
|
|
1684
1689
|
deleteComponentExternalAlias?: Maybe<DeleteCompassComponentExternalAliasPayload>;
|
|
1690
|
+
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
1691
|
+
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
1685
1692
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
1686
1693
|
createRelationship?: Maybe<CreateCompassRelationshipPayload>;
|
|
1687
1694
|
deleteRelationship?: Maybe<DeleteCompassRelationshipPayload>;
|
|
@@ -1701,6 +1708,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1701
1708
|
acknowledgeAnnouncement?: Maybe<CompassAcknowledgeAnnouncementPayload>;
|
|
1702
1709
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
1703
1710
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
1711
|
+
createDeploymentEvent?: Maybe<CreateDeploymentEventsPayload>;
|
|
1704
1712
|
createCompassEvent?: Maybe<CompassCreateEventsPayload>;
|
|
1705
1713
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
1706
1714
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
@@ -1755,6 +1763,12 @@ export declare type CompassCatalogMutationApiCreateComponentExternalAliasArgs =
|
|
|
1755
1763
|
export declare type CompassCatalogMutationApiDeleteComponentExternalAliasArgs = {
|
|
1756
1764
|
input: DeleteCompassComponentExternalAliasInput;
|
|
1757
1765
|
};
|
|
1766
|
+
export declare type CompassCatalogMutationApiCreateComponentSubscriptionArgs = {
|
|
1767
|
+
input: CompassCreateComponentSubscriptionInput;
|
|
1768
|
+
};
|
|
1769
|
+
export declare type CompassCatalogMutationApiDeleteComponentSubscriptionArgs = {
|
|
1770
|
+
input: CompassDeleteComponentSubscriptionInput;
|
|
1771
|
+
};
|
|
1758
1772
|
export declare type CompassCatalogMutationApiUnlinkExternalSourceArgs = {
|
|
1759
1773
|
input: UnlinkExternalSourceInput;
|
|
1760
1774
|
};
|
|
@@ -1819,6 +1833,9 @@ export declare type CompassCatalogMutationApiCreateEventSourceArgs = {
|
|
|
1819
1833
|
export declare type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
1820
1834
|
input: DeleteEventSourceInput;
|
|
1821
1835
|
};
|
|
1836
|
+
export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
|
|
1837
|
+
input: CreateDeploymentEventInput;
|
|
1838
|
+
};
|
|
1822
1839
|
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
1823
1840
|
input: CompassCreateEventInput;
|
|
1824
1841
|
};
|
|
@@ -1972,6 +1989,7 @@ export declare type CompassComponent = Node & {
|
|
|
1972
1989
|
eventSources?: Maybe<Array<EventSource>>;
|
|
1973
1990
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1974
1991
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
1992
|
+
viewerSubscription?: Maybe<CompassViewerSubscription>;
|
|
1975
1993
|
customFields?: Maybe<Array<CompassCustomField>>;
|
|
1976
1994
|
};
|
|
1977
1995
|
export declare type CompassComponentRelationshipsArgs = {
|
|
@@ -2049,6 +2067,15 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
2049
2067
|
externalEventSourceId: Scalars['ID'];
|
|
2050
2068
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
2051
2069
|
};
|
|
2070
|
+
export declare type CompassCreateComponentSubscriptionInput = {
|
|
2071
|
+
componentId: Scalars['ID'];
|
|
2072
|
+
};
|
|
2073
|
+
export declare type CompassCreateComponentSubscriptionPayload = Payload & {
|
|
2074
|
+
__typename?: 'CompassCreateComponentSubscriptionPayload';
|
|
2075
|
+
component?: Maybe<CompassComponent>;
|
|
2076
|
+
success: Scalars['Boolean'];
|
|
2077
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2078
|
+
};
|
|
2052
2079
|
export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
2053
2080
|
cloudId: Scalars['ID'];
|
|
2054
2081
|
name: Scalars['String'];
|
|
@@ -2124,6 +2151,21 @@ export declare type CompassCreateFlagEventPropertiesInput = {
|
|
|
2124
2151
|
id: Scalars['ID'];
|
|
2125
2152
|
status?: Maybe<Scalars['String']>;
|
|
2126
2153
|
};
|
|
2154
|
+
export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
2155
|
+
weight: Scalars['Int'];
|
|
2156
|
+
customFieldDefinitionId: Scalars['ID'];
|
|
2157
|
+
comparator: CompassCriteriaBooleanComparatorOptions;
|
|
2158
|
+
};
|
|
2159
|
+
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
2160
|
+
weight: Scalars['Int'];
|
|
2161
|
+
customFieldDefinitionId: Scalars['ID'];
|
|
2162
|
+
comparatorValue: Scalars['Float'];
|
|
2163
|
+
comparator: CompassCriteriaNumberComparatorOptions;
|
|
2164
|
+
};
|
|
2165
|
+
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
2166
|
+
weight: Scalars['Int'];
|
|
2167
|
+
customFieldDefinitionId: Scalars['ID'];
|
|
2168
|
+
};
|
|
2127
2169
|
export declare type CompassCreateIncidentEventInput = {
|
|
2128
2170
|
displayName: Scalars['String'];
|
|
2129
2171
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2181,6 +2223,9 @@ export declare type CompassCreateTeamCheckinInput = {
|
|
|
2181
2223
|
response1?: Maybe<Scalars['String']>;
|
|
2182
2224
|
response2?: Maybe<Scalars['String']>;
|
|
2183
2225
|
response3?: Maybe<Scalars['String']>;
|
|
2226
|
+
response1RichText?: Maybe<CompassCreateTeamCheckinResponseRichText>;
|
|
2227
|
+
response2RichText?: Maybe<CompassCreateTeamCheckinResponseRichText>;
|
|
2228
|
+
response3RichText?: Maybe<CompassCreateTeamCheckinResponseRichText>;
|
|
2184
2229
|
actions?: Maybe<Array<CompassCreateTeamCheckinActionInput>>;
|
|
2185
2230
|
};
|
|
2186
2231
|
export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
@@ -2189,6 +2234,13 @@ export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
|
2189
2234
|
errors?: Maybe<Array<MutationError>>;
|
|
2190
2235
|
createdTeamCheckin?: Maybe<CompassTeamCheckin>;
|
|
2191
2236
|
};
|
|
2237
|
+
export declare type CompassCreateTeamCheckinResponseRichText = {
|
|
2238
|
+
adf?: Maybe<Scalars['String']>;
|
|
2239
|
+
};
|
|
2240
|
+
export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
2241
|
+
IsTrue = "IS_TRUE",
|
|
2242
|
+
IsFalse = "IS_FALSE"
|
|
2243
|
+
}
|
|
2192
2244
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
2193
2245
|
Equals = "EQUALS",
|
|
2194
2246
|
GreaterThan = "GREATER_THAN",
|
|
@@ -2308,6 +2360,14 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
2308
2360
|
success: Scalars['Boolean'];
|
|
2309
2361
|
errors?: Maybe<Array<MutationError>>;
|
|
2310
2362
|
};
|
|
2363
|
+
export declare type CompassDeleteComponentSubscriptionInput = {
|
|
2364
|
+
componentId: Scalars['ID'];
|
|
2365
|
+
};
|
|
2366
|
+
export declare type CompassDeleteComponentSubscriptionPayload = Payload & {
|
|
2367
|
+
__typename?: 'CompassDeleteComponentSubscriptionPayload';
|
|
2368
|
+
success: Scalars['Boolean'];
|
|
2369
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2370
|
+
};
|
|
2311
2371
|
export declare type CompassDeleteCustomFieldDefinitionInput = {
|
|
2312
2372
|
id: Scalars['ID'];
|
|
2313
2373
|
};
|
|
@@ -2353,9 +2413,13 @@ export declare type CompassDeploymentEvent = CompassEvent & {
|
|
|
2353
2413
|
eventType: CompassEventType;
|
|
2354
2414
|
lastUpdated: Scalars['DateTime'];
|
|
2355
2415
|
displayName: Scalars['String'];
|
|
2416
|
+
deploymentSequenceNumber?: Maybe<Scalars['Long']>;
|
|
2356
2417
|
updateSequenceNumber: Scalars['Long'];
|
|
2357
2418
|
url?: Maybe<Scalars['URL']>;
|
|
2358
2419
|
description?: Maybe<Scalars['String']>;
|
|
2420
|
+
state?: Maybe<CompassDeploymentEventState>;
|
|
2421
|
+
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
2422
|
+
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2359
2423
|
deploymentProperties: CompassDeploymentEventProperties;
|
|
2360
2424
|
};
|
|
2361
2425
|
export declare type CompassDeploymentEventEnvironment = {
|
|
@@ -2520,6 +2584,39 @@ export declare type CompassFlagEventProperties = {
|
|
|
2520
2584
|
id: Scalars['ID'];
|
|
2521
2585
|
status?: Maybe<Scalars['String']>;
|
|
2522
2586
|
};
|
|
2587
|
+
export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScorecardCriteria & {
|
|
2588
|
+
__typename?: 'CompassHasCustomBooleanFieldScorecardCriteria';
|
|
2589
|
+
id: Scalars['ID'];
|
|
2590
|
+
weight: Scalars['Int'];
|
|
2591
|
+
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2592
|
+
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2593
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2594
|
+
};
|
|
2595
|
+
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2596
|
+
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2597
|
+
};
|
|
2598
|
+
export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassScorecardCriteria & {
|
|
2599
|
+
__typename?: 'CompassHasCustomNumberFieldScorecardCriteria';
|
|
2600
|
+
id: Scalars['ID'];
|
|
2601
|
+
weight: Scalars['Int'];
|
|
2602
|
+
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
2603
|
+
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2604
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
2605
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2606
|
+
};
|
|
2607
|
+
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2608
|
+
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2609
|
+
};
|
|
2610
|
+
export declare type CompassHasCustomTextFieldScorecardCriteria = CompassScorecardCriteria & {
|
|
2611
|
+
__typename?: 'CompassHasCustomTextFieldScorecardCriteria';
|
|
2612
|
+
id: Scalars['ID'];
|
|
2613
|
+
weight: Scalars['Int'];
|
|
2614
|
+
customFieldDefinition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
2615
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2616
|
+
};
|
|
2617
|
+
export declare type CompassHasCustomTextFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2618
|
+
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2619
|
+
};
|
|
2523
2620
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
2524
2621
|
__typename?: 'CompassHasDescriptionScorecardCriteria';
|
|
2525
2622
|
id: Scalars['ID'];
|
|
@@ -2555,9 +2652,9 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
2555
2652
|
weight: Scalars['Int'];
|
|
2556
2653
|
comparatorValue: Scalars['Float'];
|
|
2557
2654
|
metricDefinitionId: Scalars['ID'];
|
|
2655
|
+
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
2558
2656
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
2559
2657
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2560
|
-
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
2561
2658
|
};
|
|
2562
2659
|
export declare type CompassHasMetricValueScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2563
2660
|
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
@@ -2705,6 +2802,7 @@ export declare type CompassMetricSource = {
|
|
|
2705
2802
|
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
2706
2803
|
externalMetricSourceId?: Maybe<Scalars['ID']>;
|
|
2707
2804
|
url?: Maybe<Scalars['String']>;
|
|
2805
|
+
forgeAppId?: Maybe<Scalars['ID']>;
|
|
2708
2806
|
values?: Maybe<CompassMetricSourceValuesQueryResult>;
|
|
2709
2807
|
component?: Maybe<CompassComponent>;
|
|
2710
2808
|
};
|
|
@@ -2806,6 +2904,10 @@ export declare type CompassRelationshipQueryFilters = {
|
|
|
2806
2904
|
export declare enum CompassRelationshipType {
|
|
2807
2905
|
DependsOn = "DEPENDS_ON"
|
|
2808
2906
|
}
|
|
2907
|
+
export declare type CompassRichTextObject = {
|
|
2908
|
+
__typename?: 'CompassRichTextObject';
|
|
2909
|
+
adf?: Maybe<Scalars['String']>;
|
|
2910
|
+
};
|
|
2809
2911
|
export declare type CompassScorecard = Node & {
|
|
2810
2912
|
__typename?: 'CompassScorecard';
|
|
2811
2913
|
id: Scalars['ID'];
|
|
@@ -2899,6 +3001,7 @@ export declare type CompassScorecardsQueryResult = CompassScorecardConnection |
|
|
|
2899
3001
|
export declare type CompassSearchComponentConnection = {
|
|
2900
3002
|
__typename?: 'CompassSearchComponentConnection';
|
|
2901
3003
|
edges?: Maybe<Array<CompassSearchComponentEdge>>;
|
|
3004
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
2902
3005
|
nodes?: Maybe<Array<CompassSearchComponentResult>>;
|
|
2903
3006
|
pageInfo: PageInfo;
|
|
2904
3007
|
};
|
|
@@ -2969,6 +3072,9 @@ export declare type CompassTeamCheckin = {
|
|
|
2969
3072
|
response1?: Maybe<Scalars['String']>;
|
|
2970
3073
|
response2?: Maybe<Scalars['String']>;
|
|
2971
3074
|
response3?: Maybe<Scalars['String']>;
|
|
3075
|
+
response1RichText?: Maybe<CompassRichTextObject>;
|
|
3076
|
+
response2RichText?: Maybe<CompassRichTextObject>;
|
|
3077
|
+
response3RichText?: Maybe<CompassRichTextObject>;
|
|
2972
3078
|
changeMetadata: CompassChangeMetadata;
|
|
2973
3079
|
actions?: Maybe<Array<CompassTeamCheckinAction>>;
|
|
2974
3080
|
};
|
|
@@ -3033,6 +3139,24 @@ export declare type CompassUpdateCustomTextFieldDefinitionInput = {
|
|
|
3033
3139
|
description?: Maybe<Scalars['String']>;
|
|
3034
3140
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3035
3141
|
};
|
|
3142
|
+
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
3143
|
+
id: Scalars['ID'];
|
|
3144
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3145
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3146
|
+
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3147
|
+
};
|
|
3148
|
+
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3149
|
+
id: Scalars['ID'];
|
|
3150
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3151
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3152
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
3153
|
+
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3154
|
+
};
|
|
3155
|
+
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
3156
|
+
id: Scalars['ID'];
|
|
3157
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3158
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3159
|
+
};
|
|
3036
3160
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
3037
3161
|
id: Scalars['ID'];
|
|
3038
3162
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3057,6 +3181,9 @@ export declare type CompassUpdateTeamCheckinInput = {
|
|
|
3057
3181
|
response1?: Maybe<Scalars['String']>;
|
|
3058
3182
|
response2?: Maybe<Scalars['String']>;
|
|
3059
3183
|
response3?: Maybe<Scalars['String']>;
|
|
3184
|
+
response1RichText?: Maybe<CompassUpdateTeamCheckinResponseRichText>;
|
|
3185
|
+
response2RichText?: Maybe<CompassUpdateTeamCheckinResponseRichText>;
|
|
3186
|
+
response3RichText?: Maybe<CompassUpdateTeamCheckinResponseRichText>;
|
|
3060
3187
|
actions?: Maybe<Array<CompassTeamCheckinActionInput>>;
|
|
3061
3188
|
};
|
|
3062
3189
|
export declare type CompassUpdateTeamCheckinPayload = Payload & {
|
|
@@ -3065,21 +3192,36 @@ export declare type CompassUpdateTeamCheckinPayload = Payload & {
|
|
|
3065
3192
|
errors?: Maybe<Array<MutationError>>;
|
|
3066
3193
|
updatedTeamCheckin?: Maybe<CompassTeamCheckin>;
|
|
3067
3194
|
};
|
|
3195
|
+
export declare type CompassUpdateTeamCheckinResponseRichText = {
|
|
3196
|
+
adf?: Maybe<Scalars['String']>;
|
|
3197
|
+
};
|
|
3198
|
+
export declare type CompassViewerSubscription = {
|
|
3199
|
+
__typename?: 'CompassViewerSubscription';
|
|
3200
|
+
subscribed: Scalars['Boolean'];
|
|
3201
|
+
};
|
|
3068
3202
|
export declare type CompatibleAtlassianCloudProduct = CompatibleAtlassianProduct & {
|
|
3069
3203
|
__typename?: 'CompatibleAtlassianCloudProduct';
|
|
3204
|
+
id: Scalars['ID'];
|
|
3205
|
+
name: Scalars['String'];
|
|
3070
3206
|
atlassianProduct?: Maybe<MarketplaceSupportedAtlassianProduct>;
|
|
3071
3207
|
};
|
|
3072
3208
|
export declare type CompatibleAtlassianDataCenterProduct = CompatibleAtlassianProduct & {
|
|
3073
3209
|
__typename?: 'CompatibleAtlassianDataCenterProduct';
|
|
3210
|
+
id: Scalars['ID'];
|
|
3211
|
+
name: Scalars['String'];
|
|
3074
3212
|
atlassianProduct?: Maybe<MarketplaceSupportedAtlassianProduct>;
|
|
3075
3213
|
minimumVersion: Scalars['String'];
|
|
3076
3214
|
maximumVersion: Scalars['String'];
|
|
3077
3215
|
};
|
|
3078
3216
|
export declare type CompatibleAtlassianProduct = {
|
|
3217
|
+
id: Scalars['ID'];
|
|
3218
|
+
name: Scalars['String'];
|
|
3079
3219
|
atlassianProduct?: Maybe<MarketplaceSupportedAtlassianProduct>;
|
|
3080
3220
|
};
|
|
3081
3221
|
export declare type CompatibleAtlassianServerProduct = CompatibleAtlassianProduct & {
|
|
3082
3222
|
__typename?: 'CompatibleAtlassianServerProduct';
|
|
3223
|
+
id: Scalars['ID'];
|
|
3224
|
+
name: Scalars['String'];
|
|
3083
3225
|
atlassianProduct?: Maybe<MarketplaceSupportedAtlassianProduct>;
|
|
3084
3226
|
minimumVersion: Scalars['String'];
|
|
3085
3227
|
maximumVersion: Scalars['String'];
|
|
@@ -3128,20 +3270,32 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
3128
3270
|
};
|
|
3129
3271
|
export declare type ConfluenceBlogPost = {
|
|
3130
3272
|
__typename?: 'ConfluenceBlogPost';
|
|
3273
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3131
3274
|
blogPostId: Scalars['ID'];
|
|
3132
3275
|
id: Scalars['ID'];
|
|
3276
|
+
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
3133
3277
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
3134
3278
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
3279
|
+
properties?: Maybe<Array<Maybe<ConfluenceBlogPostProperty>>>;
|
|
3135
3280
|
space?: Maybe<ConfluenceSpace>;
|
|
3136
3281
|
status?: Maybe<ConfluenceBlogPostStatus>;
|
|
3137
3282
|
title?: Maybe<Scalars['String']>;
|
|
3138
3283
|
type?: Maybe<ConfluenceContentType>;
|
|
3284
|
+
viewer?: Maybe<ConfluenceBlogPostViewerSummary>;
|
|
3285
|
+
};
|
|
3286
|
+
export declare type ConfluenceBlogPostPropertiesArgs = {
|
|
3287
|
+
keys: Array<Maybe<Scalars['String']>>;
|
|
3139
3288
|
};
|
|
3140
3289
|
export declare type ConfluenceBlogPostLinks = {
|
|
3141
3290
|
__typename?: 'ConfluenceBlogPostLinks';
|
|
3142
3291
|
base?: Maybe<Scalars['String']>;
|
|
3143
3292
|
webUi?: Maybe<Scalars['String']>;
|
|
3144
3293
|
};
|
|
3294
|
+
export declare type ConfluenceBlogPostProperty = {
|
|
3295
|
+
__typename?: 'ConfluenceBlogPostProperty';
|
|
3296
|
+
key: Scalars['String'];
|
|
3297
|
+
value: Scalars['String'];
|
|
3298
|
+
};
|
|
3145
3299
|
export declare enum ConfluenceBlogPostStatus {
|
|
3146
3300
|
Archived = "ARCHIVED",
|
|
3147
3301
|
Current = "CURRENT",
|
|
@@ -3150,6 +3304,21 @@ export declare enum ConfluenceBlogPostStatus {
|
|
|
3150
3304
|
Historical = "HISTORICAL",
|
|
3151
3305
|
Trashed = "TRASHED"
|
|
3152
3306
|
}
|
|
3307
|
+
export declare type ConfluenceBlogPostVersion = {
|
|
3308
|
+
__typename?: 'ConfluenceBlogPostVersion';
|
|
3309
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3310
|
+
createdAt?: Maybe<Scalars['String']>;
|
|
3311
|
+
number?: Maybe<Scalars['Int']>;
|
|
3312
|
+
};
|
|
3313
|
+
export declare type ConfluenceBlogPostViewerSummary = {
|
|
3314
|
+
__typename?: 'ConfluenceBlogPostViewerSummary';
|
|
3315
|
+
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3316
|
+
lastSeenAt?: Maybe<Scalars['String']>;
|
|
3317
|
+
};
|
|
3318
|
+
export declare enum ConfluenceCollaborativeEditingService {
|
|
3319
|
+
Ncs = "NCS",
|
|
3320
|
+
Synchrony = "SYNCHRONY"
|
|
3321
|
+
}
|
|
3153
3322
|
export declare type ConfluenceComment = {
|
|
3154
3323
|
__typename?: 'ConfluenceComment';
|
|
3155
3324
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -3186,6 +3355,7 @@ export declare type ConfluenceContentBodyInput = {
|
|
|
3186
3355
|
};
|
|
3187
3356
|
export declare type ConfluenceContentMetadata = {
|
|
3188
3357
|
__typename?: 'ConfluenceContentMetadata';
|
|
3358
|
+
collaborativeEditingService?: Maybe<ConfluenceCollaborativeEditingService>;
|
|
3189
3359
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
3190
3360
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
3191
3361
|
};
|
|
@@ -3213,6 +3383,16 @@ export declare enum ConfluenceContentType {
|
|
|
3213
3383
|
Comment = "COMMENT",
|
|
3214
3384
|
Page = "PAGE"
|
|
3215
3385
|
}
|
|
3386
|
+
export declare type ConfluenceContribution = {
|
|
3387
|
+
__typename?: 'ConfluenceContribution';
|
|
3388
|
+
status: ConfluenceContributionStatus;
|
|
3389
|
+
};
|
|
3390
|
+
export declare enum ConfluenceContributionStatus {
|
|
3391
|
+
Current = "CURRENT",
|
|
3392
|
+
Draft = "DRAFT",
|
|
3393
|
+
Unknown = "UNKNOWN",
|
|
3394
|
+
Unpublished = "UNPUBLISHED"
|
|
3395
|
+
}
|
|
3216
3396
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
3217
3397
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3218
3398
|
spaceId: Scalars['ID'];
|
|
@@ -3221,7 +3401,22 @@ export declare type ConfluenceCreateBlogPostInput = {
|
|
|
3221
3401
|
};
|
|
3222
3402
|
export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
3223
3403
|
__typename?: 'ConfluenceCreateBlogPostPayload';
|
|
3224
|
-
|
|
3404
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3405
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3406
|
+
success: Scalars['Boolean'];
|
|
3407
|
+
};
|
|
3408
|
+
export declare type ConfluenceCreateCommentOnPageInput = {
|
|
3409
|
+
body: ConfluenceContentBodyInput;
|
|
3410
|
+
pageId: Scalars['ID'];
|
|
3411
|
+
pageStatus: ConfluenceCreateCommentOnPagePageStatus;
|
|
3412
|
+
};
|
|
3413
|
+
export declare enum ConfluenceCreateCommentOnPagePageStatus {
|
|
3414
|
+
Current = "CURRENT",
|
|
3415
|
+
Draft = "DRAFT"
|
|
3416
|
+
}
|
|
3417
|
+
export declare type ConfluenceCreateCommentPayload = {
|
|
3418
|
+
__typename?: 'ConfluenceCreateCommentPayload';
|
|
3419
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3225
3420
|
errors?: Maybe<Array<MutationError>>;
|
|
3226
3421
|
success: Scalars['Boolean'];
|
|
3227
3422
|
};
|
|
@@ -3233,7 +3428,7 @@ export declare type ConfluenceCreatePageInput = {
|
|
|
3233
3428
|
};
|
|
3234
3429
|
export declare type ConfluenceCreatePagePayload = Payload & {
|
|
3235
3430
|
__typename?: 'ConfluenceCreatePagePayload';
|
|
3236
|
-
|
|
3431
|
+
page?: Maybe<ConfluencePage>;
|
|
3237
3432
|
errors?: Maybe<Array<MutationError>>;
|
|
3238
3433
|
success: Scalars['Boolean'];
|
|
3239
3434
|
};
|
|
@@ -3244,7 +3439,7 @@ export declare type ConfluenceCreateSpaceInput = {
|
|
|
3244
3439
|
};
|
|
3245
3440
|
export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
3246
3441
|
__typename?: 'ConfluenceCreateSpacePayload';
|
|
3247
|
-
|
|
3442
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3248
3443
|
errors?: Maybe<Array<MutationError>>;
|
|
3249
3444
|
success: Scalars['Boolean'];
|
|
3250
3445
|
};
|
|
@@ -3255,7 +3450,15 @@ export declare type ConfluenceCreateUserPropertyInput = {
|
|
|
3255
3450
|
};
|
|
3256
3451
|
export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
3257
3452
|
__typename?: 'ConfluenceCreateUserPropertyPayload';
|
|
3258
|
-
|
|
3453
|
+
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
3454
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3455
|
+
success: Scalars['Boolean'];
|
|
3456
|
+
};
|
|
3457
|
+
export declare type ConfluenceDeleteCommentInput = {
|
|
3458
|
+
id: Scalars['ID'];
|
|
3459
|
+
};
|
|
3460
|
+
export declare type ConfluenceDeleteCommentPayload = {
|
|
3461
|
+
__typename?: 'ConfluenceDeleteCommentPayload';
|
|
3259
3462
|
errors?: Maybe<Array<MutationError>>;
|
|
3260
3463
|
success: Scalars['Boolean'];
|
|
3261
3464
|
};
|
|
@@ -3311,85 +3514,101 @@ export declare type ConfluenceLabel = {
|
|
|
3311
3514
|
};
|
|
3312
3515
|
export declare type ConfluenceMutationApi = {
|
|
3313
3516
|
__typename?: 'ConfluenceMutationApi';
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3517
|
+
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3518
|
+
createCommentOnPage?: Maybe<ConfluenceCreateCommentPayload>;
|
|
3519
|
+
createPage?: Maybe<ConfluenceCreatePagePayload>;
|
|
3520
|
+
createSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
3521
|
+
deleteComment?: Maybe<ConfluenceDeleteCommentPayload>;
|
|
3522
|
+
deleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
3523
|
+
deleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
3524
|
+
publishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
3525
|
+
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3526
|
+
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3527
|
+
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3528
|
+
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
3529
|
+
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3530
|
+
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3531
|
+
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
3532
|
+
updateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
3533
|
+
updateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
3534
|
+
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
3535
|
+
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
3536
|
+
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3537
|
+
createUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
3538
|
+
updateValueUserProperty?: Maybe<ConfluenceUpdateValueUserPropertyPayload>;
|
|
3539
|
+
deleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3540
|
+
};
|
|
3541
|
+
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
3335
3542
|
cloudId: Scalars['ID'];
|
|
3336
3543
|
input: ConfluenceCreateBlogPostInput;
|
|
3337
3544
|
};
|
|
3338
|
-
export declare type
|
|
3545
|
+
export declare type ConfluenceMutationApiCreateCommentOnPageArgs = {
|
|
3546
|
+
input: ConfluenceCreateCommentOnPageInput;
|
|
3547
|
+
};
|
|
3548
|
+
export declare type ConfluenceMutationApiCreatePageArgs = {
|
|
3339
3549
|
cloudId: Scalars['ID'];
|
|
3340
3550
|
input: ConfluenceCreatePageInput;
|
|
3341
3551
|
};
|
|
3342
|
-
export declare type
|
|
3552
|
+
export declare type ConfluenceMutationApiCreateSpaceArgs = {
|
|
3343
3553
|
cloudId: Scalars['ID'];
|
|
3344
3554
|
input: ConfluenceCreateSpaceInput;
|
|
3345
3555
|
};
|
|
3346
|
-
export declare type
|
|
3556
|
+
export declare type ConfluenceMutationApiDeleteCommentArgs = {
|
|
3557
|
+
input: ConfluenceDeleteCommentInput;
|
|
3558
|
+
};
|
|
3559
|
+
export declare type ConfluenceMutationApiDeleteDraftBlogPostArgs = {
|
|
3347
3560
|
input: ConfluenceDeleteDraftBlogPostInput;
|
|
3348
3561
|
};
|
|
3349
|
-
export declare type
|
|
3562
|
+
export declare type ConfluenceMutationApiDeleteDraftPageArgs = {
|
|
3350
3563
|
input: ConfluenceDeleteDraftPageInput;
|
|
3351
3564
|
};
|
|
3352
|
-
export declare type
|
|
3565
|
+
export declare type ConfluenceMutationApiPublishBlogPostArgs = {
|
|
3353
3566
|
input: ConfluencePublishBlogPostInput;
|
|
3354
3567
|
};
|
|
3355
|
-
export declare type
|
|
3568
|
+
export declare type ConfluenceMutationApiPublishPageArgs = {
|
|
3356
3569
|
input: ConfluencePublishPageInput;
|
|
3357
3570
|
};
|
|
3358
|
-
export declare type
|
|
3571
|
+
export declare type ConfluenceMutationApiPurgeBlogPostArgs = {
|
|
3359
3572
|
input: ConfluencePurgeBlogPostInput;
|
|
3360
3573
|
};
|
|
3361
|
-
export declare type
|
|
3574
|
+
export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
3362
3575
|
input: ConfluencePurgePageInput;
|
|
3363
3576
|
};
|
|
3364
|
-
export declare type
|
|
3577
|
+
export declare type ConfluenceMutationApiReplyToCommentArgs = {
|
|
3578
|
+
input: ConfluenceReplyToCommentInput;
|
|
3579
|
+
};
|
|
3580
|
+
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
3365
3581
|
input: ConfluenceTrashBlogPostInput;
|
|
3366
3582
|
};
|
|
3367
|
-
export declare type
|
|
3583
|
+
export declare type ConfluenceMutationApiTrashPageArgs = {
|
|
3368
3584
|
input: ConfluenceTrashPageInput;
|
|
3369
3585
|
};
|
|
3370
|
-
export declare type
|
|
3586
|
+
export declare type ConfluenceMutationApiUpdateCommentArgs = {
|
|
3587
|
+
input: ConfluenceUpdateCommentInput;
|
|
3588
|
+
};
|
|
3589
|
+
export declare type ConfluenceMutationApiUpdateCurrentBlogPostArgs = {
|
|
3371
3590
|
input: ConfluenceUpdateCurrentBlogPostInput;
|
|
3372
3591
|
};
|
|
3373
|
-
export declare type
|
|
3592
|
+
export declare type ConfluenceMutationApiUpdateCurrentPageArgs = {
|
|
3374
3593
|
input: ConfluenceUpdateCurrentPageInput;
|
|
3375
3594
|
};
|
|
3376
|
-
export declare type
|
|
3595
|
+
export declare type ConfluenceMutationApiUpdateDraftBlogPostArgs = {
|
|
3377
3596
|
input: ConfluenceUpdateDraftBlogPostInput;
|
|
3378
3597
|
};
|
|
3379
|
-
export declare type
|
|
3598
|
+
export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
3380
3599
|
input: ConfluenceUpdateDraftPageInput;
|
|
3381
3600
|
};
|
|
3382
|
-
export declare type
|
|
3601
|
+
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
3383
3602
|
input: ConfluenceUpdateSpaceInput;
|
|
3384
3603
|
};
|
|
3385
|
-
export declare type
|
|
3604
|
+
export declare type ConfluenceMutationApiCreateUserPropertyArgs = {
|
|
3386
3605
|
cloudId: Scalars['String'];
|
|
3387
3606
|
input: ConfluenceCreateUserPropertyInput;
|
|
3388
3607
|
};
|
|
3389
|
-
export declare type
|
|
3608
|
+
export declare type ConfluenceMutationApiUpdateValueUserPropertyArgs = {
|
|
3390
3609
|
input: ConfluenceUpdateValueUserPropertyInput;
|
|
3391
3610
|
};
|
|
3392
|
-
export declare type
|
|
3611
|
+
export declare type ConfluenceMutationApiDeleteUserPropertyArgs = {
|
|
3393
3612
|
input: ConfluenceDeleteUserPropertyInput;
|
|
3394
3613
|
};
|
|
3395
3614
|
export declare enum ConfluenceMutationContentStatus {
|
|
@@ -3429,20 +3648,37 @@ export declare enum ConfluenceOperationTarget {
|
|
|
3429
3648
|
}
|
|
3430
3649
|
export declare type ConfluencePage = {
|
|
3431
3650
|
__typename?: 'ConfluencePage';
|
|
3651
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3432
3652
|
id: Scalars['ID'];
|
|
3653
|
+
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
3433
3654
|
links?: Maybe<ConfluencePageLinks>;
|
|
3434
3655
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
3656
|
+
properties?: Maybe<Array<Maybe<ConfluencePageProperty>>>;
|
|
3435
3657
|
pageId: Scalars['ID'];
|
|
3436
3658
|
space?: Maybe<ConfluenceSpace>;
|
|
3437
3659
|
status?: Maybe<ConfluencePageStatus>;
|
|
3438
3660
|
title?: Maybe<Scalars['String']>;
|
|
3439
3661
|
type?: Maybe<ConfluenceContentType>;
|
|
3662
|
+
viewer?: Maybe<ConfluencePageViewerSummary>;
|
|
3663
|
+
};
|
|
3664
|
+
export declare type ConfluencePagePropertiesArgs = {
|
|
3665
|
+
keys: Array<Maybe<Scalars['String']>>;
|
|
3666
|
+
};
|
|
3667
|
+
export declare type ConfluencePageInfo = {
|
|
3668
|
+
__typename?: 'ConfluencePageInfo';
|
|
3669
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
3670
|
+
hasNextPage: Scalars['Boolean'];
|
|
3440
3671
|
};
|
|
3441
3672
|
export declare type ConfluencePageLinks = {
|
|
3442
3673
|
__typename?: 'ConfluencePageLinks';
|
|
3443
3674
|
base?: Maybe<Scalars['String']>;
|
|
3444
3675
|
webUi?: Maybe<Scalars['String']>;
|
|
3445
3676
|
};
|
|
3677
|
+
export declare type ConfluencePageProperty = {
|
|
3678
|
+
__typename?: 'ConfluencePageProperty';
|
|
3679
|
+
key: Scalars['String'];
|
|
3680
|
+
value: Scalars['String'];
|
|
3681
|
+
};
|
|
3446
3682
|
export declare enum ConfluencePageStatus {
|
|
3447
3683
|
Archived = "ARCHIVED",
|
|
3448
3684
|
Current = "CURRENT",
|
|
@@ -3451,13 +3687,24 @@ export declare enum ConfluencePageStatus {
|
|
|
3451
3687
|
Historical = "HISTORICAL",
|
|
3452
3688
|
Trashed = "TRASHED"
|
|
3453
3689
|
}
|
|
3690
|
+
export declare type ConfluencePageVersion = {
|
|
3691
|
+
__typename?: 'ConfluencePageVersion';
|
|
3692
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3693
|
+
createdAt?: Maybe<Scalars['String']>;
|
|
3694
|
+
number?: Maybe<Scalars['Int']>;
|
|
3695
|
+
};
|
|
3696
|
+
export declare type ConfluencePageViewerSummary = {
|
|
3697
|
+
__typename?: 'ConfluencePageViewerSummary';
|
|
3698
|
+
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3699
|
+
lastSeenAt?: Maybe<Scalars['String']>;
|
|
3700
|
+
};
|
|
3454
3701
|
export declare type ConfluencePublishBlogPostInput = {
|
|
3455
3702
|
id: Scalars['ID'];
|
|
3456
3703
|
publishTitle?: Maybe<Scalars['String']>;
|
|
3457
3704
|
};
|
|
3458
3705
|
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
3459
3706
|
__typename?: 'ConfluencePublishBlogPostPayload';
|
|
3460
|
-
|
|
3707
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3461
3708
|
errors?: Maybe<Array<MutationError>>;
|
|
3462
3709
|
success: Scalars['Boolean'];
|
|
3463
3710
|
};
|
|
@@ -3467,7 +3714,7 @@ export declare type ConfluencePublishPageInput = {
|
|
|
3467
3714
|
};
|
|
3468
3715
|
export declare type ConfluencePublishPagePayload = Payload & {
|
|
3469
3716
|
__typename?: 'ConfluencePublishPagePayload';
|
|
3470
|
-
|
|
3717
|
+
page?: Maybe<ConfluencePage>;
|
|
3471
3718
|
errors?: Maybe<Array<MutationError>>;
|
|
3472
3719
|
success: Scalars['Boolean'];
|
|
3473
3720
|
};
|
|
@@ -3489,51 +3736,68 @@ export declare type ConfluencePurgePagePayload = Payload & {
|
|
|
3489
3736
|
};
|
|
3490
3737
|
export declare type ConfluenceQueryApi = {
|
|
3491
3738
|
__typename?: 'ConfluenceQueryApi';
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3739
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3740
|
+
blogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3741
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3742
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3743
|
+
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
3744
|
+
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
3745
|
+
page?: Maybe<ConfluencePage>;
|
|
3746
|
+
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3747
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3748
|
+
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3749
|
+
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
3750
|
+
userProperties?: Maybe<Array<Maybe<ConfluenceUserProperty>>>;
|
|
3503
3751
|
};
|
|
3504
|
-
export declare type
|
|
3752
|
+
export declare type ConfluenceQueryApiBlogPostArgs = {
|
|
3505
3753
|
id: Scalars['ID'];
|
|
3506
3754
|
};
|
|
3507
|
-
export declare type
|
|
3755
|
+
export declare type ConfluenceQueryApiBlogPostsArgs = {
|
|
3508
3756
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3509
3757
|
};
|
|
3510
|
-
export declare type
|
|
3758
|
+
export declare type ConfluenceQueryApiCommentArgs = {
|
|
3511
3759
|
id: Scalars['ID'];
|
|
3512
3760
|
};
|
|
3513
|
-
export declare type
|
|
3761
|
+
export declare type ConfluenceQueryApiCommentsArgs = {
|
|
3514
3762
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3515
3763
|
};
|
|
3516
|
-
export declare type
|
|
3764
|
+
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
3517
3765
|
id: Scalars['ID'];
|
|
3518
3766
|
};
|
|
3519
|
-
export declare type
|
|
3767
|
+
export declare type ConfluenceQueryApiFindSpacesArgs = {
|
|
3768
|
+
after?: Maybe<Scalars['String']>;
|
|
3769
|
+
cloudId: Scalars['ID'];
|
|
3770
|
+
filters?: Maybe<ConfluenceSpaceFilters>;
|
|
3771
|
+
first?: Maybe<Scalars['Int']>;
|
|
3772
|
+
};
|
|
3773
|
+
export declare type ConfluenceQueryApiPageArgs = {
|
|
3520
3774
|
id: Scalars['ID'];
|
|
3521
3775
|
};
|
|
3522
|
-
export declare type
|
|
3776
|
+
export declare type ConfluenceQueryApiPagesArgs = {
|
|
3523
3777
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3524
3778
|
};
|
|
3525
|
-
export declare type
|
|
3779
|
+
export declare type ConfluenceQueryApiSpaceArgs = {
|
|
3526
3780
|
id: Scalars['ID'];
|
|
3527
3781
|
};
|
|
3528
|
-
export declare type
|
|
3782
|
+
export declare type ConfluenceQueryApiSpacesArgs = {
|
|
3529
3783
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3530
3784
|
};
|
|
3531
|
-
export declare type
|
|
3785
|
+
export declare type ConfluenceQueryApiUserPropertyArgs = {
|
|
3532
3786
|
id: Scalars['ID'];
|
|
3533
3787
|
};
|
|
3534
|
-
export declare type
|
|
3788
|
+
export declare type ConfluenceQueryApiUserPropertiesArgs = {
|
|
3535
3789
|
ids: Array<Scalars['ID']>;
|
|
3536
3790
|
};
|
|
3791
|
+
export declare type ConfluenceReplyToCommentInput = {
|
|
3792
|
+
body: ConfluenceContentBodyInput;
|
|
3793
|
+
parentCommentId: Scalars['ID'];
|
|
3794
|
+
};
|
|
3795
|
+
export declare type ConfluenceReplyToCommentPayload = {
|
|
3796
|
+
__typename?: 'ConfluenceReplyToCommentPayload';
|
|
3797
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3798
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3799
|
+
success: Scalars['Boolean'];
|
|
3800
|
+
};
|
|
3537
3801
|
export declare type ConfluenceSpace = {
|
|
3538
3802
|
__typename?: 'ConfluenceSpace';
|
|
3539
3803
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
@@ -3551,11 +3815,25 @@ export declare type ConfluenceSpace = {
|
|
|
3551
3815
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
3552
3816
|
type?: Maybe<ConfluenceSpaceType>;
|
|
3553
3817
|
};
|
|
3818
|
+
export declare type ConfluenceSpaceConnection = {
|
|
3819
|
+
__typename?: 'ConfluenceSpaceConnection';
|
|
3820
|
+
edges?: Maybe<Array<Maybe<ConfluenceSpaceEdge>>>;
|
|
3821
|
+
nodes?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3822
|
+
pageInfo: ConfluencePageInfo;
|
|
3823
|
+
};
|
|
3554
3824
|
export declare type ConfluenceSpaceDescription = {
|
|
3555
3825
|
__typename?: 'ConfluenceSpaceDescription';
|
|
3556
3826
|
plain?: Maybe<Scalars['String']>;
|
|
3557
3827
|
view?: Maybe<Scalars['String']>;
|
|
3558
3828
|
};
|
|
3829
|
+
export declare type ConfluenceSpaceEdge = {
|
|
3830
|
+
__typename?: 'ConfluenceSpaceEdge';
|
|
3831
|
+
cursor: Scalars['String'];
|
|
3832
|
+
node?: Maybe<ConfluenceSpace>;
|
|
3833
|
+
};
|
|
3834
|
+
export declare type ConfluenceSpaceFilters = {
|
|
3835
|
+
type?: Maybe<ConfluenceSpaceType>;
|
|
3836
|
+
};
|
|
3559
3837
|
export declare type ConfluenceSpaceIcon = {
|
|
3560
3838
|
__typename?: 'ConfluenceSpaceIcon';
|
|
3561
3839
|
height?: Maybe<Scalars['Int']>;
|
|
@@ -3601,6 +3879,16 @@ export declare type ConfluenceTrashPagePayload = Payload & {
|
|
|
3601
3879
|
errors?: Maybe<Array<MutationError>>;
|
|
3602
3880
|
success: Scalars['Boolean'];
|
|
3603
3881
|
};
|
|
3882
|
+
export declare type ConfluenceUpdateCommentInput = {
|
|
3883
|
+
body: ConfluenceContentBodyInput;
|
|
3884
|
+
id: Scalars['ID'];
|
|
3885
|
+
};
|
|
3886
|
+
export declare type ConfluenceUpdateCommentPayload = {
|
|
3887
|
+
__typename?: 'ConfluenceUpdateCommentPayload';
|
|
3888
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3889
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3890
|
+
success: Scalars['Boolean'];
|
|
3891
|
+
};
|
|
3604
3892
|
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3605
3893
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3606
3894
|
id: Scalars['ID'];
|
|
@@ -3608,7 +3896,7 @@ export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
|
3608
3896
|
};
|
|
3609
3897
|
export declare type ConfluenceUpdateCurrentBlogPostPayload = Payload & {
|
|
3610
3898
|
__typename?: 'ConfluenceUpdateCurrentBlogPostPayload';
|
|
3611
|
-
|
|
3899
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3612
3900
|
errors?: Maybe<Array<MutationError>>;
|
|
3613
3901
|
success: Scalars['Boolean'];
|
|
3614
3902
|
};
|
|
@@ -3619,7 +3907,7 @@ export declare type ConfluenceUpdateCurrentPageInput = {
|
|
|
3619
3907
|
};
|
|
3620
3908
|
export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
3621
3909
|
__typename?: 'ConfluenceUpdateCurrentPagePayload';
|
|
3622
|
-
|
|
3910
|
+
page?: Maybe<ConfluencePage>;
|
|
3623
3911
|
errors?: Maybe<Array<MutationError>>;
|
|
3624
3912
|
success: Scalars['Boolean'];
|
|
3625
3913
|
};
|
|
@@ -3630,7 +3918,7 @@ export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
|
3630
3918
|
};
|
|
3631
3919
|
export declare type ConfluenceUpdateDraftBlogPostPayload = Payload & {
|
|
3632
3920
|
__typename?: 'ConfluenceUpdateDraftBlogPostPayload';
|
|
3633
|
-
|
|
3921
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3634
3922
|
errors?: Maybe<Array<MutationError>>;
|
|
3635
3923
|
success: Scalars['Boolean'];
|
|
3636
3924
|
};
|
|
@@ -3641,7 +3929,7 @@ export declare type ConfluenceUpdateDraftPageInput = {
|
|
|
3641
3929
|
};
|
|
3642
3930
|
export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
3643
3931
|
__typename?: 'ConfluenceUpdateDraftPagePayload';
|
|
3644
|
-
|
|
3932
|
+
page?: Maybe<ConfluencePage>;
|
|
3645
3933
|
errors?: Maybe<Array<MutationError>>;
|
|
3646
3934
|
success: Scalars['Boolean'];
|
|
3647
3935
|
};
|
|
@@ -3651,7 +3939,7 @@ export declare type ConfluenceUpdateSpaceInput = {
|
|
|
3651
3939
|
};
|
|
3652
3940
|
export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
3653
3941
|
__typename?: 'ConfluenceUpdateSpacePayload';
|
|
3654
|
-
|
|
3942
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3655
3943
|
errors?: Maybe<Array<MutationError>>;
|
|
3656
3944
|
success: Scalars['Boolean'];
|
|
3657
3945
|
};
|
|
@@ -3661,7 +3949,7 @@ export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
|
3661
3949
|
};
|
|
3662
3950
|
export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
3663
3951
|
__typename?: 'ConfluenceUpdateValueUserPropertyPayload';
|
|
3664
|
-
|
|
3952
|
+
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
3665
3953
|
errors?: Maybe<Array<MutationError>>;
|
|
3666
3954
|
success: Scalars['Boolean'];
|
|
3667
3955
|
};
|
|
@@ -3681,6 +3969,7 @@ export declare type ConfluenceUserProperty = {
|
|
|
3681
3969
|
};
|
|
3682
3970
|
export declare type ConnectAppScope = {
|
|
3683
3971
|
__typename?: 'ConnectAppScope';
|
|
3972
|
+
scopeId: Scalars['ID'];
|
|
3684
3973
|
id: Scalars['ID'];
|
|
3685
3974
|
name: Scalars['String'];
|
|
3686
3975
|
capability: Scalars['String'];
|
|
@@ -4072,6 +4361,9 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
4072
4361
|
hasDescription?: Maybe<CreateCompassHasDescriptionScorecardCriteriaInput>;
|
|
4073
4362
|
hasOwner?: Maybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
4074
4363
|
hasMetricValue?: Maybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
4364
|
+
hasCustomTextValue?: Maybe<CompassCreateHasCustomTextFieldScorecardCriteriaInput>;
|
|
4365
|
+
hasCustomBooleanValue?: Maybe<CompassCreateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
4366
|
+
hasCustomNumberValue?: Maybe<CompassCreateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
4075
4367
|
};
|
|
4076
4368
|
export declare type CreateCompassScorecardCriteriasInput = {
|
|
4077
4369
|
criterias: Array<CreateCompassScorecardCriteriaInput>;
|
|
@@ -4724,6 +5016,15 @@ export declare type DeletePolarisFieldPayload = Payload & {
|
|
|
4724
5016
|
success: Scalars['Boolean'];
|
|
4725
5017
|
errors?: Maybe<Array<MutationError>>;
|
|
4726
5018
|
};
|
|
5019
|
+
export declare type DeletePolarisIdeaTemplateInput = {
|
|
5020
|
+
id: Scalars['ID'];
|
|
5021
|
+
project: Scalars['ID'];
|
|
5022
|
+
};
|
|
5023
|
+
export declare type DeletePolarisIdeaTemplatePayload = Payload & {
|
|
5024
|
+
__typename?: 'DeletePolarisIdeaTemplatePayload';
|
|
5025
|
+
success: Scalars['Boolean'];
|
|
5026
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5027
|
+
};
|
|
4727
5028
|
export declare type DeletePolarisInsightPayload = Payload & {
|
|
4728
5029
|
__typename?: 'DeletePolarisInsightPayload';
|
|
4729
5030
|
success: Scalars['Boolean'];
|
|
@@ -5154,6 +5455,7 @@ export declare type DevOpsServiceAndOpsgenieTeamRelationship = Node & {
|
|
|
5154
5455
|
id: Scalars['ID'];
|
|
5155
5456
|
revision: Scalars['ID'];
|
|
5156
5457
|
devOpsService?: Maybe<DevOpsService>;
|
|
5458
|
+
opsgenieTeamId: Scalars['ID'];
|
|
5157
5459
|
opsgenieTeam?: Maybe<OpsgenieTeam>;
|
|
5158
5460
|
description?: Maybe<Scalars['String']>;
|
|
5159
5461
|
createdBy: Scalars['String'];
|
|
@@ -5518,6 +5820,15 @@ export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecif
|
|
|
5518
5820
|
requestId: Scalars['String'];
|
|
5519
5821
|
name: Scalars['String'];
|
|
5520
5822
|
};
|
|
5823
|
+
export declare type DevOpsToolSort = {
|
|
5824
|
+
name?: Maybe<DevOpsToolSortOrder>;
|
|
5825
|
+
supportsContainers?: Maybe<DevOpsToolSortOrder>;
|
|
5826
|
+
integration?: Maybe<DevOpsToolSortOrder>;
|
|
5827
|
+
};
|
|
5828
|
+
export declare enum DevOpsToolSortOrder {
|
|
5829
|
+
Asc = "ASC",
|
|
5830
|
+
Desc = "DESC"
|
|
5831
|
+
}
|
|
5521
5832
|
export declare type DevOpsToolUnknownTool = {
|
|
5522
5833
|
__typename?: 'DevOpsToolUnknownTool';
|
|
5523
5834
|
toolId?: Maybe<Scalars['String']>;
|
|
@@ -5536,6 +5847,7 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
5536
5847
|
export declare type DevOpsTools = {
|
|
5537
5848
|
__typename?: 'DevOpsTools';
|
|
5538
5849
|
tools?: Maybe<DevOpsToolConnection>;
|
|
5850
|
+
toolsThatAreInstalledOrSupportContainers?: Maybe<DevOpsToolConnection>;
|
|
5539
5851
|
tool?: Maybe<DevOpsTool>;
|
|
5540
5852
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
5541
5853
|
container?: Maybe<DevOpsToolContainer>;
|
|
@@ -5553,6 +5865,14 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5553
5865
|
installed?: Maybe<Scalars['Boolean']>;
|
|
5554
5866
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5555
5867
|
integrationType?: Maybe<DevOpsToolIntegrationType>;
|
|
5868
|
+
sort?: Maybe<Array<Maybe<DevOpsToolSort>>>;
|
|
5869
|
+
};
|
|
5870
|
+
export declare type DevOpsToolsToolsThatAreInstalledOrSupportContainersArgs = {
|
|
5871
|
+
cloudId: Scalars['ID'];
|
|
5872
|
+
first?: Maybe<Scalars['Int']>;
|
|
5873
|
+
after?: Maybe<Scalars['String']>;
|
|
5874
|
+
groupId?: Maybe<Scalars['String']>;
|
|
5875
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
5556
5876
|
};
|
|
5557
5877
|
export declare type DevOpsToolsToolArgs = {
|
|
5558
5878
|
id: Scalars['ID'];
|
|
@@ -5635,6 +5955,9 @@ export declare type EcosystemQuery = {
|
|
|
5635
5955
|
userGrants?: Maybe<UserGrantConnection>;
|
|
5636
5956
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
5637
5957
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
5958
|
+
marketplacePartnerContactForCurrentUser?: Maybe<FortifiedMarketplaceAppWithContactPermissions>;
|
|
5959
|
+
marketplaceAppsByCurrentUserPartnerContactPermissions: Array<FortifiedMarketplaceApp>;
|
|
5960
|
+
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
5638
5961
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
5639
5962
|
};
|
|
5640
5963
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -5649,6 +5972,15 @@ export declare type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
|
5649
5972
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
5650
5973
|
cloudId: Scalars['ID'];
|
|
5651
5974
|
};
|
|
5975
|
+
export declare type EcosystemQueryMarketplacePartnerContactForCurrentUserArgs = {
|
|
5976
|
+
appKey: Scalars['String'];
|
|
5977
|
+
};
|
|
5978
|
+
export declare type EcosystemQueryMarketplaceAppsByCurrentUserPartnerContactPermissionsArgs = {
|
|
5979
|
+
permission: FortifiedMarketplacePartnerContactPermission;
|
|
5980
|
+
};
|
|
5981
|
+
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
5982
|
+
appKey: Scalars['ID'];
|
|
5983
|
+
};
|
|
5652
5984
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
5653
5985
|
appId: Scalars['ID'];
|
|
5654
5986
|
};
|
|
@@ -5942,6 +6274,82 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
5942
6274
|
resolution: ForgeMetricsResolution;
|
|
5943
6275
|
};
|
|
5944
6276
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
6277
|
+
export declare type FortifiedMarketplaceApp = {
|
|
6278
|
+
__typename?: 'FortifiedMarketplaceApp';
|
|
6279
|
+
app?: Maybe<MarketplaceApp>;
|
|
6280
|
+
};
|
|
6281
|
+
export declare type FortifiedMarketplaceAppWithContactPermissions = {
|
|
6282
|
+
__typename?: 'FortifiedMarketplaceAppWithContactPermissions';
|
|
6283
|
+
app?: Maybe<MarketplaceApp>;
|
|
6284
|
+
permissions: Array<FortifiedMarketplacePartnerContactPermission>;
|
|
6285
|
+
};
|
|
6286
|
+
export declare enum FortifiedMarketplacePartnerContactPermission {
|
|
6287
|
+
AdministerPartner = "ADMINISTER_PARTNER",
|
|
6288
|
+
ManageAddonDetails = "MANAGE_ADDON_DETAILS",
|
|
6289
|
+
ManagePayment = "MANAGE_PAYMENT",
|
|
6290
|
+
ManagePricing = "MANAGE_PRICING",
|
|
6291
|
+
ManagePromotions = "MANAGE_PROMOTIONS",
|
|
6292
|
+
ManagePartnerDetails = "MANAGE_PARTNER_DETAILS",
|
|
6293
|
+
ViewSalesReports = "VIEW_SALES_REPORTS",
|
|
6294
|
+
ViewUsageReports = "VIEW_USAGE_REPORTS"
|
|
6295
|
+
}
|
|
6296
|
+
export declare type FortifiedMetricsIntervalInput = {
|
|
6297
|
+
start: Scalars['DateTime'];
|
|
6298
|
+
end: Scalars['DateTime'];
|
|
6299
|
+
};
|
|
6300
|
+
export declare type FortifiedMetricsIntervalRange = {
|
|
6301
|
+
__typename?: 'FortifiedMetricsIntervalRange';
|
|
6302
|
+
start: Scalars['DateTime'];
|
|
6303
|
+
end: Scalars['DateTime'];
|
|
6304
|
+
};
|
|
6305
|
+
export declare type FortifiedMetricsQuery = {
|
|
6306
|
+
__typename?: 'FortifiedMetricsQuery';
|
|
6307
|
+
appKey: Scalars['ID'];
|
|
6308
|
+
installationCallbacks?: Maybe<FortifiedSuccessRateMetricQuery>;
|
|
6309
|
+
};
|
|
6310
|
+
export declare type FortifiedMetricsQueryFilters = {
|
|
6311
|
+
interval: FortifiedMetricsIntervalInput;
|
|
6312
|
+
};
|
|
6313
|
+
export declare type FortifiedMetricsQueryInput = {
|
|
6314
|
+
filters: FortifiedMetricsQueryFilters;
|
|
6315
|
+
};
|
|
6316
|
+
export declare type FortifiedMetricsResolution = {
|
|
6317
|
+
__typename?: 'FortifiedMetricsResolution';
|
|
6318
|
+
size: Scalars['Int'];
|
|
6319
|
+
units: FortifiedMetricsResolutionUnit;
|
|
6320
|
+
};
|
|
6321
|
+
export declare enum FortifiedMetricsResolutionUnit {
|
|
6322
|
+
Hours = "HOURS",
|
|
6323
|
+
Minutes = "MINUTES"
|
|
6324
|
+
}
|
|
6325
|
+
export declare type FortifiedMetricsSuccessRateData = {
|
|
6326
|
+
__typename?: 'FortifiedMetricsSuccessRateData';
|
|
6327
|
+
name: Scalars['String'];
|
|
6328
|
+
series: Array<FortifiedMetricsSuccessRateSeries>;
|
|
6329
|
+
resolution: FortifiedMetricsResolution;
|
|
6330
|
+
interval: FortifiedMetricsIntervalRange;
|
|
6331
|
+
};
|
|
6332
|
+
export declare type FortifiedMetricsSuccessRateDataPoint = {
|
|
6333
|
+
__typename?: 'FortifiedMetricsSuccessRateDataPoint';
|
|
6334
|
+
timestamp: Scalars['DateTime'];
|
|
6335
|
+
value: Scalars['Float'];
|
|
6336
|
+
};
|
|
6337
|
+
export declare type FortifiedMetricsSuccessRateResult = FortifiedMetricsSuccessRateData | QueryError;
|
|
6338
|
+
export declare type FortifiedMetricsSuccessRateSeries = {
|
|
6339
|
+
__typename?: 'FortifiedMetricsSuccessRateSeries';
|
|
6340
|
+
data: Array<FortifiedMetricsSuccessRateDataPoint>;
|
|
6341
|
+
};
|
|
6342
|
+
export declare type FortifiedSuccessRateMetricQuery = {
|
|
6343
|
+
__typename?: 'FortifiedSuccessRateMetricQuery';
|
|
6344
|
+
serviceLevelObjectiveSuccessRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
6345
|
+
alertConditionSuccessRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
6346
|
+
};
|
|
6347
|
+
export declare type FortifiedSuccessRateMetricQueryServiceLevelObjectiveSuccessRateArgs = {
|
|
6348
|
+
query: FortifiedMetricsQueryInput;
|
|
6349
|
+
};
|
|
6350
|
+
export declare type FortifiedSuccessRateMetricQueryAlertConditionSuccessRateArgs = {
|
|
6351
|
+
query: FortifiedMetricsQueryInput;
|
|
6352
|
+
};
|
|
5945
6353
|
export declare type FunctionDescription = {
|
|
5946
6354
|
__typename?: 'FunctionDescription';
|
|
5947
6355
|
key: Scalars['String'];
|
|
@@ -6092,10 +6500,10 @@ export declare type HelpCenterQueryApi = {
|
|
|
6092
6500
|
helpCenterCollection?: Maybe<HelpCenterCollectionResult>;
|
|
6093
6501
|
};
|
|
6094
6502
|
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
6095
|
-
|
|
6503
|
+
productName: Scalars['String'];
|
|
6096
6504
|
};
|
|
6097
6505
|
export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
6098
|
-
|
|
6506
|
+
productName: Scalars['String'];
|
|
6099
6507
|
collectionId: Scalars['ID'];
|
|
6100
6508
|
};
|
|
6101
6509
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
@@ -6622,6 +7030,19 @@ export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
|
6622
7030
|
success: Scalars['Boolean'];
|
|
6623
7031
|
errors?: Maybe<Array<MutationError>>;
|
|
6624
7032
|
};
|
|
7033
|
+
export declare type JiraAddRelatedWorkToVersionInput = {
|
|
7034
|
+
versionId: Scalars['ID'];
|
|
7035
|
+
relatedWorkId: Scalars['ID'];
|
|
7036
|
+
url: Scalars['URL'];
|
|
7037
|
+
title?: Maybe<Scalars['String']>;
|
|
7038
|
+
category: Scalars['String'];
|
|
7039
|
+
};
|
|
7040
|
+
export declare type JiraAddRelatedWorkToVersionPayload = Payload & {
|
|
7041
|
+
__typename?: 'JiraAddRelatedWorkToVersionPayload';
|
|
7042
|
+
success: Scalars['Boolean'];
|
|
7043
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7044
|
+
relatedWorkEdge?: Maybe<JiraVersionRelatedWorkEdge>;
|
|
7045
|
+
};
|
|
6625
7046
|
export declare type JiraAffectedService = {
|
|
6626
7047
|
__typename?: 'JiraAffectedService';
|
|
6627
7048
|
serviceId?: Maybe<Scalars['String']>;
|
|
@@ -6645,6 +7066,7 @@ export declare type JiraAffectedServicesField = Node & JiraIssueField & JiraIssu
|
|
|
6645
7066
|
type: Scalars['String'];
|
|
6646
7067
|
name: Scalars['String'];
|
|
6647
7068
|
description?: Maybe<Scalars['String']>;
|
|
7069
|
+
selectedAffectedServices?: Maybe<Array<Maybe<JiraAffectedService>>>;
|
|
6648
7070
|
selectedAffectedServicesConnection?: Maybe<JiraAffectedServiceConnection>;
|
|
6649
7071
|
affectedServices?: Maybe<JiraAffectedServiceConnection>;
|
|
6650
7072
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -6704,6 +7126,7 @@ export declare type JiraAssetField = Node & JiraIssueField & JiraIssueFieldConfi
|
|
|
6704
7126
|
type: Scalars['String'];
|
|
6705
7127
|
name: Scalars['String'];
|
|
6706
7128
|
description?: Maybe<Scalars['String']>;
|
|
7129
|
+
selectedAssets?: Maybe<Array<Maybe<JiraAsset>>>;
|
|
6707
7130
|
selectedAssetsConnection?: Maybe<JiraAssetConnection>;
|
|
6708
7131
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6709
7132
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -6830,12 +7253,15 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
6830
7253
|
type: Scalars['String'];
|
|
6831
7254
|
name: Scalars['String'];
|
|
6832
7255
|
description?: Maybe<Scalars['String']>;
|
|
7256
|
+
isMulti?: Maybe<Scalars['Boolean']>;
|
|
6833
7257
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7258
|
+
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
6834
7259
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
6835
7260
|
isInsightAvailable?: Maybe<Scalars['Boolean']>;
|
|
6836
7261
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
6837
7262
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6838
7263
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7264
|
+
attributesIncludedInAutoCompleteSearch?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
6839
7265
|
};
|
|
6840
7266
|
export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
|
|
6841
7267
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6900,6 +7326,7 @@ export declare type JiraCheckboxesField = Node & JiraIssueField & JiraIssueField
|
|
|
6900
7326
|
type: Scalars['String'];
|
|
6901
7327
|
name: Scalars['String'];
|
|
6902
7328
|
description?: Maybe<Scalars['String']>;
|
|
7329
|
+
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
6903
7330
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
6904
7331
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
6905
7332
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -7185,6 +7612,7 @@ export declare type JiraComponentsField = Node & JiraIssueField & JiraIssueField
|
|
|
7185
7612
|
type: Scalars['String'];
|
|
7186
7613
|
name: Scalars['String'];
|
|
7187
7614
|
description?: Maybe<Scalars['String']>;
|
|
7615
|
+
selectedComponents?: Maybe<Array<Maybe<JiraComponent>>>;
|
|
7188
7616
|
selectedComponentsConnection?: Maybe<JiraComponentConnection>;
|
|
7189
7617
|
components?: Maybe<JiraComponentConnection>;
|
|
7190
7618
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -7211,6 +7639,7 @@ export declare type JiraConnectMultipleSelectField = Node & JiraIssueField & Jir
|
|
|
7211
7639
|
type: Scalars['String'];
|
|
7212
7640
|
name: Scalars['String'];
|
|
7213
7641
|
description?: Maybe<Scalars['String']>;
|
|
7642
|
+
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
7214
7643
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
7215
7644
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
7216
7645
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -7312,6 +7741,7 @@ export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
|
7312
7741
|
name: Scalars['String'];
|
|
7313
7742
|
description?: Maybe<Scalars['String']>;
|
|
7314
7743
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
7744
|
+
isEditable?: Maybe<Scalars['Boolean']>;
|
|
7315
7745
|
emailSubscriptions?: Maybe<JiraFilterEmailSubscriptionConnection>;
|
|
7316
7746
|
shareGrants?: Maybe<JiraShareableEntityShareGrantConnection>;
|
|
7317
7747
|
editGrants?: Maybe<JiraShareableEntityEditGrantConnection>;
|
|
@@ -7368,6 +7798,17 @@ export declare enum JiraDeploymentsFeaturePrecondition {
|
|
|
7368
7798
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
7369
7799
|
AllSatisfied = "ALL_SATISFIED"
|
|
7370
7800
|
}
|
|
7801
|
+
export declare type JiraDevInfoConfigError = {
|
|
7802
|
+
__typename?: 'JiraDevInfoConfigError';
|
|
7803
|
+
errorType?: Maybe<JiraDevInfoConfigErrorType>;
|
|
7804
|
+
dataProviderId?: Maybe<Scalars['String']>;
|
|
7805
|
+
};
|
|
7806
|
+
export declare enum JiraDevInfoConfigErrorType {
|
|
7807
|
+
Unauthorized = "UNAUTHORIZED",
|
|
7808
|
+
NotConfigured = "NOT_CONFIGURED",
|
|
7809
|
+
Incapable = "INCAPABLE",
|
|
7810
|
+
UnknownConfigError = "UNKNOWN_CONFIG_ERROR"
|
|
7811
|
+
}
|
|
7371
7812
|
export declare type JiraDevOpsBranchDetails = {
|
|
7372
7813
|
__typename?: 'JiraDevOpsBranchDetails';
|
|
7373
7814
|
providerBranchId?: Maybe<Scalars['String']>;
|
|
@@ -7548,15 +7989,18 @@ export declare type JiraFilterMutation = {
|
|
|
7548
7989
|
__typename?: 'JiraFilterMutation';
|
|
7549
7990
|
createJiraCustomFilter?: Maybe<JiraCreateCustomFilterPayload>;
|
|
7550
7991
|
updateJiraCustomFilterDetails?: Maybe<JiraUpdateCustomFilterPayload>;
|
|
7992
|
+
updateJiraCustomFilterJql?: Maybe<JiraUpdateCustomFilterJqlPayload>;
|
|
7551
7993
|
};
|
|
7552
7994
|
export declare type JiraFilterMutationCreateJiraCustomFilterArgs = {
|
|
7553
7995
|
cloudId: Scalars['ID'];
|
|
7554
7996
|
input: JiraCreateCustomFilterInput;
|
|
7555
7997
|
};
|
|
7556
7998
|
export declare type JiraFilterMutationUpdateJiraCustomFilterDetailsArgs = {
|
|
7557
|
-
cloudId: Scalars['ID'];
|
|
7558
7999
|
input: JiraUpdateCustomFilterDetailsInput;
|
|
7559
8000
|
};
|
|
8001
|
+
export declare type JiraFilterMutationUpdateJiraCustomFilterJqlArgs = {
|
|
8002
|
+
input: JiraUpdateCustomFilterJqlInput;
|
|
8003
|
+
};
|
|
7560
8004
|
export declare type JiraFilterNameMutationErrorExtension = MutationErrorExtension & {
|
|
7561
8005
|
__typename?: 'JiraFilterNameMutationErrorExtension';
|
|
7562
8006
|
statusCode?: Maybe<Scalars['Int']>;
|
|
@@ -7622,6 +8066,7 @@ export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7622
8066
|
type: Scalars['String'];
|
|
7623
8067
|
name: Scalars['String'];
|
|
7624
8068
|
description?: Maybe<Scalars['String']>;
|
|
8069
|
+
selectedGroups?: Maybe<Array<Maybe<JiraGroup>>>;
|
|
7625
8070
|
selectedGroupsConnection?: Maybe<JiraGroupConnection>;
|
|
7626
8071
|
groups?: Maybe<JiraGroupConnection>;
|
|
7627
8072
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -7689,6 +8134,7 @@ export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFie
|
|
|
7689
8134
|
type: Scalars['String'];
|
|
7690
8135
|
name: Scalars['String'];
|
|
7691
8136
|
description?: Maybe<Scalars['String']>;
|
|
8137
|
+
selectedLabels?: Maybe<Array<Maybe<JiraLabel>>>;
|
|
7692
8138
|
selectedLabelsConnection?: Maybe<JiraLabelConnection>;
|
|
7693
8139
|
labels?: Maybe<JiraLabelConnection>;
|
|
7694
8140
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -7741,6 +8187,7 @@ export declare type JiraForgeUsersField = Node & JiraIssueField & JiraIssueField
|
|
|
7741
8187
|
type: Scalars['String'];
|
|
7742
8188
|
name: Scalars['String'];
|
|
7743
8189
|
description?: Maybe<Scalars['String']>;
|
|
8190
|
+
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
7744
8191
|
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
7745
8192
|
users?: Maybe<JiraUserConnection>;
|
|
7746
8193
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -7847,6 +8294,7 @@ export declare type JiraIssue = Node & {
|
|
|
7847
8294
|
comments?: Maybe<JiraCommentConnection>;
|
|
7848
8295
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
7849
8296
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
8297
|
+
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7850
8298
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
7851
8299
|
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
7852
8300
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
@@ -7859,6 +8307,7 @@ export declare type JiraIssue = Node & {
|
|
|
7859
8307
|
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
7860
8308
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
7861
8309
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
8310
|
+
errorRetrievingData?: Maybe<Scalars['Boolean']>;
|
|
7862
8311
|
};
|
|
7863
8312
|
export declare type JiraIssueFieldsArgs = {
|
|
7864
8313
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7891,6 +8340,12 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
7891
8340
|
last?: Maybe<Scalars['Int']>;
|
|
7892
8341
|
before?: Maybe<Scalars['String']>;
|
|
7893
8342
|
};
|
|
8343
|
+
export declare type JiraIssueFieldSetsArgs = {
|
|
8344
|
+
first?: Maybe<Scalars['Int']>;
|
|
8345
|
+
after?: Maybe<Scalars['String']>;
|
|
8346
|
+
last?: Maybe<Scalars['Int']>;
|
|
8347
|
+
before?: Maybe<Scalars['String']>;
|
|
8348
|
+
};
|
|
7894
8349
|
export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
7895
8350
|
namespace?: Maybe<Scalars['String']>;
|
|
7896
8351
|
viewId?: Maybe<Scalars['String']>;
|
|
@@ -7915,6 +8370,7 @@ export declare type JiraIssueIssueLinksArgs = {
|
|
|
7915
8370
|
export declare type JiraIssueAndProject = {
|
|
7916
8371
|
__typename?: 'JiraIssueAndProject';
|
|
7917
8372
|
issueId: Scalars['ID'];
|
|
8373
|
+
projectId: Scalars['ID'];
|
|
7918
8374
|
};
|
|
7919
8375
|
export declare type JiraIssueBranchDevSummary = {
|
|
7920
8376
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
@@ -7929,6 +8385,7 @@ export declare type JiraIssueBranchDevSummaryContainer = {
|
|
|
7929
8385
|
export declare type JiraIssueBranches = {
|
|
7930
8386
|
__typename?: 'JiraIssueBranches';
|
|
7931
8387
|
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
8388
|
+
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
7932
8389
|
};
|
|
7933
8390
|
export declare type JiraIssueBuildDevSummary = {
|
|
7934
8391
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
@@ -7956,6 +8413,7 @@ export declare type JiraIssueCommitDevSummaryContainer = {
|
|
|
7956
8413
|
export declare type JiraIssueCommits = {
|
|
7957
8414
|
__typename?: 'JiraIssueCommits';
|
|
7958
8415
|
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
8416
|
+
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
7959
8417
|
};
|
|
7960
8418
|
export declare type JiraIssueConnection = {
|
|
7961
8419
|
__typename?: 'JiraIssueConnection';
|
|
@@ -8132,6 +8590,7 @@ export declare type JiraIssueItemContainerItem = JiraIssueItemFieldItem | JiraIs
|
|
|
8132
8590
|
export declare type JiraIssueItemContainerItemConnection = {
|
|
8133
8591
|
__typename?: 'JiraIssueItemContainerItemConnection';
|
|
8134
8592
|
pageInfo: PageInfo;
|
|
8593
|
+
nodes?: Maybe<Array<Maybe<JiraIssueItemContainerItem>>>;
|
|
8135
8594
|
edges?: Maybe<Array<Maybe<JiraIssueItemContainerItemEdge>>>;
|
|
8136
8595
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8137
8596
|
};
|
|
@@ -8162,6 +8621,7 @@ export declare type JiraIssueItemGroupContainerItem = JiraIssueItemFieldItem | J
|
|
|
8162
8621
|
export declare type JiraIssueItemGroupContainerItemConnection = {
|
|
8163
8622
|
__typename?: 'JiraIssueItemGroupContainerItemConnection';
|
|
8164
8623
|
pageInfo: PageInfo;
|
|
8624
|
+
nodes?: Maybe<Array<Maybe<JiraIssueItemGroupContainerItem>>>;
|
|
8165
8625
|
edges?: Maybe<Array<Maybe<JiraIssueItemGroupContainerItemEdge>>>;
|
|
8166
8626
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8167
8627
|
};
|
|
@@ -8214,6 +8674,7 @@ export declare type JiraIssueItemTabContainerItem = JiraIssueItemFieldItem;
|
|
|
8214
8674
|
export declare type JiraIssueItemTabContainerItemConnection = {
|
|
8215
8675
|
__typename?: 'JiraIssueItemTabContainerItemConnection';
|
|
8216
8676
|
pageInfo: PageInfo;
|
|
8677
|
+
nodes?: Maybe<Array<Maybe<JiraIssueItemTabContainerItem>>>;
|
|
8217
8678
|
edges?: Maybe<Array<Maybe<JiraIssueItemTabContainerItemEdge>>>;
|
|
8218
8679
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8219
8680
|
};
|
|
@@ -8252,6 +8713,7 @@ export declare type JiraIssueLinkField = Node & JiraIssueField & JiraIssueFieldC
|
|
|
8252
8713
|
type: Scalars['String'];
|
|
8253
8714
|
name: Scalars['String'];
|
|
8254
8715
|
description?: Maybe<Scalars['String']>;
|
|
8716
|
+
issueLinks?: Maybe<Array<Maybe<JiraIssueLink>>>;
|
|
8255
8717
|
issueLinkConnection?: Maybe<JiraIssueLinkConnection>;
|
|
8256
8718
|
issueLinkTypeRelations?: Maybe<JiraIssueLinkTypeRelationConnection>;
|
|
8257
8719
|
issues?: Maybe<JiraIssueConnection>;
|
|
@@ -8321,6 +8783,7 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
8321
8783
|
export declare type JiraIssuePullRequests = {
|
|
8322
8784
|
__typename?: 'JiraIssuePullRequests';
|
|
8323
8785
|
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
8786
|
+
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
8324
8787
|
};
|
|
8325
8788
|
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8326
8789
|
__typename?: 'JiraIssueRestrictionField';
|
|
@@ -8330,6 +8793,7 @@ export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssu
|
|
|
8330
8793
|
type: Scalars['String'];
|
|
8331
8794
|
name: Scalars['String'];
|
|
8332
8795
|
description?: Maybe<Scalars['String']>;
|
|
8796
|
+
selectedRoles?: Maybe<Array<Maybe<JiraRole>>>;
|
|
8333
8797
|
selectedRolesConnection?: Maybe<JiraRoleConnection>;
|
|
8334
8798
|
roles?: Maybe<JiraRoleConnection>;
|
|
8335
8799
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -8364,41 +8828,41 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
8364
8828
|
export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
8365
8829
|
__typename?: 'JiraIssueSearchByFilter';
|
|
8366
8830
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
8367
|
-
|
|
8831
|
+
contentByFieldSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
8368
8832
|
filter?: Maybe<JiraFilter>;
|
|
8369
8833
|
};
|
|
8370
8834
|
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
8371
8835
|
namespace?: Maybe<Scalars['String']>;
|
|
8372
8836
|
viewId?: Maybe<Scalars['String']>;
|
|
8373
8837
|
};
|
|
8374
|
-
export declare type
|
|
8375
|
-
|
|
8838
|
+
export declare type JiraIssueSearchByFilterContentByFieldSetIdsArgs = {
|
|
8839
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
8376
8840
|
};
|
|
8377
8841
|
export declare type JiraIssueSearchByFilterResult = JiraIssueSearchByFilter | QueryError;
|
|
8378
8842
|
export declare type JiraIssueSearchByHydration = JiraIssueSearchResult & {
|
|
8379
8843
|
__typename?: 'JiraIssueSearchByHydration';
|
|
8380
8844
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
8381
|
-
|
|
8845
|
+
contentByFieldSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
8382
8846
|
};
|
|
8383
8847
|
export declare type JiraIssueSearchByHydrationContentArgs = {
|
|
8384
8848
|
namespace?: Maybe<Scalars['String']>;
|
|
8385
8849
|
viewId?: Maybe<Scalars['String']>;
|
|
8386
8850
|
};
|
|
8387
|
-
export declare type
|
|
8388
|
-
|
|
8851
|
+
export declare type JiraIssueSearchByHydrationContentByFieldSetIdsArgs = {
|
|
8852
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
8389
8853
|
};
|
|
8390
8854
|
export declare type JiraIssueSearchByJql = JiraIssueSearchResult & {
|
|
8391
8855
|
__typename?: 'JiraIssueSearchByJql';
|
|
8392
8856
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
8393
|
-
|
|
8857
|
+
contentByFieldSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
8394
8858
|
jql?: Maybe<Scalars['String']>;
|
|
8395
8859
|
};
|
|
8396
8860
|
export declare type JiraIssueSearchByJqlContentArgs = {
|
|
8397
8861
|
namespace?: Maybe<Scalars['String']>;
|
|
8398
8862
|
viewId?: Maybe<Scalars['String']>;
|
|
8399
8863
|
};
|
|
8400
|
-
export declare type
|
|
8401
|
-
|
|
8864
|
+
export declare type JiraIssueSearchByJqlContentByFieldSetIdsArgs = {
|
|
8865
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
8402
8866
|
};
|
|
8403
8867
|
export declare type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
8404
8868
|
export declare type JiraIssueSearchContextlessContent = JiraIssueSearchResultContent & {
|
|
@@ -8423,35 +8887,35 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
8423
8887
|
after?: Maybe<Scalars['String']>;
|
|
8424
8888
|
};
|
|
8425
8889
|
export declare type JiraIssueSearchError = JiraInvalidJqlError | JiraInvalidSyntaxError;
|
|
8426
|
-
export declare type
|
|
8427
|
-
__typename?: '
|
|
8428
|
-
|
|
8890
|
+
export declare type JiraIssueSearchFieldSet = {
|
|
8891
|
+
__typename?: 'JiraIssueSearchFieldSet';
|
|
8892
|
+
fieldSetId?: Maybe<Scalars['String']>;
|
|
8429
8893
|
displayName?: Maybe<Scalars['String']>;
|
|
8430
|
-
|
|
8894
|
+
type?: Maybe<Scalars['String']>;
|
|
8431
8895
|
jqlTerm?: Maybe<Scalars['String']>;
|
|
8432
8896
|
isSortable?: Maybe<Scalars['Boolean']>;
|
|
8433
8897
|
isSelected?: Maybe<Scalars['Boolean']>;
|
|
8434
8898
|
};
|
|
8435
|
-
export declare type
|
|
8436
|
-
__typename?: '
|
|
8899
|
+
export declare type JiraIssueSearchFieldSetConnection = {
|
|
8900
|
+
__typename?: 'JiraIssueSearchFieldSetConnection';
|
|
8437
8901
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8438
8902
|
pageInfo: PageInfo;
|
|
8439
|
-
edges?: Maybe<Array<Maybe<
|
|
8903
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldSetEdge>>>;
|
|
8440
8904
|
isWithholdingUnsupportedSelectedFields?: Maybe<Scalars['Boolean']>;
|
|
8441
8905
|
};
|
|
8442
|
-
export declare type
|
|
8443
|
-
__typename?: '
|
|
8444
|
-
node?: Maybe<
|
|
8906
|
+
export declare type JiraIssueSearchFieldSetEdge = {
|
|
8907
|
+
__typename?: 'JiraIssueSearchFieldSetEdge';
|
|
8908
|
+
node?: Maybe<JiraIssueSearchFieldSet>;
|
|
8445
8909
|
cursor: Scalars['String'];
|
|
8446
8910
|
};
|
|
8447
|
-
export declare enum
|
|
8911
|
+
export declare enum JiraIssueSearchFieldSetSelectedState {
|
|
8448
8912
|
All = "ALL",
|
|
8449
8913
|
Selected = "SELECTED",
|
|
8450
8914
|
NonSelected = "NON_SELECTED"
|
|
8451
8915
|
}
|
|
8452
|
-
export declare type
|
|
8916
|
+
export declare type JiraIssueSearchFieldSetsFilter = {
|
|
8453
8917
|
searchString?: Maybe<Scalars['String']>;
|
|
8454
|
-
|
|
8918
|
+
fieldSetSelectedState?: Maybe<JiraIssueSearchFieldSetSelectedState>;
|
|
8455
8919
|
};
|
|
8456
8920
|
export declare type JiraIssueSearchInput = {
|
|
8457
8921
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -8462,14 +8926,14 @@ export declare type JiraIssueSearchOptions = {
|
|
|
8462
8926
|
};
|
|
8463
8927
|
export declare type JiraIssueSearchResult = {
|
|
8464
8928
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
8465
|
-
|
|
8929
|
+
contentByFieldSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
8466
8930
|
};
|
|
8467
8931
|
export declare type JiraIssueSearchResultContentArgs = {
|
|
8468
8932
|
namespace?: Maybe<Scalars['String']>;
|
|
8469
8933
|
viewId?: Maybe<Scalars['String']>;
|
|
8470
8934
|
};
|
|
8471
|
-
export declare type
|
|
8472
|
-
|
|
8935
|
+
export declare type JiraIssueSearchResultContentByFieldSetIdsArgs = {
|
|
8936
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
8473
8937
|
};
|
|
8474
8938
|
export declare type JiraIssueSearchResultContent = {
|
|
8475
8939
|
issues?: Maybe<JiraIssueConnection>;
|
|
@@ -8485,14 +8949,14 @@ export declare type JiraIssueSearchView = Node & {
|
|
|
8485
8949
|
id: Scalars['ID'];
|
|
8486
8950
|
namespace?: Maybe<Scalars['String']>;
|
|
8487
8951
|
viewId?: Maybe<Scalars['String']>;
|
|
8488
|
-
|
|
8952
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
8489
8953
|
};
|
|
8490
|
-
export declare type
|
|
8954
|
+
export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
8491
8955
|
first?: Maybe<Scalars['Int']>;
|
|
8492
8956
|
last?: Maybe<Scalars['Int']>;
|
|
8493
8957
|
before?: Maybe<Scalars['String']>;
|
|
8494
8958
|
after?: Maybe<Scalars['String']>;
|
|
8495
|
-
filter?: Maybe<
|
|
8959
|
+
filter?: Maybe<JiraIssueSearchFieldSetsFilter>;
|
|
8496
8960
|
};
|
|
8497
8961
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
8498
8962
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
@@ -9014,6 +9478,7 @@ export declare type JiraLabelsField = Node & JiraIssueField & JiraIssueFieldConf
|
|
|
9014
9478
|
type: Scalars['String'];
|
|
9015
9479
|
name: Scalars['String'];
|
|
9016
9480
|
description?: Maybe<Scalars['String']>;
|
|
9481
|
+
selectedLabels?: Maybe<Array<Maybe<JiraLabel>>>;
|
|
9017
9482
|
selectedLabelsConnection?: Maybe<JiraLabelConnection>;
|
|
9018
9483
|
labels?: Maybe<JiraLabelConnection>;
|
|
9019
9484
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -9055,6 +9520,7 @@ export declare type JiraMultipleGroupPickerField = Node & JiraIssueField & JiraI
|
|
|
9055
9520
|
type: Scalars['String'];
|
|
9056
9521
|
name: Scalars['String'];
|
|
9057
9522
|
description?: Maybe<Scalars['String']>;
|
|
9523
|
+
selectedGroups?: Maybe<Array<Maybe<JiraGroup>>>;
|
|
9058
9524
|
selectedGroupsConnection?: Maybe<JiraGroupConnection>;
|
|
9059
9525
|
groups?: Maybe<JiraGroupConnection>;
|
|
9060
9526
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -9082,6 +9548,7 @@ export declare type JiraMultipleSelectField = Node & JiraIssueField & JiraIssueF
|
|
|
9082
9548
|
type: Scalars['String'];
|
|
9083
9549
|
name: Scalars['String'];
|
|
9084
9550
|
description?: Maybe<Scalars['String']>;
|
|
9551
|
+
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
9085
9552
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
9086
9553
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
9087
9554
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -9109,6 +9576,7 @@ export declare type JiraMultipleSelectUserPickerField = Node & JiraIssueField &
|
|
|
9109
9576
|
type: Scalars['String'];
|
|
9110
9577
|
name: Scalars['String'];
|
|
9111
9578
|
description?: Maybe<Scalars['String']>;
|
|
9579
|
+
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
9112
9580
|
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
9113
9581
|
users?: Maybe<JiraUserConnection>;
|
|
9114
9582
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -9137,6 +9605,7 @@ export declare type JiraMultipleVersionPickerField = Node & JiraIssueField & Jir
|
|
|
9137
9605
|
type: Scalars['String'];
|
|
9138
9606
|
name: Scalars['String'];
|
|
9139
9607
|
description?: Maybe<Scalars['String']>;
|
|
9608
|
+
selectedVersions?: Maybe<Array<Maybe<JiraVersion>>>;
|
|
9140
9609
|
selectedVersionsConnection?: Maybe<JiraVersionConnection>;
|
|
9141
9610
|
versions?: Maybe<JiraVersionConnection>;
|
|
9142
9611
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -9162,10 +9631,16 @@ export declare type JiraMutation = {
|
|
|
9162
9631
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
9163
9632
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
9164
9633
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
9165
|
-
updateIssueHierarchyConfig
|
|
9634
|
+
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
9166
9635
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
9167
9636
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
9168
|
-
|
|
9637
|
+
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
9638
|
+
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
9639
|
+
updateVersionName?: Maybe<JiraUpdateVersionPayload>;
|
|
9640
|
+
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
9641
|
+
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
9642
|
+
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
9643
|
+
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
9169
9644
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
9170
9645
|
};
|
|
9171
9646
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
@@ -9188,9 +9663,27 @@ export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
|
9188
9663
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
9189
9664
|
input: JiraUpdateVersionWarningConfigInput;
|
|
9190
9665
|
};
|
|
9191
|
-
export declare type
|
|
9666
|
+
export declare type JiraMutationAddRelatedWorkToVersionArgs = {
|
|
9667
|
+
input: JiraAddRelatedWorkToVersionInput;
|
|
9668
|
+
};
|
|
9669
|
+
export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
|
|
9670
|
+
input: JiraRemoveRelatedWorkFromVersionInput;
|
|
9671
|
+
};
|
|
9672
|
+
export declare type JiraMutationUpdateVersionNameArgs = {
|
|
9673
|
+
input: JiraUpdateVersionNameInput;
|
|
9674
|
+
};
|
|
9675
|
+
export declare type JiraMutationUpdateVersionDescriptionArgs = {
|
|
9676
|
+
input: JiraUpdateVersionDescriptionInput;
|
|
9677
|
+
};
|
|
9678
|
+
export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
9679
|
+
input: JiraUpdateVersionStartDateInput;
|
|
9680
|
+
};
|
|
9681
|
+
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
9682
|
+
input: JiraUpdateVersionReleaseDateInput;
|
|
9683
|
+
};
|
|
9684
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
9192
9685
|
id: Scalars['ID'];
|
|
9193
|
-
input:
|
|
9686
|
+
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
9194
9687
|
};
|
|
9195
9688
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9196
9689
|
__typename?: 'JiraNumberField';
|
|
@@ -9203,6 +9696,7 @@ export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConf
|
|
|
9203
9696
|
number?: Maybe<Scalars['Float']>;
|
|
9204
9697
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9205
9698
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9699
|
+
isStoryPointField?: Maybe<Scalars['Boolean']>;
|
|
9206
9700
|
};
|
|
9207
9701
|
export declare type JiraOAuthAppsApp = {
|
|
9208
9702
|
__typename?: 'JiraOAuthAppsApp';
|
|
@@ -9372,6 +9866,18 @@ export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
|
9372
9866
|
export declare type JiraOrderDirection = {
|
|
9373
9867
|
id?: Maybe<Scalars['ID']>;
|
|
9374
9868
|
};
|
|
9869
|
+
export declare type JiraOriginalTimeEstimateField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9870
|
+
__typename?: 'JiraOriginalTimeEstimateField';
|
|
9871
|
+
id: Scalars['ID'];
|
|
9872
|
+
fieldId: Scalars['String'];
|
|
9873
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9874
|
+
type: Scalars['String'];
|
|
9875
|
+
name: Scalars['String'];
|
|
9876
|
+
description?: Maybe<Scalars['String']>;
|
|
9877
|
+
originalEstimate?: Maybe<JiraEstimate>;
|
|
9878
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9879
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9880
|
+
};
|
|
9375
9881
|
export declare type JiraPageCursor = {
|
|
9376
9882
|
__typename?: 'JiraPageCursor';
|
|
9377
9883
|
cursor?: Maybe<Scalars['String']>;
|
|
@@ -9406,6 +9912,7 @@ export declare type JiraPeopleField = Node & JiraIssueField & JiraIssueFieldConf
|
|
|
9406
9912
|
type: Scalars['String'];
|
|
9407
9913
|
name: Scalars['String'];
|
|
9408
9914
|
description?: Maybe<Scalars['String']>;
|
|
9915
|
+
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
9409
9916
|
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
9410
9917
|
isMulti?: Maybe<Scalars['Boolean']>;
|
|
9411
9918
|
users?: Maybe<JiraUserConnection>;
|
|
@@ -9641,6 +10148,7 @@ export declare type JiraProject = Node & {
|
|
|
9641
10148
|
avatar?: Maybe<JiraAvatar>;
|
|
9642
10149
|
projectUrl?: Maybe<Scalars['String']>;
|
|
9643
10150
|
projectType?: Maybe<JiraProjectType>;
|
|
10151
|
+
projectStyle?: Maybe<JiraProjectStyle>;
|
|
9644
10152
|
status?: Maybe<JiraProjectStatus>;
|
|
9645
10153
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9646
10154
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
@@ -9744,6 +10252,15 @@ export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload
|
|
|
9744
10252
|
errors?: Maybe<Array<MutationError>>;
|
|
9745
10253
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9746
10254
|
};
|
|
10255
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput = {
|
|
10256
|
+
id: Scalars['ID'];
|
|
10257
|
+
};
|
|
10258
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload = {
|
|
10259
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload';
|
|
10260
|
+
success: Scalars['Boolean'];
|
|
10261
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10262
|
+
numberDeleted?: Maybe<Scalars['Int']>;
|
|
10263
|
+
};
|
|
9747
10264
|
export declare type JiraProjectAndDevOpsToolRelationshipDeleteInput = {
|
|
9748
10265
|
id: Scalars['ID'];
|
|
9749
10266
|
};
|
|
@@ -9758,7 +10275,7 @@ export declare type JiraProjectAndDevOpsToolRelationshipEdge = {
|
|
|
9758
10275
|
cursor?: Maybe<Scalars['String']>;
|
|
9759
10276
|
};
|
|
9760
10277
|
export declare type JiraProjectAndDevOpsToolRelationshipFilter = {
|
|
9761
|
-
|
|
10278
|
+
hasPropertyEqualTo?: Maybe<DevOpsContainerRelationshipEntityPropertyInput>;
|
|
9762
10279
|
};
|
|
9763
10280
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9764
10281
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
@@ -9956,24 +10473,32 @@ export declare type JiraQuery = {
|
|
|
9956
10473
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9957
10474
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9958
10475
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9959
|
-
issueContainersByType
|
|
9960
|
-
issueContainersByTypeByKey
|
|
10476
|
+
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
10477
|
+
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
9961
10478
|
issueByKey?: Maybe<JiraIssue>;
|
|
9962
10479
|
issueById?: Maybe<JiraIssue>;
|
|
9963
10480
|
issue?: Maybe<JiraIssue>;
|
|
9964
|
-
|
|
10481
|
+
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
10482
|
+
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
10483
|
+
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
10484
|
+
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
9965
10485
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9966
10486
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
9967
10487
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
10488
|
+
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
9968
10489
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
9969
|
-
getPermissionSchemeGrantsHierarchy
|
|
9970
|
-
issueHierarchyConfig
|
|
9971
|
-
issueHierarchyLimits
|
|
9972
|
-
lockedIssueTypeIds
|
|
10490
|
+
getPermissionSchemeGrantsHierarchy?: Maybe<Array<JiraPermissionGrants>>;
|
|
10491
|
+
issueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationQuery>;
|
|
10492
|
+
issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
|
|
10493
|
+
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
9973
10494
|
version?: Maybe<JiraVersionResult>;
|
|
9974
10495
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
9975
10496
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
9976
10497
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
10498
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
10499
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
10500
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
10501
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9977
10502
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9978
10503
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9979
10504
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
@@ -10036,6 +10561,12 @@ export declare type JiraQueryIssueByIdArgs = {
|
|
|
10036
10561
|
export declare type JiraQueryIssueArgs = {
|
|
10037
10562
|
id?: Maybe<Scalars['ID']>;
|
|
10038
10563
|
};
|
|
10564
|
+
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
10565
|
+
issueId: Scalars['ID'];
|
|
10566
|
+
};
|
|
10567
|
+
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
10568
|
+
issueKey: Scalars['String'];
|
|
10569
|
+
};
|
|
10039
10570
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
10040
10571
|
cloudId: Scalars['ID'];
|
|
10041
10572
|
};
|
|
@@ -10058,6 +10589,14 @@ export declare type JiraQueryGetProjectsByPermissionSchemeArgs = {
|
|
|
10058
10589
|
before?: Maybe<Scalars['String']>;
|
|
10059
10590
|
schemeId: Scalars['ID'];
|
|
10060
10591
|
};
|
|
10592
|
+
export declare type JiraQueryPermissionSchemeGrantsArgs = {
|
|
10593
|
+
first?: Maybe<Scalars['Int']>;
|
|
10594
|
+
after?: Maybe<Scalars['String']>;
|
|
10595
|
+
last?: Maybe<Scalars['Int']>;
|
|
10596
|
+
before?: Maybe<Scalars['String']>;
|
|
10597
|
+
schemeId: Scalars['ID'];
|
|
10598
|
+
permissionKey?: Maybe<Scalars['String']>;
|
|
10599
|
+
};
|
|
10061
10600
|
export declare type JiraQueryGetPermissionSchemeGrantsArgs = {
|
|
10062
10601
|
first?: Maybe<Scalars['Int']>;
|
|
10063
10602
|
after?: Maybe<Scalars['String']>;
|
|
@@ -10097,6 +10636,19 @@ export declare type JiraQueryVersionDetailPageArgs = {
|
|
|
10097
10636
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
10098
10637
|
cloudId: Scalars['ID'];
|
|
10099
10638
|
};
|
|
10639
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
10640
|
+
cloudId: Scalars['ID'];
|
|
10641
|
+
jql: Scalars['String'];
|
|
10642
|
+
};
|
|
10643
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
10644
|
+
id: Scalars['ID'];
|
|
10645
|
+
};
|
|
10646
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
10647
|
+
ids: Array<Scalars['ID']>;
|
|
10648
|
+
};
|
|
10649
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
10650
|
+
id: Scalars['ID'];
|
|
10651
|
+
};
|
|
10100
10652
|
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
10101
10653
|
cloudId: Scalars['ID'];
|
|
10102
10654
|
namespace?: Maybe<Scalars['String']>;
|
|
@@ -10252,7 +10804,16 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
10252
10804
|
after: Scalars['DateTime'];
|
|
10253
10805
|
before: Scalars['DateTime'];
|
|
10254
10806
|
};
|
|
10255
|
-
export declare type
|
|
10807
|
+
export declare type JiraRemoveRelatedWorkFromVersionInput = {
|
|
10808
|
+
versionId: Scalars['ID'];
|
|
10809
|
+
relatedWorkId: Scalars['ID'];
|
|
10810
|
+
};
|
|
10811
|
+
export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
10812
|
+
__typename?: 'JiraRemoveRelatedWorkFromVersionPayload';
|
|
10813
|
+
success: Scalars['Boolean'];
|
|
10814
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10815
|
+
};
|
|
10816
|
+
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
10256
10817
|
before?: Maybe<Scalars['String']>;
|
|
10257
10818
|
after?: Maybe<Scalars['String']>;
|
|
10258
10819
|
nodes: Array<Scalars['String']>;
|
|
@@ -10310,6 +10871,8 @@ export declare enum JiraReviewState {
|
|
|
10310
10871
|
export declare type JiraRichText = {
|
|
10311
10872
|
__typename?: 'JiraRichText';
|
|
10312
10873
|
adfValue?: Maybe<JiraAdf>;
|
|
10874
|
+
plainText?: Maybe<Scalars['String']>;
|
|
10875
|
+
wikiValue?: Maybe<Scalars['String']>;
|
|
10313
10876
|
};
|
|
10314
10877
|
export declare type JiraRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10315
10878
|
__typename?: 'JiraRichTextField';
|
|
@@ -10449,6 +11012,7 @@ export declare type JiraServiceManagementApprovalField = Node & JiraIssueField &
|
|
|
10449
11012
|
name: Scalars['String'];
|
|
10450
11013
|
description?: Maybe<Scalars['String']>;
|
|
10451
11014
|
activeApproval?: Maybe<JiraServiceManagementActiveApproval>;
|
|
11015
|
+
completedApprovals?: Maybe<Array<Maybe<JiraServiceManagementCompletedApproval>>>;
|
|
10452
11016
|
completedApprovalsConnection?: Maybe<JiraServiceManagementCompletedApprovalConnection>;
|
|
10453
11017
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
10454
11018
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -10641,6 +11205,7 @@ export declare type JiraServiceManagementMultipleSelectUserPickerField = Node &
|
|
|
10641
11205
|
type: Scalars['String'];
|
|
10642
11206
|
name: Scalars['String'];
|
|
10643
11207
|
description?: Maybe<Scalars['String']>;
|
|
11208
|
+
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
10644
11209
|
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
10645
11210
|
users?: Maybe<JiraUserConnection>;
|
|
10646
11211
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -10686,6 +11251,7 @@ export declare type JiraServiceManagementOrganizationField = Node & JiraIssueFie
|
|
|
10686
11251
|
type: Scalars['String'];
|
|
10687
11252
|
name: Scalars['String'];
|
|
10688
11253
|
description?: Maybe<Scalars['String']>;
|
|
11254
|
+
selectedOrganizations?: Maybe<Array<Maybe<JiraServiceManagementOrganization>>>;
|
|
10689
11255
|
selectedOrganizationsConnection?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
10690
11256
|
organizations?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
10691
11257
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -10714,6 +11280,7 @@ export declare type JiraServiceManagementPeopleField = Node & JiraIssueField & J
|
|
|
10714
11280
|
type: Scalars['String'];
|
|
10715
11281
|
name: Scalars['String'];
|
|
10716
11282
|
description?: Maybe<Scalars['String']>;
|
|
11283
|
+
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
10717
11284
|
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
10718
11285
|
isMulti?: Maybe<Scalars['Boolean']>;
|
|
10719
11286
|
users?: Maybe<JiraUserConnection>;
|
|
@@ -10739,7 +11306,8 @@ export declare enum JiraServiceManagementPractice {
|
|
|
10739
11306
|
ServiceRequest = "SERVICE_REQUEST",
|
|
10740
11307
|
IncidentManagement = "INCIDENT_MANAGEMENT",
|
|
10741
11308
|
ProblemManagement = "PROBLEM_MANAGEMENT",
|
|
10742
|
-
ChangeManagement = "CHANGE_MANAGEMENT"
|
|
11309
|
+
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
11310
|
+
PostIncidentReview = "POST_INCIDENT_REVIEW"
|
|
10743
11311
|
}
|
|
10744
11312
|
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10745
11313
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
@@ -10771,6 +11339,7 @@ export declare type JiraServiceManagementRequestType = Node & {
|
|
|
10771
11339
|
id: Scalars['ID'];
|
|
10772
11340
|
requestTypeId: Scalars['String'];
|
|
10773
11341
|
name?: Maybe<Scalars['String']>;
|
|
11342
|
+
key?: Maybe<Scalars['String']>;
|
|
10774
11343
|
description?: Maybe<Scalars['String']>;
|
|
10775
11344
|
helpText?: Maybe<Scalars['String']>;
|
|
10776
11345
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -10833,7 +11402,9 @@ export declare type JiraServiceManagementRespondersField = Node & JiraIssueField
|
|
|
10833
11402
|
type: Scalars['String'];
|
|
10834
11403
|
name: Scalars['String'];
|
|
10835
11404
|
description?: Maybe<Scalars['String']>;
|
|
11405
|
+
responders?: Maybe<Array<Maybe<JiraServiceManagementResponder>>>;
|
|
10836
11406
|
respondersConnection?: Maybe<JiraServiceManagementResponderConnection>;
|
|
11407
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
10837
11408
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
10838
11409
|
};
|
|
10839
11410
|
export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs = {
|
|
@@ -11098,6 +11669,7 @@ export declare type JiraSprintField = Node & JiraIssueField & JiraIssueFieldConf
|
|
|
11098
11669
|
type: Scalars['String'];
|
|
11099
11670
|
name: Scalars['String'];
|
|
11100
11671
|
description?: Maybe<Scalars['String']>;
|
|
11672
|
+
selectedSprints?: Maybe<Array<Maybe<JiraSprint>>>;
|
|
11101
11673
|
selectedSprintsConnection?: Maybe<JiraSprintConnection>;
|
|
11102
11674
|
sprints?: Maybe<JiraSprintConnection>;
|
|
11103
11675
|
searchUrl?: Maybe<Scalars['String']>;
|
|
@@ -11211,6 +11783,7 @@ export declare type JiraTeam = Node & {
|
|
|
11211
11783
|
id: Scalars['ID'];
|
|
11212
11784
|
teamId: Scalars['String'];
|
|
11213
11785
|
name?: Maybe<Scalars['String']>;
|
|
11786
|
+
description?: Maybe<Scalars['String']>;
|
|
11214
11787
|
avatar?: Maybe<JiraAvatar>;
|
|
11215
11788
|
members?: Maybe<JiraUserConnection>;
|
|
11216
11789
|
};
|
|
@@ -11309,12 +11882,44 @@ export declare type JiraUpdateCustomFilterDetailsInput = {
|
|
|
11309
11882
|
shareGrants: Array<Maybe<JiraShareableEntityShareGrantInput>>;
|
|
11310
11883
|
editGrants: Array<Maybe<JiraShareableEntityEditGrantInput>>;
|
|
11311
11884
|
};
|
|
11885
|
+
export declare type JiraUpdateCustomFilterJqlInput = {
|
|
11886
|
+
id: Scalars['ID'];
|
|
11887
|
+
jql: Scalars['String'];
|
|
11888
|
+
};
|
|
11889
|
+
export declare type JiraUpdateCustomFilterJqlPayload = Payload & {
|
|
11890
|
+
__typename?: 'JiraUpdateCustomFilterJqlPayload';
|
|
11891
|
+
success: Scalars['Boolean'];
|
|
11892
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11893
|
+
filter?: Maybe<JiraCustomFilter>;
|
|
11894
|
+
};
|
|
11312
11895
|
export declare type JiraUpdateCustomFilterPayload = Payload & {
|
|
11313
11896
|
__typename?: 'JiraUpdateCustomFilterPayload';
|
|
11314
11897
|
success: Scalars['Boolean'];
|
|
11315
11898
|
errors?: Maybe<Array<MutationError>>;
|
|
11316
11899
|
filter?: Maybe<JiraCustomFilter>;
|
|
11317
11900
|
};
|
|
11901
|
+
export declare type JiraUpdateVersionDescriptionInput = {
|
|
11902
|
+
id: Scalars['ID'];
|
|
11903
|
+
description?: Maybe<Scalars['String']>;
|
|
11904
|
+
};
|
|
11905
|
+
export declare type JiraUpdateVersionNameInput = {
|
|
11906
|
+
id: Scalars['ID'];
|
|
11907
|
+
name: Scalars['String'];
|
|
11908
|
+
};
|
|
11909
|
+
export declare type JiraUpdateVersionPayload = Payload & {
|
|
11910
|
+
__typename?: 'JiraUpdateVersionPayload';
|
|
11911
|
+
success: Scalars['Boolean'];
|
|
11912
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11913
|
+
version?: Maybe<JiraVersion>;
|
|
11914
|
+
};
|
|
11915
|
+
export declare type JiraUpdateVersionReleaseDateInput = {
|
|
11916
|
+
id: Scalars['ID'];
|
|
11917
|
+
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
11918
|
+
};
|
|
11919
|
+
export declare type JiraUpdateVersionStartDateInput = {
|
|
11920
|
+
id: Scalars['ID'];
|
|
11921
|
+
startDate?: Maybe<Scalars['DateTime']>;
|
|
11922
|
+
};
|
|
11318
11923
|
export declare type JiraUpdateVersionWarningConfigInput = {
|
|
11319
11924
|
jiraProjectId: Scalars['ID'];
|
|
11320
11925
|
updatedVersionWarningConfig: JiraVersionUpdatedWarningConfigInput;
|
|
@@ -11385,6 +11990,9 @@ export declare type JiraVersion = Node & {
|
|
|
11385
11990
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
11386
11991
|
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
11387
11992
|
issues?: Maybe<JiraIssueConnection>;
|
|
11993
|
+
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
11994
|
+
suggestedRelatedWorkCategories?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
11995
|
+
canEdit?: Maybe<Scalars['Boolean']>;
|
|
11388
11996
|
};
|
|
11389
11997
|
export declare type JiraVersionIssuesArgs = {
|
|
11390
11998
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -11393,6 +12001,12 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
11393
12001
|
before?: Maybe<Scalars['String']>;
|
|
11394
12002
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
11395
12003
|
};
|
|
12004
|
+
export declare type JiraVersionRelatedWorkArgs = {
|
|
12005
|
+
first?: Maybe<Scalars['Int']>;
|
|
12006
|
+
after?: Maybe<Scalars['String']>;
|
|
12007
|
+
last?: Maybe<Scalars['Int']>;
|
|
12008
|
+
before?: Maybe<Scalars['String']>;
|
|
12009
|
+
};
|
|
11396
12010
|
export declare type JiraVersionConnectAddonIframeData = {
|
|
11397
12011
|
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
11398
12012
|
appKey?: Maybe<Scalars['String']>;
|
|
@@ -11444,6 +12058,25 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
11444
12058
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
11445
12059
|
FailingBuild = "FAILING_BUILD"
|
|
11446
12060
|
}
|
|
12061
|
+
export declare type JiraVersionRelatedWork = {
|
|
12062
|
+
__typename?: 'JiraVersionRelatedWork';
|
|
12063
|
+
relatedWorkId?: Maybe<Scalars['ID']>;
|
|
12064
|
+
url?: Maybe<Scalars['URL']>;
|
|
12065
|
+
title?: Maybe<Scalars['String']>;
|
|
12066
|
+
category?: Maybe<Scalars['String']>;
|
|
12067
|
+
addedOn?: Maybe<Scalars['DateTime']>;
|
|
12068
|
+
addedBy?: Maybe<User>;
|
|
12069
|
+
};
|
|
12070
|
+
export declare type JiraVersionRelatedWorkConnection = {
|
|
12071
|
+
__typename?: 'JiraVersionRelatedWorkConnection';
|
|
12072
|
+
pageInfo: PageInfo;
|
|
12073
|
+
edges?: Maybe<Array<Maybe<JiraVersionRelatedWorkEdge>>>;
|
|
12074
|
+
};
|
|
12075
|
+
export declare type JiraVersionRelatedWorkEdge = {
|
|
12076
|
+
__typename?: 'JiraVersionRelatedWorkEdge';
|
|
12077
|
+
cursor?: Maybe<Scalars['String']>;
|
|
12078
|
+
node?: Maybe<JiraVersionRelatedWork>;
|
|
12079
|
+
};
|
|
11447
12080
|
export declare type JiraVersionResult = JiraVersion | QueryError;
|
|
11448
12081
|
export declare enum JiraVersionStatus {
|
|
11449
12082
|
Released = "RELEASED",
|
|
@@ -11652,6 +12285,7 @@ export declare type MarketplaceAppPrograms = {
|
|
|
11652
12285
|
};
|
|
11653
12286
|
export declare type MarketplaceAppReviewSummary = {
|
|
11654
12287
|
__typename?: 'MarketplaceAppReviewSummary';
|
|
12288
|
+
score?: Maybe<Scalars['Float']>;
|
|
11655
12289
|
rating?: Maybe<Scalars['Float']>;
|
|
11656
12290
|
count?: Maybe<Scalars['Int']>;
|
|
11657
12291
|
};
|
|
@@ -12004,6 +12638,7 @@ export declare type Mutation = {
|
|
|
12004
12638
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
12005
12639
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
12006
12640
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
12641
|
+
deleteDevOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload>;
|
|
12007
12642
|
shepherd?: Maybe<ShepherdMutation>;
|
|
12008
12643
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
12009
12644
|
jsw?: Maybe<JswMutation>;
|
|
@@ -12093,6 +12728,8 @@ export declare type Mutation = {
|
|
|
12093
12728
|
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
12094
12729
|
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
12095
12730
|
createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
|
|
12731
|
+
updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
|
|
12732
|
+
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
12096
12733
|
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
12097
12734
|
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
12098
12735
|
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
@@ -12150,6 +12787,9 @@ export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
|
12150
12787
|
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
12151
12788
|
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
12152
12789
|
};
|
|
12790
|
+
export declare type MutationDeleteDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
12791
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput;
|
|
12792
|
+
};
|
|
12153
12793
|
export declare type MutationHelpObjectStoreArgs = {
|
|
12154
12794
|
cloudId: Scalars['ID'];
|
|
12155
12795
|
};
|
|
@@ -12419,6 +13059,12 @@ export declare type MutationDeletePolarisDecorationArgs = {
|
|
|
12419
13059
|
export declare type MutationCreatePolarisIdeaTemplateArgs = {
|
|
12420
13060
|
input: CreatePolarisIdeaTemplateInput;
|
|
12421
13061
|
};
|
|
13062
|
+
export declare type MutationUpdatePolarisIdeaTemplateArgs = {
|
|
13063
|
+
input: UpdatePolarisIdeaTemplateInput;
|
|
13064
|
+
};
|
|
13065
|
+
export declare type MutationDeletePolarisIdeaTemplateArgs = {
|
|
13066
|
+
input: DeletePolarisIdeaTemplateInput;
|
|
13067
|
+
};
|
|
12422
13068
|
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
12423
13069
|
project: Scalars['ID'];
|
|
12424
13070
|
idea: Scalars['ID'];
|
|
@@ -13022,6 +13668,8 @@ export declare type PolarisIdeaDocumentField = PolarisIdeaField & {
|
|
|
13022
13668
|
export declare type PolarisIdeaField = {
|
|
13023
13669
|
id: Scalars['ID'];
|
|
13024
13670
|
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
13671
|
+
fieldId?: Maybe<Scalars['Int']>;
|
|
13672
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
13025
13673
|
label: Scalars['String'];
|
|
13026
13674
|
editable: Scalars['Boolean'];
|
|
13027
13675
|
sortable: Scalars['Boolean'];
|
|
@@ -13887,6 +14535,7 @@ export declare type Query = {
|
|
|
13887
14535
|
movie?: Maybe<TestingMovie>;
|
|
13888
14536
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
13889
14537
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
14538
|
+
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
13890
14539
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13891
14540
|
polarisProject?: Maybe<PolarisProject>;
|
|
13892
14541
|
polarisView?: Maybe<PolarisView>;
|
|
@@ -14118,6 +14767,12 @@ export declare type QueryAppStoredEntitiesArgs = {
|
|
|
14118
14767
|
first?: Maybe<Scalars['Int']>;
|
|
14119
14768
|
after?: Maybe<Scalars['String']>;
|
|
14120
14769
|
};
|
|
14770
|
+
export declare type QueryAppStoredEntitiesForCleanupArgs = {
|
|
14771
|
+
contextAri: Scalars['ID'];
|
|
14772
|
+
where?: Maybe<Array<AppStoredEntityFilter>>;
|
|
14773
|
+
first?: Maybe<Scalars['Int']>;
|
|
14774
|
+
after?: Maybe<Scalars['String']>;
|
|
14775
|
+
};
|
|
14121
14776
|
export declare type QueryPolarisProjectArgs = {
|
|
14122
14777
|
id: Scalars['ID'];
|
|
14123
14778
|
skipRefresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -14392,6 +15047,7 @@ export declare type RoadmapBoardConfiguration = {
|
|
|
14392
15047
|
sprints?: Maybe<Array<RoadmapSprint>>;
|
|
14393
15048
|
isBoardJqlFilteringOutEpics?: Maybe<Scalars['Boolean']>;
|
|
14394
15049
|
isSprintsFeatureEnabled?: Maybe<Scalars['Boolean']>;
|
|
15050
|
+
isChildIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
14395
15051
|
};
|
|
14396
15052
|
export declare type RoadmapComponent = {
|
|
14397
15053
|
__typename?: 'RoadmapComponent';
|
|
@@ -14405,6 +15061,7 @@ export declare type RoadmapConfiguration = {
|
|
|
14405
15061
|
rankIssuesSupported: Scalars['Boolean'];
|
|
14406
15062
|
dependencies?: Maybe<RoadmapDependencyConfiguration>;
|
|
14407
15063
|
externalConfiguration?: Maybe<RoadmapExternalConfiguration>;
|
|
15064
|
+
projectConfigurations: Array<RoadmapProjectConfiguration>;
|
|
14408
15065
|
projectConfiguration?: Maybe<RoadmapProjectConfiguration>;
|
|
14409
15066
|
statusCategories: Array<RoadmapStatusCategory>;
|
|
14410
15067
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
@@ -14432,6 +15089,9 @@ export declare type RoadmapDependencyConfiguration = {
|
|
|
14432
15089
|
};
|
|
14433
15090
|
export declare type RoadmapDetails = {
|
|
14434
15091
|
__typename?: 'RoadmapDetails';
|
|
15092
|
+
roadmapConfiguration?: Maybe<RoadmapConfiguration>;
|
|
15093
|
+
roadmapItems?: Maybe<RoadmapItemConnection>;
|
|
15094
|
+
metadata?: Maybe<RoadmapMetadata>;
|
|
14435
15095
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
14436
15096
|
healthcheck?: Maybe<RoadmapHealthCheck>;
|
|
14437
15097
|
content?: Maybe<RoadmapContent>;
|
|
@@ -14448,6 +15108,7 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
14448
15108
|
startDateField?: Maybe<Scalars['ID']>;
|
|
14449
15109
|
dueDateField?: Maybe<Scalars['ID']>;
|
|
14450
15110
|
rankField?: Maybe<Scalars['ID']>;
|
|
15111
|
+
epicLinkField?: Maybe<Scalars['ID']>;
|
|
14451
15112
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
14452
15113
|
sprintField?: Maybe<Scalars['ID']>;
|
|
14453
15114
|
};
|
|
@@ -14499,7 +15160,9 @@ export declare type RoadmapItem = {
|
|
|
14499
15160
|
summary?: Maybe<Scalars['String']>;
|
|
14500
15161
|
assignee?: Maybe<User>;
|
|
14501
15162
|
dueDate?: Maybe<Scalars['DateTime']>;
|
|
15163
|
+
dueDateRFC3339?: Maybe<Scalars['Date']>;
|
|
14502
15164
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
15165
|
+
startDateRFC3339?: Maybe<Scalars['Date']>;
|
|
14503
15166
|
status?: Maybe<RoadmapItemStatus>;
|
|
14504
15167
|
statusCategory?: Maybe<RoadmapItemStatusCategory>;
|
|
14505
15168
|
createdDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -14548,6 +15211,7 @@ export declare type RoadmapItemType = {
|
|
|
14548
15211
|
iconUrl?: Maybe<Scalars['String']>;
|
|
14549
15212
|
name?: Maybe<Scalars['String']>;
|
|
14550
15213
|
subtask: Scalars['Boolean'];
|
|
15214
|
+
avatarId?: Maybe<Scalars['ID']>;
|
|
14551
15215
|
requiredFieldIds?: Maybe<Array<Scalars['ID']>>;
|
|
14552
15216
|
};
|
|
14553
15217
|
export declare enum RoadmapLevelOneView {
|
|
@@ -14630,6 +15294,7 @@ export declare type RoadmapProjectValidation = {
|
|
|
14630
15294
|
hasAllFieldAssociations: Scalars['Boolean'];
|
|
14631
15295
|
hasEpicIssueType: Scalars['Boolean'];
|
|
14632
15296
|
hasValidHierarchy: Scalars['Boolean'];
|
|
15297
|
+
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
14633
15298
|
};
|
|
14634
15299
|
export declare type RoadmapPromoteLevelOneIssueType = {
|
|
14635
15300
|
promoteItemTypeId: Scalars['ID'];
|
|
@@ -14671,7 +15336,9 @@ export declare type RoadmapSprint = {
|
|
|
14671
15336
|
id: Scalars['ID'];
|
|
14672
15337
|
name: Scalars['String'];
|
|
14673
15338
|
startDate: Scalars['String'];
|
|
15339
|
+
startDateRFC3339: Scalars['Date'];
|
|
14674
15340
|
endDate: Scalars['String'];
|
|
15341
|
+
endDateRFC3339: Scalars['Date'];
|
|
14675
15342
|
state: RoadmapSprintState;
|
|
14676
15343
|
};
|
|
14677
15344
|
export declare enum RoadmapSprintState {
|
|
@@ -14727,6 +15394,21 @@ export declare type RoadmapUpdateItemResponse = {
|
|
|
14727
15394
|
__typename?: 'RoadmapUpdateItemResponse';
|
|
14728
15395
|
item?: Maybe<RoadmapItem>;
|
|
14729
15396
|
};
|
|
15397
|
+
export declare type RoadmapUpdateSettingsInput = {
|
|
15398
|
+
roadmapEnabled?: Maybe<Scalars['Boolean']>;
|
|
15399
|
+
childIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
15400
|
+
};
|
|
15401
|
+
export declare type RoadmapUpdateSettingsOutput = {
|
|
15402
|
+
__typename?: 'RoadmapUpdateSettingsOutput';
|
|
15403
|
+
roadmapEnabled?: Maybe<Scalars['Boolean']>;
|
|
15404
|
+
childIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
15405
|
+
};
|
|
15406
|
+
export declare type RoadmapUpdateSettingsPayload = Payload & {
|
|
15407
|
+
__typename?: 'RoadmapUpdateSettingsPayload';
|
|
15408
|
+
success: Scalars['Boolean'];
|
|
15409
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15410
|
+
output?: Maybe<RoadmapUpdateSettingsOutput>;
|
|
15411
|
+
};
|
|
14730
15412
|
export declare type RoadmapUserConfiguration = {
|
|
14731
15413
|
__typename?: 'RoadmapUserConfiguration';
|
|
14732
15414
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -14735,6 +15417,8 @@ export declare type RoadmapUserConfiguration = {
|
|
|
14735
15417
|
isProgressVisible: Scalars['Boolean'];
|
|
14736
15418
|
listWidth: Scalars['Long'];
|
|
14737
15419
|
timelineMode: RoadmapTimelineMode;
|
|
15420
|
+
epicView: RoadmapEpicView;
|
|
15421
|
+
levelOneView: RoadmapLevelOneView;
|
|
14738
15422
|
levelOneViewSettings: RoadmapViewSettings;
|
|
14739
15423
|
isReleasesVisible: Scalars['Boolean'];
|
|
14740
15424
|
highlightedVersions: Array<Scalars['ID']>;
|
|
@@ -14760,6 +15444,7 @@ export declare type RoadmapsMutation = {
|
|
|
14760
15444
|
__typename?: 'RoadmapsMutation';
|
|
14761
15445
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
14762
15446
|
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
15447
|
+
updateRoadmapSettings?: Maybe<RoadmapUpdateSettingsPayload>;
|
|
14763
15448
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
14764
15449
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
14765
15450
|
scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
|
|
@@ -14773,6 +15458,10 @@ export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
|
14773
15458
|
sourceARI: Scalars['ID'];
|
|
14774
15459
|
input: RoadmapResolveHealthcheckInput;
|
|
14775
15460
|
};
|
|
15461
|
+
export declare type RoadmapsMutationUpdateRoadmapSettingsArgs = {
|
|
15462
|
+
sourceARI: Scalars['ID'];
|
|
15463
|
+
input: RoadmapUpdateSettingsInput;
|
|
15464
|
+
};
|
|
14776
15465
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
14777
15466
|
sourceARI: Scalars['ID'];
|
|
14778
15467
|
input: RoadmapAddItemInput;
|
|
@@ -14896,9 +15585,261 @@ export declare enum Scope {
|
|
|
14896
15585
|
ManageJiraConfiguration = "MANAGE_JIRA_CONFIGURATION",
|
|
14897
15586
|
JiraAtlassianExternal = "JIRA_ATLASSIAN_EXTERNAL",
|
|
14898
15587
|
ManageJiraDataProvider = "MANAGE_JIRA_DATA_PROVIDER",
|
|
15588
|
+
ManageJiraWebhook = "MANAGE_JIRA_WEBHOOK",
|
|
15589
|
+
ApplicationRoleRead = "APPLICATION_ROLE_READ",
|
|
15590
|
+
AuditLogRead = "AUDIT_LOG_READ",
|
|
15591
|
+
AsyncTaskDelete = "ASYNC_TASK_DELETE",
|
|
15592
|
+
AttachmentDelete = "ATTACHMENT_DELETE",
|
|
15593
|
+
AttachmentRead = "ATTACHMENT_READ",
|
|
15594
|
+
AttachmentWrite = "ATTACHMENT_WRITE",
|
|
15595
|
+
AvatarDelete = "AVATAR_DELETE",
|
|
15596
|
+
AvatarRead = "AVATAR_READ",
|
|
15597
|
+
AvatarWrite = "AVATAR_WRITE",
|
|
15598
|
+
CommentDelete = "COMMENT_DELETE",
|
|
15599
|
+
CommentPropertyDelete = "COMMENT_PROPERTY_DELETE",
|
|
15600
|
+
CommentPropertyRead = "COMMENT_PROPERTY_READ",
|
|
15601
|
+
CommentPropertyWrite = "COMMENT_PROPERTY_WRITE",
|
|
15602
|
+
CommentRead = "COMMENT_READ",
|
|
15603
|
+
CommentWrite = "COMMENT_WRITE",
|
|
15604
|
+
CustomFieldContextualConfigurationRead = "CUSTOM_FIELD_CONTEXTUAL_CONFIGURATION_READ",
|
|
15605
|
+
CustomFieldContextualConfigurationWrite = "CUSTOM_FIELD_CONTEXTUAL_CONFIGURATION_WRITE",
|
|
15606
|
+
DashboardDelete = "DASHBOARD_DELETE",
|
|
15607
|
+
DashboardPropertyDelete = "DASHBOARD_PROPERTY_DELETE",
|
|
15608
|
+
DashboardPropertyRead = "DASHBOARD_PROPERTY_READ",
|
|
15609
|
+
DashboardPropertyWrite = "DASHBOARD_PROPERTY_WRITE",
|
|
15610
|
+
DashboardRead = "DASHBOARD_READ",
|
|
15611
|
+
DashboardWrite = "DASHBOARD_WRITE",
|
|
15612
|
+
FieldConfigurationSchemeDelete = "FIELD_CONFIGURATION_SCHEME_DELETE",
|
|
15613
|
+
FieldConfigurationSchemeRead = "FIELD_CONFIGURATION_SCHEME_READ",
|
|
15614
|
+
FieldConfigurationSchemeWrite = "FIELD_CONFIGURATION_SCHEME_WRITE",
|
|
15615
|
+
FieldConfigurationDelete = "FIELD_CONFIGURATION_DELETE",
|
|
15616
|
+
FieldConfigurationRead = "FIELD_CONFIGURATION_READ",
|
|
15617
|
+
FieldConfigurationWrite = "FIELD_CONFIGURATION_WRITE",
|
|
15618
|
+
FieldDefaultValueRead = "FIELD_DEFAULT_VALUE_READ",
|
|
15619
|
+
FieldDefaultValueWrite = "FIELD_DEFAULT_VALUE_WRITE",
|
|
15620
|
+
FieldDelete = "FIELD_DELETE",
|
|
15621
|
+
FieldOptionsRead = "FIELD_OPTIONS_READ",
|
|
15622
|
+
FieldOptionDelete = "FIELD_OPTION_DELETE",
|
|
15623
|
+
FieldOptionRead = "FIELD_OPTION_READ",
|
|
15624
|
+
FieldOptionWrite = "FIELD_OPTION_WRITE",
|
|
15625
|
+
FieldRead = "FIELD_READ",
|
|
15626
|
+
FieldWrite = "FIELD_WRITE",
|
|
15627
|
+
FilterColumnDelete = "FILTER_COLUMN_DELETE",
|
|
15628
|
+
FilterColumnRead = "FILTER_COLUMN_READ",
|
|
15629
|
+
FilterColumnWrite = "FILTER_COLUMN_WRITE",
|
|
15630
|
+
FilterDefaultShareScopeRead = "FILTER_DEFAULT_SHARE_SCOPE_READ",
|
|
15631
|
+
FilterDefaultShareScopeWrite = "FILTER_DEFAULT_SHARE_SCOPE_WRITE",
|
|
15632
|
+
FilterDelete = "FILTER_DELETE",
|
|
15633
|
+
FilterRead = "FILTER_READ",
|
|
15634
|
+
FilterWrite = "FILTER_WRITE",
|
|
15635
|
+
GroupDelete = "GROUP_DELETE",
|
|
15636
|
+
GroupRead = "GROUP_READ",
|
|
15637
|
+
GroupWrite = "GROUP_WRITE",
|
|
15638
|
+
InstanceConfigurationRead = "INSTANCE_CONFIGURATION_READ",
|
|
15639
|
+
InstanceConfigurationWrite = "INSTANCE_CONFIGURATION_WRITE",
|
|
15640
|
+
IssueAdjustmentsRead = "ISSUE_ADJUSTMENTS_READ",
|
|
15641
|
+
IssueAdjustmentsWrite = "ISSUE_ADJUSTMENTS_WRITE",
|
|
15642
|
+
IssueAdjustmentsDelete = "ISSUE_ADJUSTMENTS_DELETE",
|
|
15643
|
+
IssueEventRead = "ISSUE_EVENT_READ",
|
|
15644
|
+
IssueFieldValuesRead = "ISSUE_FIELD_VALUES_READ",
|
|
15645
|
+
IssueChangelogRead = "ISSUE_CHANGELOG_READ",
|
|
15646
|
+
IssueDelete = "ISSUE_DELETE",
|
|
15647
|
+
IssueDetailsRead = "ISSUE_DETAILS_READ",
|
|
15648
|
+
IssueLinkDelete = "ISSUE_LINK_DELETE",
|
|
15649
|
+
IssueLinkTypeDelete = "ISSUE_LINK_TYPE_DELETE",
|
|
15650
|
+
IssueLinkTypeRead = "ISSUE_LINK_TYPE_READ",
|
|
15651
|
+
IssueLinkTypeWrite = "ISSUE_LINK_TYPE_WRITE",
|
|
15652
|
+
IssueLinkRead = "ISSUE_LINK_READ",
|
|
15653
|
+
IssueLinkWrite = "ISSUE_LINK_WRITE",
|
|
15654
|
+
IssuePropertyDelete = "ISSUE_PROPERTY_DELETE",
|
|
15655
|
+
IssuePropertyRead = "ISSUE_PROPERTY_READ",
|
|
15656
|
+
IssuePropertyWrite = "ISSUE_PROPERTY_WRITE",
|
|
15657
|
+
IssueRead = "ISSUE_READ",
|
|
15658
|
+
IssueRemoteLinkDelete = "ISSUE_REMOTE_LINK_DELETE",
|
|
15659
|
+
IssueRemoteLinkRead = "ISSUE_REMOTE_LINK_READ",
|
|
15660
|
+
IssueRemoteLinkWrite = "ISSUE_REMOTE_LINK_WRITE",
|
|
15661
|
+
IssueSecurityLevelRead = "ISSUE_SECURITY_LEVEL_READ",
|
|
15662
|
+
IssueSecuritySchemeRead = "ISSUE_SECURITY_SCHEME_READ",
|
|
15663
|
+
IssueStatusRead = "ISSUE_STATUS_READ",
|
|
15664
|
+
IssueTimeTrackingRead = "ISSUE_TIME_TRACKING_READ",
|
|
15665
|
+
IssueTimeTrackingWrite = "ISSUE_TIME_TRACKING_WRITE",
|
|
15666
|
+
IssueTransitionRead = "ISSUE_TRANSITION_READ",
|
|
15667
|
+
IssueTypeDelete = "ISSUE_TYPE_DELETE",
|
|
15668
|
+
IssueTypeHierarchyRead = "ISSUE_TYPE_HIERARCHY_READ",
|
|
15669
|
+
IssueTypePropertyDelete = "ISSUE_TYPE_PROPERTY_DELETE",
|
|
15670
|
+
IssueTypePropertyRead = "ISSUE_TYPE_PROPERTY_READ",
|
|
15671
|
+
IssueTypePropertyWrite = "ISSUE_TYPE_PROPERTY_WRITE",
|
|
15672
|
+
IssueTypeRead = "ISSUE_TYPE_READ",
|
|
15673
|
+
IssueTypeSchemeDelete = "ISSUE_TYPE_SCHEME_DELETE",
|
|
15674
|
+
IssueTypeSchemeRead = "ISSUE_TYPE_SCHEME_READ",
|
|
15675
|
+
IssueTypeSchemeWrite = "ISSUE_TYPE_SCHEME_WRITE",
|
|
15676
|
+
IssueTypeScreenSchemeDelete = "ISSUE_TYPE_SCREEN_SCHEME_DELETE",
|
|
15677
|
+
IssueTypeScreenSchemeRead = "ISSUE_TYPE_SCREEN_SCHEME_READ",
|
|
15678
|
+
IssueTypeScreenSchemeWrite = "ISSUE_TYPE_SCREEN_SCHEME_WRITE",
|
|
15679
|
+
IssueTypeWrite = "ISSUE_TYPE_WRITE",
|
|
15680
|
+
IssueVotesRead = "ISSUE_VOTES_READ",
|
|
15681
|
+
IssueVoteRead = "ISSUE_VOTE_READ",
|
|
15682
|
+
IssueVoteWrite = "ISSUE_VOTE_WRITE",
|
|
15683
|
+
IssueWatcherRead = "ISSUE_WATCHER_READ",
|
|
15684
|
+
IssueWatcherWrite = "ISSUE_WATCHER_WRITE",
|
|
15685
|
+
IssueWorklogDelete = "ISSUE_WORKLOG_DELETE",
|
|
15686
|
+
IssueWorklogPropertyDelete = "ISSUE_WORKLOG_PROPERTY_DELETE",
|
|
15687
|
+
IssueWorklogPropertyRead = "ISSUE_WORKLOG_PROPERTY_READ",
|
|
15688
|
+
IssueWorklogPropertyWrite = "ISSUE_WORKLOG_PROPERTY_WRITE",
|
|
15689
|
+
IssueWorklogRead = "ISSUE_WORKLOG_READ",
|
|
15690
|
+
IssueWorklogWrite = "ISSUE_WORKLOG_WRITE",
|
|
15691
|
+
IssueWrite = "ISSUE_WRITE",
|
|
15692
|
+
IssueMetaRead = "ISSUE_META_READ",
|
|
15693
|
+
JqlRead = "JQL_READ",
|
|
15694
|
+
JqlValidate = "JQL_VALIDATE",
|
|
15695
|
+
LabelRead = "LABEL_READ",
|
|
15696
|
+
LicenseRead = "LICENSE_READ",
|
|
15697
|
+
NotificationSchemeRead = "NOTIFICATION_SCHEME_READ",
|
|
15698
|
+
NotificationSend = "NOTIFICATION_SEND",
|
|
15699
|
+
PermissionDelete = "PERMISSION_DELETE",
|
|
15700
|
+
PermissionRead = "PERMISSION_READ",
|
|
15701
|
+
PermissionSchemeDelete = "PERMISSION_SCHEME_DELETE",
|
|
15702
|
+
PermissionSchemeRead = "PERMISSION_SCHEME_READ",
|
|
15703
|
+
PermissionSchemeWrite = "PERMISSION_SCHEME_WRITE",
|
|
15704
|
+
PermissionWrite = "PERMISSION_WRITE",
|
|
15705
|
+
PriorityRead = "PRIORITY_READ",
|
|
15706
|
+
ProjectAvatarDelete = "PROJECT_AVATAR_DELETE",
|
|
15707
|
+
ProjectAvatarRead = "PROJECT_AVATAR_READ",
|
|
15708
|
+
ProjectAvatarWrite = "PROJECT_AVATAR_WRITE",
|
|
15709
|
+
ProjectCategoryDelete = "PROJECT_CATEGORY_DELETE",
|
|
15710
|
+
ProjectCategoryRead = "PROJECT_CATEGORY_READ",
|
|
15711
|
+
ProjectCategoryWrite = "PROJECT_CATEGORY_WRITE",
|
|
15712
|
+
ProjectComponentDelete = "PROJECT_COMPONENT_DELETE",
|
|
15713
|
+
ProjectComponentRead = "PROJECT_COMPONENT_READ",
|
|
15714
|
+
ProjectComponentWrite = "PROJECT_COMPONENT_WRITE",
|
|
15715
|
+
ProjectEmailRead = "PROJECT_EMAIL_READ",
|
|
15716
|
+
ProjectEmailWrite = "PROJECT_EMAIL_WRITE",
|
|
15717
|
+
ProjectFeatureRead = "PROJECT_FEATURE_READ",
|
|
15718
|
+
ProjectFeatureWrite = "PROJECT_FEATURE_WRITE",
|
|
15719
|
+
ProjectPropertyDelete = "PROJECT_PROPERTY_DELETE",
|
|
15720
|
+
ProjectPropertyRead = "PROJECT_PROPERTY_READ",
|
|
15721
|
+
ProjectPropertyWrite = "PROJECT_PROPERTY_WRITE",
|
|
15722
|
+
ProjectRoleDelete = "PROJECT_ROLE_DELETE",
|
|
15723
|
+
ProjectRoleRead = "PROJECT_ROLE_READ",
|
|
15724
|
+
ProjectRoleWrite = "PROJECT_ROLE_WRITE",
|
|
15725
|
+
ProjectTypeRead = "PROJECT_TYPE_READ",
|
|
15726
|
+
ProjectVersionDelete = "PROJECT_VERSION_DELETE",
|
|
15727
|
+
ProjectVersionRead = "PROJECT_VERSION_READ",
|
|
15728
|
+
ProjectVersionWrite = "PROJECT_VERSION_WRITE",
|
|
15729
|
+
ProjectDelete = "PROJECT_DELETE",
|
|
15730
|
+
ProjectRead = "PROJECT_READ",
|
|
15731
|
+
ProjectWrite = "PROJECT_WRITE",
|
|
15732
|
+
ResolutionRead = "RESOLUTION_READ",
|
|
15733
|
+
ScreenableFieldDelete = "SCREENABLE_FIELD_DELETE",
|
|
15734
|
+
ScreenableFieldRead = "SCREENABLE_FIELD_READ",
|
|
15735
|
+
ScreenableFieldWrite = "SCREENABLE_FIELD_WRITE",
|
|
15736
|
+
ScreenDelete = "SCREEN_DELETE",
|
|
15737
|
+
ScreenFieldRead = "SCREEN_FIELD_READ",
|
|
15738
|
+
ScreenRead = "SCREEN_READ",
|
|
15739
|
+
ScreenSchemeDelete = "SCREEN_SCHEME_DELETE",
|
|
15740
|
+
ScreenSchemeRead = "SCREEN_SCHEME_READ",
|
|
15741
|
+
ScreenSchemeWrite = "SCREEN_SCHEME_WRITE",
|
|
15742
|
+
ScreenTabDelete = "SCREEN_TAB_DELETE",
|
|
15743
|
+
ScreenTabRead = "SCREEN_TAB_READ",
|
|
15744
|
+
ScreenTabWrite = "SCREEN_TAB_WRITE",
|
|
15745
|
+
ScreenWrite = "SCREEN_WRITE",
|
|
15746
|
+
StatusRead = "STATUS_READ",
|
|
15747
|
+
UserColumnsRead = "USER_COLUMNS_READ",
|
|
15748
|
+
UserConfigurationDelete = "USER_CONFIGURATION_DELETE",
|
|
15749
|
+
UserConfigurationRead = "USER_CONFIGURATION_READ",
|
|
15750
|
+
UserConfigurationWrite = "USER_CONFIGURATION_WRITE",
|
|
15751
|
+
UserPropertyDelete = "USER_PROPERTY_DELETE",
|
|
15752
|
+
UserPropertyRead = "USER_PROPERTY_READ",
|
|
15753
|
+
UserPropertyWrite = "USER_PROPERTY_WRITE",
|
|
15754
|
+
UserRead = "USER_READ",
|
|
15755
|
+
WebhookRead = "WEBHOOK_READ",
|
|
15756
|
+
WebhookWrite = "WEBHOOK_WRITE",
|
|
15757
|
+
WebhookDelete = "WEBHOOK_DELETE",
|
|
15758
|
+
WorkflowDelete = "WORKFLOW_DELETE",
|
|
15759
|
+
WorkflowPropertyDelete = "WORKFLOW_PROPERTY_DELETE",
|
|
15760
|
+
WorkflowPropertyRead = "WORKFLOW_PROPERTY_READ",
|
|
15761
|
+
WorkflowPropertyWrite = "WORKFLOW_PROPERTY_WRITE",
|
|
15762
|
+
WorkflowRead = "WORKFLOW_READ",
|
|
15763
|
+
WorkflowSchemeDelete = "WORKFLOW_SCHEME_DELETE",
|
|
15764
|
+
WorkflowSchemeRead = "WORKFLOW_SCHEME_READ",
|
|
15765
|
+
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
15766
|
+
WorkflowWrite = "WORKFLOW_WRITE",
|
|
15767
|
+
JiraExpressionsRead = "JIRA_EXPRESSIONS_READ",
|
|
14899
15768
|
ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
|
|
14900
15769
|
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
|
|
14901
15770
|
ManageServicedeskCustomer = "MANAGE_SERVICEDESK_CUSTOMER",
|
|
15771
|
+
ReadCustomer = "READ_CUSTOMER",
|
|
15772
|
+
WriteCustomer = "WRITE_CUSTOMER",
|
|
15773
|
+
ReadOrganization = "READ_ORGANIZATION",
|
|
15774
|
+
WriteOrganization = "WRITE_ORGANIZATION",
|
|
15775
|
+
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
15776
|
+
ReadOrganizationUser = "READ_ORGANIZATION_USER",
|
|
15777
|
+
WriteOrganizationUser = "WRITE_ORGANIZATION_USER",
|
|
15778
|
+
DeleteOrganizationUser = "DELETE_ORGANIZATION_USER",
|
|
15779
|
+
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
15780
|
+
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
15781
|
+
DeleteOrganizationProperty = "DELETE_ORGANIZATION_PROPERTY",
|
|
15782
|
+
ReadServicedesk = "READ_SERVICEDESK",
|
|
15783
|
+
WriteServicedesk = "WRITE_SERVICEDESK",
|
|
15784
|
+
ReadServicedeskOrganization = "READ_SERVICEDESK_ORGANIZATION",
|
|
15785
|
+
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
|
|
15786
|
+
DeleteServicedeskOrganization = "DELETE_SERVICEDESK_ORGANIZATION",
|
|
15787
|
+
ReadServicedeskCustomer = "READ_SERVICEDESK_CUSTOMER",
|
|
15788
|
+
WriteServicedeskCustomer = "WRITE_SERVICEDESK_CUSTOMER",
|
|
15789
|
+
DeleteServicedeskCustomer = "DELETE_SERVICEDESK_CUSTOMER",
|
|
15790
|
+
ReadServicedeskProperty = "READ_SERVICEDESK_PROPERTY",
|
|
15791
|
+
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
|
|
15792
|
+
DeleteServicedeskProperty = "DELETE_SERVICEDESK_PROPERTY",
|
|
15793
|
+
ReadRequesttype = "READ_REQUESTTYPE",
|
|
15794
|
+
WriteRequesttype = "WRITE_REQUESTTYPE",
|
|
15795
|
+
ReadRequesttypeProperty = "READ_REQUESTTYPE_PROPERTY",
|
|
15796
|
+
WriteRequesttypeProperty = "WRITE_REQUESTTYPE_PROPERTY",
|
|
15797
|
+
DeleteRequesttypeProperty = "DELETE_REQUESTTYPE_PROPERTY",
|
|
15798
|
+
ReadQueue = "READ_QUEUE",
|
|
15799
|
+
ReadRequest = "READ_REQUEST",
|
|
15800
|
+
WriteRequest = "WRITE_REQUEST",
|
|
15801
|
+
ReadRequestApproval = "READ_REQUEST_APPROVAL",
|
|
15802
|
+
WriteRequestApproval = "WRITE_REQUEST_APPROVAL",
|
|
15803
|
+
ReadRequestParticipant = "READ_REQUEST_PARTICIPANT",
|
|
15804
|
+
WriteRequestParticipant = "WRITE_REQUEST_PARTICIPANT",
|
|
15805
|
+
DeleteRequestParticipant = "DELETE_REQUEST_PARTICIPANT",
|
|
15806
|
+
ReadRequestAction = "READ_REQUEST_ACTION",
|
|
15807
|
+
ReadRequestComment = "READ_REQUEST_COMMENT",
|
|
15808
|
+
WriteRequestComment = "WRITE_REQUEST_COMMENT",
|
|
15809
|
+
ReadRequestSla = "READ_REQUEST_SLA",
|
|
15810
|
+
ReadRequestAttachment = "READ_REQUEST_ATTACHMENT",
|
|
15811
|
+
WriteRequestAttachment = "WRITE_REQUEST_ATTACHMENT",
|
|
15812
|
+
ReadRequestStatus = "READ_REQUEST_STATUS",
|
|
15813
|
+
WriteRequestStatus = "WRITE_REQUEST_STATUS",
|
|
15814
|
+
ReadRequestFeedback = "READ_REQUEST_FEEDBACK",
|
|
15815
|
+
WriteRequestFeedback = "WRITE_REQUEST_FEEDBACK",
|
|
15816
|
+
DeleteRequestFeedback = "DELETE_REQUEST_FEEDBACK",
|
|
15817
|
+
ReadRequestNotification = "READ_REQUEST_NOTIFICATION",
|
|
15818
|
+
WriteRequestNotification = "WRITE_REQUEST_NOTIFICATION",
|
|
15819
|
+
DeleteRequestNotification = "DELETE_REQUEST_NOTIFICATION",
|
|
15820
|
+
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
15821
|
+
ReadJswBoardScope = "READ_JSW_BOARD_SCOPE",
|
|
15822
|
+
WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
|
|
15823
|
+
ReadJswBoardScopeAdmin = "READ_JSW_BOARD_SCOPE_ADMIN",
|
|
15824
|
+
WriteJswBoardScopeAdmin = "WRITE_JSW_BOARD_SCOPE_ADMIN",
|
|
15825
|
+
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
15826
|
+
ReadJswEpic = "READ_JSW_EPIC",
|
|
15827
|
+
WriteJswEpic = "WRITE_JSW_EPIC",
|
|
15828
|
+
ReadJswIssue = "READ_JSW_ISSUE",
|
|
15829
|
+
WriteJswIssue = "WRITE_JSW_ISSUE",
|
|
15830
|
+
ReadJswSprint = "READ_JSW_SPRINT",
|
|
15831
|
+
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
15832
|
+
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
15833
|
+
ReadJswSourceCode = "READ_JSW_SOURCE_CODE",
|
|
15834
|
+
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
15835
|
+
ReadJswFeatureFlag = "READ_JSW_FEATURE_FLAG",
|
|
15836
|
+
WriteJswFeatureFlag = "WRITE_JSW_FEATURE_FLAG",
|
|
15837
|
+
ReadJswDeployment = "READ_JSW_DEPLOYMENT",
|
|
15838
|
+
WriteJswDeployment = "WRITE_JSW_DEPLOYMENT",
|
|
15839
|
+
ReadJswBuild = "READ_JSW_BUILD",
|
|
15840
|
+
WriteJswBuild = "WRITE_JSW_BUILD",
|
|
15841
|
+
ReadJswRemoteLink = "READ_JSW_REMOTE_LINK",
|
|
15842
|
+
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
14902
15843
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
14903
15844
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
14904
15845
|
AdminContainer = "ADMIN_CONTAINER",
|
|
@@ -14989,6 +15930,10 @@ export declare type SearchItemConnection = {
|
|
|
14989
15930
|
};
|
|
14990
15931
|
export declare type SearchJiraFilter = {
|
|
14991
15932
|
boardFilter?: Maybe<SearchBoardFilter>;
|
|
15933
|
+
projectFilter?: Maybe<SearchJiraProjectFilter>;
|
|
15934
|
+
};
|
|
15935
|
+
export declare type SearchJiraProjectFilter = {
|
|
15936
|
+
projectType?: Maybe<SearchProjectType>;
|
|
14992
15937
|
};
|
|
14993
15938
|
export declare enum SearchProjectType {
|
|
14994
15939
|
Software = "software",
|
|
@@ -15226,7 +16171,8 @@ export declare enum ShepherdAlertStatus {
|
|
|
15226
16171
|
Untriaged = "UNTRIAGED"
|
|
15227
16172
|
}
|
|
15228
16173
|
export declare enum ShepherdAlertTemplateType {
|
|
15229
|
-
|
|
16174
|
+
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
16175
|
+
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
15230
16176
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
15231
16177
|
Default = "DEFAULT",
|
|
15232
16178
|
EnabledGsyncSso = "ENABLED_GSYNC_SSO",
|
|
@@ -15334,6 +16280,7 @@ export declare type ShepherdMutation = {
|
|
|
15334
16280
|
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
15335
16281
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
15336
16282
|
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
16283
|
+
testSubscription?: Maybe<ShepherdTestSubscriptionPayload>;
|
|
15337
16284
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
15338
16285
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
15339
16286
|
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
@@ -15350,6 +16297,10 @@ export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
|
15350
16297
|
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
15351
16298
|
input: ShepherdCreateSubscriptionInput;
|
|
15352
16299
|
};
|
|
16300
|
+
export declare type ShepherdMutationTestSubscriptionArgs = {
|
|
16301
|
+
orgId: Scalars['ID'];
|
|
16302
|
+
subscriptionId: Scalars['ID'];
|
|
16303
|
+
};
|
|
15353
16304
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
15354
16305
|
id: Scalars['ID'];
|
|
15355
16306
|
input: ShepherdUpdateAlertInput;
|
|
@@ -15405,6 +16356,17 @@ export declare enum ShepherdSubscriptionStatus {
|
|
|
15405
16356
|
Inactive = "INACTIVE"
|
|
15406
16357
|
}
|
|
15407
16358
|
export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
|
|
16359
|
+
export declare type ShepherdTestSubscriptionError = {
|
|
16360
|
+
__typename?: 'ShepherdTestSubscriptionError';
|
|
16361
|
+
reason?: Maybe<Scalars['String']>;
|
|
16362
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
16363
|
+
};
|
|
16364
|
+
export declare type ShepherdTestSubscriptionPayload = Payload & {
|
|
16365
|
+
__typename?: 'ShepherdTestSubscriptionPayload';
|
|
16366
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16367
|
+
node?: Maybe<ShepherdSubscription>;
|
|
16368
|
+
success: Scalars['Boolean'];
|
|
16369
|
+
};
|
|
15408
16370
|
export declare type ShepherdUpdateAlertInput = {
|
|
15409
16371
|
assignee?: Maybe<Scalars['ID']>;
|
|
15410
16372
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -16120,6 +17082,7 @@ export declare type Testing = {
|
|
|
16120
17082
|
movie?: Maybe<TestingMovie>;
|
|
16121
17083
|
movies?: Maybe<Array<Maybe<TestingMovie>>>;
|
|
16122
17084
|
performance?: Maybe<TestingPerformance>;
|
|
17085
|
+
books?: Maybe<Array<Maybe<TestingBook>>>;
|
|
16123
17086
|
};
|
|
16124
17087
|
export declare type TestingEchoArgs = {
|
|
16125
17088
|
message?: Maybe<Scalars['String']>;
|
|
@@ -16133,6 +17096,9 @@ export declare type TestingThrowExceptionArgs = {
|
|
|
16133
17096
|
export declare type TestingMovieArgs = {
|
|
16134
17097
|
id: Scalars['ID'];
|
|
16135
17098
|
};
|
|
17099
|
+
export declare type TestingBooksArgs = {
|
|
17100
|
+
howMany?: Maybe<Scalars['Int']>;
|
|
17101
|
+
};
|
|
16136
17102
|
export declare type TestingActivityConnection = {
|
|
16137
17103
|
__typename?: 'TestingActivityConnection';
|
|
16138
17104
|
nodes: Array<Maybe<TestingActivityItem>>;
|
|
@@ -16176,6 +17142,17 @@ export declare type TestingActivityUser = {
|
|
|
16176
17142
|
name?: Maybe<Scalars['String']>;
|
|
16177
17143
|
picture?: Maybe<Scalars['String']>;
|
|
16178
17144
|
};
|
|
17145
|
+
export declare type TestingAuthor = {
|
|
17146
|
+
__typename?: 'TestingAuthor';
|
|
17147
|
+
id: Scalars['ID'];
|
|
17148
|
+
name?: Maybe<Scalars['String']>;
|
|
17149
|
+
};
|
|
17150
|
+
export declare type TestingBook = {
|
|
17151
|
+
__typename?: 'TestingBook';
|
|
17152
|
+
id: Scalars['ID'];
|
|
17153
|
+
title?: Maybe<Scalars['String']>;
|
|
17154
|
+
author?: Maybe<Array<Maybe<TestingAuthor>>>;
|
|
17155
|
+
};
|
|
16179
17156
|
export declare type TestingCharacter = {
|
|
16180
17157
|
__typename?: 'TestingCharacter';
|
|
16181
17158
|
id: Scalars['ID'];
|
|
@@ -16238,25 +17215,19 @@ export declare type TownsquareComment = Node & {
|
|
|
16238
17215
|
id: Scalars['ID'];
|
|
16239
17216
|
url?: Maybe<Scalars['String']>;
|
|
16240
17217
|
uuid?: Maybe<Scalars['String']>;
|
|
16241
|
-
|
|
17218
|
+
container?: Maybe<TownsquareCommentContainer>;
|
|
16242
17219
|
};
|
|
16243
17220
|
export declare type TownsquareCommentConnection = {
|
|
16244
17221
|
__typename?: 'TownsquareCommentConnection';
|
|
16245
17222
|
edges?: Maybe<Array<Maybe<TownsquareCommentEdge>>>;
|
|
16246
17223
|
pageInfo: PageInfo;
|
|
16247
17224
|
};
|
|
17225
|
+
export declare type TownsquareCommentContainer = TownsquareGoal | TownsquareProject;
|
|
16248
17226
|
export declare type TownsquareCommentEdge = {
|
|
16249
17227
|
__typename?: 'TownsquareCommentEdge';
|
|
16250
17228
|
cursor: Scalars['String'];
|
|
16251
17229
|
node?: Maybe<TownsquareComment>;
|
|
16252
17230
|
};
|
|
16253
|
-
export declare type TownsquareCommentObject = {
|
|
16254
|
-
__typename?: 'TownsquareCommentObject';
|
|
16255
|
-
ari?: Maybe<Scalars['String']>;
|
|
16256
|
-
iconData?: Maybe<Scalars['String']>;
|
|
16257
|
-
name?: Maybe<Scalars['String']>;
|
|
16258
|
-
url?: Maybe<Scalars['String']>;
|
|
16259
|
-
};
|
|
16260
17231
|
export declare type TownsquareGoal = Node & {
|
|
16261
17232
|
__typename?: 'TownsquareGoal';
|
|
16262
17233
|
archived: Scalars['Boolean'];
|
|
@@ -16628,6 +17599,9 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
16628
17599
|
hasDescription?: Maybe<UpdateCompassHasDescriptionScorecardCriteriaInput>;
|
|
16629
17600
|
hasOwner?: Maybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
16630
17601
|
hasMetricValue?: Maybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
17602
|
+
hasCustomTextValue?: Maybe<CompassUpdateHasCustomTextFieldScorecardCriteriaInput>;
|
|
17603
|
+
hasCustomBooleanValue?: Maybe<CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
17604
|
+
hasCustomNumberValue?: Maybe<CompassUpdateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
16631
17605
|
};
|
|
16632
17606
|
export declare type UpdateCompassScorecardCriteriasInput = {
|
|
16633
17607
|
criterias: Array<UpdateCompassScorecardCriteriaInput>;
|
|
@@ -16855,6 +17829,20 @@ export declare type UpdatePolarisIdeaPayload = Payload & {
|
|
|
16855
17829
|
errors?: Maybe<Array<MutationError>>;
|
|
16856
17830
|
node?: Maybe<PolarisIdea>;
|
|
16857
17831
|
};
|
|
17832
|
+
export declare type UpdatePolarisIdeaTemplateInput = {
|
|
17833
|
+
id: Scalars['ID'];
|
|
17834
|
+
project: Scalars['ID'];
|
|
17835
|
+
title: Scalars['String'];
|
|
17836
|
+
description?: Maybe<Scalars['String']>;
|
|
17837
|
+
color?: Maybe<Scalars['String']>;
|
|
17838
|
+
emoji?: Maybe<Scalars['String']>;
|
|
17839
|
+
template?: Maybe<Scalars['JSON']>;
|
|
17840
|
+
};
|
|
17841
|
+
export declare type UpdatePolarisIdeaTemplatePayload = Payload & {
|
|
17842
|
+
__typename?: 'UpdatePolarisIdeaTemplatePayload';
|
|
17843
|
+
success: Scalars['Boolean'];
|
|
17844
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17845
|
+
};
|
|
16858
17846
|
export declare type UpdatePolarisInsightInput = {
|
|
16859
17847
|
description?: Maybe<Scalars['JSON']>;
|
|
16860
17848
|
snippets?: Maybe<Array<UpdatePolarisSnippetInput>>;
|