@forge/cli-shared 8.15.1-next.5-experimental-44a932f → 8.15.1-next.7

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,18 +1,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 8.15.1-next.5-experimental-44a932f
3
+ ## 8.15.1-next.7
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - c1526eb: Improve warning message for failing to read feature flags change visibility to require verbose to reduce confusion
8
- - 19807bf: Changed schema for container resources
9
- - 2719ab7: Add image tag filtering for container repository listing
10
- - Updated dependencies [e4c143c]
11
- - Updated dependencies [42e069d]
12
- - Updated dependencies [19807bf]
13
7
  - Updated dependencies [6247657]
14
- - Updated dependencies [fa9b5aa]
15
- - @forge/manifest@12.1.0-next.3-experimental-44a932f
8
+ - @forge/manifest@12.1.0-next.4
9
+
10
+ ## 8.15.1-next.6
11
+
12
+ ### Patch Changes
13
+
14
+ - 2b94ed8: added custom scopes command to the forge help command
16
15
 
17
16
  ## 8.15.1-next.5
18
17
 
@@ -1212,6 +1212,7 @@ export declare type ActionsAction = {
1212
1212
  isConsequential: Scalars['Boolean']['output'];
1213
1213
  name?: Maybe<Scalars['String']['output']>;
1214
1214
  outputs?: Maybe<Array<ActionsActionTypeOutputTuple>>;
1215
+ productAri?: Maybe<Scalars['ID']['output']>;
1215
1216
  schema?: Maybe<ActionsActionConfiguration>;
1216
1217
  target?: Maybe<ActionsTargetInputs>;
1217
1218
  uiSchema?: Maybe<ActionsConfigurationUiSchema>;
@@ -13859,6 +13860,7 @@ export declare type CommerceExpContractEntitlement = {
13859
13860
  entitlementId?: Maybe<Scalars['ID']['output']>;
13860
13861
  entitlementNumber?: Maybe<Scalars['String']['output']>;
13861
13862
  expectedBills?: Maybe<Array<Maybe<CommerceExpExpectedBillsLine>>>;
13863
+ isBilledUpfrontWithMultiplePeriods?: Maybe<Scalars['Boolean']['output']>;
13862
13864
  isMultiScheduled?: Maybe<Scalars['Boolean']['output']>;
13863
13865
  latestModification?: Maybe<CommerceExpContractModification>;
13864
13866
  latestModificationVersion?: Maybe<Scalars['Int']['output']>;
@@ -13944,7 +13946,10 @@ export declare type CommerceExpContractShipToParty = {
13944
13946
  };
13945
13947
  export declare enum CommerceExpContractStatus {
13946
13948
  Active = "ACTIVE",
13947
- Inactive = "INACTIVE"
13949
+ Cancelled = "CANCELLED",
13950
+ Expired = "EXPIRED",
13951
+ Inactive = "INACTIVE",
13952
+ Superseded = "SUPERSEDED"
13948
13953
  }
13949
13954
  export declare type CommerceExpContractTaxId = {
13950
13955
  __typename?: 'CommerceExpContractTaxId';
@@ -14049,6 +14054,12 @@ export declare type CommerceExpCreatePaymentMethodPayload = CommerceExpMutationP
14049
14054
  paymentMethod?: Maybe<CommerceExpPaymentMethod>;
14050
14055
  success: Scalars['Boolean']['output'];
14051
14056
  };
14057
+ export declare type CommerceExpCreateShipToPartyPayload = CommerceExpMutationPayload & {
14058
+ __typename?: 'CommerceExpCreateShipToPartyPayload';
14059
+ errors?: Maybe<Array<MutationError>>;
14060
+ shipToParty?: Maybe<CommerceExpShipToParty>;
14061
+ success: Scalars['Boolean']['output'];
14062
+ };
14052
14063
  export declare type CommerceExpCreateTransactionAccountInput = {
14053
14064
  description?: InputMaybe<Scalars['String']['input']>;
14054
14065
  name?: InputMaybe<Scalars['String']['input']>;
@@ -14366,7 +14377,9 @@ export declare type CommerceExpEntitlementProvisioning = {
14366
14377
  export declare enum CommerceExpEntitlementProvisioningStatus {
14367
14378
  Active = "ACTIVE",
14368
14379
  Destroyed = "DESTROYED",
14380
+ HardDeleted = "HARD_DELETED",
14369
14381
  Inactive = "INACTIVE",
14382
+ SoftDeleted = "SOFT_DELETED",
14370
14383
  Suspended = "SUSPENDED",
14371
14384
  Unknown = "UNKNOWN"
14372
14385
  }
@@ -14739,6 +14752,7 @@ export declare type CommerceExpLineItemResponse = {
14739
14752
  period?: Maybe<CommerceExpPeriodResponse>;
14740
14753
  pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
14741
14754
  promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
14755
+ rampPricingLineItems?: Maybe<Array<Maybe<CommerceExpLineItemResponse>>>;
14742
14756
  relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpRelatesFromEntitlementDetails>>>;
14743
14757
  saleTransitionDetails?: Maybe<CommerceExpQuoteLineItemSaleTransitionDetails>;
14744
14758
  startsAt?: Maybe<CommerceExpLineItemStartsAt>;
@@ -15345,6 +15359,12 @@ export declare type CommerceExpPhase = {
15345
15359
  transactionAccountId?: Maybe<Scalars['ID']['output']>;
15346
15360
  trial?: Maybe<CommerceExpCcpSubscriptionTrial>;
15347
15361
  };
15362
+ export declare type CommerceExpPlaceOrderPayload = CommerceExpMutationPayload & {
15363
+ __typename?: 'CommerceExpPlaceOrderPayload';
15364
+ errors?: Maybe<Array<MutationError>>;
15365
+ order?: Maybe<CommerceExpCcpOrder>;
15366
+ success: Scalars['Boolean']['output'];
15367
+ };
15348
15368
  export declare type CommerceExpPlan = {
15349
15369
  __typename?: 'CommerceExpPlan';
15350
15370
  cycle?: Maybe<CommerceExpCycle>;
@@ -15968,6 +15988,12 @@ export declare type CommerceExpUpcomingBillsLineItem = {
15968
15988
  taxPercent2?: Maybe<Scalars['Float']['output']>;
15969
15989
  total?: Maybe<Scalars['Float']['output']>;
15970
15990
  };
15991
+ export declare type CommerceExpUpdateBillToPartyPayload = CommerceExpMutationPayload & {
15992
+ __typename?: 'CommerceExpUpdateBillToPartyPayload';
15993
+ billToParty?: Maybe<CommerceExpBillToParty>;
15994
+ errors?: Maybe<Array<MutationError>>;
15995
+ success: Scalars['Boolean']['output'];
15996
+ };
15971
15997
  export declare type CommerceExpUpdateInvoiceGroupPayload = CommerceExpMutationPayload & {
15972
15998
  __typename?: 'CommerceExpUpdateInvoiceGroupPayload';
15973
15999
  errors?: Maybe<Array<MutationError>>;
@@ -15979,6 +16005,12 @@ export declare type CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload = Comme
15979
16005
  errors?: Maybe<Array<MutationError>>;
15980
16006
  success: Scalars['Boolean']['output'];
15981
16007
  };
16008
+ export declare type CommerceExpUpdateShipToPartyPayload = CommerceExpMutationPayload & {
16009
+ __typename?: 'CommerceExpUpdateShipToPartyPayload';
16010
+ errors?: Maybe<Array<MutationError>>;
16011
+ shipToParty?: Maybe<CommerceExpShipToParty>;
16012
+ success: Scalars['Boolean']['output'];
16013
+ };
15982
16014
  export declare type CommerceExpUpdateTransactionAccountPayload = CommerceExpMutationPayload & {
15983
16015
  __typename?: 'CommerceExpUpdateTransactionAccountPayload';
15984
16016
  errors?: Maybe<Array<MutationError>>;
@@ -30194,8 +30226,9 @@ export declare type CplsWorkContributorConnection = {
30194
30226
  export declare type CplsWorkContributorEdge = {
30195
30227
  __typename?: 'CplsWorkContributorEdge';
30196
30228
  contributions?: Maybe<Array<CplsContribution>>;
30229
+ contributorData?: Maybe<CplsContributorData>;
30230
+ contributorDataId: Scalars['ID']['output'];
30197
30231
  cursor: Scalars['String']['output'];
30198
- node?: Maybe<CplsContributor>;
30199
30232
  };
30200
30233
  export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
30201
30234
  export declare type CplsWorkDataId = {
@@ -34253,6 +34286,7 @@ export declare type DevAiRovoDevSession = Node & {
34253
34286
  promptAdf?: Maybe<Scalars['JSON']['output']>;
34254
34287
  repository?: Maybe<DevAiRovoDevRepository>;
34255
34288
  sandboxStatus?: Maybe<DevAiRovoDevSandboxStatus>;
34289
+ sessionSandbox?: Maybe<DevAiSandbox>;
34256
34290
  sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
34257
34291
  sessionTitle?: Maybe<Scalars['String']['output']>;
34258
34292
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -34322,6 +34356,31 @@ export declare type DevAiRunAutofixScanInput = {
34322
34356
  restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
34323
34357
  workspaceId: Scalars['ID']['input'];
34324
34358
  };
34359
+ export declare type DevAiSandbox = {
34360
+ __typename?: 'DevAiSandbox';
34361
+ progress?: Maybe<DevAiSandboxProgress>;
34362
+ readiness?: Maybe<DevAiSandboxReadiness>;
34363
+ };
34364
+ export declare type DevAiSandboxProgress = {
34365
+ name?: Maybe<Scalars['String']['output']>;
34366
+ };
34367
+ export declare enum DevAiSandboxReadiness {
34368
+ Creating = "CREATING",
34369
+ Error = "ERROR",
34370
+ Hibernated = "HIBERNATED",
34371
+ Ready = "READY",
34372
+ Started = "STARTED",
34373
+ Starting = "STARTING",
34374
+ Unknown = "UNKNOWN"
34375
+ }
34376
+ export declare type DevAiSandboxRestoreProgress = DevAiSandboxProgress & {
34377
+ __typename?: 'DevAiSandboxRestoreProgress';
34378
+ downloadedBytes?: Maybe<Scalars['String']['output']>;
34379
+ name?: Maybe<Scalars['String']['output']>;
34380
+ percent?: Maybe<Scalars['Int']['output']>;
34381
+ startedAt?: Maybe<Scalars['DateTime']['output']>;
34382
+ totalBytes?: Maybe<Scalars['String']['output']>;
34383
+ };
34325
34384
  export declare type DevAiSavedPrompt = {
34326
34385
  __typename?: 'DevAiSavedPrompt';
34327
34386
  contents?: Maybe<Scalars['String']['output']>;
@@ -41462,6 +41521,7 @@ export declare type GraphIntegrationMcpAdminManagementTriggerToolSyncInput = {
41462
41521
  export declare type GraphIntegrationMcpAdminManagementTriggerToolSyncPayload = Payload & {
41463
41522
  __typename?: 'GraphIntegrationMcpAdminManagementTriggerToolSyncPayload';
41464
41523
  errors?: Maybe<Array<MutationError>>;
41524
+ registrationStatus?: Maybe<GraphIntegrationMcpAdminManagementMcpServerStatus>;
41465
41525
  serverId?: Maybe<Scalars['ID']['output']>;
41466
41526
  success: Scalars['Boolean']['output'];
41467
41527
  syncResult?: Maybe<GraphIntegrationMcpAdminManagementToolSyncResult>;
@@ -135065,8 +135125,10 @@ export declare type Query = {
135065
135125
  ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
135066
135126
  cfo_analytics?: Maybe<CfoAnalyticsResult>;
135067
135127
  changeManagement_globalRiskAssessmentSettings: ChangeManagementGlobalRiskAssessmentSettingsPayload;
135128
+ changeManagement_globalRiskAssessmentSettingsByIssue: ChangeManagementGlobalRiskAssessmentSettingsPayload;
135068
135129
  changeManagement_lastRovoRiskAssessment: ChangeManagementLastRovoRiskAssessmentPayload;
135069
135130
  changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
135131
+ changeManagement_rovoRiskAssessmentSettingsByIssue: ChangeManagementRovoRiskAssessmentSettingsPayload;
135070
135132
  channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
135071
135133
  channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
135072
135134
  channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
@@ -137037,6 +137099,10 @@ export declare type QueryChangeManagement_GlobalRiskAssessmentSettingsArgs = {
137037
137099
  cloudId: Scalars['ID']['input'];
137038
137100
  projectId: Scalars['String']['input'];
137039
137101
  };
137102
+ export declare type QueryChangeManagement_GlobalRiskAssessmentSettingsByIssueArgs = {
137103
+ cloudId: Scalars['ID']['input'];
137104
+ issueKeyOrId: Scalars['String']['input'];
137105
+ };
137040
137106
  export declare type QueryChangeManagement_LastRovoRiskAssessmentArgs = {
137041
137107
  cloudId: Scalars['ID']['input'];
137042
137108
  issueId: Scalars['String']['input'];
@@ -137045,6 +137111,10 @@ export declare type QueryChangeManagement_RovoRiskAssessmentSettingsArgs = {
137045
137111
  cloudId: Scalars['ID']['input'];
137046
137112
  projectId: Scalars['String']['input'];
137047
137113
  };
137114
+ export declare type QueryChangeManagement_RovoRiskAssessmentSettingsByIssueArgs = {
137115
+ cloudId: Scalars['ID']['input'];
137116
+ issueKeyOrId: Scalars['String']['input'];
137117
+ };
137048
137118
  export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
137049
137119
  request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
137050
137120
  };