@forge/cli-shared 8.8.2-next.2 → 8.8.2-next.3
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
|
@@ -5732,6 +5732,13 @@ export declare type AssetsDmObjectsListDataRows = {
|
|
|
5732
5732
|
pageInfo: AssetsDmObjectsListPageInfo;
|
|
5733
5733
|
totalCount: Scalars['Int']['output'];
|
|
5734
5734
|
};
|
|
5735
|
+
export declare type AssetsDmObjectsListDownloadResponse = {
|
|
5736
|
+
__typename?: 'AssetsDMObjectsListDownloadResponse';
|
|
5737
|
+
file?: Maybe<Scalars['String']['output']>;
|
|
5738
|
+
isReady: Scalars['Boolean']['output'];
|
|
5739
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5740
|
+
message: Scalars['String']['output'];
|
|
5741
|
+
};
|
|
5735
5742
|
export declare type AssetsDmObjectsListExportRequestCreateResponse = {
|
|
5736
5743
|
__typename?: 'AssetsDMObjectsListExportRequestCreateResponse';
|
|
5737
5744
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -22149,7 +22156,9 @@ export declare type ConvoAiAsyncAgentUpdate = {
|
|
|
22149
22156
|
__typename?: 'ConvoAiAsyncAgentUpdate';
|
|
22150
22157
|
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
22151
22158
|
agentMessageType: ConvoAiAgentMessageType;
|
|
22159
|
+
authorId?: Maybe<Scalars['String']['output']>;
|
|
22152
22160
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22161
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
22153
22162
|
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
22154
22163
|
messageTemplate?: Maybe<Scalars['String']['output']>;
|
|
22155
22164
|
status: ConvoAiAgentSessionStatus;
|
|
@@ -99741,6 +99750,7 @@ export declare type Query = {
|
|
|
99741
99750
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
99742
99751
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
99743
99752
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
99753
|
+
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
99744
99754
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
99745
99755
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
99746
99756
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
@@ -101061,6 +101071,11 @@ export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
101061
101071
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
101062
101072
|
workspaceId: Scalars['ID']['input'];
|
|
101063
101073
|
};
|
|
101074
|
+
export declare type QueryAssetsDm_ObjectsListDownloadArgs = {
|
|
101075
|
+
cloudId: Scalars['ID']['input'];
|
|
101076
|
+
name: Scalars['String']['input'];
|
|
101077
|
+
workspaceId: Scalars['ID']['input'];
|
|
101078
|
+
};
|
|
101064
101079
|
export declare type QueryAssetsDm_ObjectsReportAttributeByDsArgs = {
|
|
101065
101080
|
attributeName: Scalars['String']['input'];
|
|
101066
101081
|
cloudId: Scalars['ID']['input'];
|
|
@@ -106705,6 +106720,7 @@ export declare type SearchJiraIssueFilter = {
|
|
|
106705
106720
|
commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106706
106721
|
issueLabels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106707
106722
|
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106723
|
+
issueTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
106708
106724
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106709
106725
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106710
106726
|
statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
|