@forge/cli-shared 8.11.0 → 8.11.1-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
CHANGED
|
@@ -2859,11 +2859,13 @@ export declare type AgentStudioBatchEvaluationJob = {
|
|
|
2859
2859
|
createdAt: Scalars['String']['output'];
|
|
2860
2860
|
createdBy: Scalars['String']['output'];
|
|
2861
2861
|
datasetId: Scalars['String']['output'];
|
|
2862
|
+
datasetName?: Maybe<Scalars['String']['output']>;
|
|
2862
2863
|
id: Scalars['ID']['output'];
|
|
2863
2864
|
judgeConfigId: Scalars['String']['output'];
|
|
2864
2865
|
name: Scalars['String']['output'];
|
|
2865
2866
|
productType: AgentStudioProductType;
|
|
2866
2867
|
projectId: Scalars['String']['output'];
|
|
2868
|
+
versionNumber?: Maybe<Scalars['String']['output']>;
|
|
2867
2869
|
};
|
|
2868
2870
|
export declare type AgentStudioBatchEvaluationJobEdge = {
|
|
2869
2871
|
__typename?: 'AgentStudioBatchEvaluationJobEdge';
|
|
@@ -2874,12 +2876,14 @@ export declare type AgentStudioBatchEvaluationJobRun = {
|
|
|
2874
2876
|
__typename?: 'AgentStudioBatchEvaluationJobRun';
|
|
2875
2877
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
2876
2878
|
completedItems: Scalars['Int']['output'];
|
|
2879
|
+
datasetName?: Maybe<Scalars['String']['output']>;
|
|
2877
2880
|
id: Scalars['ID']['output'];
|
|
2878
2881
|
jobId: Scalars['ID']['output'];
|
|
2879
2882
|
runNumber?: Maybe<Scalars['Int']['output']>;
|
|
2880
2883
|
startedAt: Scalars['String']['output'];
|
|
2881
2884
|
status: AgentStudioJobRunStatus;
|
|
2882
2885
|
totalItems: Scalars['Int']['output'];
|
|
2886
|
+
versionNumber?: Maybe<Scalars['String']['output']>;
|
|
2883
2887
|
};
|
|
2884
2888
|
export declare type AgentStudioBatchEvaluationJobRunEdge = {
|
|
2885
2889
|
__typename?: 'AgentStudioBatchEvaluationJobRunEdge';
|
|
@@ -3201,6 +3205,7 @@ export declare type AgentStudioJsmKnowledgeFilterInput = {
|
|
|
3201
3205
|
};
|
|
3202
3206
|
export declare enum AgentStudioJudgementDecision {
|
|
3203
3207
|
Successful = "SUCCESSFUL",
|
|
3208
|
+
Unjudged = "UNJUDGED",
|
|
3204
3209
|
Unsuccessful = "UNSUCCESSFUL"
|
|
3205
3210
|
}
|
|
3206
3211
|
export declare type AgentStudioKnowledgeConfiguration = {
|
|
@@ -4388,6 +4393,7 @@ export declare type AppInstallationsByAppFilter = {
|
|
|
4388
4393
|
export declare type AppInstallationsByContextFilter = {
|
|
4389
4394
|
appInstallations: InstallationsListFilterByAppInstallationsWithCompulsoryContexts;
|
|
4390
4395
|
apps?: InputMaybe<InstallationsListFilterByApps>;
|
|
4396
|
+
includeOptionalLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4391
4397
|
includeRecoverable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4392
4398
|
};
|
|
4393
4399
|
export declare type AppInstallationsFilter = {
|
|
@@ -5374,6 +5380,37 @@ export declare enum AssetsDmCleansingReasonOrder {
|
|
|
5374
5380
|
ReasonAsc = "REASON_ASC",
|
|
5375
5381
|
ReasonDesc = "REASON_DESC"
|
|
5376
5382
|
}
|
|
5383
|
+
export declare type AssetsDmCleansingStatisticsDataSourceDetails = {
|
|
5384
|
+
__typename?: 'AssetsDMCleansingStatisticsDataSourceDetails';
|
|
5385
|
+
dataSourceId: Scalars['ID']['output'];
|
|
5386
|
+
excludedReasons: Array<AssetsDmCleansingStatisticsReasonsData>;
|
|
5387
|
+
filteredReasons: Array<AssetsDmCleansingStatisticsReasonsData>;
|
|
5388
|
+
name: Scalars['String']['output'];
|
|
5389
|
+
totalExcluded: Scalars['Int']['output'];
|
|
5390
|
+
totalFiltered: Scalars['Int']['output'];
|
|
5391
|
+
totalImportable: Scalars['Int']['output'];
|
|
5392
|
+
totalUploaded: Scalars['Int']['output'];
|
|
5393
|
+
};
|
|
5394
|
+
export declare type AssetsDmCleansingStatisticsObjectData = {
|
|
5395
|
+
__typename?: 'AssetsDMCleansingStatisticsObjectData';
|
|
5396
|
+
dataSources: Array<AssetsDmCleansingStatisticsDataSourceDetails>;
|
|
5397
|
+
name: Scalars['String']['output'];
|
|
5398
|
+
objectId: Scalars['ID']['output'];
|
|
5399
|
+
};
|
|
5400
|
+
export declare type AssetsDmCleansingStatisticsReasonsData = {
|
|
5401
|
+
__typename?: 'AssetsDMCleansingStatisticsReasonsData';
|
|
5402
|
+
count: Scalars['Int']['output'];
|
|
5403
|
+
dataSourceId: Scalars['ID']['output'];
|
|
5404
|
+
reason: Scalars['String']['output'];
|
|
5405
|
+
reasonCode: Scalars['Int']['output'];
|
|
5406
|
+
reasonId: Scalars['ID']['output'];
|
|
5407
|
+
};
|
|
5408
|
+
export declare type AssetsDmCleansingStatisticsResponse = {
|
|
5409
|
+
__typename?: 'AssetsDMCleansingStatisticsResponse';
|
|
5410
|
+
excludedReasons: Scalars['Int']['output'];
|
|
5411
|
+
filteredReasons: Scalars['Int']['output'];
|
|
5412
|
+
objects: Array<AssetsDmCleansingStatisticsObjectData>;
|
|
5413
|
+
};
|
|
5377
5414
|
export declare type AssetsDmDataSource = {
|
|
5378
5415
|
__typename?: 'AssetsDMDataSource';
|
|
5379
5416
|
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
@@ -6028,8 +6065,18 @@ export declare type AssetsDmGetDataSourceForCleansingResponse = {
|
|
|
6028
6065
|
export declare type AssetsDmJobDataColumn = {
|
|
6029
6066
|
__typename?: 'AssetsDMJobDataColumn';
|
|
6030
6067
|
columnName: Scalars['String']['output'];
|
|
6068
|
+
columnType?: Maybe<AssetsDmJobDataColumnType>;
|
|
6031
6069
|
isPrimary: Scalars['Boolean']['output'];
|
|
6032
6070
|
};
|
|
6071
|
+
export declare enum AssetsDmJobDataColumnType {
|
|
6072
|
+
Datetime = "DATETIME",
|
|
6073
|
+
String = "STRING"
|
|
6074
|
+
}
|
|
6075
|
+
export declare type AssetsDmJobDataFilterInput = {
|
|
6076
|
+
columnName: Scalars['String']['input'];
|
|
6077
|
+
columnType: AssetsDmJobDataColumnType;
|
|
6078
|
+
filterValue: Scalars['String']['input'];
|
|
6079
|
+
};
|
|
6033
6080
|
export declare type AssetsDmJobDataResponse = {
|
|
6034
6081
|
__typename?: 'AssetsDMJobDataResponse';
|
|
6035
6082
|
columns: Array<AssetsDmJobDataColumn>;
|
|
@@ -9697,6 +9744,11 @@ export declare enum ChannelPlatformChannelType {
|
|
|
9697
9744
|
Ticket = "TICKET",
|
|
9698
9745
|
Voice = "VOICE"
|
|
9699
9746
|
}
|
|
9747
|
+
export declare type ChannelPlatformChatClosureResponse = {
|
|
9748
|
+
__typename?: 'ChannelPlatformChatClosureResponse';
|
|
9749
|
+
isChatEnded?: Maybe<Scalars['Boolean']['output']>;
|
|
9750
|
+
isTicketPresent?: Maybe<Scalars['Boolean']['output']>;
|
|
9751
|
+
};
|
|
9700
9752
|
export declare type ChannelPlatformChatRequestDetailsRequest = {
|
|
9701
9753
|
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
9702
9754
|
};
|
|
@@ -9912,6 +9964,12 @@ export declare type ChannelPlatformSurveyLinkResponse = {
|
|
|
9912
9964
|
__typename?: 'ChannelPlatformSurveyLinkResponse';
|
|
9913
9965
|
surveyLink: Scalars['String']['output'];
|
|
9914
9966
|
};
|
|
9967
|
+
export declare type ChannelPlatformTicket = {
|
|
9968
|
+
__typename?: 'ChannelPlatformTicket';
|
|
9969
|
+
isTicketPresent?: Maybe<Scalars['Boolean']['output']>;
|
|
9970
|
+
ticketId?: Maybe<Scalars['String']['output']>;
|
|
9971
|
+
ticketKey?: Maybe<Scalars['String']['output']>;
|
|
9972
|
+
};
|
|
9915
9973
|
export declare type ChannelPlatformTokenResponse = ChannelPlatformGetChannelTokenResponse | ChannelPlatformSubmitTicketResponse;
|
|
9916
9974
|
export declare type ChannelPlatformTranscriptEntry = {
|
|
9917
9975
|
__typename?: 'ChannelPlatformTranscriptEntry';
|
|
@@ -24763,6 +24821,11 @@ export declare type CsmAiByodSourceInput = {
|
|
|
24763
24821
|
workspaceUrl: Scalars['String']['input'];
|
|
24764
24822
|
};
|
|
24765
24823
|
export declare type CsmAiCoachingContentResult = CsmAiAgentCoachingContent | QueryError;
|
|
24824
|
+
export declare type CsmAiCodeSnippet = {
|
|
24825
|
+
__typename?: 'CsmAiCodeSnippet';
|
|
24826
|
+
code: Scalars['String']['output'];
|
|
24827
|
+
language: CsmAiSnippetLanguage;
|
|
24828
|
+
};
|
|
24766
24829
|
export declare type CsmAiConfluenceKnowledgeFilter = {
|
|
24767
24830
|
__typename?: 'CsmAiConfluenceKnowledgeFilter';
|
|
24768
24831
|
parentFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -24827,6 +24890,12 @@ export declare type CsmAiDeleteKnowledgeSourcePayload = Payload & {
|
|
|
24827
24890
|
errors?: Maybe<Array<MutationError>>;
|
|
24828
24891
|
success: Scalars['Boolean']['output'];
|
|
24829
24892
|
};
|
|
24893
|
+
export declare type CsmAiGenerateClientKeyPayload = Payload & {
|
|
24894
|
+
__typename?: 'CsmAiGenerateClientKeyPayload';
|
|
24895
|
+
clientKey?: Maybe<CsmAiWidgetClientKey>;
|
|
24896
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24897
|
+
success: Scalars['Boolean']['output'];
|
|
24898
|
+
};
|
|
24830
24899
|
export declare type CsmAiHandoffConfig = {
|
|
24831
24900
|
__typename?: 'CsmAiHandoffConfig';
|
|
24832
24901
|
connectorConfiguration: CsmAiConnectorConfiguration;
|
|
@@ -24923,6 +24992,18 @@ export declare type CsmAiMultiVersionAgentVersionsArgs = {
|
|
|
24923
24992
|
versionType?: InputMaybe<Scalars['String']['input']>;
|
|
24924
24993
|
};
|
|
24925
24994
|
export declare type CsmAiMultiVersionAgentResult = CsmAiMultiVersionAgent | QueryError;
|
|
24995
|
+
export declare enum CsmAiSnippetAuthType {
|
|
24996
|
+
Anonymous = "ANONYMOUS",
|
|
24997
|
+
Authenticated = "AUTHENTICATED"
|
|
24998
|
+
}
|
|
24999
|
+
export declare enum CsmAiSnippetLanguage {
|
|
25000
|
+
Django = "DJANGO",
|
|
25001
|
+
Go = "GO",
|
|
25002
|
+
Java = "JAVA",
|
|
25003
|
+
Node = "NODE",
|
|
25004
|
+
Php = "PHP",
|
|
25005
|
+
Rails = "RAILS"
|
|
25006
|
+
}
|
|
24926
25007
|
export declare type CsmAiTicketingHandoff = {
|
|
24927
25008
|
__typename?: 'CsmAiTicketingHandoff';
|
|
24928
25009
|
formId: Scalars['ID']['output'];
|
|
@@ -25058,6 +25139,12 @@ export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
|
25058
25139
|
radius: CsmAiWidgetBrandingRadius;
|
|
25059
25140
|
space: CsmAiWidgetBrandingSpaceVariant;
|
|
25060
25141
|
};
|
|
25142
|
+
export declare type CsmAiWidgetClientKey = {
|
|
25143
|
+
__typename?: 'CsmAiWidgetClientKey';
|
|
25144
|
+
clientKeyId: Scalars['String']['output'];
|
|
25145
|
+
clientKeySecret: Scalars['String']['output'];
|
|
25146
|
+
enabled: Scalars['Boolean']['output'];
|
|
25147
|
+
};
|
|
25061
25148
|
export declare type CsmAiWidgetConfig = {
|
|
25062
25149
|
__typename?: 'CsmAiWidgetConfig';
|
|
25063
25150
|
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -25067,9 +25154,13 @@ export declare type CsmAiWidgetConfig = {
|
|
|
25067
25154
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
25068
25155
|
name?: Maybe<Scalars['String']['output']>;
|
|
25069
25156
|
position: CsmAiWidgetPosition;
|
|
25157
|
+
snippets?: Maybe<CsmAiWidgetSnippets>;
|
|
25070
25158
|
theme?: Maybe<CsmAiWidgetBrandingTheme>;
|
|
25071
25159
|
type: CsmAiWidgetType;
|
|
25072
25160
|
};
|
|
25161
|
+
export declare type CsmAiWidgetConfigSnippetsArgs = {
|
|
25162
|
+
authType: CsmAiSnippetAuthType;
|
|
25163
|
+
};
|
|
25073
25164
|
export declare type CsmAiWidgetConfigResult = CsmAiWidgetConfig | QueryError;
|
|
25074
25165
|
export declare type CsmAiWidgetIcon = {
|
|
25075
25166
|
__typename?: 'CsmAiWidgetIcon';
|
|
@@ -25089,6 +25180,11 @@ export declare enum CsmAiWidgetPosition {
|
|
|
25089
25180
|
Center = "CENTER",
|
|
25090
25181
|
Corner = "CORNER"
|
|
25091
25182
|
}
|
|
25183
|
+
export declare type CsmAiWidgetSnippets = {
|
|
25184
|
+
__typename?: 'CsmAiWidgetSnippets';
|
|
25185
|
+
clientSnippets: Array<CsmAiCodeSnippet>;
|
|
25186
|
+
serverSnippets: Array<CsmAiCodeSnippet>;
|
|
25187
|
+
};
|
|
25092
25188
|
export declare enum CsmAiWidgetType {
|
|
25093
25189
|
Embed = "EMBED",
|
|
25094
25190
|
SupportSite = "SUPPORT_SITE"
|
|
@@ -25524,6 +25620,7 @@ export declare type CustomerServiceCustomDetail = Node & {
|
|
|
25524
25620
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
25525
25621
|
editPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
25526
25622
|
id: Scalars['ID']['output'];
|
|
25623
|
+
isDefaultField?: Maybe<Scalars['Boolean']['output']>;
|
|
25527
25624
|
name: Scalars['String']['output'];
|
|
25528
25625
|
readPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
25529
25626
|
type: CustomerServiceCustomDetailType;
|
|
@@ -30957,6 +31054,7 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
30957
31054
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
30958
31055
|
id: Scalars['ID']['output'];
|
|
30959
31056
|
industry?: Maybe<Scalars['String']['output']>;
|
|
31057
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
30960
31058
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
30961
31059
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
30962
31060
|
lifeTimeValue?: Maybe<ExternalCustomerOrgLifeTimeValue>;
|
|
@@ -30964,6 +31062,7 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
30964
31062
|
parent?: Maybe<ExternalEntity>;
|
|
30965
31063
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
30966
31064
|
provider?: Maybe<ExternalProvider>;
|
|
31065
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
30967
31066
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
30968
31067
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
30969
31068
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -80898,6 +80997,7 @@ export declare enum JiraProjectPermissionType {
|
|
|
80898
80997
|
MoveIssues = "MOVE_ISSUES",
|
|
80899
80998
|
ResolveIssues = "RESOLVE_ISSUES",
|
|
80900
80999
|
ScheduleIssues = "SCHEDULE_ISSUES",
|
|
81000
|
+
ServicedeskAgent = "SERVICEDESK_AGENT",
|
|
80901
81001
|
SetIssueSecurity = "SET_ISSUE_SECURITY",
|
|
80902
81002
|
TransitionIssues = "TRANSITION_ISSUES",
|
|
80903
81003
|
UnarchiveIssues = "UNARCHIVE_ISSUES",
|
|
@@ -89835,7 +89935,7 @@ export declare type JsmConversation = {
|
|
|
89835
89935
|
expiresIn?: Maybe<Scalars['Long']['output']>;
|
|
89836
89936
|
helpseeker?: Maybe<Scalars['ID']['output']>;
|
|
89837
89937
|
id: Scalars['ID']['output'];
|
|
89838
|
-
issueId?: Maybe<Scalars['
|
|
89938
|
+
issueId?: Maybe<Scalars['ID']['output']>;
|
|
89839
89939
|
summary?: Maybe<Scalars['String']['output']>;
|
|
89840
89940
|
};
|
|
89841
89941
|
export declare type JsmConversationClaimConversationInput = {
|
|
@@ -91011,10 +91111,23 @@ export declare type KnowledgeDiscoveryPageInfo = {
|
|
|
91011
91111
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
91012
91112
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
91013
91113
|
};
|
|
91114
|
+
export declare type KnowledgeDiscoveryPersonData = {
|
|
91115
|
+
__typename?: 'KnowledgeDiscoveryPersonData';
|
|
91116
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
91117
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
91118
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
91119
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
91120
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
91121
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
91122
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
91123
|
+
organization?: Maybe<Scalars['String']['output']>;
|
|
91124
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
91125
|
+
};
|
|
91014
91126
|
export declare type KnowledgeDiscoveryPersonIntent = KnowledgeDiscoveryIntent & {
|
|
91015
91127
|
__typename?: 'KnowledgeDiscoveryPersonIntent';
|
|
91016
91128
|
classification: KnowledgeDiscoveryQueryClassification;
|
|
91017
91129
|
detectionType: KnowledgeDiscoveryDetectionType;
|
|
91130
|
+
persons?: Maybe<Array<Maybe<KnowledgeDiscoveryPersonData>>>;
|
|
91018
91131
|
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
91019
91132
|
transformedQuery: Scalars['String']['output'];
|
|
91020
91133
|
};
|
|
@@ -91377,9 +91490,19 @@ export declare type KnowledgeDiscoveryZeroQueries = {
|
|
|
91377
91490
|
export declare type KnowledgeDiscoveryZeroQueriesResult = KnowledgeDiscoveryZeroQueries | QueryError;
|
|
91378
91491
|
export declare type KnowledgeDiscoveryZeroQuery = {
|
|
91379
91492
|
__typename?: 'KnowledgeDiscoveryZeroQuery';
|
|
91493
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
91494
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
91495
|
+
dateRange?: Maybe<KnowledgeDiscoveryZeroQueryDateRange>;
|
|
91496
|
+
product?: Maybe<KnowledgeDiscoveryProduct>;
|
|
91380
91497
|
query: Scalars['String']['output'];
|
|
91381
91498
|
type: KnowledgeDiscoveryZeroQueryType;
|
|
91382
91499
|
};
|
|
91500
|
+
export declare enum KnowledgeDiscoveryZeroQueryDateRange {
|
|
91501
|
+
Past_7Days = "PAST_7_DAYS",
|
|
91502
|
+
Past_30Days = "PAST_30_DAYS",
|
|
91503
|
+
Today = "TODAY",
|
|
91504
|
+
Yesterday = "YESTERDAY"
|
|
91505
|
+
}
|
|
91383
91506
|
export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
91384
91507
|
ConfluencePagesCreated_7Days = "CONFLUENCE_PAGES_CREATED_7_DAYS",
|
|
91385
91508
|
ConfluencePagesCreatedCollaborator_30Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_30_DAYS",
|
|
@@ -94582,6 +94705,15 @@ export declare type MarketplaceStoreHostStatusResponse = {
|
|
|
94582
94705
|
pacUnavailable: Scalars['Boolean']['output'];
|
|
94583
94706
|
upmLicensedHostUsers: Scalars['Int']['output'];
|
|
94584
94707
|
};
|
|
94708
|
+
export declare type MarketplaceStoreImageMediaAsset = {
|
|
94709
|
+
__typename?: 'MarketplaceStoreImageMediaAsset';
|
|
94710
|
+
altText?: Maybe<Scalars['String']['output']>;
|
|
94711
|
+
fileName: Scalars['String']['output'];
|
|
94712
|
+
height: Scalars['Int']['output'];
|
|
94713
|
+
imageType: Scalars['String']['output'];
|
|
94714
|
+
uri: Scalars['String']['output'];
|
|
94715
|
+
width: Scalars['Int']['output'];
|
|
94716
|
+
};
|
|
94585
94717
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
94586
94718
|
appKey: Scalars['String']['input'];
|
|
94587
94719
|
chargeQuantity?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -94873,6 +95005,17 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
|
|
|
94873
95005
|
export declare type MarketplaceStoreProduct = {
|
|
94874
95006
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
94875
95007
|
};
|
|
95008
|
+
export declare type MarketplaceStoreProductListing = {
|
|
95009
|
+
__typename?: 'MarketplaceStoreProductListing';
|
|
95010
|
+
developerId: Scalars['ID']['output'];
|
|
95011
|
+
icon?: Maybe<MarketplaceStoreImageMediaAsset>;
|
|
95012
|
+
marketplaceAppId: Scalars['String']['output'];
|
|
95013
|
+
marketplaceAppName: Scalars['String']['output'];
|
|
95014
|
+
productId: Scalars['ID']['output'];
|
|
95015
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
95016
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
95017
|
+
vendorId: Scalars['String']['output'];
|
|
95018
|
+
};
|
|
94876
95019
|
export declare type MarketplaceStoreProductListingHighlight = {
|
|
94877
95020
|
__typename?: 'MarketplaceStoreProductListingHighlight';
|
|
94878
95021
|
caption?: Maybe<Scalars['String']['output']>;
|
|
@@ -95168,17 +95311,11 @@ export declare type MarketplaceStoreUserProfileResponse = {
|
|
|
95168
95311
|
name: Scalars['String']['output'];
|
|
95169
95312
|
picture: Scalars['String']['output'];
|
|
95170
95313
|
};
|
|
95171
|
-
export declare type MarketplaceStoreWatchedApp = {
|
|
95172
|
-
__typename?: 'MarketplaceStoreWatchedApp';
|
|
95173
|
-
appKey: Scalars['String']['output'];
|
|
95174
|
-
appName: Scalars['String']['output'];
|
|
95175
|
-
productId: Scalars['ID']['output'];
|
|
95176
|
-
};
|
|
95177
95314
|
export declare type MarketplaceStoreWatchedAppsResponse = {
|
|
95178
95315
|
__typename?: 'MarketplaceStoreWatchedAppsResponse';
|
|
95179
95316
|
limit?: Maybe<Scalars['Int']['output']>;
|
|
95180
95317
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
95181
|
-
|
|
95318
|
+
watchedApps?: Maybe<Array<MarketplaceStoreProductListing>>;
|
|
95182
95319
|
};
|
|
95183
95320
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
95184
95321
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
@@ -98879,8 +99016,14 @@ export declare type MercuryWorkspaceContext = {
|
|
|
98879
99016
|
activationId: Scalars['String']['output'];
|
|
98880
99017
|
aiEnabled: Scalars['Boolean']['output'];
|
|
98881
99018
|
cloudId: Scalars['String']['output'];
|
|
99019
|
+
settings?: Maybe<MercuryWorkspaceSettings>;
|
|
98882
99020
|
userPermissions?: Maybe<Array<MercuryPermission>>;
|
|
98883
99021
|
};
|
|
99022
|
+
export declare type MercuryWorkspaceSettings = {
|
|
99023
|
+
__typename?: 'MercuryWorkspaceSettings';
|
|
99024
|
+
laborCostEnabled: Scalars['Boolean']['output'];
|
|
99025
|
+
managedTeamsOnlyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
99026
|
+
};
|
|
98884
99027
|
export declare type MigrateComponentTypeInput = {
|
|
98885
99028
|
destinationTypeId: Scalars['ID']['input'];
|
|
98886
99029
|
sourceTypeId: Scalars['ID']['input'];
|
|
@@ -99225,6 +99368,7 @@ export declare type Mutation = {
|
|
|
99225
99368
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
99226
99369
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
99227
99370
|
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
99371
|
+
channelPlatform_endChatIfTicketIsNotPresent?: Maybe<ChannelPlatformChatClosureResponse>;
|
|
99228
99372
|
channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
|
|
99229
99373
|
channelPlatform_relayMessage?: Maybe<ChannelPlatformMutationStatus>;
|
|
99230
99374
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
@@ -99396,6 +99540,7 @@ export declare type Mutation = {
|
|
|
99396
99540
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
99397
99541
|
csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
|
|
99398
99542
|
csmAi_deleteKnowledgeSource?: Maybe<CsmAiDeleteKnowledgeSourcePayload>;
|
|
99543
|
+
csmAi_generateWidgetClientKey?: Maybe<CsmAiGenerateClientKeyPayload>;
|
|
99399
99544
|
csmAi_publishAgent?: Maybe<CsmAiAgentVersionPayload>;
|
|
99400
99545
|
csmAi_restoreAgentVersionAsDraft?: Maybe<CsmAiAgentVersionPayload>;
|
|
99401
99546
|
csmAi_restoreFromAgentVersion?: Maybe<CsmAiAgentVersionPayload>;
|
|
@@ -100438,6 +100583,9 @@ export declare type MutationChannelPlatform_DeleteQueuesArgs = {
|
|
|
100438
100583
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
100439
100584
|
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
100440
100585
|
};
|
|
100586
|
+
export declare type MutationChannelPlatform_EndChatIfTicketIsNotPresentArgs = {
|
|
100587
|
+
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
100588
|
+
};
|
|
100441
100589
|
export declare type MutationChannelPlatform_PerformPluginActionArgs = {
|
|
100442
100590
|
pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
|
|
100443
100591
|
};
|
|
@@ -101083,6 +101231,10 @@ export declare type MutationCsmAi_DeleteKnowledgeSourceArgs = {
|
|
|
101083
101231
|
csmAiKnowledgeSourceId: Scalars['ID']['input'];
|
|
101084
101232
|
helpCenterAri: Scalars['ID']['input'];
|
|
101085
101233
|
};
|
|
101234
|
+
export declare type MutationCsmAi_GenerateWidgetClientKeyArgs = {
|
|
101235
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
101236
|
+
widgetId: Scalars['ID']['input'];
|
|
101237
|
+
};
|
|
101086
101238
|
export declare type MutationCsmAi_PublishAgentArgs = {
|
|
101087
101239
|
csmAgentId: Scalars['ID']['input'];
|
|
101088
101240
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -105864,6 +106016,7 @@ export declare type Query = {
|
|
|
105864
106016
|
assetsDM_defaultAttributeMapping?: Maybe<AssetsDmDefaultAttributeMappingResponse>;
|
|
105865
106017
|
assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
|
|
105866
106018
|
assetsDM_getCleansingReasons?: Maybe<AssetsDmGetCleansingReasonsResponse>;
|
|
106019
|
+
assetsDM_getCleansingStatistics?: Maybe<AssetsDmCleansingStatisticsResponse>;
|
|
105867
106020
|
assetsDM_getDataSourceForCleansing?: Maybe<AssetsDmGetDataSourceForCleansingResponse>;
|
|
105868
106021
|
assetsDM_getMappingMatrix?: Maybe<AssetsDmMappingMatrixResponse>;
|
|
105869
106022
|
assetsDM_jobData?: Maybe<AssetsDmJobDataResponse>;
|
|
@@ -105937,6 +106090,7 @@ export declare type Query = {
|
|
|
105937
106090
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
105938
106091
|
channelPlatform_getQuickResponse?: Maybe<ChannelPlatformQuickResponse>;
|
|
105939
106092
|
channelPlatform_getSurveyLink?: Maybe<ChannelPlatformSurveyLinkResponse>;
|
|
106093
|
+
channelPlatform_getTicketDetails?: Maybe<ChannelPlatformTicket>;
|
|
105940
106094
|
channelPlatform_getTranscript?: Maybe<ChannelPlatformTranscriptResponse>;
|
|
105941
106095
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
105942
106096
|
channelPlatform_listQuickResponses?: Maybe<ChannelPlatformListQuickResponsesResult>;
|
|
@@ -107312,6 +107466,12 @@ export declare type QueryAssetsDm_GetCleansingReasonsArgs = {
|
|
|
107312
107466
|
reason?: InputMaybe<Scalars['String']['input']>;
|
|
107313
107467
|
workspaceId: Scalars['ID']['input'];
|
|
107314
107468
|
};
|
|
107469
|
+
export declare type QueryAssetsDm_GetCleansingStatisticsArgs = {
|
|
107470
|
+
cloudId: Scalars['ID']['input'];
|
|
107471
|
+
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
107472
|
+
objectClassId?: InputMaybe<Scalars['ID']['input']>;
|
|
107473
|
+
workspaceId: Scalars['ID']['input'];
|
|
107474
|
+
};
|
|
107315
107475
|
export declare type QueryAssetsDm_GetDataSourceForCleansingArgs = {
|
|
107316
107476
|
cloudId: Scalars['ID']['input'];
|
|
107317
107477
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -107324,6 +107484,7 @@ export declare type QueryAssetsDm_GetMappingMatrixArgs = {
|
|
|
107324
107484
|
};
|
|
107325
107485
|
export declare type QueryAssetsDm_JobDataArgs = {
|
|
107326
107486
|
cloudId: Scalars['ID']['input'];
|
|
107487
|
+
columnFilters?: InputMaybe<Array<AssetsDmJobDataFilterInput>>;
|
|
107327
107488
|
dataType: AssetsDmJobDataType;
|
|
107328
107489
|
jobId: Scalars['ID']['input'];
|
|
107329
107490
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
@@ -107606,6 +107767,9 @@ export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
|
107606
107767
|
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
107607
107768
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
107608
107769
|
};
|
|
107770
|
+
export declare type QueryChannelPlatform_GetTicketDetailsArgs = {
|
|
107771
|
+
conversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
107772
|
+
};
|
|
107609
107773
|
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
107610
107774
|
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
107611
107775
|
};
|
|
@@ -108688,6 +108852,7 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
108688
108852
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
108689
108853
|
};
|
|
108690
108854
|
export declare type QueryDevai_CheckEntitlementsArgs = {
|
|
108855
|
+
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
108691
108856
|
cloudId: Scalars['ID']['input'];
|
|
108692
108857
|
xid: Scalars['String']['input'];
|
|
108693
108858
|
};
|
|
@@ -137022,6 +137187,7 @@ export declare type TeamType = {
|
|
|
137022
137187
|
description?: Maybe<Scalars['String']['output']>;
|
|
137023
137188
|
id: Scalars['ID']['output'];
|
|
137024
137189
|
name: Scalars['String']['output'];
|
|
137190
|
+
state?: Maybe<TeamTypeState>;
|
|
137025
137191
|
teamScope: Scalars['ID']['output'];
|
|
137026
137192
|
verified?: Maybe<Scalars['Boolean']['output']>;
|
|
137027
137193
|
};
|
|
@@ -137045,6 +137211,10 @@ export declare type TeamTypeEdge = {
|
|
|
137045
137211
|
cursor: Scalars['String']['output'];
|
|
137046
137212
|
node?: Maybe<TeamType>;
|
|
137047
137213
|
};
|
|
137214
|
+
export declare enum TeamTypeState {
|
|
137215
|
+
Active = "ACTIVE",
|
|
137216
|
+
DeleteInProgress = "DELETE_IN_PROGRESS"
|
|
137217
|
+
}
|
|
137048
137218
|
export declare type TeamTypeUpdatePayload = {
|
|
137049
137219
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
137050
137220
|
name?: InputMaybe<Scalars['String']['input']>;
|