@forge/cli-shared 3.1.0-next.2 → 3.1.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.1.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [1c51c99]
|
|
8
|
+
- @forge/manifest@4.2.1-next.0
|
|
9
|
+
|
|
10
|
+
## 3.1.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 89ae99e: Add support for auto-bundling resources
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [237e3c7]
|
|
19
|
+
- Updated dependencies [151c4d8]
|
|
20
|
+
- @forge/manifest@4.2.0
|
|
21
|
+
|
|
3
22
|
## 3.1.0-next.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -21,6 +21,7 @@ export declare type Scalars = {
|
|
|
21
21
|
CardTypeHierarchyLevelType: any;
|
|
22
22
|
Date: any;
|
|
23
23
|
DateTime: any;
|
|
24
|
+
JSDependency: any;
|
|
24
25
|
JSON: {
|
|
25
26
|
[key: string]: any;
|
|
26
27
|
};
|
|
@@ -2196,6 +2197,8 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
2196
2197
|
state: CompassDeploymentEventState;
|
|
2197
2198
|
pipeline: CompassDeploymentEventPipelineInput;
|
|
2198
2199
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
2200
|
+
startedAt?: Maybe<Scalars['DateTime']>;
|
|
2201
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
2199
2202
|
};
|
|
2200
2203
|
export declare type CompassCreateEventInput = {
|
|
2201
2204
|
cloudId: Scalars['ID'];
|
|
@@ -2222,14 +2225,14 @@ export declare type CompassCreateFlagEventPropertiesInput = {
|
|
|
2222
2225
|
export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
2223
2226
|
weight: Scalars['Int'];
|
|
2224
2227
|
customFieldDefinitionId: Scalars['ID'];
|
|
2225
|
-
|
|
2226
|
-
|
|
2228
|
+
booleanComparator: CompassCriteriaBooleanComparatorOptions;
|
|
2229
|
+
booleanComparatorValue: Scalars['Boolean'];
|
|
2227
2230
|
};
|
|
2228
2231
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
2229
2232
|
weight: Scalars['Int'];
|
|
2230
2233
|
customFieldDefinitionId: Scalars['ID'];
|
|
2231
|
-
|
|
2232
|
-
|
|
2234
|
+
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
2235
|
+
numberComparatorValue: Scalars['Float'];
|
|
2233
2236
|
};
|
|
2234
2237
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
2235
2238
|
weight: Scalars['Int'];
|
|
@@ -2537,6 +2540,8 @@ export declare type CompassDeploymentEventProperties = {
|
|
|
2537
2540
|
state?: Maybe<CompassDeploymentEventState>;
|
|
2538
2541
|
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
2539
2542
|
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2543
|
+
startedAt?: Maybe<Scalars['DateTime']>;
|
|
2544
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
2540
2545
|
};
|
|
2541
2546
|
export declare enum CompassDeploymentEventState {
|
|
2542
2547
|
Pending = "PENDING",
|
|
@@ -2669,8 +2674,8 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScore
|
|
|
2669
2674
|
id: Scalars['ID'];
|
|
2670
2675
|
weight: Scalars['Int'];
|
|
2671
2676
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2672
|
-
|
|
2673
|
-
|
|
2677
|
+
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2678
|
+
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2674
2679
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2675
2680
|
};
|
|
2676
2681
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -2681,8 +2686,8 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassScorec
|
|
|
2681
2686
|
id: Scalars['ID'];
|
|
2682
2687
|
weight: Scalars['Int'];
|
|
2683
2688
|
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
2684
|
-
|
|
2685
|
-
|
|
2689
|
+
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2690
|
+
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
2686
2691
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2687
2692
|
};
|
|
2688
2693
|
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -3050,6 +3055,7 @@ export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
|
3050
3055
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
3051
3056
|
nodes?: Maybe<Array<CompassComponent>>;
|
|
3052
3057
|
pageInfo: PageInfo;
|
|
3058
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
3053
3059
|
};
|
|
3054
3060
|
export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
3055
3061
|
__typename?: 'CompassScorecardAppliedToComponentsEdge';
|
|
@@ -3274,15 +3280,15 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
3274
3280
|
id: Scalars['ID'];
|
|
3275
3281
|
weight?: Maybe<Scalars['Int']>;
|
|
3276
3282
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3277
|
-
|
|
3278
|
-
|
|
3283
|
+
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3284
|
+
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3279
3285
|
};
|
|
3280
3286
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3281
3287
|
id: Scalars['ID'];
|
|
3282
3288
|
weight?: Maybe<Scalars['Int']>;
|
|
3283
3289
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3284
|
-
|
|
3285
|
-
|
|
3290
|
+
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3291
|
+
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
3286
3292
|
};
|
|
3287
3293
|
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
3288
3294
|
id: Scalars['ID'];
|
|
@@ -4808,6 +4814,8 @@ export declare type CreateDeploymentEventInput = {
|
|
|
4808
4814
|
pipeline: CompassDeploymentEventPipelineInput;
|
|
4809
4815
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
4810
4816
|
externalEventSourceId: Scalars['ID'];
|
|
4817
|
+
startedAt?: Maybe<Scalars['DateTime']>;
|
|
4818
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
4811
4819
|
};
|
|
4812
4820
|
export declare type CreateDeploymentEventsPayload = Payload & {
|
|
4813
4821
|
__typename?: 'CreateDeploymentEventsPayload';
|
|
@@ -6653,11 +6661,12 @@ export declare type FilterQuery = {
|
|
|
6653
6661
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
6654
6662
|
};
|
|
6655
6663
|
export declare type ForgeAlertsActivitiesQueryInput = {
|
|
6656
|
-
after?: Maybe<Scalars['
|
|
6664
|
+
after?: Maybe<Scalars['String']>;
|
|
6657
6665
|
endTime: Scalars['String'];
|
|
6658
6666
|
environment: Scalars['String'];
|
|
6659
6667
|
first?: Maybe<Scalars['Int']>;
|
|
6660
6668
|
startTime: Scalars['String'];
|
|
6669
|
+
onlyOpenResolvedActivityType?: Maybe<Scalars['Boolean']>;
|
|
6661
6670
|
};
|
|
6662
6671
|
export declare type ForgeAlertsActivitiesResult = ForgeAlertsActivityConnection | QueryError;
|
|
6663
6672
|
export declare type ForgeAlertsActivity = {
|
|
@@ -6671,7 +6680,7 @@ export declare type ForgeAlertsActivity = {
|
|
|
6671
6680
|
export declare type ForgeAlertsActivityConnection = {
|
|
6672
6681
|
__typename?: 'ForgeAlertsActivityConnection';
|
|
6673
6682
|
edges: Array<Maybe<ForgeAlertsActivityEdge>>;
|
|
6674
|
-
nodes: Array<
|
|
6683
|
+
nodes: Array<ForgeAlertsActivity>;
|
|
6675
6684
|
pageInfo: PageInfo;
|
|
6676
6685
|
};
|
|
6677
6686
|
export declare type ForgeAlertsActivityEdge = {
|
|
@@ -10321,6 +10330,17 @@ export declare type JiraMediaUploadToken = {
|
|
|
10321
10330
|
tokenDurationInMin?: Maybe<Scalars['Int']>;
|
|
10322
10331
|
};
|
|
10323
10332
|
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
10333
|
+
export declare type JiraMoveIssuesToFixVersionInput = {
|
|
10334
|
+
issueIds: Array<Scalars['ID']>;
|
|
10335
|
+
originalVersionId: Scalars['ID'];
|
|
10336
|
+
targetVersionId: Scalars['ID'];
|
|
10337
|
+
};
|
|
10338
|
+
export declare type JiraMoveIssuesToFixVersionPayload = Payload & {
|
|
10339
|
+
__typename?: 'JiraMoveIssuesToFixVersionPayload';
|
|
10340
|
+
originalVersion?: Maybe<JiraVersion>;
|
|
10341
|
+
success: Scalars['Boolean'];
|
|
10342
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10343
|
+
};
|
|
10324
10344
|
export declare enum JiraMultiValueFieldOperations {
|
|
10325
10345
|
Add = "ADD",
|
|
10326
10346
|
Remove = "REMOVE",
|
|
@@ -10452,6 +10472,8 @@ export declare type JiraMutation = {
|
|
|
10452
10472
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
10453
10473
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
10454
10474
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
10475
|
+
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
10476
|
+
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
10455
10477
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
10456
10478
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
10457
10479
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
@@ -10494,6 +10516,12 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
10494
10516
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
10495
10517
|
input: JiraAddIssuesToFixVersionInput;
|
|
10496
10518
|
};
|
|
10519
|
+
export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
10520
|
+
input: JiraMoveIssuesToFixVersionInput;
|
|
10521
|
+
};
|
|
10522
|
+
export declare type JiraMutationRemoveIssuesFromFixVersionArgs = {
|
|
10523
|
+
input: JiraRemoveIssuesFromFixVersionInput;
|
|
10524
|
+
};
|
|
10497
10525
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
10498
10526
|
input: JiraUpdateVersionWarningConfigInput;
|
|
10499
10527
|
};
|
|
@@ -11045,6 +11073,7 @@ export declare type JiraProject = Node & {
|
|
|
11045
11073
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
11046
11074
|
action?: Maybe<JiraProjectAction>;
|
|
11047
11075
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
11076
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
11048
11077
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
11049
11078
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
11050
11079
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -11777,6 +11806,16 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
11777
11806
|
after: Scalars['DateTime'];
|
|
11778
11807
|
before: Scalars['DateTime'];
|
|
11779
11808
|
};
|
|
11809
|
+
export declare type JiraRemoveIssuesFromFixVersionInput = {
|
|
11810
|
+
issueIds: Array<Scalars['ID']>;
|
|
11811
|
+
versionId: Scalars['ID'];
|
|
11812
|
+
};
|
|
11813
|
+
export declare type JiraRemoveIssuesFromFixVersionPayload = Payload & {
|
|
11814
|
+
__typename?: 'JiraRemoveIssuesFromFixVersionPayload';
|
|
11815
|
+
version?: Maybe<JiraVersion>;
|
|
11816
|
+
success: Scalars['Boolean'];
|
|
11817
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11818
|
+
};
|
|
11780
11819
|
export declare type JiraRemoveRelatedWorkFromVersionInput = {
|
|
11781
11820
|
versionId: Scalars['ID'];
|
|
11782
11821
|
relatedWorkId: Scalars['ID'];
|
|
@@ -12921,6 +12960,7 @@ export declare type JiraUpdateReleaseNotesConfigurationPayload = Payload & {
|
|
|
12921
12960
|
success: Scalars['Boolean'];
|
|
12922
12961
|
errors?: Maybe<Array<MutationError>>;
|
|
12923
12962
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
12963
|
+
version?: Maybe<JiraVersion>;
|
|
12924
12964
|
};
|
|
12925
12965
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
12926
12966
|
id: Scalars['ID'];
|
|
@@ -13018,6 +13058,7 @@ export declare type JiraVersion = Node & {
|
|
|
13018
13058
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
13019
13059
|
suggestedRelatedWorkCategories?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13020
13060
|
canEdit?: Maybe<Scalars['Boolean']>;
|
|
13061
|
+
canAddAndRemoveIssues?: Maybe<Scalars['Boolean']>;
|
|
13021
13062
|
releaseNotesOptionsIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
13022
13063
|
releaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
13023
13064
|
releaseNotes?: Maybe<JiraAdf>;
|
|
@@ -13426,6 +13467,7 @@ export declare type MarketplaceCloudFortified = {
|
|
|
13426
13467
|
programStatus?: Maybe<MarketplaceProgramStatus>;
|
|
13427
13468
|
};
|
|
13428
13469
|
export declare enum MarketplaceCloudFortifiedStatus {
|
|
13470
|
+
Applied = "APPLIED",
|
|
13429
13471
|
Approved = "APPROVED",
|
|
13430
13472
|
Rejected = "REJECTED",
|
|
13431
13473
|
NotAParticipant = "NOT_A_PARTICIPANT"
|
|
@@ -13493,6 +13535,8 @@ export declare type MarketplacePartner = {
|
|
|
13493
13535
|
programs?: Maybe<MarketplacePartnerPrograms>;
|
|
13494
13536
|
partnerType?: Maybe<MarketplacePartnerType>;
|
|
13495
13537
|
partnerTier?: Maybe<MarketplacePartnerTier>;
|
|
13538
|
+
logo?: Maybe<MarketplaceListingImage>;
|
|
13539
|
+
isUserContact?: Maybe<Scalars['Boolean']>;
|
|
13496
13540
|
};
|
|
13497
13541
|
export declare type MarketplacePartnerAddress = {
|
|
13498
13542
|
__typename?: 'MarketplacePartnerAddress';
|
|
@@ -13606,6 +13650,7 @@ export declare enum MarketplacePricingTierType {
|
|
|
13606
13650
|
RemoteAgentTiered = "REMOTE_AGENT_TIERED"
|
|
13607
13651
|
}
|
|
13608
13652
|
export declare enum MarketplaceProgramStatus {
|
|
13653
|
+
Applied = "APPLIED",
|
|
13609
13654
|
Approved = "APPROVED",
|
|
13610
13655
|
Rejected = "REJECTED",
|
|
13611
13656
|
NotAParticipant = "NOT_A_PARTICIPANT"
|
|
@@ -13857,6 +13902,7 @@ export declare type Mutation = {
|
|
|
13857
13902
|
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
13858
13903
|
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
13859
13904
|
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
13905
|
+
updatePolarisViewArrangementInfo?: Maybe<UpdatePolarisViewArrangementInfoPayload>;
|
|
13860
13906
|
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
13861
13907
|
updatePolarisViewLastViewedTimestamp?: Maybe<UpdatePolarisViewTimestampPayload>;
|
|
13862
13908
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
@@ -14167,6 +14213,10 @@ export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
|
14167
14213
|
id: Scalars['ID'];
|
|
14168
14214
|
input: UpdatePolarisViewRankInput;
|
|
14169
14215
|
};
|
|
14216
|
+
export declare type MutationUpdatePolarisViewArrangementInfoArgs = {
|
|
14217
|
+
id: Scalars['ID'];
|
|
14218
|
+
input?: Maybe<Scalars['JSON']>;
|
|
14219
|
+
};
|
|
14170
14220
|
export declare type MutationDeletePolarisViewArgs = {
|
|
14171
14221
|
id: Scalars['ID'];
|
|
14172
14222
|
};
|
|
@@ -14684,6 +14734,7 @@ export declare enum PolarisFieldType {
|
|
|
14684
14734
|
PolarisIdeaOptionsField = "PolarisIdeaOptionsField",
|
|
14685
14735
|
PolarisIdeaLabelsField = "PolarisIdeaLabelsField",
|
|
14686
14736
|
PolarisIdeaNumberField = "PolarisIdeaNumberField",
|
|
14737
|
+
PolarisIdeaExternalReferenceField = "PolarisIdeaExternalReferenceField",
|
|
14687
14738
|
PolarisIdeaPlayField = "PolarisIdeaPlayField"
|
|
14688
14739
|
}
|
|
14689
14740
|
export declare type PolarisFilterInput = {
|
|
@@ -14820,6 +14871,25 @@ export declare type PolarisIdeaDocumentField = PolarisIdeaField & {
|
|
|
14820
14871
|
emoji?: Maybe<Scalars['String']>;
|
|
14821
14872
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
14822
14873
|
};
|
|
14874
|
+
export declare type PolarisIdeaExternalReferenceField = PolarisIdeaField & {
|
|
14875
|
+
__typename?: 'PolarisIdeaExternalReferenceField';
|
|
14876
|
+
id: Scalars['ID'];
|
|
14877
|
+
fieldId?: Maybe<Scalars['Int']>;
|
|
14878
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
14879
|
+
label: Scalars['String'];
|
|
14880
|
+
editable: Scalars['Boolean'];
|
|
14881
|
+
sortable: Scalars['Boolean'];
|
|
14882
|
+
groupable: Scalars['Boolean'];
|
|
14883
|
+
linearizable: Scalars['Boolean'];
|
|
14884
|
+
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
14885
|
+
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
14886
|
+
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
14887
|
+
formula?: Maybe<Scalars['JSON']>;
|
|
14888
|
+
presentation?: Maybe<PolarisPresentation>;
|
|
14889
|
+
description?: Maybe<Scalars['String']>;
|
|
14890
|
+
emoji?: Maybe<Scalars['String']>;
|
|
14891
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
14892
|
+
};
|
|
14823
14893
|
export declare type PolarisIdeaField = {
|
|
14824
14894
|
id: Scalars['ID'];
|
|
14825
14895
|
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
@@ -15464,6 +15534,8 @@ export declare type PolarisTimelineConfig = {
|
|
|
15464
15534
|
startDateField?: Maybe<PolarisIdeaField>;
|
|
15465
15535
|
dueDateField?: Maybe<PolarisIdeaField>;
|
|
15466
15536
|
mode: PolarisTimelineMode;
|
|
15537
|
+
startTimestamp?: Maybe<Scalars['String']>;
|
|
15538
|
+
endTimestamp?: Maybe<Scalars['String']>;
|
|
15467
15539
|
};
|
|
15468
15540
|
export declare enum PolarisTimelineMode {
|
|
15469
15541
|
Months = "MONTHS",
|
|
@@ -15677,6 +15749,7 @@ export declare type Query = {
|
|
|
15677
15749
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
15678
15750
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
15679
15751
|
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
15752
|
+
polarisViewArrangementInfo?: Maybe<Scalars['JSON']>;
|
|
15680
15753
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
15681
15754
|
dvcs?: Maybe<DvcsQuery>;
|
|
15682
15755
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -15903,6 +15976,9 @@ export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
|
|
|
15903
15976
|
export declare type QueryPolarisIdeaTemplatesArgs = {
|
|
15904
15977
|
project: Scalars['ID'];
|
|
15905
15978
|
};
|
|
15979
|
+
export declare type QueryPolarisViewArrangementInfoArgs = {
|
|
15980
|
+
id: Scalars['ID'];
|
|
15981
|
+
};
|
|
15906
15982
|
export declare type QueryAppActiveTunnelsArgs = {
|
|
15907
15983
|
appId: Scalars['ID'];
|
|
15908
15984
|
environmentId: Scalars['ID'];
|
|
@@ -17050,6 +17126,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
|
17050
17126
|
description: Scalars['String'];
|
|
17051
17127
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
17052
17128
|
space?: Maybe<SearchSpace>;
|
|
17129
|
+
pageEntity?: Maybe<ConfluencePage>;
|
|
17053
17130
|
};
|
|
17054
17131
|
export declare enum SearchConfluenceRangeField {
|
|
17055
17132
|
Lastmodified = "LASTMODIFIED",
|
|
@@ -17069,6 +17146,7 @@ export declare type SearchConfluenceSpace = SearchResult & {
|
|
|
17069
17146
|
type: SearchResultType;
|
|
17070
17147
|
description: Scalars['String'];
|
|
17071
17148
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
17149
|
+
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
17072
17150
|
};
|
|
17073
17151
|
export declare enum SearchContainerStatus {
|
|
17074
17152
|
Archived = "ARCHIVED",
|
|
@@ -17189,22 +17267,8 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
17189
17267
|
favourite: Scalars['Boolean'];
|
|
17190
17268
|
canView: Scalars['Boolean'];
|
|
17191
17269
|
simplified: Scalars['Boolean'];
|
|
17192
|
-
landingPageInfo?: Maybe<SearchResultProjectLandingPageInfo>;
|
|
17193
17270
|
project?: Maybe<JiraProject>;
|
|
17194
17271
|
};
|
|
17195
|
-
export declare type SearchResultProjectLandingPageInfo = SearchResultSoftwareProjectLandingPageInfo | SearchResultServiceDeskProjectLandingPageInfo | SearchResultWorkManagementProjectLandingPageInfo;
|
|
17196
|
-
export declare type SearchResultServiceDeskProjectLandingPageInfo = {
|
|
17197
|
-
__typename?: 'SearchResultServiceDeskProjectLandingPageInfo';
|
|
17198
|
-
id: Scalars['ID'];
|
|
17199
|
-
queueId: Scalars['Int'];
|
|
17200
|
-
queueName: Scalars['String'];
|
|
17201
|
-
};
|
|
17202
|
-
export declare type SearchResultSoftwareProjectLandingPageInfo = {
|
|
17203
|
-
__typename?: 'SearchResultSoftwareProjectLandingPageInfo';
|
|
17204
|
-
id: Scalars['ID'];
|
|
17205
|
-
boardId: Scalars['Int'];
|
|
17206
|
-
boardName: Scalars['String'];
|
|
17207
|
-
};
|
|
17208
17272
|
export declare enum SearchResultType {
|
|
17209
17273
|
Blogpost = "blogpost",
|
|
17210
17274
|
Space = "space",
|
|
@@ -17214,10 +17278,6 @@ export declare enum SearchResultType {
|
|
|
17214
17278
|
Plan = "plan",
|
|
17215
17279
|
Project = "project"
|
|
17216
17280
|
}
|
|
17217
|
-
export declare type SearchResultWorkManagementProjectLandingPageInfo = {
|
|
17218
|
-
__typename?: 'SearchResultWorkManagementProjectLandingPageInfo';
|
|
17219
|
-
boardName: Scalars['String'];
|
|
17220
|
-
};
|
|
17221
17281
|
export declare type SearchSpace = {
|
|
17222
17282
|
__typename?: 'SearchSpace';
|
|
17223
17283
|
key: Scalars['String'];
|
|
@@ -17373,13 +17433,14 @@ export declare enum ShepherdAlertStatus {
|
|
|
17373
17433
|
}
|
|
17374
17434
|
export declare enum ShepherdAlertTemplateType {
|
|
17375
17435
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
17436
|
+
AdminPasswordReset = "ADMIN_PASSWORD_RESET",
|
|
17376
17437
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
17377
17438
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
17378
17439
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
17379
17440
|
Default = "DEFAULT",
|
|
17380
17441
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
17381
|
-
EnabledGsyncSso = "ENABLED_GSYNC_SSO",
|
|
17382
17442
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
17443
|
+
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
17383
17444
|
TokenCreated = "TOKEN_CREATED",
|
|
17384
17445
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
17385
17446
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
@@ -17955,6 +18016,7 @@ export declare type SupportRequest = {
|
|
|
17955
18016
|
lastComment: SupportRequestComments;
|
|
17956
18017
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
17957
18018
|
sourceId?: Maybe<Scalars['String']>;
|
|
18019
|
+
activities: SupportRequestActivities;
|
|
17958
18020
|
};
|
|
17959
18021
|
export declare type SupportRequestCommentsArgs = {
|
|
17960
18022
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -17972,6 +18034,28 @@ export declare type SupportRequestLastCommentArgs = {
|
|
|
17972
18034
|
offset?: Maybe<Scalars['Int']>;
|
|
17973
18035
|
size?: Maybe<Scalars['Int']>;
|
|
17974
18036
|
};
|
|
18037
|
+
export declare type SupportRequestActivitiesArgs = {
|
|
18038
|
+
offset?: Maybe<Scalars['Int']>;
|
|
18039
|
+
size?: Maybe<Scalars['Int']>;
|
|
18040
|
+
};
|
|
18041
|
+
export declare type SupportRequestActivities = {
|
|
18042
|
+
__typename?: 'SupportRequestActivities';
|
|
18043
|
+
offset: Scalars['Int'];
|
|
18044
|
+
limit: Scalars['Int'];
|
|
18045
|
+
total: Scalars['Int'];
|
|
18046
|
+
values?: Maybe<Array<SupportRequestActivity>>;
|
|
18047
|
+
};
|
|
18048
|
+
export declare type SupportRequestActivity = {
|
|
18049
|
+
__typename?: 'SupportRequestActivity';
|
|
18050
|
+
comment?: Maybe<SupportRequestComment>;
|
|
18051
|
+
status?: Maybe<SupportRequestActivityStatus>;
|
|
18052
|
+
};
|
|
18053
|
+
export declare type SupportRequestActivityStatus = {
|
|
18054
|
+
__typename?: 'SupportRequestActivityStatus';
|
|
18055
|
+
text: Scalars['String'];
|
|
18056
|
+
resolution?: Maybe<Scalars['String']>;
|
|
18057
|
+
createdDate?: Maybe<SupportRequestDisplayableDateTime>;
|
|
18058
|
+
};
|
|
17975
18059
|
export declare type SupportRequestAddCommentInput = {
|
|
17976
18060
|
message: Scalars['String'];
|
|
17977
18061
|
issueKey: Scalars['String'];
|
|
@@ -19168,6 +19252,13 @@ export declare type UpdatePolarisTimelineConfig = {
|
|
|
19168
19252
|
startDateField?: Maybe<Scalars['ID']>;
|
|
19169
19253
|
dueDateField?: Maybe<Scalars['ID']>;
|
|
19170
19254
|
mode?: Maybe<PolarisTimelineMode>;
|
|
19255
|
+
startTimestamp?: Maybe<Scalars['String']>;
|
|
19256
|
+
endTimestamp?: Maybe<Scalars['String']>;
|
|
19257
|
+
};
|
|
19258
|
+
export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
19259
|
+
__typename?: 'UpdatePolarisViewArrangementInfoPayload';
|
|
19260
|
+
success: Scalars['Boolean'];
|
|
19261
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19171
19262
|
};
|
|
19172
19263
|
export declare type UpdatePolarisViewInput = {
|
|
19173
19264
|
view?: Maybe<Scalars['ID']>;
|
|
@@ -19311,20 +19402,22 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
19311
19402
|
__typename?: 'VirtualAgentConfiguration';
|
|
19312
19403
|
id: Scalars['ID'];
|
|
19313
19404
|
respondToQueries: Scalars['Boolean'];
|
|
19314
|
-
intentRuleProjections?: Maybe<
|
|
19405
|
+
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
19315
19406
|
};
|
|
19316
19407
|
export declare type VirtualAgentConfigurationIntentRuleProjectionsArgs = {
|
|
19317
|
-
|
|
19408
|
+
first?: Maybe<Scalars['Int']>;
|
|
19409
|
+
after?: Maybe<Scalars['String']>;
|
|
19318
19410
|
};
|
|
19319
19411
|
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
19320
19412
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
19321
19413
|
__typename?: 'VirtualAgentIntentProjection';
|
|
19322
19414
|
id: Scalars['ID'];
|
|
19323
19415
|
name: Scalars['String'];
|
|
19324
|
-
questionProjections?: Maybe<
|
|
19416
|
+
questionProjections?: Maybe<VirtualAgentIntentQuestionProjectionsConnection>;
|
|
19325
19417
|
};
|
|
19326
19418
|
export declare type VirtualAgentIntentProjectionQuestionProjectionsArgs = {
|
|
19327
|
-
|
|
19419
|
+
first?: Maybe<Scalars['Int']>;
|
|
19420
|
+
after?: Maybe<Scalars['String']>;
|
|
19328
19421
|
};
|
|
19329
19422
|
export declare type VirtualAgentIntentProjectionResult = VirtualAgentIntentProjection | VirtualAgentQueryError;
|
|
19330
19423
|
export declare type VirtualAgentIntentQuestionProjection = Node & {
|
|
@@ -19343,11 +19436,6 @@ export declare type VirtualAgentIntentQuestionProjectionsConnection = {
|
|
|
19343
19436
|
nodes?: Maybe<Array<Maybe<VirtualAgentIntentQuestionProjection>>>;
|
|
19344
19437
|
pageInfo: PageInfo;
|
|
19345
19438
|
};
|
|
19346
|
-
export declare type VirtualAgentIntentQuestionsQuery = {
|
|
19347
|
-
first?: Maybe<Scalars['Int']>;
|
|
19348
|
-
after?: Maybe<Scalars['String']>;
|
|
19349
|
-
};
|
|
19350
|
-
export declare type VirtualAgentIntentQuestionsQueryResult = VirtualAgentIntentQuestionProjectionsConnection | VirtualAgentQueryError;
|
|
19351
19439
|
export declare type VirtualAgentIntentRuleProjection = Node & {
|
|
19352
19440
|
__typename?: 'VirtualAgentIntentRuleProjection';
|
|
19353
19441
|
id: Scalars['ID'];
|
|
@@ -19365,11 +19453,9 @@ export declare type VirtualAgentIntentRuleProjectionsConnection = {
|
|
|
19365
19453
|
nodes?: Maybe<Array<Maybe<VirtualAgentIntentRuleProjection>>>;
|
|
19366
19454
|
pageInfo: PageInfo;
|
|
19367
19455
|
};
|
|
19368
|
-
export declare type
|
|
19369
|
-
|
|
19370
|
-
after?: Maybe<Scalars['String']>;
|
|
19456
|
+
export declare type VirtualAgentIntentRuleProjectionsFilter = {
|
|
19457
|
+
virtualAgentConfigurationId: Scalars['ID'];
|
|
19371
19458
|
};
|
|
19372
|
-
export declare type VirtualAgentIntentRuleProjectionsQueryResult = VirtualAgentIntentRuleProjectionsConnection | VirtualAgentQueryError;
|
|
19373
19459
|
export declare type VirtualAgentMutationApi = {
|
|
19374
19460
|
__typename?: 'VirtualAgentMutationApi';
|
|
19375
19461
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
@@ -19380,14 +19466,15 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
19380
19466
|
export declare type VirtualAgentQueryApi = {
|
|
19381
19467
|
__typename?: 'VirtualAgentQueryApi';
|
|
19382
19468
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
19383
|
-
intentRuleProjections?: Maybe<
|
|
19469
|
+
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
19384
19470
|
};
|
|
19385
19471
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
19386
19472
|
jiraProjectId: Scalars['ID'];
|
|
19387
19473
|
};
|
|
19388
19474
|
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
19389
|
-
|
|
19390
|
-
|
|
19475
|
+
first?: Maybe<Scalars['Int']>;
|
|
19476
|
+
after?: Maybe<Scalars['String']>;
|
|
19477
|
+
filter?: Maybe<VirtualAgentIntentRuleProjectionsFilter>;
|
|
19391
19478
|
};
|
|
19392
19479
|
export declare type VirtualAgentQueryError = {
|
|
19393
19480
|
__typename?: 'VirtualAgentQueryError';
|