@forge/cli-shared 5.4.1-next.4 → 5.4.1-next.5

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
@@ -1,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 5.4.1-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b0ad6d7]
8
+ - @forge/manifest@7.7.0-next.5
9
+
3
10
  ## 5.4.1-next.4
4
11
 
5
12
  ### Patch Changes
@@ -4085,6 +4085,7 @@ export declare type CompassComponentTypeEdge = {
4085
4085
  };
4086
4086
  export declare type CompassComponentTypeObject = {
4087
4087
  __typename?: 'CompassComponentTypeObject';
4088
+ componentCount?: Maybe<Scalars['Int']['output']>;
4088
4089
  description?: Maybe<Scalars['String']['output']>;
4089
4090
  fieldDefinitions?: Maybe<CompassFieldDefinitionsResult>;
4090
4091
  iconUrl?: Maybe<Scalars['String']['output']>;
@@ -37129,6 +37130,7 @@ export declare type HelpObjectStoreSearchInput = {
37129
37130
  portalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
37130
37131
  queryTerm: Scalars['String']['input'];
37131
37132
  resultLimit?: InputMaybe<Scalars['Int']['input']>;
37133
+ skipSearchingRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
37132
37134
  };
37133
37135
  export declare type HelpObjectStoreSearchMetaData = {
37134
37136
  __typename?: 'HelpObjectStoreSearchMetaData';
@@ -38715,6 +38717,7 @@ export declare type JiraAttachment = {
38715
38717
  mediaApiFileId?: Maybe<Scalars['String']['output']>;
38716
38718
  mediaReadToken?: Maybe<Scalars['String']['output']>;
38717
38719
  mimeType?: Maybe<Scalars['String']['output']>;
38720
+ parent?: Maybe<JiraAttachmentParentName>;
38718
38721
  parentId?: Maybe<Scalars['String']['output']>;
38719
38722
  parentName?: Maybe<Scalars['String']['output']>;
38720
38723
  };
@@ -38759,6 +38762,15 @@ export declare type JiraAttachmentFilterInput = {
38759
38762
  fileName?: InputMaybe<Scalars['String']['input']>;
38760
38763
  mimeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
38761
38764
  };
38765
+ export declare enum JiraAttachmentParentName {
38766
+ Comment = "COMMENT",
38767
+ Customfield = "CUSTOMFIELD",
38768
+ Description = "DESCRIPTION",
38769
+ Environment = "ENVIRONMENT",
38770
+ Form = "FORM",
38771
+ Issue = "ISSUE",
38772
+ Worklog = "WORKLOG"
38773
+ }
38762
38774
  export declare type JiraAttachmentSearchViewContext = {
38763
38775
  __typename?: 'JiraAttachmentSearchViewContext';
38764
38776
  matchesSearch: Scalars['Boolean']['output'];
@@ -45908,6 +45920,7 @@ export declare type JiraPlatformAttachment = JiraAttachment & Node & {
45908
45920
  mediaApiFileId?: Maybe<Scalars['String']['output']>;
45909
45921
  mediaReadToken?: Maybe<Scalars['String']['output']>;
45910
45922
  mimeType?: Maybe<Scalars['String']['output']>;
45923
+ parent?: Maybe<JiraAttachmentParentName>;
45911
45924
  parentId?: Maybe<Scalars['String']['output']>;
45912
45925
  parentName?: Maybe<Scalars['String']['output']>;
45913
45926
  searchViewContext?: Maybe<JiraAttachmentSearchViewContext>;
@@ -48668,6 +48681,7 @@ export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
48668
48681
  mediaApiFileId?: Maybe<Scalars['String']['output']>;
48669
48682
  mediaReadToken?: Maybe<Scalars['String']['output']>;
48670
48683
  mimeType?: Maybe<Scalars['String']['output']>;
48684
+ parent?: Maybe<JiraAttachmentParentName>;
48671
48685
  parentCommentVisibility?: Maybe<JiraServiceManagementCommentVisibility>;
48672
48686
  parentId?: Maybe<Scalars['String']['output']>;
48673
48687
  parentName?: Maybe<Scalars['String']['output']>;
@@ -50038,6 +50052,10 @@ export declare type JiraStoryPointEstimateFieldPayload = Payload & {
50038
50052
  field?: Maybe<JiraNumberField>;
50039
50053
  success: Scalars['Boolean']['output'];
50040
50054
  };
50055
+ export declare type JiraStreamHubResourceIdentifier = {
50056
+ __typename?: 'JiraStreamHubResourceIdentifier';
50057
+ resource?: Maybe<Scalars['ID']['output']>;
50058
+ };
50041
50059
  export declare type JiraSubmitBulkOperationInput = {
50042
50060
  bulkOperationInput: JiraBulkOperationInput;
50043
50061
  bulkOperationType: JiraBulkOperationType;
@@ -50060,6 +50078,9 @@ export declare type JiraSubscription = {
50060
50078
  onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
50061
50079
  onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
50062
50080
  onAutodevJobUpdated?: Maybe<JiraAutodevJobConnection>;
50081
+ onCalendarIssueCreated?: Maybe<JiraCalendar>;
50082
+ onCalendarIssueDeleted?: Maybe<JiraStreamHubResourceIdentifier>;
50083
+ onCalendarIssueUpdated?: Maybe<JiraCalendar>;
50063
50084
  onIssueCreatedByProject?: Maybe<JiraIssue>;
50064
50085
  onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
50065
50086
  onIssueExported?: Maybe<JiraIssueExportEvent>;
@@ -50073,7 +50094,7 @@ export declare type JiraSubscription = {
50073
50094
  };
50074
50095
  export declare type JiraSubscriptionBulkOperationProgressSubscriptionArgs = {
50075
50096
  cloudId: Scalars['ID']['input'];
50076
- taskId: Scalars['ID']['input'];
50097
+ subscriptionId: Scalars['ID']['input'];
50077
50098
  };
50078
50099
  export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
50079
50100
  cloudId: Scalars['ID']['input'];
@@ -50087,6 +50108,22 @@ export declare type JiraSubscriptionOnAutodevJobUpdatedArgs = {
50087
50108
  issueAri: Scalars['ID']['input'];
50088
50109
  jobId: Scalars['ID']['input'];
50089
50110
  };
50111
+ export declare type JiraSubscriptionOnCalendarIssueCreatedArgs = {
50112
+ cloudId: Scalars['ID']['input'];
50113
+ configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
50114
+ projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
50115
+ scope?: InputMaybe<JiraViewScopeInput>;
50116
+ };
50117
+ export declare type JiraSubscriptionOnCalendarIssueDeletedArgs = {
50118
+ cloudId: Scalars['ID']['input'];
50119
+ projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
50120
+ };
50121
+ export declare type JiraSubscriptionOnCalendarIssueUpdatedArgs = {
50122
+ cloudId: Scalars['ID']['input'];
50123
+ configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
50124
+ projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
50125
+ scope?: InputMaybe<JiraViewScopeInput>;
50126
+ };
50090
50127
  export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
50091
50128
  cloudId: Scalars['ID']['input'];
50092
50129
  projectId: Scalars['String']['input'];
@@ -53857,7 +53894,7 @@ export declare type MarketplaceConsoleAppSoftwareVersions = {
53857
53894
  };
53858
53895
  export declare type MarketplaceConsoleAppSoftwares = {
53859
53896
  __typename?: 'MarketplaceConsoleAppSoftwares';
53860
- appSoftwares?: Maybe<Array<MarketplaceConsoleAppSoftwareShort>>;
53897
+ appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
53861
53898
  };
53862
53899
  export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
53863
53900
  appId?: InputMaybe<Scalars['ID']['input']>;
@@ -66711,6 +66748,10 @@ export declare type TrelloArchiveCardPayload = Payload & {
66711
66748
  errors?: Maybe<Array<MutationError>>;
66712
66749
  success: Scalars['Boolean']['output'];
66713
66750
  };
66751
+ export declare type TrelloAtlassianIntelligence = {
66752
+ __typename?: 'TrelloAtlassianIntelligence';
66753
+ enabled?: Maybe<Scalars['Boolean']['output']>;
66754
+ };
66714
66755
  export declare type TrelloAttachment = {
66715
66756
  __typename?: 'TrelloAttachment';
66716
66757
  bytes?: Maybe<Scalars['Float']['output']>;
@@ -67312,6 +67353,11 @@ export declare type TrelloEnterprise = {
67312
67353
  displayName?: Maybe<Scalars['String']['output']>;
67313
67354
  id: Scalars['ID']['output'];
67314
67355
  objectId: Scalars['ID']['output'];
67356
+ prefs: TrelloEnterprisePrefs;
67357
+ };
67358
+ export declare type TrelloEnterprisePrefs = {
67359
+ __typename?: 'TrelloEnterprisePrefs';
67360
+ atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
67315
67361
  };
67316
67362
  export declare type TrelloImagePreview = {
67317
67363
  __typename?: 'TrelloImagePreview';
@@ -68246,9 +68292,13 @@ export declare type UnifiedMutationCreateLinkedAccountArgs = {
68246
68292
  connectedProductsReferenceId: Scalars['String']['input'];
68247
68293
  parentAccountInternalId: Scalars['String']['input'];
68248
68294
  };
68295
+ export declare type UnifiedMutationCreateParentAccountArgs = {
68296
+ parentAccountEmailId: Scalars['String']['input'];
68297
+ };
68249
68298
  export declare type UnifiedMutationCreateUnifiedSystemArgs = {
68250
68299
  aaid: Scalars['String']['input'];
68251
68300
  name?: InputMaybe<Scalars['String']['input']>;
68301
+ parentAccountEmailId: Scalars['String']['input'];
68252
68302
  unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
68253
68303
  };
68254
68304
  export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
@@ -68274,6 +68324,7 @@ export declare type UnifiedPageInfo = {
68274
68324
  export declare type UnifiedParentAccount = UnifiedINode & {
68275
68325
  __typename?: 'UnifiedParentAccount';
68276
68326
  id: Scalars['ID']['output'];
68327
+ parentAccountEmailId?: Maybe<Scalars['String']['output']>;
68277
68328
  parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
68278
68329
  };
68279
68330
  export declare type UnifiedParentAccountPayload = UnifiedPayload & {