@forge/cli-shared 3.17.0-next.8 → 3.17.0
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 +91 -0
- package/out/graphql/graphql-types.d.ts +887 -25
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +191 -7
- package/out/ui/text.d.ts +8 -3
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +10 -5
- package/package.json +3 -3
|
@@ -323,6 +323,17 @@ export type AddCompassComponentLabelsPayload = Payload & {
|
|
|
323
323
|
errors?: Maybe<Array<MutationError>>;
|
|
324
324
|
componentDetails?: Maybe<CompassComponent>;
|
|
325
325
|
};
|
|
326
|
+
export type AddMultipleAppContributorInput = {
|
|
327
|
+
appId: Scalars['ID'];
|
|
328
|
+
newContributorEmails: Array<Scalars['String']>;
|
|
329
|
+
role: AppContributorRole;
|
|
330
|
+
};
|
|
331
|
+
export type AddMultipleAppContributorResponsePayload = Payload & {
|
|
332
|
+
__typename?: 'AddMultipleAppContributorResponsePayload';
|
|
333
|
+
success: Scalars['Boolean'];
|
|
334
|
+
contributorsFailed: Array<Maybe<ContributorFailed>>;
|
|
335
|
+
errors?: Maybe<Array<MutationError>>;
|
|
336
|
+
};
|
|
326
337
|
export type AddPolarisColumnInput = {
|
|
327
338
|
before?: Maybe<Scalars['ID']>;
|
|
328
339
|
field: Scalars['ID'];
|
|
@@ -609,7 +620,8 @@ export declare enum ApiGroup {
|
|
|
609
620
|
CloudAdmin = "CLOUD_ADMIN",
|
|
610
621
|
CustomerService = "CUSTOMER_SERVICE",
|
|
611
622
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
612
|
-
AppRecommendations = "APP_RECOMMENDATIONS"
|
|
623
|
+
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
624
|
+
FeatureReleaseQuery = "FEATURE_RELEASE_QUERY"
|
|
613
625
|
}
|
|
614
626
|
export type App = {
|
|
615
627
|
__typename?: 'App';
|
|
@@ -1568,11 +1580,21 @@ export type AriGraphReplaceRelationshipsPayload = Payload & {
|
|
|
1568
1580
|
export type AriGraphSubscriptions = {
|
|
1569
1581
|
__typename?: 'AriGraphSubscriptions';
|
|
1570
1582
|
onPullRequestCreatedOrUpdatedForProject?: Maybe<AriGraphRelationshipConnection>;
|
|
1583
|
+
onDeploymentCreatedOrUpdatedForProject?: Maybe<AriGraphRelationship>;
|
|
1584
|
+
onVulnerabilityCreatedOrUpdatedForProject?: Maybe<AriGraphRelationship>;
|
|
1571
1585
|
};
|
|
1572
1586
|
export type AriGraphSubscriptionsOnPullRequestCreatedOrUpdatedForProjectArgs = {
|
|
1573
1587
|
projectId: Scalars['ID'];
|
|
1574
1588
|
type?: Scalars['String'];
|
|
1575
1589
|
};
|
|
1590
|
+
export type AriGraphSubscriptionsOnDeploymentCreatedOrUpdatedForProjectArgs = {
|
|
1591
|
+
projectId: Scalars['ID'];
|
|
1592
|
+
type?: Scalars['String'];
|
|
1593
|
+
};
|
|
1594
|
+
export type AriGraphSubscriptionsOnVulnerabilityCreatedOrUpdatedForProjectArgs = {
|
|
1595
|
+
projectId: Scalars['ID'];
|
|
1596
|
+
type?: Scalars['String'];
|
|
1597
|
+
};
|
|
1576
1598
|
export type ArjConfiguration = {
|
|
1577
1599
|
__typename?: 'ArjConfiguration';
|
|
1578
1600
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -2158,6 +2180,10 @@ export type CcpAccountDetails = {
|
|
|
2158
2180
|
invoiceGroupId?: Maybe<Scalars['ID']>;
|
|
2159
2181
|
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
2160
2182
|
};
|
|
2183
|
+
export declare enum CcpActivationReason {
|
|
2184
|
+
DefaultPricing = "DEFAULT_PRICING",
|
|
2185
|
+
AdvantagePricing = "ADVANTAGE_PRICING"
|
|
2186
|
+
}
|
|
2161
2187
|
export type CcpApplicationReason = {
|
|
2162
2188
|
__typename?: 'CcpApplicationReason';
|
|
2163
2189
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2184,12 +2210,21 @@ export type CcpChargeDetails = {
|
|
|
2184
2210
|
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
2185
2211
|
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
2186
2212
|
};
|
|
2213
|
+
export type CcpChargeElementData = {
|
|
2214
|
+
__typename?: 'CcpChargeElementData';
|
|
2215
|
+
ceiling?: Maybe<Scalars['Int']>;
|
|
2216
|
+
};
|
|
2187
2217
|
export type CcpChargeQuantity = {
|
|
2188
2218
|
__typename?: 'CcpChargeQuantity';
|
|
2189
2219
|
chargeElement?: Maybe<Scalars['String']>;
|
|
2190
2220
|
quantity?: Maybe<Scalars['Float']>;
|
|
2191
2221
|
lastUpdatedAt?: Maybe<Scalars['Float']>;
|
|
2192
2222
|
};
|
|
2223
|
+
export declare enum CcpChargeType {
|
|
2224
|
+
Metered = "METERED",
|
|
2225
|
+
Licensed = "LICENSED",
|
|
2226
|
+
AutoScaling = "AUTO_SCALING"
|
|
2227
|
+
}
|
|
2193
2228
|
export type CcpContext = {
|
|
2194
2229
|
__typename?: 'CcpContext';
|
|
2195
2230
|
subject?: Maybe<Scalars['String']>;
|
|
@@ -2197,11 +2232,33 @@ export type CcpContext = {
|
|
|
2197
2232
|
authMechanism?: Maybe<Scalars['String']>;
|
|
2198
2233
|
clientAsapIssuer?: Maybe<Scalars['String']>;
|
|
2199
2234
|
};
|
|
2235
|
+
export declare enum CcpCurrency {
|
|
2236
|
+
Usd = "USD",
|
|
2237
|
+
Jpy = "JPY"
|
|
2238
|
+
}
|
|
2200
2239
|
export type CcpCustomisedValues = {
|
|
2201
2240
|
__typename?: 'CcpCustomisedValues';
|
|
2202
2241
|
applicationReason?: Maybe<CcpApplicationReason>;
|
|
2203
2242
|
benefits?: Maybe<Array<Maybe<CcpBenefit>>>;
|
|
2204
2243
|
};
|
|
2244
|
+
export type CcpCycle = {
|
|
2245
|
+
__typename?: 'CcpCycle';
|
|
2246
|
+
name?: Maybe<Scalars['String']>;
|
|
2247
|
+
interval?: Maybe<CcpInterval>;
|
|
2248
|
+
count?: Maybe<Scalars['Int']>;
|
|
2249
|
+
};
|
|
2250
|
+
export type CcpDerivedFromOffering = {
|
|
2251
|
+
__typename?: 'CcpDerivedFromOffering';
|
|
2252
|
+
templateId?: Maybe<Scalars['ID']>;
|
|
2253
|
+
templateVersion?: Maybe<Scalars['Int']>;
|
|
2254
|
+
originalOfferingKey?: Maybe<Scalars['ID']>;
|
|
2255
|
+
};
|
|
2256
|
+
export type CcpDerivedOffering = {
|
|
2257
|
+
__typename?: 'CcpDerivedOffering';
|
|
2258
|
+
templateId?: Maybe<Scalars['ID']>;
|
|
2259
|
+
templateVersion?: Maybe<Scalars['Int']>;
|
|
2260
|
+
generatedOfferingKey?: Maybe<Scalars['ID']>;
|
|
2261
|
+
};
|
|
2205
2262
|
export declare enum CcpDuration {
|
|
2206
2263
|
Forever = "FOREVER",
|
|
2207
2264
|
Once = "ONCE",
|
|
@@ -2210,12 +2267,13 @@ export declare enum CcpDuration {
|
|
|
2210
2267
|
export type CcpEntitlement = Node & {
|
|
2211
2268
|
__typename?: 'CcpEntitlement';
|
|
2212
2269
|
id: Scalars['ID'];
|
|
2270
|
+
entitlementId?: Maybe<Scalars['ID']>;
|
|
2213
2271
|
version?: Maybe<Scalars['Int']>;
|
|
2214
2272
|
status?: Maybe<CcpEntitlementStatus>;
|
|
2215
2273
|
slug?: Maybe<Scalars['String']>;
|
|
2216
2274
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2217
2275
|
changeReason?: Maybe<Scalars['String']>;
|
|
2218
|
-
offeringKey?: Maybe<Scalars['
|
|
2276
|
+
offeringKey?: Maybe<Scalars['ID']>;
|
|
2219
2277
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
2220
2278
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2221
2279
|
featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
@@ -2229,6 +2287,7 @@ export type CcpEntitlement = Node & {
|
|
|
2229
2287
|
createdAt?: Maybe<Scalars['Float']>;
|
|
2230
2288
|
updatedAt?: Maybe<Scalars['Float']>;
|
|
2231
2289
|
subscription?: Maybe<CcpSubscription>;
|
|
2290
|
+
offering?: Maybe<CcpOffering>;
|
|
2232
2291
|
context?: Maybe<CcpContext>;
|
|
2233
2292
|
};
|
|
2234
2293
|
export type CcpEntitlementRelationship = {
|
|
@@ -2243,25 +2302,139 @@ export declare enum CcpEntitlementStatus {
|
|
|
2243
2302
|
}
|
|
2244
2303
|
export type CcpEntitlementTemplate = {
|
|
2245
2304
|
__typename?: 'CcpEntitlementTemplate';
|
|
2246
|
-
key?: Maybe<Scalars['
|
|
2305
|
+
key?: Maybe<Scalars['ID']>;
|
|
2247
2306
|
version?: Maybe<Scalars['Int']>;
|
|
2248
2307
|
data?: Maybe<Scalars['String']>;
|
|
2249
2308
|
provisionedBy?: Maybe<Scalars['String']>;
|
|
2250
2309
|
};
|
|
2310
|
+
export declare enum CcpInterval {
|
|
2311
|
+
Day = "DAY",
|
|
2312
|
+
Week = "WEEK",
|
|
2313
|
+
Month = "MONTH",
|
|
2314
|
+
Year = "YEAR"
|
|
2315
|
+
}
|
|
2251
2316
|
export type CcpMapEntry = {
|
|
2252
2317
|
__typename?: 'CcpMapEntry';
|
|
2253
2318
|
key?: Maybe<Scalars['String']>;
|
|
2254
2319
|
value?: Maybe<Scalars['String']>;
|
|
2255
2320
|
};
|
|
2321
|
+
export type CcpOffering = Node & {
|
|
2322
|
+
__typename?: 'CcpOffering';
|
|
2323
|
+
id: Scalars['ID'];
|
|
2324
|
+
key?: Maybe<Scalars['ID']>;
|
|
2325
|
+
name?: Maybe<Scalars['String']>;
|
|
2326
|
+
updatedAt?: Maybe<Scalars['Float']>;
|
|
2327
|
+
sku?: Maybe<Scalars['String']>;
|
|
2328
|
+
hostingType?: Maybe<CcpOfferingHostingType>;
|
|
2329
|
+
level?: Maybe<Scalars['Int']>;
|
|
2330
|
+
productKey?: Maybe<Scalars['ID']>;
|
|
2331
|
+
slugs?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2332
|
+
type?: Maybe<CcpOfferingType>;
|
|
2333
|
+
pricingType?: Maybe<CcpPricingType>;
|
|
2334
|
+
status?: Maybe<CcpOfferingStatus>;
|
|
2335
|
+
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
2336
|
+
version?: Maybe<Scalars['Int']>;
|
|
2337
|
+
chargeElements?: Maybe<Array<Maybe<CcpChargeElementData>>>;
|
|
2338
|
+
syntheticTemplates?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2339
|
+
derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
|
|
2340
|
+
expiryDate?: Maybe<Scalars['Float']>;
|
|
2341
|
+
derivedFromOffering?: Maybe<CcpDerivedFromOffering>;
|
|
2342
|
+
catalogAccountId?: Maybe<Scalars['ID']>;
|
|
2343
|
+
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']>;
|
|
2344
|
+
dependsOnOfferingKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2345
|
+
trial?: Maybe<CcpOfferingTrial>;
|
|
2346
|
+
offeringGroup?: Maybe<CcpOfferingGroup>;
|
|
2347
|
+
entitlementTemplateId?: Maybe<Scalars['ID']>;
|
|
2348
|
+
};
|
|
2349
|
+
export type CcpOfferingGroup = {
|
|
2350
|
+
__typename?: 'CcpOfferingGroup';
|
|
2351
|
+
key?: Maybe<Scalars['ID']>;
|
|
2352
|
+
name?: Maybe<Scalars['String']>;
|
|
2353
|
+
slug?: Maybe<Scalars['String']>;
|
|
2354
|
+
level?: Maybe<Scalars['Int']>;
|
|
2355
|
+
productKey?: Maybe<Scalars['ID']>;
|
|
2356
|
+
catalogAccountId?: Maybe<Scalars['ID']>;
|
|
2357
|
+
};
|
|
2358
|
+
export declare enum CcpOfferingHostingType {
|
|
2359
|
+
Cloud = "CLOUD"
|
|
2360
|
+
}
|
|
2361
|
+
export declare enum CcpOfferingStatus {
|
|
2362
|
+
Draft = "DRAFT",
|
|
2363
|
+
Active = "ACTIVE",
|
|
2364
|
+
AtNotice = "AT_NOTICE",
|
|
2365
|
+
Expired = "EXPIRED"
|
|
2366
|
+
}
|
|
2367
|
+
export type CcpOfferingTrial = {
|
|
2368
|
+
__typename?: 'CcpOfferingTrial';
|
|
2369
|
+
lengthDays?: Maybe<Scalars['Int']>;
|
|
2370
|
+
};
|
|
2371
|
+
export declare enum CcpOfferingType {
|
|
2372
|
+
Parent = "PARENT",
|
|
2373
|
+
Child = "CHILD"
|
|
2374
|
+
}
|
|
2256
2375
|
export type CcpOrder = Node & {
|
|
2257
2376
|
__typename?: 'CcpOrder';
|
|
2258
2377
|
id: Scalars['ID'];
|
|
2259
|
-
itemId?: Maybe<Scalars['
|
|
2378
|
+
itemId?: Maybe<Scalars['ID']>;
|
|
2260
2379
|
};
|
|
2261
2380
|
export type CcpPricingPlan = Node & {
|
|
2262
2381
|
__typename?: 'CcpPricingPlan';
|
|
2263
2382
|
id: Scalars['ID'];
|
|
2383
|
+
key?: Maybe<Scalars['ID']>;
|
|
2384
|
+
updatedAt?: Maybe<Scalars['Float']>;
|
|
2385
|
+
sku?: Maybe<Scalars['String']>;
|
|
2386
|
+
description?: Maybe<Scalars['String']>;
|
|
2387
|
+
offeringKey?: Maybe<Scalars['ID']>;
|
|
2388
|
+
productKey?: Maybe<Scalars['ID']>;
|
|
2389
|
+
primaryCycle?: Maybe<CcpCycle>;
|
|
2390
|
+
status?: Maybe<CcpPricingPlanStatus>;
|
|
2391
|
+
currency?: Maybe<CcpCurrency>;
|
|
2392
|
+
type?: Maybe<Scalars['String']>;
|
|
2393
|
+
maxNewQuoteDate?: Maybe<Scalars['Float']>;
|
|
2394
|
+
activatedWithReason?: Maybe<CcpActivationReason>;
|
|
2395
|
+
items?: Maybe<Array<Maybe<CcpPricingPlanItem>>>;
|
|
2396
|
+
version?: Maybe<Scalars['Float']>;
|
|
2397
|
+
relationships?: Maybe<Array<Maybe<CcpPricingPlanRelationship>>>;
|
|
2398
|
+
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
2399
|
+
catalogAccountId?: Maybe<Scalars['ID']>;
|
|
2400
|
+
offering?: Maybe<CcpOffering>;
|
|
2401
|
+
};
|
|
2402
|
+
export type CcpPricingPlanItem = {
|
|
2403
|
+
__typename?: 'CcpPricingPlanItem';
|
|
2404
|
+
cycle?: Maybe<CcpCycle>;
|
|
2405
|
+
chargeType?: Maybe<CcpChargeType>;
|
|
2406
|
+
chargeElement?: Maybe<Scalars['String']>;
|
|
2407
|
+
tiersMode?: Maybe<CcpTiersMode>;
|
|
2408
|
+
usageUpdateCadence?: Maybe<CcpUsageUpdateCadence>;
|
|
2409
|
+
prorateOnUsageChange?: Maybe<CcpProrateOnUsageChange>;
|
|
2410
|
+
tiers?: Maybe<Array<Maybe<CcpPricingPlanTier>>>;
|
|
2411
|
+
};
|
|
2412
|
+
export type CcpPricingPlanRelationship = {
|
|
2413
|
+
__typename?: 'CcpPricingPlanRelationship';
|
|
2414
|
+
fromPricingPlanKey?: Maybe<Scalars['ID']>;
|
|
2415
|
+
toPricingPlanKey?: Maybe<Scalars['ID']>;
|
|
2416
|
+
type?: Maybe<CcpRelationshipPricingType>;
|
|
2417
|
+
metadata?: Maybe<Scalars['String']>;
|
|
2418
|
+
};
|
|
2419
|
+
export declare enum CcpPricingPlanStatus {
|
|
2420
|
+
Draft = "DRAFT",
|
|
2421
|
+
Active = "ACTIVE",
|
|
2422
|
+
AtNotice = "AT_NOTICE",
|
|
2423
|
+
Expired = "EXPIRED"
|
|
2424
|
+
}
|
|
2425
|
+
export type CcpPricingPlanTier = {
|
|
2426
|
+
__typename?: 'CcpPricingPlanTier';
|
|
2427
|
+
floor?: Maybe<Scalars['Int']>;
|
|
2428
|
+
ceiling?: Maybe<Scalars['Int']>;
|
|
2429
|
+
unitAmount?: Maybe<Scalars['Int']>;
|
|
2430
|
+
flatAmount?: Maybe<Scalars['Int']>;
|
|
2264
2431
|
};
|
|
2432
|
+
export declare enum CcpPricingType {
|
|
2433
|
+
External = "EXTERNAL",
|
|
2434
|
+
Free = "FREE",
|
|
2435
|
+
LimitedFree = "LIMITED_FREE",
|
|
2436
|
+
Paid = "PAID"
|
|
2437
|
+
}
|
|
2265
2438
|
export type CcpPromotion = {
|
|
2266
2439
|
__typename?: 'CcpPromotion';
|
|
2267
2440
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2277,13 +2450,32 @@ export type CcpPromotionInstance = {
|
|
|
2277
2450
|
promotionInstanceId?: Maybe<Scalars['ID']>;
|
|
2278
2451
|
promotionDefinition?: Maybe<CcpPromotionDefinition>;
|
|
2279
2452
|
};
|
|
2453
|
+
export declare enum CcpProrateOnUsageChange {
|
|
2454
|
+
CreateProrations = "CREATE_PRORATIONS",
|
|
2455
|
+
None = "NONE",
|
|
2456
|
+
AlwaysInvoice = "ALWAYS_INVOICE"
|
|
2457
|
+
}
|
|
2280
2458
|
export type CcpQueryApi = {
|
|
2281
2459
|
__typename?: 'CcpQueryApi';
|
|
2282
2460
|
entitlement?: Maybe<CcpEntitlement>;
|
|
2461
|
+
offering?: Maybe<CcpOffering>;
|
|
2462
|
+
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
2283
2463
|
};
|
|
2284
2464
|
export type CcpQueryApiEntitlementArgs = {
|
|
2285
2465
|
id: Scalars['ID'];
|
|
2286
2466
|
};
|
|
2467
|
+
export type CcpQueryApiOfferingArgs = {
|
|
2468
|
+
key: Scalars['ID'];
|
|
2469
|
+
};
|
|
2470
|
+
export type CcpQueryApiPricingPlanArgs = {
|
|
2471
|
+
id: Scalars['ID'];
|
|
2472
|
+
};
|
|
2473
|
+
export declare enum CcpRelationshipPricingType {
|
|
2474
|
+
AdvantagePricing = "ADVANTAGE_PRICING",
|
|
2475
|
+
NextPricing = "NEXT_PRICING",
|
|
2476
|
+
SyntheticGenerated = "SYNTHETIC_GENERATED",
|
|
2477
|
+
CurrencyGenerated = "CURRENCY_GENERATED"
|
|
2478
|
+
}
|
|
2287
2479
|
export type CcpSubscription = {
|
|
2288
2480
|
__typename?: 'CcpSubscription';
|
|
2289
2481
|
id: Scalars['ID'];
|
|
@@ -2299,6 +2491,7 @@ export type CcpSubscription = {
|
|
|
2299
2491
|
subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
|
|
2300
2492
|
status?: Maybe<CcpSubscriptionStatus>;
|
|
2301
2493
|
startTimestamp?: Maybe<Scalars['Float']>;
|
|
2494
|
+
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
2302
2495
|
};
|
|
2303
2496
|
export type CcpSubscriptionSchedule = {
|
|
2304
2497
|
__typename?: 'CcpSubscriptionSchedule';
|
|
@@ -2323,6 +2516,15 @@ export declare enum CcpSubscriptionStatus {
|
|
|
2323
2516
|
Active = "ACTIVE",
|
|
2324
2517
|
Cancelled = "CANCELLED"
|
|
2325
2518
|
}
|
|
2519
|
+
export declare enum CcpSupportedBillingSystems {
|
|
2520
|
+
Hams = "HAMS",
|
|
2521
|
+
Ccp = "CCP",
|
|
2522
|
+
Opsgenie = "OPSGENIE"
|
|
2523
|
+
}
|
|
2524
|
+
export declare enum CcpTiersMode {
|
|
2525
|
+
Graduated = "GRADUATED",
|
|
2526
|
+
Volume = "VOLUME"
|
|
2527
|
+
}
|
|
2326
2528
|
export type CcpTransactionAccount = Node & {
|
|
2327
2529
|
__typename?: 'CcpTransactionAccount';
|
|
2328
2530
|
id: Scalars['ID'];
|
|
@@ -2335,6 +2537,11 @@ export type CcpTrial = {
|
|
|
2335
2537
|
pricingPlanId?: Maybe<Scalars['ID']>;
|
|
2336
2538
|
offeringId?: Maybe<Scalars['ID']>;
|
|
2337
2539
|
};
|
|
2540
|
+
export type CcpUsageUpdateCadence = {
|
|
2541
|
+
__typename?: 'CcpUsageUpdateCadence';
|
|
2542
|
+
name?: Maybe<Scalars['String']>;
|
|
2543
|
+
cadenceIntervalMinutes?: Maybe<Scalars['Int']>;
|
|
2544
|
+
};
|
|
2338
2545
|
export type CheckConsentPermissionByOAuthClientIdInput = {
|
|
2339
2546
|
cloudId: Scalars['ID'];
|
|
2340
2547
|
userId: Scalars['ID'];
|
|
@@ -2596,6 +2803,7 @@ export type CompassCatalogMutationApi = {
|
|
|
2596
2803
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
2597
2804
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
2598
2805
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
2806
|
+
updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
|
|
2599
2807
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
2600
2808
|
deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
|
|
2601
2809
|
createWebhook?: Maybe<CompassCreateWebhookPayload>;
|
|
@@ -2767,6 +2975,9 @@ export type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
|
2767
2975
|
export type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
|
|
2768
2976
|
input: CreateCompassComponentFromTemplateInput;
|
|
2769
2977
|
};
|
|
2978
|
+
export type CompassCatalogMutationApiUpdateUserDefinedParametersArgs = {
|
|
2979
|
+
input: UpdateCompassUserDefinedParametersInput;
|
|
2980
|
+
};
|
|
2770
2981
|
export type CompassCatalogMutationApiCreateStarredComponentArgs = {
|
|
2771
2982
|
input: CreateCompassStarredComponentInput;
|
|
2772
2983
|
};
|
|
@@ -2794,6 +3005,7 @@ export type CompassCatalogQueryApi = {
|
|
|
2794
3005
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
2795
3006
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
2796
3007
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
3008
|
+
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
2797
3009
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
2798
3010
|
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
2799
3011
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
@@ -2858,6 +3070,9 @@ export type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
2858
3070
|
eventType: CompassEventType;
|
|
2859
3071
|
externalEventSourceId: Scalars['ID'];
|
|
2860
3072
|
};
|
|
3073
|
+
export type CompassCatalogQueryApiCustomFieldDefinitionArgs = {
|
|
3074
|
+
query: CompassCustomFieldDefinitionQuery;
|
|
3075
|
+
};
|
|
2861
3076
|
export type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
2862
3077
|
query: CompassCustomFieldDefinitionsQuery;
|
|
2863
3078
|
};
|
|
@@ -3306,6 +3521,11 @@ export type CompassCustomFieldDefinitionEdge = {
|
|
|
3306
3521
|
cursor: Scalars['String'];
|
|
3307
3522
|
node?: Maybe<CompassCustomFieldDefinition>;
|
|
3308
3523
|
};
|
|
3524
|
+
export type CompassCustomFieldDefinitionQuery = {
|
|
3525
|
+
cloudId: Scalars['ID'];
|
|
3526
|
+
id: Scalars['ID'];
|
|
3527
|
+
};
|
|
3528
|
+
export type CompassCustomFieldDefinitionResult = CompassCustomTextFieldDefinition | CompassCustomBooleanFieldDefinition | CompassCustomNumberFieldDefinition | CompassCustomUserFieldDefinition | CompassCustomSingleSelectFieldDefinition | CompassCustomMultiSelectFieldDefinition | QueryError;
|
|
3309
3529
|
export type CompassCustomFieldDefinitionsConnection = {
|
|
3310
3530
|
__typename?: 'CompassCustomFieldDefinitionsConnection';
|
|
3311
3531
|
edges?: Maybe<Array<CompassCustomFieldDefinitionEdge>>;
|
|
@@ -3350,7 +3570,7 @@ export type CompassCustomMultiSelectFieldDefinition = CompassCustomFieldDefiniti
|
|
|
3350
3570
|
};
|
|
3351
3571
|
export type CompassCustomMultiSelectFieldInput = {
|
|
3352
3572
|
definitionId: Scalars['ID'];
|
|
3353
|
-
options
|
|
3573
|
+
options?: Maybe<Array<Scalars['ID']>>;
|
|
3354
3574
|
};
|
|
3355
3575
|
export type CompassCustomNumberField = CompassCustomField & {
|
|
3356
3576
|
__typename?: 'CompassCustomNumberField';
|
|
@@ -3390,7 +3610,7 @@ export type CompassCustomSingleSelectFieldDefinition = CompassCustomFieldDefinit
|
|
|
3390
3610
|
};
|
|
3391
3611
|
export type CompassCustomSingleSelectFieldInput = {
|
|
3392
3612
|
definitionId: Scalars['ID'];
|
|
3393
|
-
option
|
|
3613
|
+
option?: Maybe<Scalars['ID']>;
|
|
3394
3614
|
};
|
|
3395
3615
|
export type CompassCustomTextField = CompassCustomField & {
|
|
3396
3616
|
__typename?: 'CompassCustomTextField';
|
|
@@ -3683,6 +3903,14 @@ export type CompassFlagEventProperties = {
|
|
|
3683
3903
|
id: Scalars['ID'];
|
|
3684
3904
|
status?: Maybe<Scalars['String']>;
|
|
3685
3905
|
};
|
|
3906
|
+
export type CompassFreeformUserDefinedParameter = CompassUserDefinedParameter & {
|
|
3907
|
+
__typename?: 'CompassFreeformUserDefinedParameter';
|
|
3908
|
+
id: Scalars['ID'];
|
|
3909
|
+
name: Scalars['String'];
|
|
3910
|
+
type: Scalars['String'];
|
|
3911
|
+
description?: Maybe<Scalars['String']>;
|
|
3912
|
+
defaultValue?: Maybe<Scalars['String']>;
|
|
3913
|
+
};
|
|
3686
3914
|
export type CompassHasCustomBooleanFieldScorecardCriteria = CompassScorecardCriteria & CompassCustomFieldScorecardCriteria & {
|
|
3687
3915
|
__typename?: 'CompassHasCustomBooleanFieldScorecardCriteria';
|
|
3688
3916
|
id: Scalars['ID'];
|
|
@@ -4508,6 +4736,17 @@ export type CompassUpdateTeamCheckinPayload = Payload & {
|
|
|
4508
4736
|
export type CompassUpdateTeamCheckinResponseRichText = {
|
|
4509
4737
|
adf?: Maybe<Scalars['String']>;
|
|
4510
4738
|
};
|
|
4739
|
+
export type CompassUserDefinedParameter = {
|
|
4740
|
+
id: Scalars['ID'];
|
|
4741
|
+
name: Scalars['String'];
|
|
4742
|
+
type: Scalars['String'];
|
|
4743
|
+
description?: Maybe<Scalars['String']>;
|
|
4744
|
+
};
|
|
4745
|
+
export type CompassUserDefinedParameters = {
|
|
4746
|
+
__typename?: 'CompassUserDefinedParameters';
|
|
4747
|
+
componentId: Scalars['ID'];
|
|
4748
|
+
parameters?: Maybe<Array<CompassUserDefinedParameter>>;
|
|
4749
|
+
};
|
|
4511
4750
|
export type CompassViewerSubscription = {
|
|
4512
4751
|
__typename?: 'CompassViewerSubscription';
|
|
4513
4752
|
subscribed: Scalars['Boolean'];
|
|
@@ -5908,6 +6147,11 @@ export type ContextEventObject = {
|
|
|
5908
6147
|
type: Scalars['String'];
|
|
5909
6148
|
attributes: Scalars['JSON'];
|
|
5910
6149
|
};
|
|
6150
|
+
export type ContributorFailed = {
|
|
6151
|
+
__typename?: 'ContributorFailed';
|
|
6152
|
+
email: Scalars['String'];
|
|
6153
|
+
reason: Scalars['String'];
|
|
6154
|
+
};
|
|
5911
6155
|
export type CopyPolarisInsightsContainerInput = {
|
|
5912
6156
|
project: Scalars['ID'];
|
|
5913
6157
|
container?: Maybe<Scalars['ID']>;
|
|
@@ -6057,6 +6301,11 @@ export type CreateCompassFieldInput = {
|
|
|
6057
6301
|
definition: Scalars['ID'];
|
|
6058
6302
|
value: CompassFieldValueInput;
|
|
6059
6303
|
};
|
|
6304
|
+
export type CreateCompassFreeformUserDefinedParameterInput = {
|
|
6305
|
+
name: Scalars['String'];
|
|
6306
|
+
description?: Maybe<Scalars['String']>;
|
|
6307
|
+
defaultValue?: Maybe<Scalars['String']>;
|
|
6308
|
+
};
|
|
6060
6309
|
export type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
6061
6310
|
weight: Scalars['Int'];
|
|
6062
6311
|
};
|
|
@@ -6138,6 +6387,9 @@ export type CreateCompassStarredComponentPayload = Payload & {
|
|
|
6138
6387
|
success: Scalars['Boolean'];
|
|
6139
6388
|
errors?: Maybe<Array<MutationError>>;
|
|
6140
6389
|
};
|
|
6390
|
+
export type CreateCompassUserDefinedParameterInput = {
|
|
6391
|
+
freeformField?: Maybe<CreateCompassFreeformUserDefinedParameterInput>;
|
|
6392
|
+
};
|
|
6141
6393
|
export type CreateCustomFilterInput = {
|
|
6142
6394
|
boardId: Scalars['ID'];
|
|
6143
6395
|
name: Scalars['String'];
|
|
@@ -6545,7 +6797,7 @@ export type CustomUiTunnelDefinitionInput = {
|
|
|
6545
6797
|
resourceKey?: Maybe<Scalars['String']>;
|
|
6546
6798
|
tunnelUrl?: Maybe<Scalars['URL']>;
|
|
6547
6799
|
};
|
|
6548
|
-
export type CustomerServiceAttribute = {
|
|
6800
|
+
export type CustomerServiceAttribute = Node & {
|
|
6549
6801
|
__typename?: 'CustomerServiceAttribute';
|
|
6550
6802
|
id: Scalars['ID'];
|
|
6551
6803
|
name: Scalars['String'];
|
|
@@ -6596,7 +6848,9 @@ export declare enum CustomerServiceAttributeTypeName {
|
|
|
6596
6848
|
Text = "TEXT",
|
|
6597
6849
|
Email = "EMAIL",
|
|
6598
6850
|
Url = "URL",
|
|
6851
|
+
Date = "DATE",
|
|
6599
6852
|
Number = "NUMBER",
|
|
6853
|
+
Phone = "PHONE",
|
|
6600
6854
|
Select = "SELECT",
|
|
6601
6855
|
Multiselect = "MULTISELECT"
|
|
6602
6856
|
}
|
|
@@ -6615,7 +6869,7 @@ export type CustomerServiceAttributeUpdateTypeInput = {
|
|
|
6615
6869
|
name?: Maybe<CustomerServiceAttributeTypeName>;
|
|
6616
6870
|
options?: Maybe<Array<Scalars['String']>>;
|
|
6617
6871
|
};
|
|
6618
|
-
export type CustomerServiceAttributeValue = {
|
|
6872
|
+
export type CustomerServiceAttributeValue = Node & {
|
|
6619
6873
|
__typename?: 'CustomerServiceAttributeValue';
|
|
6620
6874
|
id: Scalars['ID'];
|
|
6621
6875
|
name: Scalars['String'];
|
|
@@ -7311,7 +7565,7 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
7311
7565
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7312
7566
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7313
7567
|
};
|
|
7314
|
-
export type DevOpsDocument = {
|
|
7568
|
+
export type DevOpsDocument = Node & {
|
|
7315
7569
|
__typename?: 'DevOpsDocument';
|
|
7316
7570
|
id: Scalars['ID'];
|
|
7317
7571
|
parentId?: Maybe<Scalars['ID']>;
|
|
@@ -8455,6 +8709,7 @@ export type EcosystemMutation = {
|
|
|
8455
8709
|
__typename?: 'EcosystemMutation';
|
|
8456
8710
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
8457
8711
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
8712
|
+
addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
|
|
8458
8713
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
8459
8714
|
updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
|
|
8460
8715
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
@@ -8469,6 +8724,9 @@ export type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
|
8469
8724
|
export type EcosystemMutationAddAppContributorArgs = {
|
|
8470
8725
|
input: AddAppContributorInput;
|
|
8471
8726
|
};
|
|
8727
|
+
export type EcosystemMutationAddMultipleAppContributorArgs = {
|
|
8728
|
+
input: AddMultipleAppContributorInput;
|
|
8729
|
+
};
|
|
8472
8730
|
export type EcosystemMutationRemoveAppContributorsArgs = {
|
|
8473
8731
|
input: RemoveAppContributorsInput;
|
|
8474
8732
|
};
|
|
@@ -8723,6 +8981,69 @@ export type ExternalAuthProvider = {
|
|
|
8723
8981
|
displayName: Scalars['String'];
|
|
8724
8982
|
url: Scalars['URL'];
|
|
8725
8983
|
};
|
|
8984
|
+
export type FeatureRelease = {
|
|
8985
|
+
__typename?: 'FeatureRelease';
|
|
8986
|
+
latestTransition: FeatureReleaseFeatureFlagTransition;
|
|
8987
|
+
transitionsByCloudId: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8988
|
+
transitionsByFeatureFlagId: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8989
|
+
transitionsByMonth: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8990
|
+
};
|
|
8991
|
+
export type FeatureReleaseLatestTransitionArgs = {
|
|
8992
|
+
cloudId: Scalars['ID'];
|
|
8993
|
+
featureFlagId: Scalars['ID'];
|
|
8994
|
+
};
|
|
8995
|
+
export type FeatureReleaseTransitionsByCloudIdArgs = {
|
|
8996
|
+
after?: Maybe<Scalars['String']>;
|
|
8997
|
+
cloudId: Scalars['ID'];
|
|
8998
|
+
filter?: Maybe<FeatureReleaseFeatureFlagFilter>;
|
|
8999
|
+
first?: Maybe<Scalars['Int']>;
|
|
9000
|
+
timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
|
|
9001
|
+
};
|
|
9002
|
+
export type FeatureReleaseTransitionsByFeatureFlagIdArgs = {
|
|
9003
|
+
after?: Maybe<Scalars['String']>;
|
|
9004
|
+
featureFlagId: Scalars['ID'];
|
|
9005
|
+
filter?: Maybe<FeatureReleaseCloudIdFilter>;
|
|
9006
|
+
first?: Maybe<Scalars['Int']>;
|
|
9007
|
+
timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
|
|
9008
|
+
};
|
|
9009
|
+
export type FeatureReleaseTransitionsByMonthArgs = {
|
|
9010
|
+
after?: Maybe<Scalars['String']>;
|
|
9011
|
+
cloudIdFilter?: Maybe<FeatureReleaseCloudIdFilter>;
|
|
9012
|
+
featureFlagFilter?: Maybe<FeatureReleaseFeatureFlagFilter>;
|
|
9013
|
+
first?: Maybe<Scalars['Int']>;
|
|
9014
|
+
month: Scalars['String'];
|
|
9015
|
+
timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
|
|
9016
|
+
};
|
|
9017
|
+
export type FeatureReleaseCloudIdFilter = {
|
|
9018
|
+
cloudIds: Array<Maybe<Scalars['String']>>;
|
|
9019
|
+
};
|
|
9020
|
+
export type FeatureReleaseFeatureFlagFilter = {
|
|
9021
|
+
featureFlagIds: Array<Maybe<Scalars['String']>>;
|
|
9022
|
+
};
|
|
9023
|
+
export type FeatureReleaseFeatureFlagTransition = {
|
|
9024
|
+
__typename?: 'FeatureReleaseFeatureFlagTransition';
|
|
9025
|
+
evaluationResult: Scalars['String'];
|
|
9026
|
+
featureFlagKey: Scalars['String'];
|
|
9027
|
+
month: Scalars['String'];
|
|
9028
|
+
reason: Scalars['String'];
|
|
9029
|
+
tenantId: Scalars['String'];
|
|
9030
|
+
tenantType: Scalars['String'];
|
|
9031
|
+
timestamp: Scalars['Int'];
|
|
9032
|
+
};
|
|
9033
|
+
export type FeatureReleaseFeatureFlagTransitionConnection = {
|
|
9034
|
+
__typename?: 'FeatureReleaseFeatureFlagTransitionConnection';
|
|
9035
|
+
edges: Array<Maybe<FeatureReleaseFeatureFlagTransitionEdge>>;
|
|
9036
|
+
pageInfo: PageInfo;
|
|
9037
|
+
};
|
|
9038
|
+
export type FeatureReleaseFeatureFlagTransitionEdge = {
|
|
9039
|
+
__typename?: 'FeatureReleaseFeatureFlagTransitionEdge';
|
|
9040
|
+
cursor: Scalars['String'];
|
|
9041
|
+
node?: Maybe<FeatureReleaseFeatureFlagTransition>;
|
|
9042
|
+
};
|
|
9043
|
+
export type FeatureReleaseTimeRangeInput = {
|
|
9044
|
+
endEpoch?: Maybe<Scalars['Int']>;
|
|
9045
|
+
startEpoch?: Maybe<Scalars['Int']>;
|
|
9046
|
+
};
|
|
8726
9047
|
export type FilterQuery = {
|
|
8727
9048
|
__typename?: 'FilterQuery';
|
|
8728
9049
|
sanitisedJql: Scalars['String'];
|
|
@@ -9313,6 +9634,9 @@ export type Graph = {
|
|
|
9313
9634
|
parentDocumentHasChildDocumentRelationship?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
|
|
9314
9635
|
parentDocumentHasChildDocumentRelationshipInverse?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
|
|
9315
9636
|
projectAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
9637
|
+
projectAssociatedPrInverse?: Maybe<GraphJiraProjectConnection>;
|
|
9638
|
+
projectAssociatedPrRelationship?: Maybe<GraphProjectAssociatedPrRelationshipConnection>;
|
|
9639
|
+
projectAssociatedPrRelationshipInverse?: Maybe<GraphProjectAssociatedPrRelationshipConnection>;
|
|
9316
9640
|
projectAssociatedDeployment?: Maybe<GraphJiraDeploymentConnection>;
|
|
9317
9641
|
issueAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
9318
9642
|
issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
|
|
@@ -9345,9 +9669,28 @@ export type GraphParentDocumentHasChildDocumentRelationshipInverseArgs = {
|
|
|
9345
9669
|
};
|
|
9346
9670
|
export type GraphProjectAssociatedPrArgs = {
|
|
9347
9671
|
after?: Maybe<Scalars['String']>;
|
|
9672
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9348
9673
|
first?: Maybe<Scalars['Int']>;
|
|
9349
9674
|
from: Scalars['ID'];
|
|
9350
9675
|
};
|
|
9676
|
+
export type GraphProjectAssociatedPrInverseArgs = {
|
|
9677
|
+
after?: Maybe<Scalars['String']>;
|
|
9678
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9679
|
+
first?: Maybe<Scalars['Int']>;
|
|
9680
|
+
to: Scalars['ID'];
|
|
9681
|
+
};
|
|
9682
|
+
export type GraphProjectAssociatedPrRelationshipArgs = {
|
|
9683
|
+
after?: Maybe<Scalars['String']>;
|
|
9684
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9685
|
+
first?: Maybe<Scalars['Int']>;
|
|
9686
|
+
from: Scalars['ID'];
|
|
9687
|
+
};
|
|
9688
|
+
export type GraphProjectAssociatedPrRelationshipInverseArgs = {
|
|
9689
|
+
after?: Maybe<Scalars['String']>;
|
|
9690
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9691
|
+
first?: Maybe<Scalars['Int']>;
|
|
9692
|
+
to: Scalars['ID'];
|
|
9693
|
+
};
|
|
9351
9694
|
export type GraphProjectAssociatedDeploymentArgs = {
|
|
9352
9695
|
after?: Maybe<Scalars['String']>;
|
|
9353
9696
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9414,6 +9757,43 @@ export type GraphCreateIssueAssociatedPrInput = {
|
|
|
9414
9757
|
to: Scalars['ID'];
|
|
9415
9758
|
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
9416
9759
|
};
|
|
9760
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutput = {
|
|
9761
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutput';
|
|
9762
|
+
author?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthor>;
|
|
9763
|
+
reviewers?: Maybe<Array<Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewer>>>;
|
|
9764
|
+
status?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputPullRequestStatusEnum>;
|
|
9765
|
+
taskCount?: Maybe<Scalars['Int']>;
|
|
9766
|
+
};
|
|
9767
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthor = {
|
|
9768
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthor';
|
|
9769
|
+
authorAri?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthorAri>;
|
|
9770
|
+
};
|
|
9771
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthorAri = {
|
|
9772
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthorAri';
|
|
9773
|
+
value?: Maybe<Scalars['String']>;
|
|
9774
|
+
};
|
|
9775
|
+
export declare enum GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputPullRequestStatusEnum {
|
|
9776
|
+
Declined = "DECLINED",
|
|
9777
|
+
Merged = "MERGED",
|
|
9778
|
+
NotSet = "NOT_SET",
|
|
9779
|
+
Open = "OPEN",
|
|
9780
|
+
Unknown = "UNKNOWN"
|
|
9781
|
+
}
|
|
9782
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewer = {
|
|
9783
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewer';
|
|
9784
|
+
approvalStatus?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerReviewerStatusEnum>;
|
|
9785
|
+
reviewerAri?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerAri>;
|
|
9786
|
+
};
|
|
9787
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerAri = {
|
|
9788
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerAri';
|
|
9789
|
+
value?: Maybe<Scalars['String']>;
|
|
9790
|
+
};
|
|
9791
|
+
export declare enum GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerReviewerStatusEnum {
|
|
9792
|
+
Approved = "APPROVED",
|
|
9793
|
+
Needswork = "NEEDSWORK",
|
|
9794
|
+
NotSet = "NOT_SET",
|
|
9795
|
+
Unapproved = "UNAPPROVED"
|
|
9796
|
+
}
|
|
9417
9797
|
export type GraphCreateParentDocumentHasChildDocumentInput = {
|
|
9418
9798
|
from: Scalars['ID'];
|
|
9419
9799
|
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
@@ -9492,6 +9872,20 @@ export type GraphJiraIssueEdge = {
|
|
|
9492
9872
|
cursor?: Maybe<Scalars['String']>;
|
|
9493
9873
|
node: GraphJiraIssue;
|
|
9494
9874
|
};
|
|
9875
|
+
export type GraphJiraProject = Node & {
|
|
9876
|
+
__typename?: 'GraphJiraProject';
|
|
9877
|
+
id: Scalars['ID'];
|
|
9878
|
+
};
|
|
9879
|
+
export type GraphJiraProjectConnection = {
|
|
9880
|
+
__typename?: 'GraphJiraProjectConnection';
|
|
9881
|
+
edges: Array<Maybe<GraphJiraProjectEdge>>;
|
|
9882
|
+
pageInfo: PageInfo;
|
|
9883
|
+
};
|
|
9884
|
+
export type GraphJiraProjectEdge = {
|
|
9885
|
+
__typename?: 'GraphJiraProjectEdge';
|
|
9886
|
+
cursor?: Maybe<Scalars['String']>;
|
|
9887
|
+
node: GraphJiraProject;
|
|
9888
|
+
};
|
|
9495
9889
|
export type GraphJiraPullRequest = Node & {
|
|
9496
9890
|
__typename?: 'GraphJiraPullRequest';
|
|
9497
9891
|
id: Scalars['ID'];
|
|
@@ -9555,6 +9949,178 @@ export type GraphParentDocumentHasChildDocumentRelationshipEdge = {
|
|
|
9555
9949
|
cursor?: Maybe<Scalars['String']>;
|
|
9556
9950
|
node: GraphParentDocumentHasChildDocumentRelationship;
|
|
9557
9951
|
};
|
|
9952
|
+
export type GraphProjectAssociatedPrRelationship = Node & {
|
|
9953
|
+
__typename?: 'GraphProjectAssociatedPrRelationship';
|
|
9954
|
+
from: GraphJiraProject;
|
|
9955
|
+
id: Scalars['ID'];
|
|
9956
|
+
lastUpdated: Scalars['DateTime'];
|
|
9957
|
+
to: GraphJiraPullRequest;
|
|
9958
|
+
toMetadata?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutput>;
|
|
9959
|
+
};
|
|
9960
|
+
export type GraphProjectAssociatedPrRelationshipConnection = {
|
|
9961
|
+
__typename?: 'GraphProjectAssociatedPrRelationshipConnection';
|
|
9962
|
+
edges: Array<Maybe<GraphProjectAssociatedPrRelationshipEdge>>;
|
|
9963
|
+
pageInfo: PageInfo;
|
|
9964
|
+
};
|
|
9965
|
+
export type GraphProjectAssociatedPrRelationshipEdge = {
|
|
9966
|
+
__typename?: 'GraphProjectAssociatedPrRelationshipEdge';
|
|
9967
|
+
cursor?: Maybe<Scalars['String']>;
|
|
9968
|
+
node: GraphProjectAssociatedPrRelationship;
|
|
9969
|
+
};
|
|
9970
|
+
export type GraphQueryMetadataProjectAssociatedPrInput = {
|
|
9971
|
+
and?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputAnd>>;
|
|
9972
|
+
or?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputOr>>;
|
|
9973
|
+
};
|
|
9974
|
+
export type GraphQueryMetadataProjectAssociatedPrInputAnd = {
|
|
9975
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
9976
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
9977
|
+
or?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputOrInner>>;
|
|
9978
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
9979
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
9980
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
9981
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
9982
|
+
};
|
|
9983
|
+
export type GraphQueryMetadataProjectAssociatedPrInputAndInner = {
|
|
9984
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
9985
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
9986
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
9987
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
9988
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
9989
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
9990
|
+
};
|
|
9991
|
+
export type GraphQueryMetadataProjectAssociatedPrInputCreatedAt = {
|
|
9992
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAtRangeField>;
|
|
9993
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAtMetadataSortField>;
|
|
9994
|
+
};
|
|
9995
|
+
export type GraphQueryMetadataProjectAssociatedPrInputCreatedAtMetadataSortField = {
|
|
9996
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
9997
|
+
priority?: Maybe<Scalars['Int']>;
|
|
9998
|
+
};
|
|
9999
|
+
export type GraphQueryMetadataProjectAssociatedPrInputCreatedAtRangeField = {
|
|
10000
|
+
gt?: Maybe<Scalars['DateTime']>;
|
|
10001
|
+
gte?: Maybe<Scalars['DateTime']>;
|
|
10002
|
+
lt?: Maybe<Scalars['DateTime']>;
|
|
10003
|
+
lte?: Maybe<Scalars['DateTime']>;
|
|
10004
|
+
};
|
|
10005
|
+
export type GraphQueryMetadataProjectAssociatedPrInputLastUpdated = {
|
|
10006
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdatedRangeField>;
|
|
10007
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdatedMetadataSortField>;
|
|
10008
|
+
};
|
|
10009
|
+
export type GraphQueryMetadataProjectAssociatedPrInputLastUpdatedMetadataSortField = {
|
|
10010
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10011
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10012
|
+
};
|
|
10013
|
+
export type GraphQueryMetadataProjectAssociatedPrInputLastUpdatedRangeField = {
|
|
10014
|
+
gt?: Maybe<Scalars['DateTime']>;
|
|
10015
|
+
gte?: Maybe<Scalars['DateTime']>;
|
|
10016
|
+
lt?: Maybe<Scalars['DateTime']>;
|
|
10017
|
+
lte?: Maybe<Scalars['DateTime']>;
|
|
10018
|
+
};
|
|
10019
|
+
export type GraphQueryMetadataProjectAssociatedPrInputOr = {
|
|
10020
|
+
and?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputAndInner>>;
|
|
10021
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
10022
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
10023
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
10024
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
10025
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
10026
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
10027
|
+
};
|
|
10028
|
+
export type GraphQueryMetadataProjectAssociatedPrInputOrInner = {
|
|
10029
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
10030
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
10031
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
10032
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
10033
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
10034
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
10035
|
+
};
|
|
10036
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthor = {
|
|
10037
|
+
authorAri?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthorAri>;
|
|
10038
|
+
};
|
|
10039
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthorAri = {
|
|
10040
|
+
value?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValue>;
|
|
10041
|
+
};
|
|
10042
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValue = {
|
|
10043
|
+
notValues?: Maybe<Array<Scalars['String']>>;
|
|
10044
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValueMetadataSortField>;
|
|
10045
|
+
values?: Maybe<Array<Scalars['String']>>;
|
|
10046
|
+
};
|
|
10047
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValueMetadataSortField = {
|
|
10048
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10049
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10050
|
+
};
|
|
10051
|
+
export declare enum GraphQueryMetadataProjectAssociatedPrInputToPullRequestStatusEnum {
|
|
10052
|
+
Declined = "DECLINED",
|
|
10053
|
+
Merged = "MERGED",
|
|
10054
|
+
NotSet = "NOT_SET",
|
|
10055
|
+
Open = "OPEN",
|
|
10056
|
+
Unknown = "UNKNOWN"
|
|
10057
|
+
}
|
|
10058
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewer = {
|
|
10059
|
+
approvalStatus?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatus>;
|
|
10060
|
+
matchType?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewermatchTypeEnum>;
|
|
10061
|
+
reviewerAri?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerAri>;
|
|
10062
|
+
};
|
|
10063
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatus = {
|
|
10064
|
+
notValues?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToReviewerReviewerStatusEnum>>;
|
|
10065
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatusMetadataSortField>;
|
|
10066
|
+
values?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToReviewerReviewerStatusEnum>>;
|
|
10067
|
+
};
|
|
10068
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatusMetadataSortField = {
|
|
10069
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10070
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10071
|
+
};
|
|
10072
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerAri = {
|
|
10073
|
+
value?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValue>;
|
|
10074
|
+
};
|
|
10075
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValue = {
|
|
10076
|
+
notValues?: Maybe<Array<Scalars['String']>>;
|
|
10077
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValueMetadataSortField>;
|
|
10078
|
+
values?: Maybe<Array<Scalars['String']>>;
|
|
10079
|
+
};
|
|
10080
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValueMetadataSortField = {
|
|
10081
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10082
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10083
|
+
};
|
|
10084
|
+
export declare enum GraphQueryMetadataProjectAssociatedPrInputToReviewerReviewerStatusEnum {
|
|
10085
|
+
Approved = "APPROVED",
|
|
10086
|
+
Needswork = "NEEDSWORK",
|
|
10087
|
+
NotSet = "NOT_SET",
|
|
10088
|
+
Unapproved = "UNAPPROVED"
|
|
10089
|
+
}
|
|
10090
|
+
export declare enum GraphQueryMetadataProjectAssociatedPrInputToReviewermatchTypeEnum {
|
|
10091
|
+
All = "ALL",
|
|
10092
|
+
Any = "ANY",
|
|
10093
|
+
None = "NONE"
|
|
10094
|
+
}
|
|
10095
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToStatus = {
|
|
10096
|
+
notValues?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToPullRequestStatusEnum>>;
|
|
10097
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatusMetadataSortField>;
|
|
10098
|
+
values?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToPullRequestStatusEnum>>;
|
|
10099
|
+
};
|
|
10100
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToStatusMetadataSortField = {
|
|
10101
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10102
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10103
|
+
};
|
|
10104
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToTaskCount = {
|
|
10105
|
+
notValues?: Maybe<Array<Scalars['Int']>>;
|
|
10106
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCountRangeField>;
|
|
10107
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCountMetadataSortField>;
|
|
10108
|
+
values?: Maybe<Array<Scalars['Int']>>;
|
|
10109
|
+
};
|
|
10110
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToTaskCountMetadataSortField = {
|
|
10111
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10112
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10113
|
+
};
|
|
10114
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToTaskCountRangeField = {
|
|
10115
|
+
gt?: Maybe<Scalars['Int']>;
|
|
10116
|
+
gte?: Maybe<Scalars['Int']>;
|
|
10117
|
+
lt?: Maybe<Scalars['Int']>;
|
|
10118
|
+
lte?: Maybe<Scalars['Int']>;
|
|
10119
|
+
};
|
|
10120
|
+
export declare enum GraphQueryMetadataSortEnum {
|
|
10121
|
+
Asc = "ASC",
|
|
10122
|
+
Desc = "DESC"
|
|
10123
|
+
}
|
|
9558
10124
|
export type GraphSprintRetrospectivePagePayload = Payload & {
|
|
9559
10125
|
__typename?: 'GraphSprintRetrospectivePagePayload';
|
|
9560
10126
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -10165,6 +10731,179 @@ export type InCompleteCardsDestination = {
|
|
|
10165
10731
|
sprintName?: Maybe<Scalars['String']>;
|
|
10166
10732
|
destination?: Maybe<SoftwareCardsDestinationEnum>;
|
|
10167
10733
|
};
|
|
10734
|
+
export type InfluentsNotificationAction = {
|
|
10735
|
+
__typename?: 'InfluentsNotificationAction';
|
|
10736
|
+
title: Scalars['String'];
|
|
10737
|
+
url?: Maybe<Scalars['String']>;
|
|
10738
|
+
appearance: InfluentsNotificationAppearance;
|
|
10739
|
+
};
|
|
10740
|
+
export type InfluentsNotificationActor = {
|
|
10741
|
+
__typename?: 'InfluentsNotificationActor';
|
|
10742
|
+
displayName?: Maybe<Scalars['String']>;
|
|
10743
|
+
ari?: Maybe<Scalars['String']>;
|
|
10744
|
+
avatarURL?: Maybe<Scalars['String']>;
|
|
10745
|
+
};
|
|
10746
|
+
export type InfluentsNotificationAnalyticsAttribute = {
|
|
10747
|
+
__typename?: 'InfluentsNotificationAnalyticsAttribute';
|
|
10748
|
+
key?: Maybe<Scalars['String']>;
|
|
10749
|
+
value?: Maybe<Scalars['String']>;
|
|
10750
|
+
};
|
|
10751
|
+
export declare enum InfluentsNotificationAppearance {
|
|
10752
|
+
Default = "DEFAULT",
|
|
10753
|
+
Primary = "PRIMARY",
|
|
10754
|
+
Link = "LINK",
|
|
10755
|
+
Subtle = "SUBTLE",
|
|
10756
|
+
Warning = "WARNING",
|
|
10757
|
+
Danger = "DANGER"
|
|
10758
|
+
}
|
|
10759
|
+
export type InfluentsNotificationBodyItem = {
|
|
10760
|
+
__typename?: 'InfluentsNotificationBodyItem';
|
|
10761
|
+
type?: Maybe<Scalars['String']>;
|
|
10762
|
+
appearance?: Maybe<Scalars['String']>;
|
|
10763
|
+
document?: Maybe<InfluentsNotificationDocument>;
|
|
10764
|
+
author?: Maybe<InfluentsNotificationActor>;
|
|
10765
|
+
};
|
|
10766
|
+
export declare enum InfluentsNotificationCategory {
|
|
10767
|
+
Direct = "direct",
|
|
10768
|
+
Watching = "watching"
|
|
10769
|
+
}
|
|
10770
|
+
export type InfluentsNotificationContent = {
|
|
10771
|
+
__typename?: 'InfluentsNotificationContent';
|
|
10772
|
+
type: Scalars['String'];
|
|
10773
|
+
message: Scalars['String'];
|
|
10774
|
+
url?: Maybe<Scalars['String']>;
|
|
10775
|
+
actor: InfluentsNotificationActor;
|
|
10776
|
+
entity?: Maybe<InfluentsNotificationEntity>;
|
|
10777
|
+
path?: Maybe<Array<InfluentsNotificationPath>>;
|
|
10778
|
+
actions?: Maybe<Array<InfluentsNotificationAction>>;
|
|
10779
|
+
bodyItems?: Maybe<Array<InfluentsNotificationBodyItem>>;
|
|
10780
|
+
templateVariables?: Maybe<Array<InfluentsNotificationTemplateVariable>>;
|
|
10781
|
+
};
|
|
10782
|
+
export type InfluentsNotificationDocument = {
|
|
10783
|
+
__typename?: 'InfluentsNotificationDocument';
|
|
10784
|
+
format?: Maybe<Scalars['String']>;
|
|
10785
|
+
data?: Maybe<Scalars['String']>;
|
|
10786
|
+
};
|
|
10787
|
+
export type InfluentsNotificationEntity = {
|
|
10788
|
+
__typename?: 'InfluentsNotificationEntity';
|
|
10789
|
+
title?: Maybe<Scalars['String']>;
|
|
10790
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
10791
|
+
url?: Maybe<Scalars['String']>;
|
|
10792
|
+
};
|
|
10793
|
+
export type InfluentsNotificationFeedFilter = {
|
|
10794
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10795
|
+
categoryFilter?: Maybe<InfluentsNotificationCategory>;
|
|
10796
|
+
readStateFilter?: Maybe<InfluentsNotificationReadState>;
|
|
10797
|
+
productFilter?: Maybe<Scalars['String']>;
|
|
10798
|
+
groupId?: Maybe<Scalars['String']>;
|
|
10799
|
+
};
|
|
10800
|
+
export type InfluentsNotificationGroupedConnection = {
|
|
10801
|
+
__typename?: 'InfluentsNotificationGroupedConnection';
|
|
10802
|
+
nodes: Array<InfluentsNotificationGroupedItem>;
|
|
10803
|
+
pageInfo: InfluentsNotificationPageInfo;
|
|
10804
|
+
};
|
|
10805
|
+
export type InfluentsNotificationGroupedItem = {
|
|
10806
|
+
__typename?: 'InfluentsNotificationGroupedItem';
|
|
10807
|
+
groupId: Scalars['ID'];
|
|
10808
|
+
groupSize: Scalars['Int'];
|
|
10809
|
+
headNotification: InfluentsNotificationItem;
|
|
10810
|
+
childItems?: Maybe<Array<InfluentsNotificationItem>>;
|
|
10811
|
+
};
|
|
10812
|
+
export type InfluentsNotificationGroupedItemChildItemsArgs = {
|
|
10813
|
+
first?: Maybe<Scalars['Int']>;
|
|
10814
|
+
after?: Maybe<Scalars['String']>;
|
|
10815
|
+
};
|
|
10816
|
+
export type InfluentsNotificationItem = {
|
|
10817
|
+
__typename?: 'InfluentsNotificationItem';
|
|
10818
|
+
notificationId: Scalars['ID'];
|
|
10819
|
+
timestamp: Scalars['DateTime'];
|
|
10820
|
+
content: InfluentsNotificationContent;
|
|
10821
|
+
readState: InfluentsNotificationReadState;
|
|
10822
|
+
category: InfluentsNotificationCategory;
|
|
10823
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10824
|
+
analyticsAttributes?: Maybe<Array<InfluentsNotificationAnalyticsAttribute>>;
|
|
10825
|
+
};
|
|
10826
|
+
export type InfluentsNotificationMutation = {
|
|
10827
|
+
__typename?: 'InfluentsNotificationMutation';
|
|
10828
|
+
markNotificationsAsRead?: Maybe<Scalars['String']>;
|
|
10829
|
+
markNotificationsAsUnread?: Maybe<Scalars['String']>;
|
|
10830
|
+
markNotificationsByGroupIdAsRead?: Maybe<Scalars['String']>;
|
|
10831
|
+
markNotificationsByGroupIdAsUnread?: Maybe<Scalars['String']>;
|
|
10832
|
+
markNotificationsByIdsAsRead?: Maybe<Scalars['String']>;
|
|
10833
|
+
markNotificationsByIdsAsUnread?: Maybe<Scalars['String']>;
|
|
10834
|
+
archiveNotifications?: Maybe<Scalars['String']>;
|
|
10835
|
+
};
|
|
10836
|
+
export type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
10837
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10838
|
+
product?: Maybe<Scalars['String']>;
|
|
10839
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10840
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10841
|
+
beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
|
|
10842
|
+
};
|
|
10843
|
+
export type InfluentsNotificationMutationMarkNotificationsAsUnreadArgs = {
|
|
10844
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10845
|
+
product?: Maybe<Scalars['String']>;
|
|
10846
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10847
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10848
|
+
beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
|
|
10849
|
+
};
|
|
10850
|
+
export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsReadArgs = {
|
|
10851
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10852
|
+
groupId?: Maybe<Scalars['String']>;
|
|
10853
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10854
|
+
};
|
|
10855
|
+
export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsUnreadArgs = {
|
|
10856
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10857
|
+
groupId?: Maybe<Scalars['String']>;
|
|
10858
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10859
|
+
};
|
|
10860
|
+
export type InfluentsNotificationMutationMarkNotificationsByIdsAsReadArgs = {
|
|
10861
|
+
ids: Array<Scalars['String']>;
|
|
10862
|
+
};
|
|
10863
|
+
export type InfluentsNotificationMutationMarkNotificationsByIdsAsUnreadArgs = {
|
|
10864
|
+
ids: Array<Scalars['String']>;
|
|
10865
|
+
};
|
|
10866
|
+
export type InfluentsNotificationMutationArchiveNotificationsArgs = {
|
|
10867
|
+
ids: Array<Scalars['String']>;
|
|
10868
|
+
};
|
|
10869
|
+
export type InfluentsNotificationPageInfo = {
|
|
10870
|
+
__typename?: 'InfluentsNotificationPageInfo';
|
|
10871
|
+
hasNextPage: Scalars['Boolean'];
|
|
10872
|
+
hasPreviousPage: Scalars['Boolean'];
|
|
10873
|
+
startCursor?: Maybe<Scalars['String']>;
|
|
10874
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
10875
|
+
};
|
|
10876
|
+
export type InfluentsNotificationPath = {
|
|
10877
|
+
__typename?: 'InfluentsNotificationPath';
|
|
10878
|
+
title?: Maybe<Scalars['String']>;
|
|
10879
|
+
url?: Maybe<Scalars['String']>;
|
|
10880
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
10881
|
+
};
|
|
10882
|
+
export type InfluentsNotificationQuery = {
|
|
10883
|
+
__typename?: 'InfluentsNotificationQuery';
|
|
10884
|
+
notificationFeed: InfluentsNotificationGroupedConnection;
|
|
10885
|
+
unseenNotificationCount: Scalars['Int'];
|
|
10886
|
+
};
|
|
10887
|
+
export type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
10888
|
+
feedFilter?: Maybe<InfluentsNotificationFeedFilter>;
|
|
10889
|
+
first?: Maybe<Scalars['Int']>;
|
|
10890
|
+
after?: Maybe<Scalars['String']>;
|
|
10891
|
+
};
|
|
10892
|
+
export type InfluentsNotificationQueryUnseenNotificationCountArgs = {
|
|
10893
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10894
|
+
product?: Maybe<Scalars['String']>;
|
|
10895
|
+
};
|
|
10896
|
+
export declare enum InfluentsNotificationReadState {
|
|
10897
|
+
Unread = "unread",
|
|
10898
|
+
Read = "read"
|
|
10899
|
+
}
|
|
10900
|
+
export type InfluentsNotificationTemplateVariable = {
|
|
10901
|
+
__typename?: 'InfluentsNotificationTemplateVariable';
|
|
10902
|
+
name: Scalars['String'];
|
|
10903
|
+
type: Scalars['String'];
|
|
10904
|
+
id: Scalars['ID'];
|
|
10905
|
+
fallback: Scalars['String'];
|
|
10906
|
+
};
|
|
10168
10907
|
export type InlineCardCreateConfig = {
|
|
10169
10908
|
__typename?: 'InlineCardCreateConfig';
|
|
10170
10909
|
enabled: Scalars['Boolean'];
|
|
@@ -10521,6 +11260,7 @@ export declare enum IssueDevOpsPullRequestStatus {
|
|
|
10521
11260
|
Open = "OPEN",
|
|
10522
11261
|
Merged = "MERGED",
|
|
10523
11262
|
Declined = "DECLINED",
|
|
11263
|
+
Draft = "DRAFT",
|
|
10524
11264
|
Unknown = "UNKNOWN"
|
|
10525
11265
|
}
|
|
10526
11266
|
export type IssueDevOpsRemoteLink = {
|
|
@@ -12806,6 +13546,7 @@ export type JiraIssueFieldsInput = {
|
|
|
12806
13546
|
assetsField?: Maybe<JiraAssetFieldInput>;
|
|
12807
13547
|
timeTrackingField?: Maybe<JiraTimeTrackingFieldInput>;
|
|
12808
13548
|
projectFields?: Maybe<Array<JiraProjectFieldInput>>;
|
|
13549
|
+
issueType?: Maybe<JiraIssueTypeInput>;
|
|
12809
13550
|
};
|
|
12810
13551
|
export type JiraIssueHierarchyConfigData = {
|
|
12811
13552
|
__typename?: 'JiraIssueHierarchyConfigData';
|
|
@@ -13265,6 +14006,11 @@ export type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
13265
14006
|
after?: Maybe<Scalars['String']>;
|
|
13266
14007
|
filter?: Maybe<JiraIssueSearchFieldSetsFilter>;
|
|
13267
14008
|
};
|
|
14009
|
+
export declare enum JiraIssueSearchViewContext {
|
|
14010
|
+
Nin = "NIN",
|
|
14011
|
+
NinWithFallback = "NIN_WITH_FALLBACK",
|
|
14012
|
+
ShadowRequest = "SHADOW_REQUEST"
|
|
14013
|
+
}
|
|
13268
14014
|
export type JiraIssueSearchViewPayload = Payload & {
|
|
13269
14015
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
13270
14016
|
success: Scalars['Boolean'];
|
|
@@ -13337,6 +14083,10 @@ export type JiraIssueTypeHierarchyLevel = {
|
|
|
13337
14083
|
level?: Maybe<Scalars['Int']>;
|
|
13338
14084
|
name?: Maybe<Scalars['String']>;
|
|
13339
14085
|
};
|
|
14086
|
+
export type JiraIssueTypeInput = {
|
|
14087
|
+
id?: Maybe<Scalars['ID']>;
|
|
14088
|
+
issueTypeId: Scalars['ID'];
|
|
14089
|
+
};
|
|
13340
14090
|
export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
13341
14091
|
NewestFirst = "NEWEST_FIRST",
|
|
13342
14092
|
OldestFirst = "OLDEST_FIRST"
|
|
@@ -14185,6 +14935,7 @@ export type JiraMutation = {
|
|
|
14185
14935
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
14186
14936
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
14187
14937
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
14938
|
+
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
14188
14939
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
14189
14940
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
14190
14941
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -14383,6 +15134,9 @@ export type JiraMutationUpdateCheckboxesFieldArgs = {
|
|
|
14383
15134
|
export type JiraMutationUpdateLegacyTeamFieldArgs = {
|
|
14384
15135
|
input: JiraUpdateLegacyTeamFieldInput;
|
|
14385
15136
|
};
|
|
15137
|
+
export type JiraMutationUpdateParentFieldArgs = {
|
|
15138
|
+
input: JiraUpdateParentFieldInput;
|
|
15139
|
+
};
|
|
14386
15140
|
export type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
14387
15141
|
input: JiraPermissionSchemeAddGrantInput;
|
|
14388
15142
|
};
|
|
@@ -14708,6 +15462,16 @@ export type JiraPageCursors = {
|
|
|
14708
15462
|
export type JiraParentFieldInput = {
|
|
14709
15463
|
issueId: Scalars['ID'];
|
|
14710
15464
|
};
|
|
15465
|
+
export type JiraParentFieldOperationInput = {
|
|
15466
|
+
operation: JiraSingleValueFieldOperations;
|
|
15467
|
+
id?: Maybe<Scalars['ID']>;
|
|
15468
|
+
};
|
|
15469
|
+
export type JiraParentFieldPayload = Payload & {
|
|
15470
|
+
__typename?: 'JiraParentFieldPayload';
|
|
15471
|
+
success: Scalars['Boolean'];
|
|
15472
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15473
|
+
field?: Maybe<JiraParentIssueField>;
|
|
15474
|
+
};
|
|
14711
15475
|
export type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
14712
15476
|
__typename?: 'JiraParentIssueField';
|
|
14713
15477
|
id: Scalars['ID'];
|
|
@@ -15042,6 +15806,7 @@ export type JiraProject = Node & {
|
|
|
15042
15806
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
15043
15807
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
15044
15808
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
15809
|
+
totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']>;
|
|
15045
15810
|
linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
|
|
15046
15811
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
15047
15812
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -17849,6 +18614,10 @@ export type JiraUpdateNumberFieldInput = {
|
|
|
17849
18614
|
id: Scalars['ID'];
|
|
17850
18615
|
operation: JiraNumberFieldOperationInput;
|
|
17851
18616
|
};
|
|
18617
|
+
export type JiraUpdateParentFieldInput = {
|
|
18618
|
+
id: Scalars['ID'];
|
|
18619
|
+
operation: JiraParentFieldOperationInput;
|
|
18620
|
+
};
|
|
17852
18621
|
export type JiraUpdatePriorityFieldInput = {
|
|
17853
18622
|
id: Scalars['ID'];
|
|
17854
18623
|
operation: JiraPriorityFieldOperationInput;
|
|
@@ -19398,6 +20167,7 @@ export type Mutation = {
|
|
|
19398
20167
|
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
19399
20168
|
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
19400
20169
|
updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
|
|
20170
|
+
updatePolarisField?: Maybe<UpdatePolarisFieldPayload>;
|
|
19401
20171
|
updatePolarisFieldEmoji?: Maybe<UpdatePolarisFieldEmojiPayload>;
|
|
19402
20172
|
deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
|
|
19403
20173
|
updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
|
|
@@ -19449,6 +20219,7 @@ export type Mutation = {
|
|
|
19449
20219
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
19450
20220
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
19451
20221
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
20222
|
+
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
19452
20223
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
19453
20224
|
shepherd?: Maybe<ShepherdMutation>;
|
|
19454
20225
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
@@ -19648,6 +20419,9 @@ export type MutationUpdatePolarisCalculatedFieldArgs = {
|
|
|
19648
20419
|
export type MutationUpdatePolarisFieldDescriptionArgs = {
|
|
19649
20420
|
input: UpdatePolarisFieldDescriptionInput;
|
|
19650
20421
|
};
|
|
20422
|
+
export type MutationUpdatePolarisFieldArgs = {
|
|
20423
|
+
input: UpdatePolarisFieldInput;
|
|
20424
|
+
};
|
|
19651
20425
|
export type MutationUpdatePolarisFieldEmojiArgs = {
|
|
19652
20426
|
input: UpdatePolarisFieldEmojiInput;
|
|
19653
20427
|
};
|
|
@@ -20102,6 +20876,11 @@ export declare enum NlpDisclaimer {
|
|
|
20102
20876
|
}
|
|
20103
20877
|
export declare enum NlpErrorState {
|
|
20104
20878
|
NoAnswer = "NO_ANSWER",
|
|
20879
|
+
NoAnswerKeywords = "NO_ANSWER_KEYWORDS",
|
|
20880
|
+
NoAnswerSearchResults = "NO_ANSWER_SEARCH_RESULTS",
|
|
20881
|
+
NoAnswerHydration = "NO_ANSWER_HYDRATION",
|
|
20882
|
+
NoAnswerRelevantContent = "NO_ANSWER_RELEVANT_CONTENT",
|
|
20883
|
+
NoAnswerOpenAiResponseErr = "NO_ANSWER_OPEN_AI_RESPONSE_ERR",
|
|
20105
20884
|
SubjectiveQuery = "SUBJECTIVE_QUERY",
|
|
20106
20885
|
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS"
|
|
20107
20886
|
}
|
|
@@ -20109,12 +20888,18 @@ export type NlpFollowUpResponse = {
|
|
|
20109
20888
|
__typename?: 'NlpFollowUpResponse';
|
|
20110
20889
|
followUps?: Maybe<Array<Scalars['String']>>;
|
|
20111
20890
|
};
|
|
20891
|
+
export type NlpFollowUpResult = {
|
|
20892
|
+
__typename?: 'NlpFollowUpResult';
|
|
20893
|
+
followUp?: Maybe<Scalars['String']>;
|
|
20894
|
+
followUpAnswers?: Maybe<Array<NlpSearchResult>>;
|
|
20895
|
+
};
|
|
20112
20896
|
export type NlpSearchResponse = {
|
|
20113
20897
|
__typename?: 'NlpSearchResponse';
|
|
20114
20898
|
nlpResults?: Maybe<Array<NlpSearchResult>>;
|
|
20115
20899
|
uniqueSources?: Maybe<Array<NlpSource>>;
|
|
20116
20900
|
errorState?: Maybe<NlpErrorState>;
|
|
20117
20901
|
disclaimer?: Maybe<NlpDisclaimer>;
|
|
20902
|
+
nlpFollowResults?: Maybe<Array<NlpFollowUpResult>>;
|
|
20118
20903
|
};
|
|
20119
20904
|
export type NlpSearchResult = {
|
|
20120
20905
|
__typename?: 'NlpSearchResult';
|
|
@@ -20132,6 +20917,8 @@ export type NlpSource = {
|
|
|
20132
20917
|
url: Scalars['URL'];
|
|
20133
20918
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
20134
20919
|
type: NlpSearchResultType;
|
|
20920
|
+
lastModified?: Maybe<Scalars['String']>;
|
|
20921
|
+
spaceName?: Maybe<Scalars['String']>;
|
|
20135
20922
|
};
|
|
20136
20923
|
export type Node = {
|
|
20137
20924
|
id: Scalars['ID'];
|
|
@@ -20405,7 +21192,7 @@ export type PartnerCatalogApiPartnerOfferingDetailsArgs = {
|
|
|
20405
21192
|
};
|
|
20406
21193
|
export type PartnerCloudApp = PartnerOfferingNode & {
|
|
20407
21194
|
__typename?: 'PartnerCloudApp';
|
|
20408
|
-
|
|
21195
|
+
id: Scalars['ID'];
|
|
20409
21196
|
name?: Maybe<Scalars['String']>;
|
|
20410
21197
|
sku?: Maybe<Scalars['String']>;
|
|
20411
21198
|
level?: Maybe<Scalars['Int']>;
|
|
@@ -20429,18 +21216,18 @@ export declare enum PartnerCloudLicenseType {
|
|
|
20429
21216
|
export type PartnerCloudProduct = PartnerCloudProductNode & {
|
|
20430
21217
|
__typename?: 'PartnerCloudProduct';
|
|
20431
21218
|
chargeElements?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
20432
|
-
|
|
21219
|
+
id: Scalars['ID'];
|
|
20433
21220
|
name?: Maybe<Scalars['String']>;
|
|
20434
21221
|
offerings?: Maybe<Array<Maybe<PartnerOfferingItem>>>;
|
|
20435
21222
|
uncollectibleAction?: Maybe<PartnerUncollectibleAction>;
|
|
20436
21223
|
};
|
|
20437
21224
|
export type PartnerCloudProductItem = PartnerCloudProductNode & {
|
|
20438
21225
|
__typename?: 'PartnerCloudProductItem';
|
|
20439
|
-
|
|
21226
|
+
id: Scalars['ID'];
|
|
20440
21227
|
name?: Maybe<Scalars['String']>;
|
|
20441
21228
|
};
|
|
20442
21229
|
export type PartnerCloudProductNode = {
|
|
20443
|
-
|
|
21230
|
+
id: Scalars['ID'];
|
|
20444
21231
|
name?: Maybe<Scalars['String']>;
|
|
20445
21232
|
};
|
|
20446
21233
|
export declare enum PartnerCurrency {
|
|
@@ -20454,7 +21241,7 @@ export type PartnerOfferingBtfInput = {
|
|
|
20454
21241
|
};
|
|
20455
21242
|
export type PartnerOfferingCloudInput = {
|
|
20456
21243
|
currency?: Maybe<Array<Maybe<PartnerCurrency>>>;
|
|
20457
|
-
|
|
21244
|
+
id: Scalars['ID'];
|
|
20458
21245
|
pricingPlanType?: Maybe<Array<Maybe<PartnerCloudLicenseType>>>;
|
|
20459
21246
|
};
|
|
20460
21247
|
export type PartnerOfferingDetailsResponse = {
|
|
@@ -20472,7 +21259,7 @@ export type PartnerOfferingItem = PartnerOfferingNode & {
|
|
|
20472
21259
|
__typename?: 'PartnerOfferingItem';
|
|
20473
21260
|
billingType?: Maybe<Scalars['String']>;
|
|
20474
21261
|
hostingType?: Maybe<Scalars['String']>;
|
|
20475
|
-
|
|
21262
|
+
id: Scalars['ID'];
|
|
20476
21263
|
level?: Maybe<Scalars['Int']>;
|
|
20477
21264
|
name?: Maybe<Scalars['String']>;
|
|
20478
21265
|
parent?: Maybe<Scalars['String']>;
|
|
@@ -20487,7 +21274,7 @@ export type PartnerOfferingListResponse = {
|
|
|
20487
21274
|
cloudProducts?: Maybe<Array<Maybe<PartnerCloudProductItem>>>;
|
|
20488
21275
|
};
|
|
20489
21276
|
export type PartnerOfferingNode = {
|
|
20490
|
-
|
|
21277
|
+
id: Scalars['ID'];
|
|
20491
21278
|
name?: Maybe<Scalars['String']>;
|
|
20492
21279
|
};
|
|
20493
21280
|
export type PartnerOrderableItem = PartnerOrderableItemNode & {
|
|
@@ -20525,7 +21312,7 @@ export type PartnerPricingPlan = PartnerPricingPlanNode & {
|
|
|
20525
21312
|
currency?: Maybe<Scalars['String']>;
|
|
20526
21313
|
description?: Maybe<Scalars['String']>;
|
|
20527
21314
|
items?: Maybe<Array<Maybe<PartnerPricingPlanItem>>>;
|
|
20528
|
-
|
|
21315
|
+
id: Scalars['ID'];
|
|
20529
21316
|
primaryCycle?: Maybe<PartnerBillingCycle>;
|
|
20530
21317
|
sku?: Maybe<Scalars['String']>;
|
|
20531
21318
|
type?: Maybe<Scalars['String']>;
|
|
@@ -20541,7 +21328,7 @@ export type PartnerPricingPlanItem = {
|
|
|
20541
21328
|
export type PartnerPricingPlanNode = {
|
|
20542
21329
|
currency?: Maybe<Scalars['String']>;
|
|
20543
21330
|
description?: Maybe<Scalars['String']>;
|
|
20544
|
-
|
|
21331
|
+
id: Scalars['ID'];
|
|
20545
21332
|
type?: Maybe<Scalars['String']>;
|
|
20546
21333
|
};
|
|
20547
21334
|
export type PartnerPricingTier = {
|
|
@@ -21890,6 +22677,7 @@ export type Query = {
|
|
|
21890
22677
|
productListings: Array<ProductListingResult>;
|
|
21891
22678
|
marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
|
|
21892
22679
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
22680
|
+
notifications?: Maybe<InfluentsNotificationQuery>;
|
|
21893
22681
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
21894
22682
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
21895
22683
|
extensionContext?: Maybe<ExtensionContext>;
|
|
@@ -21897,6 +22685,7 @@ export type Query = {
|
|
|
21897
22685
|
echo?: Maybe<Scalars['String']>;
|
|
21898
22686
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
21899
22687
|
node?: Maybe<Node>;
|
|
22688
|
+
featureRelease?: Maybe<FeatureRelease>;
|
|
21900
22689
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
21901
22690
|
activities?: Maybe<Activities>;
|
|
21902
22691
|
activity?: Maybe<Activity>;
|
|
@@ -21937,7 +22726,7 @@ export type Query = {
|
|
|
21937
22726
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
21938
22727
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
21939
22728
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
21940
|
-
sandbox
|
|
22729
|
+
sandbox: SandboxQuery;
|
|
21941
22730
|
xflow?: Maybe<Scalars['String']>;
|
|
21942
22731
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
21943
22732
|
jiraReleases?: Maybe<JiraReleases>;
|
|
@@ -22332,6 +23121,7 @@ export type QueryNlpSearchArgs = {
|
|
|
22332
23121
|
query?: Maybe<Scalars['String']>;
|
|
22333
23122
|
locations: Array<Scalars['String']>;
|
|
22334
23123
|
locale?: Maybe<Scalars['String']>;
|
|
23124
|
+
followups_enabled?: Maybe<Scalars['Boolean']>;
|
|
22335
23125
|
};
|
|
22336
23126
|
export type QueryNlpFollowUpArgs = {
|
|
22337
23127
|
query?: Maybe<Scalars['String']>;
|
|
@@ -23172,17 +23962,64 @@ export type RoadmapsQueryRoadmapDeriveFieldsArgs = {
|
|
|
23172
23962
|
};
|
|
23173
23963
|
export type Sandbox = {
|
|
23174
23964
|
__typename?: 'Sandbox';
|
|
23175
|
-
|
|
23965
|
+
orgId: Scalars['ID'];
|
|
23966
|
+
parentCloudId: Scalars['ID'];
|
|
23967
|
+
sandboxCloudId: Scalars['ID'];
|
|
23968
|
+
productKey: Scalars['String'];
|
|
23969
|
+
ifOffline: Scalars['Boolean'];
|
|
23970
|
+
events: Array<SandboxEvent>;
|
|
23176
23971
|
};
|
|
23177
23972
|
export type SandboxEvent = {
|
|
23178
23973
|
__typename?: 'SandboxEvent';
|
|
23179
|
-
orgId
|
|
23974
|
+
orgId: Scalars['ID'];
|
|
23975
|
+
sandboxCloudId: Scalars['ID'];
|
|
23976
|
+
productKey: Scalars['String'];
|
|
23977
|
+
event: SandboxEventType;
|
|
23978
|
+
status: SandboxEventStatus;
|
|
23979
|
+
result: SandboxEventResult;
|
|
23980
|
+
source: SandboxEventSource;
|
|
23981
|
+
groupId: Scalars['String'];
|
|
23982
|
+
timestamp: Scalars['Int'];
|
|
23983
|
+
};
|
|
23984
|
+
export declare enum SandboxEventResult {
|
|
23985
|
+
Successful = "successful",
|
|
23986
|
+
Failed = "failed",
|
|
23987
|
+
Incomplete = "incomplete",
|
|
23988
|
+
Unknown = "unknown"
|
|
23989
|
+
}
|
|
23990
|
+
export declare enum SandboxEventSource {
|
|
23991
|
+
User = "user",
|
|
23992
|
+
Admin = "admin",
|
|
23993
|
+
System = "system"
|
|
23994
|
+
}
|
|
23995
|
+
export declare enum SandboxEventStatus {
|
|
23996
|
+
Started = "started",
|
|
23997
|
+
AwaitingReplay = "awaiting_replay",
|
|
23998
|
+
Completed = "completed",
|
|
23999
|
+
Cancelled = "cancelled"
|
|
24000
|
+
}
|
|
24001
|
+
export declare enum SandboxEventType {
|
|
24002
|
+
Create = "create",
|
|
24003
|
+
Reshard = "reshard",
|
|
24004
|
+
SoftDelete = "soft_delete",
|
|
24005
|
+
HardDelete = "hard_delete",
|
|
24006
|
+
Rollback = "rollback",
|
|
24007
|
+
Reset = "reset",
|
|
24008
|
+
DataClone = "data_clone",
|
|
24009
|
+
DataCloneSelective = "data_clone_selective"
|
|
24010
|
+
}
|
|
24011
|
+
export type SandboxQuery = {
|
|
24012
|
+
__typename?: 'SandboxQuery';
|
|
24013
|
+
sandboxes: Array<Sandbox>;
|
|
24014
|
+
};
|
|
24015
|
+
export type SandboxQuerySandboxesArgs = {
|
|
24016
|
+
orgId: Scalars['ID'];
|
|
23180
24017
|
};
|
|
23181
24018
|
export type SandboxSubscription = {
|
|
23182
24019
|
__typename?: 'SandboxSubscription';
|
|
23183
|
-
|
|
24020
|
+
onSandboxEventCreated: SandboxEvent;
|
|
23184
24021
|
};
|
|
23185
|
-
export type
|
|
24022
|
+
export type SandboxSubscriptionOnSandboxEventCreatedArgs = {
|
|
23186
24023
|
orgId: Scalars['ID'];
|
|
23187
24024
|
};
|
|
23188
24025
|
export type ScanPolarisProjectInput = {
|
|
@@ -24896,7 +25733,7 @@ export type Subscription = {
|
|
|
24896
25733
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
24897
25734
|
onJiraIssueCreatedForUser?: Maybe<JiraOnIssueCreatedForUserResponseType>;
|
|
24898
25735
|
testing?: Maybe<TestingSubscription>;
|
|
24899
|
-
sandbox
|
|
25736
|
+
sandbox: SandboxSubscription;
|
|
24900
25737
|
};
|
|
24901
25738
|
export type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
24902
25739
|
cloudId: Scalars['ID'];
|
|
@@ -26045,6 +26882,7 @@ export type TrelloAttachmentEdge = {
|
|
|
26045
26882
|
export type TrelloBoard = Node & {
|
|
26046
26883
|
__typename?: 'TrelloBoard';
|
|
26047
26884
|
closed: Scalars['Boolean'];
|
|
26885
|
+
description?: Maybe<TrelloDescription>;
|
|
26048
26886
|
enterpriseOwned: Scalars['Boolean'];
|
|
26049
26887
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
26050
26888
|
id: Scalars['ID'];
|
|
@@ -26193,6 +27031,7 @@ export type TrelloBoardViewer = {
|
|
|
26193
27031
|
__typename?: 'TrelloBoardViewer';
|
|
26194
27032
|
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
26195
27033
|
starred: Scalars['Boolean'];
|
|
27034
|
+
subscribed?: Maybe<Scalars['Boolean']>;
|
|
26196
27035
|
};
|
|
26197
27036
|
export type TrelloCard = Node & {
|
|
26198
27037
|
__typename?: 'TrelloCard';
|
|
@@ -26419,7 +27258,7 @@ export type TrelloChecklistEdge = {
|
|
|
26419
27258
|
node: TrelloChecklist;
|
|
26420
27259
|
};
|
|
26421
27260
|
export type TrelloCreateCardInput = {
|
|
26422
|
-
idList
|
|
27261
|
+
idList: Scalars['ID'];
|
|
26423
27262
|
name: Scalars['String'];
|
|
26424
27263
|
};
|
|
26425
27264
|
export type TrelloCreateCardPayload = Payload & {
|
|
@@ -26622,6 +27461,7 @@ export type TrelloMember = Node & {
|
|
|
26622
27461
|
__typename?: 'TrelloMember';
|
|
26623
27462
|
id: Scalars['ID'];
|
|
26624
27463
|
objectId: Scalars['ID'];
|
|
27464
|
+
user?: Maybe<User>;
|
|
26625
27465
|
username?: Maybe<Scalars['String']>;
|
|
26626
27466
|
};
|
|
26627
27467
|
export type TrelloMutationApi = {
|
|
@@ -27041,6 +27881,16 @@ export type UpdateCompassScorecardPayload = Payload & {
|
|
|
27041
27881
|
errors?: Maybe<Array<MutationError>>;
|
|
27042
27882
|
scorecardDetails?: Maybe<CompassScorecard>;
|
|
27043
27883
|
};
|
|
27884
|
+
export type UpdateCompassUserDefinedParametersInput = {
|
|
27885
|
+
componentId: Scalars['ID'];
|
|
27886
|
+
createParameters?: Maybe<Array<CreateCompassUserDefinedParameterInput>>;
|
|
27887
|
+
};
|
|
27888
|
+
export type UpdateCompassUserDefinedParametersPayload = Payload & {
|
|
27889
|
+
__typename?: 'UpdateCompassUserDefinedParametersPayload';
|
|
27890
|
+
success: Scalars['Boolean'];
|
|
27891
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27892
|
+
userParameterDetails?: Maybe<CompassUserDefinedParameters>;
|
|
27893
|
+
};
|
|
27044
27894
|
export type UpdateCustomFilterInput = {
|
|
27045
27895
|
boardId: Scalars['ID'];
|
|
27046
27896
|
id: Scalars['ID'];
|
|
@@ -27222,6 +28072,12 @@ export type UpdatePolarisFieldEmojiPayload = Payload & {
|
|
|
27222
28072
|
errors?: Maybe<Array<MutationError>>;
|
|
27223
28073
|
node?: Maybe<PolarisIdeaField>;
|
|
27224
28074
|
};
|
|
28075
|
+
export type UpdatePolarisFieldInput = {
|
|
28076
|
+
field: Scalars['ID'];
|
|
28077
|
+
ideaType: Scalars['ID'];
|
|
28078
|
+
name: Scalars['String'];
|
|
28079
|
+
description: Scalars['String'];
|
|
28080
|
+
};
|
|
27225
28081
|
export type UpdatePolarisFieldOptionWeightInput = {
|
|
27226
28082
|
project: Scalars['ID'];
|
|
27227
28083
|
field: Scalars['ID'];
|
|
@@ -27233,6 +28089,12 @@ export type UpdatePolarisFieldOptionWeightPayload = Payload & {
|
|
|
27233
28089
|
success: Scalars['Boolean'];
|
|
27234
28090
|
errors?: Maybe<Array<MutationError>>;
|
|
27235
28091
|
};
|
|
28092
|
+
export type UpdatePolarisFieldPayload = Payload & {
|
|
28093
|
+
__typename?: 'UpdatePolarisFieldPayload';
|
|
28094
|
+
success: Scalars['Boolean'];
|
|
28095
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28096
|
+
node?: Maybe<PolarisIdeaField>;
|
|
28097
|
+
};
|
|
27236
28098
|
export type UpdatePolarisIdeaInput = {
|
|
27237
28099
|
archived?: Maybe<Scalars['Boolean']>;
|
|
27238
28100
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|