@forge/cli-shared 8.8.2-next.2 → 8.8.2-next.4
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 +14 -0
- package/out/graphql/graphql-types.d.ts +156 -2
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +16 -10
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.8.2-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [78efec7]
|
|
8
|
+
- @forge/manifest@11.0.0-next.3
|
|
9
|
+
|
|
10
|
+
## 8.8.2-next.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [260eb24]
|
|
15
|
+
- @forge/manifest@11.0.0-next.2
|
|
16
|
+
|
|
3
17
|
## 8.8.2-next.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -5617,6 +5617,7 @@ export declare type AssetsDmObjectDetail = {
|
|
|
5617
5617
|
objectDataSources: Array<Scalars['JSON']['output']>;
|
|
5618
5618
|
pkColumnName: Scalars['String']['output'];
|
|
5619
5619
|
preferredAttributes: Array<Scalars['JSON']['output']>;
|
|
5620
|
+
unverifiedAttributes: Array<AssetsDmUnverifiedAttribute>;
|
|
5620
5621
|
unverifiedAttributesCount: Scalars['Int']['output'];
|
|
5621
5622
|
};
|
|
5622
5623
|
export declare type AssetsDmObjectHistory = {
|
|
@@ -5732,6 +5733,13 @@ export declare type AssetsDmObjectsListDataRows = {
|
|
|
5732
5733
|
pageInfo: AssetsDmObjectsListPageInfo;
|
|
5733
5734
|
totalCount: Scalars['Int']['output'];
|
|
5734
5735
|
};
|
|
5736
|
+
export declare type AssetsDmObjectsListDownloadResponse = {
|
|
5737
|
+
__typename?: 'AssetsDMObjectsListDownloadResponse';
|
|
5738
|
+
file?: Maybe<Scalars['String']['output']>;
|
|
5739
|
+
isReady: Scalars['Boolean']['output'];
|
|
5740
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5741
|
+
message: Scalars['String']['output'];
|
|
5742
|
+
};
|
|
5735
5743
|
export declare type AssetsDmObjectsListExportRequestCreateResponse = {
|
|
5736
5744
|
__typename?: 'AssetsDMObjectsListExportRequestCreateResponse';
|
|
5737
5745
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -5970,6 +5978,12 @@ export declare type AssetsDmTransformedDataResponse = {
|
|
|
5970
5978
|
filters: Array<AssetsDmTransformedDataFilter>;
|
|
5971
5979
|
pagination: AssetsDmPaginationInfo;
|
|
5972
5980
|
};
|
|
5981
|
+
export declare type AssetsDmUnverifiedAttribute = {
|
|
5982
|
+
__typename?: 'AssetsDMUnverifiedAttribute';
|
|
5983
|
+
issue: Scalars['String']['output'];
|
|
5984
|
+
preferredValue: Scalars['String']['output'];
|
|
5985
|
+
unverifiedValues: Scalars['String']['output'];
|
|
5986
|
+
};
|
|
5973
5987
|
export declare type AssetsIcon = {
|
|
5974
5988
|
__typename?: 'AssetsIcon';
|
|
5975
5989
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -9048,6 +9062,10 @@ export declare type ChangeOwnerWarning = {
|
|
|
9048
9062
|
contentId?: Maybe<Scalars['Long']['output']>;
|
|
9049
9063
|
message?: Maybe<Scalars['String']['output']>;
|
|
9050
9064
|
};
|
|
9065
|
+
export declare type ChannelPlatformAgentStatusResponse = {
|
|
9066
|
+
__typename?: 'ChannelPlatformAgentStatusResponse';
|
|
9067
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
9068
|
+
};
|
|
9051
9069
|
export declare type ChannelPlatformAttendee = {
|
|
9052
9070
|
__typename?: 'ChannelPlatformAttendee';
|
|
9053
9071
|
attendeeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -9116,6 +9134,7 @@ export declare type ChannelPlatformContact = {
|
|
|
9116
9134
|
assigneeAaid?: Maybe<Scalars['String']['output']>;
|
|
9117
9135
|
channel?: Maybe<ChannelPlatformChannelType>;
|
|
9118
9136
|
contactId?: Maybe<Scalars['ID']['output']>;
|
|
9137
|
+
phoneContact?: Maybe<ChannelPlatformPhoneContact>;
|
|
9119
9138
|
state?: Maybe<ChannelPlatformContactState>;
|
|
9120
9139
|
};
|
|
9121
9140
|
export declare enum ChannelPlatformContactState {
|
|
@@ -9191,6 +9210,10 @@ export declare enum ChannelPlatformParticipantRole {
|
|
|
9191
9210
|
Supervisor = "SUPERVISOR",
|
|
9192
9211
|
System = "SYSTEM"
|
|
9193
9212
|
}
|
|
9213
|
+
export declare type ChannelPlatformPhoneContact = {
|
|
9214
|
+
__typename?: 'ChannelPlatformPhoneContact';
|
|
9215
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
9216
|
+
};
|
|
9194
9217
|
export declare type ChannelPlatformPluginActionRequest = {
|
|
9195
9218
|
actionName?: InputMaybe<Scalars['String']['input']>;
|
|
9196
9219
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14926,7 +14949,8 @@ export declare type CompleteSprintResponse = MutationResponse & {
|
|
|
14926
14949
|
};
|
|
14927
14950
|
export declare enum ComplianceBoundary {
|
|
14928
14951
|
Commercial = "COMMERCIAL",
|
|
14929
|
-
FedrampModerate = "FEDRAMP_MODERATE"
|
|
14952
|
+
FedrampModerate = "FEDRAMP_MODERATE",
|
|
14953
|
+
IsolatedCloud = "ISOLATED_CLOUD"
|
|
14930
14954
|
}
|
|
14931
14955
|
export declare type ComponentApiUpload = {
|
|
14932
14956
|
__typename?: 'ComponentApiUpload';
|
|
@@ -22149,7 +22173,9 @@ export declare type ConvoAiAsyncAgentUpdate = {
|
|
|
22149
22173
|
__typename?: 'ConvoAiAsyncAgentUpdate';
|
|
22150
22174
|
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
22151
22175
|
agentMessageType: ConvoAiAgentMessageType;
|
|
22176
|
+
authorId?: Maybe<Scalars['String']['output']>;
|
|
22152
22177
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22178
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
22153
22179
|
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
22154
22180
|
messageTemplate?: Maybe<Scalars['String']['output']>;
|
|
22155
22181
|
status: ConvoAiAgentSessionStatus;
|
|
@@ -69697,6 +69723,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
69697
69723
|
configurationUrl?: Maybe<Scalars['URL']['output']>;
|
|
69698
69724
|
confluenceLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
69699
69725
|
confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
69726
|
+
confluenceRemoteIssueLinksField?: Maybe<JiraConfluenceRemoteIssueLinksField>;
|
|
69700
69727
|
connectActivityPanels?: Maybe<JiraIssueConnectActivityPanelConnection>;
|
|
69701
69728
|
connectBackgroundScripts?: Maybe<JiraIssueConnectBackgroundScriptConnection>;
|
|
69702
69729
|
connectOperations?: Maybe<JiraIssueConnectOperationConnection>;
|
|
@@ -85655,6 +85682,33 @@ export declare type KeyValueHierarchyMap = {
|
|
|
85655
85682
|
key?: Maybe<Scalars['String']['output']>;
|
|
85656
85683
|
value?: Maybe<Scalars['String']['output']>;
|
|
85657
85684
|
};
|
|
85685
|
+
export declare type KnowledgeBaseAgentArticleSearchConnection = {
|
|
85686
|
+
__typename?: 'KnowledgeBaseAgentArticleSearchConnection';
|
|
85687
|
+
edges?: Maybe<Array<KnowledgeBaseArticleEdge>>;
|
|
85688
|
+
nodes?: Maybe<Array<KnowledgeBaseArticle>>;
|
|
85689
|
+
pageInfo: PageInfo;
|
|
85690
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
85691
|
+
};
|
|
85692
|
+
export declare type KnowledgeBaseAgentArticleSearchInput = {
|
|
85693
|
+
cloudId: Scalars['ID']['input'];
|
|
85694
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
85695
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
85696
|
+
projectIdentifier: Scalars['String']['input'];
|
|
85697
|
+
searchFilters?: InputMaybe<KnowledgeBaseSearchFiltersInput>;
|
|
85698
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
85699
|
+
sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
|
|
85700
|
+
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
85701
|
+
};
|
|
85702
|
+
export declare type KnowledgeBaseAgentArticleSearchResponse = KnowledgeBaseAgentArticleSearchConnection | QueryError;
|
|
85703
|
+
export declare type KnowledgeBaseArticle = {
|
|
85704
|
+
__typename?: 'KnowledgeBaseArticle';
|
|
85705
|
+
id: Scalars['ID']['output'];
|
|
85706
|
+
metadata?: Maybe<KnowledgeBaseArticleMetadata>;
|
|
85707
|
+
source?: Maybe<KnowledgeBaseArticleSource>;
|
|
85708
|
+
sourceVisibility?: Maybe<Scalars['String']['output']>;
|
|
85709
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
85710
|
+
url?: Maybe<KnowledgeBaseArticleUrl>;
|
|
85711
|
+
};
|
|
85658
85712
|
export declare type KnowledgeBaseArticleCountError = {
|
|
85659
85713
|
__typename?: 'KnowledgeBaseArticleCountError';
|
|
85660
85714
|
container: Scalars['ID']['output'];
|
|
@@ -85667,6 +85721,17 @@ export declare type KnowledgeBaseArticleCountSource = {
|
|
|
85667
85721
|
container: Scalars['ID']['output'];
|
|
85668
85722
|
count: Scalars['Int']['output'];
|
|
85669
85723
|
};
|
|
85724
|
+
export declare type KnowledgeBaseArticleEdge = {
|
|
85725
|
+
__typename?: 'KnowledgeBaseArticleEdge';
|
|
85726
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
85727
|
+
node?: Maybe<KnowledgeBaseArticle>;
|
|
85728
|
+
};
|
|
85729
|
+
export declare type KnowledgeBaseArticleMetadata = {
|
|
85730
|
+
__typename?: 'KnowledgeBaseArticleMetadata';
|
|
85731
|
+
categoryDetails?: Maybe<Array<KnowledgeBaseCategoryDetail>>;
|
|
85732
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
85733
|
+
viewCount?: Maybe<Scalars['Int']['output']>;
|
|
85734
|
+
};
|
|
85670
85735
|
export declare type KnowledgeBaseArticleSearchInput = {
|
|
85671
85736
|
articleContainers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
85672
85737
|
cloudId: Scalars['ID']['input'];
|
|
@@ -85676,6 +85741,7 @@ export declare type KnowledgeBaseArticleSearchInput = {
|
|
|
85676
85741
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
85677
85742
|
sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
|
|
85678
85743
|
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
85744
|
+
sourceVisibility?: InputMaybe<Scalars['String']['input']>;
|
|
85679
85745
|
};
|
|
85680
85746
|
export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | KnowledgeBaseThirdPartyConnection | QueryError;
|
|
85681
85747
|
export declare enum KnowledgeBaseArticleSearchSortByKey {
|
|
@@ -85686,6 +85752,22 @@ export declare enum KnowledgeBaseArticleSearchSortOrder {
|
|
|
85686
85752
|
Asc = "ASC",
|
|
85687
85753
|
Desc = "DESC"
|
|
85688
85754
|
}
|
|
85755
|
+
export declare type KnowledgeBaseArticleSource = {
|
|
85756
|
+
__typename?: 'KnowledgeBaseArticleSource';
|
|
85757
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
85758
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
85759
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
85760
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
85761
|
+
};
|
|
85762
|
+
export declare type KnowledgeBaseArticleUrl = {
|
|
85763
|
+
__typename?: 'KnowledgeBaseArticleUrl';
|
|
85764
|
+
view?: Maybe<Scalars['String']['output']>;
|
|
85765
|
+
};
|
|
85766
|
+
export declare type KnowledgeBaseCategoryDetail = {
|
|
85767
|
+
__typename?: 'KnowledgeBaseCategoryDetail';
|
|
85768
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
85769
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
85770
|
+
};
|
|
85689
85771
|
export declare type KnowledgeBaseCrossSiteArticle = {
|
|
85690
85772
|
__typename?: 'KnowledgeBaseCrossSiteArticle';
|
|
85691
85773
|
friendlyLastModified?: Maybe<Scalars['String']['output']>;
|
|
@@ -85729,6 +85811,7 @@ export declare type KnowledgeBaseMutationApi = {
|
|
|
85729
85811
|
export declare type KnowledgeBaseMutationApiLinkKnowledgeBaseSourceArgs = {
|
|
85730
85812
|
container: Scalars['ID']['input'];
|
|
85731
85813
|
sourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
85814
|
+
sourceVisibility?: InputMaybe<Scalars['String']['input']>;
|
|
85732
85815
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
85733
85816
|
};
|
|
85734
85817
|
export declare type KnowledgeBaseMutationApiUnlinkKnowledgeBaseSourceArgs = {
|
|
@@ -85744,8 +85827,14 @@ export declare type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
|
|
|
85744
85827
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85745
85828
|
container: Scalars['ID']['input'];
|
|
85746
85829
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85830
|
+
sourceVisibility?: InputMaybe<Scalars['String']['input']>;
|
|
85747
85831
|
};
|
|
85748
85832
|
export declare type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
|
|
85833
|
+
export declare type KnowledgeBaseSearchFiltersInput = {
|
|
85834
|
+
sourceContainers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
85835
|
+
sourceVisibility?: InputMaybe<Array<KnowledgeBaseSourceVisibility>>;
|
|
85836
|
+
sources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
85837
|
+
};
|
|
85749
85838
|
export declare type KnowledgeBaseSource = {
|
|
85750
85839
|
__typename?: 'KnowledgeBaseSource';
|
|
85751
85840
|
containerAri: Scalars['ID']['output'];
|
|
@@ -85754,6 +85843,7 @@ export declare type KnowledgeBaseSource = {
|
|
|
85754
85843
|
name: Scalars['String']['output'];
|
|
85755
85844
|
permissions?: Maybe<KnowledgeBaseSourcePermissions>;
|
|
85756
85845
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
85846
|
+
sourceVisibility?: Maybe<Scalars['String']['output']>;
|
|
85757
85847
|
url: Scalars['String']['output'];
|
|
85758
85848
|
};
|
|
85759
85849
|
export declare type KnowledgeBaseSourcePermissionsArgs = {
|
|
@@ -85765,6 +85855,10 @@ export declare type KnowledgeBaseSourceEdge = {
|
|
|
85765
85855
|
node: KnowledgeBaseSource;
|
|
85766
85856
|
};
|
|
85767
85857
|
export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionQueryError | KnowledgeBaseSpacePermissionResponse;
|
|
85858
|
+
export declare enum KnowledgeBaseSourceVisibility {
|
|
85859
|
+
External = "EXTERNAL",
|
|
85860
|
+
Internal = "INTERNAL"
|
|
85861
|
+
}
|
|
85768
85862
|
export declare type KnowledgeBaseSources = {
|
|
85769
85863
|
__typename?: 'KnowledgeBaseSources';
|
|
85770
85864
|
edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
|
|
@@ -91271,6 +91365,10 @@ export declare type MercuryFundsMutationApi = {
|
|
|
91271
91365
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
91272
91366
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
91273
91367
|
deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
|
|
91368
|
+
updateInvestmentCategoryDescription?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
91369
|
+
updateInvestmentCategoryKey?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
91370
|
+
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
91371
|
+
updateInvestmentCategorySetName?: Maybe<MercuryUpdateInvestmentCategorySetPayload>;
|
|
91274
91372
|
};
|
|
91275
91373
|
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
91276
91374
|
input: MercuryCreateCostSubtypeInput;
|
|
@@ -91293,6 +91391,18 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
91293
91391
|
export declare type MercuryFundsMutationApiDeleteInvestmentCategorySetArgs = {
|
|
91294
91392
|
input: MercuryDeleteInvestmentCategorySetInput;
|
|
91295
91393
|
};
|
|
91394
|
+
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryDescriptionArgs = {
|
|
91395
|
+
input: MercuryUpdateInvestmentCategoryDescriptionInput;
|
|
91396
|
+
};
|
|
91397
|
+
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryKeyArgs = {
|
|
91398
|
+
input: MercuryUpdateInvestmentCategoryKeyInput;
|
|
91399
|
+
};
|
|
91400
|
+
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
91401
|
+
input: MercuryUpdateInvestmentCategoryNameInput;
|
|
91402
|
+
};
|
|
91403
|
+
export declare type MercuryFundsMutationApiUpdateInvestmentCategorySetNameArgs = {
|
|
91404
|
+
input: MercuryUpdateInvestmentCategorySetNameInput;
|
|
91405
|
+
};
|
|
91296
91406
|
export declare type MercuryFundsQueryApi = {
|
|
91297
91407
|
__typename?: 'MercuryFundsQueryApi';
|
|
91298
91408
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
@@ -93025,6 +93135,34 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
|
|
|
93025
93135
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
93026
93136
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
93027
93137
|
};
|
|
93138
|
+
export declare type MercuryUpdateInvestmentCategoryDescriptionInput = {
|
|
93139
|
+
description: Scalars['String']['input'];
|
|
93140
|
+
id: Scalars['ID']['input'];
|
|
93141
|
+
};
|
|
93142
|
+
export declare type MercuryUpdateInvestmentCategoryKeyInput = {
|
|
93143
|
+
id: Scalars['ID']['input'];
|
|
93144
|
+
key: Scalars['String']['input'];
|
|
93145
|
+
};
|
|
93146
|
+
export declare type MercuryUpdateInvestmentCategoryNameInput = {
|
|
93147
|
+
id: Scalars['ID']['input'];
|
|
93148
|
+
name: Scalars['String']['input'];
|
|
93149
|
+
};
|
|
93150
|
+
export declare type MercuryUpdateInvestmentCategoryPayload = Payload & {
|
|
93151
|
+
__typename?: 'MercuryUpdateInvestmentCategoryPayload';
|
|
93152
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93153
|
+
success: Scalars['Boolean']['output'];
|
|
93154
|
+
updatedInvestmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
93155
|
+
};
|
|
93156
|
+
export declare type MercuryUpdateInvestmentCategorySetNameInput = {
|
|
93157
|
+
id: Scalars['ID']['input'];
|
|
93158
|
+
name: Scalars['String']['input'];
|
|
93159
|
+
};
|
|
93160
|
+
export declare type MercuryUpdateInvestmentCategorySetPayload = Payload & {
|
|
93161
|
+
__typename?: 'MercuryUpdateInvestmentCategorySetPayload';
|
|
93162
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93163
|
+
success: Scalars['Boolean']['output'];
|
|
93164
|
+
updatedInvestmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
93165
|
+
};
|
|
93028
93166
|
export declare type MercuryUpdateMoveFundsChangeInput = {
|
|
93029
93167
|
amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
|
|
93030
93168
|
changeId: Scalars['ID']['input'];
|
|
@@ -99741,6 +99879,7 @@ export declare type Query = {
|
|
|
99741
99879
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
99742
99880
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
99743
99881
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
99882
|
+
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
99744
99883
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
99745
99884
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
99746
99885
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
@@ -99772,6 +99911,7 @@ export declare type Query = {
|
|
|
99772
99911
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
99773
99912
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
99774
99913
|
channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
|
|
99914
|
+
channelPlatform_getAgentStatus?: Maybe<ChannelPlatformAgentStatusResponse>;
|
|
99775
99915
|
channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
99776
99916
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
99777
99917
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
@@ -100170,6 +100310,7 @@ export declare type Query = {
|
|
|
100170
100310
|
kitsune_hello?: Maybe<Scalars['String']['output']>;
|
|
100171
100311
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
100172
100312
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
100313
|
+
knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
|
|
100173
100314
|
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
100174
100315
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
100175
100316
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
@@ -101061,6 +101202,11 @@ export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
101061
101202
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
101062
101203
|
workspaceId: Scalars['ID']['input'];
|
|
101063
101204
|
};
|
|
101205
|
+
export declare type QueryAssetsDm_ObjectsListDownloadArgs = {
|
|
101206
|
+
cloudId: Scalars['ID']['input'];
|
|
101207
|
+
name: Scalars['String']['input'];
|
|
101208
|
+
workspaceId: Scalars['ID']['input'];
|
|
101209
|
+
};
|
|
101064
101210
|
export declare type QueryAssetsDm_ObjectsReportAttributeByDsArgs = {
|
|
101065
101211
|
attributeName: Scalars['String']['input'];
|
|
101066
101212
|
cloudId: Scalars['ID']['input'];
|
|
@@ -102896,6 +103042,9 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
|
102896
103042
|
cloudId: Scalars['ID']['input'];
|
|
102897
103043
|
spaceAris: Array<Scalars['ID']['input']>;
|
|
102898
103044
|
};
|
|
103045
|
+
export declare type QueryKnowledgeBase_AgentSearchArgs = {
|
|
103046
|
+
searchInput?: InputMaybe<KnowledgeBaseAgentArticleSearchInput>;
|
|
103047
|
+
};
|
|
102899
103048
|
export declare type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
|
|
102900
103049
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
102901
103050
|
};
|
|
@@ -103701,6 +103850,9 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
|
|
|
103701
103850
|
export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
|
|
103702
103851
|
name: Scalars['String']['input'];
|
|
103703
103852
|
};
|
|
103853
|
+
export declare type QueryStakeholderComms_GetFileReadMediaTokenArgs = {
|
|
103854
|
+
fileId?: InputMaybe<Scalars['String']['input']>;
|
|
103855
|
+
};
|
|
103704
103856
|
export declare type QueryStakeholderComms_GetFlattenedStakeholdersListArgs = {
|
|
103705
103857
|
externalUserContextToken?: InputMaybe<Scalars['String']['input']>;
|
|
103706
103858
|
groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -106705,6 +106857,7 @@ export declare type SearchJiraIssueFilter = {
|
|
|
106705
106857
|
commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106706
106858
|
issueLabels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106707
106859
|
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106860
|
+
issueTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
106708
106861
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106709
106862
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106710
106863
|
statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
|
|
@@ -135865,7 +136018,7 @@ export declare type TrelloQuickCaptureNotification = {
|
|
|
135865
136018
|
objectId: Scalars['ID']['output'];
|
|
135866
136019
|
source?: Maybe<TrelloCardExternalSource>;
|
|
135867
136020
|
status?: Maybe<Scalars['String']['output']>;
|
|
135868
|
-
type
|
|
136021
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
135869
136022
|
};
|
|
135870
136023
|
export declare type TrelloQuickCaptureNotificationCleared = {
|
|
135871
136024
|
__typename?: 'TrelloQuickCaptureNotificationCleared';
|
|
@@ -139056,6 +139209,7 @@ export declare enum VendorType {
|
|
|
139056
139209
|
export declare type VerifyComponentAutoPopulationField = {
|
|
139057
139210
|
componentId: Scalars['ID']['input'];
|
|
139058
139211
|
fieldId: Scalars['String']['input'];
|
|
139212
|
+
isCorrect: Scalars['Boolean']['input'];
|
|
139059
139213
|
value: Scalars['String']['input'];
|
|
139060
139214
|
};
|
|
139061
139215
|
export declare type VerifyComponentAutoPopulationFieldPayload = Payload & {
|