@forge/cli-shared 4.0.0 → 4.0.1-next.1

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
+ ## 4.0.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d72f638]
8
+ - @forge/manifest@7.2.0-next.1
9
+
10
+ ## 4.0.1-next.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [9eee9ac]
15
+ - @forge/manifest@7.2.0-next.0
16
+
3
17
  ## 4.0.0
4
18
 
5
19
  ### Major Changes
@@ -9394,6 +9394,33 @@ export declare type DetachEventSourcePayload = Payload & {
9394
9394
  errors?: Maybe<Array<MutationError>>;
9395
9395
  success: Scalars['Boolean']['output'];
9396
9396
  };
9397
+ export declare type DevAi = {
9398
+ __typename?: 'DevAi';
9399
+ autofixConfigurations?: Maybe<DevAiAutofixConfigurationConnection>;
9400
+ };
9401
+ export declare type DevAiAutofixConfigurationsArgs = {
9402
+ after?: InputMaybe<Scalars['String']['input']>;
9403
+ before?: InputMaybe<Scalars['String']['input']>;
9404
+ first?: InputMaybe<Scalars['Int']['input']>;
9405
+ last?: InputMaybe<Scalars['Int']['input']>;
9406
+ repositoryUrls: Array<Scalars['URL']['input']>;
9407
+ workspaceId: Scalars['ID']['input'];
9408
+ };
9409
+ export declare type DevAiAutofixConfiguration = {
9410
+ __typename?: 'DevAiAutofixConfiguration';
9411
+ id: Scalars['ID']['output'];
9412
+ isEnabled?: Maybe<Scalars['Boolean']['output']>;
9413
+ };
9414
+ export declare type DevAiAutofixConfigurationConnection = {
9415
+ __typename?: 'DevAiAutofixConfigurationConnection';
9416
+ edges?: Maybe<Array<Maybe<DevAiAutofixConfigurationEdge>>>;
9417
+ pageInfo: PageInfo;
9418
+ };
9419
+ export declare type DevAiAutofixConfigurationEdge = {
9420
+ __typename?: 'DevAiAutofixConfigurationEdge';
9421
+ cursor: Scalars['String']['output'];
9422
+ node?: Maybe<DevAiAutofixConfiguration>;
9423
+ };
9397
9424
  export declare type DevOps = {
9398
9425
  __typename?: 'DevOps';
9399
9426
  ariGraph?: Maybe<AriGraph>;
@@ -26216,6 +26243,7 @@ export declare type HelpLayoutAnnouncementElementData = {
26216
26243
  __typename?: 'HelpLayoutAnnouncementElementData';
26217
26244
  header?: Maybe<Scalars['String']['output']>;
26218
26245
  message?: Maybe<Scalars['String']['output']>;
26246
+ userLanguageTag?: Maybe<Scalars['String']['output']>;
26219
26247
  };
26220
26248
  export declare type HelpLayoutAnnouncementInput = {
26221
26249
  visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
@@ -26362,6 +26390,7 @@ export declare type HelpLayoutHeroElementData = {
26362
26390
  __typename?: 'HelpLayoutHeroElementData';
26363
26391
  homePageTitle?: Maybe<Scalars['String']['output']>;
26364
26392
  useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
26393
+ userLanguageTag?: Maybe<Scalars['String']['output']>;
26365
26394
  };
26366
26395
  export declare type HelpLayoutHeroElementInput = {
26367
26396
  visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
@@ -26630,7 +26659,9 @@ export declare type HelpLayoutVisualConfig = {
26630
26659
  };
26631
26660
  export declare type HelpLayoutVisualConfigInput = {
26632
26661
  alignment?: InputMaybe<HelpLayoutAlignmentSettingsInput>;
26662
+ backgroundColor?: InputMaybe<Scalars['String']['input']>;
26633
26663
  backgroundImage?: InputMaybe<HelpLayoutBackgroundImageInput>;
26664
+ foregroundColor?: InputMaybe<Scalars['String']['input']>;
26634
26665
  hidden?: InputMaybe<Scalars['Boolean']['input']>;
26635
26666
  themeTemplateId?: InputMaybe<Scalars['String']['input']>;
26636
26667
  };
@@ -40153,6 +40184,8 @@ export declare type JsmChatChannelRequestTypeMapping = {
40153
40184
  channelId: Scalars['ID']['output'];
40154
40185
  channelName?: Maybe<Scalars['String']['output']>;
40155
40186
  channelType?: Maybe<Scalars['String']['output']>;
40187
+ channelUrl?: Maybe<Scalars['String']['output']>;
40188
+ isPrivate?: Maybe<Scalars['Boolean']['output']>;
40156
40189
  projectId?: Maybe<Scalars['String']['output']>;
40157
40190
  requestTypeId?: Maybe<Scalars['String']['output']>;
40158
40191
  requestTypeName?: Maybe<Scalars['String']['output']>;
@@ -40192,10 +40225,18 @@ export declare type JsmChatInitializeConfigResponse = {
40192
40225
  export declare type JsmChatMutation = {
40193
40226
  __typename?: 'JsmChatMutation';
40194
40227
  disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
40228
+ updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
40229
+ updateProjectSettings?: Maybe<JsmChatUpdateProjectSettingsOutput>;
40195
40230
  };
40196
40231
  export declare type JsmChatMutationDisconnectJiraProjectArgs = {
40197
40232
  input: JsmChatDisconnectJiraProjectInput;
40198
40233
  };
40234
+ export declare type JsmChatMutationUpdateChannelSettingsArgs = {
40235
+ input: JsmChatUpdateChannelSettingsInput;
40236
+ };
40237
+ export declare type JsmChatMutationUpdateProjectSettingsArgs = {
40238
+ input: JsmChatUpdateProjectSettingsInput;
40239
+ };
40199
40240
  export declare type JsmChatProjectSettings = {
40200
40241
  __typename?: 'JsmChatProjectSettings';
40201
40242
  agentAssignedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
@@ -40231,9 +40272,48 @@ export declare type JsmChatSlackConfig = {
40231
40272
  channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
40232
40273
  projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
40233
40274
  siteId: Scalars['ID']['output'];
40275
+ slackTeamDomain?: Maybe<Scalars['String']['output']>;
40234
40276
  slackTeamId?: Maybe<Scalars['String']['output']>;
40277
+ slackTeamName?: Maybe<Scalars['String']['output']>;
40278
+ slackTeamUrl?: Maybe<Scalars['String']['output']>;
40235
40279
  uninstalled?: Maybe<Scalars['Boolean']['output']>;
40236
40280
  };
40281
+ export declare type JsmChatUpdateChannelSettingsInput = {
40282
+ activationId: Scalars['String']['input'];
40283
+ channelId: Scalars['String']['input'];
40284
+ isDeflectionChannel: Scalars['Boolean']['input'];
40285
+ projectId: Scalars['String']['input'];
40286
+ requestTypeIds: Array<Scalars['String']['input']>;
40287
+ siteId: Scalars['String']['input'];
40288
+ teamId: Scalars['String']['input'];
40289
+ tenantId?: InputMaybe<Scalars['String']['input']>;
40290
+ };
40291
+ export declare type JsmChatUpdateChannelSettingsOutput = {
40292
+ __typename?: 'JsmChatUpdateChannelSettingsOutput';
40293
+ message: Scalars['String']['output'];
40294
+ status: Scalars['Boolean']['output'];
40295
+ };
40296
+ export declare type JsmChatUpdateProjectSettingsInput = {
40297
+ activationId: Scalars['String']['input'];
40298
+ projectId: Scalars['String']['input'];
40299
+ settings?: InputMaybe<JsmChatUpdatedProjectSettings>;
40300
+ siteId: Scalars['String']['input'];
40301
+ };
40302
+ export declare type JsmChatUpdateProjectSettingsOutput = {
40303
+ __typename?: 'JsmChatUpdateProjectSettingsOutput';
40304
+ message: Scalars['String']['output'];
40305
+ status: Scalars['Boolean']['output'];
40306
+ };
40307
+ export declare type JsmChatUpdatedProjectSettings = {
40308
+ agentAssignedMessageDisabled: Scalars['Boolean']['input'];
40309
+ agentIssueClosedMessageDisabled: Scalars['Boolean']['input'];
40310
+ agentThreadMessageDisabled: Scalars['Boolean']['input'];
40311
+ areRequesterThreadRepliesPrivate: Scalars['Boolean']['input'];
40312
+ hideQueueDuringTicketCreation: Scalars['Boolean']['input'];
40313
+ jsmApproversEnabled: Scalars['Boolean']['input'];
40314
+ requesterIssueClosedMessageDisabled: Scalars['Boolean']['input'];
40315
+ requesterThreadMessageDisabled: Scalars['Boolean']['input'];
40316
+ };
40237
40317
  export declare type JswMutation = {
40238
40318
  __typename?: 'JswMutation';
40239
40319
  deleteCard?: Maybe<DeleteCardOutput>;
@@ -40878,6 +40958,16 @@ export declare type MarketplaceStoreCollectionUsecasesValues = {
40878
40958
  title: Scalars['String']['output'];
40879
40959
  };
40880
40960
  export declare type MarketplaceStoreCurrentUserResponse = MarketplaceStoreAnonymousUser | MarketplaceStoreLoggedInUser;
40961
+ export declare type MarketplaceStoreDeveloperSpace = {
40962
+ __typename?: 'MarketplaceStoreDeveloperSpace';
40963
+ name: Scalars['String']['output'];
40964
+ status: MarketplaceStoreDeveloperSpaceStatus;
40965
+ };
40966
+ export declare enum MarketplaceStoreDeveloperSpaceStatus {
40967
+ Active = "ACTIVE",
40968
+ Archived = "ARCHIVED",
40969
+ Inactive = "INACTIVE"
40970
+ }
40881
40971
  export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
40882
40972
  __typename?: 'MarketplaceStoreHomePageFeaturedSection';
40883
40973
  description: Scalars['String']['output'];
@@ -41008,24 +41098,57 @@ export declare enum MarketplaceStorePartnerEnrollmentProgramValue {
41008
41098
  Platinum = "PLATINUM",
41009
41099
  Silver = "SILVER"
41010
41100
  }
41011
- export declare type MarketplaceStorePartnerProfileResponse = {
41012
- __typename?: 'MarketplaceStorePartnerProfileResponse';
41101
+ export declare type MarketplaceStorePartnerListing = {
41102
+ __typename?: 'MarketplaceStorePartnerListing';
41013
41103
  address?: Maybe<MarketplaceStorePartnerAddress>;
41014
41104
  contactDetails?: Maybe<MarketplaceStorePartnerContactDetails>;
41015
41105
  description?: Maybe<Scalars['String']['output']>;
41106
+ logoUrl?: Maybe<Scalars['String']['output']>;
41107
+ slug?: Maybe<Scalars['String']['output']>;
41108
+ supportAvailability?: Maybe<MarketplaceStorePartnerSupportAvailability>;
41109
+ supportContact?: Maybe<MarketplaceStorePartnerSupportContact>;
41110
+ };
41111
+ export declare type MarketplaceStorePartnerResponse = {
41112
+ __typename?: 'MarketplaceStorePartnerResponse';
41113
+ developerSpace: MarketplaceStoreDeveloperSpace;
41016
41114
  enrollments: Array<Maybe<MarketplaceStorePartnerEnrollment>>;
41017
41115
  id: Scalars['ID']['output'];
41018
- logoUrl?: Maybe<Scalars['String']['output']>;
41019
- name: Scalars['String']['output'];
41020
- supportDetails?: Maybe<MarketplaceStorePartnerSupportDetails>;
41116
+ listing?: Maybe<MarketplaceStorePartnerListing>;
41117
+ };
41118
+ export declare type MarketplaceStorePartnerSupportAvailability = {
41119
+ __typename?: 'MarketplaceStorePartnerSupportAvailability';
41120
+ days: Array<MarketplaceStorePartnerSupportAvailabilityDay>;
41121
+ holidays: Array<Maybe<MarketplaceStorePartnerSupportHoliday>>;
41122
+ range?: Maybe<MarketplaceStorePartnerSupportAvailabilityRange>;
41123
+ timezone: Scalars['String']['output'];
41021
41124
  };
41022
- export declare type MarketplaceStorePartnerSupportDetails = {
41023
- __typename?: 'MarketplaceStorePartnerSupportDetails';
41125
+ export declare enum MarketplaceStorePartnerSupportAvailabilityDay {
41126
+ Friday = "FRIDAY",
41127
+ Monday = "MONDAY",
41128
+ Saturday = "SATURDAY",
41129
+ Sunday = "SUNDAY",
41130
+ Thursday = "THURSDAY",
41131
+ Tuesday = "TUESDAY",
41132
+ Wednesday = "WEDNESDAY"
41133
+ }
41134
+ export declare type MarketplaceStorePartnerSupportAvailabilityRange = {
41135
+ __typename?: 'MarketplaceStorePartnerSupportAvailabilityRange';
41136
+ from?: Maybe<Scalars['String']['output']>;
41137
+ to?: Maybe<Scalars['String']['output']>;
41138
+ };
41139
+ export declare type MarketplaceStorePartnerSupportContact = {
41140
+ __typename?: 'MarketplaceStorePartnerSupportContact';
41024
41141
  email?: Maybe<Scalars['String']['output']>;
41025
41142
  name: Scalars['String']['output'];
41026
41143
  phone?: Maybe<Scalars['String']['output']>;
41027
41144
  url?: Maybe<Scalars['String']['output']>;
41028
41145
  };
41146
+ export declare type MarketplaceStorePartnerSupportHoliday = {
41147
+ __typename?: 'MarketplaceStorePartnerSupportHoliday';
41148
+ date: Scalars['String']['output'];
41149
+ repeatAnnually: Scalars['Boolean']['output'];
41150
+ title: Scalars['String']['output'];
41151
+ };
41029
41152
  export declare type MarketplaceStoreQueryApi = {
41030
41153
  __typename?: 'MarketplaceStoreQueryApi';
41031
41154
  category: MarketplaceStoreCategoryResponse;
@@ -41033,7 +41156,7 @@ export declare type MarketplaceStoreQueryApi = {
41033
41156
  currentUser: MarketplaceStoreCurrentUserResponse;
41034
41157
  homePage: MarketplaceStoreHomePageResponse;
41035
41158
  installAppStatus: MarketplaceStoreInstallAppResponse;
41036
- partnerProfile: MarketplaceStorePartnerProfileResponse;
41159
+ partner: MarketplaceStorePartnerResponse;
41037
41160
  };
41038
41161
  export declare type MarketplaceStoreQueryApiCategoryArgs = {
41039
41162
  slug: Scalars['String']['input'];
@@ -41047,7 +41170,7 @@ export declare type MarketplaceStoreQueryApiHomePageArgs = {
41047
41170
  export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
41048
41171
  id: Scalars['ID']['input'];
41049
41172
  };
41050
- export declare type MarketplaceStoreQueryApiPartnerProfileArgs = {
41173
+ export declare type MarketplaceStoreQueryApiPartnerArgs = {
41051
41174
  developerId?: InputMaybe<Scalars['ID']['input']>;
41052
41175
  vendorId: Scalars['ID']['input'];
41053
41176
  };
@@ -44168,6 +44291,7 @@ export declare type Query = {
44168
44291
  customerStories: ContentPlatformCustomerStorySearchConnection;
44169
44292
  customerStory?: Maybe<ContentPlatformCustomerStory>;
44170
44293
  customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
44294
+ devAi?: Maybe<DevAi>;
44171
44295
  devOps?: Maybe<DevOps>;
44172
44296
  devOpsMetrics?: Maybe<DevOpsMetrics>;
44173
44297
  devOpsService?: Maybe<DevOpsService>;
@@ -51614,6 +51738,7 @@ export declare type VirtualAgentRequestTypeConnectionStatus = {
51614
51738
  connectionStatus?: Maybe<Scalars['String']['output']>;
51615
51739
  hasRequiredFields?: Maybe<Scalars['Boolean']['output']>;
51616
51740
  hasUnsupportedFields?: Maybe<Scalars['Boolean']['output']>;
51741
+ isHiddenRequestType?: Maybe<Scalars['Boolean']['output']>;
51617
51742
  };
51618
51743
  export declare type VirtualAgentSlackChannel = {
51619
51744
  __typename?: 'VirtualAgentSlackChannel';