@forge/cli-shared 8.6.0-next.2 → 8.6.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
@@ -1,5 +1,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2d37370: Adding `configurable` to `external`, and extending `remotes` to support `userConfiguration`
8
+
9
+ ### Patch Changes
10
+
11
+ - 81d95b2: Rename context to Atlassian apps
12
+ - Updated dependencies [d507f66]
13
+ - Updated dependencies [2d37370]
14
+ - Updated dependencies [08e36d9]
15
+ - @forge/manifest@10.5.0
16
+
3
17
  ## 8.6.0-next.2
4
18
 
5
19
  ### Patch Changes
@@ -2245,6 +2245,7 @@ export declare type AgentStudioAgentPermissions = {
2245
2245
  canArchive: Scalars['Boolean']['output'];
2246
2246
  canDelete: Scalars['Boolean']['output'];
2247
2247
  canEdit: Scalars['Boolean']['output'];
2248
+ canManage: Scalars['Boolean']['output'];
2248
2249
  };
2249
2250
  export declare type AgentStudioAgentQueryInput = {
2250
2251
  name?: InputMaybe<Scalars['String']['input']>;
@@ -8146,6 +8147,9 @@ export declare enum ChannelPlatformChannelType {
8146
8147
  Ticket = "TICKET",
8147
8148
  Voice = "VOICE"
8148
8149
  }
8150
+ export declare type ChannelPlatformChatRequestDetailsRequest = {
8151
+ conversationId?: InputMaybe<Scalars['String']['input']>;
8152
+ };
8149
8153
  export declare type ChannelPlatformConnectDetails = {
8150
8154
  __typename?: 'ChannelPlatformConnectDetails';
8151
8155
  instanceCcpUrl?: Maybe<Scalars['String']['output']>;
@@ -8202,6 +8206,10 @@ export declare type ChannelPlatformGetChannelTokenResponse = {
8202
8206
  participantToken?: Maybe<Scalars['String']['output']>;
8203
8207
  region?: Maybe<Scalars['String']['output']>;
8204
8208
  };
8209
+ export declare type ChannelPlatformGetContactIdResponse = {
8210
+ __typename?: 'ChannelPlatformGetContactIdResponse';
8211
+ conversationId?: Maybe<Scalars['String']['output']>;
8212
+ };
8205
8213
  export declare type ChannelPlatformListQuickResponsesResult = {
8206
8214
  __typename?: 'ChannelPlatformListQuickResponsesResult';
8207
8215
  nextToken?: Maybe<Scalars['String']['output']>;
@@ -20699,6 +20707,15 @@ export declare type CplsContributorWorkEdge = {
20699
20707
  cursor: Scalars['String']['output'];
20700
20708
  node?: Maybe<CplsWorkData>;
20701
20709
  };
20710
+ export declare type CplsCreateCustomContributionTargetInput = {
20711
+ cloudId: Scalars['ID']['input'];
20712
+ name: Scalars['String']['input'];
20713
+ };
20714
+ export declare type CplsCreateCustomContributionTargetPayload = {
20715
+ __typename?: 'CplsCreateCustomContributionTargetPayload';
20716
+ errors: Array<MutationError>;
20717
+ node?: Maybe<CplsCustomContributionTarget>;
20718
+ };
20702
20719
  export declare type CplsCustomContributionTarget = {
20703
20720
  __typename?: 'CplsCustomContributionTarget';
20704
20721
  id: Scalars['ID']['output'];
@@ -20731,6 +20748,16 @@ export declare type CplsTimeCell = {
20731
20748
  export declare enum CplsTimeScaleType {
20732
20749
  Weekly = "WEEKLY"
20733
20750
  }
20751
+ export declare type CplsUpdateCustomContributionTargetInput = {
20752
+ cloudId: Scalars['ID']['input'];
20753
+ id: Scalars['ID']['input'];
20754
+ name: Scalars['String']['input'];
20755
+ };
20756
+ export declare type CplsUpdateCustomContributionTargetPayload = {
20757
+ __typename?: 'CplsUpdateCustomContributionTargetPayload';
20758
+ errors: Array<MutationError>;
20759
+ success: Scalars['Boolean']['output'];
20760
+ };
20734
20761
  export declare type CplsViewSettings = {
20735
20762
  __typename?: 'CplsViewSettings';
20736
20763
  alwaysShowNumbersInGraph: Scalars['Boolean']['output'];
@@ -24574,6 +24601,7 @@ export declare enum DevAiRovoDevSessionStatus {
24574
24601
  AgentWorking = "AGENT_WORKING",
24575
24602
  Archived = "ARCHIVED",
24576
24603
  Cloning = "CLONING",
24604
+ Deleted = "DELETED",
24577
24605
  Failed = "FAILED",
24578
24606
  Initialising = "INITIALISING",
24579
24607
  InProgress = "IN_PROGRESS",
@@ -60361,6 +60389,16 @@ export declare type JiraAddAttachmentPayload = {
60361
60389
  errors?: Maybe<Array<MutationError>>;
60362
60390
  success: Scalars['Boolean']['output'];
60363
60391
  };
60392
+ export declare type JiraAddAttachmentsInput = {
60393
+ fileIds: Array<Scalars['String']['input']>;
60394
+ issueId: Scalars['ID']['input'];
60395
+ };
60396
+ export declare type JiraAddAttachmentsPayload = Payload & {
60397
+ __typename?: 'JiraAddAttachmentsPayload';
60398
+ attachments?: Maybe<Array<Maybe<JiraAttachment>>>;
60399
+ errors?: Maybe<Array<MutationError>>;
60400
+ success: Scalars['Boolean']['output'];
60401
+ };
60364
60402
  export declare type JiraAddCommentInput = {
60365
60403
  content: JiraAdfInput;
60366
60404
  issueId: Scalars['ID']['input'];
@@ -70054,6 +70092,7 @@ export declare type JiraMutation = {
70054
70092
  __typename?: 'JiraMutation';
70055
70093
  activitySortOrder?: Maybe<JiraActivitySortOrderPayload>;
70056
70094
  addAttachment?: Maybe<JiraAddAttachmentPayload>;
70095
+ addAttachments?: Maybe<JiraAddAttachmentsPayload>;
70057
70096
  addComment?: Maybe<JiraAddCommentPayload>;
70058
70097
  addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
70059
70098
  addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
@@ -70285,6 +70324,9 @@ export declare type JiraMutationActivitySortOrderArgs = {
70285
70324
  export declare type JiraMutationAddAttachmentArgs = {
70286
70325
  input: JiraAddAttachmentInput;
70287
70326
  };
70327
+ export declare type JiraMutationAddAttachmentsArgs = {
70328
+ input: JiraAddAttachmentsInput;
70329
+ };
70288
70330
  export declare type JiraMutationAddCommentArgs = {
70289
70331
  input: JiraAddCommentInput;
70290
70332
  };
@@ -89177,8 +89219,10 @@ export declare type Mutation = {
89177
89219
  cpls_addContributions: CplsAddContributionsPayload;
89178
89220
  cpls_addContributorScopeAssociation: CplsAddContributorScopeAssociationPayload;
89179
89221
  cpls_addContributorWorkAssociation: CplsAddContributorWorkAssociationPayload;
89222
+ cpls_createCustomContributionTarget: CplsCreateCustomContributionTargetPayload;
89180
89223
  cpls_deleteContributorScopeAssociation: CplsDeleteContributorScopeAssociationPayload;
89181
89224
  cpls_deleteContributorWorkAssociation: CplsDeleteContributorWorkAssociationPayload;
89225
+ cpls_updateCustomContributionTarget: CplsUpdateCustomContributionTargetPayload;
89182
89226
  createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
89183
89227
  createApp?: Maybe<CreateAppResponse>;
89184
89228
  createAppContainer?: Maybe<CreateAppContainerPayload>;
@@ -90325,12 +90369,18 @@ export declare type MutationCpls_AddContributorScopeAssociationArgs = {
90325
90369
  export declare type MutationCpls_AddContributorWorkAssociationArgs = {
90326
90370
  input: CplsAddContributorWorkAssociationInput;
90327
90371
  };
90372
+ export declare type MutationCpls_CreateCustomContributionTargetArgs = {
90373
+ input: CplsCreateCustomContributionTargetInput;
90374
+ };
90328
90375
  export declare type MutationCpls_DeleteContributorScopeAssociationArgs = {
90329
90376
  input: CplsDeleteContributorScopeAssociationInput;
90330
90377
  };
90331
90378
  export declare type MutationCpls_DeleteContributorWorkAssociationArgs = {
90332
90379
  input: CplsDeleteContributorWorkAssociationInput;
90333
90380
  };
90381
+ export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
90382
+ input: CplsUpdateCustomContributionTargetInput;
90383
+ };
90334
90384
  export declare type MutationCreateAdminAnnouncementBannerArgs = {
90335
90385
  announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
90336
90386
  };
@@ -93746,27 +93796,28 @@ export declare enum Platform {
93746
93796
  Web = "WEB"
93747
93797
  }
93748
93798
  export declare enum PlaybookTemplateCategory {
93749
- DevOps = "DEV_OPS",
93750
93799
  Hrsm = "HRSM",
93751
- ItOperations = "IT_OPERATIONS",
93752
- ItServiceManagement = "IT_SERVICE_MANAGEMENT",
93753
- SecOps = "SEC_OPS"
93800
+ Itsm = "ITSM",
93801
+ ItOperations = "IT_OPERATIONS"
93754
93802
  }
93755
93803
  export declare enum PlaybookTemplateColor {
93756
93804
  Blue = "BLUE",
93757
93805
  Gray = "GRAY",
93758
93806
  Green = "GREEN",
93807
+ Lime = "LIME",
93808
+ Magenta = "MAGENTA",
93809
+ Orange = "ORANGE",
93759
93810
  Purple = "PURPLE",
93811
+ Teal = "TEAL",
93760
93812
  Yellow = "YELLOW"
93761
93813
  }
93762
93814
  export declare enum PlaybookTemplateIcon {
93763
- SpotBasicsRainstormIncidentIcon = "SPOT_BASICS_RAINSTORM_INCIDENT_ICON",
93764
- SpotErrorStateErrorColorIcon = "SPOT_ERROR_STATE_ERROR_COLOR_ICON",
93765
- SpotGeneralChat_5Icon = "SPOT_GENERAL_CHAT_5_ICON",
93766
- SpotGeneralDataCenterIcon = "SPOT_GENERAL_DATA_CENTER_ICON",
93767
- SpotGeneralNetworkIcon = "SPOT_GENERAL_NETWORK_ICON",
93768
- SpotGeneralScalability_4Icon = "SPOT_GENERAL_SCALABILITY_4_ICON",
93769
- SpotGeneralSearchErrorIcon = "SPOT_GENERAL_SEARCH_ERROR_ICON"
93815
+ ChangeManagement_4Icon = "CHANGE_MANAGEMENT_4_ICON",
93816
+ Chat_5Icon = "CHAT_5_ICON",
93817
+ DataPrivacyIcon = "DATA_PRIVACY_ICON",
93818
+ OnboardingIcon = "ONBOARDING_ICON",
93819
+ RainstormIncidentIcon = "RAINSTORM_INCIDENT_ICON",
93820
+ RefreshUpdateIcon = "REFRESH_UPDATE_ICON"
93770
93821
  }
93771
93822
  export declare type PokemonEntity = {
93772
93823
  __typename?: 'PokemonEntity';
@@ -94927,11 +94978,13 @@ export declare type Query = {
94927
94978
  catchupGetLastViewedTime?: Maybe<CatchupLastViewedTimeResponse>;
94928
94979
  catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
94929
94980
  ccp?: Maybe<CcpQueryApi>;
94981
+ channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
94930
94982
  channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
94931
94983
  channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
94932
94984
  channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
94933
94985
  channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
94934
94986
  channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
94987
+ channelPlatform_getConversationId?: Maybe<ChannelPlatformGetContactIdResponse>;
94935
94988
  channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
94936
94989
  channelPlatform_getQuickResponse?: Maybe<ChannelPlatformQuickResponse>;
94937
94990
  channelPlatform_getSurveyLink?: Maybe<ChannelPlatformSurveyLinkResponse>;
@@ -96131,6 +96184,9 @@ export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
96131
96184
  originalContentVersion: Scalars['Int']['input'];
96132
96185
  revisedContentVersion: Scalars['Int']['input'];
96133
96186
  };
96187
+ export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
96188
+ request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
96189
+ };
96134
96190
  export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
96135
96191
  request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
96136
96192
  };