@forge/cli-shared 8.15.0 → 8.15.1-next.0-experimental-5a86f99
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 +12 -0
- package/out/graphql/graphql-types.d.ts +324 -46
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +57 -37
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -1
- package/package.json +1 -1
|
@@ -158,6 +158,18 @@ export declare type AvpAddDashboardRowPayload = Payload & {
|
|
|
158
158
|
errors?: Maybe<Array<MutationError>>;
|
|
159
159
|
success: Scalars['Boolean']['output'];
|
|
160
160
|
};
|
|
161
|
+
export declare type AvpAddFilterExpressionsInput = {
|
|
162
|
+
dashboardAri: Scalars['ID']['input'];
|
|
163
|
+
expressions: Array<AvpFilterExpressionInput>;
|
|
164
|
+
parentGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
165
|
+
};
|
|
166
|
+
export declare type AvpAddFilterExpressionsPayload = Payload & {
|
|
167
|
+
__typename?: 'AVPAddFilterExpressionsPayload';
|
|
168
|
+
errors?: Maybe<Array<MutationError>>;
|
|
169
|
+
expressionIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
170
|
+
filterExpression?: Maybe<AvpFilterExpression>;
|
|
171
|
+
success: Scalars['Boolean']['output'];
|
|
172
|
+
};
|
|
161
173
|
export declare type AvpAnalyticsDimension = {
|
|
162
174
|
dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
163
175
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -699,6 +711,16 @@ export declare type AvpDeleteDashboardFilterPayload = Payload & {
|
|
|
699
711
|
errors?: Maybe<Array<MutationError>>;
|
|
700
712
|
success: Scalars['Boolean']['output'];
|
|
701
713
|
};
|
|
714
|
+
export declare type AvpDeleteFilterExpressionsInput = {
|
|
715
|
+
dashboardAri: Scalars['ID']['input'];
|
|
716
|
+
expressionIds: Array<Scalars['ID']['input']>;
|
|
717
|
+
};
|
|
718
|
+
export declare type AvpDeleteFilterExpressionsPayload = Payload & {
|
|
719
|
+
__typename?: 'AVPDeleteFilterExpressionsPayload';
|
|
720
|
+
errors?: Maybe<Array<MutationError>>;
|
|
721
|
+
filterExpression?: Maybe<AvpFilterExpression>;
|
|
722
|
+
success: Scalars['Boolean']['output'];
|
|
723
|
+
};
|
|
702
724
|
export declare type AvpDeleteVariableInput = {
|
|
703
725
|
dashboardAri: Scalars['ID']['input'];
|
|
704
726
|
name: Scalars['String']['input'];
|
|
@@ -749,6 +771,36 @@ export declare type AvpFilterEnvVarInput = {
|
|
|
749
771
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
750
772
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
751
773
|
};
|
|
774
|
+
export declare type AvpFilterExpression = AvpFilterGroup | AvpPlatformFilter;
|
|
775
|
+
export declare type AvpFilterExpressionInput = {
|
|
776
|
+
filter?: InputMaybe<AvpPlatformFilterInput>;
|
|
777
|
+
group?: InputMaybe<AvpFilterGroupInput>;
|
|
778
|
+
};
|
|
779
|
+
export declare type AvpFilterExpressionUpdateInput = {
|
|
780
|
+
filter?: InputMaybe<AvpPlatformFilterUpdateInput>;
|
|
781
|
+
group?: InputMaybe<AvpFilterGroupUpdateInput>;
|
|
782
|
+
};
|
|
783
|
+
export declare type AvpFilterGroup = {
|
|
784
|
+
__typename?: 'AVPFilterGroup';
|
|
785
|
+
groups: Array<AvpFilterExpression>;
|
|
786
|
+
id: Scalars['ID']['output'];
|
|
787
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
|
788
|
+
operator: AvpFilterOperator;
|
|
789
|
+
};
|
|
790
|
+
export declare type AvpFilterGroupInput = {
|
|
791
|
+
groups: Array<AvpFilterExpressionInput>;
|
|
792
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
793
|
+
operator: AvpFilterOperator;
|
|
794
|
+
};
|
|
795
|
+
export declare type AvpFilterGroupUpdateInput = {
|
|
796
|
+
groups?: InputMaybe<Array<AvpFilterExpressionInput>>;
|
|
797
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
798
|
+
operator?: InputMaybe<AvpFilterOperator>;
|
|
799
|
+
};
|
|
800
|
+
export declare enum AvpFilterOperator {
|
|
801
|
+
And = "AND",
|
|
802
|
+
Or = "OR"
|
|
803
|
+
}
|
|
752
804
|
export declare type AvpGetDashboardTemplatesInput = {
|
|
753
805
|
cloudId: Scalars['ID']['input'];
|
|
754
806
|
productKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -907,6 +959,45 @@ export declare type AvpPermissionsUpdateDashboardUserAccessPayload = {
|
|
|
907
959
|
success: Scalars['Boolean']['output'];
|
|
908
960
|
updatedUsers?: Maybe<Array<AvpPermissionsDashboardUserAccessResult>>;
|
|
909
961
|
};
|
|
962
|
+
export declare type AvpPlatformDimension = {
|
|
963
|
+
__typename?: 'AVPPlatformDimension';
|
|
964
|
+
datasourceLocator: AvpDatasourceLocator;
|
|
965
|
+
name: Scalars['String']['output'];
|
|
966
|
+
product: Scalars['String']['output'];
|
|
967
|
+
semanticModel: Scalars['String']['output'];
|
|
968
|
+
};
|
|
969
|
+
export declare type AvpPlatformDimensionInput = {
|
|
970
|
+
datasourceLocator: AvpDatasourceLocatorInput;
|
|
971
|
+
name: Scalars['String']['input'];
|
|
972
|
+
product: Scalars['String']['input'];
|
|
973
|
+
semanticModel: Scalars['String']['input'];
|
|
974
|
+
};
|
|
975
|
+
export declare type AvpPlatformFilter = {
|
|
976
|
+
__typename?: 'AVPPlatformFilter';
|
|
977
|
+
comparison: Scalars['String']['output'];
|
|
978
|
+
defaultValues: Array<Scalars['String']['output']>;
|
|
979
|
+
dimensions: Array<AvpPlatformDimension>;
|
|
980
|
+
id: Scalars['ID']['output'];
|
|
981
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
982
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
983
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
|
984
|
+
};
|
|
985
|
+
export declare type AvpPlatformFilterInput = {
|
|
986
|
+
comparison: Scalars['String']['input'];
|
|
987
|
+
defaultValues: Array<Scalars['String']['input']>;
|
|
988
|
+
dimensions: Array<AvpPlatformDimensionInput>;
|
|
989
|
+
isHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
990
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
991
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
992
|
+
};
|
|
993
|
+
export declare type AvpPlatformFilterUpdateInput = {
|
|
994
|
+
comparison?: InputMaybe<Scalars['String']['input']>;
|
|
995
|
+
defaultValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
996
|
+
dimensions?: InputMaybe<Array<AvpPlatformDimensionInput>>;
|
|
997
|
+
isHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
998
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
999
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
1000
|
+
};
|
|
910
1001
|
export declare type AvpProductWorkspaceMapEntry = {
|
|
911
1002
|
product: Scalars['String']['input'];
|
|
912
1003
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -1022,6 +1113,17 @@ export declare type AvpUpdateDashboardStatusPayload = Payload & {
|
|
|
1022
1113
|
errors?: Maybe<Array<MutationError>>;
|
|
1023
1114
|
success: Scalars['Boolean']['output'];
|
|
1024
1115
|
};
|
|
1116
|
+
export declare type AvpUpdateFilterExpressionInput = {
|
|
1117
|
+
dashboardAri: Scalars['ID']['input'];
|
|
1118
|
+
expression: AvpFilterExpressionUpdateInput;
|
|
1119
|
+
expressionId: Scalars['ID']['input'];
|
|
1120
|
+
};
|
|
1121
|
+
export declare type AvpUpdateFilterExpressionPayload = Payload & {
|
|
1122
|
+
__typename?: 'AVPUpdateFilterExpressionPayload';
|
|
1123
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1124
|
+
filterExpression?: Maybe<AvpFilterExpression>;
|
|
1125
|
+
success: Scalars['Boolean']['output'];
|
|
1126
|
+
};
|
|
1025
1127
|
export declare type AvpUpdateVariableInput = {
|
|
1026
1128
|
dashboardAri: Scalars['ID']['input'];
|
|
1027
1129
|
envVar: AvpVariableEnvVarInput;
|
|
@@ -5719,32 +5821,6 @@ export declare type AquaIssueContext = {
|
|
|
5719
5821
|
issue?: Maybe<JiraIssue>;
|
|
5720
5822
|
issueARI?: Maybe<Scalars['ID']['output']>;
|
|
5721
5823
|
};
|
|
5722
|
-
export declare type AquaLiveChatSubscription = {
|
|
5723
|
-
__typename?: 'AquaLiveChatSubscription';
|
|
5724
|
-
updateConversation?: Maybe<AquaLiveChatSubscriptionResponse>;
|
|
5725
|
-
};
|
|
5726
|
-
export declare type AquaLiveChatSubscriptionUpdateConversationArgs = {
|
|
5727
|
-
conversationId: Scalars['ID']['input'];
|
|
5728
|
-
};
|
|
5729
|
-
export declare type AquaLiveChatSubscriptionResponse = {
|
|
5730
|
-
__typename?: 'AquaLiveChatSubscriptionResponse';
|
|
5731
|
-
result?: Maybe<Scalars['String']['output']>;
|
|
5732
|
-
};
|
|
5733
|
-
export declare type AquaMessage = {
|
|
5734
|
-
__typename?: 'AquaMessage';
|
|
5735
|
-
content: Scalars['String']['output'];
|
|
5736
|
-
conversationId: Scalars['String']['output'];
|
|
5737
|
-
id: Scalars['String']['output'];
|
|
5738
|
-
messageType: AquaMessageType;
|
|
5739
|
-
senderId: Scalars['String']['output'];
|
|
5740
|
-
sentAt: Scalars['String']['output'];
|
|
5741
|
-
};
|
|
5742
|
-
export declare enum AquaMessageType {
|
|
5743
|
-
File = "FILE",
|
|
5744
|
-
Image = "IMAGE",
|
|
5745
|
-
System = "SYSTEM",
|
|
5746
|
-
Text = "TEXT"
|
|
5747
|
-
}
|
|
5748
5824
|
export declare type AquaNotificationDetails = {
|
|
5749
5825
|
__typename?: 'AquaNotificationDetails';
|
|
5750
5826
|
actionTaken?: Maybe<Scalars['String']['output']>;
|
|
@@ -5811,11 +5887,6 @@ export declare type AquaProjectContext = {
|
|
|
5811
5887
|
__typename?: 'AquaProjectContext';
|
|
5812
5888
|
id?: Maybe<Scalars['Long']['output']>;
|
|
5813
5889
|
};
|
|
5814
|
-
export declare type AquaSendMessageInput = {
|
|
5815
|
-
content: Scalars['String']['input'];
|
|
5816
|
-
messageType?: InputMaybe<AquaMessageType>;
|
|
5817
|
-
senderId: Scalars['String']['input'];
|
|
5818
|
-
};
|
|
5819
5890
|
export declare type ArchiveFeature = {
|
|
5820
5891
|
__typename?: 'ArchiveFeature';
|
|
5821
5892
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -7238,6 +7309,12 @@ export declare type AssetsDmDeleteDataSourceArgs = {
|
|
|
7238
7309
|
input: AssetsDmDeleteDataSourceInput;
|
|
7239
7310
|
workspaceId: Scalars['ID']['input'];
|
|
7240
7311
|
};
|
|
7312
|
+
export declare type AssetsDmDeleteDataSourceConfigPayload = {
|
|
7313
|
+
__typename?: 'AssetsDMDeleteDataSourceConfigPayload';
|
|
7314
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
7315
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
7316
|
+
success: Scalars['Boolean']['output'];
|
|
7317
|
+
};
|
|
7241
7318
|
export declare type AssetsDmDeleteDataSourceInput = {
|
|
7242
7319
|
dataSourceId: Scalars['ID']['input'];
|
|
7243
7320
|
};
|
|
@@ -8389,6 +8466,7 @@ export declare type AtlassianAccountUser = LocalizationContext & User & {
|
|
|
8389
8466
|
};
|
|
8390
8467
|
export declare type AtlassianAccountUserExtendedProfile = {
|
|
8391
8468
|
__typename?: 'AtlassianAccountUserExtendedProfile';
|
|
8469
|
+
aboutMe?: Maybe<Scalars['String']['output']>;
|
|
8392
8470
|
closedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
8393
8471
|
department?: Maybe<Scalars['String']['output']>;
|
|
8394
8472
|
inactiveDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -8396,6 +8474,7 @@ export declare type AtlassianAccountUserExtendedProfile = {
|
|
|
8396
8474
|
location?: Maybe<Scalars['String']['output']>;
|
|
8397
8475
|
organization?: Maybe<Scalars['String']['output']>;
|
|
8398
8476
|
phoneNumbers?: Maybe<Array<Maybe<AtlassianAccountUserPhoneNumber>>>;
|
|
8477
|
+
pronouns?: Maybe<Scalars['String']['output']>;
|
|
8399
8478
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
8400
8479
|
};
|
|
8401
8480
|
export declare type AtlassianAccountUserPhoneNumber = {
|
|
@@ -18473,6 +18552,22 @@ export declare type ConfluenceContentRestrictionUpdated = {
|
|
|
18473
18552
|
__typename?: 'ConfluenceContentRestrictionUpdated';
|
|
18474
18553
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
18475
18554
|
};
|
|
18555
|
+
export declare type ConfluenceContentShareMetadata = {
|
|
18556
|
+
altOrigin?: InputMaybe<Scalars['String']['input']>;
|
|
18557
|
+
shareAction?: InputMaybe<Scalars['String']['input']>;
|
|
18558
|
+
};
|
|
18559
|
+
export declare type ConfluenceContentShareRecipient = {
|
|
18560
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
18561
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
18562
|
+
recipientType: ConfluenceRecipientType;
|
|
18563
|
+
};
|
|
18564
|
+
export declare type ConfluenceContentShareRequestInput = {
|
|
18565
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
18566
|
+
content: ConfluenceShareContent;
|
|
18567
|
+
contentShareMetadata?: InputMaybe<ConfluenceContentShareMetadata>;
|
|
18568
|
+
recipients?: InputMaybe<Array<InputMaybe<ConfluenceContentShareRecipient>>>;
|
|
18569
|
+
sharerAaid?: InputMaybe<Scalars['String']['input']>;
|
|
18570
|
+
};
|
|
18476
18571
|
export declare type ConfluenceContentState = {
|
|
18477
18572
|
__typename?: 'ConfluenceContentState';
|
|
18478
18573
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -21615,6 +21710,11 @@ export declare type ConfluenceReactionsSummaryResponse = {
|
|
|
21615
21710
|
reactionsCount?: Maybe<Scalars['Int']['output']>;
|
|
21616
21711
|
reactionsSummaryForEmoji?: Maybe<Array<Maybe<ConfluenceReactionsSummaryForEmoji>>>;
|
|
21617
21712
|
};
|
|
21713
|
+
export declare enum ConfluenceRecipientType {
|
|
21714
|
+
Group = "GROUP",
|
|
21715
|
+
Team = "TEAM",
|
|
21716
|
+
User = "USER"
|
|
21717
|
+
}
|
|
21618
21718
|
export declare type ConfluenceRedactionMetadata = {
|
|
21619
21719
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
21620
21720
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -21888,6 +21988,16 @@ export declare type ConfluenceShareConfiguration = {
|
|
|
21888
21988
|
__typename?: 'ConfluenceShareConfiguration';
|
|
21889
21989
|
disableSharingToEmails: Scalars['Boolean']['output'];
|
|
21890
21990
|
};
|
|
21991
|
+
export declare type ConfluenceShareContent = {
|
|
21992
|
+
contentId: Scalars['ID']['input'];
|
|
21993
|
+
contentUrl?: InputMaybe<Scalars['String']['input']>;
|
|
21994
|
+
};
|
|
21995
|
+
export declare type ConfluenceShareContentPayload = Payload & {
|
|
21996
|
+
__typename?: 'ConfluenceShareContentPayload';
|
|
21997
|
+
errors: Array<MutationError>;
|
|
21998
|
+
success: Scalars['Boolean']['output'];
|
|
21999
|
+
triggerId?: Maybe<Scalars['String']['output']>;
|
|
22000
|
+
};
|
|
21891
22001
|
export declare type ConfluenceSiteConfiguration = {
|
|
21892
22002
|
__typename?: 'ConfluenceSiteConfiguration';
|
|
21893
22003
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
@@ -22323,6 +22433,11 @@ export declare type ConfluenceTemplateInfoInput = {
|
|
|
22323
22433
|
styleClass?: InputMaybe<Scalars['String']['input']>;
|
|
22324
22434
|
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
22325
22435
|
templateType?: InputMaybe<Scalars['String']['input']>;
|
|
22436
|
+
variables?: InputMaybe<Array<InputMaybe<ConfluenceTemplateVariableInput>>>;
|
|
22437
|
+
};
|
|
22438
|
+
export declare type ConfluenceTemplateVariableInput = {
|
|
22439
|
+
key: Scalars['String']['input'];
|
|
22440
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
22326
22441
|
};
|
|
22327
22442
|
export declare type ConfluenceTemplates = {
|
|
22328
22443
|
__typename?: 'ConfluenceTemplates';
|
|
@@ -23595,6 +23710,7 @@ export declare type Content = {
|
|
|
23595
23710
|
schedulePublishDate?: Maybe<Scalars['String']['output']>;
|
|
23596
23711
|
schedulePublishInfo?: Maybe<SchedulePublishInfo>;
|
|
23597
23712
|
smartFeatures?: Maybe<SmartPageFeatures>;
|
|
23713
|
+
smartFeaturesV2?: Maybe<SmartPageFeatures>;
|
|
23598
23714
|
space?: Maybe<Space>;
|
|
23599
23715
|
status?: Maybe<Scalars['String']['output']>;
|
|
23600
23716
|
subType?: Maybe<Scalars['String']['output']>;
|
|
@@ -28831,8 +28947,8 @@ export declare type CustomerServiceRequestEdge = {
|
|
|
28831
28947
|
node?: Maybe<CustomerServiceRequest>;
|
|
28832
28948
|
};
|
|
28833
28949
|
export declare type CustomerServiceRequestFilterInput = {
|
|
28950
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
28834
28951
|
status?: InputMaybe<CustomerServiceStatusKey>;
|
|
28835
|
-
summaryContains?: InputMaybe<Scalars['String']['input']>;
|
|
28836
28952
|
};
|
|
28837
28953
|
export declare type CustomerServiceRequestFormDataConnection = {
|
|
28838
28954
|
__typename?: 'CustomerServiceRequestFormDataConnection';
|
|
@@ -30303,6 +30419,7 @@ export declare type DevAiRovoDevIssueViewResponseSessionsArgs = {
|
|
|
30303
30419
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
30304
30420
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30305
30421
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
30422
|
+
statusCategoryFilter?: InputMaybe<DevAiSessionStatusCategoryFilter>;
|
|
30306
30423
|
};
|
|
30307
30424
|
export declare enum DevAiRovoDevPrStatus {
|
|
30308
30425
|
Declined = "DECLINED",
|
|
@@ -30433,6 +30550,12 @@ export declare enum DevAiScanIntervalUnit {
|
|
|
30433
30550
|
Months = "MONTHS",
|
|
30434
30551
|
Weeks = "WEEKS"
|
|
30435
30552
|
}
|
|
30553
|
+
export declare enum DevAiSessionStatusCategoryFilter {
|
|
30554
|
+
All = "ALL",
|
|
30555
|
+
Completed = "COMPLETED",
|
|
30556
|
+
Deleted = "DELETED",
|
|
30557
|
+
Working = "WORKING"
|
|
30558
|
+
}
|
|
30436
30559
|
export declare type DevAiSetAutofixConfigurationForRepositoryInput = {
|
|
30437
30560
|
codeCoverageCommand: Scalars['String']['input'];
|
|
30438
30561
|
codeCoverageReportPath: Scalars['String']['input'];
|
|
@@ -35370,6 +35493,14 @@ export declare type ForgeAuditLogEdge = {
|
|
|
35370
35493
|
cursor: Scalars['String']['output'];
|
|
35371
35494
|
node?: Maybe<ForgeAuditLog>;
|
|
35372
35495
|
};
|
|
35496
|
+
export declare type ForgeAuditLogFeatureFlag = {
|
|
35497
|
+
__typename?: 'ForgeAuditLogFeatureFlag';
|
|
35498
|
+
action: ForgeAuditLogsFeatureFlagsActionType;
|
|
35499
|
+
actorId: Scalars['ID']['output'];
|
|
35500
|
+
changes?: Maybe<ForgeAuditLogsFeatureFlagChanges>;
|
|
35501
|
+
details: Array<Scalars['String']['output']>;
|
|
35502
|
+
timestamp: Scalars['String']['output'];
|
|
35503
|
+
};
|
|
35373
35504
|
export declare enum ForgeAuditLogsActionType {
|
|
35374
35505
|
ContributorAdded = "CONTRIBUTOR_ADDED",
|
|
35375
35506
|
ContributorRemoved = "CONTRIBUTOR_REMOVED",
|
|
@@ -35432,12 +35563,82 @@ export declare type ForgeAuditLogsDaResResponse = {
|
|
|
35432
35563
|
data?: Maybe<Array<Maybe<ForgeAuditLogsDaResAppData>>>;
|
|
35433
35564
|
};
|
|
35434
35565
|
export declare type ForgeAuditLogsDaResResult = ForgeAuditLogsDaResResponse | QueryError;
|
|
35566
|
+
export declare type ForgeAuditLogsFeatureFlagChanges = {
|
|
35567
|
+
__typename?: 'ForgeAuditLogsFeatureFlagChanges';
|
|
35568
|
+
description?: Maybe<ForgeAuditLogsFeatureFlagDescriptionChange>;
|
|
35569
|
+
enabled?: Maybe<ForgeAuditLogsFeatureFlagEnabledChange>;
|
|
35570
|
+
idType?: Maybe<ForgeAuditLogsFeatureFlagIdTypeChange>;
|
|
35571
|
+
rules?: Maybe<ForgeAuditLogsFeatureFlagRules>;
|
|
35572
|
+
};
|
|
35573
|
+
export declare type ForgeAuditLogsFeatureFlagCondition = {
|
|
35574
|
+
__typename?: 'ForgeAuditLogsFeatureFlagCondition';
|
|
35575
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
35576
|
+
operator?: Maybe<Scalars['String']['output']>;
|
|
35577
|
+
order: Scalars['Int']['output'];
|
|
35578
|
+
type: Scalars['String']['output'];
|
|
35579
|
+
values?: Maybe<Scalars['JSON']['output']>;
|
|
35580
|
+
};
|
|
35581
|
+
export declare type ForgeAuditLogsFeatureFlagDescriptionChange = {
|
|
35582
|
+
__typename?: 'ForgeAuditLogsFeatureFlagDescriptionChange';
|
|
35583
|
+
new?: Maybe<Scalars['String']['output']>;
|
|
35584
|
+
old?: Maybe<Scalars['String']['output']>;
|
|
35585
|
+
};
|
|
35586
|
+
export declare type ForgeAuditLogsFeatureFlagEnabledChange = {
|
|
35587
|
+
__typename?: 'ForgeAuditLogsFeatureFlagEnabledChange';
|
|
35588
|
+
new?: Maybe<Scalars['Boolean']['output']>;
|
|
35589
|
+
old?: Maybe<Scalars['Boolean']['output']>;
|
|
35590
|
+
};
|
|
35591
|
+
export declare type ForgeAuditLogsFeatureFlagIdTypeChange = {
|
|
35592
|
+
__typename?: 'ForgeAuditLogsFeatureFlagIdTypeChange';
|
|
35593
|
+
new?: Maybe<Scalars['String']['output']>;
|
|
35594
|
+
old?: Maybe<Scalars['String']['output']>;
|
|
35595
|
+
};
|
|
35596
|
+
export declare type ForgeAuditLogsFeatureFlagReturnValue = {
|
|
35597
|
+
__typename?: 'ForgeAuditLogsFeatureFlagReturnValue';
|
|
35598
|
+
type: Scalars['String']['output'];
|
|
35599
|
+
value: Scalars['String']['output'];
|
|
35600
|
+
};
|
|
35601
|
+
export declare type ForgeAuditLogsFeatureFlagRule = {
|
|
35602
|
+
__typename?: 'ForgeAuditLogsFeatureFlagRule';
|
|
35603
|
+
conditions: Array<ForgeAuditLogsFeatureFlagCondition>;
|
|
35604
|
+
env: Array<Scalars['String']['output']>;
|
|
35605
|
+
name: Scalars['String']['output'];
|
|
35606
|
+
order: Scalars['Int']['output'];
|
|
35607
|
+
passPercentage: Scalars['Int']['output'];
|
|
35608
|
+
returnValue: ForgeAuditLogsFeatureFlagReturnValue;
|
|
35609
|
+
};
|
|
35610
|
+
export declare type ForgeAuditLogsFeatureFlagRules = {
|
|
35611
|
+
__typename?: 'ForgeAuditLogsFeatureFlagRules';
|
|
35612
|
+
new?: Maybe<Array<ForgeAuditLogsFeatureFlagRule>>;
|
|
35613
|
+
old?: Maybe<Array<ForgeAuditLogsFeatureFlagRule>>;
|
|
35614
|
+
};
|
|
35615
|
+
export declare enum ForgeAuditLogsFeatureFlagsActionType {
|
|
35616
|
+
FeatureFlagCreated = "FEATURE_FLAG_CREATED",
|
|
35617
|
+
FeatureFlagDeleted = "FEATURE_FLAG_DELETED",
|
|
35618
|
+
FeatureFlagToggled = "FEATURE_FLAG_TOGGLED",
|
|
35619
|
+
FeatureFlagUpdated = "FEATURE_FLAG_UPDATED"
|
|
35620
|
+
}
|
|
35621
|
+
export declare type ForgeAuditLogsFeatureFlagsQueryInput = {
|
|
35622
|
+
action?: InputMaybe<ForgeAuditLogsFeatureFlagsActionType>;
|
|
35623
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35624
|
+
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
35625
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35626
|
+
flagId: Scalars['ID']['input'];
|
|
35627
|
+
startTime?: InputMaybe<Scalars['String']['input']>;
|
|
35628
|
+
};
|
|
35629
|
+
export declare type ForgeAuditLogsFeatureFlagsResponse = {
|
|
35630
|
+
__typename?: 'ForgeAuditLogsFeatureFlagsResponse';
|
|
35631
|
+
data: Array<ForgeAuditLogFeatureFlag>;
|
|
35632
|
+
pageInfo: PageInfo;
|
|
35633
|
+
};
|
|
35634
|
+
export declare type ForgeAuditLogsFeatureFlagsResult = ForgeAuditLogsFeatureFlagsResponse | QueryError;
|
|
35435
35635
|
export declare type ForgeAuditLogsQuery = {
|
|
35436
35636
|
__typename?: 'ForgeAuditLogsQuery';
|
|
35437
35637
|
appId: Scalars['ID']['output'];
|
|
35438
35638
|
auditLogs?: Maybe<ForgeAuditLogsResult>;
|
|
35439
35639
|
contributors?: Maybe<ForgeAuditLogsAppContributorResult>;
|
|
35440
35640
|
daResAuditLogs?: Maybe<ForgeAuditLogsDaResResult>;
|
|
35641
|
+
featureFlagsAuditLogs?: Maybe<ForgeAuditLogsFeatureFlagsResult>;
|
|
35441
35642
|
};
|
|
35442
35643
|
export declare type ForgeAuditLogsQueryAuditLogsArgs = {
|
|
35443
35644
|
input: ForgeAuditLogsQueryInput;
|
|
@@ -35445,6 +35646,9 @@ export declare type ForgeAuditLogsQueryAuditLogsArgs = {
|
|
|
35445
35646
|
export declare type ForgeAuditLogsQueryDaResAuditLogsArgs = {
|
|
35446
35647
|
input: ForgeAuditLogsDaResQueryInput;
|
|
35447
35648
|
};
|
|
35649
|
+
export declare type ForgeAuditLogsQueryFeatureFlagsAuditLogsArgs = {
|
|
35650
|
+
input: ForgeAuditLogsFeatureFlagsQueryInput;
|
|
35651
|
+
};
|
|
35448
35652
|
export declare type ForgeAuditLogsQueryInput = {
|
|
35449
35653
|
actions?: InputMaybe<Array<ForgeAuditLogsActionType>>;
|
|
35450
35654
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -88010,8 +88214,12 @@ export declare type InfluentsNotificationFeedEdge = {
|
|
|
88010
88214
|
node: InfluentsNotificationHeadItem;
|
|
88011
88215
|
};
|
|
88012
88216
|
export declare type InfluentsNotificationFilter = {
|
|
88217
|
+
afterTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
88218
|
+
beforeTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
88013
88219
|
categoryFilter?: InputMaybe<InfluentsNotificationCategory>;
|
|
88014
88220
|
eventTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
88221
|
+
excludeActor?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88222
|
+
includeActor?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88015
88223
|
productFilter?: InputMaybe<Scalars['String']['input']>;
|
|
88016
88224
|
readStateFilter?: InputMaybe<InfluentsNotificationReadState>;
|
|
88017
88225
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -88083,6 +88291,8 @@ export declare type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
|
88083
88291
|
beforeInclusive?: InputMaybe<Scalars['String']['input']>;
|
|
88084
88292
|
beforeInclusiveTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
88085
88293
|
category?: InputMaybe<InfluentsNotificationCategory>;
|
|
88294
|
+
excludeActor?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88295
|
+
includeActor?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88086
88296
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
88087
88297
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
88088
88298
|
};
|
|
@@ -90927,6 +91137,7 @@ export declare type JiraBoardViewFieldSwimlane = JiraBoardViewSwimlane & Node &
|
|
|
90927
91137
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
90928
91138
|
field?: Maybe<JiraField>;
|
|
90929
91139
|
id: Scalars['ID']['output'];
|
|
91140
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
90930
91141
|
value?: Maybe<JiraBoardViewFieldSwimlaneValue>;
|
|
90931
91142
|
};
|
|
90932
91143
|
export declare type JiraBoardViewFieldSwimlaneCellsArgs = {
|
|
@@ -91009,6 +91220,7 @@ export declare type JiraBoardViewStatusEdge = {
|
|
|
91009
91220
|
export declare type JiraBoardViewSwimlane = {
|
|
91010
91221
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
91011
91222
|
id: Scalars['ID']['output'];
|
|
91223
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
91012
91224
|
};
|
|
91013
91225
|
export declare type JiraBoardViewSwimlaneCellsArgs = {
|
|
91014
91226
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -99785,6 +99997,7 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
99785
99997
|
export declare type JiraListSettingMigrationData = {
|
|
99786
99998
|
columns?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
99787
99999
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
100000
|
+
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99788
100001
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
99789
100002
|
projectId: Scalars['Long']['input'];
|
|
99790
100003
|
};
|
|
@@ -112180,7 +112393,8 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
112180
112393
|
Completed = "COMPLETED",
|
|
112181
112394
|
Failed = "FAILED",
|
|
112182
112395
|
InProgress = "IN_PROGRESS",
|
|
112183
|
-
Pending = "PENDING"
|
|
112396
|
+
Pending = "PENDING",
|
|
112397
|
+
Waiting = "WAITING"
|
|
112184
112398
|
}
|
|
112185
112399
|
export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
112186
112400
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
@@ -112844,6 +113058,7 @@ export declare type JsmConversationClaimedConversationMessage = {
|
|
|
112844
113058
|
__typename?: 'JsmConversationClaimedConversationMessage';
|
|
112845
113059
|
author?: Maybe<Scalars['ID']['output']>;
|
|
112846
113060
|
conversationId: Scalars['ID']['output'];
|
|
113061
|
+
expiresIn?: Maybe<Scalars['Long']['output']>;
|
|
112847
113062
|
plainTextContent?: Maybe<Scalars['String']['output']>;
|
|
112848
113063
|
};
|
|
112849
113064
|
export declare type JsmConversationCloseConversationInput = {
|
|
@@ -113286,6 +113501,7 @@ export declare type KitsuneFeedback = Node & {
|
|
|
113286
113501
|
chunks: KitsuneChunkConnection;
|
|
113287
113502
|
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
113288
113503
|
id: Scalars['ID']['output'];
|
|
113504
|
+
summary?: Maybe<KitsuneFeedbackSummary>;
|
|
113289
113505
|
title?: Maybe<Scalars['String']['output']>;
|
|
113290
113506
|
};
|
|
113291
113507
|
export declare type KitsuneFeedbackChunksArgs = {
|
|
@@ -113315,6 +113531,11 @@ export declare type KitsuneFeedbackEvent = {
|
|
|
113315
113531
|
updatedAt: Scalars['DateTime']['output'];
|
|
113316
113532
|
url: Scalars['String']['output'];
|
|
113317
113533
|
};
|
|
113534
|
+
export declare type KitsuneFeedbackSummary = {
|
|
113535
|
+
__typename?: 'KitsuneFeedbackSummary';
|
|
113536
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
113537
|
+
text: Scalars['String']['output'];
|
|
113538
|
+
};
|
|
113318
113539
|
export declare type KitsuneNode = {
|
|
113319
113540
|
_id: Scalars['ID']['output'];
|
|
113320
113541
|
};
|
|
@@ -117874,11 +118095,6 @@ export declare type MarketplaceStoreCompatibilityRanges = {
|
|
|
117874
118095
|
end?: Maybe<Scalars['String']['output']>;
|
|
117875
118096
|
start?: Maybe<Scalars['String']['output']>;
|
|
117876
118097
|
};
|
|
117877
|
-
export declare type MarketplaceStoreCompatibleAtlassianProduct = {
|
|
117878
|
-
__typename?: 'MarketplaceStoreCompatibleAtlassianProduct';
|
|
117879
|
-
id: Scalars['ID']['output'];
|
|
117880
|
-
name: Scalars['String']['output'];
|
|
117881
|
-
};
|
|
117882
118098
|
export declare type MarketplaceStoreCompatibleProducts = {
|
|
117883
118099
|
__typename?: 'MarketplaceStoreCompatibleProducts';
|
|
117884
118100
|
entitlementDetails?: Maybe<Array<Maybe<MarketplaceStoreEntitlementDetails>>>;
|
|
@@ -118649,7 +118865,7 @@ export declare type MarketplaceStoreSiteDetailsInput = {
|
|
|
118649
118865
|
};
|
|
118650
118866
|
export declare type MarketplaceStoreSiteDetailsResponse = {
|
|
118651
118867
|
__typename?: 'MarketplaceStoreSiteDetailsResponse';
|
|
118652
|
-
additionalCompatibleProducts?: Maybe<
|
|
118868
|
+
additionalCompatibleProducts?: Maybe<MarketplaceStoreCompatibleProducts>;
|
|
118653
118869
|
cloudId: Scalars['String']['output'];
|
|
118654
118870
|
compatibleProducts?: Maybe<MarketplaceStoreCompatibleProducts>;
|
|
118655
118871
|
installedAppUsers?: Maybe<Scalars['Int']['output']>;
|
|
@@ -121292,6 +121508,7 @@ export declare type MercuryProviderOrchestrationQueryApi = {
|
|
|
121292
121508
|
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
121293
121509
|
isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
|
|
121294
121510
|
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
121511
|
+
workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
|
|
121295
121512
|
};
|
|
121296
121513
|
export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
|
|
121297
121514
|
cloudId: Scalars['ID']['input'];
|
|
@@ -121307,6 +121524,9 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArg
|
|
|
121307
121524
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
121308
121525
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
121309
121526
|
};
|
|
121527
|
+
export declare type MercuryProviderOrchestrationQueryApiWorkStatusesArgs = {
|
|
121528
|
+
cloudId: Scalars['ID']['input'];
|
|
121529
|
+
};
|
|
121310
121530
|
export declare type MercuryProviderUser = {
|
|
121311
121531
|
id: Scalars['ID']['output'];
|
|
121312
121532
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -121377,6 +121597,7 @@ export declare type MercuryProviderWorkSearchProjectFilters = {
|
|
|
121377
121597
|
export declare type MercuryProviderWorkStatus = {
|
|
121378
121598
|
__typename?: 'MercuryProviderWorkStatus';
|
|
121379
121599
|
color: MercuryProviderWorkStatusColor;
|
|
121600
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
121380
121601
|
name: Scalars['String']['output'];
|
|
121381
121602
|
};
|
|
121382
121603
|
export declare enum MercuryProviderWorkStatusColor {
|
|
@@ -122997,6 +123218,7 @@ export declare type Mutation = {
|
|
|
122997
123218
|
assetsDM_deleteDataDictionaryGroup?: Maybe<AssetsDmDeleteDataDictionaryGroupResponse>;
|
|
122998
123219
|
assetsDM_deleteDataDictionaryGroupValue?: Maybe<AssetsDmDeleteDataDictionaryGroupValueResponse>;
|
|
122999
123220
|
assetsDM_deleteDataSource?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
123221
|
+
assetsDM_deleteDataSourceConfig?: Maybe<AssetsDmDeleteDataSourceConfigPayload>;
|
|
123000
123222
|
assetsDM_deleteDataSourceType?: Maybe<AssetsDmDeleteDataSourceTypeResponse>;
|
|
123001
123223
|
assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
|
|
123002
123224
|
assetsDM_deleteDefaultCleansingRule?: Maybe<AssetsDmDeleteDefaultCleansingRuleResponse>;
|
|
@@ -123022,6 +123244,7 @@ export declare type Mutation = {
|
|
|
123022
123244
|
avpPermissions_updateDashboardUserAccess?: Maybe<AvpPermissionsUpdateDashboardUserAccessPayload>;
|
|
123023
123245
|
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
123024
123246
|
avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
|
|
123247
|
+
avp_addFilterExpressions?: Maybe<AvpAddFilterExpressionsPayload>;
|
|
123025
123248
|
avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
|
|
123026
123249
|
avp_cloneChart?: Maybe<AvpCloneChartPayload>;
|
|
123027
123250
|
avp_copyChart?: Maybe<AvpCopyChartPayload>;
|
|
@@ -123034,6 +123257,7 @@ export declare type Mutation = {
|
|
|
123034
123257
|
avp_createVariable?: Maybe<AvpCreateVariablePayload>;
|
|
123035
123258
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
123036
123259
|
avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
|
|
123260
|
+
avp_deleteFilterExpressions?: Maybe<AvpDeleteFilterExpressionsPayload>;
|
|
123037
123261
|
avp_deleteVariable?: Maybe<AvpDeleteVariablePayload>;
|
|
123038
123262
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
123039
123263
|
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
@@ -123048,6 +123272,7 @@ export declare type Mutation = {
|
|
|
123048
123272
|
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
123049
123273
|
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
123050
123274
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
123275
|
+
avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
|
|
123051
123276
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
123052
123277
|
blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
|
|
123053
123278
|
blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
|
|
@@ -123141,6 +123366,7 @@ export declare type Mutation = {
|
|
|
123141
123366
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
123142
123367
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
123143
123368
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
123369
|
+
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
123144
123370
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
123145
123371
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
123146
123372
|
confluence_unschedulePublish?: Maybe<ConfluenceUnschedulePublishPayload>;
|
|
@@ -123554,6 +123780,7 @@ export declare type Mutation = {
|
|
|
123554
123780
|
jsw?: Maybe<JswMutation>;
|
|
123555
123781
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
123556
123782
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
123783
|
+
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
123557
123784
|
kitsune_importFeedbackFromCsv?: Maybe<Scalars['Boolean']['output']>;
|
|
123558
123785
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
123559
123786
|
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -123704,7 +123931,6 @@ export declare type Mutation = {
|
|
|
123704
123931
|
revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
|
|
123705
123932
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
123706
123933
|
runImport?: Maybe<RunImportPayload>;
|
|
123707
|
-
sendMessage?: Maybe<AquaMessage>;
|
|
123708
123934
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
123709
123935
|
setAppLicenseId?: Maybe<SetAppLicenseIdResponse>;
|
|
123710
123936
|
setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
@@ -124310,6 +124536,11 @@ export declare type MutationAssetsDm_DeleteDataSourceArgs = {
|
|
|
124310
124536
|
input: AssetsDmDeleteDataSourceInput;
|
|
124311
124537
|
workspaceId: Scalars['ID']['input'];
|
|
124312
124538
|
};
|
|
124539
|
+
export declare type MutationAssetsDm_DeleteDataSourceConfigArgs = {
|
|
124540
|
+
cloudId: Scalars['ID']['input'];
|
|
124541
|
+
jobId: Scalars['ID']['input'];
|
|
124542
|
+
workspaceId: Scalars['ID']['input'];
|
|
124543
|
+
};
|
|
124313
124544
|
export declare type MutationAssetsDm_DeleteDataSourceTypeArgs = {
|
|
124314
124545
|
cloudId: Scalars['String']['input'];
|
|
124315
124546
|
dataSourceTypeId: Scalars['ID']['input'];
|
|
@@ -124425,6 +124656,9 @@ export declare type MutationAvp_AddDashboardElementArgs = {
|
|
|
124425
124656
|
export declare type MutationAvp_AddDashboardRowArgs = {
|
|
124426
124657
|
input: AvpAddDashboardRowInput;
|
|
124427
124658
|
};
|
|
124659
|
+
export declare type MutationAvp_AddFilterExpressionsArgs = {
|
|
124660
|
+
input: AvpAddFilterExpressionsInput;
|
|
124661
|
+
};
|
|
124428
124662
|
export declare type MutationAvp_ClearChartsInRowArgs = {
|
|
124429
124663
|
input: AvpClearChartsInRowInput;
|
|
124430
124664
|
};
|
|
@@ -124461,6 +124695,9 @@ export declare type MutationAvp_DeleteChartArgs = {
|
|
|
124461
124695
|
export declare type MutationAvp_DeleteDashboardFilterArgs = {
|
|
124462
124696
|
input: AvpDeleteDashboardFilterInput;
|
|
124463
124697
|
};
|
|
124698
|
+
export declare type MutationAvp_DeleteFilterExpressionsArgs = {
|
|
124699
|
+
input: AvpDeleteFilterExpressionsInput;
|
|
124700
|
+
};
|
|
124464
124701
|
export declare type MutationAvp_DeleteVariableArgs = {
|
|
124465
124702
|
input: AvpDeleteVariableInput;
|
|
124466
124703
|
};
|
|
@@ -124503,6 +124740,9 @@ export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
|
|
|
124503
124740
|
export declare type MutationAvp_UpdateDashboardStatusArgs = {
|
|
124504
124741
|
input: AvpUpdateDashboardStatusInput;
|
|
124505
124742
|
};
|
|
124743
|
+
export declare type MutationAvp_UpdateFilterExpressionArgs = {
|
|
124744
|
+
input: AvpUpdateFilterExpressionInput;
|
|
124745
|
+
};
|
|
124506
124746
|
export declare type MutationAvp_UpdateVariableArgs = {
|
|
124507
124747
|
input: AvpUpdateVariableInput;
|
|
124508
124748
|
};
|
|
@@ -124845,6 +125085,10 @@ export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
|
124845
125085
|
cloudId: Scalars['ID']['input'];
|
|
124846
125086
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
124847
125087
|
};
|
|
125088
|
+
export declare type MutationConfluence_ShareContentArgs = {
|
|
125089
|
+
ContentShareRequestInput?: InputMaybe<ConfluenceContentShareRequestInput>;
|
|
125090
|
+
cloudId: Scalars['ID']['input'];
|
|
125091
|
+
};
|
|
124848
125092
|
export declare type MutationConfluence_SubscribeCalendarsArgs = {
|
|
124849
125093
|
cloudId: Scalars['ID']['input'];
|
|
124850
125094
|
input: ConfluenceCalendarSubscribeInput;
|
|
@@ -126227,6 +126471,9 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
126227
126471
|
name: Scalars['String']['input'];
|
|
126228
126472
|
workspaceAri: Scalars['ID']['input'];
|
|
126229
126473
|
};
|
|
126474
|
+
export declare type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
126475
|
+
feedbackAri: Scalars['ID']['input'];
|
|
126476
|
+
};
|
|
126230
126477
|
export declare type MutationKitsune_ImportFeedbackFromCsvArgs = {
|
|
126231
126478
|
csv: Scalars['Upload']['input'];
|
|
126232
126479
|
spaceAri: Scalars['ID']['input'];
|
|
@@ -126681,10 +126928,6 @@ export declare type MutationRevertToLegacyEditorArgs = {
|
|
|
126681
126928
|
export declare type MutationRunImportArgs = {
|
|
126682
126929
|
input: RunImportInput;
|
|
126683
126930
|
};
|
|
126684
|
-
export declare type MutationSendMessageArgs = {
|
|
126685
|
-
conversationId: Scalars['String']['input'];
|
|
126686
|
-
input: AquaSendMessageInput;
|
|
126687
|
-
};
|
|
126688
126931
|
export declare type MutationSetAppEnvironmentVariableArgs = {
|
|
126689
126932
|
input: SetAppEnvironmentVariableInput;
|
|
126690
126933
|
};
|
|
@@ -130304,6 +130547,7 @@ export declare type Query = {
|
|
|
130304
130547
|
apps?: Maybe<AppConnection>;
|
|
130305
130548
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
130306
130549
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
130550
|
+
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
130307
130551
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
130308
130552
|
assetsDM_attributePriority?: Maybe<AssetsDmAttributePriority>;
|
|
130309
130553
|
assetsDM_computedIssues?: Maybe<Array<AssetsDmComputedIssueItem>>;
|
|
@@ -130368,6 +130612,7 @@ export declare type Query = {
|
|
|
130368
130612
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
130369
130613
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
130370
130614
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
130615
|
+
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
130371
130616
|
avpanalytics_getmodeldata?: Maybe<AvpAnalyticsGetModelDataResponse>;
|
|
130372
130617
|
avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
|
|
130373
130618
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
@@ -131158,6 +131403,7 @@ export declare type Query = {
|
|
|
131158
131403
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
131159
131404
|
stakeholderComms_listSubscribers?: Maybe<StakeholderCommsListSubscriberResponse>;
|
|
131160
131405
|
stakeholderComms_listSubscribersConnection?: Maybe<StakeholderCommsSubscriberConnection>;
|
|
131406
|
+
stakeholderComms_subscriptionStats?: Maybe<StakeholderCommsSubscriptionStatsResponse>;
|
|
131161
131407
|
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
131162
131408
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
131163
131409
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
@@ -131848,6 +132094,10 @@ export declare type QueryAssetsDm_AdaptersArgs = {
|
|
|
131848
132094
|
cloudId: Scalars['ID']['input'];
|
|
131849
132095
|
workspaceId: Scalars['ID']['input'];
|
|
131850
132096
|
};
|
|
132097
|
+
export declare type QueryAssetsDm_AllCleansingRulesArgs = {
|
|
132098
|
+
cloudId: Scalars['ID']['input'];
|
|
132099
|
+
workspaceId: Scalars['ID']['input'];
|
|
132100
|
+
};
|
|
131851
132101
|
export declare type QueryAssetsDm_AttributePrioritiesListArgs = {
|
|
131852
132102
|
cloudId: Scalars['ID']['input'];
|
|
131853
132103
|
search?: InputMaybe<AssetsDmAttributePrioritySearch>;
|
|
@@ -132201,6 +132451,9 @@ export declare type QueryAvp_GetDashboardArgs = {
|
|
|
132201
132451
|
export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
132202
132452
|
input: AvpGetDashboardTemplatesInput;
|
|
132203
132453
|
};
|
|
132454
|
+
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
132455
|
+
dashboardAri: Scalars['ID']['input'];
|
|
132456
|
+
};
|
|
132204
132457
|
export declare type QueryAvpanalytics_GetmodeldataArgs = {
|
|
132205
132458
|
input?: InputMaybe<AvpAnalyticsGetModelDataRequest>;
|
|
132206
132459
|
};
|
|
@@ -133639,6 +133892,7 @@ export declare type QueryDevai_RovodevSessionsByIssueKeyArgs = {
|
|
|
133639
133892
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133640
133893
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133641
133894
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
133895
|
+
statusCategoryFilter?: InputMaybe<DevAiSessionStatusCategoryFilter>;
|
|
133642
133896
|
};
|
|
133643
133897
|
export declare type QueryDevai_SavedPromptsArgs = {
|
|
133644
133898
|
cloudId: Scalars['ID']['input'];
|
|
@@ -135368,6 +135622,10 @@ export declare type QueryStakeholderComms_ListSubscribersConnectionArgs = {
|
|
|
135368
135622
|
order?: InputMaybe<StakeholderCommsSubscriberConnectionOrder>;
|
|
135369
135623
|
search?: InputMaybe<StakeholderCommsSubscriberConnectionSearch>;
|
|
135370
135624
|
};
|
|
135625
|
+
export declare type QueryStakeholderComms_SubscriptionStatsArgs = {
|
|
135626
|
+
itemId: Scalars['ID']['input'];
|
|
135627
|
+
type: StakeholderCommsSubscriberItemType;
|
|
135628
|
+
};
|
|
135371
135629
|
export declare type QueryStakeholderComms_UnifiedSearchArgs = {
|
|
135372
135630
|
input: StakeholderCommsUnifiedSearchInput;
|
|
135373
135631
|
};
|
|
@@ -161469,6 +161727,11 @@ export declare enum StakeholderCommsSubscriberStatus {
|
|
|
161469
161727
|
Unsubscribed = "UNSUBSCRIBED",
|
|
161470
161728
|
Unverified = "UNVERIFIED"
|
|
161471
161729
|
}
|
|
161730
|
+
export declare type StakeholderCommsSubscriberStatusCount = {
|
|
161731
|
+
__typename?: 'StakeholderCommsSubscriberStatusCount';
|
|
161732
|
+
count: Scalars['String']['output'];
|
|
161733
|
+
status: StakeholderCommsSubscriberStatus;
|
|
161734
|
+
};
|
|
161472
161735
|
export declare enum StakeholderCommsSubscriptionChannel {
|
|
161473
161736
|
Email = "EMAIL",
|
|
161474
161737
|
Slack = "SLACK",
|
|
@@ -161488,6 +161751,20 @@ export declare type StakeholderCommsSubscriptionRequest = {
|
|
|
161488
161751
|
subscriptionData?: InputMaybe<StakeholderCommsSubscriptionData>;
|
|
161489
161752
|
subscriptionType: StakeholderCommsSubscriptionChannel;
|
|
161490
161753
|
};
|
|
161754
|
+
export declare type StakeholderCommsSubscriptionStats = {
|
|
161755
|
+
__typename?: 'StakeholderCommsSubscriptionStats';
|
|
161756
|
+
countsByStatus?: Maybe<Array<Maybe<StakeholderCommsSubscriberStatusCount>>>;
|
|
161757
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
161758
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
161759
|
+
itemType?: Maybe<Scalars['String']['output']>;
|
|
161760
|
+
totalQuotaUsed?: Maybe<Scalars['Int']['output']>;
|
|
161761
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
161762
|
+
};
|
|
161763
|
+
export declare type StakeholderCommsSubscriptionStatsResponse = {
|
|
161764
|
+
__typename?: 'StakeholderCommsSubscriptionStatsResponse';
|
|
161765
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
161766
|
+
stats?: Maybe<StakeholderCommsSubscriptionStats>;
|
|
161767
|
+
};
|
|
161491
161768
|
export declare enum StakeholderCommsSubscriptionType {
|
|
161492
161769
|
Email = "EMAIL",
|
|
161493
161770
|
MsTeams = "MS_TEAMS",
|
|
@@ -161728,7 +162005,6 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
161728
162005
|
};
|
|
161729
162006
|
export declare type Subscription = {
|
|
161730
162007
|
__typename?: 'Subscription';
|
|
161731
|
-
aqua?: Maybe<AquaLiveChatSubscription>;
|
|
161732
162008
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
161733
162009
|
blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
|
|
161734
162010
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
@@ -162350,7 +162626,8 @@ export declare enum SwimlaneStrategy {
|
|
|
162350
162626
|
Assignee = "ASSIGNEE",
|
|
162351
162627
|
Issuechildren = "ISSUECHILDREN",
|
|
162352
162628
|
Issueparent = "ISSUEPARENT",
|
|
162353
|
-
None = "NONE"
|
|
162629
|
+
None = "NONE",
|
|
162630
|
+
Townsquareproject = "TOWNSQUAREPROJECT"
|
|
162354
162631
|
}
|
|
162355
162632
|
export declare type SystemSpaceHomepageInput = {
|
|
162356
162633
|
systemSpaceHomepageTemplate: SystemSpaceHomepageTemplate;
|
|
@@ -169673,6 +169950,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
169673
169950
|
link?: Maybe<Scalars['String']['output']>;
|
|
169674
169951
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
169675
169952
|
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
169953
|
+
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
169676
169954
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
169677
169955
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
169678
169956
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|