@forge/cli-shared 8.23.1-next.0 → 8.23.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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.23.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [5beb8ad]
8
+ - Updated dependencies [f1f11f0]
9
+ - @forge/manifest@12.8.1-next.1
10
+
3
11
  ## 8.23.1-next.0
4
12
 
5
13
  ### Patch Changes
@@ -1056,7 +1056,7 @@ export declare type AvpAnalyticsMetricFilter = {
1056
1056
  export declare type AvpAnalyticsMetricFilterInput = {
1057
1057
  columnId: Scalars['ID']['input'];
1058
1058
  operator: AvpAnalyticsFilterOperator;
1059
- value: AvpAnalyticsFilterValueInput;
1059
+ value?: InputMaybe<AvpAnalyticsFilterValueInput>;
1060
1060
  };
1061
1061
  export declare type AvpAnalyticsMetricMetadata = {
1062
1062
  __typename?: 'AVPAnalyticsMetricMetadata';
@@ -8424,6 +8424,69 @@ export declare type AiManagedObjectUpdateInput = {
8424
8424
  status?: InputMaybe<AiManagedObjectStatus>;
8425
8425
  type?: InputMaybe<AiManagedObjectType>;
8426
8426
  };
8427
+ export declare type AiPlannerPlan = {
8428
+ __typename?: 'AiPlannerPlan';
8429
+ archivedAt?: Maybe<Scalars['String']['output']>;
8430
+ conversations: AiPlannerPlanConversationConnection;
8431
+ createdAt: Scalars['String']['output'];
8432
+ description?: Maybe<Scalars['String']['output']>;
8433
+ id: Scalars['String']['output'];
8434
+ name: Scalars['String']['output'];
8435
+ tasks: AiPlannerPlanTaskConnection;
8436
+ updatedAt: Scalars['String']['output'];
8437
+ };
8438
+ export declare type AiPlannerPlanConnection = {
8439
+ __typename?: 'AiPlannerPlanConnection';
8440
+ edges: Array<AiPlannerPlanEdge>;
8441
+ pageInfo: PageInfo;
8442
+ };
8443
+ export declare type AiPlannerPlanConversation = {
8444
+ __typename?: 'AiPlannerPlanConversation';
8445
+ archivedAt?: Maybe<Scalars['String']['output']>;
8446
+ createdAt: Scalars['String']['output'];
8447
+ id: Scalars['String']['output'];
8448
+ name?: Maybe<Scalars['String']['output']>;
8449
+ planId?: Maybe<Scalars['String']['output']>;
8450
+ };
8451
+ export declare type AiPlannerPlanConversationConnection = {
8452
+ __typename?: 'AiPlannerPlanConversationConnection';
8453
+ edges: Array<AiPlannerPlanConversationEdge>;
8454
+ pageInfo: PageInfo;
8455
+ };
8456
+ export declare type AiPlannerPlanConversationEdge = {
8457
+ __typename?: 'AiPlannerPlanConversationEdge';
8458
+ cursor: Scalars['String']['output'];
8459
+ node: AiPlannerPlanConversation;
8460
+ };
8461
+ export declare type AiPlannerPlanEdge = {
8462
+ __typename?: 'AiPlannerPlanEdge';
8463
+ cursor: Scalars['String']['output'];
8464
+ node: AiPlannerPlan;
8465
+ };
8466
+ export declare type AiPlannerPlanTask = {
8467
+ __typename?: 'AiPlannerPlanTask';
8468
+ archivedAt?: Maybe<Scalars['String']['output']>;
8469
+ createdAt: Scalars['String']['output'];
8470
+ description?: Maybe<Scalars['String']['output']>;
8471
+ id: Scalars['String']['output'];
8472
+ jiraIssueAri?: Maybe<Scalars['String']['output']>;
8473
+ name: Scalars['String']['output'];
8474
+ planId: Scalars['String']['output'];
8475
+ position: Scalars['Int']['output'];
8476
+ repo?: Maybe<Scalars['String']['output']>;
8477
+ status: Scalars['String']['output'];
8478
+ updatedAt: Scalars['String']['output'];
8479
+ };
8480
+ export declare type AiPlannerPlanTaskConnection = {
8481
+ __typename?: 'AiPlannerPlanTaskConnection';
8482
+ edges: Array<AiPlannerPlanTaskEdge>;
8483
+ pageInfo: PageInfo;
8484
+ };
8485
+ export declare type AiPlannerPlanTaskEdge = {
8486
+ __typename?: 'AiPlannerPlanTaskEdge';
8487
+ cursor: Scalars['String']['output'];
8488
+ node: AiPlannerPlanTask;
8489
+ };
8427
8490
  export declare enum AlertEventStatus {
8428
8491
  Acknowledged = "ACKNOWLEDGED",
8429
8492
  Closed = "CLOSED",
@@ -44876,6 +44939,7 @@ export declare type EcosystemRollingReleaseEdge = {
44876
44939
  };
44877
44940
  export declare type EcosystemRollingReleaseEligibility = {
44878
44941
  __typename?: 'EcosystemRollingReleaseEligibility';
44942
+ targetVersion: Scalars['String']['output'];
44879
44943
  targetVersionId: Scalars['ID']['output'];
44880
44944
  totalEligibleInstallationCount: Scalars['Int']['output'];
44881
44945
  versionEligibilityBreakdown: Array<EcosystemVersionEligibilityBreakdown>;
@@ -44948,7 +45012,7 @@ export declare type EcosystemVersionEligibilityBreakdown = {
44948
45012
  failingEligibilityRules: Array<Scalars['String']['output']>;
44949
45013
  installationCount: Scalars['Int']['output'];
44950
45014
  isEligible: Scalars['Boolean']['output'];
44951
- semVer: Scalars['String']['output'];
45015
+ sourceVersion: Scalars['String']['output'];
44952
45016
  sourceVersionId: Scalars['ID']['output'];
44953
45017
  };
44954
45018
  export declare type EditSprintInput = {
@@ -48602,6 +48666,9 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
48602
48666
  errorType?: Maybe<Scalars['String']['output']>;
48603
48667
  statusCode?: Maybe<Scalars['Int']['output']>;
48604
48668
  };
48669
+ export declare type GetAllPlansFilterInput = {
48670
+ ownerId?: InputMaybe<Scalars['String']['input']>;
48671
+ };
48605
48672
  export declare enum GlanceEnvironment {
48606
48673
  Dev = "DEV",
48607
48674
  Prod = "PROD",
@@ -107515,6 +107582,7 @@ export declare type GravityViewTemplateInput = {
107515
107582
  export declare type GravityViewTemplateMappingProposalsResult = GravityViewTemplateMappingProposalsSuccess | QueryError;
107516
107583
  export declare type GravityViewTemplateMappingProposalsSuccess = {
107517
107584
  __typename?: 'GravityViewTemplateMappingProposalsSuccess';
107585
+ conflictingFieldNames: Array<Scalars['String']['output']>;
107518
107586
  proposals: GravityRefMappingProposals;
107519
107587
  };
107520
107588
  export declare type GravityViewTemplatesResult = GravityViewTemplatesSuccess | QueryError;
@@ -139548,7 +139616,8 @@ export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
139548
139616
  export declare enum JsmChannelsConnectionType {
139549
139617
  Identitynow = "IDENTITYNOW",
139550
139618
  Intune = "INTUNE",
139551
- Okta = "OKTA"
139619
+ Okta = "OKTA",
139620
+ Salesforce = "SALESFORCE"
139552
139621
  }
139553
139622
  export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
139554
139623
  export declare type JsmChannelsCustomPlanGraphAttribute = {
@@ -139851,6 +139920,12 @@ export declare enum JsmChannelsRuleEvaluationStrategy {
139851
139920
  JqlOnly = "JQL_ONLY",
139852
139921
  RequestTypeFirst = "REQUEST_TYPE_FIRST"
139853
139922
  }
139923
+ export declare type JsmChannelsSalesforceTaskAgentConfiguration = {
139924
+ __typename?: 'JsmChannelsSalesforceTaskAgentConfiguration';
139925
+ accountId: Scalars['String']['output'];
139926
+ instanceUrl: Scalars['String']['output'];
139927
+ serviceKey: Scalars['String']['output'];
139928
+ };
139854
139929
  export declare type JsmChannelsServiceAgentResolutionContentSource = {
139855
139930
  __typename?: 'JsmChannelsServiceAgentResolutionContentSource';
139856
139931
  ari?: Maybe<Scalars['String']['output']>;
@@ -139914,7 +139989,7 @@ export declare type JsmChannelsTaskAgent = {
139914
139989
  displayName: Scalars['String']['output'];
139915
139990
  status: JsmChannelsTaskAgentStatus;
139916
139991
  };
139917
- export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration;
139992
+ export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration | JsmChannelsSalesforceTaskAgentConfiguration;
139918
139993
  export declare type JsmChannelsTaskAgentConfigurationInput = {
139919
139994
  configuration?: InputMaybe<Scalars['JSON']['input']>;
139920
139995
  status: JsmChannelsTaskAgentStatus;
@@ -141129,6 +141204,10 @@ export declare type KitsuneCustomerNode = {
141129
141204
  customer?: Maybe<CustomerServiceCsmCustomer>;
141130
141205
  customerId: Scalars['ID']['output'];
141131
141206
  };
141207
+ export declare type KitsuneDateRangeInput = {
141208
+ fromDate: Scalars['DateTime']['input'];
141209
+ toDate: Scalars['DateTime']['input'];
141210
+ };
141132
141211
  export declare type KitsuneDateValue = {
141133
141212
  __typename?: 'KitsuneDateValue';
141134
141213
  _id: Scalars['ID']['output'];
@@ -147349,6 +147428,7 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
147349
147428
  Hero = "HERO",
147350
147429
  NewestAiApps = "NEWEST_AI_APPS",
147351
147430
  PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
147431
+ ProductHero = "PRODUCT_HERO",
147352
147432
  RecommendedForYou = "RECOMMENDED_FOR_YOU",
147353
147433
  Spotlight = "SPOTLIGHT",
147354
147434
  Statistics = "STATISTICS",
@@ -147637,6 +147717,7 @@ export declare type MarketplaceStorePersonalisationContextInput = {
147637
147717
  export declare enum MarketplaceStorePersonalisationTargetSurface {
147638
147718
  StoreCategory = "STORE_CATEGORY",
147639
147719
  StoreCollection = "STORE_COLLECTION",
147720
+ StoreProduct = "STORE_PRODUCT",
147640
147721
  UnifiedStore = "UNIFIED_STORE"
147641
147722
  }
147642
147723
  export declare type MarketplaceStorePersonalisedContextAndLayoutInput = {
@@ -151961,6 +152042,7 @@ export declare type MercuryMutationApi = {
151961
152042
  removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
151962
152043
  removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
151963
152044
  reorderFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
152045
+ rerankFocusAreas?: Maybe<MercuryRerankFocusAreasPayload>;
151964
152046
  setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
151965
152047
  setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
151966
152048
  setPreference?: Maybe<MercurySetPreferencePayload>;
@@ -152076,6 +152158,9 @@ export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
152076
152158
  export declare type MercuryMutationApiReorderFocusAreaCustomFieldDefinitionOptionsArgs = {
152077
152159
  input: MercuryReorderCustomFieldDefinitionOptionsInput;
152078
152160
  };
152161
+ export declare type MercuryMutationApiRerankFocusAreasArgs = {
152162
+ input: MercuryRerankFocusAreasInput;
152163
+ };
152079
152164
  export declare type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
152080
152165
  input: MercurySetFocusAreaCustomFieldInput;
152081
152166
  };
@@ -153756,6 +153841,14 @@ export declare type MercuryRankedChangeProposal = {
153756
153841
  changeProposalsViewId: Scalars['ID']['output'];
153757
153842
  rank?: Maybe<Scalars['Int']['output']>;
153758
153843
  };
153844
+ export declare enum MercuryRankingContainerType {
153845
+ ParentFocusArea = "PARENT_FOCUS_AREA",
153846
+ Workspace = "WORKSPACE"
153847
+ }
153848
+ export declare enum MercuryRankingGroupType {
153849
+ Prioritized = "PRIORITIZED",
153850
+ Unprioritized = "UNPRIORITIZED"
153851
+ }
153759
153852
  export declare type MercuryRecreateOrganizationViewOrganizationsInput = {
153760
153853
  id: Scalars['ID']['input'];
153761
153854
  organizationIds: Array<Scalars['ID']['input']>;
@@ -153921,6 +154014,19 @@ export declare type MercuryRequestPositionsChangeInput = {
153921
154014
  positionsAmount?: InputMaybe<Scalars['Int']['input']>;
153922
154015
  targetFocusAreaId: Scalars['ID']['input'];
153923
154016
  };
154017
+ export declare type MercuryRerankFocusAreasInput = {
154018
+ afterFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
154019
+ containerId: Scalars['ID']['input'];
154020
+ containerType: MercuryRankingContainerType;
154021
+ focusAreaIds: Array<Scalars['ID']['input']>;
154022
+ groupType: MercuryRankingGroupType;
154023
+ };
154024
+ export declare type MercuryRerankFocusAreasPayload = Payload & {
154025
+ __typename?: 'MercuryRerankFocusAreasPayload';
154026
+ errors?: Maybe<Array<MutationError>>;
154027
+ focusAreas?: Maybe<Array<MercuryFocusArea>>;
154028
+ success: Scalars['Boolean']['output'];
154029
+ };
153924
154030
  export declare type MercuryRestrictedChangeProposal = {
153925
154031
  __typename?: 'MercuryRestrictedChangeProposal';
153926
154032
  id: Scalars['ID']['output'];
@@ -160928,6 +161034,8 @@ export declare type MutationKitsune_RemoveViewArgs = {
160928
161034
  viewAri: Scalars['ID']['input'];
160929
161035
  };
160930
161036
  export declare type MutationKitsune_ResyncFeedbackArgs = {
161037
+ dateRange?: InputMaybe<KitsuneDateRangeInput>;
161038
+ rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
160931
161039
  workspaceAri: Scalars['ID']['input'];
160932
161040
  };
160933
161041
  export declare type MutationKitsune_ResyncInsightsArgs = {
@@ -165435,6 +165543,7 @@ export declare type Query = {
165435
165543
  aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
165436
165544
  aiops_investigationById?: Maybe<AiOpsInvestigationQueryResult>;
165437
165545
  aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
165546
+ aiplanner_getAllPlans?: Maybe<AiPlannerPlanConnection>;
165438
165547
  allIndividualSpaces?: Maybe<SpaceInfoConnection>;
165439
165548
  allTemplates?: Maybe<PaginatedTemplateInfoList>;
165440
165549
  allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
@@ -167611,6 +167720,12 @@ export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
167611
167720
  entityId: Scalars['ID']['input'];
167612
167721
  entityType: AiOpsInvestigationSourceEntityType;
167613
167722
  };
167723
+ export declare type QueryAiplanner_GetAllPlansArgs = {
167724
+ after?: InputMaybe<Scalars['String']['input']>;
167725
+ cloudId: Scalars['String']['input'];
167726
+ filter?: InputMaybe<GetAllPlansFilterInput>;
167727
+ first?: InputMaybe<Scalars['Int']['input']>;
167728
+ };
167614
167729
  export declare type QueryAllIndividualSpacesArgs = {
167615
167730
  after?: InputMaybe<Scalars['String']['input']>;
167616
167731
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -168004,6 +168119,7 @@ export declare type QueryAssetsDm_ObjectClassMetadataArgs = {
168004
168119
  };
168005
168120
  export declare type QueryAssetsDm_ObjectClassesArgs = {
168006
168121
  cloudId: Scalars['ID']['input'];
168122
+ objectName?: InputMaybe<Scalars['String']['input']>;
168007
168123
  workspaceId: Scalars['ID']['input'];
168008
168124
  };
168009
168125
  export declare type QueryAssetsDm_ObjectDetailArgs = {
@@ -207820,6 +207936,7 @@ export declare enum TrelloCardExternalSource {
207820
207936
  BrowserExtensionLink = "BROWSER_EXTENSION_LINK",
207821
207937
  Confluence = "CONFLUENCE",
207822
207938
  Email = "EMAIL",
207939
+ GoogleChat = "GOOGLE_CHAT",
207823
207940
  Loom = "LOOM",
207824
207941
  Msteams = "MSTEAMS",
207825
207942
  Siri = "SIRI",
@@ -210400,6 +210517,7 @@ export declare enum TrelloPlannerBoardFilterMode {
210400
210517
  }
210401
210518
  export declare type TrelloPlannerBoardOverride = {
210402
210519
  __typename?: 'TrelloPlannerBoardOverride';
210520
+ boardBackground?: Maybe<TrelloBoardBackground>;
210403
210521
  boardId?: Maybe<Scalars['ID']['output']>;
210404
210522
  boardName?: Maybe<Scalars['String']['output']>;
210405
210523
  boardObjectId?: Maybe<Scalars['ID']['output']>;