@forge/cli-shared 7.0.0-next.1 → 7.0.0-next.2

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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 7.0.0-next.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 30d2f61: Add forge container tunnel MVP
8
+
3
9
  ## 7.0.0-next.1
4
10
 
5
11
  ### Major Changes
@@ -4096,6 +4096,21 @@ export declare type CcpOrderDefaultsInput = {
4096
4096
  currentEntitlementId?: InputMaybe<Scalars['String']['input']>;
4097
4097
  offeringId?: InputMaybe<Scalars['String']['input']>;
4098
4098
  };
4099
+ export declare type CcpPostalAddress = {
4100
+ __typename?: 'CcpPostalAddress';
4101
+ city?: Maybe<Scalars['String']['output']>;
4102
+ country?: Maybe<Scalars['String']['output']>;
4103
+ line1?: Maybe<Scalars['String']['output']>;
4104
+ line2?: Maybe<Scalars['String']['output']>;
4105
+ phone?: Maybe<Scalars['String']['output']>;
4106
+ postcode?: Maybe<Scalars['String']['output']>;
4107
+ state?: Maybe<Scalars['String']['output']>;
4108
+ };
4109
+ export declare type CcpPriceEligibilityMapEntry = {
4110
+ __typename?: 'CcpPriceEligibilityMapEntry';
4111
+ key?: Maybe<Scalars['String']['output']>;
4112
+ value?: Maybe<Scalars['Boolean']['output']>;
4113
+ };
4099
4114
  export declare type CcpPricingPlan = CommercePricingPlan & Node & {
4100
4115
  __typename?: 'CcpPricingPlan';
4101
4116
  activatedWithReason?: Maybe<CcpActivationReason>;
@@ -4199,6 +4214,7 @@ export declare type CcpQueryApi = {
4199
4214
  pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
4200
4215
  product?: Maybe<CcpProduct>;
4201
4216
  quotes?: Maybe<Array<Maybe<CcpQuote>>>;
4217
+ shipToParties?: Maybe<Array<Maybe<CcpShipToParty>>>;
4202
4218
  transactionAccount?: Maybe<CcpTransactionAccount>;
4203
4219
  transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
4204
4220
  };
@@ -4226,6 +4242,9 @@ export declare type CcpQueryApiProductArgs = {
4226
4242
  export declare type CcpQueryApiQuotesArgs = {
4227
4243
  ids: Array<Scalars['ID']['input']>;
4228
4244
  };
4245
+ export declare type CcpQueryApiShipToPartiesArgs = {
4246
+ ids: Array<Scalars['ID']['input']>;
4247
+ };
4229
4248
  export declare type CcpQueryApiTransactionAccountArgs = {
4230
4249
  id: Scalars['ID']['input'];
4231
4250
  };
@@ -4562,6 +4581,20 @@ export declare type CcpRootExperienceCapabilities = {
4562
4581
  export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
4563
4582
  input: CcpCreateEntitlementInput;
4564
4583
  };
4584
+ export declare type CcpShipToParty = Node & {
4585
+ __typename?: 'CcpShipToParty';
4586
+ createdAt?: Maybe<Scalars['Float']['output']>;
4587
+ id: Scalars['ID']['output'];
4588
+ isActive?: Maybe<Scalars['Boolean']['output']>;
4589
+ name?: Maybe<Scalars['String']['output']>;
4590
+ postalAddress?: Maybe<CcpPostalAddress>;
4591
+ priceEligibility?: Maybe<Array<Maybe<CcpPriceEligibilityMapEntry>>>;
4592
+ taxId?: Maybe<Scalars['String']['output']>;
4593
+ taxIds?: Maybe<Array<Maybe<CcpTaxId>>>;
4594
+ transactionAccount?: Maybe<CcpTransactionAccountPartition>;
4595
+ updatedAt?: Maybe<Scalars['Float']['output']>;
4596
+ version?: Maybe<Scalars['Int']['output']>;
4597
+ };
4565
4598
  export declare type CcpSubscription = CommerceSubscription & {
4566
4599
  __typename?: 'CcpSubscription';
4567
4600
  accountDetails?: Maybe<CcpAccountDetails>;
@@ -4608,6 +4641,13 @@ export declare enum CcpSupportedBillingSystems {
4608
4641
  Hams = "HAMS",
4609
4642
  Opsgenie = "OPSGENIE"
4610
4643
  }
4644
+ export declare type CcpTaxId = {
4645
+ __typename?: 'CcpTaxId';
4646
+ id?: Maybe<Scalars['String']['output']>;
4647
+ label?: Maybe<Scalars['String']['output']>;
4648
+ taxIdDescription?: Maybe<Scalars['String']['output']>;
4649
+ taxIdLabel?: Maybe<Scalars['String']['output']>;
4650
+ };
4611
4651
  export declare enum CcpTiersMode {
4612
4652
  Graduated = "GRADUATED",
4613
4653
  Volume = "VOLUME"
@@ -4633,6 +4673,11 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
4633
4673
  addPaymentMethodV2?: Maybe<CcpAddPaymentMethodExperienceCapability>;
4634
4674
  multipleProductUpgrades?: Maybe<CcpMultipleProductUpgradesExperienceCapability>;
4635
4675
  };
4676
+ export declare type CcpTransactionAccountPartition = {
4677
+ __typename?: 'CcpTransactionAccountPartition';
4678
+ key?: Maybe<Scalars['ID']['output']>;
4679
+ partitionKey?: Maybe<Scalars['String']['output']>;
4680
+ };
4636
4681
  export declare enum CcpTransactionAccountType {
4637
4682
  Direct = "DIRECT",
4638
4683
  Partner = "PARTNER",