@forge/cli-shared 3.11.3-next.4 → 3.12.0-experimental-5ec0ed7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -0
- package/out/apps/get-app-owner.d.ts +13 -0
- package/out/apps/get-app-owner.d.ts.map +1 -0
- package/out/apps/get-app-owner.js +44 -0
- package/out/apps/index.d.ts +1 -0
- package/out/apps/index.d.ts.map +1 -1
- package/out/apps/index.js +1 -0
- package/out/graphql/app-environment-graphql-client.d.ts.map +1 -1
- package/out/graphql/app-environment-graphql-client.js +1 -2
- package/out/graphql/graphql-types.d.ts +632 -21
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +75 -6
- package/out/service/feature-flag-service.d.ts +3 -0
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +7 -0
- package/out/shared/environment.d.ts +2 -0
- package/out/shared/environment.d.ts.map +1 -1
- package/out/shared/environment.js +5 -3
- package/out/ui/text.d.ts +44 -28
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +57 -37
- package/package.json +4 -3
|
@@ -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,188 @@ 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
|
+
billingAnchorTimestamp?: Maybe<Scalars['Float']>;
|
|
1890
|
+
nextBillingTimestamp?: Maybe<Scalars['Float']>;
|
|
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
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
1935
|
+
childrenIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1936
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
1937
|
+
order?: Maybe<CcpOrder>;
|
|
1938
|
+
relatesToEntitlements?: Maybe<Array<Maybe<CcpEntitlementRelationship>>>;
|
|
1939
|
+
relatesFromEntitlements?: Maybe<Array<Maybe<CcpEntitlementRelationship>>>;
|
|
1940
|
+
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']>;
|
|
1941
|
+
createdAt?: Maybe<Scalars['Float']>;
|
|
1942
|
+
updatedAt?: Maybe<Scalars['Float']>;
|
|
1943
|
+
subscriptionV2?: Maybe<CcpSubscriptionV2>;
|
|
1944
|
+
context?: Maybe<CcpContext>;
|
|
1945
|
+
};
|
|
1946
|
+
export declare type CcpEntitlementRelationship = {
|
|
1947
|
+
__typename?: 'CcpEntitlementRelationship';
|
|
1948
|
+
entitlementId?: Maybe<Scalars['ID']>;
|
|
1949
|
+
relationshipType?: Maybe<Scalars['String']>;
|
|
1950
|
+
relationshipId?: Maybe<Scalars['ID']>;
|
|
1951
|
+
};
|
|
1952
|
+
export declare enum CcpEntitlementStatus {
|
|
1953
|
+
Active = "ACTIVE",
|
|
1954
|
+
Inactive = "INACTIVE"
|
|
1955
|
+
}
|
|
1956
|
+
export declare type CcpEntitlementTemplate = {
|
|
1957
|
+
__typename?: 'CcpEntitlementTemplate';
|
|
1958
|
+
key?: Maybe<Scalars['String']>;
|
|
1959
|
+
version?: Maybe<Scalars['Int']>;
|
|
1960
|
+
data?: Maybe<Scalars['String']>;
|
|
1961
|
+
provisionedBy?: Maybe<Scalars['String']>;
|
|
1962
|
+
};
|
|
1963
|
+
export declare type CcpMapEntry = {
|
|
1964
|
+
__typename?: 'CcpMapEntry';
|
|
1965
|
+
key?: Maybe<Scalars['String']>;
|
|
1966
|
+
value?: Maybe<Scalars['String']>;
|
|
1967
|
+
};
|
|
1968
|
+
export declare type CcpOrder = Node & {
|
|
1969
|
+
__typename?: 'CcpOrder';
|
|
1970
|
+
id: Scalars['ID'];
|
|
1971
|
+
itemId?: Maybe<Scalars['String']>;
|
|
1972
|
+
};
|
|
1973
|
+
export declare type CcpPricingPlan = Node & {
|
|
1974
|
+
__typename?: 'CcpPricingPlan';
|
|
1975
|
+
id: Scalars['ID'];
|
|
1976
|
+
};
|
|
1977
|
+
export declare type CcpPromotion = {
|
|
1978
|
+
__typename?: 'CcpPromotion';
|
|
1979
|
+
id?: Maybe<Scalars['ID']>;
|
|
1980
|
+
};
|
|
1981
|
+
export declare type CcpPromotionDefinition = {
|
|
1982
|
+
__typename?: 'CcpPromotionDefinition';
|
|
1983
|
+
promotionId?: Maybe<Scalars['ID']>;
|
|
1984
|
+
promotionCode?: Maybe<Scalars['String']>;
|
|
1985
|
+
customisedValues?: Maybe<CcpCustomisedValues>;
|
|
1986
|
+
};
|
|
1987
|
+
export declare type CcpPromotionInstance = {
|
|
1988
|
+
__typename?: 'CcpPromotionInstance';
|
|
1989
|
+
promotionInstanceId?: Maybe<Scalars['ID']>;
|
|
1990
|
+
promotionDefinition?: Maybe<CcpPromotionDefinition>;
|
|
1991
|
+
};
|
|
1992
|
+
export declare type CcpQueryApi = {
|
|
1993
|
+
__typename?: 'CcpQueryApi';
|
|
1994
|
+
entitlement?: Maybe<CcpEntitlement>;
|
|
1995
|
+
};
|
|
1996
|
+
export declare type CcpQueryApiEntitlementArgs = {
|
|
1997
|
+
id: Scalars['ID'];
|
|
1998
|
+
};
|
|
1999
|
+
export declare type CcpSubscriptionSchedule = {
|
|
2000
|
+
__typename?: 'CcpSubscriptionSchedule';
|
|
2001
|
+
nextChangeTimestamp?: Maybe<Scalars['Float']>;
|
|
2002
|
+
subscriptionScheduleAction?: Maybe<CcpSubscriptionScheduleAction>;
|
|
2003
|
+
offeringId?: Maybe<Scalars['ID']>;
|
|
2004
|
+
pricingPlanId?: Maybe<Scalars['ID']>;
|
|
2005
|
+
chargeQuantities?: Maybe<Array<CcpChargeQuantity>>;
|
|
2006
|
+
promotionIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
2007
|
+
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
2008
|
+
trial?: Maybe<CcpTrial>;
|
|
2009
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
2010
|
+
invoiceGroupId?: Maybe<Scalars['ID']>;
|
|
2011
|
+
orderItemId?: Maybe<Scalars['ID']>;
|
|
2012
|
+
};
|
|
2013
|
+
export declare enum CcpSubscriptionScheduleAction {
|
|
2014
|
+
Update = "UPDATE",
|
|
2015
|
+
Cancel = "CANCEL"
|
|
2016
|
+
}
|
|
2017
|
+
export declare enum CcpSubscriptionStatus {
|
|
2018
|
+
Processing = "PROCESSING",
|
|
2019
|
+
Active = "ACTIVE",
|
|
2020
|
+
Cancelled = "CANCELLED"
|
|
2021
|
+
}
|
|
2022
|
+
export declare type CcpSubscriptionV2 = {
|
|
2023
|
+
__typename?: 'CcpSubscriptionV2';
|
|
2024
|
+
id: Scalars['ID'];
|
|
2025
|
+
orderItemId?: Maybe<Scalars['ID']>;
|
|
2026
|
+
entitlementId?: Maybe<Scalars['ID']>;
|
|
2027
|
+
version?: Maybe<Scalars['Int']>;
|
|
2028
|
+
endTimestamp?: Maybe<Scalars['Float']>;
|
|
2029
|
+
accountDetails?: Maybe<CcpAccountDetails>;
|
|
2030
|
+
chargeDetails?: Maybe<CcpChargeDetails>;
|
|
2031
|
+
trial?: Maybe<CcpTrial>;
|
|
2032
|
+
billingPeriodDetails?: Maybe<CcpBillingPeriodDetails>;
|
|
2033
|
+
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2034
|
+
subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
|
|
2035
|
+
status?: Maybe<CcpSubscriptionStatus>;
|
|
2036
|
+
startTimestamp?: Maybe<Scalars['Float']>;
|
|
2037
|
+
};
|
|
2038
|
+
export declare type CcpTransactionAccount = Node & {
|
|
2039
|
+
__typename?: 'CcpTransactionAccount';
|
|
2040
|
+
id: Scalars['ID'];
|
|
2041
|
+
billingAdmins?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
2042
|
+
};
|
|
2043
|
+
export declare type CcpTrial = {
|
|
2044
|
+
__typename?: 'CcpTrial';
|
|
2045
|
+
startTimestamp?: Maybe<Scalars['Float']>;
|
|
2046
|
+
endTimestamp?: Maybe<Scalars['Float']>;
|
|
2047
|
+
pricingPlanId?: Maybe<Scalars['ID']>;
|
|
2048
|
+
offeringId?: Maybe<Scalars['ID']>;
|
|
2049
|
+
};
|
|
1867
2050
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
1868
2051
|
cloudId: Scalars['ID'];
|
|
1869
2052
|
userId: Scalars['ID'];
|
|
@@ -5859,6 +6042,20 @@ export declare type CustomerServiceAttribute = {
|
|
|
5859
6042
|
__typename?: 'CustomerServiceAttribute';
|
|
5860
6043
|
id: Scalars['ID'];
|
|
5861
6044
|
name: Scalars['String'];
|
|
6045
|
+
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
6046
|
+
};
|
|
6047
|
+
export declare type CustomerServiceAttributeConfigMetadata = {
|
|
6048
|
+
__typename?: 'CustomerServiceAttributeConfigMetadata';
|
|
6049
|
+
position?: Maybe<Scalars['Int']>;
|
|
6050
|
+
};
|
|
6051
|
+
export declare type CustomerServiceAttributeConfigMetadataUpdateInput = {
|
|
6052
|
+
id: Scalars['ID'];
|
|
6053
|
+
position?: Maybe<Scalars['Int']>;
|
|
6054
|
+
};
|
|
6055
|
+
export declare type CustomerServiceAttributeConfigMetadataUpdatePayload = Payload & {
|
|
6056
|
+
__typename?: 'CustomerServiceAttributeConfigMetadataUpdatePayload';
|
|
6057
|
+
success: Scalars['Boolean'];
|
|
6058
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5862
6059
|
};
|
|
5863
6060
|
export declare type CustomerServiceAttributeCreateInput = {
|
|
5864
6061
|
name: Scalars['String'];
|
|
@@ -5892,6 +6089,7 @@ export declare type CustomerServiceAttributeValue = {
|
|
|
5892
6089
|
id: Scalars['ID'];
|
|
5893
6090
|
name: Scalars['String'];
|
|
5894
6091
|
value?: Maybe<Scalars['String']>;
|
|
6092
|
+
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
5895
6093
|
};
|
|
5896
6094
|
export declare type CustomerServiceAttributes = {
|
|
5897
6095
|
__typename?: 'CustomerServiceAttributes';
|
|
@@ -5934,11 +6132,13 @@ export declare type CustomerServiceMutationApi = {
|
|
|
5934
6132
|
createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
5935
6133
|
updateOrganizationAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
5936
6134
|
deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
6135
|
+
updateOrganizationAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
5937
6136
|
updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
5938
6137
|
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
5939
6138
|
createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
5940
6139
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
5941
6140
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
6141
|
+
updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
5942
6142
|
updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
5943
6143
|
};
|
|
5944
6144
|
export declare type CustomerServiceMutationApiCreateOrganizationArgs = {
|
|
@@ -5959,6 +6159,9 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeArgs =
|
|
|
5959
6159
|
export declare type CustomerServiceMutationApiDeleteOrganizationAttributeArgs = {
|
|
5960
6160
|
input: CustomerServiceAttributeDeleteInput;
|
|
5961
6161
|
};
|
|
6162
|
+
export declare type CustomerServiceMutationApiUpdateOrganizationAttributeConfigArgs = {
|
|
6163
|
+
input: CustomerServiceAttributeConfigMetadataUpdateInput;
|
|
6164
|
+
};
|
|
5962
6165
|
export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueArgs = {
|
|
5963
6166
|
input: CustomerServiceOrganizationUpdateAttributeInput;
|
|
5964
6167
|
};
|
|
@@ -5974,6 +6177,9 @@ export declare type CustomerServiceMutationApiUpdateIndividualAttributeArgs = {
|
|
|
5974
6177
|
export declare type CustomerServiceMutationApiDeleteIndividualAttributeArgs = {
|
|
5975
6178
|
input: CustomerServiceAttributeDeleteInput;
|
|
5976
6179
|
};
|
|
6180
|
+
export declare type CustomerServiceMutationApiUpdateIndividualAttributeConfigArgs = {
|
|
6181
|
+
input: CustomerServiceAttributeConfigMetadataUpdateInput;
|
|
6182
|
+
};
|
|
5977
6183
|
export declare type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs = {
|
|
5978
6184
|
input: CustomerServiceIndividualUpdateAttributeByNameInput;
|
|
5979
6185
|
};
|
|
@@ -7794,7 +8000,8 @@ export declare type EstimationConfig = {
|
|
|
7794
8000
|
export declare enum EstimationType {
|
|
7795
8001
|
StoryPoints = "STORY_POINTS",
|
|
7796
8002
|
OriginalEstimate = "ORIGINAL_ESTIMATE",
|
|
7797
|
-
IssueCount = "ISSUE_COUNT"
|
|
8003
|
+
IssueCount = "ISSUE_COUNT",
|
|
8004
|
+
CustomNumberField = "CUSTOM_NUMBER_FIELD"
|
|
7798
8005
|
}
|
|
7799
8006
|
export declare enum EventKnownAvIs {
|
|
7800
8007
|
AviJiraIssueCreated = "AVI_JIRA_ISSUE_CREATED",
|
|
@@ -8450,6 +8657,10 @@ export declare enum GrantCheckProduct {
|
|
|
8450
8657
|
}
|
|
8451
8658
|
export declare type Graph = {
|
|
8452
8659
|
__typename?: 'Graph';
|
|
8660
|
+
parentDocumentHasChildDocument?: Maybe<GraphJiraDocumentConnection>;
|
|
8661
|
+
parentDocumentHasChildDocumentInverse?: Maybe<GraphJiraDocumentConnection>;
|
|
8662
|
+
parentDocumentHasChildDocumentRelationship?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
|
|
8663
|
+
parentDocumentHasChildDocumentRelationshipInverse?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
|
|
8453
8664
|
projectAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
8454
8665
|
projectAssociatedDeployment?: Maybe<GraphJiraDeploymentConnection>;
|
|
8455
8666
|
issueAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
@@ -8461,6 +8672,26 @@ export declare type Graph = {
|
|
|
8461
8672
|
sprintRetrospectivePageRelationship?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
|
|
8462
8673
|
sprintRetrospectivePageRelationshipInverse?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
|
|
8463
8674
|
};
|
|
8675
|
+
export declare type GraphParentDocumentHasChildDocumentArgs = {
|
|
8676
|
+
after?: Maybe<Scalars['String']>;
|
|
8677
|
+
first?: Maybe<Scalars['Int']>;
|
|
8678
|
+
from: Scalars['ID'];
|
|
8679
|
+
};
|
|
8680
|
+
export declare type GraphParentDocumentHasChildDocumentInverseArgs = {
|
|
8681
|
+
after?: Maybe<Scalars['String']>;
|
|
8682
|
+
first?: Maybe<Scalars['Int']>;
|
|
8683
|
+
to: Scalars['ID'];
|
|
8684
|
+
};
|
|
8685
|
+
export declare type GraphParentDocumentHasChildDocumentRelationshipArgs = {
|
|
8686
|
+
after?: Maybe<Scalars['String']>;
|
|
8687
|
+
first?: Maybe<Scalars['Int']>;
|
|
8688
|
+
from: Scalars['ID'];
|
|
8689
|
+
};
|
|
8690
|
+
export declare type GraphParentDocumentHasChildDocumentRelationshipInverseArgs = {
|
|
8691
|
+
after?: Maybe<Scalars['String']>;
|
|
8692
|
+
first?: Maybe<Scalars['Int']>;
|
|
8693
|
+
to: Scalars['ID'];
|
|
8694
|
+
};
|
|
8464
8695
|
export declare type GraphProjectAssociatedPrArgs = {
|
|
8465
8696
|
after?: Maybe<Scalars['String']>;
|
|
8466
8697
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -8532,6 +8763,12 @@ export declare type GraphCreateIssueAssociatedPrInput = {
|
|
|
8532
8763
|
to: Scalars['ID'];
|
|
8533
8764
|
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
8534
8765
|
};
|
|
8766
|
+
export declare type GraphCreateParentDocumentHasChildDocumentInput = {
|
|
8767
|
+
from: Scalars['ID'];
|
|
8768
|
+
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
8769
|
+
to: Scalars['ID'];
|
|
8770
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
8771
|
+
};
|
|
8535
8772
|
export declare type GraphCreateSprintRetrospectivePageInput = {
|
|
8536
8773
|
from: Scalars['ID'];
|
|
8537
8774
|
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
@@ -8575,6 +8812,21 @@ export declare type GraphJiraDeploymentEdge = {
|
|
|
8575
8812
|
cursor?: Maybe<Scalars['String']>;
|
|
8576
8813
|
node: GraphJiraDeployment;
|
|
8577
8814
|
};
|
|
8815
|
+
export declare type GraphJiraDocument = Node & {
|
|
8816
|
+
__typename?: 'GraphJiraDocument';
|
|
8817
|
+
id: Scalars['ID'];
|
|
8818
|
+
document?: Maybe<DevOpsDocument>;
|
|
8819
|
+
};
|
|
8820
|
+
export declare type GraphJiraDocumentConnection = {
|
|
8821
|
+
__typename?: 'GraphJiraDocumentConnection';
|
|
8822
|
+
edges: Array<Maybe<GraphJiraDocumentEdge>>;
|
|
8823
|
+
pageInfo: PageInfo;
|
|
8824
|
+
};
|
|
8825
|
+
export declare type GraphJiraDocumentEdge = {
|
|
8826
|
+
__typename?: 'GraphJiraDocumentEdge';
|
|
8827
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8828
|
+
node: GraphJiraDocument;
|
|
8829
|
+
};
|
|
8578
8830
|
export declare type GraphJiraIssue = Node & {
|
|
8579
8831
|
__typename?: 'GraphJiraIssue';
|
|
8580
8832
|
id: Scalars['ID'];
|
|
@@ -8629,6 +8881,29 @@ export declare type GraphMutationCreateIssueAssociatedPrArgs = {
|
|
|
8629
8881
|
export declare type GraphMutationCreateSprintRetrospectivePageArgs = {
|
|
8630
8882
|
input: GraphCreateSprintRetrospectivePageInput;
|
|
8631
8883
|
};
|
|
8884
|
+
export declare type GraphParentDocumentHasChildDocumentPayload = Payload & {
|
|
8885
|
+
__typename?: 'GraphParentDocumentHasChildDocumentPayload';
|
|
8886
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8887
|
+
parentDocumentHasChildDocumentRelationship: Array<Maybe<GraphParentDocumentHasChildDocumentRelationship>>;
|
|
8888
|
+
success: Scalars['Boolean'];
|
|
8889
|
+
};
|
|
8890
|
+
export declare type GraphParentDocumentHasChildDocumentRelationship = Node & {
|
|
8891
|
+
__typename?: 'GraphParentDocumentHasChildDocumentRelationship';
|
|
8892
|
+
from: GraphJiraDocument;
|
|
8893
|
+
id: Scalars['ID'];
|
|
8894
|
+
lastUpdated: Scalars['DateTime'];
|
|
8895
|
+
to: GraphJiraDocument;
|
|
8896
|
+
};
|
|
8897
|
+
export declare type GraphParentDocumentHasChildDocumentRelationshipConnection = {
|
|
8898
|
+
__typename?: 'GraphParentDocumentHasChildDocumentRelationshipConnection';
|
|
8899
|
+
edges: Array<Maybe<GraphParentDocumentHasChildDocumentRelationshipEdge>>;
|
|
8900
|
+
pageInfo: PageInfo;
|
|
8901
|
+
};
|
|
8902
|
+
export declare type GraphParentDocumentHasChildDocumentRelationshipEdge = {
|
|
8903
|
+
__typename?: 'GraphParentDocumentHasChildDocumentRelationshipEdge';
|
|
8904
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8905
|
+
node: GraphParentDocumentHasChildDocumentRelationship;
|
|
8906
|
+
};
|
|
8632
8907
|
export declare type GraphSprintRetrospectivePagePayload = Payload & {
|
|
8633
8908
|
__typename?: 'GraphSprintRetrospectivePagePayload';
|
|
8634
8909
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -8791,7 +9066,8 @@ export declare type HelpCenterTopicItemInput = {
|
|
|
8791
9066
|
};
|
|
8792
9067
|
export declare type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
8793
9068
|
export declare enum HelpCenterType {
|
|
8794
|
-
Advanced = "ADVANCED"
|
|
9069
|
+
Advanced = "ADVANCED",
|
|
9070
|
+
Basic = "BASIC"
|
|
8795
9071
|
}
|
|
8796
9072
|
export declare type HelpCenterUpdateTopicInput = {
|
|
8797
9073
|
productName: Scalars['String'];
|
|
@@ -9144,6 +9420,10 @@ export declare type IntervalFilter = {
|
|
|
9144
9420
|
start: Scalars['String'];
|
|
9145
9421
|
end: Scalars['String'];
|
|
9146
9422
|
};
|
|
9423
|
+
export declare type InvocationMetrics = {
|
|
9424
|
+
__typename?: 'InvocationMetrics';
|
|
9425
|
+
appTimeMs?: Maybe<Scalars['Float']>;
|
|
9426
|
+
};
|
|
9147
9427
|
export declare type InvocationResponsePayload = {
|
|
9148
9428
|
__typename?: 'InvocationResponsePayload';
|
|
9149
9429
|
body: Scalars['JSON'];
|
|
@@ -9186,6 +9466,7 @@ export declare type InvokeExtensionResponse = Payload & {
|
|
|
9186
9466
|
response?: Maybe<InvocationResponsePayload>;
|
|
9187
9467
|
externalAuth?: Maybe<Array<Maybe<ExternalAuthProvider>>>;
|
|
9188
9468
|
contextToken?: Maybe<ForgeContextToken>;
|
|
9469
|
+
metrics?: Maybe<InvocationMetrics>;
|
|
9189
9470
|
};
|
|
9190
9471
|
export declare type InvokePolarisObjectInput = {
|
|
9191
9472
|
project: Scalars['ID'];
|
|
@@ -9516,6 +9797,10 @@ export declare type IssueDevOpsTestSummary = {
|
|
|
9516
9797
|
export declare type JiraAdf = {
|
|
9517
9798
|
__typename?: 'JiraADF';
|
|
9518
9799
|
json?: Maybe<Scalars['JSON']>;
|
|
9800
|
+
convertedPlainText?: Maybe<JiraAdfToConvertedPlainText>;
|
|
9801
|
+
};
|
|
9802
|
+
export declare type JiraAdfConvertedPlainTextArgs = {
|
|
9803
|
+
firstNCharacters?: Maybe<Scalars['Int']>;
|
|
9519
9804
|
};
|
|
9520
9805
|
export declare enum JiraActionType {
|
|
9521
9806
|
CreateProject = "CREATE_PROJECT",
|
|
@@ -9548,6 +9833,11 @@ export declare type JiraAddRelatedWorkToVersionPayload = Payload & {
|
|
|
9548
9833
|
relatedWorkEdge?: Maybe<JiraVersionRelatedWorkEdge>;
|
|
9549
9834
|
relatedWorkV2Edge?: Maybe<JiraVersionRelatedWorkV2Edge>;
|
|
9550
9835
|
};
|
|
9836
|
+
export declare type JiraAdfToConvertedPlainText = {
|
|
9837
|
+
__typename?: 'JiraAdfToConvertedPlainText';
|
|
9838
|
+
plainText?: Maybe<Scalars['String']>;
|
|
9839
|
+
isTruncated?: Maybe<Scalars['Boolean']>;
|
|
9840
|
+
};
|
|
9551
9841
|
export declare type JiraAffectedService = {
|
|
9552
9842
|
__typename?: 'JiraAffectedService';
|
|
9553
9843
|
serviceId: Scalars['ID'];
|
|
@@ -9773,6 +10063,41 @@ export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldCon
|
|
|
9773
10063
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9774
10064
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9775
10065
|
};
|
|
10066
|
+
export declare type JiraBulkEditField = {
|
|
10067
|
+
__typename?: 'JiraBulkEditField';
|
|
10068
|
+
field?: Maybe<JiraIssueField>;
|
|
10069
|
+
bulkEditMultiSelectFieldOptions?: Maybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
10070
|
+
unavailableMessage?: Maybe<Scalars['String']>;
|
|
10071
|
+
};
|
|
10072
|
+
export declare type JiraBulkEditFieldsConnection = HasTotal & HasPageInfo & {
|
|
10073
|
+
__typename?: 'JiraBulkEditFieldsConnection';
|
|
10074
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
10075
|
+
pageInfo: PageInfo;
|
|
10076
|
+
edges?: Maybe<Array<Maybe<JiraBulkEditFieldsEdge>>>;
|
|
10077
|
+
};
|
|
10078
|
+
export declare type JiraBulkEditFieldsEdge = {
|
|
10079
|
+
__typename?: 'JiraBulkEditFieldsEdge';
|
|
10080
|
+
node?: Maybe<JiraBulkEditField>;
|
|
10081
|
+
cursor: Scalars['String'];
|
|
10082
|
+
};
|
|
10083
|
+
export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
10084
|
+
Add = "ADD",
|
|
10085
|
+
Remove = "REMOVE",
|
|
10086
|
+
Replace = "REPLACE",
|
|
10087
|
+
RemoveAll = "REMOVE_ALL"
|
|
10088
|
+
}
|
|
10089
|
+
export declare type JiraBulkEditResponse = {
|
|
10090
|
+
__typename?: 'JiraBulkEditResponse';
|
|
10091
|
+
totalIssues?: Maybe<Scalars['Int']>;
|
|
10092
|
+
bulkEditFields?: Maybe<JiraBulkEditFieldsConnection>;
|
|
10093
|
+
mayDisableNotifications?: Maybe<Scalars['Boolean']>;
|
|
10094
|
+
};
|
|
10095
|
+
export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
10096
|
+
first?: Maybe<Scalars['Int']>;
|
|
10097
|
+
after?: Maybe<Scalars['String']>;
|
|
10098
|
+
last?: Maybe<Scalars['Int']>;
|
|
10099
|
+
before?: Maybe<Scalars['String']>;
|
|
10100
|
+
};
|
|
9776
10101
|
export declare type JiraCcMessage = {
|
|
9777
10102
|
role: Scalars['String'];
|
|
9778
10103
|
content: Scalars['String'];
|
|
@@ -12287,6 +12612,11 @@ export declare type JiraJqlOptionFieldValueEdge = {
|
|
|
12287
12612
|
node?: Maybe<JiraJqlOptionFieldValue>;
|
|
12288
12613
|
cursor: Scalars['String'];
|
|
12289
12614
|
};
|
|
12615
|
+
export declare type JiraJqlPlainTextFieldValue = JiraJqlFieldValue & {
|
|
12616
|
+
__typename?: 'JiraJqlPlainTextFieldValue';
|
|
12617
|
+
jqlTerm: Scalars['String'];
|
|
12618
|
+
displayName: Scalars['String'];
|
|
12619
|
+
};
|
|
12290
12620
|
export declare type JiraJqlPriorityFieldValue = JiraJqlFieldValue & {
|
|
12291
12621
|
__typename?: 'JiraJqlPriorityFieldValue';
|
|
12292
12622
|
jqlTerm: Scalars['String'];
|
|
@@ -12909,6 +13239,11 @@ export declare type JiraMutationUpdateProjectShortcutArgs = {
|
|
|
12909
13239
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
12910
13240
|
input: JiraDeleteShortcutInput;
|
|
12911
13241
|
};
|
|
13242
|
+
export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload = Payload & {
|
|
13243
|
+
__typename?: 'JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload';
|
|
13244
|
+
success: Scalars['Boolean'];
|
|
13245
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13246
|
+
};
|
|
12912
13247
|
export declare type JiraNaturalLanguageToJqlInput = {
|
|
12913
13248
|
naturalLanguageInput: Scalars['String'];
|
|
12914
13249
|
iteration?: Maybe<JiraIteration>;
|
|
@@ -13495,6 +13830,7 @@ export declare type JiraProject = Node & {
|
|
|
13495
13830
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
13496
13831
|
action?: Maybe<JiraProjectAction>;
|
|
13497
13832
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
13833
|
+
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
13498
13834
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
13499
13835
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
13500
13836
|
lead?: Maybe<User>;
|
|
@@ -13512,6 +13848,7 @@ export declare type JiraProject = Node & {
|
|
|
13512
13848
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
13513
13849
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
13514
13850
|
suggestedDriversForJiraVersion?: Maybe<JiraVersionDriverConnection>;
|
|
13851
|
+
suggestedApproversForJiraVersion?: Maybe<JiraVersionSuggestedApproverConnection>;
|
|
13515
13852
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13516
13853
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
13517
13854
|
};
|
|
@@ -13581,6 +13918,10 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
13581
13918
|
export declare type JiraProjectSuggestedDriversForJiraVersionArgs = {
|
|
13582
13919
|
searchText?: Maybe<Scalars['String']>;
|
|
13583
13920
|
};
|
|
13921
|
+
export declare type JiraProjectSuggestedApproversForJiraVersionArgs = {
|
|
13922
|
+
searchText?: Maybe<Scalars['String']>;
|
|
13923
|
+
excludedAccountIds?: Maybe<Array<Scalars['String']>>;
|
|
13924
|
+
};
|
|
13584
13925
|
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
13585
13926
|
first?: Maybe<Scalars['Int']>;
|
|
13586
13927
|
after?: Maybe<Scalars['String']>;
|
|
@@ -13949,6 +14290,7 @@ export declare type JiraQuery = {
|
|
|
13949
14290
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
13950
14291
|
userSegmentation?: Maybe<JiraUserSegmentation>;
|
|
13951
14292
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
14293
|
+
jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
|
|
13952
14294
|
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
13953
14295
|
jiraProject?: Maybe<JiraProject>;
|
|
13954
14296
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
@@ -13968,6 +14310,7 @@ export declare type JiraQuery = {
|
|
|
13968
14310
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13969
14311
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13970
14312
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
14313
|
+
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']>;
|
|
13971
14314
|
permission?: Maybe<JiraPermission>;
|
|
13972
14315
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
13973
14316
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -14039,6 +14382,9 @@ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
|
14039
14382
|
keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14040
14383
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14041
14384
|
};
|
|
14385
|
+
export declare type JiraQueryJiraBulkEditFieldsArgs = {
|
|
14386
|
+
issueIds: Array<Scalars['ID']>;
|
|
14387
|
+
};
|
|
14042
14388
|
export declare type JiraQueryAllJiraProjectTypesArgs = {
|
|
14043
14389
|
cloudId: Scalars['ID'];
|
|
14044
14390
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14138,6 +14484,9 @@ export declare type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
14138
14484
|
cloudId: Scalars['ID'];
|
|
14139
14485
|
input: JiraNaturalLanguageToJqlInput;
|
|
14140
14486
|
};
|
|
14487
|
+
export declare type JiraQueryIsNaturalLanguageSearchEnabledArgs = {
|
|
14488
|
+
cloudId: Scalars['ID'];
|
|
14489
|
+
};
|
|
14141
14490
|
export declare type JiraQueryPermissionArgs = {
|
|
14142
14491
|
cloudId: Scalars['ID'];
|
|
14143
14492
|
type: JiraPermissionType;
|
|
@@ -14962,6 +15311,7 @@ export declare type JiraServiceManagementCreateRequestTypeFromTemplateRequestTyp
|
|
|
14962
15311
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateResult = Payload & {
|
|
14963
15312
|
__typename?: 'JiraServiceManagementCreateRequestTypeFromTemplateResult';
|
|
14964
15313
|
clientMutationId: Scalars['String'];
|
|
15314
|
+
result?: Maybe<JiraServiceManagementRequestType>;
|
|
14965
15315
|
success: Scalars['Boolean'];
|
|
14966
15316
|
errors?: Maybe<Array<MutationError>>;
|
|
14967
15317
|
};
|
|
@@ -16128,6 +16478,7 @@ export declare type JiraUserPreferences = {
|
|
|
16128
16478
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
16129
16479
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
16130
16480
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
16481
|
+
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']>;
|
|
16131
16482
|
};
|
|
16132
16483
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
16133
16484
|
projectKey: Scalars['String'];
|
|
@@ -16136,6 +16487,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
16136
16487
|
__typename?: 'JiraUserPreferencesMutation';
|
|
16137
16488
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
16138
16489
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
16490
|
+
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
16139
16491
|
};
|
|
16140
16492
|
export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
16141
16493
|
searchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
@@ -16143,6 +16495,9 @@ export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
|
16143
16495
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
16144
16496
|
searchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
16145
16497
|
};
|
|
16498
|
+
export declare type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEnabledArgs = {
|
|
16499
|
+
isEnabled: Scalars['Boolean'];
|
|
16500
|
+
};
|
|
16146
16501
|
export declare type JiraUserSegmentation = {
|
|
16147
16502
|
__typename?: 'JiraUserSegmentation';
|
|
16148
16503
|
role?: Maybe<Scalars['String']>;
|
|
@@ -16488,6 +16843,16 @@ export declare enum JiraVersionStatus {
|
|
|
16488
16843
|
Unreleased = "UNRELEASED",
|
|
16489
16844
|
Archived = "ARCHIVED"
|
|
16490
16845
|
}
|
|
16846
|
+
export declare type JiraVersionSuggestedApproverConnection = {
|
|
16847
|
+
__typename?: 'JiraVersionSuggestedApproverConnection';
|
|
16848
|
+
pageInfo: PageInfo;
|
|
16849
|
+
edges?: Maybe<Array<Maybe<JiraVersionSuggestedApproverEdge>>>;
|
|
16850
|
+
};
|
|
16851
|
+
export declare type JiraVersionSuggestedApproverEdge = {
|
|
16852
|
+
__typename?: 'JiraVersionSuggestedApproverEdge';
|
|
16853
|
+
node?: Maybe<User>;
|
|
16854
|
+
cursor: Scalars['String'];
|
|
16855
|
+
};
|
|
16491
16856
|
export declare type JiraVersionUpdateMutationInput = {
|
|
16492
16857
|
id: Scalars['ID'];
|
|
16493
16858
|
name: Scalars['String'];
|
|
@@ -18020,8 +18385,19 @@ export declare type NewSplitIssueResponse = {
|
|
|
18020
18385
|
id: Scalars['ID'];
|
|
18021
18386
|
key: Scalars['String'];
|
|
18022
18387
|
};
|
|
18388
|
+
export declare enum NlpErrorState {
|
|
18389
|
+
NoAnswer = "NO_ANSWER",
|
|
18390
|
+
SubjectiveQuery = "SUBJECTIVE_QUERY",
|
|
18391
|
+
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS"
|
|
18392
|
+
}
|
|
18023
18393
|
export declare type NlpSearchResponse = {
|
|
18024
18394
|
__typename?: 'NlpSearchResponse';
|
|
18395
|
+
nlpResults?: Maybe<Array<NlpSearchResult>>;
|
|
18396
|
+
uniqueSources?: Maybe<Array<NlpSource>>;
|
|
18397
|
+
errorState?: Maybe<NlpErrorState>;
|
|
18398
|
+
};
|
|
18399
|
+
export declare type NlpSearchResult = {
|
|
18400
|
+
__typename?: 'NlpSearchResult';
|
|
18025
18401
|
nlpResult?: Maybe<Scalars['String']>;
|
|
18026
18402
|
sources?: Maybe<Array<NlpSource>>;
|
|
18027
18403
|
};
|
|
@@ -19732,6 +20108,7 @@ export declare type Query = {
|
|
|
19732
20108
|
smarts?: Maybe<SmartsQueryApi>;
|
|
19733
20109
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
19734
20110
|
appRecommendations?: Maybe<AppRecQuery>;
|
|
20111
|
+
ccp?: Maybe<CcpQueryApi>;
|
|
19735
20112
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
19736
20113
|
devOps?: Maybe<DevOps>;
|
|
19737
20114
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -19845,7 +20222,7 @@ export declare type Query = {
|
|
|
19845
20222
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
19846
20223
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
19847
20224
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
19848
|
-
nlpSearch?: Maybe<
|
|
20225
|
+
nlpSearch?: Maybe<NlpSearchResponse>;
|
|
19849
20226
|
};
|
|
19850
20227
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
19851
20228
|
id: Scalars['ID'];
|
|
@@ -20263,9 +20640,11 @@ export declare enum RateLimitingCurrency {
|
|
|
20263
20640
|
TrelloCurrency = "TRELLO_CURRENCY",
|
|
20264
20641
|
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
20265
20642
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
20643
|
+
NaturalLanguageToJqlCurrency = "NATURAL_LANGUAGE_TO_JQL_CURRENCY",
|
|
20266
20644
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
20267
20645
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
20268
20646
|
TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
|
|
20647
|
+
TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
|
|
20269
20648
|
PolarisCurrency = "POLARIS_CURRENCY",
|
|
20270
20649
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
20271
20650
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
@@ -21827,6 +22206,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
21827
22206
|
id: Scalars['ID'];
|
|
21828
22207
|
orgId?: Maybe<Scalars['ID']>;
|
|
21829
22208
|
status: ShepherdAlertStatus;
|
|
22209
|
+
statusUpdatedOn?: Maybe<Scalars['DateTime']>;
|
|
21830
22210
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
21831
22211
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
21832
22212
|
title: Scalars['String'];
|
|
@@ -21899,6 +22279,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
21899
22279
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
21900
22280
|
UpdatedPolicy = "UPDATED_POLICY",
|
|
21901
22281
|
UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
|
|
22282
|
+
UserAddedToBeacon = "USER_ADDED_TO_BEACON",
|
|
21902
22283
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
21903
22284
|
UserRevokedRole = "USER_REVOKED_ROLE",
|
|
21904
22285
|
VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
|
|
@@ -23153,6 +23534,7 @@ export declare type TeamQuery = {
|
|
|
23153
23534
|
__typename?: 'TeamQuery';
|
|
23154
23535
|
team?: Maybe<Team>;
|
|
23155
23536
|
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
23537
|
+
teamSearchV2?: Maybe<TeamSearchResultConnection>;
|
|
23156
23538
|
};
|
|
23157
23539
|
export declare type TeamQueryTeamArgs = {
|
|
23158
23540
|
id: Scalars['ID'];
|
|
@@ -23164,6 +23546,14 @@ export declare type TeamQueryTeamSearchArgs = {
|
|
|
23164
23546
|
after?: Maybe<Scalars['String']>;
|
|
23165
23547
|
sortBy?: Maybe<Array<Maybe<TeamSort>>>;
|
|
23166
23548
|
};
|
|
23549
|
+
export declare type TeamQueryTeamSearchV2Args = {
|
|
23550
|
+
organizationId: Scalars['ID'];
|
|
23551
|
+
siteId: Scalars['String'];
|
|
23552
|
+
filter?: Maybe<TeamSearchFilter>;
|
|
23553
|
+
first?: Maybe<Scalars['Int']>;
|
|
23554
|
+
after?: Maybe<Scalars['String']>;
|
|
23555
|
+
sortBy?: Maybe<Array<Maybe<TeamSort>>>;
|
|
23556
|
+
};
|
|
23167
23557
|
export declare type TeamSearchFilter = {
|
|
23168
23558
|
query?: Maybe<Scalars['String']>;
|
|
23169
23559
|
membership?: Maybe<TeamMembershipFilter>;
|
|
@@ -23209,6 +23599,12 @@ export declare type TenantContext = {
|
|
|
23209
23599
|
hostName?: Maybe<Scalars['String']>;
|
|
23210
23600
|
cloudUrl?: Maybe<Scalars['URL']>;
|
|
23211
23601
|
orgId?: Maybe<Scalars['ID']>;
|
|
23602
|
+
customDomains?: Maybe<Array<TenantContextCustomDomain>>;
|
|
23603
|
+
};
|
|
23604
|
+
export declare type TenantContextCustomDomain = {
|
|
23605
|
+
__typename?: 'TenantContextCustomDomain';
|
|
23606
|
+
product?: Maybe<Scalars['String']>;
|
|
23607
|
+
hostName?: Maybe<Scalars['String']>;
|
|
23212
23608
|
};
|
|
23213
23609
|
export declare type Testing = {
|
|
23214
23610
|
__typename?: 'Testing';
|
|
@@ -23294,6 +23690,7 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
23294
23690
|
export declare type Toolchain = {
|
|
23295
23691
|
__typename?: 'Toolchain';
|
|
23296
23692
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
23693
|
+
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
23297
23694
|
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
23298
23695
|
};
|
|
23299
23696
|
export declare type ToolchainContainersArgs = {
|
|
@@ -23304,23 +23701,34 @@ export declare type ToolchainContainersArgs = {
|
|
|
23304
23701
|
first?: Maybe<Scalars['Int']>;
|
|
23305
23702
|
after?: Maybe<Scalars['String']>;
|
|
23306
23703
|
};
|
|
23704
|
+
export declare type ToolchainWorkspacesArgs = {
|
|
23705
|
+
cloudId: Scalars['ID'];
|
|
23706
|
+
providerId: Scalars['String'];
|
|
23707
|
+
query?: Maybe<Scalars['String']>;
|
|
23708
|
+
first?: Maybe<Scalars['Int']>;
|
|
23709
|
+
after?: Maybe<Scalars['String']>;
|
|
23710
|
+
};
|
|
23307
23711
|
export declare type ToolchainSyncStatusArgs = {
|
|
23308
23712
|
cloudId: Scalars['ID'];
|
|
23309
23713
|
providerId: Scalars['String'];
|
|
23714
|
+
jiraProjectId: Scalars['ID'];
|
|
23310
23715
|
containerId: Scalars['ID'];
|
|
23311
23716
|
};
|
|
23312
23717
|
export declare type ToolchainAssociateContainerInput = {
|
|
23313
|
-
cloudId: Scalars['ID'];
|
|
23314
|
-
providerId: Scalars['ID'];
|
|
23315
23718
|
jiraProjectId: Scalars['ID'];
|
|
23316
23719
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
23317
23720
|
containerId: Scalars['ID'];
|
|
23318
23721
|
};
|
|
23319
|
-
export declare type
|
|
23320
|
-
|
|
23722
|
+
export declare type ToolchainAssociateContainersInput = {
|
|
23723
|
+
cloudId: Scalars['ID'];
|
|
23724
|
+
providerId: Scalars['ID'];
|
|
23725
|
+
associations: Array<ToolchainAssociateContainerInput>;
|
|
23726
|
+
};
|
|
23727
|
+
export declare type ToolchainAssociateContainersPayload = Payload & {
|
|
23728
|
+
__typename?: 'ToolchainAssociateContainersPayload';
|
|
23321
23729
|
success: Scalars['Boolean'];
|
|
23322
23730
|
errors?: Maybe<Array<MutationError>>;
|
|
23323
|
-
|
|
23731
|
+
containers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
23324
23732
|
};
|
|
23325
23733
|
export declare type ToolchainAssociatedContainer = DevOpsDocument;
|
|
23326
23734
|
export declare type ToolchainContainer = Node & {
|
|
@@ -23353,27 +23761,30 @@ export declare type ToolchainCreateContainerPayload = Payload & {
|
|
|
23353
23761
|
createdContainer?: Maybe<ToolchainContainer>;
|
|
23354
23762
|
};
|
|
23355
23763
|
export declare type ToolchainDisassociateContainerInput = {
|
|
23356
|
-
cloudId: Scalars['ID'];
|
|
23357
|
-
providerId: Scalars['ID'];
|
|
23358
23764
|
jiraProjectId: Scalars['ID'];
|
|
23359
23765
|
containerId: Scalars['ID'];
|
|
23360
23766
|
};
|
|
23361
|
-
export declare type
|
|
23362
|
-
|
|
23767
|
+
export declare type ToolchainDisassociateContainersInput = {
|
|
23768
|
+
cloudId: Scalars['ID'];
|
|
23769
|
+
providerId: Scalars['ID'];
|
|
23770
|
+
disassociations: Array<ToolchainDisassociateContainerInput>;
|
|
23771
|
+
};
|
|
23772
|
+
export declare type ToolchainDisassociateContainersPayload = Payload & {
|
|
23773
|
+
__typename?: 'ToolchainDisassociateContainersPayload';
|
|
23363
23774
|
success: Scalars['Boolean'];
|
|
23364
23775
|
errors?: Maybe<Array<MutationError>>;
|
|
23365
23776
|
};
|
|
23366
23777
|
export declare type ToolchainMutation = {
|
|
23367
23778
|
__typename?: 'ToolchainMutation';
|
|
23368
|
-
|
|
23369
|
-
|
|
23779
|
+
associateContainers?: Maybe<ToolchainAssociateContainersPayload>;
|
|
23780
|
+
disassociateContainers?: Maybe<ToolchainDisassociateContainersPayload>;
|
|
23370
23781
|
createContainer?: Maybe<ToolchainCreateContainerPayload>;
|
|
23371
23782
|
};
|
|
23372
|
-
export declare type
|
|
23373
|
-
input:
|
|
23783
|
+
export declare type ToolchainMutationAssociateContainersArgs = {
|
|
23784
|
+
input: ToolchainAssociateContainersInput;
|
|
23374
23785
|
};
|
|
23375
|
-
export declare type
|
|
23376
|
-
input:
|
|
23786
|
+
export declare type ToolchainMutationDisassociateContainersArgs = {
|
|
23787
|
+
input: ToolchainDisassociateContainersInput;
|
|
23377
23788
|
};
|
|
23378
23789
|
export declare type ToolchainMutationCreateContainerArgs = {
|
|
23379
23790
|
input: ToolchainCreateContainerInput;
|
|
@@ -23386,6 +23797,23 @@ export declare type ToolchainSyncStatus = {
|
|
|
23386
23797
|
__typename?: 'ToolchainSyncStatus';
|
|
23387
23798
|
state: ToolchainSyncState;
|
|
23388
23799
|
};
|
|
23800
|
+
export declare type ToolchainWorkspace = Node & {
|
|
23801
|
+
__typename?: 'ToolchainWorkspace';
|
|
23802
|
+
id: Scalars['ID'];
|
|
23803
|
+
name: Scalars['String'];
|
|
23804
|
+
canCreateContainer: Scalars['Boolean'];
|
|
23805
|
+
};
|
|
23806
|
+
export declare type ToolchainWorkspaceConnection = {
|
|
23807
|
+
__typename?: 'ToolchainWorkspaceConnection';
|
|
23808
|
+
edges?: Maybe<Array<Maybe<ToolchainWorkspaceEdge>>>;
|
|
23809
|
+
nodes?: Maybe<Array<Maybe<ToolchainWorkspace>>>;
|
|
23810
|
+
pageInfo: PageInfo;
|
|
23811
|
+
};
|
|
23812
|
+
export declare type ToolchainWorkspaceEdge = {
|
|
23813
|
+
__typename?: 'ToolchainWorkspaceEdge';
|
|
23814
|
+
cursor: Scalars['String'];
|
|
23815
|
+
node?: Maybe<ToolchainWorkspace>;
|
|
23816
|
+
};
|
|
23389
23817
|
export declare type TownsquareComment = Node & {
|
|
23390
23818
|
__typename?: 'TownsquareComment';
|
|
23391
23819
|
creator?: Maybe<User>;
|
|
@@ -23621,6 +24049,10 @@ export declare type TransitionFilter = {
|
|
|
23621
24049
|
from: Scalars['String'];
|
|
23622
24050
|
to: Scalars['String'];
|
|
23623
24051
|
};
|
|
24052
|
+
export declare type TrelloAttachment = {
|
|
24053
|
+
__typename?: 'TrelloAttachment';
|
|
24054
|
+
objectId: Scalars['String'];
|
|
24055
|
+
};
|
|
23624
24056
|
export declare type TrelloBoard = Node & {
|
|
23625
24057
|
__typename?: 'TrelloBoard';
|
|
23626
24058
|
closed: Scalars['Boolean'];
|
|
@@ -23637,7 +24069,7 @@ export declare type TrelloBoard = Node & {
|
|
|
23637
24069
|
};
|
|
23638
24070
|
export declare type TrelloBoardListsArgs = {
|
|
23639
24071
|
after?: Maybe<Scalars['String']>;
|
|
23640
|
-
filter?: Maybe<
|
|
24072
|
+
filter?: Maybe<TrelloListFilterInput>;
|
|
23641
24073
|
first?: Maybe<Scalars['Int']>;
|
|
23642
24074
|
};
|
|
23643
24075
|
export declare type TrelloBoardBackground = {
|
|
@@ -23701,13 +24133,17 @@ export declare type TrelloBoardViewer = {
|
|
|
23701
24133
|
};
|
|
23702
24134
|
export declare type TrelloCard = Node & {
|
|
23703
24135
|
__typename?: 'TrelloCard';
|
|
24136
|
+
badges?: Maybe<TrelloCardBadges>;
|
|
23704
24137
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24138
|
+
cover?: Maybe<TrelloCardCover>;
|
|
23705
24139
|
description?: Maybe<Scalars['String']>;
|
|
23706
24140
|
due?: Maybe<TrelloCardDueInfo>;
|
|
23707
24141
|
id: Scalars['ID'];
|
|
23708
24142
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
24143
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
23709
24144
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
23710
24145
|
limits?: Maybe<TrelloCardLimits>;
|
|
24146
|
+
list?: Maybe<TrelloList>;
|
|
23711
24147
|
location?: Maybe<TrelloCardLocation>;
|
|
23712
24148
|
name?: Maybe<Scalars['String']>;
|
|
23713
24149
|
objectId: Scalars['String'];
|
|
@@ -23720,21 +24156,101 @@ export declare type TrelloCard = Node & {
|
|
|
23720
24156
|
stickers?: Maybe<TrelloStickerConnection>;
|
|
23721
24157
|
url?: Maybe<Scalars['URL']>;
|
|
23722
24158
|
};
|
|
24159
|
+
export declare type TrelloCardLabelsArgs = {
|
|
24160
|
+
after?: Maybe<Scalars['String']>;
|
|
24161
|
+
first?: Maybe<Scalars['Int']>;
|
|
24162
|
+
};
|
|
23723
24163
|
export declare type TrelloCardStickersArgs = {
|
|
23724
24164
|
after?: Maybe<Scalars['String']>;
|
|
23725
24165
|
first?: Maybe<Scalars['Int']>;
|
|
23726
24166
|
};
|
|
24167
|
+
export declare type TrelloCardAttachmentsByType = {
|
|
24168
|
+
__typename?: 'TrelloCardAttachmentsByType';
|
|
24169
|
+
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
24170
|
+
};
|
|
24171
|
+
export declare type TrelloCardAttachmentsCount = {
|
|
24172
|
+
__typename?: 'TrelloCardAttachmentsCount';
|
|
24173
|
+
board?: Maybe<Scalars['Int']>;
|
|
24174
|
+
card?: Maybe<Scalars['Int']>;
|
|
24175
|
+
};
|
|
24176
|
+
export declare type TrelloCardBadgeDueInfo = {
|
|
24177
|
+
__typename?: 'TrelloCardBadgeDueInfo';
|
|
24178
|
+
at?: Maybe<Scalars['DateTime']>;
|
|
24179
|
+
complete?: Maybe<Scalars['Boolean']>;
|
|
24180
|
+
};
|
|
24181
|
+
export declare type TrelloCardBadges = {
|
|
24182
|
+
__typename?: 'TrelloCardBadges';
|
|
24183
|
+
attachments?: Maybe<Scalars['Int']>;
|
|
24184
|
+
attachmentsByType?: Maybe<TrelloCardAttachmentsByType>;
|
|
24185
|
+
checkItems?: Maybe<Scalars['Int']>;
|
|
24186
|
+
checkItemsChecked?: Maybe<Scalars['Int']>;
|
|
24187
|
+
checkItemsEarliestDue?: Maybe<Scalars['DateTime']>;
|
|
24188
|
+
comments?: Maybe<Scalars['Int']>;
|
|
24189
|
+
description?: Maybe<Scalars['Boolean']>;
|
|
24190
|
+
due?: Maybe<TrelloCardBadgeDueInfo>;
|
|
24191
|
+
location?: Maybe<Scalars['Boolean']>;
|
|
24192
|
+
startedAt?: Maybe<Scalars['DateTime']>;
|
|
24193
|
+
viewer?: Maybe<TrelloCardViewer>;
|
|
24194
|
+
votes?: Maybe<Scalars['Int']>;
|
|
24195
|
+
};
|
|
24196
|
+
export declare type TrelloCardConnection = {
|
|
24197
|
+
__typename?: 'TrelloCardConnection';
|
|
24198
|
+
edges?: Maybe<Array<TrelloCardEdge>>;
|
|
24199
|
+
nodes?: Maybe<Array<TrelloCard>>;
|
|
24200
|
+
pageInfo: PageInfo;
|
|
24201
|
+
};
|
|
23727
24202
|
export declare type TrelloCardCoordinates = {
|
|
23728
24203
|
__typename?: 'TrelloCardCoordinates';
|
|
23729
24204
|
latitude: Scalars['Float'];
|
|
23730
24205
|
longitude: Scalars['Float'];
|
|
23731
24206
|
};
|
|
24207
|
+
export declare type TrelloCardCover = {
|
|
24208
|
+
__typename?: 'TrelloCardCover';
|
|
24209
|
+
attachment?: Maybe<TrelloAttachment>;
|
|
24210
|
+
brightness?: Maybe<TrelloCardCoverBrightness>;
|
|
24211
|
+
color?: Maybe<TrelloCardCoverColor>;
|
|
24212
|
+
edgeColor?: Maybe<Scalars['String']>;
|
|
24213
|
+
plugin?: Maybe<TrelloPlugin>;
|
|
24214
|
+
previews?: Maybe<TrelloImagePreviewConnection>;
|
|
24215
|
+
sharedSourceUrl?: Maybe<Scalars['URL']>;
|
|
24216
|
+
size?: Maybe<TrelloCardCoverSize>;
|
|
24217
|
+
uploadedBackground?: Maybe<TrelloUploadedBackground>;
|
|
24218
|
+
};
|
|
24219
|
+
export declare type TrelloCardCoverPreviewsArgs = {
|
|
24220
|
+
after?: Maybe<Scalars['String']>;
|
|
24221
|
+
first?: Maybe<Scalars['Int']>;
|
|
24222
|
+
};
|
|
24223
|
+
export declare enum TrelloCardCoverBrightness {
|
|
24224
|
+
Dark = "DARK",
|
|
24225
|
+
Light = "LIGHT"
|
|
24226
|
+
}
|
|
24227
|
+
export declare enum TrelloCardCoverColor {
|
|
24228
|
+
Black = "BLACK",
|
|
24229
|
+
Blue = "BLUE",
|
|
24230
|
+
Green = "GREEN",
|
|
24231
|
+
Lime = "LIME",
|
|
24232
|
+
Orange = "ORANGE",
|
|
24233
|
+
Pink = "PINK",
|
|
24234
|
+
Purple = "PURPLE",
|
|
24235
|
+
Red = "RED",
|
|
24236
|
+
Sky = "SKY",
|
|
24237
|
+
Yellow = "YELLOW"
|
|
24238
|
+
}
|
|
24239
|
+
export declare enum TrelloCardCoverSize {
|
|
24240
|
+
Full = "FULL",
|
|
24241
|
+
Normal = "NORMAL"
|
|
24242
|
+
}
|
|
23732
24243
|
export declare type TrelloCardDueInfo = {
|
|
23733
24244
|
__typename?: 'TrelloCardDueInfo';
|
|
23734
24245
|
at?: Maybe<Scalars['DateTime']>;
|
|
23735
24246
|
complete?: Maybe<Scalars['Boolean']>;
|
|
23736
24247
|
reminder?: Maybe<Scalars['Int']>;
|
|
23737
24248
|
};
|
|
24249
|
+
export declare type TrelloCardEdge = {
|
|
24250
|
+
__typename?: 'TrelloCardEdge';
|
|
24251
|
+
cursor?: Maybe<Scalars['String']>;
|
|
24252
|
+
node?: Maybe<TrelloCard>;
|
|
24253
|
+
};
|
|
23738
24254
|
export declare type TrelloCardLimit = {
|
|
23739
24255
|
__typename?: 'TrelloCardLimit';
|
|
23740
24256
|
perCard?: Maybe<TrelloLimitProps>;
|
|
@@ -23757,6 +24273,48 @@ export declare enum TrelloCardRole {
|
|
|
23757
24273
|
Mirror = "MIRROR",
|
|
23758
24274
|
Separator = "SEPARATOR"
|
|
23759
24275
|
}
|
|
24276
|
+
export declare type TrelloCardViewer = {
|
|
24277
|
+
__typename?: 'TrelloCardViewer';
|
|
24278
|
+
subscribed?: Maybe<Scalars['Boolean']>;
|
|
24279
|
+
voted?: Maybe<Scalars['Boolean']>;
|
|
24280
|
+
};
|
|
24281
|
+
export declare type TrelloImagePreview = {
|
|
24282
|
+
__typename?: 'TrelloImagePreview';
|
|
24283
|
+
bytes?: Maybe<Scalars['Float']>;
|
|
24284
|
+
height?: Maybe<Scalars['Float']>;
|
|
24285
|
+
scaled?: Maybe<Scalars['Boolean']>;
|
|
24286
|
+
url?: Maybe<Scalars['URL']>;
|
|
24287
|
+
width?: Maybe<Scalars['Float']>;
|
|
24288
|
+
};
|
|
24289
|
+
export declare type TrelloImagePreviewConnection = {
|
|
24290
|
+
__typename?: 'TrelloImagePreviewConnection';
|
|
24291
|
+
edges?: Maybe<Array<TrelloImagePreviewEdge>>;
|
|
24292
|
+
nodes?: Maybe<Array<TrelloImagePreview>>;
|
|
24293
|
+
pageInfo: PageInfo;
|
|
24294
|
+
};
|
|
24295
|
+
export declare type TrelloImagePreviewEdge = {
|
|
24296
|
+
__typename?: 'TrelloImagePreviewEdge';
|
|
24297
|
+
cursor: Scalars['String'];
|
|
24298
|
+
node: TrelloImagePreview;
|
|
24299
|
+
};
|
|
24300
|
+
export declare type TrelloLabel = {
|
|
24301
|
+
__typename?: 'TrelloLabel';
|
|
24302
|
+
color?: Maybe<Scalars['String']>;
|
|
24303
|
+
name?: Maybe<Scalars['String']>;
|
|
24304
|
+
objectId: Scalars['ID'];
|
|
24305
|
+
uses?: Maybe<Scalars['Int']>;
|
|
24306
|
+
};
|
|
24307
|
+
export declare type TrelloLabelConnection = {
|
|
24308
|
+
__typename?: 'TrelloLabelConnection';
|
|
24309
|
+
edges?: Maybe<Array<TrelloLabelEdge>>;
|
|
24310
|
+
nodes?: Maybe<Array<TrelloLabel>>;
|
|
24311
|
+
pageInfo: PageInfo;
|
|
24312
|
+
};
|
|
24313
|
+
export declare type TrelloLabelEdge = {
|
|
24314
|
+
__typename?: 'TrelloLabelEdge';
|
|
24315
|
+
cursor: Scalars['String'];
|
|
24316
|
+
node: TrelloLabel;
|
|
24317
|
+
};
|
|
23760
24318
|
export declare type TrelloLimitProps = {
|
|
23761
24319
|
__typename?: 'TrelloLimitProps';
|
|
23762
24320
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -23767,16 +24325,25 @@ export declare type TrelloLimitProps = {
|
|
|
23767
24325
|
export declare type TrelloList = Node & {
|
|
23768
24326
|
__typename?: 'TrelloList';
|
|
23769
24327
|
board?: Maybe<TrelloBoard>;
|
|
24328
|
+
cards?: Maybe<TrelloCardConnection>;
|
|
23770
24329
|
closed: Scalars['Boolean'];
|
|
23771
24330
|
creationMethod: Scalars['String'];
|
|
23772
24331
|
id: Scalars['ID'];
|
|
23773
24332
|
limits?: Maybe<TrelloListLimits>;
|
|
23774
24333
|
name: Scalars['String'];
|
|
23775
24334
|
objectId: Scalars['String'];
|
|
23776
|
-
position: Scalars['
|
|
24335
|
+
position: Scalars['Float'];
|
|
23777
24336
|
softLimit?: Maybe<Scalars['Int']>;
|
|
23778
24337
|
viewer?: Maybe<TrelloListViewer>;
|
|
23779
24338
|
};
|
|
24339
|
+
export declare type TrelloListCardsArgs = {
|
|
24340
|
+
after?: Maybe<Scalars['String']>;
|
|
24341
|
+
filter?: Maybe<TrelloListCardFilterInput>;
|
|
24342
|
+
first?: Maybe<Scalars['Int']>;
|
|
24343
|
+
};
|
|
24344
|
+
export declare type TrelloListCardFilterInput = {
|
|
24345
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
24346
|
+
};
|
|
23780
24347
|
export declare type TrelloListCardLimits = {
|
|
23781
24348
|
__typename?: 'TrelloListCardLimits';
|
|
23782
24349
|
openPerList?: Maybe<TrelloLimitProps>;
|
|
@@ -23793,6 +24360,9 @@ export declare type TrelloListEdge = {
|
|
|
23793
24360
|
cursor?: Maybe<Scalars['String']>;
|
|
23794
24361
|
node?: Maybe<TrelloList>;
|
|
23795
24362
|
};
|
|
24363
|
+
export declare type TrelloListFilterInput = {
|
|
24364
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
24365
|
+
};
|
|
23796
24366
|
export declare type TrelloListLimits = {
|
|
23797
24367
|
__typename?: 'TrelloListLimits';
|
|
23798
24368
|
cards?: Maybe<TrelloListCardLimits>;
|
|
@@ -23824,6 +24394,10 @@ export declare type TrelloListViewer = {
|
|
|
23824
24394
|
__typename?: 'TrelloListViewer';
|
|
23825
24395
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
23826
24396
|
};
|
|
24397
|
+
export declare type TrelloPlugin = {
|
|
24398
|
+
__typename?: 'TrelloPlugin';
|
|
24399
|
+
objectId: Scalars['ID'];
|
|
24400
|
+
};
|
|
23827
24401
|
export declare type TrelloQueryApi = {
|
|
23828
24402
|
__typename?: 'TrelloQueryApi';
|
|
23829
24403
|
board?: Maybe<TrelloBoard>;
|
|
@@ -23925,6 +24499,10 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
23925
24499
|
locale: Scalars['String'];
|
|
23926
24500
|
localizedDescription: Scalars['String'];
|
|
23927
24501
|
};
|
|
24502
|
+
export declare type TrelloUploadedBackground = {
|
|
24503
|
+
__typename?: 'TrelloUploadedBackground';
|
|
24504
|
+
objectId: Scalars['String'];
|
|
24505
|
+
};
|
|
23928
24506
|
export declare type TrelloWorkspace = Node & {
|
|
23929
24507
|
__typename?: 'TrelloWorkspace';
|
|
23930
24508
|
displayName: Scalars['String'];
|
|
@@ -24767,6 +25345,29 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
24767
25345
|
resolutionRate?: Maybe<Scalars['Float']>;
|
|
24768
25346
|
averageCsat?: Maybe<Scalars['Float']>;
|
|
24769
25347
|
};
|
|
25348
|
+
export declare type VirtualAgentIntentTemplate = Node & {
|
|
25349
|
+
__typename?: 'VirtualAgentIntentTemplate';
|
|
25350
|
+
id: Scalars['ID'];
|
|
25351
|
+
type: VirtualAgentIntentTemplateType;
|
|
25352
|
+
name: Scalars['String'];
|
|
25353
|
+
description?: Maybe<Scalars['String']>;
|
|
25354
|
+
questions?: Maybe<Array<Scalars['String']>>;
|
|
25355
|
+
};
|
|
25356
|
+
export declare type VirtualAgentIntentTemplateEdge = {
|
|
25357
|
+
__typename?: 'VirtualAgentIntentTemplateEdge';
|
|
25358
|
+
cursor: Scalars['String'];
|
|
25359
|
+
node?: Maybe<VirtualAgentIntentTemplate>;
|
|
25360
|
+
};
|
|
25361
|
+
export declare enum VirtualAgentIntentTemplateType {
|
|
25362
|
+
Discovered = "DISCOVERED",
|
|
25363
|
+
Shared = "SHARED"
|
|
25364
|
+
}
|
|
25365
|
+
export declare type VirtualAgentIntentTemplatesConnection = {
|
|
25366
|
+
__typename?: 'VirtualAgentIntentTemplatesConnection';
|
|
25367
|
+
edges?: Maybe<Array<VirtualAgentIntentTemplateEdge>>;
|
|
25368
|
+
nodes?: Maybe<Array<VirtualAgentIntentTemplate>>;
|
|
25369
|
+
pageInfo: PageInfo;
|
|
25370
|
+
};
|
|
24770
25371
|
export declare type VirtualAgentJsmChatContext = {
|
|
24771
25372
|
__typename?: 'VirtualAgentJSMChatContext';
|
|
24772
25373
|
connectivityState: Scalars['String'];
|
|
@@ -24828,15 +25429,18 @@ export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
|
24828
25429
|
export declare type VirtualAgentProperties = {
|
|
24829
25430
|
__typename?: 'VirtualAgentProperties';
|
|
24830
25431
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
25432
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']>;
|
|
24831
25433
|
};
|
|
24832
25434
|
export declare type VirtualAgentPropertiesInput = {
|
|
24833
25435
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
25436
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']>;
|
|
24834
25437
|
};
|
|
24835
25438
|
export declare type VirtualAgentQueryApi = {
|
|
24836
25439
|
__typename?: 'VirtualAgentQueryApi';
|
|
24837
25440
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
24838
25441
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
24839
25442
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
25443
|
+
intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
24840
25444
|
};
|
|
24841
25445
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
24842
25446
|
jiraProjectId: Scalars['ID'];
|
|
@@ -24850,6 +25454,11 @@ export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
|
24850
25454
|
jiraProjectId: Scalars['ID'];
|
|
24851
25455
|
requestTypeId: Scalars['String'];
|
|
24852
25456
|
};
|
|
25457
|
+
export declare type VirtualAgentQueryApiIntentTemplatesByProjectIdArgs = {
|
|
25458
|
+
jiraProjectId: Scalars['ID'];
|
|
25459
|
+
first?: Maybe<Scalars['Int']>;
|
|
25460
|
+
after?: Maybe<Scalars['String']>;
|
|
25461
|
+
};
|
|
24853
25462
|
export declare type VirtualAgentQueryError = {
|
|
24854
25463
|
__typename?: 'VirtualAgentQueryError';
|
|
24855
25464
|
id: Scalars['ID'];
|
|
@@ -24871,6 +25480,7 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
24871
25480
|
isVirtualAgentChannel?: Maybe<Scalars['Boolean']>;
|
|
24872
25481
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']>;
|
|
24873
25482
|
channelLink?: Maybe<Scalars['String']>;
|
|
25483
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']>;
|
|
24874
25484
|
};
|
|
24875
25485
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
24876
25486
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
@@ -24887,6 +25497,7 @@ export declare type VirtualAgentStatisticsProjection = {
|
|
|
24887
25497
|
export declare type VirtualAgentUpdateChatChannelInput = {
|
|
24888
25498
|
halpChannelId: Scalars['String'];
|
|
24889
25499
|
isVirtualAgentChannel: Scalars['Boolean'];
|
|
25500
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']>;
|
|
24890
25501
|
};
|
|
24891
25502
|
export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
|
|
24892
25503
|
__typename?: 'VirtualAgentUpdateChatChannelPayload';
|