@forge/cli-shared 3.12.0-next.7 → 3.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1243,7 +1243,7 @@ export declare type AriGraphRelationshipNode = {
1243
1243
  id: Scalars['ID'];
1244
1244
  data?: Maybe<AriGraphRelationshipNodeData>;
1245
1245
  };
1246
- export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment;
1246
+ export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment;
1247
1247
  export declare type AriGraphRelationshipsErrorReference = {
1248
1248
  __typename?: 'AriGraphRelationshipsErrorReference';
1249
1249
  from?: Maybe<Scalars['ID']>;
@@ -1417,6 +1417,7 @@ export declare type AuxEffectsResult = {
1417
1417
  __typename?: 'AuxEffectsResult';
1418
1418
  effects: Array<Scalars['JSON']>;
1419
1419
  contextToken?: Maybe<ForgeContextToken>;
1420
+ metrics?: Maybe<InvocationMetrics>;
1420
1421
  };
1421
1422
  export declare type AvailableEstimations = {
1422
1423
  __typename?: 'AvailableEstimations';
@@ -1864,6 +1865,189 @@ export declare type CardType = {
1864
1865
  hierarchyLevelType?: Maybe<Scalars['CardTypeHierarchyLevelType']>;
1865
1866
  hasRequiredFields?: Maybe<Scalars['Boolean']>;
1866
1867
  };
1868
+ export declare type CcpAccountDetails = {
1869
+ __typename?: 'CcpAccountDetails';
1870
+ invoiceGroupId?: Maybe<Scalars['ID']>;
1871
+ transactionAccountId?: Maybe<Scalars['ID']>;
1872
+ };
1873
+ export declare type CcpApplicationReason = {
1874
+ __typename?: 'CcpApplicationReason';
1875
+ id?: Maybe<Scalars['ID']>;
1876
+ };
1877
+ export declare type CcpBenefit = {
1878
+ __typename?: 'CcpBenefit';
1879
+ value?: Maybe<Scalars['Float']>;
1880
+ duration?: Maybe<CcpDuration>;
1881
+ iterations?: Maybe<Scalars['Int']>;
1882
+ };
1883
+ export declare type CcpBillEstimate = {
1884
+ __typename?: 'CcpBillEstimate';
1885
+ id?: Maybe<Scalars['ID']>;
1886
+ };
1887
+ export declare type CcpBillingPeriodDetails = {
1888
+ __typename?: 'CcpBillingPeriodDetails';
1889
+ promotionInstanceId?: Maybe<Scalars['ID']>;
1890
+ promotionDefinition?: Maybe<CcpPromotionDefinition>;
1891
+ };
1892
+ export declare type CcpChargeDetails = {
1893
+ __typename?: 'CcpChargeDetails';
1894
+ offeringId?: Maybe<Scalars['ID']>;
1895
+ pricingPlanId?: Maybe<Scalars['ID']>;
1896
+ chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
1897
+ promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
1898
+ };
1899
+ export declare type CcpChargeQuantity = {
1900
+ __typename?: 'CcpChargeQuantity';
1901
+ chargeElement?: Maybe<Scalars['String']>;
1902
+ quantity?: Maybe<Scalars['Float']>;
1903
+ lastUpdatedAt?: Maybe<Scalars['Float']>;
1904
+ };
1905
+ export declare type CcpContext = {
1906
+ __typename?: 'CcpContext';
1907
+ subject?: Maybe<Scalars['String']>;
1908
+ subjectType?: Maybe<Scalars['String']>;
1909
+ authMechanism?: Maybe<Scalars['String']>;
1910
+ clientAsapIssuer?: Maybe<Scalars['String']>;
1911
+ };
1912
+ export declare type CcpCustomisedValues = {
1913
+ __typename?: 'CcpCustomisedValues';
1914
+ applicationReason?: Maybe<CcpApplicationReason>;
1915
+ benefits?: Maybe<Array<Maybe<CcpBenefit>>>;
1916
+ };
1917
+ export declare enum CcpDuration {
1918
+ Forever = "FOREVER",
1919
+ Once = "ONCE",
1920
+ Repeating = "REPEATING"
1921
+ }
1922
+ export declare type CcpEntitlement = Node & {
1923
+ __typename?: 'CcpEntitlement';
1924
+ id: Scalars['ID'];
1925
+ version?: Maybe<Scalars['Int']>;
1926
+ status?: Maybe<CcpEntitlementStatus>;
1927
+ slug?: Maybe<Scalars['String']>;
1928
+ metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
1929
+ changeReason?: Maybe<Scalars['String']>;
1930
+ offeringKey?: Maybe<Scalars['String']>;
1931
+ entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
1932
+ featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
1933
+ featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
1934
+ parentEntitlementId?: Maybe<Scalars['String']>;
1935
+ parentId?: Maybe<Scalars['ID']>;
1936
+ childrenIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
1937
+ transactionAccountId?: Maybe<Scalars['ID']>;
1938
+ order?: Maybe<CcpOrder>;
1939
+ relatesToEntitlements?: Maybe<Array<Maybe<CcpEntitlementRelationship>>>;
1940
+ relatesFromEntitlements?: Maybe<Array<Maybe<CcpEntitlementRelationship>>>;
1941
+ enableAbuseProneFeatures?: Maybe<Scalars['Boolean']>;
1942
+ createdAt?: Maybe<Scalars['Float']>;
1943
+ updatedAt?: Maybe<Scalars['Float']>;
1944
+ subscriptionV2?: Maybe<CcpSubscriptionV2>;
1945
+ context?: Maybe<CcpContext>;
1946
+ };
1947
+ export declare type CcpEntitlementRelationship = {
1948
+ __typename?: 'CcpEntitlementRelationship';
1949
+ entitlementId?: Maybe<Scalars['ID']>;
1950
+ relationshipType?: Maybe<Scalars['String']>;
1951
+ relationshipId?: Maybe<Scalars['ID']>;
1952
+ };
1953
+ export declare enum CcpEntitlementStatus {
1954
+ Active = "ACTIVE",
1955
+ Inactive = "INACTIVE"
1956
+ }
1957
+ export declare type CcpEntitlementTemplate = {
1958
+ __typename?: 'CcpEntitlementTemplate';
1959
+ key?: Maybe<Scalars['String']>;
1960
+ version?: Maybe<Scalars['Int']>;
1961
+ data?: Maybe<Scalars['String']>;
1962
+ provisionedBy?: Maybe<Scalars['String']>;
1963
+ };
1964
+ export declare type CcpMapEntry = {
1965
+ __typename?: 'CcpMapEntry';
1966
+ key?: Maybe<Scalars['String']>;
1967
+ value?: Maybe<Scalars['String']>;
1968
+ };
1969
+ export declare type CcpOrder = Node & {
1970
+ __typename?: 'CcpOrder';
1971
+ id: Scalars['ID'];
1972
+ itemId?: Maybe<Scalars['String']>;
1973
+ };
1974
+ export declare type CcpPricingPlan = Node & {
1975
+ __typename?: 'CcpPricingPlan';
1976
+ id: Scalars['ID'];
1977
+ };
1978
+ export declare type CcpPromotion = {
1979
+ __typename?: 'CcpPromotion';
1980
+ id?: Maybe<Scalars['ID']>;
1981
+ };
1982
+ export declare type CcpPromotionDefinition = {
1983
+ __typename?: 'CcpPromotionDefinition';
1984
+ promotionId?: Maybe<Scalars['ID']>;
1985
+ promotionCode?: Maybe<Scalars['String']>;
1986
+ customisedValues?: Maybe<CcpCustomisedValues>;
1987
+ };
1988
+ export declare type CcpPromotionInstance = {
1989
+ __typename?: 'CcpPromotionInstance';
1990
+ promotionInstanceId?: Maybe<Scalars['ID']>;
1991
+ promotionDefinition?: Maybe<CcpPromotionDefinition>;
1992
+ };
1993
+ export declare type CcpQueryApi = {
1994
+ __typename?: 'CcpQueryApi';
1995
+ entitlement?: Maybe<CcpEntitlement>;
1996
+ };
1997
+ export declare type CcpQueryApiEntitlementArgs = {
1998
+ id: Scalars['ID'];
1999
+ };
2000
+ export declare type CcpSubscriptionSchedule = {
2001
+ __typename?: 'CcpSubscriptionSchedule';
2002
+ nextChangeTimestamp?: Maybe<Scalars['Float']>;
2003
+ subscriptionScheduleAction?: Maybe<CcpSubscriptionScheduleAction>;
2004
+ offeringId?: Maybe<Scalars['ID']>;
2005
+ pricingPlanId?: Maybe<Scalars['ID']>;
2006
+ chargeQuantities?: Maybe<Array<CcpChargeQuantity>>;
2007
+ promotionIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
2008
+ promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
2009
+ trial?: Maybe<CcpTrial>;
2010
+ transactionAccountId?: Maybe<Scalars['ID']>;
2011
+ invoiceGroupId?: Maybe<Scalars['ID']>;
2012
+ orderItemId?: Maybe<Scalars['ID']>;
2013
+ };
2014
+ export declare enum CcpSubscriptionScheduleAction {
2015
+ Update = "UPDATE",
2016
+ Cancel = "CANCEL"
2017
+ }
2018
+ export declare enum CcpSubscriptionStatus {
2019
+ Processing = "PROCESSING",
2020
+ Active = "ACTIVE",
2021
+ Cancelled = "CANCELLED"
2022
+ }
2023
+ export declare type CcpSubscriptionV2 = {
2024
+ __typename?: 'CcpSubscriptionV2';
2025
+ id: Scalars['ID'];
2026
+ orderItemId?: Maybe<Scalars['ID']>;
2027
+ entitlementId?: Maybe<Scalars['ID']>;
2028
+ version?: Maybe<Scalars['Int']>;
2029
+ endTimestamp?: Maybe<Scalars['Float']>;
2030
+ accountDetails?: Maybe<CcpAccountDetails>;
2031
+ chargeDetails?: Maybe<CcpChargeDetails>;
2032
+ trial?: Maybe<CcpTrial>;
2033
+ billingPeriodDetails?: Maybe<CcpBillingPeriodDetails>;
2034
+ metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
2035
+ scheduledChanges?: Maybe<CcpSubscriptionSchedule>;
2036
+ status?: Maybe<CcpSubscriptionStatus>;
2037
+ startTimestamp?: Maybe<Scalars['Float']>;
2038
+ };
2039
+ export declare type CcpTransactionAccount = Node & {
2040
+ __typename?: 'CcpTransactionAccount';
2041
+ id: Scalars['ID'];
2042
+ billingAdmins?: Maybe<Array<Maybe<Scalars['ID']>>>;
2043
+ };
2044
+ export declare type CcpTrial = {
2045
+ __typename?: 'CcpTrial';
2046
+ startTimestamp?: Maybe<Scalars['Float']>;
2047
+ endTimestamp?: Maybe<Scalars['Float']>;
2048
+ pricingPlanId?: Maybe<Scalars['ID']>;
2049
+ offeringId?: Maybe<Scalars['ID']>;
2050
+ };
1867
2051
  export declare type CheckConsentPermissionByOAuthClientIdInput = {
1868
2052
  cloudId: Scalars['ID'];
1869
2053
  userId: Scalars['ID'];
@@ -8450,6 +8634,10 @@ export declare enum GrantCheckProduct {
8450
8634
  }
8451
8635
  export declare type Graph = {
8452
8636
  __typename?: 'Graph';
8637
+ parentDocumentHasChildDocument?: Maybe<GraphJiraDocumentConnection>;
8638
+ parentDocumentHasChildDocumentInverse?: Maybe<GraphJiraDocumentConnection>;
8639
+ parentDocumentHasChildDocumentRelationship?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
8640
+ parentDocumentHasChildDocumentRelationshipInverse?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
8453
8641
  projectAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
8454
8642
  projectAssociatedDeployment?: Maybe<GraphJiraDeploymentConnection>;
8455
8643
  issueAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
@@ -8461,6 +8649,26 @@ export declare type Graph = {
8461
8649
  sprintRetrospectivePageRelationship?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
8462
8650
  sprintRetrospectivePageRelationshipInverse?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
8463
8651
  };
8652
+ export declare type GraphParentDocumentHasChildDocumentArgs = {
8653
+ after?: Maybe<Scalars['String']>;
8654
+ first?: Maybe<Scalars['Int']>;
8655
+ from: Scalars['ID'];
8656
+ };
8657
+ export declare type GraphParentDocumentHasChildDocumentInverseArgs = {
8658
+ after?: Maybe<Scalars['String']>;
8659
+ first?: Maybe<Scalars['Int']>;
8660
+ to: Scalars['ID'];
8661
+ };
8662
+ export declare type GraphParentDocumentHasChildDocumentRelationshipArgs = {
8663
+ after?: Maybe<Scalars['String']>;
8664
+ first?: Maybe<Scalars['Int']>;
8665
+ from: Scalars['ID'];
8666
+ };
8667
+ export declare type GraphParentDocumentHasChildDocumentRelationshipInverseArgs = {
8668
+ after?: Maybe<Scalars['String']>;
8669
+ first?: Maybe<Scalars['Int']>;
8670
+ to: Scalars['ID'];
8671
+ };
8464
8672
  export declare type GraphProjectAssociatedPrArgs = {
8465
8673
  after?: Maybe<Scalars['String']>;
8466
8674
  first?: Maybe<Scalars['Int']>;
@@ -8532,6 +8740,12 @@ export declare type GraphCreateIssueAssociatedPrInput = {
8532
8740
  to: Scalars['ID'];
8533
8741
  updatedAt?: Maybe<Scalars['DateTime']>;
8534
8742
  };
8743
+ export declare type GraphCreateParentDocumentHasChildDocumentInput = {
8744
+ from: Scalars['ID'];
8745
+ sequenceNumber?: Maybe<Scalars['Long']>;
8746
+ to: Scalars['ID'];
8747
+ updatedAt?: Maybe<Scalars['DateTime']>;
8748
+ };
8535
8749
  export declare type GraphCreateSprintRetrospectivePageInput = {
8536
8750
  from: Scalars['ID'];
8537
8751
  sequenceNumber?: Maybe<Scalars['Long']>;
@@ -8575,6 +8789,21 @@ export declare type GraphJiraDeploymentEdge = {
8575
8789
  cursor?: Maybe<Scalars['String']>;
8576
8790
  node: GraphJiraDeployment;
8577
8791
  };
8792
+ export declare type GraphJiraDocument = Node & {
8793
+ __typename?: 'GraphJiraDocument';
8794
+ id: Scalars['ID'];
8795
+ document?: Maybe<DevOpsDocument>;
8796
+ };
8797
+ export declare type GraphJiraDocumentConnection = {
8798
+ __typename?: 'GraphJiraDocumentConnection';
8799
+ edges: Array<Maybe<GraphJiraDocumentEdge>>;
8800
+ pageInfo: PageInfo;
8801
+ };
8802
+ export declare type GraphJiraDocumentEdge = {
8803
+ __typename?: 'GraphJiraDocumentEdge';
8804
+ cursor?: Maybe<Scalars['String']>;
8805
+ node: GraphJiraDocument;
8806
+ };
8578
8807
  export declare type GraphJiraIssue = Node & {
8579
8808
  __typename?: 'GraphJiraIssue';
8580
8809
  id: Scalars['ID'];
@@ -8629,6 +8858,29 @@ export declare type GraphMutationCreateIssueAssociatedPrArgs = {
8629
8858
  export declare type GraphMutationCreateSprintRetrospectivePageArgs = {
8630
8859
  input: GraphCreateSprintRetrospectivePageInput;
8631
8860
  };
8861
+ export declare type GraphParentDocumentHasChildDocumentPayload = Payload & {
8862
+ __typename?: 'GraphParentDocumentHasChildDocumentPayload';
8863
+ errors?: Maybe<Array<MutationError>>;
8864
+ parentDocumentHasChildDocumentRelationship: Array<Maybe<GraphParentDocumentHasChildDocumentRelationship>>;
8865
+ success: Scalars['Boolean'];
8866
+ };
8867
+ export declare type GraphParentDocumentHasChildDocumentRelationship = Node & {
8868
+ __typename?: 'GraphParentDocumentHasChildDocumentRelationship';
8869
+ from: GraphJiraDocument;
8870
+ id: Scalars['ID'];
8871
+ lastUpdated: Scalars['DateTime'];
8872
+ to: GraphJiraDocument;
8873
+ };
8874
+ export declare type GraphParentDocumentHasChildDocumentRelationshipConnection = {
8875
+ __typename?: 'GraphParentDocumentHasChildDocumentRelationshipConnection';
8876
+ edges: Array<Maybe<GraphParentDocumentHasChildDocumentRelationshipEdge>>;
8877
+ pageInfo: PageInfo;
8878
+ };
8879
+ export declare type GraphParentDocumentHasChildDocumentRelationshipEdge = {
8880
+ __typename?: 'GraphParentDocumentHasChildDocumentRelationshipEdge';
8881
+ cursor?: Maybe<Scalars['String']>;
8882
+ node: GraphParentDocumentHasChildDocumentRelationship;
8883
+ };
8632
8884
  export declare type GraphSprintRetrospectivePagePayload = Payload & {
8633
8885
  __typename?: 'GraphSprintRetrospectivePagePayload';
8634
8886
  errors?: Maybe<Array<MutationError>>;
@@ -8791,7 +9043,8 @@ export declare type HelpCenterTopicItemInput = {
8791
9043
  };
8792
9044
  export declare type HelpCenterTopicResult = HelpCenterTopic | QueryError;
8793
9045
  export declare enum HelpCenterType {
8794
- Advanced = "ADVANCED"
9046
+ Advanced = "ADVANCED",
9047
+ Basic = "BASIC"
8795
9048
  }
8796
9049
  export declare type HelpCenterUpdateTopicInput = {
8797
9050
  productName: Scalars['String'];
@@ -9144,6 +9397,10 @@ export declare type IntervalFilter = {
9144
9397
  start: Scalars['String'];
9145
9398
  end: Scalars['String'];
9146
9399
  };
9400
+ export declare type InvocationMetrics = {
9401
+ __typename?: 'InvocationMetrics';
9402
+ appTimeMs?: Maybe<Scalars['Float']>;
9403
+ };
9147
9404
  export declare type InvocationResponsePayload = {
9148
9405
  __typename?: 'InvocationResponsePayload';
9149
9406
  body: Scalars['JSON'];
@@ -9186,6 +9443,7 @@ export declare type InvokeExtensionResponse = Payload & {
9186
9443
  response?: Maybe<InvocationResponsePayload>;
9187
9444
  externalAuth?: Maybe<Array<Maybe<ExternalAuthProvider>>>;
9188
9445
  contextToken?: Maybe<ForgeContextToken>;
9446
+ metrics?: Maybe<InvocationMetrics>;
9189
9447
  };
9190
9448
  export declare type InvokePolarisObjectInput = {
9191
9449
  project: Scalars['ID'];
@@ -9773,6 +10031,41 @@ export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldCon
9773
10031
  fieldConfig?: Maybe<JiraFieldConfig>;
9774
10032
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
9775
10033
  };
10034
+ export declare type JiraBulkEditField = {
10035
+ __typename?: 'JiraBulkEditField';
10036
+ field?: Maybe<JiraIssueField>;
10037
+ bulkEditMultiSelectFieldOptions?: Maybe<JiraBulkEditMultiSelectFieldOptions>;
10038
+ unavailableMessage?: Maybe<Scalars['String']>;
10039
+ };
10040
+ export declare type JiraBulkEditFieldsConnection = HasTotal & HasPageInfo & {
10041
+ __typename?: 'JiraBulkEditFieldsConnection';
10042
+ totalCount?: Maybe<Scalars['Int']>;
10043
+ pageInfo: PageInfo;
10044
+ edges?: Maybe<Array<Maybe<JiraBulkEditFieldsEdge>>>;
10045
+ };
10046
+ export declare type JiraBulkEditFieldsEdge = {
10047
+ __typename?: 'JiraBulkEditFieldsEdge';
10048
+ node?: Maybe<JiraBulkEditField>;
10049
+ cursor: Scalars['String'];
10050
+ };
10051
+ export declare enum JiraBulkEditMultiSelectFieldOptions {
10052
+ Add = "ADD",
10053
+ Remove = "REMOVE",
10054
+ Replace = "REPLACE",
10055
+ RemoveAll = "REMOVE_ALL"
10056
+ }
10057
+ export declare type JiraBulkEditResponse = {
10058
+ __typename?: 'JiraBulkEditResponse';
10059
+ totalIssues?: Maybe<Scalars['Int']>;
10060
+ bulkEditFields?: Maybe<JiraBulkEditFieldsConnection>;
10061
+ mayDisableNotifications?: Maybe<Scalars['Boolean']>;
10062
+ };
10063
+ export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
10064
+ first?: Maybe<Scalars['Int']>;
10065
+ after?: Maybe<Scalars['String']>;
10066
+ last?: Maybe<Scalars['Int']>;
10067
+ before?: Maybe<Scalars['String']>;
10068
+ };
9776
10069
  export declare type JiraCcMessage = {
9777
10070
  role: Scalars['String'];
9778
10071
  content: Scalars['String'];
@@ -12287,6 +12580,11 @@ export declare type JiraJqlOptionFieldValueEdge = {
12287
12580
  node?: Maybe<JiraJqlOptionFieldValue>;
12288
12581
  cursor: Scalars['String'];
12289
12582
  };
12583
+ export declare type JiraJqlPlainTextFieldValue = JiraJqlFieldValue & {
12584
+ __typename?: 'JiraJqlPlainTextFieldValue';
12585
+ jqlTerm: Scalars['String'];
12586
+ displayName: Scalars['String'];
12587
+ };
12290
12588
  export declare type JiraJqlPriorityFieldValue = JiraJqlFieldValue & {
12291
12589
  __typename?: 'JiraJqlPriorityFieldValue';
12292
12590
  jqlTerm: Scalars['String'];
@@ -13495,6 +13793,7 @@ export declare type JiraProject = Node & {
13495
13793
  navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
13496
13794
  action?: Maybe<JiraProjectAction>;
13497
13795
  virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
13796
+ intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
13498
13797
  isFavourite?: Maybe<Scalars['Boolean']>;
13499
13798
  favouriteValue?: Maybe<JiraFavouriteValue>;
13500
13799
  lead?: Maybe<User>;
@@ -13949,6 +14248,7 @@ export declare type JiraQuery = {
13949
14248
  applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
13950
14249
  userSegmentation?: Maybe<JiraUserSegmentation>;
13951
14250
  first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
14251
+ jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
13952
14252
  allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
13953
14253
  jiraProject?: Maybe<JiraProject>;
13954
14254
  allJiraProjects?: Maybe<JiraProjectConnection>;
@@ -14039,6 +14339,9 @@ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
14039
14339
  keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
14040
14340
  tags?: Maybe<Array<Maybe<Scalars['String']>>>;
14041
14341
  };
14342
+ export declare type JiraQueryJiraBulkEditFieldsArgs = {
14343
+ issueIds: Array<Scalars['ID']>;
14344
+ };
14042
14345
  export declare type JiraQueryAllJiraProjectTypesArgs = {
14043
14346
  cloudId: Scalars['ID'];
14044
14347
  first?: Maybe<Scalars['Int']>;
@@ -18020,8 +18323,19 @@ export declare type NewSplitIssueResponse = {
18020
18323
  id: Scalars['ID'];
18021
18324
  key: Scalars['String'];
18022
18325
  };
18326
+ export declare enum NlpErrorState {
18327
+ NoAnswer = "NO_ANSWER",
18328
+ SubjectiveQuery = "SUBJECTIVE_QUERY",
18329
+ AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS"
18330
+ }
18023
18331
  export declare type NlpSearchResponse = {
18024
18332
  __typename?: 'NlpSearchResponse';
18333
+ nlpResults?: Maybe<Array<NlpSearchResult>>;
18334
+ uniqueSources?: Maybe<Array<NlpSource>>;
18335
+ errorState?: Maybe<NlpErrorState>;
18336
+ };
18337
+ export declare type NlpSearchResult = {
18338
+ __typename?: 'NlpSearchResult';
18025
18339
  nlpResult?: Maybe<Scalars['String']>;
18026
18340
  sources?: Maybe<Array<NlpSource>>;
18027
18341
  };
@@ -19732,6 +20046,7 @@ export declare type Query = {
19732
20046
  smarts?: Maybe<SmartsQueryApi>;
19733
20047
  jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
19734
20048
  appRecommendations?: Maybe<AppRecQuery>;
20049
+ ccp?: Maybe<CcpQueryApi>;
19735
20050
  townsquare?: Maybe<TownsquareQueryApi>;
19736
20051
  devOps?: Maybe<DevOps>;
19737
20052
  jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
@@ -19845,7 +20160,7 @@ export declare type Query = {
19845
20160
  jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
19846
20161
  oauthClients?: Maybe<OAuthClientsQuery>;
19847
20162
  helpCenter?: Maybe<HelpCenterQueryApi>;
19848
- nlpSearch?: Maybe<Array<NlpSearchResponse>>;
20163
+ nlpSearch?: Maybe<NlpSearchResponse>;
19849
20164
  };
19850
20165
  export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
19851
20166
  id: Scalars['ID'];
@@ -20263,6 +20578,7 @@ export declare enum RateLimitingCurrency {
20263
20578
  TrelloCurrency = "TRELLO_CURRENCY",
20264
20579
  DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
20265
20580
  DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
20581
+ NaturalLanguageToJqlCurrency = "NATURAL_LANGUAGE_TO_JQL_CURRENCY",
20266
20582
  TeamsCurrency = "TEAMS_CURRENCY",
20267
20583
  TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
20268
20584
  TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
@@ -21901,6 +22217,7 @@ export declare enum ShepherdAlertTemplateType {
21901
22217
  UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
21902
22218
  UpdatedPolicy = "UPDATED_POLICY",
21903
22219
  UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
22220
+ UserAddedToBeacon = "USER_ADDED_TO_BEACON",
21904
22221
  UserGrantedRole = "USER_GRANTED_ROLE",
21905
22222
  UserRevokedRole = "USER_REVOKED_ROLE",
21906
22223
  VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
@@ -23324,20 +23641,24 @@ export declare type ToolchainContainersArgs = {
23324
23641
  export declare type ToolchainSyncStatusArgs = {
23325
23642
  cloudId: Scalars['ID'];
23326
23643
  providerId: Scalars['String'];
23644
+ jiraProjectId: Scalars['ID'];
23327
23645
  containerId: Scalars['ID'];
23328
23646
  };
23329
23647
  export declare type ToolchainAssociateContainerInput = {
23330
- cloudId: Scalars['ID'];
23331
- providerId: Scalars['ID'];
23332
23648
  jiraProjectId: Scalars['ID'];
23333
23649
  workspaceId?: Maybe<Scalars['ID']>;
23334
23650
  containerId: Scalars['ID'];
23335
23651
  };
23336
- export declare type ToolchainAssociateContainerPayload = Payload & {
23337
- __typename?: 'ToolchainAssociateContainerPayload';
23652
+ export declare type ToolchainAssociateContainersInput = {
23653
+ cloudId: Scalars['ID'];
23654
+ providerId: Scalars['ID'];
23655
+ associations: Array<ToolchainAssociateContainerInput>;
23656
+ };
23657
+ export declare type ToolchainAssociateContainersPayload = Payload & {
23658
+ __typename?: 'ToolchainAssociateContainersPayload';
23338
23659
  success: Scalars['Boolean'];
23339
23660
  errors?: Maybe<Array<MutationError>>;
23340
- container?: Maybe<ToolchainAssociatedContainer>;
23661
+ containers?: Maybe<Array<ToolchainAssociatedContainer>>;
23341
23662
  };
23342
23663
  export declare type ToolchainAssociatedContainer = DevOpsDocument;
23343
23664
  export declare type ToolchainContainer = Node & {
@@ -23370,27 +23691,30 @@ export declare type ToolchainCreateContainerPayload = Payload & {
23370
23691
  createdContainer?: Maybe<ToolchainContainer>;
23371
23692
  };
23372
23693
  export declare type ToolchainDisassociateContainerInput = {
23373
- cloudId: Scalars['ID'];
23374
- providerId: Scalars['ID'];
23375
23694
  jiraProjectId: Scalars['ID'];
23376
23695
  containerId: Scalars['ID'];
23377
23696
  };
23378
- export declare type ToolchainDisassociateContainerPayload = Payload & {
23379
- __typename?: 'ToolchainDisassociateContainerPayload';
23697
+ export declare type ToolchainDisassociateContainersInput = {
23698
+ cloudId: Scalars['ID'];
23699
+ providerId: Scalars['ID'];
23700
+ disassociations: Array<ToolchainDisassociateContainerInput>;
23701
+ };
23702
+ export declare type ToolchainDisassociateContainersPayload = Payload & {
23703
+ __typename?: 'ToolchainDisassociateContainersPayload';
23380
23704
  success: Scalars['Boolean'];
23381
23705
  errors?: Maybe<Array<MutationError>>;
23382
23706
  };
23383
23707
  export declare type ToolchainMutation = {
23384
23708
  __typename?: 'ToolchainMutation';
23385
- associateContainer?: Maybe<ToolchainAssociateContainerPayload>;
23386
- disassociateContainer?: Maybe<ToolchainDisassociateContainerPayload>;
23709
+ associateContainers?: Maybe<ToolchainAssociateContainersPayload>;
23710
+ disassociateContainers?: Maybe<ToolchainDisassociateContainersPayload>;
23387
23711
  createContainer?: Maybe<ToolchainCreateContainerPayload>;
23388
23712
  };
23389
- export declare type ToolchainMutationAssociateContainerArgs = {
23390
- input: ToolchainAssociateContainerInput;
23713
+ export declare type ToolchainMutationAssociateContainersArgs = {
23714
+ input: ToolchainAssociateContainersInput;
23391
23715
  };
23392
- export declare type ToolchainMutationDisassociateContainerArgs = {
23393
- input: ToolchainDisassociateContainerInput;
23716
+ export declare type ToolchainMutationDisassociateContainersArgs = {
23717
+ input: ToolchainDisassociateContainersInput;
23394
23718
  };
23395
23719
  export declare type ToolchainMutationCreateContainerArgs = {
23396
23720
  input: ToolchainCreateContainerInput;
@@ -23638,6 +23962,10 @@ export declare type TransitionFilter = {
23638
23962
  from: Scalars['String'];
23639
23963
  to: Scalars['String'];
23640
23964
  };
23965
+ export declare type TrelloAttachment = {
23966
+ __typename?: 'TrelloAttachment';
23967
+ objectId: Scalars['String'];
23968
+ };
23641
23969
  export declare type TrelloBoard = Node & {
23642
23970
  __typename?: 'TrelloBoard';
23643
23971
  closed: Scalars['Boolean'];
@@ -23654,7 +23982,7 @@ export declare type TrelloBoard = Node & {
23654
23982
  };
23655
23983
  export declare type TrelloBoardListsArgs = {
23656
23984
  after?: Maybe<Scalars['String']>;
23657
- filter?: Maybe<Scalars['String']>;
23985
+ filter?: Maybe<TrelloListFilterInput>;
23658
23986
  first?: Maybe<Scalars['Int']>;
23659
23987
  };
23660
23988
  export declare type TrelloBoardBackground = {
@@ -23718,13 +24046,17 @@ export declare type TrelloBoardViewer = {
23718
24046
  };
23719
24047
  export declare type TrelloCard = Node & {
23720
24048
  __typename?: 'TrelloCard';
24049
+ badges?: Maybe<TrelloCardBadges>;
23721
24050
  closed?: Maybe<Scalars['Boolean']>;
24051
+ cover?: Maybe<TrelloCardCover>;
23722
24052
  description?: Maybe<Scalars['String']>;
23723
24053
  due?: Maybe<TrelloCardDueInfo>;
23724
24054
  id: Scalars['ID'];
23725
24055
  isTemplate?: Maybe<Scalars['Boolean']>;
24056
+ labels?: Maybe<TrelloLabelConnection>;
23726
24057
  lastActivityAt?: Maybe<Scalars['DateTime']>;
23727
24058
  limits?: Maybe<TrelloCardLimits>;
24059
+ list?: Maybe<TrelloList>;
23728
24060
  location?: Maybe<TrelloCardLocation>;
23729
24061
  name?: Maybe<Scalars['String']>;
23730
24062
  objectId: Scalars['String'];
@@ -23737,21 +24069,101 @@ export declare type TrelloCard = Node & {
23737
24069
  stickers?: Maybe<TrelloStickerConnection>;
23738
24070
  url?: Maybe<Scalars['URL']>;
23739
24071
  };
24072
+ export declare type TrelloCardLabelsArgs = {
24073
+ after?: Maybe<Scalars['String']>;
24074
+ first?: Maybe<Scalars['Int']>;
24075
+ };
23740
24076
  export declare type TrelloCardStickersArgs = {
23741
24077
  after?: Maybe<Scalars['String']>;
23742
24078
  first?: Maybe<Scalars['Int']>;
23743
24079
  };
24080
+ export declare type TrelloCardAttachmentsByType = {
24081
+ __typename?: 'TrelloCardAttachmentsByType';
24082
+ trello?: Maybe<TrelloCardAttachmentsCount>;
24083
+ };
24084
+ export declare type TrelloCardAttachmentsCount = {
24085
+ __typename?: 'TrelloCardAttachmentsCount';
24086
+ board?: Maybe<Scalars['Int']>;
24087
+ card?: Maybe<Scalars['Int']>;
24088
+ };
24089
+ export declare type TrelloCardBadgeDueInfo = {
24090
+ __typename?: 'TrelloCardBadgeDueInfo';
24091
+ at?: Maybe<Scalars['DateTime']>;
24092
+ complete?: Maybe<Scalars['Boolean']>;
24093
+ };
24094
+ export declare type TrelloCardBadges = {
24095
+ __typename?: 'TrelloCardBadges';
24096
+ attachments?: Maybe<Scalars['Int']>;
24097
+ attachmentsByType?: Maybe<TrelloCardAttachmentsByType>;
24098
+ checkItems?: Maybe<Scalars['Int']>;
24099
+ checkItemsChecked?: Maybe<Scalars['Int']>;
24100
+ checkItemsEarliestDue?: Maybe<Scalars['DateTime']>;
24101
+ comments?: Maybe<Scalars['Int']>;
24102
+ description?: Maybe<Scalars['Boolean']>;
24103
+ due?: Maybe<TrelloCardBadgeDueInfo>;
24104
+ location?: Maybe<Scalars['Boolean']>;
24105
+ startedAt?: Maybe<Scalars['DateTime']>;
24106
+ viewer?: Maybe<TrelloCardViewer>;
24107
+ votes?: Maybe<Scalars['Int']>;
24108
+ };
24109
+ export declare type TrelloCardConnection = {
24110
+ __typename?: 'TrelloCardConnection';
24111
+ edges?: Maybe<Array<TrelloCardEdge>>;
24112
+ nodes?: Maybe<Array<TrelloCard>>;
24113
+ pageInfo: PageInfo;
24114
+ };
23744
24115
  export declare type TrelloCardCoordinates = {
23745
24116
  __typename?: 'TrelloCardCoordinates';
23746
24117
  latitude: Scalars['Float'];
23747
24118
  longitude: Scalars['Float'];
23748
24119
  };
24120
+ export declare type TrelloCardCover = {
24121
+ __typename?: 'TrelloCardCover';
24122
+ attachment?: Maybe<TrelloAttachment>;
24123
+ brightness?: Maybe<TrelloCardCoverBrightness>;
24124
+ color?: Maybe<TrelloCardCoverColor>;
24125
+ edgeColor?: Maybe<Scalars['String']>;
24126
+ plugin?: Maybe<TrelloPlugin>;
24127
+ previews?: Maybe<TrelloImagePreviewConnection>;
24128
+ sharedSourceUrl?: Maybe<Scalars['URL']>;
24129
+ size?: Maybe<TrelloCardCoverSize>;
24130
+ uploadedBackground?: Maybe<TrelloUploadedBackground>;
24131
+ };
24132
+ export declare type TrelloCardCoverPreviewsArgs = {
24133
+ after?: Maybe<Scalars['String']>;
24134
+ first?: Maybe<Scalars['Int']>;
24135
+ };
24136
+ export declare enum TrelloCardCoverBrightness {
24137
+ Dark = "DARK",
24138
+ Light = "LIGHT"
24139
+ }
24140
+ export declare enum TrelloCardCoverColor {
24141
+ Black = "BLACK",
24142
+ Blue = "BLUE",
24143
+ Green = "GREEN",
24144
+ Lime = "LIME",
24145
+ Orange = "ORANGE",
24146
+ Pink = "PINK",
24147
+ Purple = "PURPLE",
24148
+ Red = "RED",
24149
+ Sky = "SKY",
24150
+ Yellow = "YELLOW"
24151
+ }
24152
+ export declare enum TrelloCardCoverSize {
24153
+ Full = "FULL",
24154
+ Normal = "NORMAL"
24155
+ }
23749
24156
  export declare type TrelloCardDueInfo = {
23750
24157
  __typename?: 'TrelloCardDueInfo';
23751
24158
  at?: Maybe<Scalars['DateTime']>;
23752
24159
  complete?: Maybe<Scalars['Boolean']>;
23753
24160
  reminder?: Maybe<Scalars['Int']>;
23754
24161
  };
24162
+ export declare type TrelloCardEdge = {
24163
+ __typename?: 'TrelloCardEdge';
24164
+ cursor?: Maybe<Scalars['String']>;
24165
+ node?: Maybe<TrelloCard>;
24166
+ };
23755
24167
  export declare type TrelloCardLimit = {
23756
24168
  __typename?: 'TrelloCardLimit';
23757
24169
  perCard?: Maybe<TrelloLimitProps>;
@@ -23774,6 +24186,48 @@ export declare enum TrelloCardRole {
23774
24186
  Mirror = "MIRROR",
23775
24187
  Separator = "SEPARATOR"
23776
24188
  }
24189
+ export declare type TrelloCardViewer = {
24190
+ __typename?: 'TrelloCardViewer';
24191
+ subscribed?: Maybe<Scalars['Boolean']>;
24192
+ voted?: Maybe<Scalars['Boolean']>;
24193
+ };
24194
+ export declare type TrelloImagePreview = {
24195
+ __typename?: 'TrelloImagePreview';
24196
+ bytes?: Maybe<Scalars['Float']>;
24197
+ height?: Maybe<Scalars['Float']>;
24198
+ scaled?: Maybe<Scalars['Boolean']>;
24199
+ url?: Maybe<Scalars['URL']>;
24200
+ width?: Maybe<Scalars['Float']>;
24201
+ };
24202
+ export declare type TrelloImagePreviewConnection = {
24203
+ __typename?: 'TrelloImagePreviewConnection';
24204
+ edges?: Maybe<Array<TrelloImagePreviewEdge>>;
24205
+ nodes?: Maybe<Array<TrelloImagePreview>>;
24206
+ pageInfo: PageInfo;
24207
+ };
24208
+ export declare type TrelloImagePreviewEdge = {
24209
+ __typename?: 'TrelloImagePreviewEdge';
24210
+ cursor: Scalars['String'];
24211
+ node: TrelloImagePreview;
24212
+ };
24213
+ export declare type TrelloLabel = {
24214
+ __typename?: 'TrelloLabel';
24215
+ color?: Maybe<Scalars['String']>;
24216
+ name?: Maybe<Scalars['String']>;
24217
+ objectId: Scalars['ID'];
24218
+ uses?: Maybe<Scalars['Int']>;
24219
+ };
24220
+ export declare type TrelloLabelConnection = {
24221
+ __typename?: 'TrelloLabelConnection';
24222
+ edges?: Maybe<Array<TrelloLabelEdge>>;
24223
+ nodes?: Maybe<Array<TrelloLabel>>;
24224
+ pageInfo: PageInfo;
24225
+ };
24226
+ export declare type TrelloLabelEdge = {
24227
+ __typename?: 'TrelloLabelEdge';
24228
+ cursor: Scalars['String'];
24229
+ node: TrelloLabel;
24230
+ };
23777
24231
  export declare type TrelloLimitProps = {
23778
24232
  __typename?: 'TrelloLimitProps';
23779
24233
  count?: Maybe<Scalars['Int']>;
@@ -23784,16 +24238,25 @@ export declare type TrelloLimitProps = {
23784
24238
  export declare type TrelloList = Node & {
23785
24239
  __typename?: 'TrelloList';
23786
24240
  board?: Maybe<TrelloBoard>;
24241
+ cards?: Maybe<TrelloCardConnection>;
23787
24242
  closed: Scalars['Boolean'];
23788
24243
  creationMethod: Scalars['String'];
23789
24244
  id: Scalars['ID'];
23790
24245
  limits?: Maybe<TrelloListLimits>;
23791
24246
  name: Scalars['String'];
23792
24247
  objectId: Scalars['String'];
23793
- position: Scalars['Int'];
24248
+ position: Scalars['Float'];
23794
24249
  softLimit?: Maybe<Scalars['Int']>;
23795
24250
  viewer?: Maybe<TrelloListViewer>;
23796
24251
  };
24252
+ export declare type TrelloListCardsArgs = {
24253
+ after?: Maybe<Scalars['String']>;
24254
+ filter?: Maybe<TrelloListCardFilterInput>;
24255
+ first?: Maybe<Scalars['Int']>;
24256
+ };
24257
+ export declare type TrelloListCardFilterInput = {
24258
+ closed?: Maybe<Scalars['Boolean']>;
24259
+ };
23797
24260
  export declare type TrelloListCardLimits = {
23798
24261
  __typename?: 'TrelloListCardLimits';
23799
24262
  openPerList?: Maybe<TrelloLimitProps>;
@@ -23810,6 +24273,9 @@ export declare type TrelloListEdge = {
23810
24273
  cursor?: Maybe<Scalars['String']>;
23811
24274
  node?: Maybe<TrelloList>;
23812
24275
  };
24276
+ export declare type TrelloListFilterInput = {
24277
+ closed?: Maybe<Scalars['Boolean']>;
24278
+ };
23813
24279
  export declare type TrelloListLimits = {
23814
24280
  __typename?: 'TrelloListLimits';
23815
24281
  cards?: Maybe<TrelloListCardLimits>;
@@ -23841,6 +24307,10 @@ export declare type TrelloListViewer = {
23841
24307
  __typename?: 'TrelloListViewer';
23842
24308
  subscribed?: Maybe<Scalars['Boolean']>;
23843
24309
  };
24310
+ export declare type TrelloPlugin = {
24311
+ __typename?: 'TrelloPlugin';
24312
+ objectId: Scalars['ID'];
24313
+ };
23844
24314
  export declare type TrelloQueryApi = {
23845
24315
  __typename?: 'TrelloQueryApi';
23846
24316
  board?: Maybe<TrelloBoard>;
@@ -23942,6 +24412,10 @@ export declare type TrelloTemplateGalleryLanguage = {
23942
24412
  locale: Scalars['String'];
23943
24413
  localizedDescription: Scalars['String'];
23944
24414
  };
24415
+ export declare type TrelloUploadedBackground = {
24416
+ __typename?: 'TrelloUploadedBackground';
24417
+ objectId: Scalars['String'];
24418
+ };
23945
24419
  export declare type TrelloWorkspace = Node & {
23946
24420
  __typename?: 'TrelloWorkspace';
23947
24421
  displayName: Scalars['String'];
@@ -24784,6 +25258,29 @@ export declare type VirtualAgentIntentStatisticsProjection = {
24784
25258
  resolutionRate?: Maybe<Scalars['Float']>;
24785
25259
  averageCsat?: Maybe<Scalars['Float']>;
24786
25260
  };
25261
+ export declare type VirtualAgentIntentTemplate = Node & {
25262
+ __typename?: 'VirtualAgentIntentTemplate';
25263
+ id: Scalars['ID'];
25264
+ type: VirtualAgentIntentTemplateType;
25265
+ name: Scalars['String'];
25266
+ description?: Maybe<Scalars['String']>;
25267
+ questions?: Maybe<Array<Scalars['String']>>;
25268
+ };
25269
+ export declare type VirtualAgentIntentTemplateEdge = {
25270
+ __typename?: 'VirtualAgentIntentTemplateEdge';
25271
+ cursor: Scalars['String'];
25272
+ node?: Maybe<VirtualAgentIntentTemplate>;
25273
+ };
25274
+ export declare enum VirtualAgentIntentTemplateType {
25275
+ Discovered = "DISCOVERED",
25276
+ Shared = "SHARED"
25277
+ }
25278
+ export declare type VirtualAgentIntentTemplatesConnection = {
25279
+ __typename?: 'VirtualAgentIntentTemplatesConnection';
25280
+ edges?: Maybe<Array<VirtualAgentIntentTemplateEdge>>;
25281
+ nodes?: Maybe<Array<VirtualAgentIntentTemplate>>;
25282
+ pageInfo: PageInfo;
25283
+ };
24787
25284
  export declare type VirtualAgentJsmChatContext = {
24788
25285
  __typename?: 'VirtualAgentJSMChatContext';
24789
25286
  connectivityState: Scalars['String'];
@@ -24854,6 +25351,7 @@ export declare type VirtualAgentQueryApi = {
24854
25351
  virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
24855
25352
  intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
24856
25353
  validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
25354
+ intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
24857
25355
  };
24858
25356
  export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
24859
25357
  jiraProjectId: Scalars['ID'];
@@ -24867,6 +25365,11 @@ export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
24867
25365
  jiraProjectId: Scalars['ID'];
24868
25366
  requestTypeId: Scalars['String'];
24869
25367
  };
25368
+ export declare type VirtualAgentQueryApiIntentTemplatesByProjectIdArgs = {
25369
+ jiraProjectId: Scalars['ID'];
25370
+ first?: Maybe<Scalars['Int']>;
25371
+ after?: Maybe<Scalars['String']>;
25372
+ };
24870
25373
  export declare type VirtualAgentQueryError = {
24871
25374
  __typename?: 'VirtualAgentQueryError';
24872
25375
  id: Scalars['ID'];