@forge/cli-shared 3.18.0-next.12 → 3.18.0-next.14

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'];
@@ -9823,6 +9854,10 @@ export type Graph = {
9823
9854
  projectAssociatedVulnerabilityInverse?: Maybe<GraphJiraProjectConnection>;
9824
9855
  projectAssociatedVulnerabilityRelationship?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
9825
9856
  projectAssociatedVulnerabilityRelationshipInverse?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
9857
+ issueAssociatedDesign?: Maybe<GraphJiraDesignConnection>;
9858
+ issueAssociatedDesignInverse?: Maybe<GraphJiraIssueConnection>;
9859
+ issueAssociatedDesignRelationship?: Maybe<GraphIssueAssociatedDesignRelationshipConnection>;
9860
+ issueAssociatedDesignRelationshipInverse?: Maybe<GraphIssueAssociatedDesignRelationshipConnection>;
9826
9861
  projectAssociatedService?: Maybe<GraphProjectServiceConnection>;
9827
9862
  };
9828
9863
  export type GraphFetchAllRelationshipsArgs = {
@@ -9947,6 +9982,26 @@ export type GraphProjectAssociatedVulnerabilityRelationshipInverseArgs = {
9947
9982
  first?: Maybe<Scalars['Int']>;
9948
9983
  to: Scalars['ID'];
9949
9984
  };
9985
+ export type GraphIssueAssociatedDesignArgs = {
9986
+ after?: Maybe<Scalars['String']>;
9987
+ first?: Maybe<Scalars['Int']>;
9988
+ from: Scalars['ID'];
9989
+ };
9990
+ export type GraphIssueAssociatedDesignInverseArgs = {
9991
+ after?: Maybe<Scalars['String']>;
9992
+ first?: Maybe<Scalars['Int']>;
9993
+ to: Scalars['ID'];
9994
+ };
9995
+ export type GraphIssueAssociatedDesignRelationshipArgs = {
9996
+ after?: Maybe<Scalars['String']>;
9997
+ first?: Maybe<Scalars['Int']>;
9998
+ from: Scalars['ID'];
9999
+ };
10000
+ export type GraphIssueAssociatedDesignRelationshipInverseArgs = {
10001
+ after?: Maybe<Scalars['String']>;
10002
+ first?: Maybe<Scalars['Int']>;
10003
+ to: Scalars['ID'];
10004
+ };
9950
10005
  export type GraphProjectAssociatedServiceArgs = {
9951
10006
  after?: Maybe<Scalars['String']>;
9952
10007
  first?: Maybe<Scalars['Int']>;
@@ -9967,6 +10022,12 @@ export type GraphConfluencePageEdge = {
9967
10022
  cursor?: Maybe<Scalars['String']>;
9968
10023
  node: GraphConfluencePage;
9969
10024
  };
10025
+ export type GraphCreateIssueAssociatedDesignInput = {
10026
+ from: Scalars['ID'];
10027
+ sequenceNumber?: Maybe<Scalars['Long']>;
10028
+ to: Scalars['ID'];
10029
+ updatedAt?: Maybe<Scalars['DateTime']>;
10030
+ };
9970
10031
  export type GraphCreateIssueAssociatedPrInput = {
9971
10032
  from: Scalars['ID'];
9972
10033
  sequenceNumber?: Maybe<Scalars['Long']>;
@@ -10068,6 +10129,29 @@ export type GraphGenericFetchAllRelationshipsArgs = {
10068
10129
  updatedFrom?: Maybe<Scalars['DateTime']>;
10069
10130
  updatedTo?: Maybe<Scalars['DateTime']>;
10070
10131
  };
10132
+ export type GraphIssueAssociatedDesignPayload = Payload & {
10133
+ __typename?: 'GraphIssueAssociatedDesignPayload';
10134
+ errors?: Maybe<Array<MutationError>>;
10135
+ issueAssociatedDesignRelationship: Array<Maybe<GraphIssueAssociatedDesignRelationship>>;
10136
+ success: Scalars['Boolean'];
10137
+ };
10138
+ export type GraphIssueAssociatedDesignRelationship = Node & {
10139
+ __typename?: 'GraphIssueAssociatedDesignRelationship';
10140
+ from: GraphJiraIssue;
10141
+ id: Scalars['ID'];
10142
+ lastUpdated: Scalars['DateTime'];
10143
+ to: GraphJiraDesign;
10144
+ };
10145
+ export type GraphIssueAssociatedDesignRelationshipConnection = {
10146
+ __typename?: 'GraphIssueAssociatedDesignRelationshipConnection';
10147
+ edges: Array<Maybe<GraphIssueAssociatedDesignRelationshipEdge>>;
10148
+ pageInfo: PageInfo;
10149
+ };
10150
+ export type GraphIssueAssociatedDesignRelationshipEdge = {
10151
+ __typename?: 'GraphIssueAssociatedDesignRelationshipEdge';
10152
+ cursor?: Maybe<Scalars['String']>;
10153
+ node: GraphIssueAssociatedDesignRelationship;
10154
+ };
10071
10155
  export type GraphIssueAssociatedPrPayload = Payload & {
10072
10156
  __typename?: 'GraphIssueAssociatedPrPayload';
10073
10157
  errors?: Maybe<Array<MutationError>>;
@@ -10105,6 +10189,21 @@ export type GraphJiraDeploymentEdge = {
10105
10189
  cursor?: Maybe<Scalars['String']>;
10106
10190
  node: GraphJiraDeployment;
10107
10191
  };
10192
+ export type GraphJiraDesign = Node & {
10193
+ __typename?: 'GraphJiraDesign';
10194
+ id: Scalars['ID'];
10195
+ design?: Maybe<DevOpsDesign>;
10196
+ };
10197
+ export type GraphJiraDesignConnection = {
10198
+ __typename?: 'GraphJiraDesignConnection';
10199
+ edges: Array<Maybe<GraphJiraDesignEdge>>;
10200
+ pageInfo: PageInfo;
10201
+ };
10202
+ export type GraphJiraDesignEdge = {
10203
+ __typename?: 'GraphJiraDesignEdge';
10204
+ cursor?: Maybe<Scalars['String']>;
10205
+ node: GraphJiraDesign;
10206
+ };
10108
10207
  export type GraphJiraDocument = Node & {
10109
10208
  __typename?: 'GraphJiraDocument';
10110
10209
  id: Scalars['ID'];
@@ -10196,6 +10295,7 @@ export type GraphMutation = {
10196
10295
  __typename?: 'GraphMutation';
10197
10296
  createIssueAssociatedPr?: Maybe<GraphIssueAssociatedPrPayload>;
10198
10297
  createSprintRetrospectivePage?: Maybe<GraphSprintRetrospectivePagePayload>;
10298
+ createIssueAssociatedDesign?: Maybe<GraphIssueAssociatedDesignPayload>;
10199
10299
  };
10200
10300
  export type GraphMutationCreateIssueAssociatedPrArgs = {
10201
10301
  input: GraphCreateIssueAssociatedPrInput;
@@ -10203,6 +10303,9 @@ export type GraphMutationCreateIssueAssociatedPrArgs = {
10203
10303
  export type GraphMutationCreateSprintRetrospectivePageArgs = {
10204
10304
  input: GraphCreateSprintRetrospectivePageInput;
10205
10305
  };
10306
+ export type GraphMutationCreateIssueAssociatedDesignArgs = {
10307
+ input: GraphCreateIssueAssociatedDesignInput;
10308
+ };
10206
10309
  export type GraphParentDocumentHasChildDocumentPayload = Payload & {
10207
10310
  __typename?: 'GraphParentDocumentHasChildDocumentPayload';
10208
10311
  errors?: Maybe<Array<MutationError>>;
@@ -10594,6 +10697,58 @@ export type GraphSprintRetrospectivePageRelationshipEdge = {
10594
10697
  cursor?: Maybe<Scalars['String']>;
10595
10698
  node: GraphSprintRetrospectivePageRelationship;
10596
10699
  };
10700
+ export type HamsEntitlement = CommerceEntitlement & {
10701
+ __typename?: 'HamsEntitlement';
10702
+ accountId?: Maybe<Scalars['String']>;
10703
+ addon?: Maybe<Scalars['Boolean']>;
10704
+ creationDate?: Maybe<Scalars['String']>;
10705
+ currentEdition?: Maybe<Scalars['String']>;
10706
+ editionTransitions?: Maybe<Array<Maybe<Scalars['String']>>>;
10707
+ endDate?: Maybe<Scalars['String']>;
10708
+ entitlementGroupId?: Maybe<Scalars['String']>;
10709
+ entitlementId?: Maybe<Scalars['String']>;
10710
+ entitlementMigrationEvaluation?: Maybe<HamsEntitlementMigrationEvaluation>;
10711
+ entitlementSource?: Maybe<Scalars['String']>;
10712
+ futureEdition?: Maybe<Scalars['String']>;
10713
+ futureEditionTransition?: Maybe<Scalars['String']>;
10714
+ id: Scalars['ID'];
10715
+ name?: Maybe<Scalars['String']>;
10716
+ overriddenEdition?: Maybe<Scalars['String']>;
10717
+ productKey?: Maybe<Scalars['String']>;
10718
+ sen?: Maybe<Scalars['String']>;
10719
+ shortTrial?: Maybe<Scalars['Boolean']>;
10720
+ slug?: Maybe<Scalars['String']>;
10721
+ startDate?: Maybe<Scalars['String']>;
10722
+ status?: Maybe<Scalars['String']>;
10723
+ subscription?: Maybe<HamsSubscription>;
10724
+ suspended?: Maybe<Scalars['Boolean']>;
10725
+ trialEdition?: Maybe<Scalars['String']>;
10726
+ trialEditionEndDate?: Maybe<Scalars['String']>;
10727
+ trialEndDate?: Maybe<Scalars['String']>;
10728
+ };
10729
+ export type HamsEntitlementMigrationEvaluation = {
10730
+ __typename?: 'HamsEntitlementMigrationEvaluation';
10731
+ btfSourceAccountId?: Maybe<Scalars['String']>;
10732
+ usageLimit?: Maybe<Scalars['Int']>;
10733
+ usageType?: Maybe<Scalars['String']>;
10734
+ };
10735
+ export type HamsPricingPlan = CommercePricingPlan & {
10736
+ __typename?: 'HamsPricingPlan';
10737
+ primaryCycle?: Maybe<HamsPrimaryCycle>;
10738
+ };
10739
+ export type HamsPrimaryCycle = CommercePrimaryCycle & {
10740
+ __typename?: 'HamsPrimaryCycle';
10741
+ interval?: Maybe<CcpBillingInterval>;
10742
+ };
10743
+ export type HamsSubscription = CommerceSubscription & {
10744
+ __typename?: 'HamsSubscription';
10745
+ pricingPlan?: Maybe<HamsPricingPlan>;
10746
+ trial?: Maybe<HamsTrial>;
10747
+ };
10748
+ export type HamsTrial = CommerceTrial & {
10749
+ __typename?: 'HamsTrial';
10750
+ endTimestamp?: Maybe<Scalars['Float']>;
10751
+ };
10597
10752
  export type HasPageInfo = {
10598
10753
  pageInfo: PageInfo;
10599
10754
  };
@@ -10613,6 +10768,7 @@ export type HelpCenter = Node & {
10613
10768
  export type HelpCenterBranding = {
10614
10769
  __typename?: 'HelpCenterBranding';
10615
10770
  colors?: Maybe<HelpCenterBrandingColors>;
10771
+ logo?: Maybe<HelpCenterLogo>;
10616
10772
  };
10617
10773
  export type HelpCenterBrandingColors = {
10618
10774
  __typename?: 'HelpCenterBrandingColors';
@@ -10623,6 +10779,7 @@ export type HelpCenterBrandingColorsInput = {
10623
10779
  };
10624
10780
  export type HelpCenterBrandingInput = {
10625
10781
  colors?: Maybe<HelpCenterBrandingColorsInput>;
10782
+ logo?: Maybe<HelpCenterLogoInput>;
10626
10783
  };
10627
10784
  export type HelpCenterBulkCreateTopicsInput = {
10628
10785
  helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
@@ -10659,6 +10816,21 @@ export type HelpCenterHomePageLayout = {
10659
10816
  layoutId: Scalars['ID'];
10660
10817
  data?: Maybe<HelpLayoutResult>;
10661
10818
  };
10819
+ export type HelpCenterLogo = {
10820
+ __typename?: 'HelpCenterLogo';
10821
+ fileId?: Maybe<Scalars['String']>;
10822
+ url?: Maybe<Scalars['String']>;
10823
+ };
10824
+ export type HelpCenterLogoInput = {
10825
+ fileId?: Maybe<Scalars['String']>;
10826
+ };
10827
+ export type HelpCenterMediaConfig = {
10828
+ __typename?: 'HelpCenterMediaConfig';
10829
+ mediaUrl?: Maybe<Scalars['String']>;
10830
+ mediaToken?: Maybe<Scalars['String']>;
10831
+ mediaCollectionName?: Maybe<Scalars['String']>;
10832
+ asapIssuer?: Maybe<Scalars['String']>;
10833
+ };
10662
10834
  export type HelpCenterMutationApi = {
10663
10835
  __typename?: 'HelpCenterMutationApi';
10664
10836
  createTopic?: Maybe<HelpCenterCreateTopicPayload>;
@@ -10696,6 +10868,7 @@ export type HelpCenterQueryApi = {
10696
10868
  helpCenterById?: Maybe<HelpCenterQueryResult>;
10697
10869
  helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
10698
10870
  helpCenters?: Maybe<Array<Maybe<HelpCenterQueryResult>>>;
10871
+ mediaConfig?: Maybe<HelpCenterMediaConfig>;
10699
10872
  };
10700
10873
  export type HelpCenterQueryApiHelpCenterFromProductNameArgs = {
10701
10874
  productName: Scalars['String'];
@@ -10711,6 +10884,9 @@ export type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
10711
10884
  helpCenterAri: Scalars['ID'];
10712
10885
  topicId: Scalars['ID'];
10713
10886
  };
10887
+ export type HelpCenterQueryApiMediaConfigArgs = {
10888
+ helpCenterAri: Scalars['ID'];
10889
+ };
10714
10890
  export type HelpCenterQueryResult = HelpCenter | QueryError;
10715
10891
  export type HelpCenterSuccessfullyCreatedTopicIds = {
10716
10892
  __typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
@@ -16361,6 +16537,7 @@ export type JiraPermissionSchemeAddGrantPayload = Payload & {
16361
16537
  export type JiraPermissionSchemeConfiguration = {
16362
16538
  __typename?: 'JiraPermissionSchemeConfiguration';
16363
16539
  isEditable: Scalars['Boolean'];
16540
+ isPublicSharingDisabled: Scalars['Boolean'];
16364
16541
  };
16365
16542
  export type JiraPermissionSchemeGrantGroup = {
16366
16543
  __typename?: 'JiraPermissionSchemeGrantGroup';
@@ -16576,6 +16753,9 @@ export type JiraProjectLinkedSecurityContainersArgs = {
16576
16753
  type?: Maybe<Scalars['String']>;
16577
16754
  sort?: Maybe<AriGraphRelationshipsSort>;
16578
16755
  };
16756
+ export type JiraProjectTotalLinkedSecurityVulnerabilityCountArgs = {
16757
+ filter?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
16758
+ };
16579
16759
  export type JiraProjectLinkedSecurityVulnerabilitiesArgs = {
16580
16760
  first?: Maybe<Scalars['Int']>;
16581
16761
  after?: Maybe<Scalars['String']>;
@@ -23621,6 +23801,7 @@ export type Query = {
23621
23801
  devOpsMetrics?: Maybe<DevOpsMetrics>;
23622
23802
  aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
23623
23803
  shepherd?: Maybe<ShepherdQuery>;
23804
+ commerce?: Maybe<CommerceQuery>;
23624
23805
  helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
23625
23806
  jsw?: Maybe<JswQuery>;
23626
23807
  boardScope?: Maybe<BoardScope>;
@@ -25217,6 +25398,8 @@ export declare enum Scope {
25217
25398
  WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
25218
25399
  WorkflowWrite = "WORKFLOW_WRITE",
25219
25400
  JiraExpressionsRead = "JIRA_EXPRESSIONS_READ",
25401
+ ReadDesign = "READ_DESIGN",
25402
+ WriteDesign = "WRITE_DESIGN",
25220
25403
  ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
25221
25404
  WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
25222
25405
  ManageServicedeskCustomer = "MANAGE_SERVICEDESK_CUSTOMER",
@@ -27321,6 +27504,10 @@ export type TenantContext = {
27321
27504
  cloudUrl?: Maybe<Scalars['URL']>;
27322
27505
  orgId?: Maybe<Scalars['ID']>;
27323
27506
  customDomains?: Maybe<Array<TenantContextCustomDomain>>;
27507
+ entitlementInfo?: Maybe<CommerceEntitlementInfo>;
27508
+ };
27509
+ export type TenantContextEntitlementInfoArgs = {
27510
+ hamsProductKey: Scalars['String'];
27324
27511
  };
27325
27512
  export type TenantContextCustomDomain = {
27326
27513
  __typename?: 'TenantContextCustomDomain';
@@ -28031,6 +28218,7 @@ export type TrelloBoardMembershipInfo = {
28031
28218
  objectId: Scalars['ID'];
28032
28219
  type?: Maybe<TrelloBoardMembershipType>;
28033
28220
  unconfirmed?: Maybe<Scalars['Boolean']>;
28221
+ workspaceMemberType?: Maybe<TrelloWorkspaceMembershipType>;
28034
28222
  };
28035
28223
  export declare enum TrelloBoardMembershipType {
28036
28224
  Admin = "ADMIN",
@@ -28844,6 +29032,8 @@ export type TrelloWorkspace = Node & {
28844
29032
  members?: Maybe<TrelloWorkspaceMembershipsConnection>;
28845
29033
  name: Scalars['String'];
28846
29034
  objectId: Scalars['ID'];
29035
+ url: Scalars['String'];
29036
+ website?: Maybe<Scalars['String']>;
28847
29037
  };
28848
29038
  export type TrelloWorkspaceMembersArgs = {
28849
29039
  after?: Maybe<Scalars['String']>;