@forge/cli-shared 6.11.0-next.7 → 6.11.0-next.8

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
+ ## 6.11.0-next.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 6db64a3: Improve build tag validation
8
+
3
9
  ## 6.11.0-next.7
4
10
 
5
11
  ### Patch Changes
@@ -4131,7 +4131,7 @@ export declare type CcpQuote = Node & {
4131
4131
  __typename?: 'CcpQuote';
4132
4132
  autoRefresh?: Maybe<CcpQuoteAutoRefresh>;
4133
4133
  cancelledReason?: Maybe<CcpQuoteCancelledReason>;
4134
- clonedFrom?: Maybe<Scalars['String']['output']>;
4134
+ clonedFrom?: Maybe<CcpQuote>;
4135
4135
  contractType?: Maybe<CcpQuoteContractType>;
4136
4136
  createdAt?: Maybe<Scalars['Float']['output']>;
4137
4137
  createdBy?: Maybe<CcpQuoteAuthorContext>;
@@ -4139,9 +4139,9 @@ export declare type CcpQuote = Node & {
4139
4139
  expiresAt?: Maybe<Scalars['Float']['output']>;
4140
4140
  externalNotes?: Maybe<Array<Maybe<CcpQuoteExternalNote>>>;
4141
4141
  finalizedAt?: Maybe<Scalars['Float']['output']>;
4142
- fromQuote?: Maybe<Scalars['String']['output']>;
4142
+ fromQuote?: Maybe<CcpQuote>;
4143
4143
  id: Scalars['ID']['output'];
4144
- invoiceGroupId?: Maybe<Scalars['String']['output']>;
4144
+ invoiceGroupKey?: Maybe<Scalars['ID']['output']>;
4145
4145
  lineItems?: Maybe<Array<Maybe<CcpQuoteLineItem>>>;
4146
4146
  locale?: Maybe<Scalars['String']['output']>;
4147
4147
  name?: Maybe<Scalars['String']['output']>;
@@ -4150,7 +4150,7 @@ export declare type CcpQuote = Node & {
4150
4150
  revision?: Maybe<Scalars['Int']['output']>;
4151
4151
  staleReason?: Maybe<CcpQuoteStaleReason>;
4152
4152
  status?: Maybe<CcpQuoteStatus>;
4153
- transactionAccountId?: Maybe<Scalars['String']['output']>;
4153
+ transactionAccountKey?: Maybe<Scalars['ID']['output']>;
4154
4154
  upcomingBills?: Maybe<CcpQuoteUpcomingBills>;
4155
4155
  upcomingBillsComputedAt?: Maybe<Scalars['Float']['output']>;
4156
4156
  upcomingBillsRequestedAt?: Maybe<Scalars['Float']['output']>;
@@ -4163,7 +4163,7 @@ export declare type CcpQuoteAdjustment = {
4163
4163
  amount?: Maybe<Scalars['Float']['output']>;
4164
4164
  percent?: Maybe<Scalars['Float']['output']>;
4165
4165
  promoCode?: Maybe<Scalars['String']['output']>;
4166
- promotionId?: Maybe<Scalars['String']['output']>;
4166
+ promotionKey?: Maybe<Scalars['ID']['output']>;
4167
4167
  reasonCode?: Maybe<Scalars['String']['output']>;
4168
4168
  type?: Maybe<Scalars['String']['output']>;
4169
4169
  };
@@ -4171,7 +4171,7 @@ export declare type CcpQuoteAuthorContext = {
4171
4171
  __typename?: 'CcpQuoteAuthorContext';
4172
4172
  isCustomerAdvocate?: Maybe<Scalars['Boolean']['output']>;
4173
4173
  isSystemDrivenAction?: Maybe<Scalars['Boolean']['output']>;
4174
- subject?: Maybe<Scalars['String']['output']>;
4174
+ subjectId?: Maybe<Scalars['ID']['output']>;
4175
4175
  subjectType?: Maybe<Scalars['String']['output']>;
4176
4176
  };
4177
4177
  export declare type CcpQuoteAutoRefresh = {
@@ -4212,8 +4212,8 @@ export declare type CcpQuoteCancelledReason = {
4212
4212
  code?: Maybe<Scalars['String']['output']>;
4213
4213
  lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
4214
4214
  name?: Maybe<Scalars['String']['output']>;
4215
- orderId?: Maybe<Scalars['String']['output']>;
4216
- orderItemId?: Maybe<Scalars['String']['output']>;
4215
+ orderItemKey?: Maybe<Scalars['ID']['output']>;
4216
+ orderKey?: Maybe<Scalars['ID']['output']>;
4217
4217
  };
4218
4218
  export declare type CcpQuoteChargeQuantity = {
4219
4219
  __typename?: 'CcpQuoteChargeQuantity';
@@ -4247,15 +4247,15 @@ export declare type CcpQuoteLineItem = {
4247
4247
  cancelledReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
4248
4248
  chargeQuantities?: Maybe<Array<Maybe<CcpQuoteChargeQuantity>>>;
4249
4249
  endsAt?: Maybe<CcpQuoteLineItemEndsAt>;
4250
- entitlementId?: Maybe<Scalars['String']['output']>;
4250
+ entitlementKey?: Maybe<Scalars['ID']['output']>;
4251
4251
  entitlementVersion?: Maybe<Scalars['String']['output']>;
4252
- lineItemId?: Maybe<Scalars['String']['output']>;
4252
+ lineItemKey?: Maybe<Scalars['ID']['output']>;
4253
4253
  lineItemType?: Maybe<CcpQuoteLineItemType>;
4254
4254
  lockContext?: Maybe<CcpQuoteLockContext>;
4255
- offeringKey?: Maybe<Scalars['String']['output']>;
4256
- orderItemId?: Maybe<Scalars['String']['output']>;
4255
+ offeringKey?: Maybe<Scalars['ID']['output']>;
4256
+ orderItemKey?: Maybe<Scalars['ID']['output']>;
4257
4257
  preBillingConfiguration?: Maybe<CcpQuotePreBillingConfiguration>;
4258
- pricingPlanId?: Maybe<Scalars['String']['output']>;
4258
+ pricingPlanKey?: Maybe<Scalars['ID']['output']>;
4259
4259
  promotions?: Maybe<Array<Maybe<CcpQuotePromotion>>>;
4260
4260
  prorationBehaviour?: Maybe<CcpQuoteProrationBehaviour>;
4261
4261
  relatesFromEntitlements?: Maybe<Array<Maybe<CcpQuoteRelatesFromEntitlement>>>;
@@ -4263,7 +4263,7 @@ export declare type CcpQuoteLineItem = {
4263
4263
  staleReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
4264
4264
  startsAt?: Maybe<CcpQuoteStartsAt>;
4265
4265
  status?: Maybe<CcpQuoteLineItemStatus>;
4266
- subscriptionId?: Maybe<Scalars['String']['output']>;
4266
+ subscriptionKey?: Maybe<Scalars['ID']['output']>;
4267
4267
  };
4268
4268
  export declare type CcpQuoteLineItemEndsAt = {
4269
4269
  __typename?: 'CcpQuoteLineItemEndsAt';
@@ -4276,8 +4276,8 @@ export declare type CcpQuoteLineItemStaleOrCancelledReason = {
4276
4276
  code?: Maybe<Scalars['String']['output']>;
4277
4277
  lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
4278
4278
  name?: Maybe<Scalars['String']['output']>;
4279
- orderId?: Maybe<Scalars['String']['output']>;
4280
- orderItemId?: Maybe<Scalars['String']['output']>;
4279
+ orderItemKey?: Maybe<Scalars['ID']['output']>;
4280
+ orderKey?: Maybe<Scalars['ID']['output']>;
4281
4281
  };
4282
4282
  export declare enum CcpQuoteLineItemStatus {
4283
4283
  Cancelled = "CANCELLED",
@@ -4297,10 +4297,11 @@ export declare type CcpQuoteLockContext = {
4297
4297
  export declare type CcpQuoteMargin = {
4298
4298
  __typename?: 'CcpQuoteMargin';
4299
4299
  amount?: Maybe<Scalars['Float']['output']>;
4300
+ blended?: Maybe<Scalars['Boolean']['output']>;
4300
4301
  blendedComputation?: Maybe<CcpQuoteBlendedMarginComputation>;
4301
4302
  percent?: Maybe<Scalars['Float']['output']>;
4302
4303
  promoCode?: Maybe<Scalars['String']['output']>;
4303
- promotionId?: Maybe<Scalars['String']['output']>;
4304
+ promotionKey?: Maybe<Scalars['ID']['output']>;
4304
4305
  reasonCode?: Maybe<Scalars['String']['output']>;
4305
4306
  type?: Maybe<Scalars['String']['output']>;
4306
4307
  };
@@ -4317,12 +4318,12 @@ export declare type CcpQuotePreBillingConfiguration = {
4317
4318
  export declare type CcpQuotePromotion = {
4318
4319
  __typename?: 'CcpQuotePromotion';
4319
4320
  promotionDefinition?: Maybe<CcpQuotePromotionDefinition>;
4320
- promotionInstanceId?: Maybe<Scalars['String']['output']>;
4321
+ promotionInstanceKey?: Maybe<Scalars['ID']['output']>;
4321
4322
  };
4322
4323
  export declare type CcpQuotePromotionDefinition = {
4323
4324
  __typename?: 'CcpQuotePromotionDefinition';
4324
4325
  promotionCode?: Maybe<Scalars['String']['output']>;
4325
- promotionId?: Maybe<Scalars['String']['output']>;
4326
+ promotionKey?: Maybe<Scalars['ID']['output']>;
4326
4327
  };
4327
4328
  export declare enum CcpQuoteProrationBehaviour {
4328
4329
  CreateProrations = "CREATE_PRORATIONS",
@@ -4334,8 +4335,8 @@ export declare enum CcpQuoteReferenceType {
4334
4335
  }
4335
4336
  export declare type CcpQuoteRelatesFromEntitlement = {
4336
4337
  __typename?: 'CcpQuoteRelatesFromEntitlement';
4337
- entitlementId?: Maybe<Scalars['String']['output']>;
4338
- lineItemId?: Maybe<Scalars['String']['output']>;
4338
+ entitlementKey?: Maybe<Scalars['ID']['output']>;
4339
+ lineItemKey?: Maybe<Scalars['ID']['output']>;
4339
4340
  referenceType?: Maybe<CcpQuoteReferenceType>;
4340
4341
  relationshipType?: Maybe<Scalars['String']['output']>;
4341
4342
  };
@@ -4345,8 +4346,8 @@ export declare type CcpQuoteStaleReason = {
4345
4346
  expiresAt?: Maybe<Scalars['Float']['output']>;
4346
4347
  lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
4347
4348
  name?: Maybe<Scalars['String']['output']>;
4348
- orderId?: Maybe<Scalars['String']['output']>;
4349
- orderItemId?: Maybe<Scalars['String']['output']>;
4349
+ orderItemKey?: Maybe<Scalars['ID']['output']>;
4350
+ orderKey?: Maybe<Scalars['ID']['output']>;
4350
4351
  };
4351
4352
  export declare enum CcpQuoteStartDateType {
4352
4353
  QuoteAcceptanceDate = "QUOTE_ACCEPTANCE_DATE",
@@ -4392,13 +4393,13 @@ export declare type CcpQuoteUpcomingBillsLine = {
4392
4393
  adjustments?: Maybe<Array<Maybe<CcpQuoteAdjustment>>>;
4393
4394
  currency?: Maybe<CcpCurrency>;
4394
4395
  description?: Maybe<Scalars['String']['output']>;
4395
- id?: Maybe<Scalars['String']['output']>;
4396
+ key?: Maybe<Scalars['ID']['output']>;
4396
4397
  margins?: Maybe<Array<Maybe<CcpQuoteMargin>>>;
4397
- offeringId?: Maybe<Scalars['String']['output']>;
4398
+ offeringKey?: Maybe<Scalars['ID']['output']>;
4398
4399
  period?: Maybe<CcpQuotePeriod>;
4399
- pricingPlanId?: Maybe<Scalars['String']['output']>;
4400
+ pricingPlanKey?: Maybe<Scalars['ID']['output']>;
4400
4401
  quantity?: Maybe<Scalars['Float']['output']>;
4401
- quoteLineId?: Maybe<Scalars['String']['output']>;
4402
+ quoteLineKey?: Maybe<Scalars['ID']['output']>;
4402
4403
  subTotal?: Maybe<Scalars['Float']['output']>;
4403
4404
  tax?: Maybe<Scalars['Float']['output']>;
4404
4405
  taxItems?: Maybe<Array<Maybe<CcpQuoteTaxItem>>>;
@@ -63139,6 +63140,7 @@ export declare type JiraJwmField = {
63139
63140
  };
63140
63141
  export declare type JiraLabel = {
63141
63142
  __typename?: 'JiraLabel';
63143
+ color?: Maybe<JiraColor>;
63142
63144
  labelId?: Maybe<Scalars['String']['output']>;
63143
63145
  name?: Maybe<Scalars['String']['output']>;
63144
63146
  };