@forge/cli-shared 7.1.0-next.1 → 7.1.0-next.3

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.
@@ -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 AgentStudioAssistantCustomAction = AgentStudioCustomAction & Node & {
845
- __typename?: 'AgentStudioAssistantCustomAction';
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 AgentStudioCreateCustomActionInput = {
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 AgentStudioCreateCustomActionPayload = Payload & {
905
- __typename?: 'AgentStudioCreateCustomActionPayload';
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 AgentStudioCustomAction = {
911
- action?: Maybe<AgentStudioAction>;
912
- creatorId: Scalars['ID']['output'];
913
- id: Scalars['ID']['output'];
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 AgentStudioUpdateCustomActionInput = {
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 AgentStudioUpdateCustomActionMappingsPayload = Payload & {
1074
- __typename?: 'AgentStudioUpdateCustomActionMappingsPayload';
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 AgentStudioUpdateCustomActionPayload = Payload & {
1080
- __typename?: 'AgentStudioUpdateCustomActionPayload';
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
- endAt: Scalars['Float']['output'];
3949
- startAt: Scalars['Float']['output'];
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: Scalars['ID']['input'];
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,9 +78079,22 @@ 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
- appAccess: Array<Scalars['String']['output']>;
78097
+ appAccess?: Maybe<Array<Scalars['String']['output']>>;
77901
78098
  appId: Scalars['ID']['output'];
77902
78099
  envId: Scalars['ID']['output'];
77903
78100
  scopes: 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
- agentStudio_createCustomAction?: Maybe<AgentStudioCreateCustomActionPayload>;
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
- agentStudio_updateCustomAction?: Maybe<AgentStudioUpdateCustomActionPayload>;
82275
- agentStudio_updateCustomActionMappingsForContainer?: Maybe<AgentStudioUpdateCustomActionMappingsPayload>;
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 MutationAgentStudio_CreateCustomActionArgs = {
83122
+ export declare type MutationAgentStudio_CreateScenarioArgs = {
82918
83123
  cloudId: Scalars['String']['input'];
82919
- input: AgentStudioCreateCustomActionInput;
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 MutationAgentStudio_UpdateCustomActionArgs = {
83149
+ export declare type MutationAgentStudio_UpdateScenarioArgs = {
82942
83150
  id: Scalars['ID']['input'];
82943
- input: AgentStudioUpdateCustomActionInput;
83151
+ input: AgentStudioUpdateScenarioInput;
82944
83152
  };
82945
- export declare type MutationAgentStudio_UpdateCustomActionMappingsForContainerArgs = {
83153
+ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs = {
82946
83154
  cloudId: Scalars['String']['input'];
82947
83155
  containerId: Scalars['String']['input'];
82948
- customActionIds: Array<Scalars['ID']['input']>;
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
  };
@@ -85186,6 +85400,7 @@ export declare type OAuthClientsAccountGrant = {
85186
85400
  accountId?: Maybe<Scalars['String']['output']>;
85187
85401
  appEnvironment?: Maybe<AppEnvironment>;
85188
85402
  clientId?: Maybe<Scalars['String']['output']>;
85403
+ clientInfo?: Maybe<OAuthClientsClientInfo>;
85189
85404
  scopeDetails?: Maybe<Array<Maybe<OAuthClientsScopeDetails>>>;
85190
85405
  scopes?: Maybe<Array<Scalars['String']['output']>>;
85191
85406
  };
@@ -85207,6 +85422,13 @@ export declare type OAuthClientsAccountGrantPageInfo = {
85207
85422
  hasPreviousPage: Scalars['Boolean']['output'];
85208
85423
  startCursor?: Maybe<Scalars['String']['output']>;
85209
85424
  };
85425
+ export declare type OAuthClientsClientInfo = {
85426
+ __typename?: 'OAuthClientsClientInfo';
85427
+ clientId: Scalars['String']['output'];
85428
+ clientName?: Maybe<Scalars['String']['output']>;
85429
+ customerName?: Maybe<Scalars['String']['output']>;
85430
+ profileName?: Maybe<Scalars['String']['output']>;
85431
+ };
85210
85432
  export declare type OAuthClientsQuery = {
85211
85433
  __typename?: 'OAuthClientsQuery';
85212
85434
  allAccountGrantsForUser?: Maybe<OAuthClientsAccountGrantConnection>;
@@ -87609,10 +87831,10 @@ export declare type Query = {
87609
87831
  agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
87610
87832
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
87611
87833
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
87612
- agentStudio_customActionById?: Maybe<AgentStudioCustomActionResult>;
87613
- agentStudio_customActionListByContainerId?: Maybe<AgentStudioCustomActionListResult>;
87614
- agentStudio_customActionsByIds?: Maybe<Array<Maybe<AgentStudioCustomAction>>>;
87615
87834
  agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
87835
+ agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
87836
+ agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenarioListResult>;
87837
+ agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
87616
87838
  agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
87617
87839
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
87618
87840
  aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
@@ -88243,6 +88465,7 @@ export declare type Query = {
88243
88465
  searchesWithZeroCTR?: Maybe<SearchesWithZeroCtr>;
88244
88466
  settings_navigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
88245
88467
  shepherd?: Maybe<ShepherdQuery>;
88468
+ shepherdTeamworkGraph?: Maybe<ShepherdTeamworkGraphQueries>;
88246
88469
  signUpProperties?: Maybe<SignUpProperties>;
88247
88470
  signup?: Maybe<SignupQueryApi>;
88248
88471
  singleContent?: Maybe<Content>;
@@ -88356,22 +88579,22 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
88356
88579
  export declare type QueryAgentStudio_AgentByIdArgs = {
88357
88580
  id: Scalars['ID']['input'];
88358
88581
  };
88359
- export declare type QueryAgentStudio_CustomActionByIdArgs = {
88582
+ export declare type QueryAgentStudio_GetAgentsArgs = {
88583
+ after?: InputMaybe<Scalars['String']['input']>;
88584
+ cloudId: Scalars['String']['input'];
88585
+ first?: InputMaybe<Scalars['Int']['input']>;
88586
+ input?: InputMaybe<AgentStudioAgentQueryInput>;
88587
+ };
88588
+ export declare type QueryAgentStudio_ScenarioByIdArgs = {
88360
88589
  id: Scalars['ID']['input'];
88361
88590
  };
88362
- export declare type QueryAgentStudio_CustomActionListByContainerIdArgs = {
88591
+ export declare type QueryAgentStudio_ScenarioListByContainerIdArgs = {
88363
88592
  cloudId: Scalars['String']['input'];
88364
88593
  containerId: Scalars['String']['input'];
88365
88594
  };
88366
- export declare type QueryAgentStudio_CustomActionsByIdsArgs = {
88595
+ export declare type QueryAgentStudio_ScenariosByIdsArgs = {
88367
88596
  ids: Array<Scalars['ID']['input']>;
88368
88597
  };
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
88598
  export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
88376
88599
  cloudId: Scalars['String']['input'];
88377
88600
  input: AgentStudioSuggestConversationStartersInput;
@@ -89707,6 +89930,7 @@ export declare type QueryContentAnalyticsUnreadCommentsArgs = {
89707
89930
  };
89708
89931
  export declare type QueryContentAnalyticsViewedCommentsArgs = {
89709
89932
  contentId: Scalars['ID']['input'];
89933
+ contentType?: InputMaybe<ConfluenceAnalyticsCommentContentType>;
89710
89934
  };
89711
89935
  export declare type QueryContentAnalyticsViewersArgs = {
89712
89936
  contentId: Scalars['ID']['input'];
@@ -90724,6 +90948,7 @@ export declare type QueryPtpageArgs = {
90724
90948
  status?: InputMaybe<Array<InputMaybe<PtGraphQlPageStatus>>>;
90725
90949
  };
90726
90950
  export declare type QueryPublicLinkInformationArgs = {
90951
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
90727
90952
  id: Scalars['ID']['input'];
90728
90953
  };
90729
90954
  export declare type QueryPublicLinkPageArgs = {
@@ -91658,6 +91883,7 @@ export declare type RadarPositionsByEntity = {
91658
91883
  type: RadarEntityType;
91659
91884
  };
91660
91885
  export declare type RadarPositionsByEntityFieldValuesArgs = {
91886
+ aggregateRql?: InputMaybe<Scalars['String']['input']>;
91661
91887
  fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
91662
91888
  };
91663
91889
  export declare type RadarPositionsByEntityConnection = RadarConnection & {
@@ -95855,6 +96081,13 @@ export declare type ShepherdSuspiciousSearchTerm = {
95855
96081
  endPosition: Scalars['Int']['output'];
95856
96082
  startPosition: Scalars['Int']['output'];
95857
96083
  };
96084
+ export declare type ShepherdTeamworkGraphQueries = {
96085
+ __typename?: 'ShepherdTeamworkGraphQueries';
96086
+ workspaces?: Maybe<Array<Maybe<ShepherdWorkspace>>>;
96087
+ };
96088
+ export declare type ShepherdTeamworkGraphQueriesWorkspacesArgs = {
96089
+ ids: Array<Scalars['ID']['input']>;
96090
+ };
95858
96091
  export declare type ShepherdTime = {
95859
96092
  __typename?: 'ShepherdTime';
95860
96093
  end?: Maybe<Scalars['DateTime']['output']>;
@@ -95937,7 +96170,7 @@ export declare enum ShepherdWebhookType {
95937
96170
  MicrosoftTeams = "MICROSOFT_TEAMS",
95938
96171
  Slack = "SLACK"
95939
96172
  }
95940
- export declare type ShepherdWorkspace = {
96173
+ export declare type ShepherdWorkspace = Node & {
95941
96174
  __typename?: 'ShepherdWorkspace';
95942
96175
  bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
95943
96176
  cloudId: Scalars['ID']['output'];
@@ -96339,6 +96572,7 @@ export declare type SmartsRecommendedFieldObject = {
96339
96572
  };
96340
96573
  export declare type SmartsRecommendedObject = {
96341
96574
  __typename?: 'SmartsRecommendedObject';
96575
+ content?: Maybe<Array<Maybe<Content>>>;
96342
96576
  id: Scalars['ID']['output'];
96343
96577
  object?: Maybe<SmartsRecommendedObjectData>;
96344
96578
  reason?: Maybe<Scalars['String']['output']>;
@@ -99210,6 +99444,12 @@ export declare type TownsquareDeleteRelationshipsPayload = {
99210
99444
  relationships?: Maybe<Array<TownsquareRelationship>>;
99211
99445
  success: Scalars['Boolean']['output'];
99212
99446
  };
99447
+ export declare type TownsquareDraftUpdate = {
99448
+ __typename?: 'TownsquareDraftUpdate';
99449
+ author?: Maybe<User>;
99450
+ input?: Maybe<Scalars['String']['output']>;
99451
+ modifiedDate?: Maybe<Scalars['DateTime']['output']>;
99452
+ };
99213
99453
  export declare type TownsquareEditGoalInput = {
99214
99454
  description?: InputMaybe<Scalars['String']['input']>;
99215
99455
  id: Scalars['String']['input'];
@@ -99232,6 +99472,12 @@ export declare type TownsquareEditGoalTypePayload = {
99232
99472
  __typename?: 'TownsquareEditGoalTypePayload';
99233
99473
  goalType?: Maybe<TownsquareGoalType>;
99234
99474
  };
99475
+ export declare type TownsquareFusionDetails = {
99476
+ __typename?: 'TownsquareFusionDetails';
99477
+ issue?: Maybe<JiraIssue>;
99478
+ issueAri?: Maybe<Scalars['String']['output']>;
99479
+ synced?: Maybe<Scalars['Boolean']['output']>;
99480
+ };
99235
99481
  export declare type TownsquareGoal = Node & {
99236
99482
  __typename?: 'TownsquareGoal';
99237
99483
  archived: Scalars['Boolean']['output'];
@@ -99456,6 +99702,39 @@ export declare type TownsquareHighlight = {
99456
99702
  project?: Maybe<TownsquareProject>;
99457
99703
  summary?: Maybe<Scalars['String']['output']>;
99458
99704
  };
99705
+ export declare type TownsquareIcon = {
99706
+ __typename?: 'TownsquareIcon';
99707
+ color?: Maybe<Scalars['String']['output']>;
99708
+ id?: Maybe<Scalars['String']['output']>;
99709
+ shortName?: Maybe<Scalars['String']['output']>;
99710
+ };
99711
+ export declare type TownsquareIconUrIs = {
99712
+ __typename?: 'TownsquareIconURIs';
99713
+ roundedSquare?: Maybe<TownsquareThemeUrIs>;
99714
+ square?: Maybe<TownsquareThemeUrIs>;
99715
+ };
99716
+ export declare type TownsquareLink = {
99717
+ __typename?: 'TownsquareLink';
99718
+ iconUrl?: Maybe<Scalars['URL']['output']>;
99719
+ name?: Maybe<Scalars['String']['output']>;
99720
+ provider?: Maybe<Scalars['String']['output']>;
99721
+ type?: Maybe<TownsquareLinkType>;
99722
+ url?: Maybe<Scalars['URL']['output']>;
99723
+ };
99724
+ export declare type TownsquareLinkConnection = {
99725
+ __typename?: 'TownsquareLinkConnection';
99726
+ edges?: Maybe<Array<Maybe<TownsquareLinkEdge>>>;
99727
+ pageInfo: PageInfo;
99728
+ };
99729
+ export declare type TownsquareLinkEdge = {
99730
+ __typename?: 'TownsquareLinkEdge';
99731
+ cursor: Scalars['String']['output'];
99732
+ node?: Maybe<TownsquareLink>;
99733
+ };
99734
+ export declare enum TownsquareLinkType {
99735
+ Related = "RELATED",
99736
+ WorkTracking = "WORK_TRACKING"
99737
+ }
99459
99738
  export declare type TownsquareLocalizationField = {
99460
99739
  __typename?: 'TownsquareLocalizationField';
99461
99740
  defaultValue?: Maybe<Scalars['String']['output']>;
@@ -99524,13 +99803,26 @@ export declare type TownsquareMutationApiWatchGoalArgs = {
99524
99803
  export declare type TownsquareProject = HasMercuryProjectFields & Node & {
99525
99804
  __typename?: 'TownsquareProject';
99526
99805
  archived: Scalars['Boolean']['output'];
99806
+ canEditMembers?: Maybe<Scalars['Boolean']['output']>;
99807
+ changelog?: Maybe<TownsquareProjectChangelogItemConnection>;
99808
+ comments?: Maybe<TownsquareCommentConnection>;
99809
+ dependencies?: Maybe<TownsquareProjectDependencyConnection>;
99527
99810
  description?: Maybe<TownsquareProjectDescription>;
99811
+ draftUpdate?: Maybe<TownsquareDraftUpdate>;
99528
99812
  dueDate?: Maybe<TownsquareTargetDate>;
99813
+ fusion?: Maybe<TownsquareFusionDetails>;
99814
+ goals?: Maybe<TownsquareGoalConnection>;
99815
+ icon?: Maybe<TownsquareIcon>;
99529
99816
  iconData?: Maybe<Scalars['String']['output']>;
99817
+ iconUrl?: Maybe<TownsquareIconUrIs>;
99530
99818
  id: Scalars['ID']['output'];
99531
99819
  isArchived: Scalars['Boolean']['output'];
99532
99820
  isPrivate: Scalars['Boolean']['output'];
99533
99821
  key: Scalars['String']['output'];
99822
+ latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
99823
+ latestUserUpdate?: Maybe<TownsquareProjectUpdate>;
99824
+ links?: Maybe<TownsquareLinkConnection>;
99825
+ members?: Maybe<TownsquareUserConnection>;
99534
99826
  mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
99535
99827
  mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
99536
99828
  mercuryProjectKey?: Maybe<Scalars['String']['output']>;
@@ -99549,9 +99841,43 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
99549
99841
  startDate?: Maybe<Scalars['DateTime']['output']>;
99550
99842
  state?: Maybe<TownsquareProjectState>;
99551
99843
  tags?: Maybe<TownsquareTagConnection>;
99844
+ tagsWatchedByUser?: Maybe<TownsquareTagConnection>;
99845
+ teamsWatchedByUser?: Maybe<TownsquareTeamConnection>;
99552
99846
  updates?: Maybe<TownsquareProjectUpdateConnection>;
99553
99847
  url?: Maybe<Scalars['String']['output']>;
99848
+ userUpdateCount?: Maybe<Scalars['Int']['output']>;
99554
99849
  uuid: Scalars['String']['output'];
99850
+ viewers?: Maybe<TownsquareUserConnection>;
99851
+ watcherCount?: Maybe<Scalars['Int']['output']>;
99852
+ watchers?: Maybe<TownsquareUserConnection>;
99853
+ watching?: Maybe<Scalars['Boolean']['output']>;
99854
+ workspace?: Maybe<TownsquareWorkspace>;
99855
+ };
99856
+ export declare type TownsquareProjectChangelogArgs = {
99857
+ after?: InputMaybe<Scalars['String']['input']>;
99858
+ first?: InputMaybe<Scalars['Int']['input']>;
99859
+ hasUpdateId?: InputMaybe<Scalars['Boolean']['input']>;
99860
+ };
99861
+ export declare type TownsquareProjectCommentsArgs = {
99862
+ after?: InputMaybe<Scalars['String']['input']>;
99863
+ first?: InputMaybe<Scalars['Int']['input']>;
99864
+ };
99865
+ export declare type TownsquareProjectDependenciesArgs = {
99866
+ after?: InputMaybe<Scalars['String']['input']>;
99867
+ first?: InputMaybe<Scalars['Int']['input']>;
99868
+ };
99869
+ export declare type TownsquareProjectGoalsArgs = {
99870
+ after?: InputMaybe<Scalars['String']['input']>;
99871
+ first?: InputMaybe<Scalars['Int']['input']>;
99872
+ };
99873
+ export declare type TownsquareProjectLinksArgs = {
99874
+ after?: InputMaybe<Scalars['String']['input']>;
99875
+ first?: InputMaybe<Scalars['Int']['input']>;
99876
+ type?: InputMaybe<TownsquareLinkType>;
99877
+ };
99878
+ export declare type TownsquareProjectMembersArgs = {
99879
+ after?: InputMaybe<Scalars['String']['input']>;
99880
+ first?: InputMaybe<Scalars['Int']['input']>;
99555
99881
  };
99556
99882
  export declare type TownsquareProjectRisksArgs = {
99557
99883
  after?: InputMaybe<Scalars['String']['input']>;
@@ -99566,17 +99892,73 @@ export declare type TownsquareProjectTagsArgs = {
99566
99892
  after?: InputMaybe<Scalars['String']['input']>;
99567
99893
  first?: InputMaybe<Scalars['Int']['input']>;
99568
99894
  };
99895
+ export declare type TownsquareProjectTagsWatchedByUserArgs = {
99896
+ after?: InputMaybe<Scalars['String']['input']>;
99897
+ first?: InputMaybe<Scalars['Int']['input']>;
99898
+ };
99899
+ export declare type TownsquareProjectTeamsWatchedByUserArgs = {
99900
+ after?: InputMaybe<Scalars['String']['input']>;
99901
+ first?: InputMaybe<Scalars['Int']['input']>;
99902
+ };
99569
99903
  export declare type TownsquareProjectUpdatesArgs = {
99570
99904
  after?: InputMaybe<Scalars['String']['input']>;
99571
99905
  createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
99572
99906
  createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
99573
99907
  first?: InputMaybe<Scalars['Int']['input']>;
99574
99908
  };
99909
+ export declare type TownsquareProjectViewersArgs = {
99910
+ after?: InputMaybe<Scalars['String']['input']>;
99911
+ first?: InputMaybe<Scalars['Int']['input']>;
99912
+ };
99913
+ export declare type TownsquareProjectWatchersArgs = {
99914
+ after?: InputMaybe<Scalars['String']['input']>;
99915
+ first?: InputMaybe<Scalars['Int']['input']>;
99916
+ };
99917
+ export declare type TownsquareProjectChangelogItem = {
99918
+ __typename?: 'TownsquareProjectChangelogItem';
99919
+ accountId?: Maybe<Scalars['String']['output']>;
99920
+ creationDate?: Maybe<Scalars['DateTime']['output']>;
99921
+ field?: Maybe<TownsquareProjectFusionField>;
99922
+ newValue?: Maybe<Scalars['String']['output']>;
99923
+ oldValue?: Maybe<Scalars['String']['output']>;
99924
+ };
99925
+ export declare type TownsquareProjectChangelogItemConnection = {
99926
+ __typename?: 'TownsquareProjectChangelogItemConnection';
99927
+ edges?: Maybe<Array<Maybe<TownsquareProjectChangelogItemEdge>>>;
99928
+ pageInfo: PageInfo;
99929
+ };
99930
+ export declare type TownsquareProjectChangelogItemEdge = {
99931
+ __typename?: 'TownsquareProjectChangelogItemEdge';
99932
+ cursor: Scalars['String']['output'];
99933
+ node?: Maybe<TownsquareProjectChangelogItem>;
99934
+ };
99575
99935
  export declare type TownsquareProjectConnection = {
99576
99936
  __typename?: 'TownsquareProjectConnection';
99577
99937
  edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
99578
99938
  pageInfo: PageInfo;
99579
99939
  };
99940
+ export declare type TownsquareProjectDependency = {
99941
+ __typename?: 'TownsquareProjectDependency';
99942
+ created?: Maybe<Scalars['DateTime']['output']>;
99943
+ incomingProject?: Maybe<TownsquareProject>;
99944
+ linkType?: Maybe<TownsquareProjectDependencyRelationship>;
99945
+ outgoingProject?: Maybe<TownsquareProject>;
99946
+ };
99947
+ export declare type TownsquareProjectDependencyConnection = {
99948
+ __typename?: 'TownsquareProjectDependencyConnection';
99949
+ edges?: Maybe<Array<Maybe<TownsquareProjectDependencyEdge>>>;
99950
+ pageInfo: PageInfo;
99951
+ };
99952
+ export declare type TownsquareProjectDependencyEdge = {
99953
+ __typename?: 'TownsquareProjectDependencyEdge';
99954
+ cursor: Scalars['String']['output'];
99955
+ node?: Maybe<TownsquareProjectDependency>;
99956
+ };
99957
+ export declare enum TownsquareProjectDependencyRelationship {
99958
+ DependedBy = "DEPENDED_BY",
99959
+ DependsOn = "DEPENDS_ON",
99960
+ Related = "RELATED"
99961
+ }
99580
99962
  export declare type TownsquareProjectDescription = {
99581
99963
  __typename?: 'TownsquareProjectDescription';
99582
99964
  measurement?: Maybe<Scalars['String']['output']>;
@@ -99588,6 +99970,14 @@ export declare type TownsquareProjectEdge = {
99588
99970
  cursor: Scalars['String']['output'];
99589
99971
  node?: Maybe<TownsquareProject>;
99590
99972
  };
99973
+ export declare enum TownsquareProjectFusionField {
99974
+ DueDate = "DUE_DATE",
99975
+ Followers = "FOLLOWERS",
99976
+ Labels = "LABELS",
99977
+ StartDate = "START_DATE",
99978
+ Status = "STATUS",
99979
+ Summary = "SUMMARY"
99980
+ }
99591
99981
  export declare enum TownsquareProjectPhase {
99592
99982
  Done = "done",
99593
99983
  InProgress = "in_progress",
@@ -99880,6 +100270,22 @@ export declare type TownsquareTeam = Node & {
99880
100270
  id: Scalars['ID']['output'];
99881
100271
  name?: Maybe<Scalars['String']['output']>;
99882
100272
  };
100273
+ export declare type TownsquareTeamConnection = {
100274
+ __typename?: 'TownsquareTeamConnection';
100275
+ edges?: Maybe<Array<Maybe<TownsquareTeamEdge>>>;
100276
+ pageInfo: PageInfo;
100277
+ };
100278
+ export declare type TownsquareTeamEdge = {
100279
+ __typename?: 'TownsquareTeamEdge';
100280
+ cursor: Scalars['String']['output'];
100281
+ node?: Maybe<TeamV2>;
100282
+ };
100283
+ export declare type TownsquareThemeUrIs = {
100284
+ __typename?: 'TownsquareThemeURIs';
100285
+ dark?: Maybe<Scalars['String']['output']>;
100286
+ light?: Maybe<Scalars['String']['output']>;
100287
+ transparent?: Maybe<Scalars['String']['output']>;
100288
+ };
99883
100289
  export declare enum TownsquareUnshardedAccessControlCapability {
99884
100290
  Access = "ACCESS",
99885
100291
  Administer = "ADMINISTER",
@@ -99932,6 +100338,13 @@ export declare type TownsquareUserCapabilities = {
99932
100338
  export declare type TownsquareUserConnection = {
99933
100339
  __typename?: 'TownsquareUserConnection';
99934
100340
  count: Scalars['Int']['output'];
100341
+ edges?: Maybe<Array<Maybe<TownsquareUserEdge>>>;
100342
+ pageInfo: PageInfo;
100343
+ };
100344
+ export declare type TownsquareUserEdge = {
100345
+ __typename?: 'TownsquareUserEdge';
100346
+ cursor: Scalars['String']['output'];
100347
+ node?: Maybe<User>;
99935
100348
  };
99936
100349
  export declare type TownsquareWatchGoalInput = {
99937
100350
  ari: Scalars['String']['input'];
@@ -100223,8 +100636,13 @@ export declare type TrelloAttachment = Node & {
100223
100636
  name?: Maybe<Scalars['String']['output']>;
100224
100637
  objectId: Scalars['ID']['output'];
100225
100638
  position?: Maybe<Scalars['Float']['output']>;
100639
+ previews?: Maybe<TrelloImagePreviewConnection>;
100226
100640
  url?: Maybe<Scalars['URL']['output']>;
100227
100641
  };
100642
+ export declare type TrelloAttachmentPreviewsArgs = {
100643
+ after?: InputMaybe<Scalars['String']['input']>;
100644
+ first?: InputMaybe<Scalars['Int']['input']>;
100645
+ };
100228
100646
  export declare type TrelloAttachmentConnection = {
100229
100647
  __typename?: 'TrelloAttachmentConnection';
100230
100648
  edges?: Maybe<Array<TrelloAttachmentEdge>>;
@@ -100464,6 +100882,12 @@ export declare type TrelloBoardPrefs = {
100464
100882
  switcherViews?: Maybe<Array<Maybe<TrelloSwitcherViewsInfo>>>;
100465
100883
  voting?: Maybe<Scalars['String']['output']>;
100466
100884
  };
100885
+ export declare enum TrelloBoardPrefsPermissionLevel {
100886
+ Enterprise = "ENTERPRISE",
100887
+ Org = "ORG",
100888
+ Private = "PRIVATE",
100889
+ Public = "PUBLIC"
100890
+ }
100467
100891
  export declare type TrelloBoardReactionsLimits = {
100468
100892
  __typename?: 'TrelloBoardReactionsLimits';
100469
100893
  perAction?: Maybe<TrelloLimitProps>;
@@ -101173,6 +101597,19 @@ export declare type TrelloCreateInboxCardActionDisplayEntities = {
101173
101597
  card?: Maybe<TrelloActionCardEntity>;
101174
101598
  memberCreator?: Maybe<TrelloActionMemberEntity>;
101175
101599
  };
101600
+ export declare type TrelloCreateOAuth2ApplicationInput = {
101601
+ author: Scalars['String']['input'];
101602
+ email: Scalars['String']['input'];
101603
+ iframeUrl?: InputMaybe<Scalars['URL']['input']>;
101604
+ name: Scalars['String']['input'];
101605
+ supportContact: Scalars['String']['input'];
101606
+ workspaceId: Scalars['ID']['input'];
101607
+ };
101608
+ export declare type TrelloCreateOAuth2ApplicationPayload = {
101609
+ __typename?: 'TrelloCreateOAuth2ApplicationPayload';
101610
+ id: Scalars['ID']['output'];
101611
+ oauth2Client?: Maybe<TrelloOAuth2Client>;
101612
+ };
101176
101613
  export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
101177
101614
  enabled: Scalars['Boolean']['input'];
101178
101615
  primaryCalendar?: InputMaybe<Scalars['Boolean']['input']>;
@@ -101706,6 +102143,7 @@ export declare type TrelloMutationApi = {
101706
102143
  archiveCard?: Maybe<TrelloArchiveCardPayload>;
101707
102144
  assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
101708
102145
  createCard?: Maybe<TrelloCreateCardPayload>;
102146
+ createOAuth2Application?: Maybe<TrelloCreateOAuth2ApplicationPayload>;
101709
102147
  createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
101710
102148
  createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
101711
102149
  deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
@@ -101723,6 +102161,7 @@ export declare type TrelloMutationApi = {
101723
102161
  updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
101724
102162
  updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
101725
102163
  updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
102164
+ updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
101726
102165
  updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
101727
102166
  updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
101728
102167
  watchCard?: Maybe<TrelloWatchCardPayload>;
@@ -101739,6 +102178,9 @@ export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
101739
102178
  export declare type TrelloMutationApiCreateCardArgs = {
101740
102179
  input: TrelloCreateCardInput;
101741
102180
  };
102181
+ export declare type TrelloMutationApiCreateOAuth2ApplicationArgs = {
102182
+ input: TrelloCreateOAuth2ApplicationInput;
102183
+ };
101742
102184
  export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
101743
102185
  input: TrelloCreateOrUpdatePlannerCalendarInput;
101744
102186
  };
@@ -101790,6 +102232,9 @@ export declare type TrelloMutationApiUpdateBoardViewerAiSlackArgs = {
101790
102232
  export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
101791
102233
  input: TrelloUpdateBoardViewerShowCompactMirrorCardInput;
101792
102234
  };
102235
+ export declare type TrelloMutationApiUpdateBoardVisibilityArgs = {
102236
+ input: TrelloUpdateBoardVisibilityInput;
102237
+ };
101793
102238
  export declare type TrelloMutationApiUpdateCardNameArgs = {
101794
102239
  input: TrelloUpdateCardNameInput;
101795
102240
  };
@@ -101799,6 +102244,18 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
101799
102244
  export declare type TrelloMutationApiWatchCardArgs = {
101800
102245
  input: TrelloWatchCardInput;
101801
102246
  };
102247
+ export declare type TrelloOAuth2Client = {
102248
+ __typename?: 'TrelloOAuth2Client';
102249
+ clientId: Scalars['String']['output'];
102250
+ clientSecret: Scalars['String']['output'];
102251
+ scopes?: Maybe<Array<TrelloOAuth2Scope>>;
102252
+ };
102253
+ export declare type TrelloOAuth2Scope = {
102254
+ __typename?: 'TrelloOAuth2Scope';
102255
+ code: Scalars['String']['output'];
102256
+ description?: Maybe<Scalars['String']['output']>;
102257
+ name?: Maybe<Scalars['String']['output']>;
102258
+ };
101802
102259
  export declare type TrelloPinCardInput = {
101803
102260
  cardId: Scalars['ID']['input'];
101804
102261
  };
@@ -102630,6 +103087,16 @@ export declare type TrelloUpdateBoardViewerShowCompactMirrorCardPayload = Payloa
102630
103087
  success: Scalars['Boolean']['output'];
102631
103088
  viewer?: Maybe<TrelloBoardViewer>;
102632
103089
  };
103090
+ export declare type TrelloUpdateBoardVisibilityInput = {
103091
+ boardId: Scalars['ID']['input'];
103092
+ visibility: TrelloBoardPrefsPermissionLevel;
103093
+ };
103094
+ export declare type TrelloUpdateBoardVisibilityPayload = Payload & {
103095
+ __typename?: 'TrelloUpdateBoardVisibilityPayload';
103096
+ board?: Maybe<TrelloBoard>;
103097
+ errors?: Maybe<Array<MutationError>>;
103098
+ success: Scalars['Boolean']['output'];
103099
+ };
102633
103100
  export declare type TrelloUpdateCardClosedAction = TrelloAction & TrelloCardActionData & {
102634
103101
  __typename?: 'TrelloUpdateCardClosedAction';
102635
103102
  appCreator?: Maybe<TrelloAppCreator>;