@forge/cli-shared 3.1.0 → 3.1.1-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/out/graphql/graphql-types.d.ts +159 -34
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +12 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.1.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [f8d567a3]
|
|
8
|
+
- @forge/manifest@4.2.1-next.1
|
|
9
|
+
|
|
10
|
+
## 3.1.1-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [1c51c99]
|
|
15
|
+
- @forge/manifest@4.2.1-next.0
|
|
16
|
+
|
|
3
17
|
## 3.1.0
|
|
4
18
|
|
|
5
19
|
### Minor 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
|
};
|
|
@@ -2224,18 +2225,14 @@ export declare type CompassCreateFlagEventPropertiesInput = {
|
|
|
2224
2225
|
export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
2225
2226
|
weight: Scalars['Int'];
|
|
2226
2227
|
customFieldDefinitionId: Scalars['ID'];
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2230
|
-
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2228
|
+
booleanComparator: CompassCriteriaBooleanComparatorOptions;
|
|
2229
|
+
booleanComparatorValue: Scalars['Boolean'];
|
|
2231
2230
|
};
|
|
2232
2231
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
2233
2232
|
weight: Scalars['Int'];
|
|
2234
2233
|
customFieldDefinitionId: Scalars['ID'];
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2238
|
-
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
2234
|
+
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
2235
|
+
numberComparatorValue: Scalars['Float'];
|
|
2239
2236
|
};
|
|
2240
2237
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
2241
2238
|
weight: Scalars['Int'];
|
|
@@ -2291,6 +2288,15 @@ export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
|
2291
2288
|
errors?: Maybe<Array<MutationError>>;
|
|
2292
2289
|
createdMetricSource?: Maybe<CompassMetricSource>;
|
|
2293
2290
|
};
|
|
2291
|
+
export declare type CompassCreatePushEventInput = {
|
|
2292
|
+
displayName: Scalars['String'];
|
|
2293
|
+
lastUpdated: Scalars['DateTime'];
|
|
2294
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2295
|
+
description: Scalars['String'];
|
|
2296
|
+
url: Scalars['URL'];
|
|
2297
|
+
externalEventSourceId: Scalars['ID'];
|
|
2298
|
+
pushEventProperties: CompassPushEventInputProperties;
|
|
2299
|
+
};
|
|
2294
2300
|
export declare type CompassCreateTeamCheckinActionInput = {
|
|
2295
2301
|
actionText: Scalars['String'];
|
|
2296
2302
|
completed?: Maybe<Scalars['Boolean']>;
|
|
@@ -2595,6 +2601,7 @@ export declare type CompassEventInput = {
|
|
|
2595
2601
|
alert?: Maybe<CompassCreateAlertEventInput>;
|
|
2596
2602
|
lifecycle?: Maybe<CompassCreateLifecycleEventInput>;
|
|
2597
2603
|
custom?: Maybe<CompassCreateCustomEventInput>;
|
|
2604
|
+
push?: Maybe<CompassCreatePushEventInput>;
|
|
2598
2605
|
};
|
|
2599
2606
|
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
2600
2607
|
export declare type CompassEventTimeParameters = {
|
|
@@ -2608,7 +2615,8 @@ export declare enum CompassEventType {
|
|
|
2608
2615
|
Flag = "FLAG",
|
|
2609
2616
|
Alert = "ALERT",
|
|
2610
2617
|
Lifecycle = "LIFECYCLE",
|
|
2611
|
-
Custom = "CUSTOM"
|
|
2618
|
+
Custom = "CUSTOM",
|
|
2619
|
+
Push = "PUSH"
|
|
2612
2620
|
}
|
|
2613
2621
|
export declare type CompassEventsInEventSourceQuery = {
|
|
2614
2622
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -2677,8 +2685,6 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScore
|
|
|
2677
2685
|
id: Scalars['ID'];
|
|
2678
2686
|
weight: Scalars['Int'];
|
|
2679
2687
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2680
|
-
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2681
|
-
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2682
2688
|
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2683
2689
|
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2684
2690
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
@@ -2691,8 +2697,6 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassScorec
|
|
|
2691
2697
|
id: Scalars['ID'];
|
|
2692
2698
|
weight: Scalars['Int'];
|
|
2693
2699
|
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
2694
|
-
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2695
|
-
comparatorValue?: Maybe<Scalars['Float']>;
|
|
2696
2700
|
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2697
2701
|
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
2698
2702
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
@@ -2968,6 +2972,30 @@ export declare type CompassMetricValuesTimeseries = {
|
|
|
2968
2972
|
values?: Maybe<Array<Maybe<CompassMetricValue>>>;
|
|
2969
2973
|
};
|
|
2970
2974
|
export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
|
|
2975
|
+
export declare type CompassPushEvent = CompassEvent & {
|
|
2976
|
+
__typename?: 'CompassPushEvent';
|
|
2977
|
+
eventType: CompassEventType;
|
|
2978
|
+
displayName: Scalars['String'];
|
|
2979
|
+
lastUpdated: Scalars['DateTime'];
|
|
2980
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2981
|
+
description?: Maybe<Scalars['String']>;
|
|
2982
|
+
url?: Maybe<Scalars['URL']>;
|
|
2983
|
+
pushEventProperties: CompassPushEventProperties;
|
|
2984
|
+
};
|
|
2985
|
+
export declare type CompassPushEventAuthorInput = {
|
|
2986
|
+
name?: Maybe<Scalars['String']>;
|
|
2987
|
+
email?: Maybe<Scalars['String']>;
|
|
2988
|
+
};
|
|
2989
|
+
export declare type CompassPushEventInputProperties = {
|
|
2990
|
+
id: Scalars['ID'];
|
|
2991
|
+
branchName: Scalars['String'];
|
|
2992
|
+
author?: Maybe<CompassPushEventAuthorInput>;
|
|
2993
|
+
};
|
|
2994
|
+
export declare type CompassPushEventProperties = {
|
|
2995
|
+
__typename?: 'CompassPushEventProperties';
|
|
2996
|
+
id: Scalars['ID'];
|
|
2997
|
+
branchName?: Maybe<Scalars['String']>;
|
|
2998
|
+
};
|
|
2971
2999
|
export declare type CompassQueryFieldFilter = {
|
|
2972
3000
|
name: Scalars['String'];
|
|
2973
3001
|
filter?: Maybe<CompassQueryFilter>;
|
|
@@ -3287,8 +3315,6 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
3287
3315
|
id: Scalars['ID'];
|
|
3288
3316
|
weight?: Maybe<Scalars['Int']>;
|
|
3289
3317
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3290
|
-
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3291
|
-
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3292
3318
|
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3293
3319
|
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3294
3320
|
};
|
|
@@ -3296,8 +3322,6 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
3296
3322
|
id: Scalars['ID'];
|
|
3297
3323
|
weight?: Maybe<Scalars['Int']>;
|
|
3298
3324
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3299
|
-
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3300
|
-
comparatorValue?: Maybe<Scalars['Float']>;
|
|
3301
3325
|
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3302
3326
|
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
3303
3327
|
};
|
|
@@ -10341,6 +10365,17 @@ export declare type JiraMediaUploadToken = {
|
|
|
10341
10365
|
tokenDurationInMin?: Maybe<Scalars['Int']>;
|
|
10342
10366
|
};
|
|
10343
10367
|
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
10368
|
+
export declare type JiraMoveIssuesToFixVersionInput = {
|
|
10369
|
+
issueIds: Array<Scalars['ID']>;
|
|
10370
|
+
originalVersionId: Scalars['ID'];
|
|
10371
|
+
targetVersionId: Scalars['ID'];
|
|
10372
|
+
};
|
|
10373
|
+
export declare type JiraMoveIssuesToFixVersionPayload = Payload & {
|
|
10374
|
+
__typename?: 'JiraMoveIssuesToFixVersionPayload';
|
|
10375
|
+
originalVersion?: Maybe<JiraVersion>;
|
|
10376
|
+
success: Scalars['Boolean'];
|
|
10377
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10378
|
+
};
|
|
10344
10379
|
export declare enum JiraMultiValueFieldOperations {
|
|
10345
10380
|
Add = "ADD",
|
|
10346
10381
|
Remove = "REMOVE",
|
|
@@ -10472,6 +10507,8 @@ export declare type JiraMutation = {
|
|
|
10472
10507
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
10473
10508
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
10474
10509
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
10510
|
+
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
10511
|
+
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
10475
10512
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
10476
10513
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
10477
10514
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
@@ -10514,6 +10551,12 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
10514
10551
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
10515
10552
|
input: JiraAddIssuesToFixVersionInput;
|
|
10516
10553
|
};
|
|
10554
|
+
export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
10555
|
+
input: JiraMoveIssuesToFixVersionInput;
|
|
10556
|
+
};
|
|
10557
|
+
export declare type JiraMutationRemoveIssuesFromFixVersionArgs = {
|
|
10558
|
+
input: JiraRemoveIssuesFromFixVersionInput;
|
|
10559
|
+
};
|
|
10517
10560
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
10518
10561
|
input: JiraUpdateVersionWarningConfigInput;
|
|
10519
10562
|
};
|
|
@@ -11798,6 +11841,16 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
11798
11841
|
after: Scalars['DateTime'];
|
|
11799
11842
|
before: Scalars['DateTime'];
|
|
11800
11843
|
};
|
|
11844
|
+
export declare type JiraRemoveIssuesFromFixVersionInput = {
|
|
11845
|
+
issueIds: Array<Scalars['ID']>;
|
|
11846
|
+
versionId: Scalars['ID'];
|
|
11847
|
+
};
|
|
11848
|
+
export declare type JiraRemoveIssuesFromFixVersionPayload = Payload & {
|
|
11849
|
+
__typename?: 'JiraRemoveIssuesFromFixVersionPayload';
|
|
11850
|
+
version?: Maybe<JiraVersion>;
|
|
11851
|
+
success: Scalars['Boolean'];
|
|
11852
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11853
|
+
};
|
|
11801
11854
|
export declare type JiraRemoveRelatedWorkFromVersionInput = {
|
|
11802
11855
|
versionId: Scalars['ID'];
|
|
11803
11856
|
relatedWorkId: Scalars['ID'];
|
|
@@ -13040,6 +13093,7 @@ export declare type JiraVersion = Node & {
|
|
|
13040
13093
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
13041
13094
|
suggestedRelatedWorkCategories?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13042
13095
|
canEdit?: Maybe<Scalars['Boolean']>;
|
|
13096
|
+
canAddAndRemoveIssues?: Maybe<Scalars['Boolean']>;
|
|
13043
13097
|
releaseNotesOptionsIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
13044
13098
|
releaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
13045
13099
|
releaseNotes?: Maybe<JiraAdf>;
|
|
@@ -13448,6 +13502,7 @@ export declare type MarketplaceCloudFortified = {
|
|
|
13448
13502
|
programStatus?: Maybe<MarketplaceProgramStatus>;
|
|
13449
13503
|
};
|
|
13450
13504
|
export declare enum MarketplaceCloudFortifiedStatus {
|
|
13505
|
+
Applied = "APPLIED",
|
|
13451
13506
|
Approved = "APPROVED",
|
|
13452
13507
|
Rejected = "REJECTED",
|
|
13453
13508
|
NotAParticipant = "NOT_A_PARTICIPANT"
|
|
@@ -13515,6 +13570,7 @@ export declare type MarketplacePartner = {
|
|
|
13515
13570
|
programs?: Maybe<MarketplacePartnerPrograms>;
|
|
13516
13571
|
partnerType?: Maybe<MarketplacePartnerType>;
|
|
13517
13572
|
partnerTier?: Maybe<MarketplacePartnerTier>;
|
|
13573
|
+
logo?: Maybe<MarketplaceListingImage>;
|
|
13518
13574
|
isUserContact?: Maybe<Scalars['Boolean']>;
|
|
13519
13575
|
};
|
|
13520
13576
|
export declare type MarketplacePartnerAddress = {
|
|
@@ -13629,6 +13685,7 @@ export declare enum MarketplacePricingTierType {
|
|
|
13629
13685
|
RemoteAgentTiered = "REMOTE_AGENT_TIERED"
|
|
13630
13686
|
}
|
|
13631
13687
|
export declare enum MarketplaceProgramStatus {
|
|
13688
|
+
Applied = "APPLIED",
|
|
13632
13689
|
Approved = "APPROVED",
|
|
13633
13690
|
Rejected = "REJECTED",
|
|
13634
13691
|
NotAParticipant = "NOT_A_PARTICIPANT"
|
|
@@ -14712,6 +14769,8 @@ export declare enum PolarisFieldType {
|
|
|
14712
14769
|
PolarisIdeaOptionsField = "PolarisIdeaOptionsField",
|
|
14713
14770
|
PolarisIdeaLabelsField = "PolarisIdeaLabelsField",
|
|
14714
14771
|
PolarisIdeaNumberField = "PolarisIdeaNumberField",
|
|
14772
|
+
PolarisIdeaExternalReferenceField = "PolarisIdeaExternalReferenceField",
|
|
14773
|
+
PolarisIdeaIntervalField = "PolarisIdeaIntervalField",
|
|
14715
14774
|
PolarisIdeaPlayField = "PolarisIdeaPlayField"
|
|
14716
14775
|
}
|
|
14717
14776
|
export declare type PolarisFilterInput = {
|
|
@@ -14848,6 +14907,25 @@ export declare type PolarisIdeaDocumentField = PolarisIdeaField & {
|
|
|
14848
14907
|
emoji?: Maybe<Scalars['String']>;
|
|
14849
14908
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
14850
14909
|
};
|
|
14910
|
+
export declare type PolarisIdeaExternalReferenceField = PolarisIdeaField & {
|
|
14911
|
+
__typename?: 'PolarisIdeaExternalReferenceField';
|
|
14912
|
+
id: Scalars['ID'];
|
|
14913
|
+
fieldId?: Maybe<Scalars['Int']>;
|
|
14914
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
14915
|
+
label: Scalars['String'];
|
|
14916
|
+
editable: Scalars['Boolean'];
|
|
14917
|
+
sortable: Scalars['Boolean'];
|
|
14918
|
+
groupable: Scalars['Boolean'];
|
|
14919
|
+
linearizable: Scalars['Boolean'];
|
|
14920
|
+
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
14921
|
+
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
14922
|
+
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
14923
|
+
formula?: Maybe<Scalars['JSON']>;
|
|
14924
|
+
presentation?: Maybe<PolarisPresentation>;
|
|
14925
|
+
description?: Maybe<Scalars['String']>;
|
|
14926
|
+
emoji?: Maybe<Scalars['String']>;
|
|
14927
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
14928
|
+
};
|
|
14851
14929
|
export declare type PolarisIdeaField = {
|
|
14852
14930
|
id: Scalars['ID'];
|
|
14853
14931
|
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
@@ -14872,6 +14950,25 @@ export declare type PolarisIdeaFieldOption = {
|
|
|
14872
14950
|
label: Scalars['String'];
|
|
14873
14951
|
weight: Scalars['Int'];
|
|
14874
14952
|
};
|
|
14953
|
+
export declare type PolarisIdeaIntervalField = PolarisIdeaField & {
|
|
14954
|
+
__typename?: 'PolarisIdeaIntervalField';
|
|
14955
|
+
id: Scalars['ID'];
|
|
14956
|
+
fieldId?: Maybe<Scalars['Int']>;
|
|
14957
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
14958
|
+
label: Scalars['String'];
|
|
14959
|
+
editable: Scalars['Boolean'];
|
|
14960
|
+
sortable: Scalars['Boolean'];
|
|
14961
|
+
groupable: Scalars['Boolean'];
|
|
14962
|
+
linearizable: Scalars['Boolean'];
|
|
14963
|
+
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
14964
|
+
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
14965
|
+
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
14966
|
+
formula?: Maybe<Scalars['JSON']>;
|
|
14967
|
+
presentation?: Maybe<PolarisPresentation>;
|
|
14968
|
+
description?: Maybe<Scalars['String']>;
|
|
14969
|
+
emoji?: Maybe<Scalars['String']>;
|
|
14970
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
14971
|
+
};
|
|
14875
14972
|
export declare type PolarisIdeaIssueCommentsField = PolarisIdeaField & {
|
|
14876
14973
|
__typename?: 'PolarisIdeaIssueCommentsField';
|
|
14877
14974
|
id: Scalars['ID'];
|
|
@@ -15770,6 +15867,7 @@ export declare type QueryReleaseNotesArgs = {
|
|
|
15770
15867
|
after?: Maybe<Scalars['String']>;
|
|
15771
15868
|
first?: Maybe<Scalars['Int']>;
|
|
15772
15869
|
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
15870
|
+
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
15773
15871
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
15774
15872
|
orderBy?: Maybe<Scalars['String']>;
|
|
15775
15873
|
};
|
|
@@ -17084,6 +17182,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
|
17084
17182
|
description: Scalars['String'];
|
|
17085
17183
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
17086
17184
|
space?: Maybe<SearchSpace>;
|
|
17185
|
+
pageEntity?: Maybe<ConfluencePage>;
|
|
17087
17186
|
};
|
|
17088
17187
|
export declare enum SearchConfluenceRangeField {
|
|
17089
17188
|
Lastmodified = "LASTMODIFIED",
|
|
@@ -17103,6 +17202,7 @@ export declare type SearchConfluenceSpace = SearchResult & {
|
|
|
17103
17202
|
type: SearchResultType;
|
|
17104
17203
|
description: Scalars['String'];
|
|
17105
17204
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
17205
|
+
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
17106
17206
|
};
|
|
17107
17207
|
export declare enum SearchContainerStatus {
|
|
17108
17208
|
Archived = "ARCHIVED",
|
|
@@ -17389,15 +17489,21 @@ export declare enum ShepherdAlertStatus {
|
|
|
17389
17489
|
}
|
|
17390
17490
|
export declare enum ShepherdAlertTemplateType {
|
|
17391
17491
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
17492
|
+
AdminPasswordReset = "ADMIN_PASSWORD_RESET",
|
|
17392
17493
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
17393
17494
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
17394
17495
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
17395
17496
|
Default = "DEFAULT",
|
|
17396
17497
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
17397
|
-
EnabledGsyncSso = "ENABLED_GSYNC_SSO",
|
|
17398
17498
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
17499
|
+
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
17500
|
+
IpAllowlistPolicyCreated = "IP_ALLOWLIST_POLICY_CREATED",
|
|
17501
|
+
IpAllowlistPolicyDeleted = "IP_ALLOWLIST_POLICY_DELETED",
|
|
17502
|
+
IpAllowlistPolicyDisabled = "IP_ALLOWLIST_POLICY_DISABLED",
|
|
17503
|
+
IpAllowlistPolicyUpdated = "IP_ALLOWLIST_POLICY_UPDATED",
|
|
17399
17504
|
TokenCreated = "TOKEN_CREATED",
|
|
17400
17505
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
17506
|
+
UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
|
|
17401
17507
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
17402
17508
|
UserRevokedRole = "USER_REVOKED_ROLE"
|
|
17403
17509
|
}
|
|
@@ -17971,6 +18077,7 @@ export declare type SupportRequest = {
|
|
|
17971
18077
|
lastComment: SupportRequestComments;
|
|
17972
18078
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
17973
18079
|
sourceId?: Maybe<Scalars['String']>;
|
|
18080
|
+
activities: SupportRequestActivities;
|
|
17974
18081
|
};
|
|
17975
18082
|
export declare type SupportRequestCommentsArgs = {
|
|
17976
18083
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -17988,6 +18095,28 @@ export declare type SupportRequestLastCommentArgs = {
|
|
|
17988
18095
|
offset?: Maybe<Scalars['Int']>;
|
|
17989
18096
|
size?: Maybe<Scalars['Int']>;
|
|
17990
18097
|
};
|
|
18098
|
+
export declare type SupportRequestActivitiesArgs = {
|
|
18099
|
+
offset?: Maybe<Scalars['Int']>;
|
|
18100
|
+
size?: Maybe<Scalars['Int']>;
|
|
18101
|
+
};
|
|
18102
|
+
export declare type SupportRequestActivities = {
|
|
18103
|
+
__typename?: 'SupportRequestActivities';
|
|
18104
|
+
offset: Scalars['Int'];
|
|
18105
|
+
limit: Scalars['Int'];
|
|
18106
|
+
total: Scalars['Int'];
|
|
18107
|
+
values?: Maybe<Array<SupportRequestActivity>>;
|
|
18108
|
+
};
|
|
18109
|
+
export declare type SupportRequestActivity = {
|
|
18110
|
+
__typename?: 'SupportRequestActivity';
|
|
18111
|
+
comment?: Maybe<SupportRequestComment>;
|
|
18112
|
+
status?: Maybe<SupportRequestActivityStatus>;
|
|
18113
|
+
};
|
|
18114
|
+
export declare type SupportRequestActivityStatus = {
|
|
18115
|
+
__typename?: 'SupportRequestActivityStatus';
|
|
18116
|
+
text: Scalars['String'];
|
|
18117
|
+
resolution?: Maybe<Scalars['String']>;
|
|
18118
|
+
createdDate?: Maybe<SupportRequestDisplayableDateTime>;
|
|
18119
|
+
};
|
|
17991
18120
|
export declare type SupportRequestAddCommentInput = {
|
|
17992
18121
|
message: Scalars['String'];
|
|
17993
18122
|
issueKey: Scalars['String'];
|
|
@@ -19334,20 +19463,22 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
19334
19463
|
__typename?: 'VirtualAgentConfiguration';
|
|
19335
19464
|
id: Scalars['ID'];
|
|
19336
19465
|
respondToQueries: Scalars['Boolean'];
|
|
19337
|
-
intentRuleProjections?: Maybe<
|
|
19466
|
+
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
19338
19467
|
};
|
|
19339
19468
|
export declare type VirtualAgentConfigurationIntentRuleProjectionsArgs = {
|
|
19340
|
-
|
|
19469
|
+
first?: Maybe<Scalars['Int']>;
|
|
19470
|
+
after?: Maybe<Scalars['String']>;
|
|
19341
19471
|
};
|
|
19342
19472
|
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
19343
19473
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
19344
19474
|
__typename?: 'VirtualAgentIntentProjection';
|
|
19345
19475
|
id: Scalars['ID'];
|
|
19346
19476
|
name: Scalars['String'];
|
|
19347
|
-
questionProjections?: Maybe<
|
|
19477
|
+
questionProjections?: Maybe<VirtualAgentIntentQuestionProjectionsConnection>;
|
|
19348
19478
|
};
|
|
19349
19479
|
export declare type VirtualAgentIntentProjectionQuestionProjectionsArgs = {
|
|
19350
|
-
|
|
19480
|
+
first?: Maybe<Scalars['Int']>;
|
|
19481
|
+
after?: Maybe<Scalars['String']>;
|
|
19351
19482
|
};
|
|
19352
19483
|
export declare type VirtualAgentIntentProjectionResult = VirtualAgentIntentProjection | VirtualAgentQueryError;
|
|
19353
19484
|
export declare type VirtualAgentIntentQuestionProjection = Node & {
|
|
@@ -19366,11 +19497,6 @@ export declare type VirtualAgentIntentQuestionProjectionsConnection = {
|
|
|
19366
19497
|
nodes?: Maybe<Array<Maybe<VirtualAgentIntentQuestionProjection>>>;
|
|
19367
19498
|
pageInfo: PageInfo;
|
|
19368
19499
|
};
|
|
19369
|
-
export declare type VirtualAgentIntentQuestionsQuery = {
|
|
19370
|
-
first?: Maybe<Scalars['Int']>;
|
|
19371
|
-
after?: Maybe<Scalars['String']>;
|
|
19372
|
-
};
|
|
19373
|
-
export declare type VirtualAgentIntentQuestionsQueryResult = VirtualAgentIntentQuestionProjectionsConnection | VirtualAgentQueryError;
|
|
19374
19500
|
export declare type VirtualAgentIntentRuleProjection = Node & {
|
|
19375
19501
|
__typename?: 'VirtualAgentIntentRuleProjection';
|
|
19376
19502
|
id: Scalars['ID'];
|
|
@@ -19388,11 +19514,9 @@ export declare type VirtualAgentIntentRuleProjectionsConnection = {
|
|
|
19388
19514
|
nodes?: Maybe<Array<Maybe<VirtualAgentIntentRuleProjection>>>;
|
|
19389
19515
|
pageInfo: PageInfo;
|
|
19390
19516
|
};
|
|
19391
|
-
export declare type
|
|
19392
|
-
|
|
19393
|
-
after?: Maybe<Scalars['String']>;
|
|
19517
|
+
export declare type VirtualAgentIntentRuleProjectionsFilter = {
|
|
19518
|
+
virtualAgentConfigurationId: Scalars['ID'];
|
|
19394
19519
|
};
|
|
19395
|
-
export declare type VirtualAgentIntentRuleProjectionsQueryResult = VirtualAgentIntentRuleProjectionsConnection | VirtualAgentQueryError;
|
|
19396
19520
|
export declare type VirtualAgentMutationApi = {
|
|
19397
19521
|
__typename?: 'VirtualAgentMutationApi';
|
|
19398
19522
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
@@ -19403,14 +19527,15 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
19403
19527
|
export declare type VirtualAgentQueryApi = {
|
|
19404
19528
|
__typename?: 'VirtualAgentQueryApi';
|
|
19405
19529
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
19406
|
-
intentRuleProjections?: Maybe<
|
|
19530
|
+
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
19407
19531
|
};
|
|
19408
19532
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
19409
19533
|
jiraProjectId: Scalars['ID'];
|
|
19410
19534
|
};
|
|
19411
19535
|
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
19412
|
-
|
|
19413
|
-
|
|
19536
|
+
first?: Maybe<Scalars['Int']>;
|
|
19537
|
+
after?: Maybe<Scalars['String']>;
|
|
19538
|
+
filter?: Maybe<VirtualAgentIntentRuleProjectionsFilter>;
|
|
19414
19539
|
};
|
|
19415
19540
|
export declare type VirtualAgentQueryError = {
|
|
19416
19541
|
__typename?: 'VirtualAgentQueryError';
|