@forge/cli-shared 3.17.0-next.7 → 3.17.0-next.9
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 +16 -0
- package/out/graphql/graphql-types.d.ts +445 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +131 -7
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.17.0-next.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [4999c4b]
|
|
8
|
+
- @forge/util@1.3.1-next.2
|
|
9
|
+
- @forge/manifest@4.17.1-next.4
|
|
10
|
+
|
|
11
|
+
## 3.17.0-next.8
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [801ea11]
|
|
16
|
+
- @forge/util@1.3.1-next.1
|
|
17
|
+
- @forge/manifest@4.17.1-next.3
|
|
18
|
+
|
|
3
19
|
## 3.17.0-next.7
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -2158,6 +2158,10 @@ export type CcpAccountDetails = {
|
|
|
2158
2158
|
invoiceGroupId?: Maybe<Scalars['ID']>;
|
|
2159
2159
|
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
2160
2160
|
};
|
|
2161
|
+
export declare enum CcpActivationReason {
|
|
2162
|
+
DefaultPricing = "DEFAULT_PRICING",
|
|
2163
|
+
AdvantagePricing = "ADVANTAGE_PRICING"
|
|
2164
|
+
}
|
|
2161
2165
|
export type CcpApplicationReason = {
|
|
2162
2166
|
__typename?: 'CcpApplicationReason';
|
|
2163
2167
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2184,12 +2188,21 @@ export type CcpChargeDetails = {
|
|
|
2184
2188
|
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
2185
2189
|
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
2186
2190
|
};
|
|
2191
|
+
export type CcpChargeElementData = {
|
|
2192
|
+
__typename?: 'CcpChargeElementData';
|
|
2193
|
+
ceiling?: Maybe<Scalars['Int']>;
|
|
2194
|
+
};
|
|
2187
2195
|
export type CcpChargeQuantity = {
|
|
2188
2196
|
__typename?: 'CcpChargeQuantity';
|
|
2189
2197
|
chargeElement?: Maybe<Scalars['String']>;
|
|
2190
2198
|
quantity?: Maybe<Scalars['Float']>;
|
|
2191
2199
|
lastUpdatedAt?: Maybe<Scalars['Float']>;
|
|
2192
2200
|
};
|
|
2201
|
+
export declare enum CcpChargeType {
|
|
2202
|
+
Metered = "METERED",
|
|
2203
|
+
Licensed = "LICENSED",
|
|
2204
|
+
AutoScaling = "AUTO_SCALING"
|
|
2205
|
+
}
|
|
2193
2206
|
export type CcpContext = {
|
|
2194
2207
|
__typename?: 'CcpContext';
|
|
2195
2208
|
subject?: Maybe<Scalars['String']>;
|
|
@@ -2197,11 +2210,33 @@ export type CcpContext = {
|
|
|
2197
2210
|
authMechanism?: Maybe<Scalars['String']>;
|
|
2198
2211
|
clientAsapIssuer?: Maybe<Scalars['String']>;
|
|
2199
2212
|
};
|
|
2213
|
+
export declare enum CcpCurrency {
|
|
2214
|
+
Usd = "USD",
|
|
2215
|
+
Jpy = "JPY"
|
|
2216
|
+
}
|
|
2200
2217
|
export type CcpCustomisedValues = {
|
|
2201
2218
|
__typename?: 'CcpCustomisedValues';
|
|
2202
2219
|
applicationReason?: Maybe<CcpApplicationReason>;
|
|
2203
2220
|
benefits?: Maybe<Array<Maybe<CcpBenefit>>>;
|
|
2204
2221
|
};
|
|
2222
|
+
export type CcpCycle = {
|
|
2223
|
+
__typename?: 'CcpCycle';
|
|
2224
|
+
name?: Maybe<Scalars['String']>;
|
|
2225
|
+
interval?: Maybe<CcpInterval>;
|
|
2226
|
+
count?: Maybe<Scalars['Int']>;
|
|
2227
|
+
};
|
|
2228
|
+
export type CcpDerivedFromOffering = {
|
|
2229
|
+
__typename?: 'CcpDerivedFromOffering';
|
|
2230
|
+
templateId?: Maybe<Scalars['ID']>;
|
|
2231
|
+
templateVersion?: Maybe<Scalars['Int']>;
|
|
2232
|
+
originalOfferingKey?: Maybe<Scalars['ID']>;
|
|
2233
|
+
};
|
|
2234
|
+
export type CcpDerivedOffering = {
|
|
2235
|
+
__typename?: 'CcpDerivedOffering';
|
|
2236
|
+
templateId?: Maybe<Scalars['ID']>;
|
|
2237
|
+
templateVersion?: Maybe<Scalars['Int']>;
|
|
2238
|
+
generatedOfferingKey?: Maybe<Scalars['ID']>;
|
|
2239
|
+
};
|
|
2205
2240
|
export declare enum CcpDuration {
|
|
2206
2241
|
Forever = "FOREVER",
|
|
2207
2242
|
Once = "ONCE",
|
|
@@ -2210,12 +2245,13 @@ export declare enum CcpDuration {
|
|
|
2210
2245
|
export type CcpEntitlement = Node & {
|
|
2211
2246
|
__typename?: 'CcpEntitlement';
|
|
2212
2247
|
id: Scalars['ID'];
|
|
2248
|
+
entitlementId?: Maybe<Scalars['ID']>;
|
|
2213
2249
|
version?: Maybe<Scalars['Int']>;
|
|
2214
2250
|
status?: Maybe<CcpEntitlementStatus>;
|
|
2215
2251
|
slug?: Maybe<Scalars['String']>;
|
|
2216
2252
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2217
2253
|
changeReason?: Maybe<Scalars['String']>;
|
|
2218
|
-
offeringKey?: Maybe<Scalars['
|
|
2254
|
+
offeringKey?: Maybe<Scalars['ID']>;
|
|
2219
2255
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
2220
2256
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2221
2257
|
featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
@@ -2229,6 +2265,7 @@ export type CcpEntitlement = Node & {
|
|
|
2229
2265
|
createdAt?: Maybe<Scalars['Float']>;
|
|
2230
2266
|
updatedAt?: Maybe<Scalars['Float']>;
|
|
2231
2267
|
subscription?: Maybe<CcpSubscription>;
|
|
2268
|
+
offering?: Maybe<CcpOffering>;
|
|
2232
2269
|
context?: Maybe<CcpContext>;
|
|
2233
2270
|
};
|
|
2234
2271
|
export type CcpEntitlementRelationship = {
|
|
@@ -2243,25 +2280,139 @@ export declare enum CcpEntitlementStatus {
|
|
|
2243
2280
|
}
|
|
2244
2281
|
export type CcpEntitlementTemplate = {
|
|
2245
2282
|
__typename?: 'CcpEntitlementTemplate';
|
|
2246
|
-
key?: Maybe<Scalars['
|
|
2283
|
+
key?: Maybe<Scalars['ID']>;
|
|
2247
2284
|
version?: Maybe<Scalars['Int']>;
|
|
2248
2285
|
data?: Maybe<Scalars['String']>;
|
|
2249
2286
|
provisionedBy?: Maybe<Scalars['String']>;
|
|
2250
2287
|
};
|
|
2288
|
+
export declare enum CcpInterval {
|
|
2289
|
+
Day = "DAY",
|
|
2290
|
+
Week = "WEEK",
|
|
2291
|
+
Month = "MONTH",
|
|
2292
|
+
Year = "YEAR"
|
|
2293
|
+
}
|
|
2251
2294
|
export type CcpMapEntry = {
|
|
2252
2295
|
__typename?: 'CcpMapEntry';
|
|
2253
2296
|
key?: Maybe<Scalars['String']>;
|
|
2254
2297
|
value?: Maybe<Scalars['String']>;
|
|
2255
2298
|
};
|
|
2299
|
+
export type CcpOffering = Node & {
|
|
2300
|
+
__typename?: 'CcpOffering';
|
|
2301
|
+
id: Scalars['ID'];
|
|
2302
|
+
key?: Maybe<Scalars['ID']>;
|
|
2303
|
+
name?: Maybe<Scalars['String']>;
|
|
2304
|
+
updatedAt?: Maybe<Scalars['Float']>;
|
|
2305
|
+
sku?: Maybe<Scalars['String']>;
|
|
2306
|
+
hostingType?: Maybe<CcpOfferingHostingType>;
|
|
2307
|
+
level?: Maybe<Scalars['Int']>;
|
|
2308
|
+
productKey?: Maybe<Scalars['ID']>;
|
|
2309
|
+
slugs?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2310
|
+
type?: Maybe<CcpOfferingType>;
|
|
2311
|
+
pricingType?: Maybe<CcpPricingType>;
|
|
2312
|
+
status?: Maybe<CcpOfferingStatus>;
|
|
2313
|
+
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
2314
|
+
version?: Maybe<Scalars['Int']>;
|
|
2315
|
+
chargeElements?: Maybe<Array<Maybe<CcpChargeElementData>>>;
|
|
2316
|
+
syntheticTemplates?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2317
|
+
derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
|
|
2318
|
+
expiryDate?: Maybe<Scalars['Float']>;
|
|
2319
|
+
derivedFromOffering?: Maybe<CcpDerivedFromOffering>;
|
|
2320
|
+
catalogAccountId?: Maybe<Scalars['ID']>;
|
|
2321
|
+
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']>;
|
|
2322
|
+
dependsOnOfferingKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2323
|
+
trial?: Maybe<CcpOfferingTrial>;
|
|
2324
|
+
offeringGroup?: Maybe<CcpOfferingGroup>;
|
|
2325
|
+
entitlementTemplateId?: Maybe<Scalars['ID']>;
|
|
2326
|
+
};
|
|
2327
|
+
export type CcpOfferingGroup = {
|
|
2328
|
+
__typename?: 'CcpOfferingGroup';
|
|
2329
|
+
key?: Maybe<Scalars['ID']>;
|
|
2330
|
+
name?: Maybe<Scalars['String']>;
|
|
2331
|
+
slug?: Maybe<Scalars['String']>;
|
|
2332
|
+
level?: Maybe<Scalars['Int']>;
|
|
2333
|
+
productKey?: Maybe<Scalars['ID']>;
|
|
2334
|
+
catalogAccountId?: Maybe<Scalars['ID']>;
|
|
2335
|
+
};
|
|
2336
|
+
export declare enum CcpOfferingHostingType {
|
|
2337
|
+
Cloud = "CLOUD"
|
|
2338
|
+
}
|
|
2339
|
+
export declare enum CcpOfferingStatus {
|
|
2340
|
+
Draft = "DRAFT",
|
|
2341
|
+
Active = "ACTIVE",
|
|
2342
|
+
AtNotice = "AT_NOTICE",
|
|
2343
|
+
Expired = "EXPIRED"
|
|
2344
|
+
}
|
|
2345
|
+
export type CcpOfferingTrial = {
|
|
2346
|
+
__typename?: 'CcpOfferingTrial';
|
|
2347
|
+
lengthDays?: Maybe<Scalars['Int']>;
|
|
2348
|
+
};
|
|
2349
|
+
export declare enum CcpOfferingType {
|
|
2350
|
+
Parent = "PARENT",
|
|
2351
|
+
Child = "CHILD"
|
|
2352
|
+
}
|
|
2256
2353
|
export type CcpOrder = Node & {
|
|
2257
2354
|
__typename?: 'CcpOrder';
|
|
2258
2355
|
id: Scalars['ID'];
|
|
2259
|
-
itemId?: Maybe<Scalars['
|
|
2356
|
+
itemId?: Maybe<Scalars['ID']>;
|
|
2260
2357
|
};
|
|
2261
2358
|
export type CcpPricingPlan = Node & {
|
|
2262
2359
|
__typename?: 'CcpPricingPlan';
|
|
2263
2360
|
id: Scalars['ID'];
|
|
2361
|
+
key?: Maybe<Scalars['ID']>;
|
|
2362
|
+
updatedAt?: Maybe<Scalars['Float']>;
|
|
2363
|
+
sku?: Maybe<Scalars['String']>;
|
|
2364
|
+
description?: Maybe<Scalars['String']>;
|
|
2365
|
+
offeringKey?: Maybe<Scalars['ID']>;
|
|
2366
|
+
productKey?: Maybe<Scalars['ID']>;
|
|
2367
|
+
primaryCycle?: Maybe<CcpCycle>;
|
|
2368
|
+
status?: Maybe<CcpPricingPlanStatus>;
|
|
2369
|
+
currency?: Maybe<CcpCurrency>;
|
|
2370
|
+
type?: Maybe<Scalars['String']>;
|
|
2371
|
+
maxNewQuoteDate?: Maybe<Scalars['Float']>;
|
|
2372
|
+
activatedWithReason?: Maybe<CcpActivationReason>;
|
|
2373
|
+
items?: Maybe<Array<Maybe<CcpPricingPlanItem>>>;
|
|
2374
|
+
version?: Maybe<Scalars['Float']>;
|
|
2375
|
+
relationships?: Maybe<Array<Maybe<CcpPricingPlanRelationship>>>;
|
|
2376
|
+
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
2377
|
+
catalogAccountId?: Maybe<Scalars['ID']>;
|
|
2378
|
+
offering?: Maybe<CcpOffering>;
|
|
2379
|
+
};
|
|
2380
|
+
export type CcpPricingPlanItem = {
|
|
2381
|
+
__typename?: 'CcpPricingPlanItem';
|
|
2382
|
+
cycle?: Maybe<CcpCycle>;
|
|
2383
|
+
chargeType?: Maybe<CcpChargeType>;
|
|
2384
|
+
chargeElement?: Maybe<Scalars['String']>;
|
|
2385
|
+
tiersMode?: Maybe<CcpTiersMode>;
|
|
2386
|
+
usageUpdateCadence?: Maybe<CcpUsageUpdateCadence>;
|
|
2387
|
+
prorateOnUsageChange?: Maybe<CcpProrateOnUsageChange>;
|
|
2388
|
+
tiers?: Maybe<Array<Maybe<CcpPricingPlanTier>>>;
|
|
2389
|
+
};
|
|
2390
|
+
export type CcpPricingPlanRelationship = {
|
|
2391
|
+
__typename?: 'CcpPricingPlanRelationship';
|
|
2392
|
+
fromPricingPlanKey?: Maybe<Scalars['ID']>;
|
|
2393
|
+
toPricingPlanKey?: Maybe<Scalars['ID']>;
|
|
2394
|
+
type?: Maybe<CcpRelationshipPricingType>;
|
|
2395
|
+
metadata?: Maybe<Scalars['String']>;
|
|
2396
|
+
};
|
|
2397
|
+
export declare enum CcpPricingPlanStatus {
|
|
2398
|
+
Draft = "DRAFT",
|
|
2399
|
+
Active = "ACTIVE",
|
|
2400
|
+
AtNotice = "AT_NOTICE",
|
|
2401
|
+
Expired = "EXPIRED"
|
|
2402
|
+
}
|
|
2403
|
+
export type CcpPricingPlanTier = {
|
|
2404
|
+
__typename?: 'CcpPricingPlanTier';
|
|
2405
|
+
floor?: Maybe<Scalars['Int']>;
|
|
2406
|
+
ceiling?: Maybe<Scalars['Int']>;
|
|
2407
|
+
unitAmount?: Maybe<Scalars['Int']>;
|
|
2408
|
+
flatAmount?: Maybe<Scalars['Int']>;
|
|
2264
2409
|
};
|
|
2410
|
+
export declare enum CcpPricingType {
|
|
2411
|
+
External = "EXTERNAL",
|
|
2412
|
+
Free = "FREE",
|
|
2413
|
+
LimitedFree = "LIMITED_FREE",
|
|
2414
|
+
Paid = "PAID"
|
|
2415
|
+
}
|
|
2265
2416
|
export type CcpPromotion = {
|
|
2266
2417
|
__typename?: 'CcpPromotion';
|
|
2267
2418
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2277,13 +2428,32 @@ export type CcpPromotionInstance = {
|
|
|
2277
2428
|
promotionInstanceId?: Maybe<Scalars['ID']>;
|
|
2278
2429
|
promotionDefinition?: Maybe<CcpPromotionDefinition>;
|
|
2279
2430
|
};
|
|
2431
|
+
export declare enum CcpProrateOnUsageChange {
|
|
2432
|
+
CreateProrations = "CREATE_PRORATIONS",
|
|
2433
|
+
None = "NONE",
|
|
2434
|
+
AlwaysInvoice = "ALWAYS_INVOICE"
|
|
2435
|
+
}
|
|
2280
2436
|
export type CcpQueryApi = {
|
|
2281
2437
|
__typename?: 'CcpQueryApi';
|
|
2282
2438
|
entitlement?: Maybe<CcpEntitlement>;
|
|
2439
|
+
offering?: Maybe<CcpOffering>;
|
|
2440
|
+
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
2283
2441
|
};
|
|
2284
2442
|
export type CcpQueryApiEntitlementArgs = {
|
|
2285
2443
|
id: Scalars['ID'];
|
|
2286
2444
|
};
|
|
2445
|
+
export type CcpQueryApiOfferingArgs = {
|
|
2446
|
+
key: Scalars['ID'];
|
|
2447
|
+
};
|
|
2448
|
+
export type CcpQueryApiPricingPlanArgs = {
|
|
2449
|
+
id: Scalars['ID'];
|
|
2450
|
+
};
|
|
2451
|
+
export declare enum CcpRelationshipPricingType {
|
|
2452
|
+
AdvantagePricing = "ADVANTAGE_PRICING",
|
|
2453
|
+
NextPricing = "NEXT_PRICING",
|
|
2454
|
+
SyntheticGenerated = "SYNTHETIC_GENERATED",
|
|
2455
|
+
CurrencyGenerated = "CURRENCY_GENERATED"
|
|
2456
|
+
}
|
|
2287
2457
|
export type CcpSubscription = {
|
|
2288
2458
|
__typename?: 'CcpSubscription';
|
|
2289
2459
|
id: Scalars['ID'];
|
|
@@ -2299,6 +2469,7 @@ export type CcpSubscription = {
|
|
|
2299
2469
|
subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
|
|
2300
2470
|
status?: Maybe<CcpSubscriptionStatus>;
|
|
2301
2471
|
startTimestamp?: Maybe<Scalars['Float']>;
|
|
2472
|
+
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
2302
2473
|
};
|
|
2303
2474
|
export type CcpSubscriptionSchedule = {
|
|
2304
2475
|
__typename?: 'CcpSubscriptionSchedule';
|
|
@@ -2323,6 +2494,15 @@ export declare enum CcpSubscriptionStatus {
|
|
|
2323
2494
|
Active = "ACTIVE",
|
|
2324
2495
|
Cancelled = "CANCELLED"
|
|
2325
2496
|
}
|
|
2497
|
+
export declare enum CcpSupportedBillingSystems {
|
|
2498
|
+
Hams = "HAMS",
|
|
2499
|
+
Ccp = "CCP",
|
|
2500
|
+
Opsgenie = "OPSGENIE"
|
|
2501
|
+
}
|
|
2502
|
+
export declare enum CcpTiersMode {
|
|
2503
|
+
Graduated = "GRADUATED",
|
|
2504
|
+
Volume = "VOLUME"
|
|
2505
|
+
}
|
|
2326
2506
|
export type CcpTransactionAccount = Node & {
|
|
2327
2507
|
__typename?: 'CcpTransactionAccount';
|
|
2328
2508
|
id: Scalars['ID'];
|
|
@@ -2335,6 +2515,11 @@ export type CcpTrial = {
|
|
|
2335
2515
|
pricingPlanId?: Maybe<Scalars['ID']>;
|
|
2336
2516
|
offeringId?: Maybe<Scalars['ID']>;
|
|
2337
2517
|
};
|
|
2518
|
+
export type CcpUsageUpdateCadence = {
|
|
2519
|
+
__typename?: 'CcpUsageUpdateCadence';
|
|
2520
|
+
name?: Maybe<Scalars['String']>;
|
|
2521
|
+
cadenceIntervalMinutes?: Maybe<Scalars['Int']>;
|
|
2522
|
+
};
|
|
2338
2523
|
export type CheckConsentPermissionByOAuthClientIdInput = {
|
|
2339
2524
|
cloudId: Scalars['ID'];
|
|
2340
2525
|
userId: Scalars['ID'];
|
|
@@ -3350,7 +3535,7 @@ export type CompassCustomMultiSelectFieldDefinition = CompassCustomFieldDefiniti
|
|
|
3350
3535
|
};
|
|
3351
3536
|
export type CompassCustomMultiSelectFieldInput = {
|
|
3352
3537
|
definitionId: Scalars['ID'];
|
|
3353
|
-
options
|
|
3538
|
+
options?: Maybe<Array<Scalars['ID']>>;
|
|
3354
3539
|
};
|
|
3355
3540
|
export type CompassCustomNumberField = CompassCustomField & {
|
|
3356
3541
|
__typename?: 'CompassCustomNumberField';
|
|
@@ -3390,7 +3575,7 @@ export type CompassCustomSingleSelectFieldDefinition = CompassCustomFieldDefinit
|
|
|
3390
3575
|
};
|
|
3391
3576
|
export type CompassCustomSingleSelectFieldInput = {
|
|
3392
3577
|
definitionId: Scalars['ID'];
|
|
3393
|
-
option
|
|
3578
|
+
option?: Maybe<Scalars['ID']>;
|
|
3394
3579
|
};
|
|
3395
3580
|
export type CompassCustomTextField = CompassCustomField & {
|
|
3396
3581
|
__typename?: 'CompassCustomTextField';
|
|
@@ -9313,6 +9498,9 @@ export type Graph = {
|
|
|
9313
9498
|
parentDocumentHasChildDocumentRelationship?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
|
|
9314
9499
|
parentDocumentHasChildDocumentRelationshipInverse?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
|
|
9315
9500
|
projectAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
9501
|
+
projectAssociatedPrInverse?: Maybe<GraphJiraProjectConnection>;
|
|
9502
|
+
projectAssociatedPrRelationship?: Maybe<GraphProjectAssociatedPrRelationshipConnection>;
|
|
9503
|
+
projectAssociatedPrRelationshipInverse?: Maybe<GraphProjectAssociatedPrRelationshipConnection>;
|
|
9316
9504
|
projectAssociatedDeployment?: Maybe<GraphJiraDeploymentConnection>;
|
|
9317
9505
|
issueAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
9318
9506
|
issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
|
|
@@ -9345,9 +9533,28 @@ export type GraphParentDocumentHasChildDocumentRelationshipInverseArgs = {
|
|
|
9345
9533
|
};
|
|
9346
9534
|
export type GraphProjectAssociatedPrArgs = {
|
|
9347
9535
|
after?: Maybe<Scalars['String']>;
|
|
9536
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9348
9537
|
first?: Maybe<Scalars['Int']>;
|
|
9349
9538
|
from: Scalars['ID'];
|
|
9350
9539
|
};
|
|
9540
|
+
export type GraphProjectAssociatedPrInverseArgs = {
|
|
9541
|
+
after?: Maybe<Scalars['String']>;
|
|
9542
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9543
|
+
first?: Maybe<Scalars['Int']>;
|
|
9544
|
+
to: Scalars['ID'];
|
|
9545
|
+
};
|
|
9546
|
+
export type GraphProjectAssociatedPrRelationshipArgs = {
|
|
9547
|
+
after?: Maybe<Scalars['String']>;
|
|
9548
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9549
|
+
first?: Maybe<Scalars['Int']>;
|
|
9550
|
+
from: Scalars['ID'];
|
|
9551
|
+
};
|
|
9552
|
+
export type GraphProjectAssociatedPrRelationshipInverseArgs = {
|
|
9553
|
+
after?: Maybe<Scalars['String']>;
|
|
9554
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedPrInput>;
|
|
9555
|
+
first?: Maybe<Scalars['Int']>;
|
|
9556
|
+
to: Scalars['ID'];
|
|
9557
|
+
};
|
|
9351
9558
|
export type GraphProjectAssociatedDeploymentArgs = {
|
|
9352
9559
|
after?: Maybe<Scalars['String']>;
|
|
9353
9560
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9414,6 +9621,43 @@ export type GraphCreateIssueAssociatedPrInput = {
|
|
|
9414
9621
|
to: Scalars['ID'];
|
|
9415
9622
|
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
9416
9623
|
};
|
|
9624
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutput = {
|
|
9625
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutput';
|
|
9626
|
+
author?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthor>;
|
|
9627
|
+
reviewers?: Maybe<Array<Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewer>>>;
|
|
9628
|
+
status?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputPullRequestStatusEnum>;
|
|
9629
|
+
taskCount?: Maybe<Scalars['Int']>;
|
|
9630
|
+
};
|
|
9631
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthor = {
|
|
9632
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthor';
|
|
9633
|
+
authorAri?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthorAri>;
|
|
9634
|
+
};
|
|
9635
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthorAri = {
|
|
9636
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputAuthorAri';
|
|
9637
|
+
value?: Maybe<Scalars['String']>;
|
|
9638
|
+
};
|
|
9639
|
+
export declare enum GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputPullRequestStatusEnum {
|
|
9640
|
+
Declined = "DECLINED",
|
|
9641
|
+
Merged = "MERGED",
|
|
9642
|
+
NotSet = "NOT_SET",
|
|
9643
|
+
Open = "OPEN",
|
|
9644
|
+
Unknown = "UNKNOWN"
|
|
9645
|
+
}
|
|
9646
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewer = {
|
|
9647
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewer';
|
|
9648
|
+
approvalStatus?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerReviewerStatusEnum>;
|
|
9649
|
+
reviewerAri?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerAri>;
|
|
9650
|
+
};
|
|
9651
|
+
export type GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerAri = {
|
|
9652
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerAri';
|
|
9653
|
+
value?: Maybe<Scalars['String']>;
|
|
9654
|
+
};
|
|
9655
|
+
export declare enum GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputReviewerReviewerStatusEnum {
|
|
9656
|
+
Approved = "APPROVED",
|
|
9657
|
+
Needswork = "NEEDSWORK",
|
|
9658
|
+
NotSet = "NOT_SET",
|
|
9659
|
+
Unapproved = "UNAPPROVED"
|
|
9660
|
+
}
|
|
9417
9661
|
export type GraphCreateParentDocumentHasChildDocumentInput = {
|
|
9418
9662
|
from: Scalars['ID'];
|
|
9419
9663
|
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
@@ -9492,6 +9736,20 @@ export type GraphJiraIssueEdge = {
|
|
|
9492
9736
|
cursor?: Maybe<Scalars['String']>;
|
|
9493
9737
|
node: GraphJiraIssue;
|
|
9494
9738
|
};
|
|
9739
|
+
export type GraphJiraProject = Node & {
|
|
9740
|
+
__typename?: 'GraphJiraProject';
|
|
9741
|
+
id: Scalars['ID'];
|
|
9742
|
+
};
|
|
9743
|
+
export type GraphJiraProjectConnection = {
|
|
9744
|
+
__typename?: 'GraphJiraProjectConnection';
|
|
9745
|
+
edges: Array<Maybe<GraphJiraProjectEdge>>;
|
|
9746
|
+
pageInfo: PageInfo;
|
|
9747
|
+
};
|
|
9748
|
+
export type GraphJiraProjectEdge = {
|
|
9749
|
+
__typename?: 'GraphJiraProjectEdge';
|
|
9750
|
+
cursor?: Maybe<Scalars['String']>;
|
|
9751
|
+
node: GraphJiraProject;
|
|
9752
|
+
};
|
|
9495
9753
|
export type GraphJiraPullRequest = Node & {
|
|
9496
9754
|
__typename?: 'GraphJiraPullRequest';
|
|
9497
9755
|
id: Scalars['ID'];
|
|
@@ -9555,6 +9813,178 @@ export type GraphParentDocumentHasChildDocumentRelationshipEdge = {
|
|
|
9555
9813
|
cursor?: Maybe<Scalars['String']>;
|
|
9556
9814
|
node: GraphParentDocumentHasChildDocumentRelationship;
|
|
9557
9815
|
};
|
|
9816
|
+
export type GraphProjectAssociatedPrRelationship = Node & {
|
|
9817
|
+
__typename?: 'GraphProjectAssociatedPrRelationship';
|
|
9818
|
+
from: GraphJiraProject;
|
|
9819
|
+
id: Scalars['ID'];
|
|
9820
|
+
lastUpdated: Scalars['DateTime'];
|
|
9821
|
+
to: GraphJiraPullRequest;
|
|
9822
|
+
toMetadata?: Maybe<GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutput>;
|
|
9823
|
+
};
|
|
9824
|
+
export type GraphProjectAssociatedPrRelationshipConnection = {
|
|
9825
|
+
__typename?: 'GraphProjectAssociatedPrRelationshipConnection';
|
|
9826
|
+
edges: Array<Maybe<GraphProjectAssociatedPrRelationshipEdge>>;
|
|
9827
|
+
pageInfo: PageInfo;
|
|
9828
|
+
};
|
|
9829
|
+
export type GraphProjectAssociatedPrRelationshipEdge = {
|
|
9830
|
+
__typename?: 'GraphProjectAssociatedPrRelationshipEdge';
|
|
9831
|
+
cursor?: Maybe<Scalars['String']>;
|
|
9832
|
+
node: GraphProjectAssociatedPrRelationship;
|
|
9833
|
+
};
|
|
9834
|
+
export type GraphQueryMetadataProjectAssociatedPrInput = {
|
|
9835
|
+
and?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputAnd>>;
|
|
9836
|
+
or?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputOr>>;
|
|
9837
|
+
};
|
|
9838
|
+
export type GraphQueryMetadataProjectAssociatedPrInputAnd = {
|
|
9839
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
9840
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
9841
|
+
or?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputOrInner>>;
|
|
9842
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
9843
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
9844
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
9845
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
9846
|
+
};
|
|
9847
|
+
export type GraphQueryMetadataProjectAssociatedPrInputAndInner = {
|
|
9848
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
9849
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
9850
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
9851
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
9852
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
9853
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
9854
|
+
};
|
|
9855
|
+
export type GraphQueryMetadataProjectAssociatedPrInputCreatedAt = {
|
|
9856
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAtRangeField>;
|
|
9857
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAtMetadataSortField>;
|
|
9858
|
+
};
|
|
9859
|
+
export type GraphQueryMetadataProjectAssociatedPrInputCreatedAtMetadataSortField = {
|
|
9860
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
9861
|
+
priority?: Maybe<Scalars['Int']>;
|
|
9862
|
+
};
|
|
9863
|
+
export type GraphQueryMetadataProjectAssociatedPrInputCreatedAtRangeField = {
|
|
9864
|
+
gt?: Maybe<Scalars['DateTime']>;
|
|
9865
|
+
gte?: Maybe<Scalars['DateTime']>;
|
|
9866
|
+
lt?: Maybe<Scalars['DateTime']>;
|
|
9867
|
+
lte?: Maybe<Scalars['DateTime']>;
|
|
9868
|
+
};
|
|
9869
|
+
export type GraphQueryMetadataProjectAssociatedPrInputLastUpdated = {
|
|
9870
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdatedRangeField>;
|
|
9871
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdatedMetadataSortField>;
|
|
9872
|
+
};
|
|
9873
|
+
export type GraphQueryMetadataProjectAssociatedPrInputLastUpdatedMetadataSortField = {
|
|
9874
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
9875
|
+
priority?: Maybe<Scalars['Int']>;
|
|
9876
|
+
};
|
|
9877
|
+
export type GraphQueryMetadataProjectAssociatedPrInputLastUpdatedRangeField = {
|
|
9878
|
+
gt?: Maybe<Scalars['DateTime']>;
|
|
9879
|
+
gte?: Maybe<Scalars['DateTime']>;
|
|
9880
|
+
lt?: Maybe<Scalars['DateTime']>;
|
|
9881
|
+
lte?: Maybe<Scalars['DateTime']>;
|
|
9882
|
+
};
|
|
9883
|
+
export type GraphQueryMetadataProjectAssociatedPrInputOr = {
|
|
9884
|
+
and?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputAndInner>>;
|
|
9885
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
9886
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
9887
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
9888
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
9889
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
9890
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
9891
|
+
};
|
|
9892
|
+
export type GraphQueryMetadataProjectAssociatedPrInputOrInner = {
|
|
9893
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedPrInputCreatedAt>;
|
|
9894
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedPrInputLastUpdated>;
|
|
9895
|
+
to_author?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthor>;
|
|
9896
|
+
to_reviewers?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewer>;
|
|
9897
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatus>;
|
|
9898
|
+
to_taskCount?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCount>;
|
|
9899
|
+
};
|
|
9900
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthor = {
|
|
9901
|
+
authorAri?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthorAri>;
|
|
9902
|
+
};
|
|
9903
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthorAri = {
|
|
9904
|
+
value?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValue>;
|
|
9905
|
+
};
|
|
9906
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValue = {
|
|
9907
|
+
notValues?: Maybe<Array<Scalars['String']>>;
|
|
9908
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValueMetadataSortField>;
|
|
9909
|
+
values?: Maybe<Array<Scalars['String']>>;
|
|
9910
|
+
};
|
|
9911
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToAuthorAriValueMetadataSortField = {
|
|
9912
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
9913
|
+
priority?: Maybe<Scalars['Int']>;
|
|
9914
|
+
};
|
|
9915
|
+
export declare enum GraphQueryMetadataProjectAssociatedPrInputToPullRequestStatusEnum {
|
|
9916
|
+
Declined = "DECLINED",
|
|
9917
|
+
Merged = "MERGED",
|
|
9918
|
+
NotSet = "NOT_SET",
|
|
9919
|
+
Open = "OPEN",
|
|
9920
|
+
Unknown = "UNKNOWN"
|
|
9921
|
+
}
|
|
9922
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewer = {
|
|
9923
|
+
approvalStatus?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatus>;
|
|
9924
|
+
matchType?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewermatchTypeEnum>;
|
|
9925
|
+
reviewerAri?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerAri>;
|
|
9926
|
+
};
|
|
9927
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatus = {
|
|
9928
|
+
notValues?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToReviewerReviewerStatusEnum>>;
|
|
9929
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatusMetadataSortField>;
|
|
9930
|
+
values?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToReviewerReviewerStatusEnum>>;
|
|
9931
|
+
};
|
|
9932
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerApprovalStatusMetadataSortField = {
|
|
9933
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
9934
|
+
priority?: Maybe<Scalars['Int']>;
|
|
9935
|
+
};
|
|
9936
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerAri = {
|
|
9937
|
+
value?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValue>;
|
|
9938
|
+
};
|
|
9939
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValue = {
|
|
9940
|
+
notValues?: Maybe<Array<Scalars['String']>>;
|
|
9941
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValueMetadataSortField>;
|
|
9942
|
+
values?: Maybe<Array<Scalars['String']>>;
|
|
9943
|
+
};
|
|
9944
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToReviewerAriValueMetadataSortField = {
|
|
9945
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
9946
|
+
priority?: Maybe<Scalars['Int']>;
|
|
9947
|
+
};
|
|
9948
|
+
export declare enum GraphQueryMetadataProjectAssociatedPrInputToReviewerReviewerStatusEnum {
|
|
9949
|
+
Approved = "APPROVED",
|
|
9950
|
+
Needswork = "NEEDSWORK",
|
|
9951
|
+
NotSet = "NOT_SET",
|
|
9952
|
+
Unapproved = "UNAPPROVED"
|
|
9953
|
+
}
|
|
9954
|
+
export declare enum GraphQueryMetadataProjectAssociatedPrInputToReviewermatchTypeEnum {
|
|
9955
|
+
All = "ALL",
|
|
9956
|
+
Any = "ANY",
|
|
9957
|
+
None = "NONE"
|
|
9958
|
+
}
|
|
9959
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToStatus = {
|
|
9960
|
+
notValues?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToPullRequestStatusEnum>>;
|
|
9961
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToStatusMetadataSortField>;
|
|
9962
|
+
values?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputToPullRequestStatusEnum>>;
|
|
9963
|
+
};
|
|
9964
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToStatusMetadataSortField = {
|
|
9965
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
9966
|
+
priority?: Maybe<Scalars['Int']>;
|
|
9967
|
+
};
|
|
9968
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToTaskCount = {
|
|
9969
|
+
notValues?: Maybe<Array<Scalars['Int']>>;
|
|
9970
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCountRangeField>;
|
|
9971
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedPrInputToTaskCountMetadataSortField>;
|
|
9972
|
+
values?: Maybe<Array<Scalars['Int']>>;
|
|
9973
|
+
};
|
|
9974
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToTaskCountMetadataSortField = {
|
|
9975
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
9976
|
+
priority?: Maybe<Scalars['Int']>;
|
|
9977
|
+
};
|
|
9978
|
+
export type GraphQueryMetadataProjectAssociatedPrInputToTaskCountRangeField = {
|
|
9979
|
+
gt?: Maybe<Scalars['Int']>;
|
|
9980
|
+
gte?: Maybe<Scalars['Int']>;
|
|
9981
|
+
lt?: Maybe<Scalars['Int']>;
|
|
9982
|
+
lte?: Maybe<Scalars['Int']>;
|
|
9983
|
+
};
|
|
9984
|
+
export declare enum GraphQueryMetadataSortEnum {
|
|
9985
|
+
Asc = "ASC",
|
|
9986
|
+
Desc = "DESC"
|
|
9987
|
+
}
|
|
9558
9988
|
export type GraphSprintRetrospectivePagePayload = Payload & {
|
|
9559
9989
|
__typename?: 'GraphSprintRetrospectivePagePayload';
|
|
9560
9990
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -12806,6 +13236,7 @@ export type JiraIssueFieldsInput = {
|
|
|
12806
13236
|
assetsField?: Maybe<JiraAssetFieldInput>;
|
|
12807
13237
|
timeTrackingField?: Maybe<JiraTimeTrackingFieldInput>;
|
|
12808
13238
|
projectFields?: Maybe<Array<JiraProjectFieldInput>>;
|
|
13239
|
+
issueType?: Maybe<JiraIssueTypeInput>;
|
|
12809
13240
|
};
|
|
12810
13241
|
export type JiraIssueHierarchyConfigData = {
|
|
12811
13242
|
__typename?: 'JiraIssueHierarchyConfigData';
|
|
@@ -13337,6 +13768,10 @@ export type JiraIssueTypeHierarchyLevel = {
|
|
|
13337
13768
|
level?: Maybe<Scalars['Int']>;
|
|
13338
13769
|
name?: Maybe<Scalars['String']>;
|
|
13339
13770
|
};
|
|
13771
|
+
export type JiraIssueTypeInput = {
|
|
13772
|
+
id?: Maybe<Scalars['ID']>;
|
|
13773
|
+
issueTypeId: Scalars['ID'];
|
|
13774
|
+
};
|
|
13340
13775
|
export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
13341
13776
|
NewestFirst = "NEWEST_FIRST",
|
|
13342
13777
|
OldestFirst = "OLDEST_FIRST"
|
|
@@ -20102,6 +20537,11 @@ export declare enum NlpDisclaimer {
|
|
|
20102
20537
|
}
|
|
20103
20538
|
export declare enum NlpErrorState {
|
|
20104
20539
|
NoAnswer = "NO_ANSWER",
|
|
20540
|
+
NoAnswerKeywords = "NO_ANSWER_KEYWORDS",
|
|
20541
|
+
NoAnswerSearchResults = "NO_ANSWER_SEARCH_RESULTS",
|
|
20542
|
+
NoAnswerHydration = "NO_ANSWER_HYDRATION",
|
|
20543
|
+
NoAnswerRelevantContent = "NO_ANSWER_RELEVANT_CONTENT",
|
|
20544
|
+
NoAnswerOpenAiResponseErr = "NO_ANSWER_OPEN_AI_RESPONSE_ERR",
|
|
20105
20545
|
SubjectiveQuery = "SUBJECTIVE_QUERY",
|
|
20106
20546
|
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS"
|
|
20107
20547
|
}
|