@forge/cli-shared 3.16.1-next.1 → 3.17.0-next.11
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 +72 -0
- package/out/apps/app-config.d.ts.map +1 -1
- package/out/apps/app-config.js +1 -1
- package/out/apps/register-app.d.ts +3 -2
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/apps/register-app.js +10 -2
- package/out/auth/personal/login.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +802 -40
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +154 -7
- package/out/ui/text.d.ts +10 -3
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +15 -8
- package/package.json +5 -5
|
@@ -160,6 +160,7 @@ export declare enum ActivitiesObjectType {
|
|
|
160
160
|
Page = "PAGE",
|
|
161
161
|
Blogpost = "BLOGPOST",
|
|
162
162
|
Whiteboard = "WHITEBOARD",
|
|
163
|
+
Database = "DATABASE",
|
|
163
164
|
Project = "PROJECT",
|
|
164
165
|
Goal = "GOAL"
|
|
165
166
|
}
|
|
@@ -267,6 +268,7 @@ export declare enum ActivityObjectType {
|
|
|
267
268
|
Page = "PAGE",
|
|
268
269
|
Blogpost = "BLOGPOST",
|
|
269
270
|
Whiteboard = "WHITEBOARD",
|
|
271
|
+
Database = "DATABASE",
|
|
270
272
|
Task = "TASK",
|
|
271
273
|
Goal = "GOAL"
|
|
272
274
|
}
|
|
@@ -607,7 +609,8 @@ export declare enum ApiGroup {
|
|
|
607
609
|
CloudAdmin = "CLOUD_ADMIN",
|
|
608
610
|
CustomerService = "CUSTOMER_SERVICE",
|
|
609
611
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
610
|
-
AppRecommendations = "APP_RECOMMENDATIONS"
|
|
612
|
+
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
613
|
+
FeatureReleaseQuery = "FEATURE_RELEASE_QUERY"
|
|
611
614
|
}
|
|
612
615
|
export type App = {
|
|
613
616
|
__typename?: 'App';
|
|
@@ -2156,6 +2159,10 @@ export type CcpAccountDetails = {
|
|
|
2156
2159
|
invoiceGroupId?: Maybe<Scalars['ID']>;
|
|
2157
2160
|
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
2158
2161
|
};
|
|
2162
|
+
export declare enum CcpActivationReason {
|
|
2163
|
+
DefaultPricing = "DEFAULT_PRICING",
|
|
2164
|
+
AdvantagePricing = "ADVANTAGE_PRICING"
|
|
2165
|
+
}
|
|
2159
2166
|
export type CcpApplicationReason = {
|
|
2160
2167
|
__typename?: 'CcpApplicationReason';
|
|
2161
2168
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2182,12 +2189,21 @@ export type CcpChargeDetails = {
|
|
|
2182
2189
|
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
2183
2190
|
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
2184
2191
|
};
|
|
2192
|
+
export type CcpChargeElementData = {
|
|
2193
|
+
__typename?: 'CcpChargeElementData';
|
|
2194
|
+
ceiling?: Maybe<Scalars['Int']>;
|
|
2195
|
+
};
|
|
2185
2196
|
export type CcpChargeQuantity = {
|
|
2186
2197
|
__typename?: 'CcpChargeQuantity';
|
|
2187
2198
|
chargeElement?: Maybe<Scalars['String']>;
|
|
2188
2199
|
quantity?: Maybe<Scalars['Float']>;
|
|
2189
2200
|
lastUpdatedAt?: Maybe<Scalars['Float']>;
|
|
2190
2201
|
};
|
|
2202
|
+
export declare enum CcpChargeType {
|
|
2203
|
+
Metered = "METERED",
|
|
2204
|
+
Licensed = "LICENSED",
|
|
2205
|
+
AutoScaling = "AUTO_SCALING"
|
|
2206
|
+
}
|
|
2191
2207
|
export type CcpContext = {
|
|
2192
2208
|
__typename?: 'CcpContext';
|
|
2193
2209
|
subject?: Maybe<Scalars['String']>;
|
|
@@ -2195,11 +2211,33 @@ export type CcpContext = {
|
|
|
2195
2211
|
authMechanism?: Maybe<Scalars['String']>;
|
|
2196
2212
|
clientAsapIssuer?: Maybe<Scalars['String']>;
|
|
2197
2213
|
};
|
|
2214
|
+
export declare enum CcpCurrency {
|
|
2215
|
+
Usd = "USD",
|
|
2216
|
+
Jpy = "JPY"
|
|
2217
|
+
}
|
|
2198
2218
|
export type CcpCustomisedValues = {
|
|
2199
2219
|
__typename?: 'CcpCustomisedValues';
|
|
2200
2220
|
applicationReason?: Maybe<CcpApplicationReason>;
|
|
2201
2221
|
benefits?: Maybe<Array<Maybe<CcpBenefit>>>;
|
|
2202
2222
|
};
|
|
2223
|
+
export type CcpCycle = {
|
|
2224
|
+
__typename?: 'CcpCycle';
|
|
2225
|
+
name?: Maybe<Scalars['String']>;
|
|
2226
|
+
interval?: Maybe<CcpInterval>;
|
|
2227
|
+
count?: Maybe<Scalars['Int']>;
|
|
2228
|
+
};
|
|
2229
|
+
export type CcpDerivedFromOffering = {
|
|
2230
|
+
__typename?: 'CcpDerivedFromOffering';
|
|
2231
|
+
templateId?: Maybe<Scalars['ID']>;
|
|
2232
|
+
templateVersion?: Maybe<Scalars['Int']>;
|
|
2233
|
+
originalOfferingKey?: Maybe<Scalars['ID']>;
|
|
2234
|
+
};
|
|
2235
|
+
export type CcpDerivedOffering = {
|
|
2236
|
+
__typename?: 'CcpDerivedOffering';
|
|
2237
|
+
templateId?: Maybe<Scalars['ID']>;
|
|
2238
|
+
templateVersion?: Maybe<Scalars['Int']>;
|
|
2239
|
+
generatedOfferingKey?: Maybe<Scalars['ID']>;
|
|
2240
|
+
};
|
|
2203
2241
|
export declare enum CcpDuration {
|
|
2204
2242
|
Forever = "FOREVER",
|
|
2205
2243
|
Once = "ONCE",
|
|
@@ -2208,12 +2246,13 @@ export declare enum CcpDuration {
|
|
|
2208
2246
|
export type CcpEntitlement = Node & {
|
|
2209
2247
|
__typename?: 'CcpEntitlement';
|
|
2210
2248
|
id: Scalars['ID'];
|
|
2249
|
+
entitlementId?: Maybe<Scalars['ID']>;
|
|
2211
2250
|
version?: Maybe<Scalars['Int']>;
|
|
2212
2251
|
status?: Maybe<CcpEntitlementStatus>;
|
|
2213
2252
|
slug?: Maybe<Scalars['String']>;
|
|
2214
2253
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2215
2254
|
changeReason?: Maybe<Scalars['String']>;
|
|
2216
|
-
offeringKey?: Maybe<Scalars['
|
|
2255
|
+
offeringKey?: Maybe<Scalars['ID']>;
|
|
2217
2256
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
2218
2257
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2219
2258
|
featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
@@ -2227,6 +2266,7 @@ export type CcpEntitlement = Node & {
|
|
|
2227
2266
|
createdAt?: Maybe<Scalars['Float']>;
|
|
2228
2267
|
updatedAt?: Maybe<Scalars['Float']>;
|
|
2229
2268
|
subscription?: Maybe<CcpSubscription>;
|
|
2269
|
+
offering?: Maybe<CcpOffering>;
|
|
2230
2270
|
context?: Maybe<CcpContext>;
|
|
2231
2271
|
};
|
|
2232
2272
|
export type CcpEntitlementRelationship = {
|
|
@@ -2241,25 +2281,139 @@ export declare enum CcpEntitlementStatus {
|
|
|
2241
2281
|
}
|
|
2242
2282
|
export type CcpEntitlementTemplate = {
|
|
2243
2283
|
__typename?: 'CcpEntitlementTemplate';
|
|
2244
|
-
key?: Maybe<Scalars['
|
|
2284
|
+
key?: Maybe<Scalars['ID']>;
|
|
2245
2285
|
version?: Maybe<Scalars['Int']>;
|
|
2246
2286
|
data?: Maybe<Scalars['String']>;
|
|
2247
2287
|
provisionedBy?: Maybe<Scalars['String']>;
|
|
2248
2288
|
};
|
|
2289
|
+
export declare enum CcpInterval {
|
|
2290
|
+
Day = "DAY",
|
|
2291
|
+
Week = "WEEK",
|
|
2292
|
+
Month = "MONTH",
|
|
2293
|
+
Year = "YEAR"
|
|
2294
|
+
}
|
|
2249
2295
|
export type CcpMapEntry = {
|
|
2250
2296
|
__typename?: 'CcpMapEntry';
|
|
2251
2297
|
key?: Maybe<Scalars['String']>;
|
|
2252
2298
|
value?: Maybe<Scalars['String']>;
|
|
2253
2299
|
};
|
|
2300
|
+
export type CcpOffering = Node & {
|
|
2301
|
+
__typename?: 'CcpOffering';
|
|
2302
|
+
id: Scalars['ID'];
|
|
2303
|
+
key?: Maybe<Scalars['ID']>;
|
|
2304
|
+
name?: Maybe<Scalars['String']>;
|
|
2305
|
+
updatedAt?: Maybe<Scalars['Float']>;
|
|
2306
|
+
sku?: Maybe<Scalars['String']>;
|
|
2307
|
+
hostingType?: Maybe<CcpOfferingHostingType>;
|
|
2308
|
+
level?: Maybe<Scalars['Int']>;
|
|
2309
|
+
productKey?: Maybe<Scalars['ID']>;
|
|
2310
|
+
slugs?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2311
|
+
type?: Maybe<CcpOfferingType>;
|
|
2312
|
+
pricingType?: Maybe<CcpPricingType>;
|
|
2313
|
+
status?: Maybe<CcpOfferingStatus>;
|
|
2314
|
+
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
2315
|
+
version?: Maybe<Scalars['Int']>;
|
|
2316
|
+
chargeElements?: Maybe<Array<Maybe<CcpChargeElementData>>>;
|
|
2317
|
+
syntheticTemplates?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2318
|
+
derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
|
|
2319
|
+
expiryDate?: Maybe<Scalars['Float']>;
|
|
2320
|
+
derivedFromOffering?: Maybe<CcpDerivedFromOffering>;
|
|
2321
|
+
catalogAccountId?: Maybe<Scalars['ID']>;
|
|
2322
|
+
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']>;
|
|
2323
|
+
dependsOnOfferingKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2324
|
+
trial?: Maybe<CcpOfferingTrial>;
|
|
2325
|
+
offeringGroup?: Maybe<CcpOfferingGroup>;
|
|
2326
|
+
entitlementTemplateId?: Maybe<Scalars['ID']>;
|
|
2327
|
+
};
|
|
2328
|
+
export type CcpOfferingGroup = {
|
|
2329
|
+
__typename?: 'CcpOfferingGroup';
|
|
2330
|
+
key?: Maybe<Scalars['ID']>;
|
|
2331
|
+
name?: Maybe<Scalars['String']>;
|
|
2332
|
+
slug?: Maybe<Scalars['String']>;
|
|
2333
|
+
level?: Maybe<Scalars['Int']>;
|
|
2334
|
+
productKey?: Maybe<Scalars['ID']>;
|
|
2335
|
+
catalogAccountId?: Maybe<Scalars['ID']>;
|
|
2336
|
+
};
|
|
2337
|
+
export declare enum CcpOfferingHostingType {
|
|
2338
|
+
Cloud = "CLOUD"
|
|
2339
|
+
}
|
|
2340
|
+
export declare enum CcpOfferingStatus {
|
|
2341
|
+
Draft = "DRAFT",
|
|
2342
|
+
Active = "ACTIVE",
|
|
2343
|
+
AtNotice = "AT_NOTICE",
|
|
2344
|
+
Expired = "EXPIRED"
|
|
2345
|
+
}
|
|
2346
|
+
export type CcpOfferingTrial = {
|
|
2347
|
+
__typename?: 'CcpOfferingTrial';
|
|
2348
|
+
lengthDays?: Maybe<Scalars['Int']>;
|
|
2349
|
+
};
|
|
2350
|
+
export declare enum CcpOfferingType {
|
|
2351
|
+
Parent = "PARENT",
|
|
2352
|
+
Child = "CHILD"
|
|
2353
|
+
}
|
|
2254
2354
|
export type CcpOrder = Node & {
|
|
2255
2355
|
__typename?: 'CcpOrder';
|
|
2256
2356
|
id: Scalars['ID'];
|
|
2257
|
-
itemId?: Maybe<Scalars['
|
|
2357
|
+
itemId?: Maybe<Scalars['ID']>;
|
|
2258
2358
|
};
|
|
2259
2359
|
export type CcpPricingPlan = Node & {
|
|
2260
2360
|
__typename?: 'CcpPricingPlan';
|
|
2261
2361
|
id: Scalars['ID'];
|
|
2362
|
+
key?: Maybe<Scalars['ID']>;
|
|
2363
|
+
updatedAt?: Maybe<Scalars['Float']>;
|
|
2364
|
+
sku?: Maybe<Scalars['String']>;
|
|
2365
|
+
description?: Maybe<Scalars['String']>;
|
|
2366
|
+
offeringKey?: Maybe<Scalars['ID']>;
|
|
2367
|
+
productKey?: Maybe<Scalars['ID']>;
|
|
2368
|
+
primaryCycle?: Maybe<CcpCycle>;
|
|
2369
|
+
status?: Maybe<CcpPricingPlanStatus>;
|
|
2370
|
+
currency?: Maybe<CcpCurrency>;
|
|
2371
|
+
type?: Maybe<Scalars['String']>;
|
|
2372
|
+
maxNewQuoteDate?: Maybe<Scalars['Float']>;
|
|
2373
|
+
activatedWithReason?: Maybe<CcpActivationReason>;
|
|
2374
|
+
items?: Maybe<Array<Maybe<CcpPricingPlanItem>>>;
|
|
2375
|
+
version?: Maybe<Scalars['Float']>;
|
|
2376
|
+
relationships?: Maybe<Array<Maybe<CcpPricingPlanRelationship>>>;
|
|
2377
|
+
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
2378
|
+
catalogAccountId?: Maybe<Scalars['ID']>;
|
|
2379
|
+
offering?: Maybe<CcpOffering>;
|
|
2380
|
+
};
|
|
2381
|
+
export type CcpPricingPlanItem = {
|
|
2382
|
+
__typename?: 'CcpPricingPlanItem';
|
|
2383
|
+
cycle?: Maybe<CcpCycle>;
|
|
2384
|
+
chargeType?: Maybe<CcpChargeType>;
|
|
2385
|
+
chargeElement?: Maybe<Scalars['String']>;
|
|
2386
|
+
tiersMode?: Maybe<CcpTiersMode>;
|
|
2387
|
+
usageUpdateCadence?: Maybe<CcpUsageUpdateCadence>;
|
|
2388
|
+
prorateOnUsageChange?: Maybe<CcpProrateOnUsageChange>;
|
|
2389
|
+
tiers?: Maybe<Array<Maybe<CcpPricingPlanTier>>>;
|
|
2390
|
+
};
|
|
2391
|
+
export type CcpPricingPlanRelationship = {
|
|
2392
|
+
__typename?: 'CcpPricingPlanRelationship';
|
|
2393
|
+
fromPricingPlanKey?: Maybe<Scalars['ID']>;
|
|
2394
|
+
toPricingPlanKey?: Maybe<Scalars['ID']>;
|
|
2395
|
+
type?: Maybe<CcpRelationshipPricingType>;
|
|
2396
|
+
metadata?: Maybe<Scalars['String']>;
|
|
2397
|
+
};
|
|
2398
|
+
export declare enum CcpPricingPlanStatus {
|
|
2399
|
+
Draft = "DRAFT",
|
|
2400
|
+
Active = "ACTIVE",
|
|
2401
|
+
AtNotice = "AT_NOTICE",
|
|
2402
|
+
Expired = "EXPIRED"
|
|
2403
|
+
}
|
|
2404
|
+
export type CcpPricingPlanTier = {
|
|
2405
|
+
__typename?: 'CcpPricingPlanTier';
|
|
2406
|
+
floor?: Maybe<Scalars['Int']>;
|
|
2407
|
+
ceiling?: Maybe<Scalars['Int']>;
|
|
2408
|
+
unitAmount?: Maybe<Scalars['Int']>;
|
|
2409
|
+
flatAmount?: Maybe<Scalars['Int']>;
|
|
2262
2410
|
};
|
|
2411
|
+
export declare enum CcpPricingType {
|
|
2412
|
+
External = "EXTERNAL",
|
|
2413
|
+
Free = "FREE",
|
|
2414
|
+
LimitedFree = "LIMITED_FREE",
|
|
2415
|
+
Paid = "PAID"
|
|
2416
|
+
}
|
|
2263
2417
|
export type CcpPromotion = {
|
|
2264
2418
|
__typename?: 'CcpPromotion';
|
|
2265
2419
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2275,13 +2429,32 @@ export type CcpPromotionInstance = {
|
|
|
2275
2429
|
promotionInstanceId?: Maybe<Scalars['ID']>;
|
|
2276
2430
|
promotionDefinition?: Maybe<CcpPromotionDefinition>;
|
|
2277
2431
|
};
|
|
2432
|
+
export declare enum CcpProrateOnUsageChange {
|
|
2433
|
+
CreateProrations = "CREATE_PRORATIONS",
|
|
2434
|
+
None = "NONE",
|
|
2435
|
+
AlwaysInvoice = "ALWAYS_INVOICE"
|
|
2436
|
+
}
|
|
2278
2437
|
export type CcpQueryApi = {
|
|
2279
2438
|
__typename?: 'CcpQueryApi';
|
|
2280
2439
|
entitlement?: Maybe<CcpEntitlement>;
|
|
2440
|
+
offering?: Maybe<CcpOffering>;
|
|
2441
|
+
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
2281
2442
|
};
|
|
2282
2443
|
export type CcpQueryApiEntitlementArgs = {
|
|
2283
2444
|
id: Scalars['ID'];
|
|
2284
2445
|
};
|
|
2446
|
+
export type CcpQueryApiOfferingArgs = {
|
|
2447
|
+
key: Scalars['ID'];
|
|
2448
|
+
};
|
|
2449
|
+
export type CcpQueryApiPricingPlanArgs = {
|
|
2450
|
+
id: Scalars['ID'];
|
|
2451
|
+
};
|
|
2452
|
+
export declare enum CcpRelationshipPricingType {
|
|
2453
|
+
AdvantagePricing = "ADVANTAGE_PRICING",
|
|
2454
|
+
NextPricing = "NEXT_PRICING",
|
|
2455
|
+
SyntheticGenerated = "SYNTHETIC_GENERATED",
|
|
2456
|
+
CurrencyGenerated = "CURRENCY_GENERATED"
|
|
2457
|
+
}
|
|
2285
2458
|
export type CcpSubscription = {
|
|
2286
2459
|
__typename?: 'CcpSubscription';
|
|
2287
2460
|
id: Scalars['ID'];
|
|
@@ -2297,6 +2470,7 @@ export type CcpSubscription = {
|
|
|
2297
2470
|
subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
|
|
2298
2471
|
status?: Maybe<CcpSubscriptionStatus>;
|
|
2299
2472
|
startTimestamp?: Maybe<Scalars['Float']>;
|
|
2473
|
+
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
2300
2474
|
};
|
|
2301
2475
|
export type CcpSubscriptionSchedule = {
|
|
2302
2476
|
__typename?: 'CcpSubscriptionSchedule';
|
|
@@ -2321,6 +2495,15 @@ export declare enum CcpSubscriptionStatus {
|
|
|
2321
2495
|
Active = "ACTIVE",
|
|
2322
2496
|
Cancelled = "CANCELLED"
|
|
2323
2497
|
}
|
|
2498
|
+
export declare enum CcpSupportedBillingSystems {
|
|
2499
|
+
Hams = "HAMS",
|
|
2500
|
+
Ccp = "CCP",
|
|
2501
|
+
Opsgenie = "OPSGENIE"
|
|
2502
|
+
}
|
|
2503
|
+
export declare enum CcpTiersMode {
|
|
2504
|
+
Graduated = "GRADUATED",
|
|
2505
|
+
Volume = "VOLUME"
|
|
2506
|
+
}
|
|
2324
2507
|
export type CcpTransactionAccount = Node & {
|
|
2325
2508
|
__typename?: 'CcpTransactionAccount';
|
|
2326
2509
|
id: Scalars['ID'];
|
|
@@ -2333,6 +2516,11 @@ export type CcpTrial = {
|
|
|
2333
2516
|
pricingPlanId?: Maybe<Scalars['ID']>;
|
|
2334
2517
|
offeringId?: Maybe<Scalars['ID']>;
|
|
2335
2518
|
};
|
|
2519
|
+
export type CcpUsageUpdateCadence = {
|
|
2520
|
+
__typename?: 'CcpUsageUpdateCadence';
|
|
2521
|
+
name?: Maybe<Scalars['String']>;
|
|
2522
|
+
cadenceIntervalMinutes?: Maybe<Scalars['Int']>;
|
|
2523
|
+
};
|
|
2336
2524
|
export type CheckConsentPermissionByOAuthClientIdInput = {
|
|
2337
2525
|
cloudId: Scalars['ID'];
|
|
2338
2526
|
userId: Scalars['ID'];
|
|
@@ -2594,6 +2782,7 @@ export type CompassCatalogMutationApi = {
|
|
|
2594
2782
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
2595
2783
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
2596
2784
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
2785
|
+
updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
|
|
2597
2786
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
2598
2787
|
deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
|
|
2599
2788
|
createWebhook?: Maybe<CompassCreateWebhookPayload>;
|
|
@@ -2765,6 +2954,9 @@ export type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
|
2765
2954
|
export type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
|
|
2766
2955
|
input: CreateCompassComponentFromTemplateInput;
|
|
2767
2956
|
};
|
|
2957
|
+
export type CompassCatalogMutationApiUpdateUserDefinedParametersArgs = {
|
|
2958
|
+
input: UpdateCompassUserDefinedParametersInput;
|
|
2959
|
+
};
|
|
2768
2960
|
export type CompassCatalogMutationApiCreateStarredComponentArgs = {
|
|
2769
2961
|
input: CreateCompassStarredComponentInput;
|
|
2770
2962
|
};
|
|
@@ -3348,7 +3540,7 @@ export type CompassCustomMultiSelectFieldDefinition = CompassCustomFieldDefiniti
|
|
|
3348
3540
|
};
|
|
3349
3541
|
export type CompassCustomMultiSelectFieldInput = {
|
|
3350
3542
|
definitionId: Scalars['ID'];
|
|
3351
|
-
options
|
|
3543
|
+
options?: Maybe<Array<Scalars['ID']>>;
|
|
3352
3544
|
};
|
|
3353
3545
|
export type CompassCustomNumberField = CompassCustomField & {
|
|
3354
3546
|
__typename?: 'CompassCustomNumberField';
|
|
@@ -3388,7 +3580,7 @@ export type CompassCustomSingleSelectFieldDefinition = CompassCustomFieldDefinit
|
|
|
3388
3580
|
};
|
|
3389
3581
|
export type CompassCustomSingleSelectFieldInput = {
|
|
3390
3582
|
definitionId: Scalars['ID'];
|
|
3391
|
-
option
|
|
3583
|
+
option?: Maybe<Scalars['ID']>;
|
|
3392
3584
|
};
|
|
3393
3585
|
export type CompassCustomTextField = CompassCustomField & {
|
|
3394
3586
|
__typename?: 'CompassCustomTextField';
|
|
@@ -3681,6 +3873,14 @@ export type CompassFlagEventProperties = {
|
|
|
3681
3873
|
id: Scalars['ID'];
|
|
3682
3874
|
status?: Maybe<Scalars['String']>;
|
|
3683
3875
|
};
|
|
3876
|
+
export type CompassFreeformUserDefinedParameter = CompassUserDefinedParameter & {
|
|
3877
|
+
__typename?: 'CompassFreeformUserDefinedParameter';
|
|
3878
|
+
id: Scalars['ID'];
|
|
3879
|
+
name: Scalars['String'];
|
|
3880
|
+
type: Scalars['String'];
|
|
3881
|
+
description?: Maybe<Scalars['String']>;
|
|
3882
|
+
defaultValue?: Maybe<Scalars['String']>;
|
|
3883
|
+
};
|
|
3684
3884
|
export type CompassHasCustomBooleanFieldScorecardCriteria = CompassScorecardCriteria & CompassCustomFieldScorecardCriteria & {
|
|
3685
3885
|
__typename?: 'CompassHasCustomBooleanFieldScorecardCriteria';
|
|
3686
3886
|
id: Scalars['ID'];
|
|
@@ -4506,6 +4706,17 @@ export type CompassUpdateTeamCheckinPayload = Payload & {
|
|
|
4506
4706
|
export type CompassUpdateTeamCheckinResponseRichText = {
|
|
4507
4707
|
adf?: Maybe<Scalars['String']>;
|
|
4508
4708
|
};
|
|
4709
|
+
export type CompassUserDefinedParameter = {
|
|
4710
|
+
id: Scalars['ID'];
|
|
4711
|
+
name: Scalars['String'];
|
|
4712
|
+
type: Scalars['String'];
|
|
4713
|
+
description?: Maybe<Scalars['String']>;
|
|
4714
|
+
};
|
|
4715
|
+
export type CompassUserDefinedParameters = {
|
|
4716
|
+
__typename?: 'CompassUserDefinedParameters';
|
|
4717
|
+
componentId: Scalars['ID'];
|
|
4718
|
+
parameters?: Maybe<Array<CompassUserDefinedParameter>>;
|
|
4719
|
+
};
|
|
4509
4720
|
export type CompassViewerSubscription = {
|
|
4510
4721
|
__typename?: 'CompassViewerSubscription';
|
|
4511
4722
|
subscribed: Scalars['Boolean'];
|
|
@@ -6055,6 +6266,11 @@ export type CreateCompassFieldInput = {
|
|
|
6055
6266
|
definition: Scalars['ID'];
|
|
6056
6267
|
value: CompassFieldValueInput;
|
|
6057
6268
|
};
|
|
6269
|
+
export type CreateCompassFreeformUserDefinedParameterInput = {
|
|
6270
|
+
name: Scalars['String'];
|
|
6271
|
+
description?: Maybe<Scalars['String']>;
|
|
6272
|
+
defaultValue?: Maybe<Scalars['String']>;
|
|
6273
|
+
};
|
|
6058
6274
|
export type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
6059
6275
|
weight: Scalars['Int'];
|
|
6060
6276
|
};
|
|
@@ -6136,6 +6352,9 @@ export type CreateCompassStarredComponentPayload = Payload & {
|
|
|
6136
6352
|
success: Scalars['Boolean'];
|
|
6137
6353
|
errors?: Maybe<Array<MutationError>>;
|
|
6138
6354
|
};
|
|
6355
|
+
export type CreateCompassUserDefinedParameterInput = {
|
|
6356
|
+
freeformField?: Maybe<CreateCompassFreeformUserDefinedParameterInput>;
|
|
6357
|
+
};
|
|
6139
6358
|
export type CreateCustomFilterInput = {
|
|
6140
6359
|
boardId: Scalars['ID'];
|
|
6141
6360
|
name: Scalars['String'];
|
|
@@ -8721,6 +8940,69 @@ export type ExternalAuthProvider = {
|
|
|
8721
8940
|
displayName: Scalars['String'];
|
|
8722
8941
|
url: Scalars['URL'];
|
|
8723
8942
|
};
|
|
8943
|
+
export type FeatureRelease = {
|
|
8944
|
+
__typename?: 'FeatureRelease';
|
|
8945
|
+
latestTransition: FeatureReleaseFeatureFlagTransition;
|
|
8946
|
+
transitionsByCloudId: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8947
|
+
transitionsByFeatureFlagId: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8948
|
+
transitionsByMonth: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8949
|
+
};
|
|
8950
|
+
export type FeatureReleaseLatestTransitionArgs = {
|
|
8951
|
+
cloudId: Scalars['ID'];
|
|
8952
|
+
featureFlagId: Scalars['ID'];
|
|
8953
|
+
};
|
|
8954
|
+
export type FeatureReleaseTransitionsByCloudIdArgs = {
|
|
8955
|
+
after?: Maybe<Scalars['String']>;
|
|
8956
|
+
cloudId: Scalars['ID'];
|
|
8957
|
+
filter?: Maybe<FeatureReleaseFeatureFlagFilter>;
|
|
8958
|
+
first?: Maybe<Scalars['Int']>;
|
|
8959
|
+
timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
|
|
8960
|
+
};
|
|
8961
|
+
export type FeatureReleaseTransitionsByFeatureFlagIdArgs = {
|
|
8962
|
+
after?: Maybe<Scalars['String']>;
|
|
8963
|
+
featureFlagId: Scalars['ID'];
|
|
8964
|
+
filter?: Maybe<FeatureReleaseCloudIdFilter>;
|
|
8965
|
+
first?: Maybe<Scalars['Int']>;
|
|
8966
|
+
timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
|
|
8967
|
+
};
|
|
8968
|
+
export type FeatureReleaseTransitionsByMonthArgs = {
|
|
8969
|
+
after?: Maybe<Scalars['String']>;
|
|
8970
|
+
cloudIdFilter?: Maybe<FeatureReleaseCloudIdFilter>;
|
|
8971
|
+
featureFlagFilter?: Maybe<FeatureReleaseFeatureFlagFilter>;
|
|
8972
|
+
first?: Maybe<Scalars['Int']>;
|
|
8973
|
+
month: Scalars['String'];
|
|
8974
|
+
timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
|
|
8975
|
+
};
|
|
8976
|
+
export type FeatureReleaseCloudIdFilter = {
|
|
8977
|
+
cloudIds: Array<Maybe<Scalars['String']>>;
|
|
8978
|
+
};
|
|
8979
|
+
export type FeatureReleaseFeatureFlagFilter = {
|
|
8980
|
+
featureFlagIds: Array<Maybe<Scalars['String']>>;
|
|
8981
|
+
};
|
|
8982
|
+
export type FeatureReleaseFeatureFlagTransition = {
|
|
8983
|
+
__typename?: 'FeatureReleaseFeatureFlagTransition';
|
|
8984
|
+
evaluationResult: Scalars['String'];
|
|
8985
|
+
featureFlagKey: Scalars['String'];
|
|
8986
|
+
month: Scalars['String'];
|
|
8987
|
+
reason: Scalars['String'];
|
|
8988
|
+
tenantId: Scalars['String'];
|
|
8989
|
+
tenantType: Scalars['String'];
|
|
8990
|
+
timestamp: Scalars['Int'];
|
|
8991
|
+
};
|
|
8992
|
+
export type FeatureReleaseFeatureFlagTransitionConnection = {
|
|
8993
|
+
__typename?: 'FeatureReleaseFeatureFlagTransitionConnection';
|
|
8994
|
+
edges: Array<Maybe<FeatureReleaseFeatureFlagTransitionEdge>>;
|
|
8995
|
+
pageInfo: PageInfo;
|
|
8996
|
+
};
|
|
8997
|
+
export type FeatureReleaseFeatureFlagTransitionEdge = {
|
|
8998
|
+
__typename?: 'FeatureReleaseFeatureFlagTransitionEdge';
|
|
8999
|
+
cursor: Scalars['String'];
|
|
9000
|
+
node?: Maybe<FeatureReleaseFeatureFlagTransition>;
|
|
9001
|
+
};
|
|
9002
|
+
export type FeatureReleaseTimeRangeInput = {
|
|
9003
|
+
endEpoch?: Maybe<Scalars['Int']>;
|
|
9004
|
+
startEpoch?: Maybe<Scalars['Int']>;
|
|
9005
|
+
};
|
|
8724
9006
|
export type FilterQuery = {
|
|
8725
9007
|
__typename?: 'FilterQuery';
|
|
8726
9008
|
sanitisedJql: Scalars['String'];
|
|
@@ -9311,6 +9593,9 @@ export type Graph = {
|
|
|
9311
9593
|
parentDocumentHasChildDocumentRelationship?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
|
|
9312
9594
|
parentDocumentHasChildDocumentRelationshipInverse?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
|
|
9313
9595
|
projectAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
9596
|
+
projectAssociatedPrInverse?: Maybe<GraphJiraProjectConnection>;
|
|
9597
|
+
projectAssociatedPrRelationship?: Maybe<GraphProjectAssociatedPrRelationshipConnection>;
|
|
9598
|
+
projectAssociatedPrRelationshipInverse?: Maybe<GraphProjectAssociatedPrRelationshipConnection>;
|
|
9314
9599
|
projectAssociatedDeployment?: Maybe<GraphJiraDeploymentConnection>;
|
|
9315
9600
|
issueAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
9316
9601
|
issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
|
|
@@ -9343,9 +9628,28 @@ export type GraphParentDocumentHasChildDocumentRelationshipInverseArgs = {
|
|
|
9343
9628
|
};
|
|
9344
9629
|
export type GraphProjectAssociatedPrArgs = {
|
|
9345
9630
|
after?: Maybe<Scalars['String']>;
|
|
9631
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9632
|
+
first?: Maybe<Scalars['Int']>;
|
|
9633
|
+
from: Scalars['ID'];
|
|
9634
|
+
};
|
|
9635
|
+
export type GraphProjectAssociatedPrInverseArgs = {
|
|
9636
|
+
after?: Maybe<Scalars['String']>;
|
|
9637
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9638
|
+
first?: Maybe<Scalars['Int']>;
|
|
9639
|
+
to: Scalars['ID'];
|
|
9640
|
+
};
|
|
9641
|
+
export type GraphProjectAssociatedPrRelationshipArgs = {
|
|
9642
|
+
after?: Maybe<Scalars['String']>;
|
|
9643
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9346
9644
|
first?: Maybe<Scalars['Int']>;
|
|
9347
9645
|
from: Scalars['ID'];
|
|
9348
9646
|
};
|
|
9647
|
+
export type GraphProjectAssociatedPrRelationshipInverseArgs = {
|
|
9648
|
+
after?: Maybe<Scalars['String']>;
|
|
9649
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9650
|
+
first?: Maybe<Scalars['Int']>;
|
|
9651
|
+
to: Scalars['ID'];
|
|
9652
|
+
};
|
|
9349
9653
|
export type GraphProjectAssociatedDeploymentArgs = {
|
|
9350
9654
|
after?: Maybe<Scalars['String']>;
|
|
9351
9655
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9412,6 +9716,43 @@ export type GraphCreateIssueAssociatedPrInput = {
|
|
|
9412
9716
|
to: Scalars['ID'];
|
|
9413
9717
|
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
9414
9718
|
};
|
|
9719
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutput = {
|
|
9720
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutput';
|
|
9721
|
+
author?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthor>;
|
|
9722
|
+
reviewers?: Maybe<Array<Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewer>>>;
|
|
9723
|
+
status?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputPullRequestStatusEnum>;
|
|
9724
|
+
taskCount?: Maybe<Scalars['Int']>;
|
|
9725
|
+
};
|
|
9726
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthor = {
|
|
9727
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthor';
|
|
9728
|
+
authorAri?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthorAri>;
|
|
9729
|
+
};
|
|
9730
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthorAri = {
|
|
9731
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthorAri';
|
|
9732
|
+
value?: Maybe<Scalars['String']>;
|
|
9733
|
+
};
|
|
9734
|
+
export declare enum GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputPullRequestStatusEnum {
|
|
9735
|
+
Declined = "DECLINED",
|
|
9736
|
+
Merged = "MERGED",
|
|
9737
|
+
NotSet = "NOT_SET",
|
|
9738
|
+
Open = "OPEN",
|
|
9739
|
+
Unknown = "UNKNOWN"
|
|
9740
|
+
}
|
|
9741
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewer = {
|
|
9742
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewer';
|
|
9743
|
+
approvalStatus?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerReviewerStatusEnum>;
|
|
9744
|
+
reviewerAri?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerAri>;
|
|
9745
|
+
};
|
|
9746
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerAri = {
|
|
9747
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerAri';
|
|
9748
|
+
value?: Maybe<Scalars['String']>;
|
|
9749
|
+
};
|
|
9750
|
+
export declare enum GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerReviewerStatusEnum {
|
|
9751
|
+
Approved = "APPROVED",
|
|
9752
|
+
Needswork = "NEEDSWORK",
|
|
9753
|
+
NotSet = "NOT_SET",
|
|
9754
|
+
Unapproved = "UNAPPROVED"
|
|
9755
|
+
}
|
|
9415
9756
|
export type GraphCreateParentDocumentHasChildDocumentInput = {
|
|
9416
9757
|
from: Scalars['ID'];
|
|
9417
9758
|
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
@@ -9490,6 +9831,20 @@ export type GraphJiraIssueEdge = {
|
|
|
9490
9831
|
cursor?: Maybe<Scalars['String']>;
|
|
9491
9832
|
node: GraphJiraIssue;
|
|
9492
9833
|
};
|
|
9834
|
+
export type GraphJiraProject = Node & {
|
|
9835
|
+
__typename?: 'GraphJiraProject';
|
|
9836
|
+
id: Scalars['ID'];
|
|
9837
|
+
};
|
|
9838
|
+
export type GraphJiraProjectConnection = {
|
|
9839
|
+
__typename?: 'GraphJiraProjectConnection';
|
|
9840
|
+
edges: Array<Maybe<GraphJiraProjectEdge>>;
|
|
9841
|
+
pageInfo: PageInfo;
|
|
9842
|
+
};
|
|
9843
|
+
export type GraphJiraProjectEdge = {
|
|
9844
|
+
__typename?: 'GraphJiraProjectEdge';
|
|
9845
|
+
cursor?: Maybe<Scalars['String']>;
|
|
9846
|
+
node: GraphJiraProject;
|
|
9847
|
+
};
|
|
9493
9848
|
export type GraphJiraPullRequest = Node & {
|
|
9494
9849
|
__typename?: 'GraphJiraPullRequest';
|
|
9495
9850
|
id: Scalars['ID'];
|
|
@@ -9553,6 +9908,178 @@ export type GraphParentDocumentHasChildDocumentRelationshipEdge = {
|
|
|
9553
9908
|
cursor?: Maybe<Scalars['String']>;
|
|
9554
9909
|
node: GraphParentDocumentHasChildDocumentRelationship;
|
|
9555
9910
|
};
|
|
9911
|
+
export type GraphProjectAssociatedPrRelationship = Node & {
|
|
9912
|
+
__typename?: 'GraphProjectAssociatedPrRelationship';
|
|
9913
|
+
from: GraphJiraProject;
|
|
9914
|
+
id: Scalars['ID'];
|
|
9915
|
+
lastUpdated: Scalars['DateTime'];
|
|
9916
|
+
to: GraphJiraPullRequest;
|
|
9917
|
+
toMetadata?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutput>;
|
|
9918
|
+
};
|
|
9919
|
+
export type GraphProjectAssociatedPrRelationshipConnection = {
|
|
9920
|
+
__typename?: 'GraphProjectAssociatedPrRelationshipConnection';
|
|
9921
|
+
edges: Array<Maybe<GraphProjectAssociatedPrRelationshipEdge>>;
|
|
9922
|
+
pageInfo: PageInfo;
|
|
9923
|
+
};
|
|
9924
|
+
export type GraphProjectAssociatedPrRelationshipEdge = {
|
|
9925
|
+
__typename?: 'GraphProjectAssociatedPrRelationshipEdge';
|
|
9926
|
+
cursor?: Maybe<Scalars['String']>;
|
|
9927
|
+
node: GraphProjectAssociatedPrRelationship;
|
|
9928
|
+
};
|
|
9929
|
+
export type GraphQueryMetadataProjectAssociatedPrInput = {
|
|
9930
|
+
and?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputAnd>>;
|
|
9931
|
+
or?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputOr>>;
|
|
9932
|
+
};
|
|
9933
|
+
export type GraphQueryMetadataProjectAssociatedPrInputAnd = {
|
|
9934
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
9935
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
9936
|
+
or?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputOrInner>>;
|
|
9937
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
9938
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
9939
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
9940
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
9941
|
+
};
|
|
9942
|
+
export type GraphQueryMetadataProjectAssociatedPrInputAndInner = {
|
|
9943
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
9944
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
9945
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
9946
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
9947
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
9948
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
9949
|
+
};
|
|
9950
|
+
export type GraphQueryMetadataProjectAssociatedPrInputCreatedAt = {
|
|
9951
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAtRangeField>;
|
|
9952
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAtMetadataSortField>;
|
|
9953
|
+
};
|
|
9954
|
+
export type GraphQueryMetadataProjectAssociatedPrInputCreatedAtMetadataSortField = {
|
|
9955
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
9956
|
+
priority?: Maybe<Scalars['Int']>;
|
|
9957
|
+
};
|
|
9958
|
+
export type GraphQueryMetadataProjectAssociatedPrInputCreatedAtRangeField = {
|
|
9959
|
+
gt?: Maybe<Scalars['DateTime']>;
|
|
9960
|
+
gte?: Maybe<Scalars['DateTime']>;
|
|
9961
|
+
lt?: Maybe<Scalars['DateTime']>;
|
|
9962
|
+
lte?: Maybe<Scalars['DateTime']>;
|
|
9963
|
+
};
|
|
9964
|
+
export type GraphQueryMetadataProjectAssociatedPrInputLastUpdated = {
|
|
9965
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdatedRangeField>;
|
|
9966
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdatedMetadataSortField>;
|
|
9967
|
+
};
|
|
9968
|
+
export type GraphQueryMetadataProjectAssociatedPrInputLastUpdatedMetadataSortField = {
|
|
9969
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
9970
|
+
priority?: Maybe<Scalars['Int']>;
|
|
9971
|
+
};
|
|
9972
|
+
export type GraphQueryMetadataProjectAssociatedPrInputLastUpdatedRangeField = {
|
|
9973
|
+
gt?: Maybe<Scalars['DateTime']>;
|
|
9974
|
+
gte?: Maybe<Scalars['DateTime']>;
|
|
9975
|
+
lt?: Maybe<Scalars['DateTime']>;
|
|
9976
|
+
lte?: Maybe<Scalars['DateTime']>;
|
|
9977
|
+
};
|
|
9978
|
+
export type GraphQueryMetadataProjectAssociatedPrInputOr = {
|
|
9979
|
+
and?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputAndInner>>;
|
|
9980
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
9981
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
9982
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
9983
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
9984
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
9985
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
9986
|
+
};
|
|
9987
|
+
export type GraphQueryMetadataProjectAssociatedPrInputOrInner = {
|
|
9988
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
9989
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
9990
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
9991
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
9992
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
9993
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
9994
|
+
};
|
|
9995
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthor = {
|
|
9996
|
+
authorAri?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthorAri>;
|
|
9997
|
+
};
|
|
9998
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthorAri = {
|
|
9999
|
+
value?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValue>;
|
|
10000
|
+
};
|
|
10001
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValue = {
|
|
10002
|
+
notValues?: Maybe<Array<Scalars['String']>>;
|
|
10003
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValueMetadataSortField>;
|
|
10004
|
+
values?: Maybe<Array<Scalars['String']>>;
|
|
10005
|
+
};
|
|
10006
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValueMetadataSortField = {
|
|
10007
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10008
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10009
|
+
};
|
|
10010
|
+
export declare enum GraphQueryMetadataProjectAssociatedPrInputToPullRequestStatusEnum {
|
|
10011
|
+
Declined = "DECLINED",
|
|
10012
|
+
Merged = "MERGED",
|
|
10013
|
+
NotSet = "NOT_SET",
|
|
10014
|
+
Open = "OPEN",
|
|
10015
|
+
Unknown = "UNKNOWN"
|
|
10016
|
+
}
|
|
10017
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewer = {
|
|
10018
|
+
approvalStatus?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatus>;
|
|
10019
|
+
matchType?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewermatchTypeEnum>;
|
|
10020
|
+
reviewerAri?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerAri>;
|
|
10021
|
+
};
|
|
10022
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatus = {
|
|
10023
|
+
notValues?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToReviewerReviewerStatusEnum>>;
|
|
10024
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatusMetadataSortField>;
|
|
10025
|
+
values?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToReviewerReviewerStatusEnum>>;
|
|
10026
|
+
};
|
|
10027
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatusMetadataSortField = {
|
|
10028
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10029
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10030
|
+
};
|
|
10031
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerAri = {
|
|
10032
|
+
value?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValue>;
|
|
10033
|
+
};
|
|
10034
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValue = {
|
|
10035
|
+
notValues?: Maybe<Array<Scalars['String']>>;
|
|
10036
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValueMetadataSortField>;
|
|
10037
|
+
values?: Maybe<Array<Scalars['String']>>;
|
|
10038
|
+
};
|
|
10039
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValueMetadataSortField = {
|
|
10040
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10041
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10042
|
+
};
|
|
10043
|
+
export declare enum GraphQueryMetadataProjectAssociatedPrInputToReviewerReviewerStatusEnum {
|
|
10044
|
+
Approved = "APPROVED",
|
|
10045
|
+
Needswork = "NEEDSWORK",
|
|
10046
|
+
NotSet = "NOT_SET",
|
|
10047
|
+
Unapproved = "UNAPPROVED"
|
|
10048
|
+
}
|
|
10049
|
+
export declare enum GraphQueryMetadataProjectAssociatedPrInputToReviewermatchTypeEnum {
|
|
10050
|
+
All = "ALL",
|
|
10051
|
+
Any = "ANY",
|
|
10052
|
+
None = "NONE"
|
|
10053
|
+
}
|
|
10054
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToStatus = {
|
|
10055
|
+
notValues?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToPullRequestStatusEnum>>;
|
|
10056
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatusMetadataSortField>;
|
|
10057
|
+
values?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToPullRequestStatusEnum>>;
|
|
10058
|
+
};
|
|
10059
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToStatusMetadataSortField = {
|
|
10060
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10061
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10062
|
+
};
|
|
10063
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToTaskCount = {
|
|
10064
|
+
notValues?: Maybe<Array<Scalars['Int']>>;
|
|
10065
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCountRangeField>;
|
|
10066
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCountMetadataSortField>;
|
|
10067
|
+
values?: Maybe<Array<Scalars['Int']>>;
|
|
10068
|
+
};
|
|
10069
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToTaskCountMetadataSortField = {
|
|
10070
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10071
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10072
|
+
};
|
|
10073
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToTaskCountRangeField = {
|
|
10074
|
+
gt?: Maybe<Scalars['Int']>;
|
|
10075
|
+
gte?: Maybe<Scalars['Int']>;
|
|
10076
|
+
lt?: Maybe<Scalars['Int']>;
|
|
10077
|
+
lte?: Maybe<Scalars['Int']>;
|
|
10078
|
+
};
|
|
10079
|
+
export declare enum GraphQueryMetadataSortEnum {
|
|
10080
|
+
Asc = "ASC",
|
|
10081
|
+
Desc = "DESC"
|
|
10082
|
+
}
|
|
9556
10083
|
export type GraphSprintRetrospectivePagePayload = Payload & {
|
|
9557
10084
|
__typename?: 'GraphSprintRetrospectivePagePayload';
|
|
9558
10085
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -9800,7 +10327,7 @@ export type HelpLayoutCompositeElement = {
|
|
|
9800
10327
|
id: Scalars['ID'];
|
|
9801
10328
|
visualConfig?: Maybe<Scalars['String']>;
|
|
9802
10329
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
9803
|
-
|
|
10330
|
+
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
9804
10331
|
};
|
|
9805
10332
|
export declare enum HelpLayoutCompositeElementKey {
|
|
9806
10333
|
LinkCard = "LINK_CARD"
|
|
@@ -9885,6 +10412,10 @@ export type HelpLayoutImageAtomicElementConfig = {
|
|
|
9885
10412
|
__typename?: 'HelpLayoutImageAtomicElementConfig';
|
|
9886
10413
|
altText?: Maybe<Scalars['String']>;
|
|
9887
10414
|
fileId?: Maybe<Scalars['String']>;
|
|
10415
|
+
size?: Maybe<Scalars['String']>;
|
|
10416
|
+
fit?: Maybe<Scalars['String']>;
|
|
10417
|
+
position?: Maybe<Scalars['String']>;
|
|
10418
|
+
scale?: Maybe<Scalars['Int']>;
|
|
9888
10419
|
};
|
|
9889
10420
|
export type HelpLayoutImageAtomicElementData = {
|
|
9890
10421
|
__typename?: 'HelpLayoutImageAtomicElementData';
|
|
@@ -9893,7 +10424,11 @@ export type HelpLayoutImageAtomicElementData = {
|
|
|
9893
10424
|
export type HelpLayoutImageConfigInput = {
|
|
9894
10425
|
fileId?: Maybe<Scalars['String']>;
|
|
9895
10426
|
url?: Maybe<Scalars['String']>;
|
|
9896
|
-
altText
|
|
10427
|
+
altText?: Maybe<Scalars['String']>;
|
|
10428
|
+
size?: Maybe<Scalars['String']>;
|
|
10429
|
+
fit?: Maybe<Scalars['String']>;
|
|
10430
|
+
position?: Maybe<Scalars['String']>;
|
|
10431
|
+
scale?: Maybe<Scalars['Int']>;
|
|
9897
10432
|
visualConfig: Scalars['String'];
|
|
9898
10433
|
};
|
|
9899
10434
|
export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLayoutCompositeElement & Node & {
|
|
@@ -9902,7 +10437,7 @@ export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLa
|
|
|
9902
10437
|
visualConfig?: Maybe<Scalars['String']>;
|
|
9903
10438
|
config?: Maybe<Scalars['String']>;
|
|
9904
10439
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
9905
|
-
|
|
10440
|
+
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
9906
10441
|
};
|
|
9907
10442
|
export type HelpLayoutLinkCardInput = {
|
|
9908
10443
|
children: Array<HelpLayoutAtomicElementInput>;
|
|
@@ -10155,6 +10690,179 @@ export type InCompleteCardsDestination = {
|
|
|
10155
10690
|
sprintName?: Maybe<Scalars['String']>;
|
|
10156
10691
|
destination?: Maybe<SoftwareCardsDestinationEnum>;
|
|
10157
10692
|
};
|
|
10693
|
+
export type InfluentsNotificationAction = {
|
|
10694
|
+
__typename?: 'InfluentsNotificationAction';
|
|
10695
|
+
title: Scalars['String'];
|
|
10696
|
+
url?: Maybe<Scalars['String']>;
|
|
10697
|
+
appearance: InfluentsNotificationAppearance;
|
|
10698
|
+
};
|
|
10699
|
+
export type InfluentsNotificationActor = {
|
|
10700
|
+
__typename?: 'InfluentsNotificationActor';
|
|
10701
|
+
displayName?: Maybe<Scalars['String']>;
|
|
10702
|
+
ari?: Maybe<Scalars['String']>;
|
|
10703
|
+
avatarURL?: Maybe<Scalars['String']>;
|
|
10704
|
+
};
|
|
10705
|
+
export type InfluentsNotificationAnalyticsAttribute = {
|
|
10706
|
+
__typename?: 'InfluentsNotificationAnalyticsAttribute';
|
|
10707
|
+
key?: Maybe<Scalars['String']>;
|
|
10708
|
+
value?: Maybe<Scalars['String']>;
|
|
10709
|
+
};
|
|
10710
|
+
export declare enum InfluentsNotificationAppearance {
|
|
10711
|
+
Default = "DEFAULT",
|
|
10712
|
+
Primary = "PRIMARY",
|
|
10713
|
+
Link = "LINK",
|
|
10714
|
+
Subtle = "SUBTLE",
|
|
10715
|
+
Warning = "WARNING",
|
|
10716
|
+
Danger = "DANGER"
|
|
10717
|
+
}
|
|
10718
|
+
export type InfluentsNotificationBodyItem = {
|
|
10719
|
+
__typename?: 'InfluentsNotificationBodyItem';
|
|
10720
|
+
type?: Maybe<Scalars['String']>;
|
|
10721
|
+
appearance?: Maybe<Scalars['String']>;
|
|
10722
|
+
document?: Maybe<InfluentsNotificationDocument>;
|
|
10723
|
+
author?: Maybe<InfluentsNotificationActor>;
|
|
10724
|
+
};
|
|
10725
|
+
export declare enum InfluentsNotificationCategory {
|
|
10726
|
+
Direct = "direct",
|
|
10727
|
+
Watching = "watching"
|
|
10728
|
+
}
|
|
10729
|
+
export type InfluentsNotificationContent = {
|
|
10730
|
+
__typename?: 'InfluentsNotificationContent';
|
|
10731
|
+
type: Scalars['String'];
|
|
10732
|
+
message: Scalars['String'];
|
|
10733
|
+
url?: Maybe<Scalars['String']>;
|
|
10734
|
+
actor: InfluentsNotificationActor;
|
|
10735
|
+
entity?: Maybe<InfluentsNotificationEntity>;
|
|
10736
|
+
path?: Maybe<Array<InfluentsNotificationPath>>;
|
|
10737
|
+
actions?: Maybe<Array<InfluentsNotificationAction>>;
|
|
10738
|
+
bodyItems?: Maybe<Array<InfluentsNotificationBodyItem>>;
|
|
10739
|
+
templateVariables?: Maybe<Array<InfluentsNotificationTemplateVariable>>;
|
|
10740
|
+
};
|
|
10741
|
+
export type InfluentsNotificationDocument = {
|
|
10742
|
+
__typename?: 'InfluentsNotificationDocument';
|
|
10743
|
+
format?: Maybe<Scalars['String']>;
|
|
10744
|
+
data?: Maybe<Scalars['String']>;
|
|
10745
|
+
};
|
|
10746
|
+
export type InfluentsNotificationEntity = {
|
|
10747
|
+
__typename?: 'InfluentsNotificationEntity';
|
|
10748
|
+
title?: Maybe<Scalars['String']>;
|
|
10749
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
10750
|
+
url?: Maybe<Scalars['String']>;
|
|
10751
|
+
};
|
|
10752
|
+
export type InfluentsNotificationFeedFilter = {
|
|
10753
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10754
|
+
categoryFilter?: Maybe<InfluentsNotificationCategory>;
|
|
10755
|
+
readStateFilter?: Maybe<InfluentsNotificationReadState>;
|
|
10756
|
+
productFilter?: Maybe<Scalars['String']>;
|
|
10757
|
+
groupId?: Maybe<Scalars['String']>;
|
|
10758
|
+
};
|
|
10759
|
+
export type InfluentsNotificationGroupedConnection = {
|
|
10760
|
+
__typename?: 'InfluentsNotificationGroupedConnection';
|
|
10761
|
+
nodes: Array<InfluentsNotificationGroupedItem>;
|
|
10762
|
+
pageInfo: InfluentsNotificationPageInfo;
|
|
10763
|
+
};
|
|
10764
|
+
export type InfluentsNotificationGroupedItem = {
|
|
10765
|
+
__typename?: 'InfluentsNotificationGroupedItem';
|
|
10766
|
+
groupId: Scalars['ID'];
|
|
10767
|
+
groupSize: Scalars['Int'];
|
|
10768
|
+
headNotification: InfluentsNotificationItem;
|
|
10769
|
+
childItems?: Maybe<Array<InfluentsNotificationItem>>;
|
|
10770
|
+
};
|
|
10771
|
+
export type InfluentsNotificationGroupedItemChildItemsArgs = {
|
|
10772
|
+
first?: Maybe<Scalars['Int']>;
|
|
10773
|
+
after?: Maybe<Scalars['String']>;
|
|
10774
|
+
};
|
|
10775
|
+
export type InfluentsNotificationItem = {
|
|
10776
|
+
__typename?: 'InfluentsNotificationItem';
|
|
10777
|
+
notificationId: Scalars['ID'];
|
|
10778
|
+
timestamp: Scalars['DateTime'];
|
|
10779
|
+
content: InfluentsNotificationContent;
|
|
10780
|
+
readState: InfluentsNotificationReadState;
|
|
10781
|
+
category: InfluentsNotificationCategory;
|
|
10782
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10783
|
+
analyticsAttributes?: Maybe<Array<InfluentsNotificationAnalyticsAttribute>>;
|
|
10784
|
+
};
|
|
10785
|
+
export type InfluentsNotificationMutation = {
|
|
10786
|
+
__typename?: 'InfluentsNotificationMutation';
|
|
10787
|
+
markNotificationsAsRead?: Maybe<Scalars['String']>;
|
|
10788
|
+
markNotificationsAsUnread?: Maybe<Scalars['String']>;
|
|
10789
|
+
markNotificationsByGroupIdAsRead?: Maybe<Scalars['String']>;
|
|
10790
|
+
markNotificationsByGroupIdAsUnread?: Maybe<Scalars['String']>;
|
|
10791
|
+
markNotificationsByIdsAsRead?: Maybe<Scalars['String']>;
|
|
10792
|
+
markNotificationsByIdsAsUnread?: Maybe<Scalars['String']>;
|
|
10793
|
+
archiveNotifications?: Maybe<Scalars['String']>;
|
|
10794
|
+
};
|
|
10795
|
+
export type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
10796
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10797
|
+
product?: Maybe<Scalars['String']>;
|
|
10798
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10799
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10800
|
+
beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
|
|
10801
|
+
};
|
|
10802
|
+
export type InfluentsNotificationMutationMarkNotificationsAsUnreadArgs = {
|
|
10803
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10804
|
+
product?: Maybe<Scalars['String']>;
|
|
10805
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10806
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10807
|
+
beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
|
|
10808
|
+
};
|
|
10809
|
+
export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsReadArgs = {
|
|
10810
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10811
|
+
groupId?: Maybe<Scalars['String']>;
|
|
10812
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10813
|
+
};
|
|
10814
|
+
export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsUnreadArgs = {
|
|
10815
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10816
|
+
groupId?: Maybe<Scalars['String']>;
|
|
10817
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10818
|
+
};
|
|
10819
|
+
export type InfluentsNotificationMutationMarkNotificationsByIdsAsReadArgs = {
|
|
10820
|
+
ids: Array<Scalars['String']>;
|
|
10821
|
+
};
|
|
10822
|
+
export type InfluentsNotificationMutationMarkNotificationsByIdsAsUnreadArgs = {
|
|
10823
|
+
ids: Array<Scalars['String']>;
|
|
10824
|
+
};
|
|
10825
|
+
export type InfluentsNotificationMutationArchiveNotificationsArgs = {
|
|
10826
|
+
ids: Array<Scalars['String']>;
|
|
10827
|
+
};
|
|
10828
|
+
export type InfluentsNotificationPageInfo = {
|
|
10829
|
+
__typename?: 'InfluentsNotificationPageInfo';
|
|
10830
|
+
hasNextPage: Scalars['Boolean'];
|
|
10831
|
+
hasPreviousPage: Scalars['Boolean'];
|
|
10832
|
+
startCursor?: Maybe<Scalars['String']>;
|
|
10833
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
10834
|
+
};
|
|
10835
|
+
export type InfluentsNotificationPath = {
|
|
10836
|
+
__typename?: 'InfluentsNotificationPath';
|
|
10837
|
+
title?: Maybe<Scalars['String']>;
|
|
10838
|
+
url?: Maybe<Scalars['String']>;
|
|
10839
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
10840
|
+
};
|
|
10841
|
+
export type InfluentsNotificationQuery = {
|
|
10842
|
+
__typename?: 'InfluentsNotificationQuery';
|
|
10843
|
+
notificationFeed: InfluentsNotificationGroupedConnection;
|
|
10844
|
+
unseenNotificationCount: Scalars['Int'];
|
|
10845
|
+
};
|
|
10846
|
+
export type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
10847
|
+
feedFilter?: Maybe<InfluentsNotificationFeedFilter>;
|
|
10848
|
+
first?: Maybe<Scalars['Int']>;
|
|
10849
|
+
after?: Maybe<Scalars['String']>;
|
|
10850
|
+
};
|
|
10851
|
+
export type InfluentsNotificationQueryUnseenNotificationCountArgs = {
|
|
10852
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10853
|
+
product?: Maybe<Scalars['String']>;
|
|
10854
|
+
};
|
|
10855
|
+
export declare enum InfluentsNotificationReadState {
|
|
10856
|
+
Unread = "unread",
|
|
10857
|
+
Read = "read"
|
|
10858
|
+
}
|
|
10859
|
+
export type InfluentsNotificationTemplateVariable = {
|
|
10860
|
+
__typename?: 'InfluentsNotificationTemplateVariable';
|
|
10861
|
+
name: Scalars['String'];
|
|
10862
|
+
type: Scalars['String'];
|
|
10863
|
+
id: Scalars['ID'];
|
|
10864
|
+
fallback: Scalars['String'];
|
|
10865
|
+
};
|
|
10158
10866
|
export type InlineCardCreateConfig = {
|
|
10159
10867
|
__typename?: 'InlineCardCreateConfig';
|
|
10160
10868
|
enabled: Scalars['Boolean'];
|
|
@@ -10221,6 +10929,7 @@ export type IntervalInput = {
|
|
|
10221
10929
|
export type InvocationMetrics = {
|
|
10222
10930
|
__typename?: 'InvocationMetrics';
|
|
10223
10931
|
appTimeMs?: Maybe<Scalars['Float']>;
|
|
10932
|
+
appExecutionRegion?: Maybe<Scalars['String']>;
|
|
10224
10933
|
};
|
|
10225
10934
|
export type InvocationResponsePayload = {
|
|
10226
10935
|
__typename?: 'InvocationResponsePayload';
|
|
@@ -10510,6 +11219,7 @@ export declare enum IssueDevOpsPullRequestStatus {
|
|
|
10510
11219
|
Open = "OPEN",
|
|
10511
11220
|
Merged = "MERGED",
|
|
10512
11221
|
Declined = "DECLINED",
|
|
11222
|
+
Draft = "DRAFT",
|
|
10513
11223
|
Unknown = "UNKNOWN"
|
|
10514
11224
|
}
|
|
10515
11225
|
export type IssueDevOpsRemoteLink = {
|
|
@@ -12003,17 +12713,6 @@ export type JiraEstimate = {
|
|
|
12003
12713
|
export type JiraEstimateInput = {
|
|
12004
12714
|
timeInSeconds: Scalars['Long'];
|
|
12005
12715
|
};
|
|
12006
|
-
export type JiraFallbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraFieldValueFallback & {
|
|
12007
|
-
__typename?: 'JiraFallbackField';
|
|
12008
|
-
id: Scalars['ID'];
|
|
12009
|
-
fieldId: Scalars['String'];
|
|
12010
|
-
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
12011
|
-
type: Scalars['String'];
|
|
12012
|
-
name: Scalars['String'];
|
|
12013
|
-
description?: Maybe<Scalars['String']>;
|
|
12014
|
-
renderedFieldHtml?: Maybe<Scalars['String']>;
|
|
12015
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
12016
|
-
};
|
|
12017
12716
|
export type JiraFavourite = JiraProject;
|
|
12018
12717
|
export type JiraFavouriteConnection = {
|
|
12019
12718
|
__typename?: 'JiraFavouriteConnection';
|
|
@@ -12046,9 +12745,6 @@ export type JiraFieldNonEditableReason = {
|
|
|
12046
12745
|
__typename?: 'JiraFieldNonEditableReason';
|
|
12047
12746
|
message?: Maybe<Scalars['String']>;
|
|
12048
12747
|
};
|
|
12049
|
-
export type JiraFieldValueFallback = {
|
|
12050
|
-
renderedFieldHtml?: Maybe<Scalars['String']>;
|
|
12051
|
-
};
|
|
12052
12748
|
export type JiraFilter = {
|
|
12053
12749
|
id: Scalars['ID'];
|
|
12054
12750
|
filterId: Scalars['String'];
|
|
@@ -12809,6 +13505,7 @@ export type JiraIssueFieldsInput = {
|
|
|
12809
13505
|
assetsField?: Maybe<JiraAssetFieldInput>;
|
|
12810
13506
|
timeTrackingField?: Maybe<JiraTimeTrackingFieldInput>;
|
|
12811
13507
|
projectFields?: Maybe<Array<JiraProjectFieldInput>>;
|
|
13508
|
+
issueType?: Maybe<JiraIssueTypeInput>;
|
|
12812
13509
|
};
|
|
12813
13510
|
export type JiraIssueHierarchyConfigData = {
|
|
12814
13511
|
__typename?: 'JiraIssueHierarchyConfigData';
|
|
@@ -13340,6 +14037,10 @@ export type JiraIssueTypeHierarchyLevel = {
|
|
|
13340
14037
|
level?: Maybe<Scalars['Int']>;
|
|
13341
14038
|
name?: Maybe<Scalars['String']>;
|
|
13342
14039
|
};
|
|
14040
|
+
export type JiraIssueTypeInput = {
|
|
14041
|
+
id?: Maybe<Scalars['ID']>;
|
|
14042
|
+
issueTypeId: Scalars['ID'];
|
|
14043
|
+
};
|
|
13343
14044
|
export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
13344
14045
|
NewestFirst = "NEWEST_FIRST",
|
|
13345
14046
|
OldestFirst = "OLDEST_FIRST"
|
|
@@ -15045,6 +15746,7 @@ export type JiraProject = Node & {
|
|
|
15045
15746
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
15046
15747
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
15047
15748
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
15749
|
+
totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']>;
|
|
15048
15750
|
linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
|
|
15049
15751
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
15050
15752
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -19357,7 +20059,7 @@ export type MoveSprintUpResponse = MutationResponse & {
|
|
|
19357
20059
|
};
|
|
19358
20060
|
export type Mutation = {
|
|
19359
20061
|
__typename?: 'Mutation';
|
|
19360
|
-
trello
|
|
20062
|
+
trello?: Maybe<TrelloMutationApi>;
|
|
19361
20063
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
19362
20064
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
19363
20065
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
@@ -19401,6 +20103,7 @@ export type Mutation = {
|
|
|
19401
20103
|
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
19402
20104
|
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
19403
20105
|
updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
|
|
20106
|
+
updatePolarisField?: Maybe<UpdatePolarisFieldPayload>;
|
|
19404
20107
|
updatePolarisFieldEmoji?: Maybe<UpdatePolarisFieldEmojiPayload>;
|
|
19405
20108
|
deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
|
|
19406
20109
|
updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
|
|
@@ -19452,6 +20155,7 @@ export type Mutation = {
|
|
|
19452
20155
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
19453
20156
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
19454
20157
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
20158
|
+
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
19455
20159
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
19456
20160
|
shepherd?: Maybe<ShepherdMutation>;
|
|
19457
20161
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
@@ -19651,6 +20355,9 @@ export type MutationUpdatePolarisCalculatedFieldArgs = {
|
|
|
19651
20355
|
export type MutationUpdatePolarisFieldDescriptionArgs = {
|
|
19652
20356
|
input: UpdatePolarisFieldDescriptionInput;
|
|
19653
20357
|
};
|
|
20358
|
+
export type MutationUpdatePolarisFieldArgs = {
|
|
20359
|
+
input: UpdatePolarisFieldInput;
|
|
20360
|
+
};
|
|
19654
20361
|
export type MutationUpdatePolarisFieldEmojiArgs = {
|
|
19655
20362
|
input: UpdatePolarisFieldEmojiInput;
|
|
19656
20363
|
};
|
|
@@ -20105,6 +20812,11 @@ export declare enum NlpDisclaimer {
|
|
|
20105
20812
|
}
|
|
20106
20813
|
export declare enum NlpErrorState {
|
|
20107
20814
|
NoAnswer = "NO_ANSWER",
|
|
20815
|
+
NoAnswerKeywords = "NO_ANSWER_KEYWORDS",
|
|
20816
|
+
NoAnswerSearchResults = "NO_ANSWER_SEARCH_RESULTS",
|
|
20817
|
+
NoAnswerHydration = "NO_ANSWER_HYDRATION",
|
|
20818
|
+
NoAnswerRelevantContent = "NO_ANSWER_RELEVANT_CONTENT",
|
|
20819
|
+
NoAnswerOpenAiResponseErr = "NO_ANSWER_OPEN_AI_RESPONSE_ERR",
|
|
20108
20820
|
SubjectiveQuery = "SUBJECTIVE_QUERY",
|
|
20109
20821
|
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS"
|
|
20110
20822
|
}
|
|
@@ -20112,12 +20824,18 @@ export type NlpFollowUpResponse = {
|
|
|
20112
20824
|
__typename?: 'NlpFollowUpResponse';
|
|
20113
20825
|
followUps?: Maybe<Array<Scalars['String']>>;
|
|
20114
20826
|
};
|
|
20827
|
+
export type NlpFollowUpResult = {
|
|
20828
|
+
__typename?: 'NlpFollowUpResult';
|
|
20829
|
+
followUp?: Maybe<Scalars['String']>;
|
|
20830
|
+
followUpAnswers?: Maybe<Array<NlpSearchResult>>;
|
|
20831
|
+
};
|
|
20115
20832
|
export type NlpSearchResponse = {
|
|
20116
20833
|
__typename?: 'NlpSearchResponse';
|
|
20117
20834
|
nlpResults?: Maybe<Array<NlpSearchResult>>;
|
|
20118
20835
|
uniqueSources?: Maybe<Array<NlpSource>>;
|
|
20119
20836
|
errorState?: Maybe<NlpErrorState>;
|
|
20120
20837
|
disclaimer?: Maybe<NlpDisclaimer>;
|
|
20838
|
+
nlpFollowResults?: Maybe<Array<NlpFollowUpResult>>;
|
|
20121
20839
|
};
|
|
20122
20840
|
export type NlpSearchResult = {
|
|
20123
20841
|
__typename?: 'NlpSearchResult';
|
|
@@ -21893,6 +22611,7 @@ export type Query = {
|
|
|
21893
22611
|
productListings: Array<ProductListingResult>;
|
|
21894
22612
|
marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
|
|
21895
22613
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
22614
|
+
notifications?: Maybe<InfluentsNotificationQuery>;
|
|
21896
22615
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
21897
22616
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
21898
22617
|
extensionContext?: Maybe<ExtensionContext>;
|
|
@@ -21900,6 +22619,7 @@ export type Query = {
|
|
|
21900
22619
|
echo?: Maybe<Scalars['String']>;
|
|
21901
22620
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
21902
22621
|
node?: Maybe<Node>;
|
|
22622
|
+
featureRelease?: Maybe<FeatureRelease>;
|
|
21903
22623
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
21904
22624
|
activities?: Maybe<Activities>;
|
|
21905
22625
|
activity?: Maybe<Activity>;
|
|
@@ -22335,6 +23055,7 @@ export type QueryNlpSearchArgs = {
|
|
|
22335
23055
|
query?: Maybe<Scalars['String']>;
|
|
22336
23056
|
locations: Array<Scalars['String']>;
|
|
22337
23057
|
locale?: Maybe<Scalars['String']>;
|
|
23058
|
+
followups_enabled?: Maybe<Scalars['Boolean']>;
|
|
22338
23059
|
};
|
|
22339
23060
|
export type QueryNlpFollowUpArgs = {
|
|
22340
23061
|
query?: Maybe<Scalars['String']>;
|
|
@@ -26005,8 +26726,8 @@ export type TransitionFilter = {
|
|
|
26005
26726
|
from: Scalars['String'];
|
|
26006
26727
|
to: Scalars['String'];
|
|
26007
26728
|
};
|
|
26008
|
-
export type
|
|
26009
|
-
__typename?: '
|
|
26729
|
+
export type TrelloAddHelloPayload = Payload & {
|
|
26730
|
+
__typename?: 'TrelloAddHelloPayload';
|
|
26010
26731
|
errors?: Maybe<Array<MutationError>>;
|
|
26011
26732
|
hello: Scalars['String'];
|
|
26012
26733
|
success: Scalars['Boolean'];
|
|
@@ -26015,8 +26736,8 @@ export type TrelloAddMemberInput = {
|
|
|
26015
26736
|
cardId: Scalars['ID'];
|
|
26016
26737
|
memberId: Scalars['ID'];
|
|
26017
26738
|
};
|
|
26018
|
-
export type
|
|
26019
|
-
__typename?: '
|
|
26739
|
+
export type TrelloAddMemberToCardPayload = Payload & {
|
|
26740
|
+
__typename?: 'TrelloAddMemberToCardPayload';
|
|
26020
26741
|
card?: Maybe<TrelloCard>;
|
|
26021
26742
|
errors?: Maybe<Array<MutationError>>;
|
|
26022
26743
|
success: Scalars['Boolean'];
|
|
@@ -26048,6 +26769,7 @@ export type TrelloAttachmentEdge = {
|
|
|
26048
26769
|
export type TrelloBoard = Node & {
|
|
26049
26770
|
__typename?: 'TrelloBoard';
|
|
26050
26771
|
closed: Scalars['Boolean'];
|
|
26772
|
+
enterpriseOwned: Scalars['Boolean'];
|
|
26051
26773
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
26052
26774
|
id: Scalars['ID'];
|
|
26053
26775
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -26152,8 +26874,13 @@ export type TrelloBoardPrefs = {
|
|
|
26152
26874
|
__typename?: 'TrelloBoardPrefs';
|
|
26153
26875
|
background?: Maybe<TrelloBoardBackground>;
|
|
26154
26876
|
canInvite?: Maybe<Scalars['Boolean']>;
|
|
26877
|
+
comments?: Maybe<Scalars['String']>;
|
|
26155
26878
|
hideVotes?: Maybe<Scalars['Boolean']>;
|
|
26879
|
+
invitations?: Maybe<Scalars['String']>;
|
|
26156
26880
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
26881
|
+
permissionLevel?: Maybe<Scalars['String']>;
|
|
26882
|
+
selfJoin?: Maybe<Scalars['Boolean']>;
|
|
26883
|
+
voting?: Maybe<Scalars['String']>;
|
|
26157
26884
|
};
|
|
26158
26885
|
export type TrelloBoardPrefsUpdatedDeltas = {
|
|
26159
26886
|
__typename?: 'TrelloBoardPrefsUpdatedDeltas';
|
|
@@ -26176,6 +26903,7 @@ export type TrelloBoardUpdated = {
|
|
|
26176
26903
|
closed?: Maybe<Scalars['Boolean']>;
|
|
26177
26904
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
26178
26905
|
name?: Maybe<Scalars['String']>;
|
|
26906
|
+
objectId?: Maybe<Scalars['ID']>;
|
|
26179
26907
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
26180
26908
|
};
|
|
26181
26909
|
export type TrelloBoardUpdatedDeltas = {
|
|
@@ -26372,6 +27100,7 @@ export type TrelloCardUpdated = {
|
|
|
26372
27100
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
26373
27101
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
26374
27102
|
name?: Maybe<Scalars['String']>;
|
|
27103
|
+
objectId?: Maybe<Scalars['ID']>;
|
|
26375
27104
|
position?: Maybe<Scalars['Float']>;
|
|
26376
27105
|
};
|
|
26377
27106
|
export type TrelloCardUpdatedConnection = {
|
|
@@ -26413,16 +27142,16 @@ export type TrelloChecklistEdge = {
|
|
|
26413
27142
|
cursor: Scalars['String'];
|
|
26414
27143
|
node: TrelloChecklist;
|
|
26415
27144
|
};
|
|
26416
|
-
export type TrelloCreateCard = Payload & {
|
|
26417
|
-
__typename?: 'TrelloCreateCard';
|
|
26418
|
-
card?: Maybe<TrelloCard>;
|
|
26419
|
-
errors?: Maybe<Array<MutationError>>;
|
|
26420
|
-
success: Scalars['Boolean'];
|
|
26421
|
-
};
|
|
26422
27145
|
export type TrelloCreateCardInput = {
|
|
26423
27146
|
idList?: Maybe<Array<Scalars['ID']>>;
|
|
26424
27147
|
name: Scalars['String'];
|
|
26425
27148
|
};
|
|
27149
|
+
export type TrelloCreateCardPayload = Payload & {
|
|
27150
|
+
__typename?: 'TrelloCreateCardPayload';
|
|
27151
|
+
card?: Maybe<TrelloCard>;
|
|
27152
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27153
|
+
success: Scalars['Boolean'];
|
|
27154
|
+
};
|
|
26426
27155
|
export type TrelloCustomField = {
|
|
26427
27156
|
__typename?: 'TrelloCustomField';
|
|
26428
27157
|
objectId: Scalars['ID'];
|
|
@@ -26588,6 +27317,7 @@ export type TrelloListUpdated = {
|
|
|
26588
27317
|
closed?: Maybe<Scalars['Boolean']>;
|
|
26589
27318
|
id: Scalars['ID'];
|
|
26590
27319
|
name?: Maybe<Scalars['String']>;
|
|
27320
|
+
objectId?: Maybe<Scalars['ID']>;
|
|
26591
27321
|
position?: Maybe<Scalars['Float']>;
|
|
26592
27322
|
softLimit?: Maybe<Scalars['Int']>;
|
|
26593
27323
|
};
|
|
@@ -26612,12 +27342,18 @@ export type TrelloListViewer = {
|
|
|
26612
27342
|
__typename?: 'TrelloListViewer';
|
|
26613
27343
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
26614
27344
|
};
|
|
27345
|
+
export type TrelloMember = Node & {
|
|
27346
|
+
__typename?: 'TrelloMember';
|
|
27347
|
+
id: Scalars['ID'];
|
|
27348
|
+
objectId: Scalars['ID'];
|
|
27349
|
+
username?: Maybe<Scalars['String']>;
|
|
27350
|
+
};
|
|
26615
27351
|
export type TrelloMutationApi = {
|
|
26616
27352
|
__typename?: 'TrelloMutationApi';
|
|
26617
|
-
addHello?: Maybe<
|
|
26618
|
-
addMemberToCard?: Maybe<
|
|
26619
|
-
createCard?: Maybe<
|
|
26620
|
-
removeMemberFromCard?: Maybe<
|
|
27353
|
+
addHello?: Maybe<TrelloAddHelloPayload>;
|
|
27354
|
+
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
27355
|
+
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
27356
|
+
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
26621
27357
|
};
|
|
26622
27358
|
export type TrelloMutationApiAddHelloArgs = {
|
|
26623
27359
|
input: TrelloHelloInput;
|
|
@@ -26673,6 +27409,7 @@ export type TrelloQueryApi = {
|
|
|
26673
27409
|
card?: Maybe<TrelloCard>;
|
|
26674
27410
|
echo?: Maybe<Scalars['String']>;
|
|
26675
27411
|
list?: Maybe<TrelloList>;
|
|
27412
|
+
member?: Maybe<TrelloMember>;
|
|
26676
27413
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
26677
27414
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
26678
27415
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
@@ -26688,6 +27425,9 @@ export type TrelloQueryApiCardArgs = {
|
|
|
26688
27425
|
export type TrelloQueryApiListArgs = {
|
|
26689
27426
|
id: Scalars['ID'];
|
|
26690
27427
|
};
|
|
27428
|
+
export type TrelloQueryApiMemberArgs = {
|
|
27429
|
+
id: Scalars['ID'];
|
|
27430
|
+
};
|
|
26691
27431
|
export type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
26692
27432
|
ids: Array<Scalars['ID']>;
|
|
26693
27433
|
};
|
|
@@ -26729,8 +27469,8 @@ export type TrelloRecentCardEdge = {
|
|
|
26729
27469
|
cursor?: Maybe<Scalars['String']>;
|
|
26730
27470
|
node?: Maybe<TrelloRecentCard>;
|
|
26731
27471
|
};
|
|
26732
|
-
export type
|
|
26733
|
-
__typename?: '
|
|
27472
|
+
export type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
27473
|
+
__typename?: 'TrelloRemoveMemberFromCardPayload';
|
|
26734
27474
|
card?: Maybe<TrelloCard>;
|
|
26735
27475
|
errors?: Maybe<Array<MutationError>>;
|
|
26736
27476
|
success: Scalars['Boolean'];
|
|
@@ -27025,6 +27765,16 @@ export type UpdateCompassScorecardPayload = Payload & {
|
|
|
27025
27765
|
errors?: Maybe<Array<MutationError>>;
|
|
27026
27766
|
scorecardDetails?: Maybe<CompassScorecard>;
|
|
27027
27767
|
};
|
|
27768
|
+
export type UpdateCompassUserDefinedParametersInput = {
|
|
27769
|
+
componentId: Scalars['ID'];
|
|
27770
|
+
createParameters?: Maybe<Array<CreateCompassUserDefinedParameterInput>>;
|
|
27771
|
+
};
|
|
27772
|
+
export type UpdateCompassUserDefinedParametersPayload = Payload & {
|
|
27773
|
+
__typename?: 'UpdateCompassUserDefinedParametersPayload';
|
|
27774
|
+
success: Scalars['Boolean'];
|
|
27775
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27776
|
+
userParameterDetails?: Maybe<CompassUserDefinedParameters>;
|
|
27777
|
+
};
|
|
27028
27778
|
export type UpdateCustomFilterInput = {
|
|
27029
27779
|
boardId: Scalars['ID'];
|
|
27030
27780
|
id: Scalars['ID'];
|
|
@@ -27206,6 +27956,12 @@ export type UpdatePolarisFieldEmojiPayload = Payload & {
|
|
|
27206
27956
|
errors?: Maybe<Array<MutationError>>;
|
|
27207
27957
|
node?: Maybe<PolarisIdeaField>;
|
|
27208
27958
|
};
|
|
27959
|
+
export type UpdatePolarisFieldInput = {
|
|
27960
|
+
field: Scalars['ID'];
|
|
27961
|
+
ideaType: Scalars['ID'];
|
|
27962
|
+
name: Scalars['String'];
|
|
27963
|
+
description: Scalars['String'];
|
|
27964
|
+
};
|
|
27209
27965
|
export type UpdatePolarisFieldOptionWeightInput = {
|
|
27210
27966
|
project: Scalars['ID'];
|
|
27211
27967
|
field: Scalars['ID'];
|
|
@@ -27217,6 +27973,12 @@ export type UpdatePolarisFieldOptionWeightPayload = Payload & {
|
|
|
27217
27973
|
success: Scalars['Boolean'];
|
|
27218
27974
|
errors?: Maybe<Array<MutationError>>;
|
|
27219
27975
|
};
|
|
27976
|
+
export type UpdatePolarisFieldPayload = Payload & {
|
|
27977
|
+
__typename?: 'UpdatePolarisFieldPayload';
|
|
27978
|
+
success: Scalars['Boolean'];
|
|
27979
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27980
|
+
node?: Maybe<PolarisIdeaField>;
|
|
27981
|
+
};
|
|
27220
27982
|
export type UpdatePolarisIdeaInput = {
|
|
27221
27983
|
archived?: Maybe<Scalars['Boolean']>;
|
|
27222
27984
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|