@forge/cli-shared 3.11.3-next.3 → 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 +49 -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 +652 -21
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +81 -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'];
|
|
@@ -12698,6 +13028,7 @@ export declare type JiraMutation = {
|
|
|
12698
13028
|
updateVersionReleasedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
12699
13029
|
updateVersionArchivedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
12700
13030
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
13031
|
+
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
12701
13032
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
12702
13033
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
12703
13034
|
updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
|
|
@@ -12781,6 +13112,9 @@ export declare type JiraMutationUpdateVersionArchivedStatusArgs = {
|
|
|
12781
13112
|
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
12782
13113
|
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
12783
13114
|
};
|
|
13115
|
+
export declare type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
|
|
13116
|
+
input: JiraVersionDetailsCollapsedUisInput;
|
|
13117
|
+
};
|
|
12784
13118
|
export declare type JiraMutationCreateJiraVersionArgs = {
|
|
12785
13119
|
input: JiraVersionCreateMutationInput;
|
|
12786
13120
|
};
|
|
@@ -12905,6 +13239,11 @@ export declare type JiraMutationUpdateProjectShortcutArgs = {
|
|
|
12905
13239
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
12906
13240
|
input: JiraDeleteShortcutInput;
|
|
12907
13241
|
};
|
|
13242
|
+
export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload = Payload & {
|
|
13243
|
+
__typename?: 'JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload';
|
|
13244
|
+
success: Scalars['Boolean'];
|
|
13245
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13246
|
+
};
|
|
12908
13247
|
export declare type JiraNaturalLanguageToJqlInput = {
|
|
12909
13248
|
naturalLanguageInput: Scalars['String'];
|
|
12910
13249
|
iteration?: Maybe<JiraIteration>;
|
|
@@ -13491,6 +13830,7 @@ export declare type JiraProject = Node & {
|
|
|
13491
13830
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
13492
13831
|
action?: Maybe<JiraProjectAction>;
|
|
13493
13832
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
13833
|
+
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
13494
13834
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
13495
13835
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
13496
13836
|
lead?: Maybe<User>;
|
|
@@ -13508,6 +13848,7 @@ export declare type JiraProject = Node & {
|
|
|
13508
13848
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
13509
13849
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
13510
13850
|
suggestedDriversForJiraVersion?: Maybe<JiraVersionDriverConnection>;
|
|
13851
|
+
suggestedApproversForJiraVersion?: Maybe<JiraVersionSuggestedApproverConnection>;
|
|
13511
13852
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13512
13853
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
13513
13854
|
};
|
|
@@ -13577,6 +13918,10 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
13577
13918
|
export declare type JiraProjectSuggestedDriversForJiraVersionArgs = {
|
|
13578
13919
|
searchText?: Maybe<Scalars['String']>;
|
|
13579
13920
|
};
|
|
13921
|
+
export declare type JiraProjectSuggestedApproversForJiraVersionArgs = {
|
|
13922
|
+
searchText?: Maybe<Scalars['String']>;
|
|
13923
|
+
excludedAccountIds?: Maybe<Array<Scalars['String']>>;
|
|
13924
|
+
};
|
|
13580
13925
|
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
13581
13926
|
first?: Maybe<Scalars['Int']>;
|
|
13582
13927
|
after?: Maybe<Scalars['String']>;
|
|
@@ -13945,6 +14290,7 @@ export declare type JiraQuery = {
|
|
|
13945
14290
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
13946
14291
|
userSegmentation?: Maybe<JiraUserSegmentation>;
|
|
13947
14292
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
14293
|
+
jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
|
|
13948
14294
|
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
13949
14295
|
jiraProject?: Maybe<JiraProject>;
|
|
13950
14296
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
@@ -13964,6 +14310,7 @@ export declare type JiraQuery = {
|
|
|
13964
14310
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13965
14311
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13966
14312
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
14313
|
+
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']>;
|
|
13967
14314
|
permission?: Maybe<JiraPermission>;
|
|
13968
14315
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
13969
14316
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -14035,6 +14382,9 @@ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
|
14035
14382
|
keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14036
14383
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14037
14384
|
};
|
|
14385
|
+
export declare type JiraQueryJiraBulkEditFieldsArgs = {
|
|
14386
|
+
issueIds: Array<Scalars['ID']>;
|
|
14387
|
+
};
|
|
14038
14388
|
export declare type JiraQueryAllJiraProjectTypesArgs = {
|
|
14039
14389
|
cloudId: Scalars['ID'];
|
|
14040
14390
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14134,6 +14484,9 @@ export declare type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
14134
14484
|
cloudId: Scalars['ID'];
|
|
14135
14485
|
input: JiraNaturalLanguageToJqlInput;
|
|
14136
14486
|
};
|
|
14487
|
+
export declare type JiraQueryIsNaturalLanguageSearchEnabledArgs = {
|
|
14488
|
+
cloudId: Scalars['ID'];
|
|
14489
|
+
};
|
|
14137
14490
|
export declare type JiraQueryPermissionArgs = {
|
|
14138
14491
|
cloudId: Scalars['ID'];
|
|
14139
14492
|
type: JiraPermissionType;
|
|
@@ -14958,6 +15311,7 @@ export declare type JiraServiceManagementCreateRequestTypeFromTemplateRequestTyp
|
|
|
14958
15311
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateResult = Payload & {
|
|
14959
15312
|
__typename?: 'JiraServiceManagementCreateRequestTypeFromTemplateResult';
|
|
14960
15313
|
clientMutationId: Scalars['String'];
|
|
15314
|
+
result?: Maybe<JiraServiceManagementRequestType>;
|
|
14961
15315
|
success: Scalars['Boolean'];
|
|
14962
15316
|
errors?: Maybe<Array<MutationError>>;
|
|
14963
15317
|
};
|
|
@@ -16124,6 +16478,7 @@ export declare type JiraUserPreferences = {
|
|
|
16124
16478
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
16125
16479
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
16126
16480
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
16481
|
+
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']>;
|
|
16127
16482
|
};
|
|
16128
16483
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
16129
16484
|
projectKey: Scalars['String'];
|
|
@@ -16132,6 +16487,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
16132
16487
|
__typename?: 'JiraUserPreferencesMutation';
|
|
16133
16488
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
16134
16489
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
16490
|
+
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
16135
16491
|
};
|
|
16136
16492
|
export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
16137
16493
|
searchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
@@ -16139,6 +16495,9 @@ export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
|
16139
16495
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
16140
16496
|
searchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
16141
16497
|
};
|
|
16498
|
+
export declare type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEnabledArgs = {
|
|
16499
|
+
isEnabled: Scalars['Boolean'];
|
|
16500
|
+
};
|
|
16142
16501
|
export declare type JiraUserSegmentation = {
|
|
16143
16502
|
__typename?: 'JiraUserSegmentation';
|
|
16144
16503
|
role?: Maybe<Scalars['String']>;
|
|
@@ -16169,6 +16528,7 @@ export declare type JiraVersion = Node & {
|
|
|
16169
16528
|
releasesNotesPreferenceType?: Maybe<JiraVersionReleaseNotesType>;
|
|
16170
16529
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
16171
16530
|
versionIssueTableHiddenColumns?: Maybe<Array<Maybe<JiraVersionIssueTableColumn>>>;
|
|
16531
|
+
collapsedUis?: Maybe<Array<Maybe<JiraVersionDetailsCollapsedUi>>>;
|
|
16172
16532
|
epicsForFilter?: Maybe<JiraIssueConnection>;
|
|
16173
16533
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
16174
16534
|
warningsCount?: Maybe<Scalars['Long']>;
|
|
@@ -16299,6 +16659,21 @@ export declare type JiraVersionDetailPageIssuesIssuesArgs = {
|
|
|
16299
16659
|
last?: Maybe<Scalars['Int']>;
|
|
16300
16660
|
before?: Maybe<Scalars['String']>;
|
|
16301
16661
|
};
|
|
16662
|
+
export declare enum JiraVersionDetailsCollapsedUi {
|
|
16663
|
+
Description = "DESCRIPTION",
|
|
16664
|
+
RelatedWork = "RELATED_WORK",
|
|
16665
|
+
Issues = "ISSUES"
|
|
16666
|
+
}
|
|
16667
|
+
export declare type JiraVersionDetailsCollapsedUisInput = {
|
|
16668
|
+
collapsedUis: Array<JiraVersionDetailsCollapsedUi>;
|
|
16669
|
+
versionId: Scalars['ID'];
|
|
16670
|
+
};
|
|
16671
|
+
export declare type JiraVersionDetailsCollapsedUisPayload = Payload & {
|
|
16672
|
+
__typename?: 'JiraVersionDetailsCollapsedUisPayload';
|
|
16673
|
+
success: Scalars['Boolean'];
|
|
16674
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16675
|
+
version?: Maybe<JiraVersion>;
|
|
16676
|
+
};
|
|
16302
16677
|
export declare type JiraVersionDriverConnection = {
|
|
16303
16678
|
__typename?: 'JiraVersionDriverConnection';
|
|
16304
16679
|
pageInfo: PageInfo;
|
|
@@ -16468,6 +16843,16 @@ export declare enum JiraVersionStatus {
|
|
|
16468
16843
|
Unreleased = "UNRELEASED",
|
|
16469
16844
|
Archived = "ARCHIVED"
|
|
16470
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
|
+
};
|
|
16471
16856
|
export declare type JiraVersionUpdateMutationInput = {
|
|
16472
16857
|
id: Scalars['ID'];
|
|
16473
16858
|
name: Scalars['String'];
|
|
@@ -18000,8 +18385,19 @@ export declare type NewSplitIssueResponse = {
|
|
|
18000
18385
|
id: Scalars['ID'];
|
|
18001
18386
|
key: Scalars['String'];
|
|
18002
18387
|
};
|
|
18388
|
+
export declare enum NlpErrorState {
|
|
18389
|
+
NoAnswer = "NO_ANSWER",
|
|
18390
|
+
SubjectiveQuery = "SUBJECTIVE_QUERY",
|
|
18391
|
+
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS"
|
|
18392
|
+
}
|
|
18003
18393
|
export declare type NlpSearchResponse = {
|
|
18004
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';
|
|
18005
18401
|
nlpResult?: Maybe<Scalars['String']>;
|
|
18006
18402
|
sources?: Maybe<Array<NlpSource>>;
|
|
18007
18403
|
};
|
|
@@ -19712,6 +20108,7 @@ export declare type Query = {
|
|
|
19712
20108
|
smarts?: Maybe<SmartsQueryApi>;
|
|
19713
20109
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
19714
20110
|
appRecommendations?: Maybe<AppRecQuery>;
|
|
20111
|
+
ccp?: Maybe<CcpQueryApi>;
|
|
19715
20112
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
19716
20113
|
devOps?: Maybe<DevOps>;
|
|
19717
20114
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -19825,7 +20222,7 @@ export declare type Query = {
|
|
|
19825
20222
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
19826
20223
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
19827
20224
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
19828
|
-
nlpSearch?: Maybe<
|
|
20225
|
+
nlpSearch?: Maybe<NlpSearchResponse>;
|
|
19829
20226
|
};
|
|
19830
20227
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
19831
20228
|
id: Scalars['ID'];
|
|
@@ -20243,9 +20640,11 @@ export declare enum RateLimitingCurrency {
|
|
|
20243
20640
|
TrelloCurrency = "TRELLO_CURRENCY",
|
|
20244
20641
|
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
20245
20642
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
20643
|
+
NaturalLanguageToJqlCurrency = "NATURAL_LANGUAGE_TO_JQL_CURRENCY",
|
|
20246
20644
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
20247
20645
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
20248
20646
|
TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
|
|
20647
|
+
TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
|
|
20249
20648
|
PolarisCurrency = "POLARIS_CURRENCY",
|
|
20250
20649
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
20251
20650
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
@@ -21807,6 +22206,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
21807
22206
|
id: Scalars['ID'];
|
|
21808
22207
|
orgId?: Maybe<Scalars['ID']>;
|
|
21809
22208
|
status: ShepherdAlertStatus;
|
|
22209
|
+
statusUpdatedOn?: Maybe<Scalars['DateTime']>;
|
|
21810
22210
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
21811
22211
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
21812
22212
|
title: Scalars['String'];
|
|
@@ -21879,6 +22279,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
21879
22279
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
21880
22280
|
UpdatedPolicy = "UPDATED_POLICY",
|
|
21881
22281
|
UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
|
|
22282
|
+
UserAddedToBeacon = "USER_ADDED_TO_BEACON",
|
|
21882
22283
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
21883
22284
|
UserRevokedRole = "USER_REVOKED_ROLE",
|
|
21884
22285
|
VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
|
|
@@ -23133,6 +23534,7 @@ export declare type TeamQuery = {
|
|
|
23133
23534
|
__typename?: 'TeamQuery';
|
|
23134
23535
|
team?: Maybe<Team>;
|
|
23135
23536
|
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
23537
|
+
teamSearchV2?: Maybe<TeamSearchResultConnection>;
|
|
23136
23538
|
};
|
|
23137
23539
|
export declare type TeamQueryTeamArgs = {
|
|
23138
23540
|
id: Scalars['ID'];
|
|
@@ -23144,6 +23546,14 @@ export declare type TeamQueryTeamSearchArgs = {
|
|
|
23144
23546
|
after?: Maybe<Scalars['String']>;
|
|
23145
23547
|
sortBy?: Maybe<Array<Maybe<TeamSort>>>;
|
|
23146
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
|
+
};
|
|
23147
23557
|
export declare type TeamSearchFilter = {
|
|
23148
23558
|
query?: Maybe<Scalars['String']>;
|
|
23149
23559
|
membership?: Maybe<TeamMembershipFilter>;
|
|
@@ -23189,6 +23599,12 @@ export declare type TenantContext = {
|
|
|
23189
23599
|
hostName?: Maybe<Scalars['String']>;
|
|
23190
23600
|
cloudUrl?: Maybe<Scalars['URL']>;
|
|
23191
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']>;
|
|
23192
23608
|
};
|
|
23193
23609
|
export declare type Testing = {
|
|
23194
23610
|
__typename?: 'Testing';
|
|
@@ -23274,6 +23690,7 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
23274
23690
|
export declare type Toolchain = {
|
|
23275
23691
|
__typename?: 'Toolchain';
|
|
23276
23692
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
23693
|
+
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
23277
23694
|
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
23278
23695
|
};
|
|
23279
23696
|
export declare type ToolchainContainersArgs = {
|
|
@@ -23284,23 +23701,34 @@ export declare type ToolchainContainersArgs = {
|
|
|
23284
23701
|
first?: Maybe<Scalars['Int']>;
|
|
23285
23702
|
after?: Maybe<Scalars['String']>;
|
|
23286
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
|
+
};
|
|
23287
23711
|
export declare type ToolchainSyncStatusArgs = {
|
|
23288
23712
|
cloudId: Scalars['ID'];
|
|
23289
23713
|
providerId: Scalars['String'];
|
|
23714
|
+
jiraProjectId: Scalars['ID'];
|
|
23290
23715
|
containerId: Scalars['ID'];
|
|
23291
23716
|
};
|
|
23292
23717
|
export declare type ToolchainAssociateContainerInput = {
|
|
23293
|
-
cloudId: Scalars['ID'];
|
|
23294
|
-
providerId: Scalars['ID'];
|
|
23295
23718
|
jiraProjectId: Scalars['ID'];
|
|
23296
23719
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
23297
23720
|
containerId: Scalars['ID'];
|
|
23298
23721
|
};
|
|
23299
|
-
export declare type
|
|
23300
|
-
|
|
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';
|
|
23301
23729
|
success: Scalars['Boolean'];
|
|
23302
23730
|
errors?: Maybe<Array<MutationError>>;
|
|
23303
|
-
|
|
23731
|
+
containers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
23304
23732
|
};
|
|
23305
23733
|
export declare type ToolchainAssociatedContainer = DevOpsDocument;
|
|
23306
23734
|
export declare type ToolchainContainer = Node & {
|
|
@@ -23333,27 +23761,30 @@ export declare type ToolchainCreateContainerPayload = Payload & {
|
|
|
23333
23761
|
createdContainer?: Maybe<ToolchainContainer>;
|
|
23334
23762
|
};
|
|
23335
23763
|
export declare type ToolchainDisassociateContainerInput = {
|
|
23336
|
-
cloudId: Scalars['ID'];
|
|
23337
|
-
providerId: Scalars['ID'];
|
|
23338
23764
|
jiraProjectId: Scalars['ID'];
|
|
23339
23765
|
containerId: Scalars['ID'];
|
|
23340
23766
|
};
|
|
23341
|
-
export declare type
|
|
23342
|
-
|
|
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';
|
|
23343
23774
|
success: Scalars['Boolean'];
|
|
23344
23775
|
errors?: Maybe<Array<MutationError>>;
|
|
23345
23776
|
};
|
|
23346
23777
|
export declare type ToolchainMutation = {
|
|
23347
23778
|
__typename?: 'ToolchainMutation';
|
|
23348
|
-
|
|
23349
|
-
|
|
23779
|
+
associateContainers?: Maybe<ToolchainAssociateContainersPayload>;
|
|
23780
|
+
disassociateContainers?: Maybe<ToolchainDisassociateContainersPayload>;
|
|
23350
23781
|
createContainer?: Maybe<ToolchainCreateContainerPayload>;
|
|
23351
23782
|
};
|
|
23352
|
-
export declare type
|
|
23353
|
-
input:
|
|
23783
|
+
export declare type ToolchainMutationAssociateContainersArgs = {
|
|
23784
|
+
input: ToolchainAssociateContainersInput;
|
|
23354
23785
|
};
|
|
23355
|
-
export declare type
|
|
23356
|
-
input:
|
|
23786
|
+
export declare type ToolchainMutationDisassociateContainersArgs = {
|
|
23787
|
+
input: ToolchainDisassociateContainersInput;
|
|
23357
23788
|
};
|
|
23358
23789
|
export declare type ToolchainMutationCreateContainerArgs = {
|
|
23359
23790
|
input: ToolchainCreateContainerInput;
|
|
@@ -23366,6 +23797,23 @@ export declare type ToolchainSyncStatus = {
|
|
|
23366
23797
|
__typename?: 'ToolchainSyncStatus';
|
|
23367
23798
|
state: ToolchainSyncState;
|
|
23368
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
|
+
};
|
|
23369
23817
|
export declare type TownsquareComment = Node & {
|
|
23370
23818
|
__typename?: 'TownsquareComment';
|
|
23371
23819
|
creator?: Maybe<User>;
|
|
@@ -23601,6 +24049,10 @@ export declare type TransitionFilter = {
|
|
|
23601
24049
|
from: Scalars['String'];
|
|
23602
24050
|
to: Scalars['String'];
|
|
23603
24051
|
};
|
|
24052
|
+
export declare type TrelloAttachment = {
|
|
24053
|
+
__typename?: 'TrelloAttachment';
|
|
24054
|
+
objectId: Scalars['String'];
|
|
24055
|
+
};
|
|
23604
24056
|
export declare type TrelloBoard = Node & {
|
|
23605
24057
|
__typename?: 'TrelloBoard';
|
|
23606
24058
|
closed: Scalars['Boolean'];
|
|
@@ -23617,7 +24069,7 @@ export declare type TrelloBoard = Node & {
|
|
|
23617
24069
|
};
|
|
23618
24070
|
export declare type TrelloBoardListsArgs = {
|
|
23619
24071
|
after?: Maybe<Scalars['String']>;
|
|
23620
|
-
filter?: Maybe<
|
|
24072
|
+
filter?: Maybe<TrelloListFilterInput>;
|
|
23621
24073
|
first?: Maybe<Scalars['Int']>;
|
|
23622
24074
|
};
|
|
23623
24075
|
export declare type TrelloBoardBackground = {
|
|
@@ -23681,13 +24133,17 @@ export declare type TrelloBoardViewer = {
|
|
|
23681
24133
|
};
|
|
23682
24134
|
export declare type TrelloCard = Node & {
|
|
23683
24135
|
__typename?: 'TrelloCard';
|
|
24136
|
+
badges?: Maybe<TrelloCardBadges>;
|
|
23684
24137
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24138
|
+
cover?: Maybe<TrelloCardCover>;
|
|
23685
24139
|
description?: Maybe<Scalars['String']>;
|
|
23686
24140
|
due?: Maybe<TrelloCardDueInfo>;
|
|
23687
24141
|
id: Scalars['ID'];
|
|
23688
24142
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
24143
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
23689
24144
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
23690
24145
|
limits?: Maybe<TrelloCardLimits>;
|
|
24146
|
+
list?: Maybe<TrelloList>;
|
|
23691
24147
|
location?: Maybe<TrelloCardLocation>;
|
|
23692
24148
|
name?: Maybe<Scalars['String']>;
|
|
23693
24149
|
objectId: Scalars['String'];
|
|
@@ -23700,21 +24156,101 @@ export declare type TrelloCard = Node & {
|
|
|
23700
24156
|
stickers?: Maybe<TrelloStickerConnection>;
|
|
23701
24157
|
url?: Maybe<Scalars['URL']>;
|
|
23702
24158
|
};
|
|
24159
|
+
export declare type TrelloCardLabelsArgs = {
|
|
24160
|
+
after?: Maybe<Scalars['String']>;
|
|
24161
|
+
first?: Maybe<Scalars['Int']>;
|
|
24162
|
+
};
|
|
23703
24163
|
export declare type TrelloCardStickersArgs = {
|
|
23704
24164
|
after?: Maybe<Scalars['String']>;
|
|
23705
24165
|
first?: Maybe<Scalars['Int']>;
|
|
23706
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
|
+
};
|
|
23707
24202
|
export declare type TrelloCardCoordinates = {
|
|
23708
24203
|
__typename?: 'TrelloCardCoordinates';
|
|
23709
24204
|
latitude: Scalars['Float'];
|
|
23710
24205
|
longitude: Scalars['Float'];
|
|
23711
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
|
+
}
|
|
23712
24243
|
export declare type TrelloCardDueInfo = {
|
|
23713
24244
|
__typename?: 'TrelloCardDueInfo';
|
|
23714
24245
|
at?: Maybe<Scalars['DateTime']>;
|
|
23715
24246
|
complete?: Maybe<Scalars['Boolean']>;
|
|
23716
24247
|
reminder?: Maybe<Scalars['Int']>;
|
|
23717
24248
|
};
|
|
24249
|
+
export declare type TrelloCardEdge = {
|
|
24250
|
+
__typename?: 'TrelloCardEdge';
|
|
24251
|
+
cursor?: Maybe<Scalars['String']>;
|
|
24252
|
+
node?: Maybe<TrelloCard>;
|
|
24253
|
+
};
|
|
23718
24254
|
export declare type TrelloCardLimit = {
|
|
23719
24255
|
__typename?: 'TrelloCardLimit';
|
|
23720
24256
|
perCard?: Maybe<TrelloLimitProps>;
|
|
@@ -23737,6 +24273,48 @@ export declare enum TrelloCardRole {
|
|
|
23737
24273
|
Mirror = "MIRROR",
|
|
23738
24274
|
Separator = "SEPARATOR"
|
|
23739
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
|
+
};
|
|
23740
24318
|
export declare type TrelloLimitProps = {
|
|
23741
24319
|
__typename?: 'TrelloLimitProps';
|
|
23742
24320
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -23747,16 +24325,25 @@ export declare type TrelloLimitProps = {
|
|
|
23747
24325
|
export declare type TrelloList = Node & {
|
|
23748
24326
|
__typename?: 'TrelloList';
|
|
23749
24327
|
board?: Maybe<TrelloBoard>;
|
|
24328
|
+
cards?: Maybe<TrelloCardConnection>;
|
|
23750
24329
|
closed: Scalars['Boolean'];
|
|
23751
24330
|
creationMethod: Scalars['String'];
|
|
23752
24331
|
id: Scalars['ID'];
|
|
23753
24332
|
limits?: Maybe<TrelloListLimits>;
|
|
23754
24333
|
name: Scalars['String'];
|
|
23755
24334
|
objectId: Scalars['String'];
|
|
23756
|
-
position: Scalars['
|
|
24335
|
+
position: Scalars['Float'];
|
|
23757
24336
|
softLimit?: Maybe<Scalars['Int']>;
|
|
23758
24337
|
viewer?: Maybe<TrelloListViewer>;
|
|
23759
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
|
+
};
|
|
23760
24347
|
export declare type TrelloListCardLimits = {
|
|
23761
24348
|
__typename?: 'TrelloListCardLimits';
|
|
23762
24349
|
openPerList?: Maybe<TrelloLimitProps>;
|
|
@@ -23773,6 +24360,9 @@ export declare type TrelloListEdge = {
|
|
|
23773
24360
|
cursor?: Maybe<Scalars['String']>;
|
|
23774
24361
|
node?: Maybe<TrelloList>;
|
|
23775
24362
|
};
|
|
24363
|
+
export declare type TrelloListFilterInput = {
|
|
24364
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
24365
|
+
};
|
|
23776
24366
|
export declare type TrelloListLimits = {
|
|
23777
24367
|
__typename?: 'TrelloListLimits';
|
|
23778
24368
|
cards?: Maybe<TrelloListCardLimits>;
|
|
@@ -23804,6 +24394,10 @@ export declare type TrelloListViewer = {
|
|
|
23804
24394
|
__typename?: 'TrelloListViewer';
|
|
23805
24395
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
23806
24396
|
};
|
|
24397
|
+
export declare type TrelloPlugin = {
|
|
24398
|
+
__typename?: 'TrelloPlugin';
|
|
24399
|
+
objectId: Scalars['ID'];
|
|
24400
|
+
};
|
|
23807
24401
|
export declare type TrelloQueryApi = {
|
|
23808
24402
|
__typename?: 'TrelloQueryApi';
|
|
23809
24403
|
board?: Maybe<TrelloBoard>;
|
|
@@ -23905,6 +24499,10 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
23905
24499
|
locale: Scalars['String'];
|
|
23906
24500
|
localizedDescription: Scalars['String'];
|
|
23907
24501
|
};
|
|
24502
|
+
export declare type TrelloUploadedBackground = {
|
|
24503
|
+
__typename?: 'TrelloUploadedBackground';
|
|
24504
|
+
objectId: Scalars['String'];
|
|
24505
|
+
};
|
|
23908
24506
|
export declare type TrelloWorkspace = Node & {
|
|
23909
24507
|
__typename?: 'TrelloWorkspace';
|
|
23910
24508
|
displayName: Scalars['String'];
|
|
@@ -24747,6 +25345,29 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
24747
25345
|
resolutionRate?: Maybe<Scalars['Float']>;
|
|
24748
25346
|
averageCsat?: Maybe<Scalars['Float']>;
|
|
24749
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
|
+
};
|
|
24750
25371
|
export declare type VirtualAgentJsmChatContext = {
|
|
24751
25372
|
__typename?: 'VirtualAgentJSMChatContext';
|
|
24752
25373
|
connectivityState: Scalars['String'];
|
|
@@ -24808,15 +25429,18 @@ export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
|
24808
25429
|
export declare type VirtualAgentProperties = {
|
|
24809
25430
|
__typename?: 'VirtualAgentProperties';
|
|
24810
25431
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
25432
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']>;
|
|
24811
25433
|
};
|
|
24812
25434
|
export declare type VirtualAgentPropertiesInput = {
|
|
24813
25435
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
25436
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']>;
|
|
24814
25437
|
};
|
|
24815
25438
|
export declare type VirtualAgentQueryApi = {
|
|
24816
25439
|
__typename?: 'VirtualAgentQueryApi';
|
|
24817
25440
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
24818
25441
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
24819
25442
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
25443
|
+
intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
24820
25444
|
};
|
|
24821
25445
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
24822
25446
|
jiraProjectId: Scalars['ID'];
|
|
@@ -24830,6 +25454,11 @@ export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
|
24830
25454
|
jiraProjectId: Scalars['ID'];
|
|
24831
25455
|
requestTypeId: Scalars['String'];
|
|
24832
25456
|
};
|
|
25457
|
+
export declare type VirtualAgentQueryApiIntentTemplatesByProjectIdArgs = {
|
|
25458
|
+
jiraProjectId: Scalars['ID'];
|
|
25459
|
+
first?: Maybe<Scalars['Int']>;
|
|
25460
|
+
after?: Maybe<Scalars['String']>;
|
|
25461
|
+
};
|
|
24833
25462
|
export declare type VirtualAgentQueryError = {
|
|
24834
25463
|
__typename?: 'VirtualAgentQueryError';
|
|
24835
25464
|
id: Scalars['ID'];
|
|
@@ -24851,6 +25480,7 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
24851
25480
|
isVirtualAgentChannel?: Maybe<Scalars['Boolean']>;
|
|
24852
25481
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']>;
|
|
24853
25482
|
channelLink?: Maybe<Scalars['String']>;
|
|
25483
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']>;
|
|
24854
25484
|
};
|
|
24855
25485
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
24856
25486
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
@@ -24867,6 +25497,7 @@ export declare type VirtualAgentStatisticsProjection = {
|
|
|
24867
25497
|
export declare type VirtualAgentUpdateChatChannelInput = {
|
|
24868
25498
|
halpChannelId: Scalars['String'];
|
|
24869
25499
|
isVirtualAgentChannel: Scalars['Boolean'];
|
|
25500
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']>;
|
|
24870
25501
|
};
|
|
24871
25502
|
export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
|
|
24872
25503
|
__typename?: 'VirtualAgentUpdateChatChannelPayload';
|