@forge/cli-shared 2.2.1-next.4 → 2.2.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
+ ## 2.2.1-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [f6901fd]
8
+ - @forge/manifest@3.1.0-next.5
9
+
3
10
  ## 2.2.1-next.4
4
11
 
5
12
  ### Patch Changes
@@ -3345,7 +3345,7 @@ export declare type ContentPlatformPracticePage = {
3345
3345
  __typename?: 'ContentPlatformPracticePage';
3346
3346
  name: Scalars['String'];
3347
3347
  tagline: Scalars['String'];
3348
- introTo: ContentPlatformIntroToPractice;
3348
+ introToPractice: ContentPlatformIntroToPractice;
3349
3349
  whatIs: ContentPlatformChunkWhatIs;
3350
3350
  benefits?: Maybe<ContentPlatformChunkBenefits>;
3351
3351
  deepDive?: Maybe<ContentPlatformChunkDeepDive>;
@@ -3354,6 +3354,16 @@ export declare type ContentPlatformPracticePage = {
3354
3354
  howTo?: Maybe<ContentPlatformChunkHowTo>;
3355
3355
  practice: ContentPlatformWhatPractice;
3356
3356
  };
3357
+ export declare type ContentPlatformPracticePagesConnection = {
3358
+ __typename?: 'ContentPlatformPracticePagesConnection';
3359
+ pageInfo: PageInfo;
3360
+ edges: Array<ContentPlatformPracticePagesEdge>;
3361
+ };
3362
+ export declare type ContentPlatformPracticePagesEdge = {
3363
+ __typename?: 'ContentPlatformPracticePagesEdge';
3364
+ node: ContentPlatformPracticePage;
3365
+ cursor: Scalars['String'];
3366
+ };
3357
3367
  export declare type ContentPlatformReleaseNote = {
3358
3368
  __typename?: 'ContentPlatformReleaseNote';
3359
3369
  releaseNoteId: Scalars['String'];
@@ -3949,6 +3959,10 @@ export declare type CreatePolarisViewSetPayload = Payload & {
3949
3959
  errors?: Maybe<Array<MutationError>>;
3950
3960
  node?: Maybe<PolarisViewSet>;
3951
3961
  };
3962
+ export declare type CreateRankingListInput = {
3963
+ listId: Scalars['ID'];
3964
+ items?: Maybe<Array<Scalars['String']>>;
3965
+ };
3952
3966
  export declare type CreateSprintInput = {
3953
3967
  boardId: Scalars['ID'];
3954
3968
  };
@@ -10620,8 +10634,10 @@ export declare type Mutation = {
10620
10634
  deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
10621
10635
  jira?: Maybe<JiraMutation>;
10622
10636
  updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
10637
+ roadmaps?: Maybe<RoadmapsMutation>;
10623
10638
  appStorage?: Maybe<AppStorageMutation>;
10624
10639
  updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
10640
+ polaris?: Maybe<PolarisMutationNamespace>;
10625
10641
  createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
10626
10642
  deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
10627
10643
  resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
@@ -11928,6 +11944,10 @@ export declare type PolarisMatrixConfig = {
11928
11944
  __typename?: 'PolarisMatrixConfig';
11929
11945
  axes?: Maybe<Array<PolarisMatrixAxis>>;
11930
11946
  };
11947
+ export declare type PolarisMutationNamespace = {
11948
+ __typename?: 'PolarisMutationNamespace';
11949
+ ranking?: Maybe<PolarisRankingMutationNamespace>;
11950
+ };
11931
11951
  export declare type PolarisPlay = {
11932
11952
  __typename?: 'PolarisPlay';
11933
11953
  id: Scalars['ID'];
@@ -11999,6 +12019,55 @@ export declare type PolarisProjectTemplate = {
11999
12019
  __typename?: 'PolarisProjectTemplate';
12000
12020
  ideas?: Maybe<Scalars['JSON']>;
12001
12021
  };
12022
+ export declare type PolarisQueryNamespace = {
12023
+ __typename?: 'PolarisQueryNamespace';
12024
+ ranking?: Maybe<PolarisRankingQueryNamespace>;
12025
+ };
12026
+ export declare type PolarisRankingMutationNamespace = {
12027
+ __typename?: 'PolarisRankingMutationNamespace';
12028
+ createList?: Maybe<RankingDiffPayload>;
12029
+ deleteList?: Maybe<RankingDiffPayload>;
12030
+ makeFirst?: Maybe<RankingDiffPayload>;
12031
+ makeLast?: Maybe<RankingDiffPayload>;
12032
+ makeBefore?: Maybe<RankingDiffPayload>;
12033
+ makeAfter?: Maybe<RankingDiffPayload>;
12034
+ makeUnranked?: Maybe<RankingDiffPayload>;
12035
+ };
12036
+ export declare type PolarisRankingMutationNamespaceCreateListArgs = {
12037
+ input: CreateRankingListInput;
12038
+ };
12039
+ export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
12040
+ listId: Scalars['ID'];
12041
+ };
12042
+ export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
12043
+ listId: Scalars['ID'];
12044
+ id: Scalars['ID'];
12045
+ };
12046
+ export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
12047
+ listId: Scalars['ID'];
12048
+ id: Scalars['ID'];
12049
+ };
12050
+ export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
12051
+ listId: Scalars['ID'];
12052
+ refId: Scalars['ID'];
12053
+ id: Scalars['ID'];
12054
+ };
12055
+ export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
12056
+ listId: Scalars['ID'];
12057
+ refId: Scalars['ID'];
12058
+ id: Scalars['ID'];
12059
+ };
12060
+ export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
12061
+ listId: Scalars['ID'];
12062
+ id: Scalars['ID'];
12063
+ };
12064
+ export declare type PolarisRankingQueryNamespace = {
12065
+ __typename?: 'PolarisRankingQueryNamespace';
12066
+ list?: Maybe<Array<Maybe<RankItem>>>;
12067
+ };
12068
+ export declare type PolarisRankingQueryNamespaceListArgs = {
12069
+ listId: Scalars['ID'];
12070
+ };
12002
12071
  export declare enum PolarisRefreshError {
12003
12072
  NeedAuth = "NEED_AUTH",
12004
12073
  InvalidSnippet = "INVALID_SNIPPET",
@@ -12284,7 +12353,7 @@ export declare type Query = {
12284
12353
  opsgenie?: Maybe<OpsgenieQuery>;
12285
12354
  releaseNotes: ContentPlatformReleaseNotesConnection;
12286
12355
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
12287
- practicePages: Array<ContentPlatformPracticePage>;
12356
+ practicePages: ContentPlatformPracticePagesConnection;
12288
12357
  practicePage: ContentPlatformPracticePage;
12289
12358
  apps?: Maybe<AppConnection>;
12290
12359
  app?: Maybe<App>;
@@ -12346,6 +12415,7 @@ export declare type Query = {
12346
12415
  polarisCollabToken?: Maybe<PolarisDelegationToken>;
12347
12416
  polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
12348
12417
  polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
12418
+ polaris?: Maybe<PolarisQueryNamespace>;
12349
12419
  dvcs?: Maybe<DvcsQuery>;
12350
12420
  appActiveTunnels?: Maybe<AppTunnelDefinitions>;
12351
12421
  webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
@@ -12397,6 +12467,10 @@ export declare type QueryReleaseNoteArgs = {
12397
12467
  id: Scalars['String'];
12398
12468
  publishedOnly?: Maybe<Scalars['Boolean']>;
12399
12469
  };
12470
+ export declare type QueryPracticePagesArgs = {
12471
+ after?: Maybe<Scalars['String']>;
12472
+ first?: Maybe<Scalars['Int']>;
12473
+ };
12400
12474
  export declare type QueryPracticePageArgs = {
12401
12475
  id: Scalars['String'];
12402
12476
  };
@@ -12671,6 +12745,17 @@ export declare type RankColumnOutput = MutationResponse & {
12671
12745
  success: Scalars['Boolean'];
12672
12746
  message: Scalars['String'];
12673
12747
  };
12748
+ export declare type RankItem = {
12749
+ __typename?: 'RankItem';
12750
+ id: Scalars['ID'];
12751
+ rank: Scalars['Float'];
12752
+ };
12753
+ export declare type RankingDiffPayload = {
12754
+ __typename?: 'RankingDiffPayload';
12755
+ added?: Maybe<Array<RankItem>>;
12756
+ changed?: Maybe<Array<RankItem>>;
12757
+ deleted?: Maybe<Array<RankItem>>;
12758
+ };
12674
12759
  export declare enum RateLimitingCurrency {
12675
12760
  TestingService = "TESTING_SERVICE",
12676
12761
  ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
@@ -12823,6 +12908,21 @@ export declare type RoadmapExternalConfiguration = {
12823
12908
  epicNameField?: Maybe<Scalars['ID']>;
12824
12909
  sprintField?: Maybe<Scalars['ID']>;
12825
12910
  };
12911
+ export declare type RoadmapFeatureToggleInput = {
12912
+ sourceARI: Scalars['ID'];
12913
+ enabled: Scalars['Boolean'];
12914
+ };
12915
+ export declare type RoadmapFeatureToggleOutput = {
12916
+ __typename?: 'RoadmapFeatureToggleOutput';
12917
+ enabled: Scalars['Boolean'];
12918
+ isCrossProject: Scalars['Boolean'];
12919
+ };
12920
+ export declare type RoadmapFeatureTogglePayload = Payload & {
12921
+ __typename?: 'RoadmapFeatureTogglePayload';
12922
+ success: Scalars['Boolean'];
12923
+ errors?: Maybe<Array<MutationError>>;
12924
+ output?: Maybe<RoadmapFeatureToggleOutput>;
12925
+ };
12826
12926
  export declare type RoadmapItem = {
12827
12927
  __typename?: 'RoadmapItem';
12828
12928
  id: Scalars['ID'];
@@ -12895,6 +12995,11 @@ export declare type RoadmapMetadata = {
12895
12995
  hasExceededIssueLimit: Scalars['Boolean'];
12896
12996
  corruptedIssueCount: Scalars['Int'];
12897
12997
  };
12998
+ export declare type RoadmapMutationErrorExtension = MutationErrorExtension & {
12999
+ __typename?: 'RoadmapMutationErrorExtension';
13000
+ statusCode?: Maybe<Scalars['Int']>;
13001
+ errorType?: Maybe<Scalars['String']>;
13002
+ };
12898
13003
  export declare enum RoadmapPaletteColor {
12899
13004
  Purple = "PURPLE",
12900
13005
  Blue = "BLUE",
@@ -13009,6 +13114,13 @@ export declare type RoadmapViewSettings = {
13009
13114
  period: Scalars['Int'];
13010
13115
  showCompleted: Scalars['Boolean'];
13011
13116
  };
13117
+ export declare type RoadmapsMutation = {
13118
+ __typename?: 'RoadmapsMutation';
13119
+ toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
13120
+ };
13121
+ export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
13122
+ input?: Maybe<RoadmapFeatureToggleInput>;
13123
+ };
13012
13124
  export declare type RoadmapsQuery = {
13013
13125
  __typename?: 'RoadmapsQuery';
13014
13126
  roadmapForSource?: Maybe<RoadmapDetails>;