@forge/cli-shared 7.1.0-next.1 → 7.1.0-next.2
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 +8 -0
- package/out/graphql/graphql-types.d.ts +553 -102
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +98 -25
- package/package.json +2 -2
|
@@ -776,6 +776,8 @@ export declare type AgentAiSuggestedActionContent = {
|
|
|
776
776
|
export declare type AgentAiSuggestedActionContext = {
|
|
777
777
|
__typename?: 'AgentAISuggestedActionContext';
|
|
778
778
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
779
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
780
|
+
fieldType?: Maybe<Scalars['String']['output']>;
|
|
779
781
|
id?: Maybe<Scalars['String']['output']>;
|
|
780
782
|
suggestion?: Maybe<Scalars['JSON']['output']>;
|
|
781
783
|
};
|
|
@@ -841,8 +843,8 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
841
843
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
842
844
|
name?: Maybe<Scalars['String']['output']>;
|
|
843
845
|
};
|
|
844
|
-
export declare type
|
|
845
|
-
__typename?: '
|
|
846
|
+
export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node & {
|
|
847
|
+
__typename?: 'AgentStudioAssistantScenario';
|
|
846
848
|
action?: Maybe<AgentStudioAction>;
|
|
847
849
|
creator?: Maybe<User>;
|
|
848
850
|
creatorId: Scalars['ID']['output'];
|
|
@@ -893,7 +895,7 @@ export declare type AgentStudioCreateAgentPayload = Payload & {
|
|
|
893
895
|
errors?: Maybe<Array<MutationError>>;
|
|
894
896
|
success: Scalars['Boolean']['output'];
|
|
895
897
|
};
|
|
896
|
-
export declare type
|
|
898
|
+
export declare type AgentStudioCreateScenarioInput = {
|
|
897
899
|
action?: InputMaybe<AgentStudioActionInput>;
|
|
898
900
|
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
899
901
|
instructions: Scalars['String']['input'];
|
|
@@ -901,27 +903,17 @@ export declare type AgentStudioCreateCustomActionInput = {
|
|
|
901
903
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
902
904
|
name: Scalars['String']['input'];
|
|
903
905
|
};
|
|
904
|
-
export declare type
|
|
905
|
-
__typename?: '
|
|
906
|
-
customAction?: Maybe<AgentStudioCustomAction>;
|
|
906
|
+
export declare type AgentStudioCreateScenarioPayload = Payload & {
|
|
907
|
+
__typename?: 'AgentStudioCreateScenarioPayload';
|
|
907
908
|
errors?: Maybe<Array<MutationError>>;
|
|
909
|
+
scenario?: Maybe<AgentStudioScenario>;
|
|
908
910
|
success: Scalars['Boolean']['output'];
|
|
909
911
|
};
|
|
910
|
-
export declare type
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
instructions: Scalars['String']['output'];
|
|
915
|
-
invocationDescription: Scalars['String']['output'];
|
|
916
|
-
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
917
|
-
name: Scalars['String']['output'];
|
|
918
|
-
};
|
|
919
|
-
export declare type AgentStudioCustomActionList = {
|
|
920
|
-
__typename?: 'AgentStudioCustomActionList';
|
|
921
|
-
customActionList: Array<AgentStudioCustomAction>;
|
|
912
|
+
export declare type AgentStudioDeleteScenarioPayload = Payload & {
|
|
913
|
+
__typename?: 'AgentStudioDeleteScenarioPayload';
|
|
914
|
+
errors?: Maybe<Array<MutationError>>;
|
|
915
|
+
success: Scalars['Boolean']['output'];
|
|
922
916
|
};
|
|
923
|
-
export declare type AgentStudioCustomActionListResult = AgentStudioCustomActionList | QueryError;
|
|
924
|
-
export declare type AgentStudioCustomActionResult = AgentStudioAssistantCustomAction | QueryError;
|
|
925
917
|
export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
926
918
|
__typename?: 'AgentStudioEmailChannel';
|
|
927
919
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -982,6 +974,21 @@ export declare type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
|
982
974
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
983
975
|
url?: Maybe<Scalars['String']['output']>;
|
|
984
976
|
};
|
|
977
|
+
export declare type AgentStudioScenario = {
|
|
978
|
+
action?: Maybe<AgentStudioAction>;
|
|
979
|
+
creatorId: Scalars['ID']['output'];
|
|
980
|
+
id: Scalars['ID']['output'];
|
|
981
|
+
instructions: Scalars['String']['output'];
|
|
982
|
+
invocationDescription: Scalars['String']['output'];
|
|
983
|
+
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
984
|
+
name: Scalars['String']['output'];
|
|
985
|
+
};
|
|
986
|
+
export declare type AgentStudioScenarioList = {
|
|
987
|
+
__typename?: 'AgentStudioScenarioList';
|
|
988
|
+
scenarioList: Array<AgentStudioScenario>;
|
|
989
|
+
};
|
|
990
|
+
export declare type AgentStudioScenarioListResult = AgentStudioScenarioList | QueryError;
|
|
991
|
+
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
985
992
|
export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
986
993
|
__typename?: 'AgentStudioServiceAgent';
|
|
987
994
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
@@ -1062,7 +1069,7 @@ export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
|
1062
1069
|
errors?: Maybe<Array<MutationError>>;
|
|
1063
1070
|
success: Scalars['Boolean']['output'];
|
|
1064
1071
|
};
|
|
1065
|
-
export declare type
|
|
1072
|
+
export declare type AgentStudioUpdateScenarioInput = {
|
|
1066
1073
|
action?: InputMaybe<AgentStudioActionInput>;
|
|
1067
1074
|
creatorId: Scalars['ID']['input'];
|
|
1068
1075
|
instructions: Scalars['String']['input'];
|
|
@@ -1070,16 +1077,16 @@ export declare type AgentStudioUpdateCustomActionInput = {
|
|
|
1070
1077
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1071
1078
|
name: Scalars['String']['input'];
|
|
1072
1079
|
};
|
|
1073
|
-
export declare type
|
|
1074
|
-
__typename?: '
|
|
1075
|
-
customActionList?: Maybe<Array<AgentStudioCustomAction>>;
|
|
1080
|
+
export declare type AgentStudioUpdateScenarioMappingsPayload = Payload & {
|
|
1081
|
+
__typename?: 'AgentStudioUpdateScenarioMappingsPayload';
|
|
1076
1082
|
errors?: Maybe<Array<MutationError>>;
|
|
1083
|
+
scenarioList?: Maybe<Array<AgentStudioScenario>>;
|
|
1077
1084
|
success: Scalars['Boolean']['output'];
|
|
1078
1085
|
};
|
|
1079
|
-
export declare type
|
|
1080
|
-
__typename?: '
|
|
1081
|
-
customAction?: Maybe<AgentStudioCustomAction>;
|
|
1086
|
+
export declare type AgentStudioUpdateScenarioPayload = Payload & {
|
|
1087
|
+
__typename?: 'AgentStudioUpdateScenarioPayload';
|
|
1082
1088
|
errors?: Maybe<Array<MutationError>>;
|
|
1089
|
+
scenario?: Maybe<AgentStudioScenario>;
|
|
1083
1090
|
success: Scalars['Boolean']['output'];
|
|
1084
1091
|
};
|
|
1085
1092
|
export declare enum AiCoreApiQuestionType {
|
|
@@ -1277,6 +1284,7 @@ export declare enum ApiGroup {
|
|
|
1277
1284
|
DevopsToolchain = "DEVOPS_TOOLCHAIN",
|
|
1278
1285
|
FeatureReleaseQuery = "FEATURE_RELEASE_QUERY",
|
|
1279
1286
|
Forge = "FORGE",
|
|
1287
|
+
GuardDetect = "GUARD_DETECT",
|
|
1280
1288
|
Help = "HELP",
|
|
1281
1289
|
Identity = "IDENTITY",
|
|
1282
1290
|
InsightsXperienceService = "INSIGHTS_XPERIENCE_SERVICE",
|
|
@@ -3742,6 +3750,7 @@ export declare type CcpCreateEntitlementInput = {
|
|
|
3742
3750
|
relatedEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelationship>>;
|
|
3743
3751
|
};
|
|
3744
3752
|
export declare type CcpCreateEntitlementNewEntitlement = {
|
|
3753
|
+
hostName?: InputMaybe<Scalars['String']['input']>;
|
|
3745
3754
|
offeringId?: InputMaybe<Scalars['ID']['input']>;
|
|
3746
3755
|
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
3747
3756
|
relatedEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelationship>>;
|
|
@@ -3779,6 +3788,10 @@ export declare type CcpCycle = CommercePrimaryCycle & {
|
|
|
3779
3788
|
interval?: Maybe<CcpBillingInterval>;
|
|
3780
3789
|
name?: Maybe<Scalars['String']['output']>;
|
|
3781
3790
|
};
|
|
3791
|
+
export declare type CcpDeferredTerms = {
|
|
3792
|
+
__typename?: 'CcpDeferredTerms';
|
|
3793
|
+
invoiceDueDays?: Maybe<Scalars['Int']['output']>;
|
|
3794
|
+
};
|
|
3782
3795
|
export declare type CcpDerivedFromOffering = {
|
|
3783
3796
|
__typename?: 'CcpDerivedFromOffering';
|
|
3784
3797
|
originalOfferingKey?: Maybe<Scalars['ID']['output']>;
|
|
@@ -3841,6 +3854,10 @@ export declare type CcpEntitlementDefaultOfferingTransitionsArgs = {
|
|
|
3841
3854
|
export declare type CcpEntitlementDefaultStandaloneOfferingTransitionsArgs = {
|
|
3842
3855
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
3843
3856
|
};
|
|
3857
|
+
export declare type CcpEntitlementInvoiceRequestsArgs = {
|
|
3858
|
+
range?: InputMaybe<Array<CcpSearchFieldRangeInput>>;
|
|
3859
|
+
sort?: InputMaybe<Array<InputMaybe<CcpSearchSortInput>>>;
|
|
3860
|
+
};
|
|
3844
3861
|
export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
3845
3862
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
3846
3863
|
};
|
|
@@ -3937,21 +3954,42 @@ export declare type CcpInvoiceRequest = {
|
|
|
3937
3954
|
export declare type CcpInvoiceRequestItem = {
|
|
3938
3955
|
__typename?: 'CcpInvoiceRequestItem';
|
|
3939
3956
|
accruedCharges?: Maybe<Scalars['Boolean']['output']>;
|
|
3957
|
+
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
3940
3958
|
id?: Maybe<Scalars['ID']['output']>;
|
|
3959
|
+
irIssuedTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
3941
3960
|
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
3961
|
+
originalExternalItemReferral?: Maybe<CcpInvoiceRequestItemExternalReferral>;
|
|
3962
|
+
originalItemReferral?: Maybe<CcpInvoiceRequestItemReferral>;
|
|
3942
3963
|
period?: Maybe<CcpInvoiceRequestItemPeriod>;
|
|
3943
3964
|
planObj?: Maybe<CcpInvoiceRequestItemPlanObj>;
|
|
3944
3965
|
quantity?: Maybe<Scalars['Int']['output']>;
|
|
3966
|
+
selfReference?: Maybe<Scalars['Boolean']['output']>;
|
|
3967
|
+
subscriptionObj?: Maybe<CcpInvoiceRequestItemSubscriptionObj>;
|
|
3968
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
3969
|
+
};
|
|
3970
|
+
export declare type CcpInvoiceRequestItemExternalReferral = {
|
|
3971
|
+
__typename?: 'CcpInvoiceRequestItemExternalReferral';
|
|
3972
|
+
invoiceId?: Maybe<Scalars['ID']['output']>;
|
|
3945
3973
|
};
|
|
3946
3974
|
export declare type CcpInvoiceRequestItemPeriod = {
|
|
3947
3975
|
__typename?: 'CcpInvoiceRequestItemPeriod';
|
|
3948
|
-
|
|
3949
|
-
|
|
3976
|
+
end: Scalars['Float']['output'];
|
|
3977
|
+
start: Scalars['Float']['output'];
|
|
3950
3978
|
};
|
|
3951
3979
|
export declare type CcpInvoiceRequestItemPlanObj = {
|
|
3952
3980
|
__typename?: 'CcpInvoiceRequestItemPlanObj';
|
|
3953
3981
|
id?: Maybe<Scalars['ID']['output']>;
|
|
3954
3982
|
};
|
|
3983
|
+
export declare type CcpInvoiceRequestItemReferral = {
|
|
3984
|
+
__typename?: 'CcpInvoiceRequestItemReferral';
|
|
3985
|
+
invoiceRequest?: Maybe<Scalars['ID']['output']>;
|
|
3986
|
+
};
|
|
3987
|
+
export declare type CcpInvoiceRequestItemSubscriptionObj = {
|
|
3988
|
+
__typename?: 'CcpInvoiceRequestItemSubscriptionObj';
|
|
3989
|
+
chargeType?: Maybe<Scalars['String']['output']>;
|
|
3990
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3991
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
3992
|
+
};
|
|
3955
3993
|
export declare type CcpListPriceEstimate = {
|
|
3956
3994
|
__typename?: 'CcpListPriceEstimate';
|
|
3957
3995
|
averageAmountPerUnit?: Maybe<Scalars['Float']['output']>;
|
|
@@ -4108,6 +4146,46 @@ export declare type CcpOrderDefaultsInput = {
|
|
|
4108
4146
|
currentEntitlementId?: InputMaybe<Scalars['String']['input']>;
|
|
4109
4147
|
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
4110
4148
|
};
|
|
4149
|
+
export declare type CcpPaymentMethod = Node & {
|
|
4150
|
+
__typename?: 'CcpPaymentMethod';
|
|
4151
|
+
ach?: Maybe<CcpPaymentMethodAch>;
|
|
4152
|
+
card?: Maybe<CcpPaymentMethodCreditCard>;
|
|
4153
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4154
|
+
currency?: Maybe<CcpCurrency>;
|
|
4155
|
+
id: Scalars['ID']['output'];
|
|
4156
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
4157
|
+
payPal?: Maybe<CcpPaymentMethodPayPal>;
|
|
4158
|
+
terms?: Maybe<CcpDeferredTerms>;
|
|
4159
|
+
transactionAccount?: Maybe<CcpTransactionAccountPartition>;
|
|
4160
|
+
type?: Maybe<CcpPaymentMethodType>;
|
|
4161
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4162
|
+
};
|
|
4163
|
+
export declare type CcpPaymentMethodAch = {
|
|
4164
|
+
__typename?: 'CcpPaymentMethodAch';
|
|
4165
|
+
accountHolder?: Maybe<Scalars['String']['output']>;
|
|
4166
|
+
bankName?: Maybe<Scalars['String']['output']>;
|
|
4167
|
+
last4?: Maybe<Scalars['String']['output']>;
|
|
4168
|
+
routingNumber?: Maybe<Scalars['String']['output']>;
|
|
4169
|
+
valid?: Maybe<Scalars['Boolean']['output']>;
|
|
4170
|
+
};
|
|
4171
|
+
export declare type CcpPaymentMethodCreditCard = {
|
|
4172
|
+
__typename?: 'CcpPaymentMethodCreditCard';
|
|
4173
|
+
brand?: Maybe<Scalars['String']['output']>;
|
|
4174
|
+
cardHolderName?: Maybe<Scalars['String']['output']>;
|
|
4175
|
+
expiryMonth?: Maybe<Scalars['Int']['output']>;
|
|
4176
|
+
expiryYear?: Maybe<Scalars['Int']['output']>;
|
|
4177
|
+
last4?: Maybe<Scalars['String']['output']>;
|
|
4178
|
+
};
|
|
4179
|
+
export declare type CcpPaymentMethodPayPal = {
|
|
4180
|
+
__typename?: 'CcpPaymentMethodPayPal';
|
|
4181
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
4182
|
+
};
|
|
4183
|
+
export declare enum CcpPaymentMethodType {
|
|
4184
|
+
Ach = "ACH",
|
|
4185
|
+
Card = "CARD",
|
|
4186
|
+
Deferred = "DEFERRED",
|
|
4187
|
+
Paypal = "PAYPAL"
|
|
4188
|
+
}
|
|
4111
4189
|
export declare type CcpPostalAddress = {
|
|
4112
4190
|
__typename?: 'CcpPostalAddress';
|
|
4113
4191
|
city?: Maybe<Scalars['String']['output']>;
|
|
@@ -4222,6 +4300,7 @@ export declare type CcpQueryApi = {
|
|
|
4222
4300
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4223
4301
|
offering?: Maybe<CcpOffering>;
|
|
4224
4302
|
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
4303
|
+
paymentMethods?: Maybe<Array<Maybe<CcpPaymentMethod>>>;
|
|
4225
4304
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
4226
4305
|
pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
|
|
4227
4306
|
product?: Maybe<CcpProduct>;
|
|
@@ -4242,6 +4321,9 @@ export declare type CcpQueryApiOfferingArgs = {
|
|
|
4242
4321
|
export declare type CcpQueryApiOfferingsArgs = {
|
|
4243
4322
|
ids: Array<Scalars['ID']['input']>;
|
|
4244
4323
|
};
|
|
4324
|
+
export declare type CcpQueryApiPaymentMethodsArgs = {
|
|
4325
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4326
|
+
};
|
|
4245
4327
|
export declare type CcpQueryApiPricingPlanArgs = {
|
|
4246
4328
|
id: Scalars['ID']['input'];
|
|
4247
4329
|
};
|
|
@@ -4593,6 +4675,22 @@ export declare type CcpRootExperienceCapabilities = {
|
|
|
4593
4675
|
export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
|
|
4594
4676
|
input: CcpCreateEntitlementInput;
|
|
4595
4677
|
};
|
|
4678
|
+
export declare type CcpSearchFieldRangeInput = {
|
|
4679
|
+
bounds: CcpSearchTimestampBoundsInput;
|
|
4680
|
+
field: Scalars['String']['input'];
|
|
4681
|
+
};
|
|
4682
|
+
export declare type CcpSearchSortInput = {
|
|
4683
|
+
field: Scalars['String']['input'];
|
|
4684
|
+
order: CcpSearchSortOrder;
|
|
4685
|
+
};
|
|
4686
|
+
export declare enum CcpSearchSortOrder {
|
|
4687
|
+
Asc = "ASC",
|
|
4688
|
+
Desc = "DESC"
|
|
4689
|
+
}
|
|
4690
|
+
export declare type CcpSearchTimestampBoundsInput = {
|
|
4691
|
+
gte?: InputMaybe<Scalars['String']['input']>;
|
|
4692
|
+
lte?: InputMaybe<Scalars['String']['input']>;
|
|
4693
|
+
};
|
|
4596
4694
|
export declare type CcpShipToParty = Node & {
|
|
4597
4695
|
__typename?: 'CcpShipToParty';
|
|
4598
4696
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -7289,6 +7387,7 @@ export declare type CompassCustomFieldInput = {
|
|
|
7289
7387
|
export declare type CompassCustomFieldScorecardCriteria = {
|
|
7290
7388
|
description?: Maybe<Scalars['String']['output']>;
|
|
7291
7389
|
id: Scalars['ID']['output'];
|
|
7390
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
7292
7391
|
name?: Maybe<Scalars['String']['output']>;
|
|
7293
7392
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
7294
7393
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
@@ -7751,6 +7850,7 @@ export declare type CompassDynamicScorecardCriteria = CompassScorecardCriteria &
|
|
|
7751
7850
|
description?: Maybe<Scalars['String']['output']>;
|
|
7752
7851
|
expressions?: Maybe<Array<CompassScorecardCriterionExpressionTree>>;
|
|
7753
7852
|
id: Scalars['ID']['output'];
|
|
7853
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
7754
7854
|
name?: Maybe<Scalars['String']['output']>;
|
|
7755
7855
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
7756
7856
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
@@ -8001,6 +8101,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCusto
|
|
|
8001
8101
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
8002
8102
|
description?: Maybe<Scalars['String']['output']>;
|
|
8003
8103
|
id: Scalars['ID']['output'];
|
|
8104
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8004
8105
|
name?: Maybe<Scalars['String']['output']>;
|
|
8005
8106
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
8006
8107
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
@@ -8026,6 +8127,7 @@ export declare type CompassHasCustomMultiSelectFieldScorecardCriteria = CompassC
|
|
|
8026
8127
|
customFieldDefinitionId: Scalars['ID']['output'];
|
|
8027
8128
|
description?: Maybe<Scalars['String']['output']>;
|
|
8028
8129
|
id: Scalars['ID']['output'];
|
|
8130
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8029
8131
|
name?: Maybe<Scalars['String']['output']>;
|
|
8030
8132
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
8031
8133
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
@@ -8048,6 +8150,7 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustom
|
|
|
8048
8150
|
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
8049
8151
|
description?: Maybe<Scalars['String']['output']>;
|
|
8050
8152
|
id: Scalars['ID']['output'];
|
|
8153
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8051
8154
|
name?: Maybe<Scalars['String']['output']>;
|
|
8052
8155
|
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
8053
8156
|
numberComparatorValue?: Maybe<Scalars['Float']['output']>;
|
|
@@ -8073,6 +8176,7 @@ export declare type CompassHasCustomSingleSelectFieldScorecardCriteria = Compass
|
|
|
8073
8176
|
customFieldDefinitionId: Scalars['ID']['output'];
|
|
8074
8177
|
description?: Maybe<Scalars['String']['output']>;
|
|
8075
8178
|
id: Scalars['ID']['output'];
|
|
8179
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8076
8180
|
membershipComparator?: Maybe<CompassCriteriaMembershipComparatorOptions>;
|
|
8077
8181
|
membershipComparatorValue: Array<Scalars['ID']['output']>;
|
|
8078
8182
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -8095,6 +8199,7 @@ export declare type CompassHasCustomTextFieldScorecardCriteria = CompassCustomFi
|
|
|
8095
8199
|
customFieldDefinition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
8096
8200
|
description?: Maybe<Scalars['String']['output']>;
|
|
8097
8201
|
id: Scalars['ID']['output'];
|
|
8202
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8098
8203
|
name?: Maybe<Scalars['String']['output']>;
|
|
8099
8204
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
8100
8205
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
@@ -8115,6 +8220,7 @@ export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCri
|
|
|
8115
8220
|
__typename?: 'CompassHasDescriptionScorecardCriteria';
|
|
8116
8221
|
description?: Maybe<Scalars['String']['output']>;
|
|
8117
8222
|
id: Scalars['ID']['output'];
|
|
8223
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8118
8224
|
name?: Maybe<Scalars['String']['output']>;
|
|
8119
8225
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
8120
8226
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
@@ -8128,6 +8234,7 @@ export declare type CompassHasFieldScorecardCriteria = CompassScorecardCriteria
|
|
|
8128
8234
|
description?: Maybe<Scalars['String']['output']>;
|
|
8129
8235
|
fieldDefinition: CompassFieldDefinition;
|
|
8130
8236
|
id: Scalars['ID']['output'];
|
|
8237
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8131
8238
|
name?: Maybe<Scalars['String']['output']>;
|
|
8132
8239
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
8133
8240
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
@@ -8150,6 +8257,7 @@ export declare type CompassHasLinkScorecardCriteria = CompassScorecardCriteria &
|
|
|
8150
8257
|
description?: Maybe<Scalars['String']['output']>;
|
|
8151
8258
|
id: Scalars['ID']['output'];
|
|
8152
8259
|
linkType: CompassLinkType;
|
|
8260
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8153
8261
|
name?: Maybe<Scalars['String']['output']>;
|
|
8154
8262
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
8155
8263
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
@@ -8177,6 +8285,7 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
8177
8285
|
description?: Maybe<Scalars['String']['output']>;
|
|
8178
8286
|
graduatedSeriesComparators?: Maybe<Array<CompassCriteriaGraduatedSeries>>;
|
|
8179
8287
|
id: Scalars['ID']['output'];
|
|
8288
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8180
8289
|
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
8181
8290
|
metricDefinitionId: Scalars['ID']['output'];
|
|
8182
8291
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -8197,6 +8306,7 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
8197
8306
|
__typename?: 'CompassHasOwnerScorecardCriteria';
|
|
8198
8307
|
description?: Maybe<Scalars['String']['output']>;
|
|
8199
8308
|
id: Scalars['ID']['output'];
|
|
8309
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8200
8310
|
name?: Maybe<Scalars['String']['output']>;
|
|
8201
8311
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
8202
8312
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
@@ -8210,6 +8320,7 @@ export declare type CompassHasPackageDependencyScorecardCriteria = CompassScorec
|
|
|
8210
8320
|
comparators?: Maybe<Array<CompassPackageDependencyComparator>>;
|
|
8211
8321
|
description?: Maybe<Scalars['String']['output']>;
|
|
8212
8322
|
id: Scalars['ID']['output'];
|
|
8323
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
8213
8324
|
name?: Maybe<Scalars['String']['output']>;
|
|
8214
8325
|
packageManager?: Maybe<Scalars['String']['output']>;
|
|
8215
8326
|
packageName?: Maybe<Scalars['String']['output']>;
|
|
@@ -9079,6 +9190,7 @@ export declare type CompassScorecardConnection = {
|
|
|
9079
9190
|
export declare type CompassScorecardCriteria = {
|
|
9080
9191
|
description?: Maybe<Scalars['String']['output']>;
|
|
9081
9192
|
id: Scalars['ID']['output'];
|
|
9193
|
+
maturityGroup?: Maybe<CompassScorecardCriteriaMaturityGroup>;
|
|
9082
9194
|
name?: Maybe<Scalars['String']['output']>;
|
|
9083
9195
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
9084
9196
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
@@ -9087,6 +9199,10 @@ export declare type CompassScorecardCriteria = {
|
|
|
9087
9199
|
export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
9088
9200
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
9089
9201
|
};
|
|
9202
|
+
export declare type CompassScorecardCriteriaMaturityGroup = {
|
|
9203
|
+
__typename?: 'CompassScorecardCriteriaMaturityGroup';
|
|
9204
|
+
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
9205
|
+
};
|
|
9090
9206
|
export declare type CompassScorecardCriteriaMaturityScore = {
|
|
9091
9207
|
__typename?: 'CompassScorecardCriteriaMaturityScore';
|
|
9092
9208
|
dataSourceLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -9451,6 +9567,7 @@ export declare type CompassScorecardQueryFilter = {
|
|
|
9451
9567
|
ownerId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9452
9568
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
9453
9569
|
type?: InputMaybe<CompassScorecardTypesFilter>;
|
|
9570
|
+
verified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9454
9571
|
};
|
|
9455
9572
|
export declare type CompassScorecardQuerySort = {
|
|
9456
9573
|
name: Scalars['String']['input'];
|
|
@@ -10428,6 +10545,11 @@ export declare type ConfluenceAdminReportStatus = {
|
|
|
10428
10545
|
__typename?: 'ConfluenceAdminReportStatus';
|
|
10429
10546
|
reports?: Maybe<Array<Maybe<ConfluenceAdminReport>>>;
|
|
10430
10547
|
};
|
|
10548
|
+
export declare enum ConfluenceAnalyticsCommentContentType {
|
|
10549
|
+
Database = "database",
|
|
10550
|
+
Page = "page",
|
|
10551
|
+
Whiteboard = "whiteboard"
|
|
10552
|
+
}
|
|
10431
10553
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
10432
10554
|
export declare type ConfluenceApplicationLink = {
|
|
10433
10555
|
__typename?: 'ConfluenceApplicationLink';
|
|
@@ -26850,7 +26972,10 @@ export declare type ExternalSpace = Node & {
|
|
|
26850
26972
|
url?: Maybe<Scalars['String']['output']>;
|
|
26851
26973
|
};
|
|
26852
26974
|
export declare enum ExternalSpaceSubtype {
|
|
26975
|
+
Business = "BUSINESS",
|
|
26853
26976
|
Project = "PROJECT",
|
|
26977
|
+
ServiceDesk = "SERVICE_DESK",
|
|
26978
|
+
Software = "SOFTWARE",
|
|
26854
26979
|
Space = "SPACE"
|
|
26855
26980
|
}
|
|
26856
26981
|
export declare type ExternalTestInfo = {
|
|
@@ -27828,6 +27953,7 @@ export declare type ForgeMetricsApiRequestLatencyValueSeries = {
|
|
|
27828
27953
|
export declare type ForgeMetricsApiRequestQueryFilters = {
|
|
27829
27954
|
apiRequestType?: InputMaybe<ForgeMetricsApiRequestType>;
|
|
27830
27955
|
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
27956
|
+
contexts?: InputMaybe<Array<ForgeMetricsContexts>>;
|
|
27831
27957
|
environment: Scalars['ID']['input'];
|
|
27832
27958
|
interval: ForgeMetricsIntervalInput;
|
|
27833
27959
|
status?: InputMaybe<ForgeMetricsApiRequestStatus>;
|
|
@@ -27893,6 +28019,12 @@ export declare enum ForgeMetricsChartName {
|
|
|
27893
28019
|
InvocationLatency = "INVOCATION_LATENCY",
|
|
27894
28020
|
InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
|
|
27895
28021
|
}
|
|
28022
|
+
export declare enum ForgeMetricsContexts {
|
|
28023
|
+
Compass = "COMPASS",
|
|
28024
|
+
Confluence = "CONFLUENCE",
|
|
28025
|
+
Graph = "GRAPH",
|
|
28026
|
+
Jira = "JIRA"
|
|
28027
|
+
}
|
|
27896
28028
|
export declare type ForgeMetricsCustomCreateQueryInput = {
|
|
27897
28029
|
customMetricName: Scalars['String']['input'];
|
|
27898
28030
|
description: Scalars['String']['input'];
|
|
@@ -28064,6 +28196,7 @@ export declare type ForgeMetricsLatenciesSeries = ForgeMetricsSeries & {
|
|
|
28064
28196
|
};
|
|
28065
28197
|
export declare type ForgeMetricsLatencyBucketsQueryFilters = {
|
|
28066
28198
|
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
28199
|
+
contexts?: InputMaybe<Array<ForgeMetricsContexts>>;
|
|
28067
28200
|
environment?: InputMaybe<Scalars['ID']['input']>;
|
|
28068
28201
|
functionNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
28069
28202
|
interval: ForgeMetricsIntervalInput;
|
|
@@ -28186,6 +28319,7 @@ export declare type ForgeMetricsQuerySuccessRateValueArgs = {
|
|
|
28186
28319
|
};
|
|
28187
28320
|
export declare type ForgeMetricsQueryFilters = {
|
|
28188
28321
|
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
28322
|
+
contexts?: InputMaybe<Array<ForgeMetricsContexts>>;
|
|
28189
28323
|
environment?: InputMaybe<Scalars['ID']['input']>;
|
|
28190
28324
|
interval: ForgeMetricsIntervalInput;
|
|
28191
28325
|
};
|
|
@@ -32219,8 +32353,6 @@ export declare type GraphStore = {
|
|
|
32219
32353
|
deploymentAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoInverseConnection>;
|
|
32220
32354
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
32221
32355
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
32222
|
-
entityHasTopicInferredEntity?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityConnection>;
|
|
32223
|
-
entityHasTopicInferredEntityInverse?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityInverseConnection>;
|
|
32224
32356
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
32225
32357
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
32226
32358
|
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
@@ -33591,20 +33723,6 @@ export declare type GraphStoreDeploymentContainsCommitInverseArgs = {
|
|
|
33591
33723
|
id: Scalars['ID']['input'];
|
|
33592
33724
|
sort?: InputMaybe<GraphStoreDeploymentContainsCommitSortInput>;
|
|
33593
33725
|
};
|
|
33594
|
-
export declare type GraphStoreEntityHasTopicInferredEntityArgs = {
|
|
33595
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33596
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33597
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33598
|
-
id: Scalars['ID']['input'];
|
|
33599
|
-
sort?: InputMaybe<GraphStoreEntityHasTopicInferredEntitySortInput>;
|
|
33600
|
-
};
|
|
33601
|
-
export declare type GraphStoreEntityHasTopicInferredEntityInverseArgs = {
|
|
33602
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33603
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33604
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33605
|
-
id: Scalars['ID']['input'];
|
|
33606
|
-
sort?: InputMaybe<GraphStoreEntityHasTopicInferredEntitySortInput>;
|
|
33607
|
-
};
|
|
33608
33726
|
export declare type GraphStoreEntityIsRelatedToEntityArgs = {
|
|
33609
33727
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33610
33728
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38216,7 +38334,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
38216
38334
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
38217
38335
|
id: Scalars['ID']['output'];
|
|
38218
38336
|
};
|
|
38219
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
38337
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DeploymentSummary | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalDeployment | ExternalPullRequest | ExternalRepository | ExternalVulnerability | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
38220
38338
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
38221
38339
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
38222
38340
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -39919,9 +40037,6 @@ export declare type GraphStoreDeploymentAssociatedRepoSortInput = {
|
|
|
39919
40037
|
export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
39920
40038
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39921
40039
|
};
|
|
39922
|
-
export declare type GraphStoreEntityHasTopicInferredEntitySortInput = {
|
|
39923
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39924
|
-
};
|
|
39925
40040
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
39926
40041
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39927
40042
|
};
|
|
@@ -40258,7 +40373,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
40258
40373
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
40259
40374
|
id: Scalars['ID']['output'];
|
|
40260
40375
|
};
|
|
40261
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
40376
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DeploymentSummary | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalDeployment | ExternalPullRequest | ExternalRepository | ExternalVulnerability | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
40262
40377
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
40263
40378
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
40264
40379
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -45792,7 +45907,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
45792
45907
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45793
45908
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
45794
45909
|
};
|
|
45795
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
45910
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | DeploymentSummary | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalDeployment | ExternalPullRequest | ExternalRepository | ExternalVulnerability | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
45796
45911
|
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
45797
45912
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
45798
45913
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
@@ -45906,34 +46021,6 @@ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseEdge = {
|
|
|
45906
46021
|
};
|
|
45907
46022
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
45908
46023
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitUnion = ExternalCommit;
|
|
45909
|
-
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityConnection = HasPageInfo & {
|
|
45910
|
-
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityConnection';
|
|
45911
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityEdge>>>;
|
|
45912
|
-
pageInfo: PageInfo;
|
|
45913
|
-
};
|
|
45914
|
-
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityEdge = {
|
|
45915
|
-
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityEdge';
|
|
45916
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45917
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45918
|
-
id: Scalars['ID']['output'];
|
|
45919
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45920
|
-
node?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityUnion>;
|
|
45921
|
-
};
|
|
45922
|
-
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityInverseConnection = HasPageInfo & {
|
|
45923
|
-
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityInverseConnection';
|
|
45924
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityInverseEdge>>>;
|
|
45925
|
-
pageInfo: PageInfo;
|
|
45926
|
-
};
|
|
45927
|
-
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityInverseEdge = {
|
|
45928
|
-
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityInverseEdge';
|
|
45929
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45930
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45931
|
-
id: Scalars['ID']['output'];
|
|
45932
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45933
|
-
node?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityInverseUnion>;
|
|
45934
|
-
};
|
|
45935
|
-
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityInverseUnion = ConfluencePage;
|
|
45936
|
-
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
45937
46024
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityConnection = HasPageInfo & {
|
|
45938
46025
|
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityConnection';
|
|
45939
46026
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityEdge>>>;
|
|
@@ -46393,7 +46480,7 @@ export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge
|
|
|
46393
46480
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46394
46481
|
node?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion>;
|
|
46395
46482
|
};
|
|
46396
|
-
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion = DevOpsDocument | ExternalDocument | ExternalRemoteLink | ExternalVideo;
|
|
46483
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion = DeploymentSummary | DevOpsDocument | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDocument | ExternalMessage | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
46397
46484
|
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
46398
46485
|
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
46399
46486
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
@@ -53574,6 +53661,7 @@ export declare type GrowthUnifiedProfileGetUnifiedUserProfileWhereInput = {
|
|
|
53574
53661
|
export declare type GrowthUnifiedProfileInput = {
|
|
53575
53662
|
marketingContext?: InputMaybe<GrowthUnifiedProfileMarketingContextInput>;
|
|
53576
53663
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
53664
|
+
trialContext?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTrialContextInput>>>;
|
|
53577
53665
|
};
|
|
53578
53666
|
export declare type GrowthUnifiedProfileIssueType = {
|
|
53579
53667
|
__typename?: 'GrowthUnifiedProfileIssueType';
|
|
@@ -53806,6 +53894,14 @@ export declare type GrowthUnifiedProfileTrialContext = {
|
|
|
53806
53894
|
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53807
53895
|
trialType?: Maybe<GrowthUnifiedProfileTrialType>;
|
|
53808
53896
|
};
|
|
53897
|
+
export declare type GrowthUnifiedProfileTrialContextInput = {
|
|
53898
|
+
firstProductOnSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53899
|
+
paymentDetailsOnFile?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53900
|
+
product: GrowthUnifiedProfileProduct;
|
|
53901
|
+
trialEndTimeStamp: Scalars['String']['input'];
|
|
53902
|
+
trialTrigger?: InputMaybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53903
|
+
trialType: GrowthUnifiedProfileTrialType;
|
|
53904
|
+
};
|
|
53809
53905
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
53810
53906
|
EditionParity = "EDITION_PARITY",
|
|
53811
53907
|
ReverseTrial = "REVERSE_TRIAL"
|
|
@@ -61421,6 +61517,13 @@ export declare type JiraForgeMultipleGroupPickerFieldOperationInput = {
|
|
|
61421
61517
|
names?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
61422
61518
|
operation: JiraMultiValueFieldOperations;
|
|
61423
61519
|
};
|
|
61520
|
+
export declare type JiraForgeMutation = {
|
|
61521
|
+
__typename?: 'JiraForgeMutation';
|
|
61522
|
+
updatePanel?: Maybe<JiraForgeUpdatePanelPayload>;
|
|
61523
|
+
};
|
|
61524
|
+
export declare type JiraForgeMutationUpdatePanelArgs = {
|
|
61525
|
+
input: JiraForgeUpdatePanelInput;
|
|
61526
|
+
};
|
|
61424
61527
|
export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
61425
61528
|
__typename?: 'JiraForgeNumberField';
|
|
61426
61529
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -61465,16 +61568,24 @@ export declare type JiraForgeObjectFieldPayload = Payload & {
|
|
|
61465
61568
|
field?: Maybe<JiraForgeObjectField>;
|
|
61466
61569
|
success: Scalars['Boolean']['output'];
|
|
61467
61570
|
};
|
|
61571
|
+
export declare type JiraForgePinnableEntity = {
|
|
61572
|
+
projectIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
61573
|
+
};
|
|
61468
61574
|
export declare type JiraForgeQuery = {
|
|
61469
61575
|
__typename?: 'JiraForgeQuery';
|
|
61470
61576
|
extensions?: Maybe<Array<JiraForgeExtension>>;
|
|
61577
|
+
workItemPanels?: Maybe<Array<JiraForgeWorkItemPanel>>;
|
|
61471
61578
|
};
|
|
61472
61579
|
export declare type JiraForgeQueryExtensionsArgs = {
|
|
61473
|
-
cloudId
|
|
61580
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
61474
61581
|
context?: InputMaybe<JiraExtensionRenderingContextInput>;
|
|
61475
61582
|
includeHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61476
61583
|
types: Array<Scalars['String']['input']>;
|
|
61477
61584
|
};
|
|
61585
|
+
export declare type JiraForgeQueryWorkItemPanelsArgs = {
|
|
61586
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
61587
|
+
context: JiraForgeWorkItemPanelsContextInput;
|
|
61588
|
+
};
|
|
61478
61589
|
export declare type JiraForgeSingleGroupPickerFieldOperationInput = {
|
|
61479
61590
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
61480
61591
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61531,6 +61642,29 @@ export declare type JiraForgeStringsFieldSelectedLabelsConnectionArgs = {
|
|
|
61531
61642
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61532
61643
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61533
61644
|
};
|
|
61645
|
+
export declare type JiraForgeUpdatePanelAction = {
|
|
61646
|
+
actionType: JiraForgeUpdatePanelActionType;
|
|
61647
|
+
projectIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
61648
|
+
};
|
|
61649
|
+
export declare enum JiraForgeUpdatePanelActionType {
|
|
61650
|
+
Collapse = "COLLAPSE",
|
|
61651
|
+
Expand = "EXPAND",
|
|
61652
|
+
PinToProject = "PIN_TO_PROJECT",
|
|
61653
|
+
UnpinFromProject = "UNPIN_FROM_PROJECT"
|
|
61654
|
+
}
|
|
61655
|
+
export declare type JiraForgeUpdatePanelInput = {
|
|
61656
|
+
action: JiraForgeUpdatePanelAction;
|
|
61657
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
61658
|
+
instanceId?: InputMaybe<Scalars['ID']['input']>;
|
|
61659
|
+
moduleId: Scalars['ID']['input'];
|
|
61660
|
+
workItemIdOrKey: Scalars['String']['input'];
|
|
61661
|
+
};
|
|
61662
|
+
export declare type JiraForgeUpdatePanelPayload = Payload & {
|
|
61663
|
+
__typename?: 'JiraForgeUpdatePanelPayload';
|
|
61664
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61665
|
+
success: Scalars['Boolean']['output'];
|
|
61666
|
+
updatedPanel?: Maybe<JiraForgeWorkItemPanel>;
|
|
61667
|
+
};
|
|
61534
61668
|
export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
61535
61669
|
__typename?: 'JiraForgeUserField';
|
|
61536
61670
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -61592,6 +61726,25 @@ export declare type JiraForgeUsersFieldUsersArgs = {
|
|
|
61592
61726
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
61593
61727
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61594
61728
|
};
|
|
61729
|
+
export declare type JiraForgeWorkItemPanel = {
|
|
61730
|
+
__typename?: 'JiraForgeWorkItemPanel';
|
|
61731
|
+
id: Scalars['ID']['output'];
|
|
61732
|
+
instances: Array<JiraForgeWorkItemPanelInstance>;
|
|
61733
|
+
moduleId: Scalars['ID']['output'];
|
|
61734
|
+
};
|
|
61735
|
+
export declare type JiraForgeWorkItemPanelInstance = {
|
|
61736
|
+
__typename?: 'JiraForgeWorkItemPanelInstance';
|
|
61737
|
+
collapsed: Scalars['Boolean']['output'];
|
|
61738
|
+
id: Scalars['ID']['output'];
|
|
61739
|
+
pinnedTo: JiraForgeWorkItemPinnableEntityType;
|
|
61740
|
+
};
|
|
61741
|
+
export declare type JiraForgeWorkItemPanelsContextInput = {
|
|
61742
|
+
workItemIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
61743
|
+
};
|
|
61744
|
+
export declare enum JiraForgeWorkItemPinnableEntityType {
|
|
61745
|
+
Project = "PROJECT",
|
|
61746
|
+
WorkItem = "WORK_ITEM"
|
|
61747
|
+
}
|
|
61595
61748
|
export declare enum JiraFormattingArea {
|
|
61596
61749
|
Cell = "CELL",
|
|
61597
61750
|
Row = "ROW"
|
|
@@ -65288,6 +65441,7 @@ export declare type JiraMutation = {
|
|
|
65288
65441
|
discardUnpublishedChangesJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
65289
65442
|
duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
65290
65443
|
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
65444
|
+
forge: JiraForgeMutation;
|
|
65291
65445
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
65292
65446
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
65293
65447
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
@@ -66207,6 +66361,7 @@ export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Nod
|
|
|
66207
66361
|
id: Scalars['ID']['output'];
|
|
66208
66362
|
isLeftSidebarCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
66209
66363
|
leftSidebarWidth?: Maybe<Scalars['Int']['output']>;
|
|
66364
|
+
previewPanel?: Maybe<JiraPreviewPanelState>;
|
|
66210
66365
|
propertyKey?: Maybe<Scalars['String']['output']>;
|
|
66211
66366
|
rightPanels?: Maybe<JiraRightPanelStateConnection>;
|
|
66212
66367
|
};
|
|
@@ -67283,6 +67438,12 @@ export declare type JiraPostIncidentReviewLink = Node & {
|
|
|
67283
67438
|
title?: Maybe<Scalars['String']['output']>;
|
|
67284
67439
|
url?: Maybe<Scalars['URL']['output']>;
|
|
67285
67440
|
};
|
|
67441
|
+
export declare type JiraPreviewPanelState = {
|
|
67442
|
+
__typename?: 'JiraPreviewPanelState';
|
|
67443
|
+
isFullscreen?: Maybe<Scalars['Boolean']['output']>;
|
|
67444
|
+
isOpen?: Maybe<Scalars['Boolean']['output']>;
|
|
67445
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
67446
|
+
};
|
|
67286
67447
|
export declare type JiraPriority = Node & {
|
|
67287
67448
|
__typename?: 'JiraPriority';
|
|
67288
67449
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -71654,6 +71815,15 @@ export declare type JiraSetIsFavouritePayload = Payload & {
|
|
|
71654
71815
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
71655
71816
|
success: Scalars['Boolean']['output'];
|
|
71656
71817
|
};
|
|
71818
|
+
export declare type JiraSetIssueSearchGroupByInput = {
|
|
71819
|
+
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
71820
|
+
viewId: Scalars['ID']['input'];
|
|
71821
|
+
};
|
|
71822
|
+
export declare type JiraSetIssueSearchGroupByPayload = Payload & {
|
|
71823
|
+
__typename?: 'JiraSetIssueSearchGroupByPayload';
|
|
71824
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71825
|
+
success: Scalars['Boolean']['output'];
|
|
71826
|
+
};
|
|
71657
71827
|
export declare type JiraSetIssueSearchHideDoneItemsInput = {
|
|
71658
71828
|
hideDoneItems: Scalars['Boolean']['input'];
|
|
71659
71829
|
viewId: Scalars['ID']['input'];
|
|
@@ -71663,6 +71833,15 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
|
71663
71833
|
errors?: Maybe<Array<MutationError>>;
|
|
71664
71834
|
success: Scalars['Boolean']['output'];
|
|
71665
71835
|
};
|
|
71836
|
+
export declare type JiraSetIssueSearchHierarchyEnabledInput = {
|
|
71837
|
+
hierarchyEnabled: Scalars['Boolean']['input'];
|
|
71838
|
+
viewId: Scalars['ID']['input'];
|
|
71839
|
+
};
|
|
71840
|
+
export declare type JiraSetIssueSearchHierarchyEnabledPayload = Payload & {
|
|
71841
|
+
__typename?: 'JiraSetIssueSearchHierarchyEnabledPayload';
|
|
71842
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71843
|
+
success: Scalars['Boolean']['output'];
|
|
71844
|
+
};
|
|
71666
71845
|
export declare type JiraSetIssueSearchViewLayoutInput = {
|
|
71667
71846
|
viewId: Scalars['ID']['input'];
|
|
71668
71847
|
viewLayout: JiraIssueSearchViewLayout;
|
|
@@ -73608,6 +73787,7 @@ export declare type JiraUserPreferences = {
|
|
|
73608
73787
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73609
73788
|
isCustomNavBarThemeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
73610
73789
|
isCustomNavBarThemeSectionMessageDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
73790
|
+
isIssueCommentSlackFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
73611
73791
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
73612
73792
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
73613
73793
|
isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -74974,6 +75154,7 @@ export declare type JsmChatCreateConversationInput = {
|
|
|
74974
75154
|
channelExperienceId: JsmChatChannelExperienceId;
|
|
74975
75155
|
conversationContextAri: Scalars['ID']['input'];
|
|
74976
75156
|
isTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75157
|
+
mode?: InputMaybe<JsmChatMode>;
|
|
74977
75158
|
};
|
|
74978
75159
|
export declare type JsmChatCreateConversationPayload = Payload & {
|
|
74979
75160
|
__typename?: 'JsmChatCreateConversationPayload';
|
|
@@ -75107,6 +75288,9 @@ export declare enum JsmChatMessageSource {
|
|
|
75107
75288
|
export declare enum JsmChatMessageType {
|
|
75108
75289
|
Adf = "ADF"
|
|
75109
75290
|
}
|
|
75291
|
+
export declare enum JsmChatMode {
|
|
75292
|
+
Preview = "PREVIEW"
|
|
75293
|
+
}
|
|
75110
75294
|
export declare type JsmChatMsTeamsChannelRequestTypeMapping = {
|
|
75111
75295
|
__typename?: 'JsmChatMsTeamsChannelRequestTypeMapping';
|
|
75112
75296
|
channels?: Maybe<Array<Maybe<JsmChatMsTeamsChannels>>>;
|
|
@@ -77895,6 +78079,19 @@ export declare type MarketplaceConsoleFeatureInput = {
|
|
|
77895
78079
|
name: Scalars['String']['input'];
|
|
77896
78080
|
position: Scalars['Int']['input'];
|
|
77897
78081
|
};
|
|
78082
|
+
export declare type MarketplaceConsoleForgeAgcApp = {
|
|
78083
|
+
__typename?: 'MarketplaceConsoleForgeAgcApp';
|
|
78084
|
+
appId: Scalars['ID']['output'];
|
|
78085
|
+
id: Scalars['ID']['output'];
|
|
78086
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
78087
|
+
};
|
|
78088
|
+
export declare type MarketplaceConsoleForgeAgcAppError = MarketplaceConsoleError & {
|
|
78089
|
+
__typename?: 'MarketplaceConsoleForgeAgcAppError';
|
|
78090
|
+
id: Scalars['ID']['output'];
|
|
78091
|
+
message: Scalars['String']['output'];
|
|
78092
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
78093
|
+
};
|
|
78094
|
+
export declare type MarketplaceConsoleForgeAgcAppValidationResponse = MarketplaceConsoleForgeAgcApp | MarketplaceConsoleForgeAgcAppError;
|
|
77898
78095
|
export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
77899
78096
|
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
77900
78097
|
appAccess: Array<Scalars['String']['output']>;
|
|
@@ -78229,6 +78426,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
78229
78426
|
canViewManagedApps: Scalars['Boolean']['output'];
|
|
78230
78427
|
canViewPartnerContacts: Scalars['Boolean']['output'];
|
|
78231
78428
|
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
78429
|
+
canViewPromotions: Scalars['Boolean']['output'];
|
|
78232
78430
|
canViewSalesReport: Scalars['Boolean']['output'];
|
|
78233
78431
|
canViewUsageReports: Scalars['Boolean']['output'];
|
|
78234
78432
|
isMarketplaceReader: Scalars['Boolean']['output'];
|
|
@@ -78399,6 +78597,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
78399
78597
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
78400
78598
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
78401
78599
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
78600
|
+
validateForgeAGCApp?: Maybe<MarketplaceConsoleForgeAgcAppValidationResponse>;
|
|
78402
78601
|
};
|
|
78403
78602
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
78404
78603
|
appId: Scalars['ID']['input'];
|
|
@@ -78464,6 +78663,9 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
78464
78663
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
78465
78664
|
appId: Scalars['ID']['input'];
|
|
78466
78665
|
};
|
|
78666
|
+
export declare type MarketplaceConsoleQueryApiValidateForgeAgcAppArgs = {
|
|
78667
|
+
appId: Scalars['ID']['input'];
|
|
78668
|
+
};
|
|
78467
78669
|
export declare type MarketplaceConsoleRemoteArtifactDetails = {
|
|
78468
78670
|
__typename?: 'MarketplaceConsoleRemoteArtifactDetails';
|
|
78469
78671
|
dataCenterStatus?: Maybe<Scalars['String']['output']>;
|
|
@@ -82265,14 +82467,15 @@ export declare type Mutation = {
|
|
|
82265
82467
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
82266
82468
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
82267
82469
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
82268
|
-
|
|
82470
|
+
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
82471
|
+
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
82269
82472
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
82270
82473
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
82271
82474
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
82272
82475
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
82273
82476
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
82274
|
-
|
|
82275
|
-
|
|
82477
|
+
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
82478
|
+
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
82276
82479
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
82277
82480
|
appStorage?: Maybe<AppStorageMutation>;
|
|
82278
82481
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -82660,7 +82863,9 @@ export declare type Mutation = {
|
|
|
82660
82863
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
82661
82864
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
82662
82865
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
82866
|
+
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
82663
82867
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
82868
|
+
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
82664
82869
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
82665
82870
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
82666
82871
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
@@ -82914,9 +83119,12 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
|
82914
83119
|
cloudId: Scalars['String']['input'];
|
|
82915
83120
|
input: AgentStudioCreateAgentInput;
|
|
82916
83121
|
};
|
|
82917
|
-
export declare type
|
|
83122
|
+
export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
82918
83123
|
cloudId: Scalars['String']['input'];
|
|
82919
|
-
input:
|
|
83124
|
+
input: AgentStudioCreateScenarioInput;
|
|
83125
|
+
};
|
|
83126
|
+
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
83127
|
+
id: Scalars['ID']['input'];
|
|
82920
83128
|
};
|
|
82921
83129
|
export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
82922
83130
|
id: Scalars['ID']['input'];
|
|
@@ -82938,14 +83146,14 @@ export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
|
82938
83146
|
id: Scalars['ID']['input'];
|
|
82939
83147
|
input: AgentStudioUpdateConversationStartersInput;
|
|
82940
83148
|
};
|
|
82941
|
-
export declare type
|
|
83149
|
+
export declare type MutationAgentStudio_UpdateScenarioArgs = {
|
|
82942
83150
|
id: Scalars['ID']['input'];
|
|
82943
|
-
input:
|
|
83151
|
+
input: AgentStudioUpdateScenarioInput;
|
|
82944
83152
|
};
|
|
82945
|
-
export declare type
|
|
83153
|
+
export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs = {
|
|
82946
83154
|
cloudId: Scalars['String']['input'];
|
|
82947
83155
|
containerId: Scalars['String']['input'];
|
|
82948
|
-
|
|
83156
|
+
scenarioIds: Array<Scalars['ID']['input']>;
|
|
82949
83157
|
};
|
|
82950
83158
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
82951
83159
|
input: ApplyPolarisProjectTemplateInput;
|
|
@@ -84181,9 +84389,15 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
|
84181
84389
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
84182
84390
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
84183
84391
|
};
|
|
84392
|
+
export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
84393
|
+
input: JiraSetIssueSearchGroupByInput;
|
|
84394
|
+
};
|
|
84184
84395
|
export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
84185
84396
|
input: JiraSetIssueSearchHideDoneItemsInput;
|
|
84186
84397
|
};
|
|
84398
|
+
export declare type MutationJira_SetIssueSearchHierarchyEnabledArgs = {
|
|
84399
|
+
input: JiraSetIssueSearchHierarchyEnabledInput;
|
|
84400
|
+
};
|
|
84187
84401
|
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
84188
84402
|
input: JiraSetIssueSearchViewLayoutInput;
|
|
84189
84403
|
};
|
|
@@ -87609,10 +87823,10 @@ export declare type Query = {
|
|
|
87609
87823
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
87610
87824
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
87611
87825
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
87612
|
-
agentStudio_customActionById?: Maybe<AgentStudioCustomActionResult>;
|
|
87613
|
-
agentStudio_customActionListByContainerId?: Maybe<AgentStudioCustomActionListResult>;
|
|
87614
|
-
agentStudio_customActionsByIds?: Maybe<Array<Maybe<AgentStudioCustomAction>>>;
|
|
87615
87826
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
87827
|
+
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
87828
|
+
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenarioListResult>;
|
|
87829
|
+
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
87616
87830
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
87617
87831
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
87618
87832
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
@@ -88356,22 +88570,22 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
88356
88570
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
88357
88571
|
id: Scalars['ID']['input'];
|
|
88358
88572
|
};
|
|
88359
|
-
export declare type
|
|
88573
|
+
export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
88574
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88575
|
+
cloudId: Scalars['String']['input'];
|
|
88576
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88577
|
+
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
88578
|
+
};
|
|
88579
|
+
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
88360
88580
|
id: Scalars['ID']['input'];
|
|
88361
88581
|
};
|
|
88362
|
-
export declare type
|
|
88582
|
+
export declare type QueryAgentStudio_ScenarioListByContainerIdArgs = {
|
|
88363
88583
|
cloudId: Scalars['String']['input'];
|
|
88364
88584
|
containerId: Scalars['String']['input'];
|
|
88365
88585
|
};
|
|
88366
|
-
export declare type
|
|
88586
|
+
export declare type QueryAgentStudio_ScenariosByIdsArgs = {
|
|
88367
88587
|
ids: Array<Scalars['ID']['input']>;
|
|
88368
88588
|
};
|
|
88369
|
-
export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
88370
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
88371
|
-
cloudId: Scalars['String']['input'];
|
|
88372
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88373
|
-
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
88374
|
-
};
|
|
88375
88589
|
export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
88376
88590
|
cloudId: Scalars['String']['input'];
|
|
88377
88591
|
input: AgentStudioSuggestConversationStartersInput;
|
|
@@ -89707,6 +89921,7 @@ export declare type QueryContentAnalyticsUnreadCommentsArgs = {
|
|
|
89707
89921
|
};
|
|
89708
89922
|
export declare type QueryContentAnalyticsViewedCommentsArgs = {
|
|
89709
89923
|
contentId: Scalars['ID']['input'];
|
|
89924
|
+
contentType?: InputMaybe<ConfluenceAnalyticsCommentContentType>;
|
|
89710
89925
|
};
|
|
89711
89926
|
export declare type QueryContentAnalyticsViewersArgs = {
|
|
89712
89927
|
contentId: Scalars['ID']['input'];
|
|
@@ -90724,6 +90939,7 @@ export declare type QueryPtpageArgs = {
|
|
|
90724
90939
|
status?: InputMaybe<Array<InputMaybe<PtGraphQlPageStatus>>>;
|
|
90725
90940
|
};
|
|
90726
90941
|
export declare type QueryPublicLinkInformationArgs = {
|
|
90942
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90727
90943
|
id: Scalars['ID']['input'];
|
|
90728
90944
|
};
|
|
90729
90945
|
export declare type QueryPublicLinkPageArgs = {
|
|
@@ -91658,6 +91874,7 @@ export declare type RadarPositionsByEntity = {
|
|
|
91658
91874
|
type: RadarEntityType;
|
|
91659
91875
|
};
|
|
91660
91876
|
export declare type RadarPositionsByEntityFieldValuesArgs = {
|
|
91877
|
+
aggregateRql?: InputMaybe<Scalars['String']['input']>;
|
|
91661
91878
|
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
91662
91879
|
};
|
|
91663
91880
|
export declare type RadarPositionsByEntityConnection = RadarConnection & {
|
|
@@ -96339,6 +96556,7 @@ export declare type SmartsRecommendedFieldObject = {
|
|
|
96339
96556
|
};
|
|
96340
96557
|
export declare type SmartsRecommendedObject = {
|
|
96341
96558
|
__typename?: 'SmartsRecommendedObject';
|
|
96559
|
+
content?: Maybe<Array<Maybe<Content>>>;
|
|
96342
96560
|
id: Scalars['ID']['output'];
|
|
96343
96561
|
object?: Maybe<SmartsRecommendedObjectData>;
|
|
96344
96562
|
reason?: Maybe<Scalars['String']['output']>;
|
|
@@ -99210,6 +99428,12 @@ export declare type TownsquareDeleteRelationshipsPayload = {
|
|
|
99210
99428
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
99211
99429
|
success: Scalars['Boolean']['output'];
|
|
99212
99430
|
};
|
|
99431
|
+
export declare type TownsquareDraftUpdate = {
|
|
99432
|
+
__typename?: 'TownsquareDraftUpdate';
|
|
99433
|
+
author?: Maybe<User>;
|
|
99434
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
99435
|
+
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
99436
|
+
};
|
|
99213
99437
|
export declare type TownsquareEditGoalInput = {
|
|
99214
99438
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
99215
99439
|
id: Scalars['String']['input'];
|
|
@@ -99232,6 +99456,12 @@ export declare type TownsquareEditGoalTypePayload = {
|
|
|
99232
99456
|
__typename?: 'TownsquareEditGoalTypePayload';
|
|
99233
99457
|
goalType?: Maybe<TownsquareGoalType>;
|
|
99234
99458
|
};
|
|
99459
|
+
export declare type TownsquareFusionDetails = {
|
|
99460
|
+
__typename?: 'TownsquareFusionDetails';
|
|
99461
|
+
issue?: Maybe<JiraIssue>;
|
|
99462
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
99463
|
+
synced?: Maybe<Scalars['Boolean']['output']>;
|
|
99464
|
+
};
|
|
99235
99465
|
export declare type TownsquareGoal = Node & {
|
|
99236
99466
|
__typename?: 'TownsquareGoal';
|
|
99237
99467
|
archived: Scalars['Boolean']['output'];
|
|
@@ -99456,6 +99686,39 @@ export declare type TownsquareHighlight = {
|
|
|
99456
99686
|
project?: Maybe<TownsquareProject>;
|
|
99457
99687
|
summary?: Maybe<Scalars['String']['output']>;
|
|
99458
99688
|
};
|
|
99689
|
+
export declare type TownsquareIcon = {
|
|
99690
|
+
__typename?: 'TownsquareIcon';
|
|
99691
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
99692
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
99693
|
+
shortName?: Maybe<Scalars['String']['output']>;
|
|
99694
|
+
};
|
|
99695
|
+
export declare type TownsquareIconUrIs = {
|
|
99696
|
+
__typename?: 'TownsquareIconURIs';
|
|
99697
|
+
roundedSquare?: Maybe<TownsquareThemeUrIs>;
|
|
99698
|
+
square?: Maybe<TownsquareThemeUrIs>;
|
|
99699
|
+
};
|
|
99700
|
+
export declare type TownsquareLink = {
|
|
99701
|
+
__typename?: 'TownsquareLink';
|
|
99702
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
99703
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
99704
|
+
provider?: Maybe<Scalars['String']['output']>;
|
|
99705
|
+
type?: Maybe<TownsquareLinkType>;
|
|
99706
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
99707
|
+
};
|
|
99708
|
+
export declare type TownsquareLinkConnection = {
|
|
99709
|
+
__typename?: 'TownsquareLinkConnection';
|
|
99710
|
+
edges?: Maybe<Array<Maybe<TownsquareLinkEdge>>>;
|
|
99711
|
+
pageInfo: PageInfo;
|
|
99712
|
+
};
|
|
99713
|
+
export declare type TownsquareLinkEdge = {
|
|
99714
|
+
__typename?: 'TownsquareLinkEdge';
|
|
99715
|
+
cursor: Scalars['String']['output'];
|
|
99716
|
+
node?: Maybe<TownsquareLink>;
|
|
99717
|
+
};
|
|
99718
|
+
export declare enum TownsquareLinkType {
|
|
99719
|
+
Related = "RELATED",
|
|
99720
|
+
WorkTracking = "WORK_TRACKING"
|
|
99721
|
+
}
|
|
99459
99722
|
export declare type TownsquareLocalizationField = {
|
|
99460
99723
|
__typename?: 'TownsquareLocalizationField';
|
|
99461
99724
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -99524,13 +99787,26 @@ export declare type TownsquareMutationApiWatchGoalArgs = {
|
|
|
99524
99787
|
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
99525
99788
|
__typename?: 'TownsquareProject';
|
|
99526
99789
|
archived: Scalars['Boolean']['output'];
|
|
99790
|
+
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
99791
|
+
changelog?: Maybe<TownsquareProjectChangelogItemConnection>;
|
|
99792
|
+
comments?: Maybe<TownsquareCommentConnection>;
|
|
99793
|
+
dependencies?: Maybe<TownsquareProjectDependencyConnection>;
|
|
99527
99794
|
description?: Maybe<TownsquareProjectDescription>;
|
|
99795
|
+
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
99528
99796
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
99797
|
+
fusion?: Maybe<TownsquareFusionDetails>;
|
|
99798
|
+
goals?: Maybe<TownsquareGoalConnection>;
|
|
99799
|
+
icon?: Maybe<TownsquareIcon>;
|
|
99529
99800
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
99801
|
+
iconUrl?: Maybe<TownsquareIconUrIs>;
|
|
99530
99802
|
id: Scalars['ID']['output'];
|
|
99531
99803
|
isArchived: Scalars['Boolean']['output'];
|
|
99532
99804
|
isPrivate: Scalars['Boolean']['output'];
|
|
99533
99805
|
key: Scalars['String']['output'];
|
|
99806
|
+
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
99807
|
+
latestUserUpdate?: Maybe<TownsquareProjectUpdate>;
|
|
99808
|
+
links?: Maybe<TownsquareLinkConnection>;
|
|
99809
|
+
members?: Maybe<TownsquareUserConnection>;
|
|
99534
99810
|
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
99535
99811
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
99536
99812
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -99549,9 +99825,43 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
99549
99825
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
99550
99826
|
state?: Maybe<TownsquareProjectState>;
|
|
99551
99827
|
tags?: Maybe<TownsquareTagConnection>;
|
|
99828
|
+
tagsWatchedByUser?: Maybe<TownsquareTagConnection>;
|
|
99829
|
+
teamsWatchedByUser?: Maybe<TownsquareTeamConnection>;
|
|
99552
99830
|
updates?: Maybe<TownsquareProjectUpdateConnection>;
|
|
99553
99831
|
url?: Maybe<Scalars['String']['output']>;
|
|
99832
|
+
userUpdateCount?: Maybe<Scalars['Int']['output']>;
|
|
99554
99833
|
uuid: Scalars['String']['output'];
|
|
99834
|
+
viewers?: Maybe<TownsquareUserConnection>;
|
|
99835
|
+
watcherCount?: Maybe<Scalars['Int']['output']>;
|
|
99836
|
+
watchers?: Maybe<TownsquareUserConnection>;
|
|
99837
|
+
watching?: Maybe<Scalars['Boolean']['output']>;
|
|
99838
|
+
workspace?: Maybe<TownsquareWorkspace>;
|
|
99839
|
+
};
|
|
99840
|
+
export declare type TownsquareProjectChangelogArgs = {
|
|
99841
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99842
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99843
|
+
hasUpdateId?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99844
|
+
};
|
|
99845
|
+
export declare type TownsquareProjectCommentsArgs = {
|
|
99846
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99847
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99848
|
+
};
|
|
99849
|
+
export declare type TownsquareProjectDependenciesArgs = {
|
|
99850
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99851
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99852
|
+
};
|
|
99853
|
+
export declare type TownsquareProjectGoalsArgs = {
|
|
99854
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99855
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99856
|
+
};
|
|
99857
|
+
export declare type TownsquareProjectLinksArgs = {
|
|
99858
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99859
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99860
|
+
type?: InputMaybe<TownsquareLinkType>;
|
|
99861
|
+
};
|
|
99862
|
+
export declare type TownsquareProjectMembersArgs = {
|
|
99863
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99864
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99555
99865
|
};
|
|
99556
99866
|
export declare type TownsquareProjectRisksArgs = {
|
|
99557
99867
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -99566,17 +99876,73 @@ export declare type TownsquareProjectTagsArgs = {
|
|
|
99566
99876
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99567
99877
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99568
99878
|
};
|
|
99879
|
+
export declare type TownsquareProjectTagsWatchedByUserArgs = {
|
|
99880
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99881
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99882
|
+
};
|
|
99883
|
+
export declare type TownsquareProjectTeamsWatchedByUserArgs = {
|
|
99884
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99885
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99886
|
+
};
|
|
99569
99887
|
export declare type TownsquareProjectUpdatesArgs = {
|
|
99570
99888
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99571
99889
|
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
99572
99890
|
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
99573
99891
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99574
99892
|
};
|
|
99893
|
+
export declare type TownsquareProjectViewersArgs = {
|
|
99894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99895
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99896
|
+
};
|
|
99897
|
+
export declare type TownsquareProjectWatchersArgs = {
|
|
99898
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99899
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99900
|
+
};
|
|
99901
|
+
export declare type TownsquareProjectChangelogItem = {
|
|
99902
|
+
__typename?: 'TownsquareProjectChangelogItem';
|
|
99903
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
99904
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
99905
|
+
field?: Maybe<TownsquareProjectFusionField>;
|
|
99906
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
99907
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
99908
|
+
};
|
|
99909
|
+
export declare type TownsquareProjectChangelogItemConnection = {
|
|
99910
|
+
__typename?: 'TownsquareProjectChangelogItemConnection';
|
|
99911
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectChangelogItemEdge>>>;
|
|
99912
|
+
pageInfo: PageInfo;
|
|
99913
|
+
};
|
|
99914
|
+
export declare type TownsquareProjectChangelogItemEdge = {
|
|
99915
|
+
__typename?: 'TownsquareProjectChangelogItemEdge';
|
|
99916
|
+
cursor: Scalars['String']['output'];
|
|
99917
|
+
node?: Maybe<TownsquareProjectChangelogItem>;
|
|
99918
|
+
};
|
|
99575
99919
|
export declare type TownsquareProjectConnection = {
|
|
99576
99920
|
__typename?: 'TownsquareProjectConnection';
|
|
99577
99921
|
edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
|
|
99578
99922
|
pageInfo: PageInfo;
|
|
99579
99923
|
};
|
|
99924
|
+
export declare type TownsquareProjectDependency = {
|
|
99925
|
+
__typename?: 'TownsquareProjectDependency';
|
|
99926
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
99927
|
+
incomingProject?: Maybe<TownsquareProject>;
|
|
99928
|
+
linkType?: Maybe<TownsquareProjectDependencyRelationship>;
|
|
99929
|
+
outgoingProject?: Maybe<TownsquareProject>;
|
|
99930
|
+
};
|
|
99931
|
+
export declare type TownsquareProjectDependencyConnection = {
|
|
99932
|
+
__typename?: 'TownsquareProjectDependencyConnection';
|
|
99933
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectDependencyEdge>>>;
|
|
99934
|
+
pageInfo: PageInfo;
|
|
99935
|
+
};
|
|
99936
|
+
export declare type TownsquareProjectDependencyEdge = {
|
|
99937
|
+
__typename?: 'TownsquareProjectDependencyEdge';
|
|
99938
|
+
cursor: Scalars['String']['output'];
|
|
99939
|
+
node?: Maybe<TownsquareProjectDependency>;
|
|
99940
|
+
};
|
|
99941
|
+
export declare enum TownsquareProjectDependencyRelationship {
|
|
99942
|
+
DependedBy = "DEPENDED_BY",
|
|
99943
|
+
DependsOn = "DEPENDS_ON",
|
|
99944
|
+
Related = "RELATED"
|
|
99945
|
+
}
|
|
99580
99946
|
export declare type TownsquareProjectDescription = {
|
|
99581
99947
|
__typename?: 'TownsquareProjectDescription';
|
|
99582
99948
|
measurement?: Maybe<Scalars['String']['output']>;
|
|
@@ -99588,6 +99954,14 @@ export declare type TownsquareProjectEdge = {
|
|
|
99588
99954
|
cursor: Scalars['String']['output'];
|
|
99589
99955
|
node?: Maybe<TownsquareProject>;
|
|
99590
99956
|
};
|
|
99957
|
+
export declare enum TownsquareProjectFusionField {
|
|
99958
|
+
DueDate = "DUE_DATE",
|
|
99959
|
+
Followers = "FOLLOWERS",
|
|
99960
|
+
Labels = "LABELS",
|
|
99961
|
+
StartDate = "START_DATE",
|
|
99962
|
+
Status = "STATUS",
|
|
99963
|
+
Summary = "SUMMARY"
|
|
99964
|
+
}
|
|
99591
99965
|
export declare enum TownsquareProjectPhase {
|
|
99592
99966
|
Done = "done",
|
|
99593
99967
|
InProgress = "in_progress",
|
|
@@ -99880,6 +100254,22 @@ export declare type TownsquareTeam = Node & {
|
|
|
99880
100254
|
id: Scalars['ID']['output'];
|
|
99881
100255
|
name?: Maybe<Scalars['String']['output']>;
|
|
99882
100256
|
};
|
|
100257
|
+
export declare type TownsquareTeamConnection = {
|
|
100258
|
+
__typename?: 'TownsquareTeamConnection';
|
|
100259
|
+
edges?: Maybe<Array<Maybe<TownsquareTeamEdge>>>;
|
|
100260
|
+
pageInfo: PageInfo;
|
|
100261
|
+
};
|
|
100262
|
+
export declare type TownsquareTeamEdge = {
|
|
100263
|
+
__typename?: 'TownsquareTeamEdge';
|
|
100264
|
+
cursor: Scalars['String']['output'];
|
|
100265
|
+
node?: Maybe<TeamV2>;
|
|
100266
|
+
};
|
|
100267
|
+
export declare type TownsquareThemeUrIs = {
|
|
100268
|
+
__typename?: 'TownsquareThemeURIs';
|
|
100269
|
+
dark?: Maybe<Scalars['String']['output']>;
|
|
100270
|
+
light?: Maybe<Scalars['String']['output']>;
|
|
100271
|
+
transparent?: Maybe<Scalars['String']['output']>;
|
|
100272
|
+
};
|
|
99883
100273
|
export declare enum TownsquareUnshardedAccessControlCapability {
|
|
99884
100274
|
Access = "ACCESS",
|
|
99885
100275
|
Administer = "ADMINISTER",
|
|
@@ -99932,6 +100322,13 @@ export declare type TownsquareUserCapabilities = {
|
|
|
99932
100322
|
export declare type TownsquareUserConnection = {
|
|
99933
100323
|
__typename?: 'TownsquareUserConnection';
|
|
99934
100324
|
count: Scalars['Int']['output'];
|
|
100325
|
+
edges?: Maybe<Array<Maybe<TownsquareUserEdge>>>;
|
|
100326
|
+
pageInfo: PageInfo;
|
|
100327
|
+
};
|
|
100328
|
+
export declare type TownsquareUserEdge = {
|
|
100329
|
+
__typename?: 'TownsquareUserEdge';
|
|
100330
|
+
cursor: Scalars['String']['output'];
|
|
100331
|
+
node?: Maybe<User>;
|
|
99935
100332
|
};
|
|
99936
100333
|
export declare type TownsquareWatchGoalInput = {
|
|
99937
100334
|
ari: Scalars['String']['input'];
|
|
@@ -100223,8 +100620,13 @@ export declare type TrelloAttachment = Node & {
|
|
|
100223
100620
|
name?: Maybe<Scalars['String']['output']>;
|
|
100224
100621
|
objectId: Scalars['ID']['output'];
|
|
100225
100622
|
position?: Maybe<Scalars['Float']['output']>;
|
|
100623
|
+
previews?: Maybe<TrelloImagePreviewConnection>;
|
|
100226
100624
|
url?: Maybe<Scalars['URL']['output']>;
|
|
100227
100625
|
};
|
|
100626
|
+
export declare type TrelloAttachmentPreviewsArgs = {
|
|
100627
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100628
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100629
|
+
};
|
|
100228
100630
|
export declare type TrelloAttachmentConnection = {
|
|
100229
100631
|
__typename?: 'TrelloAttachmentConnection';
|
|
100230
100632
|
edges?: Maybe<Array<TrelloAttachmentEdge>>;
|
|
@@ -100464,6 +100866,12 @@ export declare type TrelloBoardPrefs = {
|
|
|
100464
100866
|
switcherViews?: Maybe<Array<Maybe<TrelloSwitcherViewsInfo>>>;
|
|
100465
100867
|
voting?: Maybe<Scalars['String']['output']>;
|
|
100466
100868
|
};
|
|
100869
|
+
export declare enum TrelloBoardPrefsPermissionLevel {
|
|
100870
|
+
Enterprise = "ENTERPRISE",
|
|
100871
|
+
Org = "ORG",
|
|
100872
|
+
Private = "PRIVATE",
|
|
100873
|
+
Public = "PUBLIC"
|
|
100874
|
+
}
|
|
100467
100875
|
export declare type TrelloBoardReactionsLimits = {
|
|
100468
100876
|
__typename?: 'TrelloBoardReactionsLimits';
|
|
100469
100877
|
perAction?: Maybe<TrelloLimitProps>;
|
|
@@ -101173,6 +101581,19 @@ export declare type TrelloCreateInboxCardActionDisplayEntities = {
|
|
|
101173
101581
|
card?: Maybe<TrelloActionCardEntity>;
|
|
101174
101582
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
101175
101583
|
};
|
|
101584
|
+
export declare type TrelloCreateOAuth2ApplicationInput = {
|
|
101585
|
+
author: Scalars['String']['input'];
|
|
101586
|
+
email: Scalars['String']['input'];
|
|
101587
|
+
iframeUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
101588
|
+
name: Scalars['String']['input'];
|
|
101589
|
+
supportContact: Scalars['String']['input'];
|
|
101590
|
+
workspaceId: Scalars['ID']['input'];
|
|
101591
|
+
};
|
|
101592
|
+
export declare type TrelloCreateOAuth2ApplicationPayload = {
|
|
101593
|
+
__typename?: 'TrelloCreateOAuth2ApplicationPayload';
|
|
101594
|
+
id: Scalars['ID']['output'];
|
|
101595
|
+
oauth2Client?: Maybe<TrelloOAuth2Client>;
|
|
101596
|
+
};
|
|
101176
101597
|
export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
101177
101598
|
enabled: Scalars['Boolean']['input'];
|
|
101178
101599
|
primaryCalendar?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -101706,6 +102127,7 @@ export declare type TrelloMutationApi = {
|
|
|
101706
102127
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
101707
102128
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
101708
102129
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
102130
|
+
createOAuth2Application?: Maybe<TrelloCreateOAuth2ApplicationPayload>;
|
|
101709
102131
|
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
101710
102132
|
createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
|
|
101711
102133
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
@@ -101723,6 +102145,7 @@ export declare type TrelloMutationApi = {
|
|
|
101723
102145
|
updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
|
|
101724
102146
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
101725
102147
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
102148
|
+
updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
|
|
101726
102149
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
101727
102150
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
101728
102151
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -101739,6 +102162,9 @@ export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
|
101739
102162
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
101740
102163
|
input: TrelloCreateCardInput;
|
|
101741
102164
|
};
|
|
102165
|
+
export declare type TrelloMutationApiCreateOAuth2ApplicationArgs = {
|
|
102166
|
+
input: TrelloCreateOAuth2ApplicationInput;
|
|
102167
|
+
};
|
|
101742
102168
|
export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
101743
102169
|
input: TrelloCreateOrUpdatePlannerCalendarInput;
|
|
101744
102170
|
};
|
|
@@ -101790,6 +102216,9 @@ export declare type TrelloMutationApiUpdateBoardViewerAiSlackArgs = {
|
|
|
101790
102216
|
export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
101791
102217
|
input: TrelloUpdateBoardViewerShowCompactMirrorCardInput;
|
|
101792
102218
|
};
|
|
102219
|
+
export declare type TrelloMutationApiUpdateBoardVisibilityArgs = {
|
|
102220
|
+
input: TrelloUpdateBoardVisibilityInput;
|
|
102221
|
+
};
|
|
101793
102222
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
101794
102223
|
input: TrelloUpdateCardNameInput;
|
|
101795
102224
|
};
|
|
@@ -101799,6 +102228,18 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
|
101799
102228
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
101800
102229
|
input: TrelloWatchCardInput;
|
|
101801
102230
|
};
|
|
102231
|
+
export declare type TrelloOAuth2Client = {
|
|
102232
|
+
__typename?: 'TrelloOAuth2Client';
|
|
102233
|
+
clientId: Scalars['String']['output'];
|
|
102234
|
+
clientSecret: Scalars['String']['output'];
|
|
102235
|
+
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
102236
|
+
};
|
|
102237
|
+
export declare type TrelloOAuth2Scope = {
|
|
102238
|
+
__typename?: 'TrelloOAuth2Scope';
|
|
102239
|
+
code: Scalars['String']['output'];
|
|
102240
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
102241
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
102242
|
+
};
|
|
101802
102243
|
export declare type TrelloPinCardInput = {
|
|
101803
102244
|
cardId: Scalars['ID']['input'];
|
|
101804
102245
|
};
|
|
@@ -102630,6 +103071,16 @@ export declare type TrelloUpdateBoardViewerShowCompactMirrorCardPayload = Payloa
|
|
|
102630
103071
|
success: Scalars['Boolean']['output'];
|
|
102631
103072
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
102632
103073
|
};
|
|
103074
|
+
export declare type TrelloUpdateBoardVisibilityInput = {
|
|
103075
|
+
boardId: Scalars['ID']['input'];
|
|
103076
|
+
visibility: TrelloBoardPrefsPermissionLevel;
|
|
103077
|
+
};
|
|
103078
|
+
export declare type TrelloUpdateBoardVisibilityPayload = Payload & {
|
|
103079
|
+
__typename?: 'TrelloUpdateBoardVisibilityPayload';
|
|
103080
|
+
board?: Maybe<TrelloBoard>;
|
|
103081
|
+
errors?: Maybe<Array<MutationError>>;
|
|
103082
|
+
success: Scalars['Boolean']['output'];
|
|
103083
|
+
};
|
|
102633
103084
|
export declare type TrelloUpdateCardClosedAction = TrelloAction & TrelloCardActionData & {
|
|
102634
103085
|
__typename?: 'TrelloUpdateCardClosedAction';
|
|
102635
103086
|
appCreator?: Maybe<TrelloAppCreator>;
|