@forge/cli-shared 3.12.0-next.7 → 3.13.0-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -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/graphql-types.d.ts +633 -39
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +74 -6
- package/out/ui/text.d.ts +10 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +10 -1
- 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 | DevOpsDocumentDetails | 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
|
};
|
|
@@ -6535,23 +6741,6 @@ export declare type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
6535
6741
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6536
6742
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6537
6743
|
};
|
|
6538
|
-
export declare type DevOpsDocument = {
|
|
6539
|
-
__typename?: 'DevOpsDocument';
|
|
6540
|
-
id: Scalars['ID'];
|
|
6541
|
-
parentId?: Maybe<Scalars['ID']>;
|
|
6542
|
-
providerId?: Maybe<Scalars['String']>;
|
|
6543
|
-
displayName?: Maybe<Scalars['String']>;
|
|
6544
|
-
type?: Maybe<DevOpsDocumentType>;
|
|
6545
|
-
url?: Maybe<Scalars['URL']>;
|
|
6546
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
|
6547
|
-
createdBy?: Maybe<User>;
|
|
6548
|
-
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6549
|
-
lastUpdatedBy?: Maybe<User>;
|
|
6550
|
-
collaborators?: Maybe<Array<Maybe<User>>>;
|
|
6551
|
-
byteSize?: Maybe<Scalars['Long']>;
|
|
6552
|
-
exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
|
|
6553
|
-
hasChildren?: Maybe<Scalars['Boolean']>;
|
|
6554
|
-
};
|
|
6555
6744
|
export declare enum DevOpsDocumentCategory {
|
|
6556
6745
|
Folder = "FOLDER",
|
|
6557
6746
|
Document = "DOCUMENT",
|
|
@@ -6567,6 +6756,23 @@ export declare enum DevOpsDocumentCategory {
|
|
|
6567
6756
|
Form = "FORM",
|
|
6568
6757
|
Other = "OTHER"
|
|
6569
6758
|
}
|
|
6759
|
+
export declare type DevOpsDocumentDetails = {
|
|
6760
|
+
__typename?: 'DevOpsDocumentDetails';
|
|
6761
|
+
id: Scalars['ID'];
|
|
6762
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
6763
|
+
providerId?: Maybe<Scalars['String']>;
|
|
6764
|
+
displayName?: Maybe<Scalars['String']>;
|
|
6765
|
+
type?: Maybe<DevOpsDocumentType>;
|
|
6766
|
+
url?: Maybe<Scalars['URL']>;
|
|
6767
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
6768
|
+
createdBy?: Maybe<User>;
|
|
6769
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6770
|
+
lastUpdatedBy?: Maybe<User>;
|
|
6771
|
+
collaborators?: Maybe<Array<Maybe<User>>>;
|
|
6772
|
+
byteSize?: Maybe<Scalars['Long']>;
|
|
6773
|
+
exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
|
|
6774
|
+
hasChildren?: Maybe<Scalars['Boolean']>;
|
|
6775
|
+
};
|
|
6570
6776
|
export declare type DevOpsDocumentExportLink = {
|
|
6571
6777
|
__typename?: 'DevOpsDocumentExportLink';
|
|
6572
6778
|
mimeType?: Maybe<Scalars['String']>;
|
|
@@ -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<DevOpsDocumentDetails>;
|
|
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,6 +20640,7 @@ 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",
|
|
@@ -21901,6 +22279,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
21901
22279
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
21902
22280
|
UpdatedPolicy = "UPDATED_POLICY",
|
|
21903
22281
|
UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
|
|
22282
|
+
UserAddedToBeacon = "USER_ADDED_TO_BEACON",
|
|
21904
22283
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
21905
22284
|
UserRevokedRole = "USER_REVOKED_ROLE",
|
|
21906
22285
|
VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
|
|
@@ -23311,6 +23690,7 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
23311
23690
|
export declare type Toolchain = {
|
|
23312
23691
|
__typename?: 'Toolchain';
|
|
23313
23692
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
23693
|
+
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
23314
23694
|
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
23315
23695
|
};
|
|
23316
23696
|
export declare type ToolchainContainersArgs = {
|
|
@@ -23321,25 +23701,36 @@ export declare type ToolchainContainersArgs = {
|
|
|
23321
23701
|
first?: Maybe<Scalars['Int']>;
|
|
23322
23702
|
after?: Maybe<Scalars['String']>;
|
|
23323
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
|
+
};
|
|
23324
23711
|
export declare type ToolchainSyncStatusArgs = {
|
|
23325
23712
|
cloudId: Scalars['ID'];
|
|
23326
23713
|
providerId: Scalars['String'];
|
|
23714
|
+
jiraProjectId: Scalars['ID'];
|
|
23327
23715
|
containerId: Scalars['ID'];
|
|
23328
23716
|
};
|
|
23329
23717
|
export declare type ToolchainAssociateContainerInput = {
|
|
23330
|
-
cloudId: Scalars['ID'];
|
|
23331
|
-
providerId: Scalars['ID'];
|
|
23332
23718
|
jiraProjectId: Scalars['ID'];
|
|
23333
23719
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
23334
23720
|
containerId: Scalars['ID'];
|
|
23335
23721
|
};
|
|
23336
|
-
export declare type
|
|
23337
|
-
|
|
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';
|
|
23338
23729
|
success: Scalars['Boolean'];
|
|
23339
23730
|
errors?: Maybe<Array<MutationError>>;
|
|
23340
|
-
|
|
23731
|
+
containers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
23341
23732
|
};
|
|
23342
|
-
export declare type ToolchainAssociatedContainer =
|
|
23733
|
+
export declare type ToolchainAssociatedContainer = DevOpsDocumentDetails;
|
|
23343
23734
|
export declare type ToolchainContainer = Node & {
|
|
23344
23735
|
__typename?: 'ToolchainContainer';
|
|
23345
23736
|
id: Scalars['ID'];
|
|
@@ -23370,27 +23761,30 @@ export declare type ToolchainCreateContainerPayload = Payload & {
|
|
|
23370
23761
|
createdContainer?: Maybe<ToolchainContainer>;
|
|
23371
23762
|
};
|
|
23372
23763
|
export declare type ToolchainDisassociateContainerInput = {
|
|
23373
|
-
cloudId: Scalars['ID'];
|
|
23374
|
-
providerId: Scalars['ID'];
|
|
23375
23764
|
jiraProjectId: Scalars['ID'];
|
|
23376
23765
|
containerId: Scalars['ID'];
|
|
23377
23766
|
};
|
|
23378
|
-
export declare type
|
|
23379
|
-
|
|
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';
|
|
23380
23774
|
success: Scalars['Boolean'];
|
|
23381
23775
|
errors?: Maybe<Array<MutationError>>;
|
|
23382
23776
|
};
|
|
23383
23777
|
export declare type ToolchainMutation = {
|
|
23384
23778
|
__typename?: 'ToolchainMutation';
|
|
23385
|
-
|
|
23386
|
-
|
|
23779
|
+
associateContainers?: Maybe<ToolchainAssociateContainersPayload>;
|
|
23780
|
+
disassociateContainers?: Maybe<ToolchainDisassociateContainersPayload>;
|
|
23387
23781
|
createContainer?: Maybe<ToolchainCreateContainerPayload>;
|
|
23388
23782
|
};
|
|
23389
|
-
export declare type
|
|
23390
|
-
input:
|
|
23783
|
+
export declare type ToolchainMutationAssociateContainersArgs = {
|
|
23784
|
+
input: ToolchainAssociateContainersInput;
|
|
23391
23785
|
};
|
|
23392
|
-
export declare type
|
|
23393
|
-
input:
|
|
23786
|
+
export declare type ToolchainMutationDisassociateContainersArgs = {
|
|
23787
|
+
input: ToolchainDisassociateContainersInput;
|
|
23394
23788
|
};
|
|
23395
23789
|
export declare type ToolchainMutationCreateContainerArgs = {
|
|
23396
23790
|
input: ToolchainCreateContainerInput;
|
|
@@ -23403,6 +23797,23 @@ export declare type ToolchainSyncStatus = {
|
|
|
23403
23797
|
__typename?: 'ToolchainSyncStatus';
|
|
23404
23798
|
state: ToolchainSyncState;
|
|
23405
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
|
+
};
|
|
23406
23817
|
export declare type TownsquareComment = Node & {
|
|
23407
23818
|
__typename?: 'TownsquareComment';
|
|
23408
23819
|
creator?: Maybe<User>;
|
|
@@ -23638,6 +24049,10 @@ export declare type TransitionFilter = {
|
|
|
23638
24049
|
from: Scalars['String'];
|
|
23639
24050
|
to: Scalars['String'];
|
|
23640
24051
|
};
|
|
24052
|
+
export declare type TrelloAttachment = {
|
|
24053
|
+
__typename?: 'TrelloAttachment';
|
|
24054
|
+
objectId: Scalars['String'];
|
|
24055
|
+
};
|
|
23641
24056
|
export declare type TrelloBoard = Node & {
|
|
23642
24057
|
__typename?: 'TrelloBoard';
|
|
23643
24058
|
closed: Scalars['Boolean'];
|
|
@@ -23654,7 +24069,7 @@ export declare type TrelloBoard = Node & {
|
|
|
23654
24069
|
};
|
|
23655
24070
|
export declare type TrelloBoardListsArgs = {
|
|
23656
24071
|
after?: Maybe<Scalars['String']>;
|
|
23657
|
-
filter?: Maybe<
|
|
24072
|
+
filter?: Maybe<TrelloListFilterInput>;
|
|
23658
24073
|
first?: Maybe<Scalars['Int']>;
|
|
23659
24074
|
};
|
|
23660
24075
|
export declare type TrelloBoardBackground = {
|
|
@@ -23718,13 +24133,17 @@ export declare type TrelloBoardViewer = {
|
|
|
23718
24133
|
};
|
|
23719
24134
|
export declare type TrelloCard = Node & {
|
|
23720
24135
|
__typename?: 'TrelloCard';
|
|
24136
|
+
badges?: Maybe<TrelloCardBadges>;
|
|
23721
24137
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24138
|
+
cover?: Maybe<TrelloCardCover>;
|
|
23722
24139
|
description?: Maybe<Scalars['String']>;
|
|
23723
24140
|
due?: Maybe<TrelloCardDueInfo>;
|
|
23724
24141
|
id: Scalars['ID'];
|
|
23725
24142
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
24143
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
23726
24144
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
23727
24145
|
limits?: Maybe<TrelloCardLimits>;
|
|
24146
|
+
list?: Maybe<TrelloList>;
|
|
23728
24147
|
location?: Maybe<TrelloCardLocation>;
|
|
23729
24148
|
name?: Maybe<Scalars['String']>;
|
|
23730
24149
|
objectId: Scalars['String'];
|
|
@@ -23737,21 +24156,101 @@ export declare type TrelloCard = Node & {
|
|
|
23737
24156
|
stickers?: Maybe<TrelloStickerConnection>;
|
|
23738
24157
|
url?: Maybe<Scalars['URL']>;
|
|
23739
24158
|
};
|
|
24159
|
+
export declare type TrelloCardLabelsArgs = {
|
|
24160
|
+
after?: Maybe<Scalars['String']>;
|
|
24161
|
+
first?: Maybe<Scalars['Int']>;
|
|
24162
|
+
};
|
|
23740
24163
|
export declare type TrelloCardStickersArgs = {
|
|
23741
24164
|
after?: Maybe<Scalars['String']>;
|
|
23742
24165
|
first?: Maybe<Scalars['Int']>;
|
|
23743
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
|
+
};
|
|
23744
24202
|
export declare type TrelloCardCoordinates = {
|
|
23745
24203
|
__typename?: 'TrelloCardCoordinates';
|
|
23746
24204
|
latitude: Scalars['Float'];
|
|
23747
24205
|
longitude: Scalars['Float'];
|
|
23748
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
|
+
}
|
|
23749
24243
|
export declare type TrelloCardDueInfo = {
|
|
23750
24244
|
__typename?: 'TrelloCardDueInfo';
|
|
23751
24245
|
at?: Maybe<Scalars['DateTime']>;
|
|
23752
24246
|
complete?: Maybe<Scalars['Boolean']>;
|
|
23753
24247
|
reminder?: Maybe<Scalars['Int']>;
|
|
23754
24248
|
};
|
|
24249
|
+
export declare type TrelloCardEdge = {
|
|
24250
|
+
__typename?: 'TrelloCardEdge';
|
|
24251
|
+
cursor?: Maybe<Scalars['String']>;
|
|
24252
|
+
node?: Maybe<TrelloCard>;
|
|
24253
|
+
};
|
|
23755
24254
|
export declare type TrelloCardLimit = {
|
|
23756
24255
|
__typename?: 'TrelloCardLimit';
|
|
23757
24256
|
perCard?: Maybe<TrelloLimitProps>;
|
|
@@ -23774,6 +24273,48 @@ export declare enum TrelloCardRole {
|
|
|
23774
24273
|
Mirror = "MIRROR",
|
|
23775
24274
|
Separator = "SEPARATOR"
|
|
23776
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
|
+
};
|
|
23777
24318
|
export declare type TrelloLimitProps = {
|
|
23778
24319
|
__typename?: 'TrelloLimitProps';
|
|
23779
24320
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -23784,16 +24325,25 @@ export declare type TrelloLimitProps = {
|
|
|
23784
24325
|
export declare type TrelloList = Node & {
|
|
23785
24326
|
__typename?: 'TrelloList';
|
|
23786
24327
|
board?: Maybe<TrelloBoard>;
|
|
24328
|
+
cards?: Maybe<TrelloCardConnection>;
|
|
23787
24329
|
closed: Scalars['Boolean'];
|
|
23788
24330
|
creationMethod: Scalars['String'];
|
|
23789
24331
|
id: Scalars['ID'];
|
|
23790
24332
|
limits?: Maybe<TrelloListLimits>;
|
|
23791
24333
|
name: Scalars['String'];
|
|
23792
24334
|
objectId: Scalars['String'];
|
|
23793
|
-
position: Scalars['
|
|
24335
|
+
position: Scalars['Float'];
|
|
23794
24336
|
softLimit?: Maybe<Scalars['Int']>;
|
|
23795
24337
|
viewer?: Maybe<TrelloListViewer>;
|
|
23796
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
|
+
};
|
|
23797
24347
|
export declare type TrelloListCardLimits = {
|
|
23798
24348
|
__typename?: 'TrelloListCardLimits';
|
|
23799
24349
|
openPerList?: Maybe<TrelloLimitProps>;
|
|
@@ -23810,6 +24360,9 @@ export declare type TrelloListEdge = {
|
|
|
23810
24360
|
cursor?: Maybe<Scalars['String']>;
|
|
23811
24361
|
node?: Maybe<TrelloList>;
|
|
23812
24362
|
};
|
|
24363
|
+
export declare type TrelloListFilterInput = {
|
|
24364
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
24365
|
+
};
|
|
23813
24366
|
export declare type TrelloListLimits = {
|
|
23814
24367
|
__typename?: 'TrelloListLimits';
|
|
23815
24368
|
cards?: Maybe<TrelloListCardLimits>;
|
|
@@ -23841,6 +24394,10 @@ export declare type TrelloListViewer = {
|
|
|
23841
24394
|
__typename?: 'TrelloListViewer';
|
|
23842
24395
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
23843
24396
|
};
|
|
24397
|
+
export declare type TrelloPlugin = {
|
|
24398
|
+
__typename?: 'TrelloPlugin';
|
|
24399
|
+
objectId: Scalars['ID'];
|
|
24400
|
+
};
|
|
23844
24401
|
export declare type TrelloQueryApi = {
|
|
23845
24402
|
__typename?: 'TrelloQueryApi';
|
|
23846
24403
|
board?: Maybe<TrelloBoard>;
|
|
@@ -23942,6 +24499,10 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
23942
24499
|
locale: Scalars['String'];
|
|
23943
24500
|
localizedDescription: Scalars['String'];
|
|
23944
24501
|
};
|
|
24502
|
+
export declare type TrelloUploadedBackground = {
|
|
24503
|
+
__typename?: 'TrelloUploadedBackground';
|
|
24504
|
+
objectId: Scalars['String'];
|
|
24505
|
+
};
|
|
23945
24506
|
export declare type TrelloWorkspace = Node & {
|
|
23946
24507
|
__typename?: 'TrelloWorkspace';
|
|
23947
24508
|
displayName: Scalars['String'];
|
|
@@ -24784,6 +25345,29 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
24784
25345
|
resolutionRate?: Maybe<Scalars['Float']>;
|
|
24785
25346
|
averageCsat?: Maybe<Scalars['Float']>;
|
|
24786
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
|
+
};
|
|
24787
25371
|
export declare type VirtualAgentJsmChatContext = {
|
|
24788
25372
|
__typename?: 'VirtualAgentJSMChatContext';
|
|
24789
25373
|
connectivityState: Scalars['String'];
|
|
@@ -24845,15 +25429,18 @@ export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
|
24845
25429
|
export declare type VirtualAgentProperties = {
|
|
24846
25430
|
__typename?: 'VirtualAgentProperties';
|
|
24847
25431
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
25432
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']>;
|
|
24848
25433
|
};
|
|
24849
25434
|
export declare type VirtualAgentPropertiesInput = {
|
|
24850
25435
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
25436
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']>;
|
|
24851
25437
|
};
|
|
24852
25438
|
export declare type VirtualAgentQueryApi = {
|
|
24853
25439
|
__typename?: 'VirtualAgentQueryApi';
|
|
24854
25440
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
24855
25441
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
24856
25442
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
25443
|
+
intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
24857
25444
|
};
|
|
24858
25445
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
24859
25446
|
jiraProjectId: Scalars['ID'];
|
|
@@ -24867,6 +25454,11 @@ export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
|
24867
25454
|
jiraProjectId: Scalars['ID'];
|
|
24868
25455
|
requestTypeId: Scalars['String'];
|
|
24869
25456
|
};
|
|
25457
|
+
export declare type VirtualAgentQueryApiIntentTemplatesByProjectIdArgs = {
|
|
25458
|
+
jiraProjectId: Scalars['ID'];
|
|
25459
|
+
first?: Maybe<Scalars['Int']>;
|
|
25460
|
+
after?: Maybe<Scalars['String']>;
|
|
25461
|
+
};
|
|
24870
25462
|
export declare type VirtualAgentQueryError = {
|
|
24871
25463
|
__typename?: 'VirtualAgentQueryError';
|
|
24872
25464
|
id: Scalars['ID'];
|
|
@@ -24888,6 +25480,7 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
24888
25480
|
isVirtualAgentChannel?: Maybe<Scalars['Boolean']>;
|
|
24889
25481
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']>;
|
|
24890
25482
|
channelLink?: Maybe<Scalars['String']>;
|
|
25483
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']>;
|
|
24891
25484
|
};
|
|
24892
25485
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
24893
25486
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
@@ -24904,6 +25497,7 @@ export declare type VirtualAgentStatisticsProjection = {
|
|
|
24904
25497
|
export declare type VirtualAgentUpdateChatChannelInput = {
|
|
24905
25498
|
halpChannelId: Scalars['String'];
|
|
24906
25499
|
isVirtualAgentChannel: Scalars['Boolean'];
|
|
25500
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']>;
|
|
24907
25501
|
};
|
|
24908
25502
|
export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
|
|
24909
25503
|
__typename?: 'VirtualAgentUpdateChatChannelPayload';
|