@forge/cli-shared 9.3.0-next.15 → 9.3.0-next.17

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,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 9.3.0-next.17
4
+
5
+ ### Patch Changes
6
+
7
+ - 8d20095: bump adm-zip to v0.6.0
8
+
9
+ ## 9.3.0-next.16
10
+
11
+ ### Patch Changes
12
+
13
+ - 905d8c5: Design changes, hint to module add and a spinner when loading
14
+
3
15
  ## 9.3.0-next.15
4
16
 
5
17
  ### Minor Changes
@@ -158417,7 +158417,7 @@ export type MarketplaceConsoleAppPublishWizardCheckResult = {
158417
158417
  __typename?: 'MarketplaceConsoleAppPublishWizardCheckResult';
158418
158418
  checkerName: Scalars['String']['output'];
158419
158419
  message?: Maybe<Scalars['String']['output']>;
158420
- moreDetails?: Maybe<Array<MarketplaceConsoleAppPublishWizardCheckerFieldDetail>>;
158420
+ moreDetails: Array<MarketplaceConsoleAppPublishWizardCheckerFieldDetail>;
158421
158421
  recoverable: Scalars['Boolean']['output'];
158422
158422
  tier: Scalars['String']['output'];
158423
158423
  verdict: MarketplaceConsoleAppPublishWizardCheckerVerdict;
@@ -158548,6 +158548,16 @@ export declare enum MarketplaceConsoleAppPublishWizardScreenId {
158548
158548
  PrivacyAndSecurity = "PRIVACY_AND_SECURITY",
158549
158549
  Version = "VERSION"
158550
158550
  }
158551
+ export type MarketplaceConsoleAppPublishWizardScreenNavItem = {
158552
+ __typename?: 'MarketplaceConsoleAppPublishWizardScreenNavItem';
158553
+ screenId: MarketplaceConsoleAppPublishWizardScreenId;
158554
+ status: MarketplaceConsoleAppPublishWizardScreenNavStatus;
158555
+ };
158556
+ export declare enum MarketplaceConsoleAppPublishWizardScreenNavStatus {
158557
+ Completed = "COMPLETED",
158558
+ Current = "CURRENT",
158559
+ NotReached = "NOT_REACHED"
158560
+ }
158551
158561
  export type MarketplaceConsoleAppPublishWizardSessionResponse = {
158552
158562
  __typename?: 'MarketplaceConsoleAppPublishWizardSessionResponse';
158553
158563
  appSoftwareId: Scalars['String']['output'];
@@ -158558,6 +158568,7 @@ export type MarketplaceConsoleAppPublishWizardSessionResponse = {
158558
158568
  status: MarketplaceConsoleAppPublishWizardSessionStatus;
158559
158569
  submissionId: Scalars['String']['output'];
158560
158570
  updatedAt: Scalars['String']['output'];
158571
+ visibleScreens: Array<MarketplaceConsoleAppPublishWizardScreenNavItem>;
158561
158572
  };
158562
158573
  export declare enum MarketplaceConsoleAppPublishWizardSessionStatus {
158563
158574
  Abandoned = "ABANDONED",
@@ -159667,6 +159678,7 @@ export type MarketplaceConsoleMutationApi = {
159667
159678
  startAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
159668
159679
  submitAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
159669
159680
  subscribeToDeveloperNewsletter: MarketplaceConsoleDeveloperNewsletterSubscribeResponse;
159681
+ terminateAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
159670
159682
  updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
159671
159683
  updateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
159672
159684
  updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
@@ -159762,6 +159774,10 @@ export type MarketplaceConsoleMutationApiSubmitAppPublishWizardSessionArgs = {
159762
159774
  appSoftwareId: Scalars['ID']['input'];
159763
159775
  submissionId: Scalars['ID']['input'];
159764
159776
  };
159777
+ export type MarketplaceConsoleMutationApiTerminateAppPublishWizardSessionArgs = {
159778
+ appSoftwareId: Scalars['ID']['input'];
159779
+ submissionId: Scalars['ID']['input'];
159780
+ };
159765
159781
  export type MarketplaceConsoleMutationApiUpdateAppDetailsArgs = {
159766
159782
  updateAppDetailsRequest: MarketplaceConsoleUpdateAppDetailsRequest;
159767
159783
  };