@forge/cli-shared 3.18.0-next.11 → 3.18.0-next.13

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.
@@ -2196,8 +2196,8 @@ export type CcpAccountDetails = {
2196
2196
  transactionAccountId?: Maybe<Scalars['ID']>;
2197
2197
  };
2198
2198
  export declare enum CcpActivationReason {
2199
- DefaultPricing = "DEFAULT_PRICING",
2200
2199
  AdvantagePricing = "ADVANTAGE_PRICING",
2200
+ DefaultPricing = "DEFAULT_PRICING",
2201
2201
  ExperimentalPricing = "EXPERIMENTAL_PRICING"
2202
2202
  }
2203
2203
  export type CcpApplicationReason = {
@@ -2206,14 +2206,16 @@ export type CcpApplicationReason = {
2206
2206
  };
2207
2207
  export type CcpBenefit = {
2208
2208
  __typename?: 'CcpBenefit';
2209
- value?: Maybe<Scalars['Float']>;
2210
2209
  duration?: Maybe<CcpDuration>;
2211
2210
  iterations?: Maybe<Scalars['Int']>;
2211
+ value?: Maybe<Scalars['Float']>;
2212
2212
  };
2213
- export type CcpBillEstimate = {
2214
- __typename?: 'CcpBillEstimate';
2215
- id?: Maybe<Scalars['ID']>;
2216
- };
2213
+ export declare enum CcpBillingInterval {
2214
+ Day = "DAY",
2215
+ Month = "MONTH",
2216
+ Week = "WEEK",
2217
+ Year = "YEAR"
2218
+ }
2217
2219
  export type CcpBillingPeriodDetails = {
2218
2220
  __typename?: 'CcpBillingPeriodDetails';
2219
2221
  billingAnchorTimestamp?: Maybe<Scalars['Float']>;
@@ -2221,97 +2223,97 @@ export type CcpBillingPeriodDetails = {
2221
2223
  };
2222
2224
  export type CcpChargeDetails = {
2223
2225
  __typename?: 'CcpChargeDetails';
2226
+ chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
2224
2227
  offeringId?: Maybe<Scalars['ID']>;
2225
2228
  pricingPlanId?: Maybe<Scalars['ID']>;
2226
- chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
2227
2229
  promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
2228
2230
  };
2229
2231
  export type CcpChargeElement = {
2230
2232
  __typename?: 'CcpChargeElement';
2231
- unit?: Maybe<Scalars['String']>;
2232
2233
  ceiling?: Maybe<Scalars['Int']>;
2234
+ unit?: Maybe<Scalars['String']>;
2233
2235
  };
2234
2236
  export type CcpChargeQuantity = {
2235
2237
  __typename?: 'CcpChargeQuantity';
2236
2238
  chargeElement?: Maybe<Scalars['String']>;
2237
- quantity?: Maybe<Scalars['Float']>;
2238
2239
  lastUpdatedAt?: Maybe<Scalars['Float']>;
2240
+ quantity?: Maybe<Scalars['Float']>;
2239
2241
  };
2240
2242
  export declare enum CcpChargeType {
2241
- Metered = "METERED",
2243
+ AutoScaling = "AUTO_SCALING",
2242
2244
  Licensed = "LICENSED",
2243
- AutoScaling = "AUTO_SCALING"
2245
+ Metered = "METERED"
2244
2246
  }
2245
2247
  export type CcpContext = {
2246
2248
  __typename?: 'CcpContext';
2247
- subject?: Maybe<Scalars['String']>;
2248
- subjectType?: Maybe<Scalars['String']>;
2249
2249
  authMechanism?: Maybe<Scalars['String']>;
2250
2250
  clientAsapIssuer?: Maybe<Scalars['String']>;
2251
+ subject?: Maybe<Scalars['String']>;
2252
+ subjectType?: Maybe<Scalars['String']>;
2251
2253
  };
2252
2254
  export declare enum CcpCurrency {
2253
- Usd = "USD",
2254
- Jpy = "JPY"
2255
+ Jpy = "JPY",
2256
+ Usd = "USD"
2255
2257
  }
2256
2258
  export type CcpCustomisedValues = {
2257
2259
  __typename?: 'CcpCustomisedValues';
2258
2260
  applicationReason?: Maybe<CcpApplicationReason>;
2259
2261
  benefits?: Maybe<Array<Maybe<CcpBenefit>>>;
2260
2262
  };
2261
- export type CcpCycle = {
2263
+ export type CcpCycle = CommercePrimaryCycle & {
2262
2264
  __typename?: 'CcpCycle';
2263
- name?: Maybe<Scalars['String']>;
2264
- interval?: Maybe<CcpInterval>;
2265
2265
  count?: Maybe<Scalars['Int']>;
2266
+ interval?: Maybe<CcpBillingInterval>;
2267
+ name?: Maybe<Scalars['String']>;
2266
2268
  };
2267
2269
  export type CcpDerivedFromOffering = {
2268
2270
  __typename?: 'CcpDerivedFromOffering';
2271
+ originalOfferingKey?: Maybe<Scalars['ID']>;
2269
2272
  templateId?: Maybe<Scalars['ID']>;
2270
2273
  templateVersion?: Maybe<Scalars['Int']>;
2271
- originalOfferingKey?: Maybe<Scalars['ID']>;
2272
2274
  };
2273
2275
  export type CcpDerivedOffering = {
2274
2276
  __typename?: 'CcpDerivedOffering';
2277
+ generatedOfferingKey?: Maybe<Scalars['ID']>;
2275
2278
  templateId?: Maybe<Scalars['ID']>;
2276
2279
  templateVersion?: Maybe<Scalars['Int']>;
2277
- generatedOfferingKey?: Maybe<Scalars['ID']>;
2278
2280
  };
2279
2281
  export declare enum CcpDuration {
2280
2282
  Forever = "FOREVER",
2281
2283
  Once = "ONCE",
2282
2284
  Repeating = "REPEATING"
2283
2285
  }
2284
- export type CcpEntitlement = Node & {
2286
+ export type CcpEntitlement = CommerceEntitlement & Node & {
2285
2287
  __typename?: 'CcpEntitlement';
2286
- id: Scalars['ID'];
2287
- entitlementId?: Maybe<Scalars['ID']>;
2288
- version?: Maybe<Scalars['Int']>;
2289
- status?: Maybe<CcpEntitlementStatus>;
2290
- slug?: Maybe<Scalars['String']>;
2291
- metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
2292
2288
  changeReason?: Maybe<Scalars['String']>;
2293
- offeringKey?: Maybe<Scalars['ID']>;
2289
+ childrenIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
2290
+ createdAt?: Maybe<Scalars['Float']>;
2291
+ enableAbuseProneFeatures?: Maybe<Scalars['Boolean']>;
2292
+ entitlementId?: Maybe<Scalars['ID']>;
2294
2293
  entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
2295
2294
  featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
2296
2295
  featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
2297
- parentId?: Maybe<Scalars['ID']>;
2298
- childrenIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
2299
- transactionAccountId?: Maybe<Scalars['ID']>;
2296
+ id: Scalars['ID'];
2297
+ metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
2298
+ offering?: Maybe<CcpOffering>;
2299
+ offeringKey?: Maybe<Scalars['ID']>;
2300
2300
  order?: Maybe<CcpOrder>;
2301
- relatesToEntitlements?: Maybe<Array<Maybe<CcpEntitlementRelationship>>>;
2301
+ parentId?: Maybe<Scalars['ID']>;
2302
2302
  relatesFromEntitlements?: Maybe<Array<Maybe<CcpEntitlementRelationship>>>;
2303
- enableAbuseProneFeatures?: Maybe<Scalars['Boolean']>;
2304
- createdAt?: Maybe<Scalars['Float']>;
2305
- updatedAt?: Maybe<Scalars['Float']>;
2303
+ relatesToEntitlements?: Maybe<Array<Maybe<CcpEntitlementRelationship>>>;
2304
+ slug?: Maybe<Scalars['String']>;
2305
+ status?: Maybe<CcpEntitlementStatus>;
2306
2306
  subscription?: Maybe<CcpSubscription>;
2307
- offering?: Maybe<CcpOffering>;
2307
+ transactionAccountId?: Maybe<Scalars['ID']>;
2308
+ updatedAt?: Maybe<Scalars['Float']>;
2309
+ version?: Maybe<Scalars['Int']>;
2308
2310
  context?: Maybe<CcpContext>;
2309
2311
  };
2310
2312
  export type CcpEntitlementRelationship = {
2311
2313
  __typename?: 'CcpEntitlementRelationship';
2312
2314
  entitlementId?: Maybe<Scalars['ID']>;
2313
- relationshipType?: Maybe<Scalars['String']>;
2314
2315
  relationshipId?: Maybe<Scalars['ID']>;
2316
+ relationshipType?: Maybe<Scalars['String']>;
2315
2317
  };
2316
2318
  export declare enum CcpEntitlementStatus {
2317
2319
  Active = "ACTIVE",
@@ -2319,17 +2321,11 @@ export declare enum CcpEntitlementStatus {
2319
2321
  }
2320
2322
  export type CcpEntitlementTemplate = {
2321
2323
  __typename?: 'CcpEntitlementTemplate';
2322
- key?: Maybe<Scalars['ID']>;
2323
- version?: Maybe<Scalars['Int']>;
2324
2324
  data?: Maybe<Scalars['String']>;
2325
+ key?: Maybe<Scalars['ID']>;
2325
2326
  provisionedBy?: Maybe<Scalars['String']>;
2327
+ version?: Maybe<Scalars['Int']>;
2326
2328
  };
2327
- export declare enum CcpInterval {
2328
- Day = "DAY",
2329
- Week = "WEEK",
2330
- Month = "MONTH",
2331
- Year = "YEAR"
2332
- }
2333
2329
  export type CcpMapEntry = {
2334
2330
  __typename?: 'CcpMapEntry';
2335
2331
  key?: Maybe<Scalars['String']>;
@@ -2337,48 +2333,48 @@ export type CcpMapEntry = {
2337
2333
  };
2338
2334
  export type CcpOffering = Node & {
2339
2335
  __typename?: 'CcpOffering';
2336
+ allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']>;
2337
+ catalogAccountId?: Maybe<Scalars['ID']>;
2338
+ chargeElements?: Maybe<Array<Maybe<CcpChargeElement>>>;
2339
+ dependsOnOfferingKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
2340
+ derivedFromOffering?: Maybe<CcpDerivedFromOffering>;
2341
+ derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
2342
+ entitlementTemplateId?: Maybe<Scalars['ID']>;
2343
+ expiryDate?: Maybe<Scalars['Float']>;
2344
+ hostingType?: Maybe<CcpOfferingHostingType>;
2340
2345
  id: Scalars['ID'];
2341
2346
  key?: Maybe<Scalars['ID']>;
2342
- name?: Maybe<Scalars['String']>;
2343
- updatedAt?: Maybe<Scalars['Float']>;
2344
- sku?: Maybe<Scalars['String']>;
2345
- hostingType?: Maybe<CcpOfferingHostingType>;
2346
2347
  level?: Maybe<Scalars['Int']>;
2348
+ name?: Maybe<Scalars['String']>;
2349
+ offeringGroup?: Maybe<CcpOfferingGroup>;
2350
+ pricingType?: Maybe<CcpPricingType>;
2347
2351
  productKey?: Maybe<Scalars['ID']>;
2352
+ sku?: Maybe<Scalars['String']>;
2348
2353
  slugs?: Maybe<Array<Maybe<Scalars['String']>>>;
2349
- type?: Maybe<CcpOfferingType>;
2350
- pricingType?: Maybe<CcpPricingType>;
2351
2354
  status?: Maybe<CcpOfferingStatus>;
2352
2355
  supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
2353
- version?: Maybe<Scalars['Int']>;
2354
- chargeElements?: Maybe<Array<Maybe<CcpChargeElement>>>;
2355
2356
  syntheticTemplates?: Maybe<Array<Maybe<Scalars['String']>>>;
2356
- derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
2357
- expiryDate?: Maybe<Scalars['Float']>;
2358
- derivedFromOffering?: Maybe<CcpDerivedFromOffering>;
2359
- catalogAccountId?: Maybe<Scalars['ID']>;
2360
- allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']>;
2361
- dependsOnOfferingKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
2362
2357
  trial?: Maybe<CcpOfferingTrial>;
2363
- offeringGroup?: Maybe<CcpOfferingGroup>;
2364
- entitlementTemplateId?: Maybe<Scalars['ID']>;
2358
+ type?: Maybe<CcpOfferingType>;
2359
+ updatedAt?: Maybe<Scalars['Float']>;
2360
+ version?: Maybe<Scalars['Int']>;
2365
2361
  };
2366
2362
  export type CcpOfferingGroup = {
2367
2363
  __typename?: 'CcpOfferingGroup';
2364
+ catalogAccountId?: Maybe<Scalars['ID']>;
2368
2365
  key?: Maybe<Scalars['ID']>;
2369
- name?: Maybe<Scalars['String']>;
2370
- slug?: Maybe<Scalars['String']>;
2371
2366
  level?: Maybe<Scalars['Int']>;
2367
+ name?: Maybe<Scalars['String']>;
2372
2368
  productKey?: Maybe<Scalars['ID']>;
2373
- catalogAccountId?: Maybe<Scalars['ID']>;
2369
+ slug?: Maybe<Scalars['String']>;
2374
2370
  };
2375
2371
  export declare enum CcpOfferingHostingType {
2376
2372
  Cloud = "CLOUD"
2377
2373
  }
2378
2374
  export declare enum CcpOfferingStatus {
2379
- Draft = "DRAFT",
2380
2375
  Active = "ACTIVE",
2381
2376
  AtNotice = "AT_NOTICE",
2377
+ Draft = "DRAFT",
2382
2378
  Expired = "EXPIRED"
2383
2379
  }
2384
2380
  export type CcpOfferingTrial = {
@@ -2386,65 +2382,65 @@ export type CcpOfferingTrial = {
2386
2382
  lengthDays?: Maybe<Scalars['Int']>;
2387
2383
  };
2388
2384
  export declare enum CcpOfferingType {
2389
- Parent = "PARENT",
2390
- Child = "CHILD"
2385
+ Child = "CHILD",
2386
+ Parent = "PARENT"
2391
2387
  }
2392
2388
  export type CcpOrder = Node & {
2393
2389
  __typename?: 'CcpOrder';
2394
2390
  id: Scalars['ID'];
2395
2391
  itemId?: Maybe<Scalars['ID']>;
2396
2392
  };
2397
- export type CcpPricingPlan = Node & {
2393
+ export type CcpPricingPlan = CommercePricingPlan & Node & {
2398
2394
  __typename?: 'CcpPricingPlan';
2395
+ activatedWithReason?: Maybe<CcpActivationReason>;
2396
+ catalogAccountId?: Maybe<Scalars['ID']>;
2397
+ currency?: Maybe<CcpCurrency>;
2398
+ description?: Maybe<Scalars['String']>;
2399
2399
  id: Scalars['ID'];
2400
+ items?: Maybe<Array<Maybe<CcpPricingPlanItem>>>;
2400
2401
  key?: Maybe<Scalars['ID']>;
2401
- updatedAt?: Maybe<Scalars['Float']>;
2402
- sku?: Maybe<Scalars['String']>;
2403
- description?: Maybe<Scalars['String']>;
2402
+ maxNewQuoteDate?: Maybe<Scalars['Float']>;
2403
+ offering?: Maybe<CcpOffering>;
2404
2404
  offeringKey?: Maybe<Scalars['ID']>;
2405
- productKey?: Maybe<Scalars['ID']>;
2406
2405
  primaryCycle?: Maybe<CcpCycle>;
2406
+ productKey?: Maybe<Scalars['ID']>;
2407
+ relationships?: Maybe<Array<Maybe<CcpPricingPlanRelationship>>>;
2408
+ sku?: Maybe<Scalars['String']>;
2407
2409
  status?: Maybe<CcpPricingPlanStatus>;
2408
- currency?: Maybe<CcpCurrency>;
2410
+ supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
2409
2411
  type?: Maybe<Scalars['String']>;
2410
- maxNewQuoteDate?: Maybe<Scalars['Float']>;
2411
- activatedWithReason?: Maybe<CcpActivationReason>;
2412
- items?: Maybe<Array<Maybe<CcpPricingPlanItem>>>;
2412
+ updatedAt?: Maybe<Scalars['Float']>;
2413
2413
  version?: Maybe<Scalars['Float']>;
2414
- relationships?: Maybe<Array<Maybe<CcpPricingPlanRelationship>>>;
2415
- supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
2416
- catalogAccountId?: Maybe<Scalars['ID']>;
2417
- offering?: Maybe<CcpOffering>;
2418
2414
  };
2419
2415
  export type CcpPricingPlanItem = {
2420
2416
  __typename?: 'CcpPricingPlanItem';
2421
- cycle?: Maybe<CcpCycle>;
2422
- chargeType?: Maybe<CcpChargeType>;
2423
2417
  chargeElement?: Maybe<Scalars['String']>;
2424
- tiersMode?: Maybe<CcpTiersMode>;
2425
- usageUpdateCadence?: Maybe<CcpUsageUpdateCadence>;
2418
+ chargeType?: Maybe<CcpChargeType>;
2419
+ cycle?: Maybe<CcpCycle>;
2426
2420
  prorateOnUsageChange?: Maybe<CcpProrateOnUsageChange>;
2427
2421
  tiers?: Maybe<Array<Maybe<CcpPricingPlanTier>>>;
2422
+ tiersMode?: Maybe<CcpTiersMode>;
2423
+ usageUpdateCadence?: Maybe<CcpUsageUpdateCadence>;
2428
2424
  };
2429
2425
  export type CcpPricingPlanRelationship = {
2430
2426
  __typename?: 'CcpPricingPlanRelationship';
2431
2427
  fromPricingPlanKey?: Maybe<Scalars['ID']>;
2428
+ metadata?: Maybe<Scalars['String']>;
2432
2429
  toPricingPlanKey?: Maybe<Scalars['ID']>;
2433
2430
  type?: Maybe<CcpRelationshipPricingType>;
2434
- metadata?: Maybe<Scalars['String']>;
2435
2431
  };
2436
2432
  export declare enum CcpPricingPlanStatus {
2437
- Draft = "DRAFT",
2438
2433
  Active = "ACTIVE",
2439
2434
  AtNotice = "AT_NOTICE",
2435
+ Draft = "DRAFT",
2440
2436
  Expired = "EXPIRED"
2441
2437
  }
2442
2438
  export type CcpPricingPlanTier = {
2443
2439
  __typename?: 'CcpPricingPlanTier';
2444
- floor?: Maybe<Scalars['Int']>;
2445
2440
  ceiling?: Maybe<Scalars['Int']>;
2446
- unitAmount?: Maybe<Scalars['Int']>;
2447
2441
  flatAmount?: Maybe<Scalars['Int']>;
2442
+ floor?: Maybe<Scalars['Int']>;
2443
+ unitAmount?: Maybe<Scalars['Int']>;
2448
2444
  };
2449
2445
  export declare enum CcpPricingType {
2450
2446
  External = "EXTERNAL",
@@ -2452,25 +2448,21 @@ export declare enum CcpPricingType {
2452
2448
  LimitedFree = "LIMITED_FREE",
2453
2449
  Paid = "PAID"
2454
2450
  }
2455
- export type CcpPromotion = {
2456
- __typename?: 'CcpPromotion';
2457
- id?: Maybe<Scalars['ID']>;
2458
- };
2459
2451
  export type CcpPromotionDefinition = {
2460
2452
  __typename?: 'CcpPromotionDefinition';
2461
- promotionId?: Maybe<Scalars['ID']>;
2462
- promotionCode?: Maybe<Scalars['String']>;
2463
2453
  customisedValues?: Maybe<CcpCustomisedValues>;
2454
+ promotionCode?: Maybe<Scalars['String']>;
2455
+ promotionId?: Maybe<Scalars['ID']>;
2464
2456
  };
2465
2457
  export type CcpPromotionInstance = {
2466
2458
  __typename?: 'CcpPromotionInstance';
2467
- promotionInstanceId?: Maybe<Scalars['ID']>;
2468
2459
  promotionDefinition?: Maybe<CcpPromotionDefinition>;
2460
+ promotionInstanceId?: Maybe<Scalars['ID']>;
2469
2461
  };
2470
2462
  export declare enum CcpProrateOnUsageChange {
2463
+ AlwaysInvoice = "ALWAYS_INVOICE",
2471
2464
  CreateProrations = "CREATE_PRORATIONS",
2472
- None = "NONE",
2473
- AlwaysInvoice = "ALWAYS_INVOICE"
2465
+ None = "NONE"
2474
2466
  }
2475
2467
  export type CcpQueryApi = {
2476
2468
  __typename?: 'CcpQueryApi';
@@ -2489,53 +2481,53 @@ export type CcpQueryApiPricingPlanArgs = {
2489
2481
  };
2490
2482
  export declare enum CcpRelationshipPricingType {
2491
2483
  AdvantagePricing = "ADVANTAGE_PRICING",
2484
+ CurrencyGenerated = "CURRENCY_GENERATED",
2492
2485
  NextPricing = "NEXT_PRICING",
2493
- SyntheticGenerated = "SYNTHETIC_GENERATED",
2494
- CurrencyGenerated = "CURRENCY_GENERATED"
2486
+ SyntheticGenerated = "SYNTHETIC_GENERATED"
2495
2487
  }
2496
- export type CcpSubscription = {
2488
+ export type CcpSubscription = CommerceSubscription & {
2497
2489
  __typename?: 'CcpSubscription';
2498
- id: Scalars['ID'];
2499
- orderItemId?: Maybe<Scalars['ID']>;
2500
- entitlementId?: Maybe<Scalars['ID']>;
2501
- version?: Maybe<Scalars['Int']>;
2502
- endTimestamp?: Maybe<Scalars['Float']>;
2503
2490
  accountDetails?: Maybe<CcpAccountDetails>;
2504
- chargeDetails?: Maybe<CcpChargeDetails>;
2505
- trial?: Maybe<CcpTrial>;
2506
2491
  billingPeriodDetails?: Maybe<CcpBillingPeriodDetails>;
2492
+ chargeDetails?: Maybe<CcpChargeDetails>;
2493
+ endTimestamp?: Maybe<Scalars['Float']>;
2494
+ entitlementId?: Maybe<Scalars['ID']>;
2495
+ id: Scalars['ID'];
2507
2496
  metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
2508
- subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
2509
- status?: Maybe<CcpSubscriptionStatus>;
2510
- startTimestamp?: Maybe<Scalars['Float']>;
2497
+ orderItemId?: Maybe<Scalars['ID']>;
2511
2498
  pricingPlan?: Maybe<CcpPricingPlan>;
2499
+ startTimestamp?: Maybe<Scalars['Float']>;
2500
+ status?: Maybe<CcpSubscriptionStatus>;
2501
+ subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
2502
+ trial?: Maybe<CcpTrial>;
2503
+ version?: Maybe<Scalars['Int']>;
2512
2504
  };
2513
2505
  export type CcpSubscriptionSchedule = {
2514
2506
  __typename?: 'CcpSubscriptionSchedule';
2507
+ chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
2508
+ invoiceGroupId?: Maybe<Scalars['ID']>;
2515
2509
  nextChangeTimestamp?: Maybe<Scalars['Float']>;
2516
- subscriptionScheduleAction?: Maybe<CcpSubscriptionScheduleAction>;
2517
2510
  offeringId?: Maybe<Scalars['ID']>;
2511
+ orderItemId?: Maybe<Scalars['ID']>;
2518
2512
  pricingPlanId?: Maybe<Scalars['ID']>;
2519
- chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
2520
2513
  promotionIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
2521
2514
  promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
2522
- trial?: Maybe<CcpTrial>;
2515
+ subscriptionScheduleAction?: Maybe<CcpSubscriptionScheduleAction>;
2523
2516
  transactionAccountId?: Maybe<Scalars['ID']>;
2524
- invoiceGroupId?: Maybe<Scalars['ID']>;
2525
- orderItemId?: Maybe<Scalars['ID']>;
2517
+ trial?: Maybe<CcpTrial>;
2526
2518
  };
2527
2519
  export declare enum CcpSubscriptionScheduleAction {
2528
- Update = "UPDATE",
2529
- Cancel = "CANCEL"
2520
+ Cancel = "CANCEL",
2521
+ Update = "UPDATE"
2530
2522
  }
2531
2523
  export declare enum CcpSubscriptionStatus {
2532
- Processing = "PROCESSING",
2533
2524
  Active = "ACTIVE",
2534
- Cancelled = "CANCELLED"
2525
+ Cancelled = "CANCELLED",
2526
+ Processing = "PROCESSING"
2535
2527
  }
2536
2528
  export declare enum CcpSupportedBillingSystems {
2537
- Hams = "HAMS",
2538
2529
  Ccp = "CCP",
2530
+ Hams = "HAMS",
2539
2531
  Opsgenie = "OPSGENIE"
2540
2532
  }
2541
2533
  export declare enum CcpTiersMode {
@@ -2544,20 +2536,20 @@ export declare enum CcpTiersMode {
2544
2536
  }
2545
2537
  export type CcpTransactionAccount = Node & {
2546
2538
  __typename?: 'CcpTransactionAccount';
2547
- id: Scalars['ID'];
2548
2539
  billingAdmins?: Maybe<Array<Maybe<Scalars['ID']>>>;
2540
+ id: Scalars['ID'];
2549
2541
  };
2550
- export type CcpTrial = {
2542
+ export type CcpTrial = CommerceTrial & {
2551
2543
  __typename?: 'CcpTrial';
2552
- startTimestamp?: Maybe<Scalars['Float']>;
2553
2544
  endTimestamp?: Maybe<Scalars['Float']>;
2554
- pricingPlanId?: Maybe<Scalars['ID']>;
2555
2545
  offeringId?: Maybe<Scalars['ID']>;
2546
+ pricingPlanId?: Maybe<Scalars['ID']>;
2547
+ startTimestamp?: Maybe<Scalars['Float']>;
2556
2548
  };
2557
2549
  export type CcpUsageUpdateCadence = {
2558
2550
  __typename?: 'CcpUsageUpdateCadence';
2559
- name?: Maybe<Scalars['String']>;
2560
2551
  cadenceIntervalMinutes?: Maybe<Scalars['Int']>;
2552
+ name?: Maybe<Scalars['String']>;
2561
2553
  };
2562
2554
  export type CheckConsentPermissionByOAuthClientIdInput = {
2563
2555
  cloudId: Scalars['ID'];
@@ -2653,6 +2645,45 @@ export type ColumnsConfig = {
2653
2645
  unmappedStatuses?: Maybe<Array<Maybe<RawStatus>>>;
2654
2646
  isUpdating?: Maybe<Scalars['Boolean']>;
2655
2647
  };
2648
+ export type CommerceEntitlement = {
2649
+ id: Scalars['ID'];
2650
+ subscription?: Maybe<CommerceSubscription>;
2651
+ };
2652
+ export type CommerceEntitlementInfo = {
2653
+ entitlement?: Maybe<CommerceEntitlement>;
2654
+ entitlementId: Scalars['ID'];
2655
+ };
2656
+ export type CommerceEntitlementInfoCcp = CommerceEntitlementInfo & {
2657
+ __typename?: 'CommerceEntitlementInfoCcp';
2658
+ entitlement?: Maybe<CcpEntitlement>;
2659
+ entitlementId: Scalars['ID'];
2660
+ };
2661
+ export type CommerceEntitlementInfoHams = CommerceEntitlementInfo & {
2662
+ __typename?: 'CommerceEntitlementInfoHams';
2663
+ entitlement?: Maybe<HamsEntitlement>;
2664
+ entitlementId: Scalars['ID'];
2665
+ };
2666
+ export type CommercePricingPlan = {
2667
+ primaryCycle?: Maybe<CommercePrimaryCycle>;
2668
+ };
2669
+ export type CommercePrimaryCycle = {
2670
+ interval?: Maybe<CcpBillingInterval>;
2671
+ };
2672
+ export type CommerceQuery = {
2673
+ __typename?: 'CommerceQuery';
2674
+ entitlementInfo?: Maybe<CommerceEntitlementInfo>;
2675
+ };
2676
+ export type CommerceQueryEntitlementInfoArgs = {
2677
+ cloudId: Scalars['ID'];
2678
+ hamsProductKey: Scalars['String'];
2679
+ };
2680
+ export type CommerceSubscription = {
2681
+ pricingPlan?: Maybe<CommercePricingPlan>;
2682
+ trial?: Maybe<CommerceTrial>;
2683
+ };
2684
+ export type CommerceTrial = {
2685
+ endTimestamp?: Maybe<Scalars['Float']>;
2686
+ };
2656
2687
  export type CompassAcknowledgeAnnouncementInput = {
2657
2688
  announcementId: Scalars['ID'];
2658
2689
  componentId: Scalars['ID'];
@@ -4458,6 +4489,7 @@ export declare enum CompassScorecardImportance {
4458
4489
  export type CompassScorecardQueryFilter = {
4459
4490
  name?: Maybe<Scalars['String']>;
4460
4491
  componentTypeIds?: Maybe<CompassScorecardAppliedToComponentsTypesFilter>;
4492
+ type?: Maybe<Scalars['String']>;
4461
4493
  };
4462
4494
  export type CompassScorecardQuerySort = {
4463
4495
  name: Scalars['String'];
@@ -9823,6 +9855,10 @@ export type Graph = {
9823
9855
  projectAssociatedVulnerabilityInverse?: Maybe<GraphJiraProjectConnection>;
9824
9856
  projectAssociatedVulnerabilityRelationship?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
9825
9857
  projectAssociatedVulnerabilityRelationshipInverse?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
9858
+ issueAssociatedDesign?: Maybe<GraphJiraDesignConnection>;
9859
+ issueAssociatedDesignInverse?: Maybe<GraphJiraIssueConnection>;
9860
+ issueAssociatedDesignRelationship?: Maybe<GraphIssueAssociatedDesignRelationshipConnection>;
9861
+ issueAssociatedDesignRelationshipInverse?: Maybe<GraphIssueAssociatedDesignRelationshipConnection>;
9826
9862
  projectAssociatedService?: Maybe<GraphProjectServiceConnection>;
9827
9863
  };
9828
9864
  export type GraphFetchAllRelationshipsArgs = {
@@ -9947,6 +9983,26 @@ export type GraphProjectAssociatedVulnerabilityRelationshipInverseArgs = {
9947
9983
  first?: Maybe<Scalars['Int']>;
9948
9984
  to: Scalars['ID'];
9949
9985
  };
9986
+ export type GraphIssueAssociatedDesignArgs = {
9987
+ after?: Maybe<Scalars['String']>;
9988
+ first?: Maybe<Scalars['Int']>;
9989
+ from: Scalars['ID'];
9990
+ };
9991
+ export type GraphIssueAssociatedDesignInverseArgs = {
9992
+ after?: Maybe<Scalars['String']>;
9993
+ first?: Maybe<Scalars['Int']>;
9994
+ to: Scalars['ID'];
9995
+ };
9996
+ export type GraphIssueAssociatedDesignRelationshipArgs = {
9997
+ after?: Maybe<Scalars['String']>;
9998
+ first?: Maybe<Scalars['Int']>;
9999
+ from: Scalars['ID'];
10000
+ };
10001
+ export type GraphIssueAssociatedDesignRelationshipInverseArgs = {
10002
+ after?: Maybe<Scalars['String']>;
10003
+ first?: Maybe<Scalars['Int']>;
10004
+ to: Scalars['ID'];
10005
+ };
9950
10006
  export type GraphProjectAssociatedServiceArgs = {
9951
10007
  after?: Maybe<Scalars['String']>;
9952
10008
  first?: Maybe<Scalars['Int']>;
@@ -9967,6 +10023,12 @@ export type GraphConfluencePageEdge = {
9967
10023
  cursor?: Maybe<Scalars['String']>;
9968
10024
  node: GraphConfluencePage;
9969
10025
  };
10026
+ export type GraphCreateIssueAssociatedDesignInput = {
10027
+ from: Scalars['ID'];
10028
+ sequenceNumber?: Maybe<Scalars['Long']>;
10029
+ to: Scalars['ID'];
10030
+ updatedAt?: Maybe<Scalars['DateTime']>;
10031
+ };
9970
10032
  export type GraphCreateIssueAssociatedPrInput = {
9971
10033
  from: Scalars['ID'];
9972
10034
  sequenceNumber?: Maybe<Scalars['Long']>;
@@ -10068,6 +10130,29 @@ export type GraphGenericFetchAllRelationshipsArgs = {
10068
10130
  updatedFrom?: Maybe<Scalars['DateTime']>;
10069
10131
  updatedTo?: Maybe<Scalars['DateTime']>;
10070
10132
  };
10133
+ export type GraphIssueAssociatedDesignPayload = Payload & {
10134
+ __typename?: 'GraphIssueAssociatedDesignPayload';
10135
+ errors?: Maybe<Array<MutationError>>;
10136
+ issueAssociatedDesignRelationship: Array<Maybe<GraphIssueAssociatedDesignRelationship>>;
10137
+ success: Scalars['Boolean'];
10138
+ };
10139
+ export type GraphIssueAssociatedDesignRelationship = Node & {
10140
+ __typename?: 'GraphIssueAssociatedDesignRelationship';
10141
+ from: GraphJiraIssue;
10142
+ id: Scalars['ID'];
10143
+ lastUpdated: Scalars['DateTime'];
10144
+ to: GraphJiraDesign;
10145
+ };
10146
+ export type GraphIssueAssociatedDesignRelationshipConnection = {
10147
+ __typename?: 'GraphIssueAssociatedDesignRelationshipConnection';
10148
+ edges: Array<Maybe<GraphIssueAssociatedDesignRelationshipEdge>>;
10149
+ pageInfo: PageInfo;
10150
+ };
10151
+ export type GraphIssueAssociatedDesignRelationshipEdge = {
10152
+ __typename?: 'GraphIssueAssociatedDesignRelationshipEdge';
10153
+ cursor?: Maybe<Scalars['String']>;
10154
+ node: GraphIssueAssociatedDesignRelationship;
10155
+ };
10071
10156
  export type GraphIssueAssociatedPrPayload = Payload & {
10072
10157
  __typename?: 'GraphIssueAssociatedPrPayload';
10073
10158
  errors?: Maybe<Array<MutationError>>;
@@ -10105,6 +10190,21 @@ export type GraphJiraDeploymentEdge = {
10105
10190
  cursor?: Maybe<Scalars['String']>;
10106
10191
  node: GraphJiraDeployment;
10107
10192
  };
10193
+ export type GraphJiraDesign = Node & {
10194
+ __typename?: 'GraphJiraDesign';
10195
+ id: Scalars['ID'];
10196
+ design?: Maybe<DevOpsDesign>;
10197
+ };
10198
+ export type GraphJiraDesignConnection = {
10199
+ __typename?: 'GraphJiraDesignConnection';
10200
+ edges: Array<Maybe<GraphJiraDesignEdge>>;
10201
+ pageInfo: PageInfo;
10202
+ };
10203
+ export type GraphJiraDesignEdge = {
10204
+ __typename?: 'GraphJiraDesignEdge';
10205
+ cursor?: Maybe<Scalars['String']>;
10206
+ node: GraphJiraDesign;
10207
+ };
10108
10208
  export type GraphJiraDocument = Node & {
10109
10209
  __typename?: 'GraphJiraDocument';
10110
10210
  id: Scalars['ID'];
@@ -10196,6 +10296,7 @@ export type GraphMutation = {
10196
10296
  __typename?: 'GraphMutation';
10197
10297
  createIssueAssociatedPr?: Maybe<GraphIssueAssociatedPrPayload>;
10198
10298
  createSprintRetrospectivePage?: Maybe<GraphSprintRetrospectivePagePayload>;
10299
+ createIssueAssociatedDesign?: Maybe<GraphIssueAssociatedDesignPayload>;
10199
10300
  };
10200
10301
  export type GraphMutationCreateIssueAssociatedPrArgs = {
10201
10302
  input: GraphCreateIssueAssociatedPrInput;
@@ -10203,6 +10304,9 @@ export type GraphMutationCreateIssueAssociatedPrArgs = {
10203
10304
  export type GraphMutationCreateSprintRetrospectivePageArgs = {
10204
10305
  input: GraphCreateSprintRetrospectivePageInput;
10205
10306
  };
10307
+ export type GraphMutationCreateIssueAssociatedDesignArgs = {
10308
+ input: GraphCreateIssueAssociatedDesignInput;
10309
+ };
10206
10310
  export type GraphParentDocumentHasChildDocumentPayload = Payload & {
10207
10311
  __typename?: 'GraphParentDocumentHasChildDocumentPayload';
10208
10312
  errors?: Maybe<Array<MutationError>>;
@@ -10594,6 +10698,58 @@ export type GraphSprintRetrospectivePageRelationshipEdge = {
10594
10698
  cursor?: Maybe<Scalars['String']>;
10595
10699
  node: GraphSprintRetrospectivePageRelationship;
10596
10700
  };
10701
+ export type HamsEntitlement = CommerceEntitlement & {
10702
+ __typename?: 'HamsEntitlement';
10703
+ accountId?: Maybe<Scalars['String']>;
10704
+ addon?: Maybe<Scalars['Boolean']>;
10705
+ creationDate?: Maybe<Scalars['String']>;
10706
+ currentEdition?: Maybe<Scalars['String']>;
10707
+ editionTransitions?: Maybe<Array<Maybe<Scalars['String']>>>;
10708
+ endDate?: Maybe<Scalars['String']>;
10709
+ entitlementGroupId?: Maybe<Scalars['String']>;
10710
+ entitlementId?: Maybe<Scalars['String']>;
10711
+ entitlementMigrationEvaluation?: Maybe<HamsEntitlementMigrationEvaluation>;
10712
+ entitlementSource?: Maybe<Scalars['String']>;
10713
+ futureEdition?: Maybe<Scalars['String']>;
10714
+ futureEditionTransition?: Maybe<Scalars['String']>;
10715
+ id: Scalars['ID'];
10716
+ name?: Maybe<Scalars['String']>;
10717
+ overriddenEdition?: Maybe<Scalars['String']>;
10718
+ productKey?: Maybe<Scalars['String']>;
10719
+ sen?: Maybe<Scalars['String']>;
10720
+ shortTrial?: Maybe<Scalars['Boolean']>;
10721
+ slug?: Maybe<Scalars['String']>;
10722
+ startDate?: Maybe<Scalars['String']>;
10723
+ status?: Maybe<Scalars['String']>;
10724
+ subscription?: Maybe<HamsSubscription>;
10725
+ suspended?: Maybe<Scalars['Boolean']>;
10726
+ trialEdition?: Maybe<Scalars['String']>;
10727
+ trialEditionEndDate?: Maybe<Scalars['String']>;
10728
+ trialEndDate?: Maybe<Scalars['String']>;
10729
+ };
10730
+ export type HamsEntitlementMigrationEvaluation = {
10731
+ __typename?: 'HamsEntitlementMigrationEvaluation';
10732
+ btfSourceAccountId?: Maybe<Scalars['String']>;
10733
+ usageLimit?: Maybe<Scalars['Int']>;
10734
+ usageType?: Maybe<Scalars['String']>;
10735
+ };
10736
+ export type HamsPricingPlan = CommercePricingPlan & {
10737
+ __typename?: 'HamsPricingPlan';
10738
+ primaryCycle?: Maybe<HamsPrimaryCycle>;
10739
+ };
10740
+ export type HamsPrimaryCycle = CommercePrimaryCycle & {
10741
+ __typename?: 'HamsPrimaryCycle';
10742
+ interval?: Maybe<CcpBillingInterval>;
10743
+ };
10744
+ export type HamsSubscription = CommerceSubscription & {
10745
+ __typename?: 'HamsSubscription';
10746
+ pricingPlan?: Maybe<HamsPricingPlan>;
10747
+ trial?: Maybe<HamsTrial>;
10748
+ };
10749
+ export type HamsTrial = CommerceTrial & {
10750
+ __typename?: 'HamsTrial';
10751
+ endTimestamp?: Maybe<Scalars['Float']>;
10752
+ };
10597
10753
  export type HasPageInfo = {
10598
10754
  pageInfo: PageInfo;
10599
10755
  };
@@ -15544,6 +15700,8 @@ export type JiraMutation = {
15544
15700
  createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
15545
15701
  updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
15546
15702
  updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
15703
+ updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
15704
+ updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
15547
15705
  replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
15548
15706
  makeTransition?: Maybe<JiraIssueTransitionResponse>;
15549
15707
  userPreferences?: Maybe<JiraUserPreferencesMutation>;
@@ -15666,6 +15824,12 @@ export type JiraMutationUpdateJiraVersionArgs = {
15666
15824
  export type JiraMutationUpdateJiraVersionDriverArgs = {
15667
15825
  input: JiraUpdateVersionDriverInput;
15668
15826
  };
15827
+ export type JiraMutationUpdateJiraVersionRichTextSectionTitleArgs = {
15828
+ input: JiraUpdateVersionRichTextSectionTitleInput;
15829
+ };
15830
+ export type JiraMutationUpdateJiraVersionRichTextSectionContentArgs = {
15831
+ input: JiraUpdateVersionRichTextSectionContentInput;
15832
+ };
15669
15833
  export type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
15670
15834
  id: Scalars['ID'];
15671
15835
  input: JiraReplaceIssueSearchViewFieldSetsInput;
@@ -16353,6 +16517,7 @@ export type JiraPermissionSchemeAddGrantPayload = Payload & {
16353
16517
  export type JiraPermissionSchemeConfiguration = {
16354
16518
  __typename?: 'JiraPermissionSchemeConfiguration';
16355
16519
  isEditable: Scalars['Boolean'];
16520
+ isPublicSharingDisabled: Scalars['Boolean'];
16356
16521
  };
16357
16522
  export type JiraPermissionSchemeGrantGroup = {
16358
16523
  __typename?: 'JiraPermissionSchemeGrantGroup';
@@ -19620,6 +19785,14 @@ export type JiraUpdateVersionReleasedStatusInput = {
19620
19785
  id: Scalars['ID'];
19621
19786
  isReleased: Scalars['Boolean'];
19622
19787
  };
19788
+ export type JiraUpdateVersionRichTextSectionContentInput = {
19789
+ id: Scalars['ID'];
19790
+ content?: Maybe<Scalars['JSON']>;
19791
+ };
19792
+ export type JiraUpdateVersionRichTextSectionTitleInput = {
19793
+ id: Scalars['ID'];
19794
+ title?: Maybe<Scalars['String']>;
19795
+ };
19623
19796
  export type JiraUpdateVersionStartDateInput = {
19624
19797
  id: Scalars['ID'];
19625
19798
  startDate?: Maybe<Scalars['DateTime']>;
@@ -19808,6 +19981,7 @@ export type JiraVersion = Node & {
19808
19981
  hasReleaseNote?: Maybe<Scalars['Boolean']>;
19809
19982
  driver?: Maybe<User>;
19810
19983
  statistics?: Maybe<JiraVersionStatistics>;
19984
+ richTextSection?: Maybe<JiraVersionRichTextSection>;
19811
19985
  releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
19812
19986
  availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
19813
19987
  relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
@@ -19983,7 +20157,8 @@ export declare enum JiraVersionDetailsCollapsedUi {
19983
20157
  RelatedWork = "RELATED_WORK",
19984
20158
  Issues = "ISSUES",
19985
20159
  ProgressCard = "PROGRESS_CARD",
19986
- RightSidebar = "RIGHT_SIDEBAR"
20160
+ RightSidebar = "RIGHT_SIDEBAR",
20161
+ RichTextSection = "RICH_TEXT_SECTION"
19987
20162
  }
19988
20163
  export type JiraVersionDetailsCollapsedUisInput = {
19989
20164
  collapsedUis: Array<JiraVersionDetailsCollapsedUi>;
@@ -20153,6 +20328,11 @@ export declare enum JiraVersionReleaseNotesType {
20153
20328
  ConfluenceReleaseNote = "CONFLUENCE_RELEASE_NOTE"
20154
20329
  }
20155
20330
  export type JiraVersionResult = JiraVersion | QueryError;
20331
+ export type JiraVersionRichTextSection = {
20332
+ __typename?: 'JiraVersionRichTextSection';
20333
+ title?: Maybe<Scalars['String']>;
20334
+ content?: Maybe<JiraAdf>;
20335
+ };
20156
20336
  export type JiraVersionStatistics = {
20157
20337
  __typename?: 'JiraVersionStatistics';
20158
20338
  notDoneEstimate?: Maybe<Scalars['Float']>;
@@ -23598,6 +23778,7 @@ export type Query = {
23598
23778
  devOpsMetrics?: Maybe<DevOpsMetrics>;
23599
23779
  aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
23600
23780
  shepherd?: Maybe<ShepherdQuery>;
23781
+ commerce?: Maybe<CommerceQuery>;
23601
23782
  helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
23602
23783
  jsw?: Maybe<JswQuery>;
23603
23784
  boardScope?: Maybe<BoardScope>;
@@ -25194,6 +25375,8 @@ export declare enum Scope {
25194
25375
  WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
25195
25376
  WorkflowWrite = "WORKFLOW_WRITE",
25196
25377
  JiraExpressionsRead = "JIRA_EXPRESSIONS_READ",
25378
+ ReadDesign = "READ_DESIGN",
25379
+ WriteDesign = "WRITE_DESIGN",
25197
25380
  ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
25198
25381
  WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
25199
25382
  ManageServicedeskCustomer = "MANAGE_SERVICEDESK_CUSTOMER",
@@ -27298,6 +27481,10 @@ export type TenantContext = {
27298
27481
  cloudUrl?: Maybe<Scalars['URL']>;
27299
27482
  orgId?: Maybe<Scalars['ID']>;
27300
27483
  customDomains?: Maybe<Array<TenantContextCustomDomain>>;
27484
+ entitlementInfo?: Maybe<CommerceEntitlementInfo>;
27485
+ };
27486
+ export type TenantContextEntitlementInfoArgs = {
27487
+ hamsProductKey: Scalars['String'];
27301
27488
  };
27302
27489
  export type TenantContextCustomDomain = {
27303
27490
  __typename?: 'TenantContextCustomDomain';