@forge/cli-shared 3.14.1-next.2 → 3.15.0-next.4
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 +13 -0
- package/out/graphql/graphql-types.d.ts +735 -39
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +89 -8
- package/out/shared/error-handling.d.ts +4 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +8 -1
- package/package.json +2 -2
|
@@ -730,6 +730,7 @@ export declare type AppLog = FunctionInvocationMetadata & Node & {
|
|
|
730
730
|
trigger?: Maybe<FunctionTrigger>;
|
|
731
731
|
moduleType?: Maybe<Scalars['String']>;
|
|
732
732
|
startTime?: Maybe<Scalars['String']>;
|
|
733
|
+
traceId?: Maybe<Scalars['ID']>;
|
|
733
734
|
appLogLines?: Maybe<AppLogLines>;
|
|
734
735
|
};
|
|
735
736
|
export declare type AppLogAppLogLinesArgs = {
|
|
@@ -814,11 +815,13 @@ export declare type AppPrincipal = {
|
|
|
814
815
|
id?: Maybe<Scalars['ID']>;
|
|
815
816
|
};
|
|
816
817
|
export declare type AppRecContext = {
|
|
817
|
-
|
|
818
|
+
userId?: Maybe<Scalars['ID']>;
|
|
819
|
+
tenantId?: Maybe<Scalars['ID']>;
|
|
818
820
|
product?: Maybe<Scalars['String']>;
|
|
819
821
|
subproduct?: Maybe<Scalars['String']>;
|
|
820
|
-
|
|
821
|
-
|
|
822
|
+
containers?: Maybe<Scalars['JSON']>;
|
|
823
|
+
locale?: Maybe<Scalars['String']>;
|
|
824
|
+
sessionId?: Maybe<Scalars['ID']>;
|
|
822
825
|
};
|
|
823
826
|
export declare type AppRecDismissRecommendationInput = {
|
|
824
827
|
productId: Scalars['ID'];
|
|
@@ -2019,7 +2022,7 @@ export declare type CcpSubscriptionSchedule = {
|
|
|
2019
2022
|
subscriptionScheduleAction?: Maybe<CcpSubscriptionScheduleAction>;
|
|
2020
2023
|
offeringId?: Maybe<Scalars['ID']>;
|
|
2021
2024
|
pricingPlanId?: Maybe<Scalars['ID']>;
|
|
2022
|
-
chargeQuantities?: Maybe<Array<CcpChargeQuantity
|
|
2025
|
+
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
2023
2026
|
promotionIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
2024
2027
|
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
2025
2028
|
trial?: Maybe<CcpTrial>;
|
|
@@ -2194,6 +2197,23 @@ export declare type CompassAnnouncementAcknowledgement = {
|
|
|
2194
2197
|
component?: Maybe<CompassComponent>;
|
|
2195
2198
|
hasAcknowledged?: Maybe<Scalars['Boolean']>;
|
|
2196
2199
|
};
|
|
2200
|
+
export declare type CompassApplicationManagedComponentsConnection = {
|
|
2201
|
+
__typename?: 'CompassApplicationManagedComponentsConnection';
|
|
2202
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
2203
|
+
edges?: Maybe<Array<CompassApplicationManagedComponentsEdge>>;
|
|
2204
|
+
pageInfo: PageInfo;
|
|
2205
|
+
};
|
|
2206
|
+
export declare type CompassApplicationManagedComponentsEdge = {
|
|
2207
|
+
__typename?: 'CompassApplicationManagedComponentsEdge';
|
|
2208
|
+
cursor: Scalars['String'];
|
|
2209
|
+
node?: Maybe<CompassComponent>;
|
|
2210
|
+
};
|
|
2211
|
+
export declare type CompassApplicationManagedComponentsQuery = {
|
|
2212
|
+
cloudId: Scalars['ID'];
|
|
2213
|
+
first?: Maybe<Scalars['Int']>;
|
|
2214
|
+
after?: Maybe<Scalars['String']>;
|
|
2215
|
+
};
|
|
2216
|
+
export declare type CompassApplicationManagedComponentsResult = CompassApplicationManagedComponentsConnection | QueryError;
|
|
2197
2217
|
export declare type CompassBuildEvent = CompassEvent & {
|
|
2198
2218
|
__typename?: 'CompassBuildEvent';
|
|
2199
2219
|
eventType: CompassEventType;
|
|
@@ -2493,6 +2513,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
2493
2513
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
2494
2514
|
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
2495
2515
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
2516
|
+
applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
|
|
2496
2517
|
};
|
|
2497
2518
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
2498
2519
|
id: Scalars['ID'];
|
|
@@ -2563,6 +2584,9 @@ export declare type CompassCatalogQueryApiMetricValuesTimeSeriesArgs = {
|
|
|
2563
2584
|
export declare type CompassCatalogQueryApiStarredComponentsArgs = {
|
|
2564
2585
|
cloudId: Scalars['ID'];
|
|
2565
2586
|
};
|
|
2587
|
+
export declare type CompassCatalogQueryApiApplicationManagedComponentsArgs = {
|
|
2588
|
+
query: CompassApplicationManagedComponentsQuery;
|
|
2589
|
+
};
|
|
2566
2590
|
export declare type CompassChangeMetadata = {
|
|
2567
2591
|
__typename?: 'CompassChangeMetadata';
|
|
2568
2592
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -3008,6 +3032,15 @@ export declare type CompassCustomFieldScorecardCriteria = {
|
|
|
3008
3032
|
export declare type CompassCustomFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
3009
3033
|
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
3010
3034
|
};
|
|
3035
|
+
export declare type CompassCustomMultiSelectFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
3036
|
+
__typename?: 'CompassCustomMultiSelectFieldDefinition';
|
|
3037
|
+
id: Scalars['ID'];
|
|
3038
|
+
name?: Maybe<Scalars['String']>;
|
|
3039
|
+
description?: Maybe<Scalars['String']>;
|
|
3040
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3041
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
3042
|
+
options?: Maybe<Array<CompassCustomSelectFieldOption>>;
|
|
3043
|
+
};
|
|
3011
3044
|
export declare type CompassCustomNumberField = CompassCustomField & {
|
|
3012
3045
|
__typename?: 'CompassCustomNumberField';
|
|
3013
3046
|
definition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
@@ -3025,6 +3058,20 @@ export declare type CompassCustomNumberFieldInput = {
|
|
|
3025
3058
|
definitionId: Scalars['ID'];
|
|
3026
3059
|
numberValue?: Maybe<Scalars['Float']>;
|
|
3027
3060
|
};
|
|
3061
|
+
export declare type CompassCustomSelectFieldOption = Node & {
|
|
3062
|
+
__typename?: 'CompassCustomSelectFieldOption';
|
|
3063
|
+
id: Scalars['ID'];
|
|
3064
|
+
value: Scalars['String'];
|
|
3065
|
+
};
|
|
3066
|
+
export declare type CompassCustomSingleSelectFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
3067
|
+
__typename?: 'CompassCustomSingleSelectFieldDefinition';
|
|
3068
|
+
id: Scalars['ID'];
|
|
3069
|
+
name?: Maybe<Scalars['String']>;
|
|
3070
|
+
description?: Maybe<Scalars['String']>;
|
|
3071
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3072
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
3073
|
+
options?: Maybe<Array<CompassCustomSelectFieldOption>>;
|
|
3074
|
+
};
|
|
3028
3075
|
export declare type CompassCustomTextField = CompassCustomField & {
|
|
3029
3076
|
__typename?: 'CompassCustomTextField';
|
|
3030
3077
|
definition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
@@ -5272,6 +5319,46 @@ export declare enum ContentPlatformBooleanOperators {
|
|
|
5272
5319
|
And = "AND",
|
|
5273
5320
|
Or = "OR"
|
|
5274
5321
|
}
|
|
5322
|
+
export declare type ContentPlatformContentEdge = {
|
|
5323
|
+
__typename?: 'ContentPlatformContentEdge';
|
|
5324
|
+
node: ContentPlatformContentFacet;
|
|
5325
|
+
cursor: Scalars['String'];
|
|
5326
|
+
};
|
|
5327
|
+
export declare type ContentPlatformContentFacet = {
|
|
5328
|
+
__typename?: 'ContentPlatformContentFacet';
|
|
5329
|
+
contentType: Scalars['String'];
|
|
5330
|
+
field: Scalars['String'];
|
|
5331
|
+
totalCount: Scalars['Float'];
|
|
5332
|
+
context: Scalars['JSON'];
|
|
5333
|
+
};
|
|
5334
|
+
export declare type ContentPlatformContentFacetClause = {
|
|
5335
|
+
and?: Maybe<Array<ContentPlatformContentFacetClause>>;
|
|
5336
|
+
or?: Maybe<Array<ContentPlatformContentFacetClause>>;
|
|
5337
|
+
not?: Maybe<Array<ContentPlatformContentFacetClause>>;
|
|
5338
|
+
isNull?: Maybe<Scalars['String']>;
|
|
5339
|
+
isNotNull?: Maybe<Scalars['String']>;
|
|
5340
|
+
withLocales?: Maybe<Array<Scalars['String']>>;
|
|
5341
|
+
returnDefaultLocaleIfNoResult?: Maybe<Scalars['Boolean']>;
|
|
5342
|
+
fieldNamed?: Maybe<Scalars['String']>;
|
|
5343
|
+
havingValues?: Maybe<Array<Scalars['String']>>;
|
|
5344
|
+
};
|
|
5345
|
+
export declare type ContentPlatformContentFacetClauseType = {
|
|
5346
|
+
__typename?: 'ContentPlatformContentFacetClauseType';
|
|
5347
|
+
and?: Maybe<Array<ContentPlatformContentFacetClauseType>>;
|
|
5348
|
+
or?: Maybe<Array<ContentPlatformContentFacetClauseType>>;
|
|
5349
|
+
not?: Maybe<Array<ContentPlatformContentFacetClauseType>>;
|
|
5350
|
+
isNull?: Maybe<Scalars['String']>;
|
|
5351
|
+
isNotNull?: Maybe<Scalars['String']>;
|
|
5352
|
+
withLocales?: Maybe<Array<Scalars['String']>>;
|
|
5353
|
+
returnDefaultLocaleIfNoResult?: Maybe<Scalars['Boolean']>;
|
|
5354
|
+
fieldNamed?: Maybe<Scalars['String']>;
|
|
5355
|
+
havingValues?: Maybe<Array<Scalars['String']>>;
|
|
5356
|
+
};
|
|
5357
|
+
export declare type ContentPlatformContentFacetConnection = {
|
|
5358
|
+
__typename?: 'ContentPlatformContentFacetConnection';
|
|
5359
|
+
pageInfo: PageInfo;
|
|
5360
|
+
edges: Array<ContentPlatformContentEdge>;
|
|
5361
|
+
};
|
|
5275
5362
|
export declare type ContentPlatformContextApp = {
|
|
5276
5363
|
__typename?: 'ContentPlatformContextApp';
|
|
5277
5364
|
contextId: Scalars['String'];
|
|
@@ -6354,6 +6441,17 @@ export declare type DataAccessAndStorage = {
|
|
|
6354
6441
|
appProcessEUDOutsideAtlassian?: Maybe<Scalars['Boolean']>;
|
|
6355
6442
|
appStoresEUDOutsideAtlassian?: Maybe<Scalars['Boolean']>;
|
|
6356
6443
|
};
|
|
6444
|
+
export declare type DataClassificationPolicyDecision = {
|
|
6445
|
+
__typename?: 'DataClassificationPolicyDecision';
|
|
6446
|
+
status: DataClassificationPolicyDecisionStatus;
|
|
6447
|
+
};
|
|
6448
|
+
export declare type DataClassificationPolicyDecisionInput = {
|
|
6449
|
+
dataClassificationTags: Array<Scalars['ID']>;
|
|
6450
|
+
};
|
|
6451
|
+
export declare enum DataClassificationPolicyDecisionStatus {
|
|
6452
|
+
Allowed = "ALLOWED",
|
|
6453
|
+
Blocked = "BLOCKED"
|
|
6454
|
+
}
|
|
6357
6455
|
export declare type DataController = {
|
|
6358
6456
|
__typename?: 'DataController';
|
|
6359
6457
|
isAppDataController: AcceptableResponse;
|
|
@@ -6847,6 +6945,7 @@ export declare type DevOpsDocument = {
|
|
|
6847
6945
|
byteSize?: Maybe<Scalars['Long']>;
|
|
6848
6946
|
exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
|
|
6849
6947
|
hasChildren?: Maybe<Scalars['Boolean']>;
|
|
6948
|
+
externalId?: Maybe<Scalars['String']>;
|
|
6850
6949
|
};
|
|
6851
6950
|
export declare enum DevOpsDocumentCategory {
|
|
6852
6951
|
Folder = "FOLDER",
|
|
@@ -7248,6 +7347,14 @@ export declare type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
|
|
|
7248
7347
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7249
7348
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7250
7349
|
};
|
|
7350
|
+
export declare type DevOpsRepository = {
|
|
7351
|
+
__typename?: 'DevOpsRepository';
|
|
7352
|
+
id: Scalars['ID'];
|
|
7353
|
+
providerId?: Maybe<Scalars['String']>;
|
|
7354
|
+
name?: Maybe<Scalars['String']>;
|
|
7355
|
+
url?: Maybe<Scalars['URL']>;
|
|
7356
|
+
avatarUrl?: Maybe<Scalars['URL']>;
|
|
7357
|
+
};
|
|
7251
7358
|
export declare enum DevOpsRepositoryHostingProviderFilter {
|
|
7252
7359
|
BitbucketCloud = "BITBUCKET_CLOUD",
|
|
7253
7360
|
ThirdParty = "THIRD_PARTY",
|
|
@@ -8172,6 +8279,10 @@ export declare type Extension = {
|
|
|
8172
8279
|
currentUserConsent?: Maybe<UserConsentExtension>;
|
|
8173
8280
|
requiresUserConsent?: Maybe<Scalars['Boolean']>;
|
|
8174
8281
|
requiresAutoConsent?: Maybe<Scalars['Boolean']>;
|
|
8282
|
+
dataClassificationPolicyDecision: DataClassificationPolicyDecision;
|
|
8283
|
+
};
|
|
8284
|
+
export declare type ExtensionDataClassificationPolicyDecisionArgs = {
|
|
8285
|
+
input: DataClassificationPolicyDecisionInput;
|
|
8175
8286
|
};
|
|
8176
8287
|
export declare type ExtensionContext = {
|
|
8177
8288
|
__typename?: 'ExtensionContext';
|
|
@@ -9270,7 +9381,7 @@ export declare enum HelpLayoutAtomicElementKey {
|
|
|
9270
9381
|
Paragraph = "PARAGRAPH",
|
|
9271
9382
|
Search = "SEARCH"
|
|
9272
9383
|
}
|
|
9273
|
-
export declare type HelpLayoutAtomicElementType = {
|
|
9384
|
+
export declare type HelpLayoutAtomicElementType = HelpLayoutElementType & {
|
|
9274
9385
|
__typename?: 'HelpLayoutAtomicElementType';
|
|
9275
9386
|
key?: Maybe<HelpLayoutAtomicElementKey>;
|
|
9276
9387
|
displayName?: Maybe<Scalars['String']>;
|
|
@@ -9278,6 +9389,9 @@ export declare type HelpLayoutAtomicElementType = {
|
|
|
9278
9389
|
category?: Maybe<HelpLayoutElementCategory>;
|
|
9279
9390
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
9280
9391
|
};
|
|
9392
|
+
export declare type HelpLayoutAtomicElementTypeMediaConfigArgs = {
|
|
9393
|
+
parentAri: Scalars['ID'];
|
|
9394
|
+
};
|
|
9281
9395
|
export declare type HelpLayoutCompositeElement = {
|
|
9282
9396
|
id: Scalars['ID'];
|
|
9283
9397
|
visualConfig?: Maybe<Scalars['String']>;
|
|
@@ -9287,7 +9401,7 @@ export declare type HelpLayoutCompositeElement = {
|
|
|
9287
9401
|
export declare enum HelpLayoutCompositeElementKey {
|
|
9288
9402
|
LinkCard = "LINK_CARD"
|
|
9289
9403
|
}
|
|
9290
|
-
export declare type HelpLayoutCompositeElementType = {
|
|
9404
|
+
export declare type HelpLayoutCompositeElementType = HelpLayoutElementType & {
|
|
9291
9405
|
__typename?: 'HelpLayoutCompositeElementType';
|
|
9292
9406
|
key?: Maybe<HelpLayoutCompositeElementKey>;
|
|
9293
9407
|
displayName?: Maybe<Scalars['String']>;
|
|
@@ -9302,7 +9416,7 @@ export declare type HelpLayoutCreatePayload = Payload & {
|
|
|
9302
9416
|
layoutId?: Maybe<Scalars['ID']>;
|
|
9303
9417
|
};
|
|
9304
9418
|
export declare type HelpLayoutCreationInput = {
|
|
9305
|
-
|
|
9419
|
+
parentAri: Scalars['ID'];
|
|
9306
9420
|
sections: Array<HelpLayoutSectionInput>;
|
|
9307
9421
|
};
|
|
9308
9422
|
export declare type HelpLayoutElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement | HelpLayoutLinkCardCompositeElement;
|
|
@@ -9325,12 +9439,17 @@ export declare enum HelpLayoutElementKey {
|
|
|
9325
9439
|
Search = "SEARCH",
|
|
9326
9440
|
LinkCard = "LINK_CARD"
|
|
9327
9441
|
}
|
|
9328
|
-
export declare type
|
|
9442
|
+
export declare type HelpLayoutElementType = {
|
|
9443
|
+
displayName?: Maybe<Scalars['String']>;
|
|
9444
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
9445
|
+
category?: Maybe<HelpLayoutElementCategory>;
|
|
9446
|
+
};
|
|
9329
9447
|
export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
9330
9448
|
__typename?: 'HelpLayoutHeadingAtomicElement';
|
|
9331
9449
|
id: Scalars['ID'];
|
|
9332
9450
|
visualConfig?: Maybe<Scalars['String']>;
|
|
9333
9451
|
config?: Maybe<HelpLayoutHeadingAtomicElementConfig>;
|
|
9452
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
9334
9453
|
};
|
|
9335
9454
|
export declare type HelpLayoutHeadingAtomicElementConfig = {
|
|
9336
9455
|
__typename?: 'HelpLayoutHeadingAtomicElementConfig';
|
|
@@ -9396,7 +9515,7 @@ export declare type HelpLayoutMutationApi = {
|
|
|
9396
9515
|
__typename?: 'HelpLayoutMutationApi';
|
|
9397
9516
|
createLayout: HelpLayoutCreatePayload;
|
|
9398
9517
|
deleteLayout?: Maybe<Payload>;
|
|
9399
|
-
updateLayout?: Maybe<
|
|
9518
|
+
updateLayout?: Maybe<HelpLayoutUpdatePayload>;
|
|
9400
9519
|
};
|
|
9401
9520
|
export declare type HelpLayoutMutationApiCreateLayoutArgs = {
|
|
9402
9521
|
input: HelpLayoutCreationInput;
|
|
@@ -9412,6 +9531,7 @@ export declare type HelpLayoutParagraphAtomicElement = HelpLayoutVisualEntity &
|
|
|
9412
9531
|
id: Scalars['ID'];
|
|
9413
9532
|
visualConfig?: Maybe<Scalars['String']>;
|
|
9414
9533
|
config?: Maybe<HelpLayoutParagraphAtomicElementConfig>;
|
|
9534
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
9415
9535
|
};
|
|
9416
9536
|
export declare type HelpLayoutParagraphAtomicElementConfig = {
|
|
9417
9537
|
__typename?: 'HelpLayoutParagraphAtomicElementConfig';
|
|
@@ -9424,7 +9544,7 @@ export declare type HelpLayoutParagraphConfigInput = {
|
|
|
9424
9544
|
export declare type HelpLayoutQueryApi = {
|
|
9425
9545
|
__typename?: 'HelpLayoutQueryApi';
|
|
9426
9546
|
layout?: Maybe<HelpLayoutResult>;
|
|
9427
|
-
elementTypes?: Maybe<Array<
|
|
9547
|
+
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
9428
9548
|
};
|
|
9429
9549
|
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
9430
9550
|
id: Scalars['ID'];
|
|
@@ -9435,6 +9555,7 @@ export declare type HelpLayoutSearchAtomicElement = HelpLayoutVisualEntity & Nod
|
|
|
9435
9555
|
id: Scalars['ID'];
|
|
9436
9556
|
visualConfig?: Maybe<Scalars['String']>;
|
|
9437
9557
|
config?: Maybe<HelpLayoutSearchAtomicElementConfig>;
|
|
9558
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
9438
9559
|
};
|
|
9439
9560
|
export declare type HelpLayoutSearchAtomicElementConfig = {
|
|
9440
9561
|
__typename?: 'HelpLayoutSearchAtomicElementConfig';
|
|
@@ -9481,7 +9602,13 @@ export declare type HelpLayoutSubsectionInput = {
|
|
|
9481
9602
|
};
|
|
9482
9603
|
export declare type HelpLayoutUpdateInput = {
|
|
9483
9604
|
layoutId: Scalars['ID'];
|
|
9484
|
-
|
|
9605
|
+
sections: Array<HelpLayoutSectionInput>;
|
|
9606
|
+
};
|
|
9607
|
+
export declare type HelpLayoutUpdatePayload = Payload & {
|
|
9608
|
+
__typename?: 'HelpLayoutUpdatePayload';
|
|
9609
|
+
success: Scalars['Boolean'];
|
|
9610
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9611
|
+
layoutId?: Maybe<Scalars['ID']>;
|
|
9485
9612
|
};
|
|
9486
9613
|
export declare type HelpLayoutVisualEntity = {
|
|
9487
9614
|
visualConfig?: Maybe<Scalars['String']>;
|
|
@@ -10281,6 +10408,7 @@ export declare type JiraAttachmentsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
10281
10408
|
description?: Maybe<Scalars['String']>;
|
|
10282
10409
|
permissions?: Maybe<Array<Maybe<JiraAttachmentsPermissions>>>;
|
|
10283
10410
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
10411
|
+
temporaryAttachments?: Maybe<JiraTemporaryAttachmentConnection>;
|
|
10284
10412
|
maxAllowedTotalAttachmentsSize?: Maybe<Scalars['Long']>;
|
|
10285
10413
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
10286
10414
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -10292,6 +10420,13 @@ export declare type JiraAttachmentsFieldAttachmentsArgs = {
|
|
|
10292
10420
|
orderField?: Maybe<JiraAttachmentsOrderField>;
|
|
10293
10421
|
orderDirection?: Maybe<JiraOrderDirection>;
|
|
10294
10422
|
};
|
|
10423
|
+
export declare type JiraAttachmentsFieldTemporaryAttachmentsArgs = {
|
|
10424
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
10425
|
+
first?: Maybe<Scalars['Int']>;
|
|
10426
|
+
after?: Maybe<Scalars['String']>;
|
|
10427
|
+
last?: Maybe<Scalars['Int']>;
|
|
10428
|
+
before?: Maybe<Scalars['String']>;
|
|
10429
|
+
};
|
|
10295
10430
|
export declare type JiraAttachmentsOrderField = {
|
|
10296
10431
|
id?: Maybe<Scalars['ID']>;
|
|
10297
10432
|
};
|
|
@@ -12556,6 +12691,26 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
12556
12691
|
errors?: Maybe<Array<MutationError>>;
|
|
12557
12692
|
view?: Maybe<JiraIssueSearchView>;
|
|
12558
12693
|
};
|
|
12694
|
+
export declare enum JiraIssueTransitionLayoutMessageType {
|
|
12695
|
+
Error = "ERROR",
|
|
12696
|
+
Warn = "WARN",
|
|
12697
|
+
Info = "INFO",
|
|
12698
|
+
Success = "SUCCESS"
|
|
12699
|
+
}
|
|
12700
|
+
export declare type JiraIssueTransitionMessage = {
|
|
12701
|
+
__typename?: 'JiraIssueTransitionMessage';
|
|
12702
|
+
type?: Maybe<JiraIssueTransitionLayoutMessageType>;
|
|
12703
|
+
title?: Maybe<Scalars['String']>;
|
|
12704
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
12705
|
+
content?: Maybe<JiraRichText>;
|
|
12706
|
+
};
|
|
12707
|
+
export declare type JiraIssueTransitionModal = {
|
|
12708
|
+
__typename?: 'JiraIssueTransitionModal';
|
|
12709
|
+
contentSections?: Maybe<JiraScreenTabLayout>;
|
|
12710
|
+
title?: Maybe<Scalars['String']>;
|
|
12711
|
+
description?: Maybe<Scalars['String']>;
|
|
12712
|
+
messages?: Maybe<Array<Maybe<JiraIssueTransitionMessage>>>;
|
|
12713
|
+
};
|
|
12559
12714
|
export declare type JiraIssueType = Node & {
|
|
12560
12715
|
__typename?: 'JiraIssueType';
|
|
12561
12716
|
id: Scalars['ID'];
|
|
@@ -12633,7 +12788,7 @@ export declare type JiraJqlFromNaturalLanguage = {
|
|
|
12633
12788
|
generatedJQL?: Maybe<Scalars['String']>;
|
|
12634
12789
|
generatedJQLError?: Maybe<JiraJqlGenerationError>;
|
|
12635
12790
|
};
|
|
12636
|
-
export declare type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
12791
|
+
export declare type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError | JiraUiExposedError;
|
|
12637
12792
|
export declare enum JiraJqlAutocompleteType {
|
|
12638
12793
|
None = "NONE",
|
|
12639
12794
|
Component = "COMPONENT",
|
|
@@ -13280,6 +13435,16 @@ export declare type JiraMultipleSelectFieldFieldOptionsArgs = {
|
|
|
13280
13435
|
last?: Maybe<Scalars['Int']>;
|
|
13281
13436
|
before?: Maybe<Scalars['String']>;
|
|
13282
13437
|
};
|
|
13438
|
+
export declare type JiraMultipleSelectFieldOperationInput = {
|
|
13439
|
+
operation: JiraMultiValueFieldOperations;
|
|
13440
|
+
ids: Array<Scalars['ID']>;
|
|
13441
|
+
};
|
|
13442
|
+
export declare type JiraMultipleSelectFieldPayload = Payload & {
|
|
13443
|
+
__typename?: 'JiraMultipleSelectFieldPayload';
|
|
13444
|
+
success: Scalars['Boolean'];
|
|
13445
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13446
|
+
field?: Maybe<JiraMultipleSelectField>;
|
|
13447
|
+
};
|
|
13283
13448
|
export declare type JiraMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
13284
13449
|
__typename?: 'JiraMultipleSelectUserPickerField';
|
|
13285
13450
|
id: Scalars['ID'];
|
|
@@ -13390,12 +13555,17 @@ export declare type JiraMutation = {
|
|
|
13390
13555
|
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
13391
13556
|
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
13392
13557
|
updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
|
|
13558
|
+
updateStatusByQuickTransition?: Maybe<JiraStatusFieldPayload>;
|
|
13559
|
+
updateMultipleSelectField?: Maybe<JiraMultipleSelectFieldPayload>;
|
|
13560
|
+
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
13561
|
+
updateTeamField?: Maybe<JiraTeamFieldPayload>;
|
|
13393
13562
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
13394
13563
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
13395
13564
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
13396
13565
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
13397
13566
|
addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
|
|
13398
13567
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
13568
|
+
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
13399
13569
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
13400
13570
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
13401
13571
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
@@ -13557,6 +13727,18 @@ export declare type JiraMutationUpdateRadioSelectFieldArgs = {
|
|
|
13557
13727
|
export declare type JiraMutationUpdateComponentsFieldArgs = {
|
|
13558
13728
|
input: JiraUpdateComponentsFieldInput;
|
|
13559
13729
|
};
|
|
13730
|
+
export declare type JiraMutationUpdateStatusByQuickTransitionArgs = {
|
|
13731
|
+
input: JiraUpdateStatusFieldInput;
|
|
13732
|
+
};
|
|
13733
|
+
export declare type JiraMutationUpdateMultipleSelectFieldArgs = {
|
|
13734
|
+
input: JiraUpdateMultipleSelectFieldInput;
|
|
13735
|
+
};
|
|
13736
|
+
export declare type JiraMutationUpdateProjectFieldArgs = {
|
|
13737
|
+
input: JiraUpdateProjectFieldInput;
|
|
13738
|
+
};
|
|
13739
|
+
export declare type JiraMutationUpdateTeamFieldArgs = {
|
|
13740
|
+
input: JiraUpdateTeamFieldInput;
|
|
13741
|
+
};
|
|
13560
13742
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
13561
13743
|
input: JiraPermissionSchemeAddGrantInput;
|
|
13562
13744
|
};
|
|
@@ -13576,6 +13758,9 @@ export declare type JiraMutationAddJiraVersionApproverArgs = {
|
|
|
13576
13758
|
export declare type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
13577
13759
|
id: Scalars['ID'];
|
|
13578
13760
|
};
|
|
13761
|
+
export declare type JiraMutationUpdateJiraVersionApproverDescriptionArgs = {
|
|
13762
|
+
input: JiraVersionUpdateApproverDescriptionInput;
|
|
13763
|
+
};
|
|
13579
13764
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
13580
13765
|
input: JiraCreateShortcutInput;
|
|
13581
13766
|
};
|
|
@@ -14499,6 +14684,16 @@ export declare type JiraProjectFieldProjectsArgs = {
|
|
|
14499
14684
|
before?: Maybe<Scalars['String']>;
|
|
14500
14685
|
recent?: Maybe<Scalars['Boolean']>;
|
|
14501
14686
|
};
|
|
14687
|
+
export declare type JiraProjectFieldOperationInput = {
|
|
14688
|
+
operation: JiraSingleValueFieldOperations;
|
|
14689
|
+
id?: Maybe<Scalars['ID']>;
|
|
14690
|
+
};
|
|
14691
|
+
export declare type JiraProjectFieldPayload = Payload & {
|
|
14692
|
+
__typename?: 'JiraProjectFieldPayload';
|
|
14693
|
+
success: Scalars['Boolean'];
|
|
14694
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14695
|
+
field?: Maybe<JiraProjectField>;
|
|
14696
|
+
};
|
|
14502
14697
|
export declare type JiraProjectFilterInput = {
|
|
14503
14698
|
types?: Maybe<Array<JiraProjectType>>;
|
|
14504
14699
|
projectCategoryId?: Maybe<Scalars['ID']>;
|
|
@@ -14678,6 +14873,7 @@ export declare type JiraQuery = {
|
|
|
14678
14873
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
14679
14874
|
allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
|
|
14680
14875
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
14876
|
+
getIssueTransitionByIssueId?: Maybe<JiraIssueTransitionModal>;
|
|
14681
14877
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
14682
14878
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
14683
14879
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
@@ -14916,6 +15112,10 @@ export declare type JiraQueryDevOpsProvidersArgs = {
|
|
|
14916
15112
|
cloudId: Scalars['ID'];
|
|
14917
15113
|
filter?: Maybe<Array<JiraDevOpsCapability>>;
|
|
14918
15114
|
};
|
|
15115
|
+
export declare type JiraQueryGetIssueTransitionByIssueIdArgs = {
|
|
15116
|
+
transitionId: Scalars['String'];
|
|
15117
|
+
issueId: Scalars['ID'];
|
|
15118
|
+
};
|
|
14919
15119
|
export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
14920
15120
|
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
14921
15121
|
};
|
|
@@ -15424,6 +15624,52 @@ export declare type JiraScmRepository = {
|
|
|
15424
15624
|
name?: Maybe<Scalars['String']>;
|
|
15425
15625
|
entityUrl?: Maybe<Scalars['URL']>;
|
|
15426
15626
|
};
|
|
15627
|
+
export declare type JiraScreenTabLayout = {
|
|
15628
|
+
__typename?: 'JiraScreenTabLayout';
|
|
15629
|
+
items?: Maybe<JiraScreenTabLayoutItemConnection>;
|
|
15630
|
+
};
|
|
15631
|
+
export declare type JiraScreenTabLayoutItemsArgs = {
|
|
15632
|
+
first?: Maybe<Scalars['Int']>;
|
|
15633
|
+
after?: Maybe<Scalars['String']>;
|
|
15634
|
+
last?: Maybe<Scalars['Int']>;
|
|
15635
|
+
before?: Maybe<Scalars['String']>;
|
|
15636
|
+
};
|
|
15637
|
+
export declare type JiraScreenTabLayoutField = {
|
|
15638
|
+
__typename?: 'JiraScreenTabLayoutField';
|
|
15639
|
+
error?: Maybe<QueryError>;
|
|
15640
|
+
field?: Maybe<JiraIssueField>;
|
|
15641
|
+
};
|
|
15642
|
+
export declare type JiraScreenTabLayoutFieldsConnection = {
|
|
15643
|
+
__typename?: 'JiraScreenTabLayoutFieldsConnection';
|
|
15644
|
+
edges?: Maybe<Array<Maybe<JiraScreenTabLayoutFieldsEdge>>>;
|
|
15645
|
+
pageInfo: PageInfo;
|
|
15646
|
+
};
|
|
15647
|
+
export declare type JiraScreenTabLayoutFieldsEdge = {
|
|
15648
|
+
__typename?: 'JiraScreenTabLayoutFieldsEdge';
|
|
15649
|
+
node?: Maybe<JiraScreenTabLayoutField>;
|
|
15650
|
+
cursor: Scalars['String'];
|
|
15651
|
+
};
|
|
15652
|
+
export declare type JiraScreenTabLayoutItem = {
|
|
15653
|
+
__typename?: 'JiraScreenTabLayoutItem';
|
|
15654
|
+
title: Scalars['String'];
|
|
15655
|
+
fields?: Maybe<JiraScreenTabLayoutFieldsConnection>;
|
|
15656
|
+
};
|
|
15657
|
+
export declare type JiraScreenTabLayoutItemFieldsArgs = {
|
|
15658
|
+
first?: Maybe<Scalars['Int']>;
|
|
15659
|
+
after?: Maybe<Scalars['String']>;
|
|
15660
|
+
last?: Maybe<Scalars['Int']>;
|
|
15661
|
+
before?: Maybe<Scalars['String']>;
|
|
15662
|
+
};
|
|
15663
|
+
export declare type JiraScreenTabLayoutItemConnection = {
|
|
15664
|
+
__typename?: 'JiraScreenTabLayoutItemConnection';
|
|
15665
|
+
edges?: Maybe<Array<Maybe<JiraScreenTabLayoutItemEdge>>>;
|
|
15666
|
+
pageInfo: PageInfo;
|
|
15667
|
+
};
|
|
15668
|
+
export declare type JiraScreenTabLayoutItemEdge = {
|
|
15669
|
+
__typename?: 'JiraScreenTabLayoutItemEdge';
|
|
15670
|
+
node?: Maybe<JiraScreenTabLayoutItem>;
|
|
15671
|
+
cursor: Scalars['String'];
|
|
15672
|
+
};
|
|
15427
15673
|
export declare type JiraSecurityLevel = Node & {
|
|
15428
15674
|
__typename?: 'JiraSecurityLevel';
|
|
15429
15675
|
id: Scalars['ID'];
|
|
@@ -16479,6 +16725,23 @@ export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConf
|
|
|
16479
16725
|
status: JiraStatus;
|
|
16480
16726
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
16481
16727
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
16728
|
+
transitions?: Maybe<JiraTransitionConnection>;
|
|
16729
|
+
};
|
|
16730
|
+
export declare type JiraStatusFieldTransitionsArgs = {
|
|
16731
|
+
transitionId?: Maybe<Scalars['Int']>;
|
|
16732
|
+
includeRemoteOnlyTransitions?: Maybe<Scalars['Boolean']>;
|
|
16733
|
+
includeUnavailableTransitions?: Maybe<Scalars['Boolean']>;
|
|
16734
|
+
sortingOption?: Maybe<JiraTransitionSortOption>;
|
|
16735
|
+
first?: Maybe<Scalars['Int']>;
|
|
16736
|
+
after?: Maybe<Scalars['String']>;
|
|
16737
|
+
last?: Maybe<Scalars['Int']>;
|
|
16738
|
+
before?: Maybe<Scalars['String']>;
|
|
16739
|
+
};
|
|
16740
|
+
export declare type JiraStatusFieldPayload = Payload & {
|
|
16741
|
+
__typename?: 'JiraStatusFieldPayload';
|
|
16742
|
+
success: Scalars['Boolean'];
|
|
16743
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16744
|
+
field?: Maybe<JiraStatusField>;
|
|
16482
16745
|
};
|
|
16483
16746
|
export declare type JiraStoryPointEstimateFieldOperationInput = {
|
|
16484
16747
|
operation: JiraSingleValueFieldOperations;
|
|
@@ -16568,6 +16831,16 @@ export declare type JiraTeamFieldTeamsArgs = {
|
|
|
16568
16831
|
last?: Maybe<Scalars['Int']>;
|
|
16569
16832
|
before?: Maybe<Scalars['String']>;
|
|
16570
16833
|
};
|
|
16834
|
+
export declare type JiraTeamFieldOperationInput = {
|
|
16835
|
+
operation: JiraSingleValueFieldOperations;
|
|
16836
|
+
id?: Maybe<Scalars['ID']>;
|
|
16837
|
+
};
|
|
16838
|
+
export declare type JiraTeamFieldPayload = Payload & {
|
|
16839
|
+
__typename?: 'JiraTeamFieldPayload';
|
|
16840
|
+
success: Scalars['Boolean'];
|
|
16841
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16842
|
+
field?: Maybe<JiraTeamViewField>;
|
|
16843
|
+
};
|
|
16571
16844
|
export declare type JiraTeamView = {
|
|
16572
16845
|
__typename?: 'JiraTeamView';
|
|
16573
16846
|
jiraSuppliedId: Scalars['ID'];
|
|
@@ -16575,7 +16848,22 @@ export declare type JiraTeamView = {
|
|
|
16575
16848
|
jiraSuppliedVisibility?: Maybe<Scalars['Boolean']>;
|
|
16576
16849
|
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
16577
16850
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
16578
|
-
fullTeam?: Maybe<
|
|
16851
|
+
fullTeam?: Maybe<TeamV2>;
|
|
16852
|
+
};
|
|
16853
|
+
export declare type JiraTeamViewFullTeamArgs = {
|
|
16854
|
+
siteId?: Scalars['String'];
|
|
16855
|
+
};
|
|
16856
|
+
export declare type JiraTeamViewConnection = {
|
|
16857
|
+
__typename?: 'JiraTeamViewConnection';
|
|
16858
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
16859
|
+
pageInfo: PageInfo;
|
|
16860
|
+
edges?: Maybe<Array<Maybe<JiraTeamViewEdge>>>;
|
|
16861
|
+
errors?: Maybe<Array<QueryError>>;
|
|
16862
|
+
};
|
|
16863
|
+
export declare type JiraTeamViewEdge = {
|
|
16864
|
+
__typename?: 'JiraTeamViewEdge';
|
|
16865
|
+
node?: Maybe<JiraTeamView>;
|
|
16866
|
+
cursor: Scalars['String'];
|
|
16579
16867
|
};
|
|
16580
16868
|
export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
16581
16869
|
__typename?: 'JiraTeamViewField';
|
|
@@ -16586,10 +16874,35 @@ export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldCo
|
|
|
16586
16874
|
name: Scalars['String'];
|
|
16587
16875
|
description?: Maybe<Scalars['String']>;
|
|
16588
16876
|
selectedTeam?: Maybe<JiraTeamView>;
|
|
16877
|
+
teams?: Maybe<JiraTeamViewConnection>;
|
|
16589
16878
|
searchUrl?: Maybe<Scalars['String']>;
|
|
16590
16879
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
16591
16880
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
16592
16881
|
};
|
|
16882
|
+
export declare type JiraTeamViewFieldTeamsArgs = {
|
|
16883
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
16884
|
+
first?: Maybe<Scalars['Int']>;
|
|
16885
|
+
after?: Maybe<Scalars['String']>;
|
|
16886
|
+
last?: Maybe<Scalars['Int']>;
|
|
16887
|
+
before?: Maybe<Scalars['String']>;
|
|
16888
|
+
sessionId: Scalars['ID'];
|
|
16889
|
+
organisationId: Scalars['ID'];
|
|
16890
|
+
};
|
|
16891
|
+
export declare type JiraTemporaryAttachment = {
|
|
16892
|
+
__typename?: 'JiraTemporaryAttachment';
|
|
16893
|
+
mediaApiFileId?: Maybe<Scalars['String']>;
|
|
16894
|
+
};
|
|
16895
|
+
export declare type JiraTemporaryAttachmentConnection = {
|
|
16896
|
+
__typename?: 'JiraTemporaryAttachmentConnection';
|
|
16897
|
+
indicativeCount?: Maybe<Scalars['Int']>;
|
|
16898
|
+
pageInfo: PageInfo;
|
|
16899
|
+
edges?: Maybe<Array<Maybe<JiraTemporaryAttachmentEdge>>>;
|
|
16900
|
+
};
|
|
16901
|
+
export declare type JiraTemporaryAttachmentEdge = {
|
|
16902
|
+
__typename?: 'JiraTemporaryAttachmentEdge';
|
|
16903
|
+
node?: Maybe<JiraTemporaryAttachment>;
|
|
16904
|
+
cursor: Scalars['String'];
|
|
16905
|
+
};
|
|
16593
16906
|
export declare enum JiraTimeFormat {
|
|
16594
16907
|
Pretty = "PRETTY",
|
|
16595
16908
|
Days = "DAYS",
|
|
@@ -16630,6 +16943,38 @@ export declare enum JiraTimeUnit {
|
|
|
16630
16943
|
Day = "DAY",
|
|
16631
16944
|
Week = "WEEK"
|
|
16632
16945
|
}
|
|
16946
|
+
export declare type JiraTransition = {
|
|
16947
|
+
__typename?: 'JiraTransition';
|
|
16948
|
+
transitionId?: Maybe<Scalars['Int']>;
|
|
16949
|
+
name?: Maybe<Scalars['String']>;
|
|
16950
|
+
hasScreen?: Maybe<Scalars['Boolean']>;
|
|
16951
|
+
isGlobal?: Maybe<Scalars['Boolean']>;
|
|
16952
|
+
isInitial?: Maybe<Scalars['Boolean']>;
|
|
16953
|
+
hasPreConditions?: Maybe<Scalars['Boolean']>;
|
|
16954
|
+
isLooped?: Maybe<Scalars['Boolean']>;
|
|
16955
|
+
isAvailable?: Maybe<Scalars['Boolean']>;
|
|
16956
|
+
to?: Maybe<JiraStatus>;
|
|
16957
|
+
};
|
|
16958
|
+
export declare type JiraTransitionConnection = {
|
|
16959
|
+
__typename?: 'JiraTransitionConnection';
|
|
16960
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
16961
|
+
pageInfo: PageInfo;
|
|
16962
|
+
edges?: Maybe<Array<Maybe<JiraTransitionEdge>>>;
|
|
16963
|
+
errors?: Maybe<Array<QueryError>>;
|
|
16964
|
+
};
|
|
16965
|
+
export declare type JiraTransitionEdge = {
|
|
16966
|
+
__typename?: 'JiraTransitionEdge';
|
|
16967
|
+
node?: Maybe<JiraTransition>;
|
|
16968
|
+
cursor: Scalars['String'];
|
|
16969
|
+
};
|
|
16970
|
+
export declare enum JiraTransitionSortOption {
|
|
16971
|
+
OpsBarThenStatusCategory = "OPS_BAR_THEN_STATUS_CATEGORY",
|
|
16972
|
+
OpsBar = "OPS_BAR"
|
|
16973
|
+
}
|
|
16974
|
+
export declare type JiraUiExposedError = {
|
|
16975
|
+
__typename?: 'JiraUIExposedError';
|
|
16976
|
+
message?: Maybe<Scalars['String']>;
|
|
16977
|
+
};
|
|
16633
16978
|
export declare type JiraUpdateCascadingSelectFieldInput = {
|
|
16634
16979
|
id: Scalars['ID'];
|
|
16635
16980
|
operation: JiraCascadingSelectFieldOperationInput;
|
|
@@ -16677,6 +17022,10 @@ export declare type JiraUpdateLabelsFieldInput = {
|
|
|
16677
17022
|
id: Scalars['ID'];
|
|
16678
17023
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
16679
17024
|
};
|
|
17025
|
+
export declare type JiraUpdateMultipleSelectFieldInput = {
|
|
17026
|
+
id: Scalars['ID'];
|
|
17027
|
+
operations: Array<JiraMultipleSelectFieldOperationInput>;
|
|
17028
|
+
};
|
|
16680
17029
|
export declare type JiraUpdateNumberFieldInput = {
|
|
16681
17030
|
id: Scalars['ID'];
|
|
16682
17031
|
operation: JiraNumberFieldOperationInput;
|
|
@@ -16685,6 +17034,10 @@ export declare type JiraUpdatePriorityFieldInput = {
|
|
|
16685
17034
|
id: Scalars['ID'];
|
|
16686
17035
|
operation: JiraPriorityFieldOperationInput;
|
|
16687
17036
|
};
|
|
17037
|
+
export declare type JiraUpdateProjectFieldInput = {
|
|
17038
|
+
id: Scalars['ID'];
|
|
17039
|
+
operation: JiraProjectFieldOperationInput;
|
|
17040
|
+
};
|
|
16688
17041
|
export declare type JiraUpdateRadioSelectFieldInput = {
|
|
16689
17042
|
id: Scalars['ID'];
|
|
16690
17043
|
operation: JiraRadioSelectFieldOperationInput;
|
|
@@ -16723,10 +17076,18 @@ export declare type JiraUpdateSprintFieldInput = {
|
|
|
16723
17076
|
id: Scalars['ID'];
|
|
16724
17077
|
operation: JiraSprintFieldOperationInput;
|
|
16725
17078
|
};
|
|
17079
|
+
export declare type JiraUpdateStatusFieldInput = {
|
|
17080
|
+
id: Scalars['ID'];
|
|
17081
|
+
statusTransitionId: Scalars['Int'];
|
|
17082
|
+
};
|
|
16726
17083
|
export declare type JiraUpdateStoryPointEstimateFieldInput = {
|
|
16727
17084
|
id: Scalars['ID'];
|
|
16728
17085
|
operation: JiraStoryPointEstimateFieldOperationInput;
|
|
16729
17086
|
};
|
|
17087
|
+
export declare type JiraUpdateTeamFieldInput = {
|
|
17088
|
+
id: Scalars['ID'];
|
|
17089
|
+
operation: JiraTeamFieldOperationInput;
|
|
17090
|
+
};
|
|
16730
17091
|
export declare type JiraUpdateTimeTrackingFieldInput = {
|
|
16731
17092
|
id: Scalars['ID'];
|
|
16732
17093
|
originalEstimate?: Maybe<JiraEstimateInput>;
|
|
@@ -17334,6 +17695,16 @@ export declare type JiraVersionUpdateApproverDeclineReasonPayload = Payload & {
|
|
|
17334
17695
|
errors?: Maybe<Array<MutationError>>;
|
|
17335
17696
|
approver?: Maybe<JiraVersionApprover>;
|
|
17336
17697
|
};
|
|
17698
|
+
export declare type JiraVersionUpdateApproverDescriptionInput = {
|
|
17699
|
+
approverId: Scalars['ID'];
|
|
17700
|
+
description?: Maybe<Scalars['String']>;
|
|
17701
|
+
};
|
|
17702
|
+
export declare type JiraVersionUpdateApproverDescriptionPayload = Payload & {
|
|
17703
|
+
__typename?: 'JiraVersionUpdateApproverDescriptionPayload';
|
|
17704
|
+
approver?: Maybe<JiraVersionApprover>;
|
|
17705
|
+
success: Scalars['Boolean'];
|
|
17706
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17707
|
+
};
|
|
17337
17708
|
export declare type JiraVersionUpdateMutationInput = {
|
|
17338
17709
|
id: Scalars['ID'];
|
|
17339
17710
|
name: Scalars['String'];
|
|
@@ -18885,6 +19256,10 @@ export declare enum NlpErrorState {
|
|
|
18885
19256
|
SubjectiveQuery = "SUBJECTIVE_QUERY",
|
|
18886
19257
|
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS"
|
|
18887
19258
|
}
|
|
19259
|
+
export declare type NlpFollowUpResponse = {
|
|
19260
|
+
__typename?: 'NlpFollowUpResponse';
|
|
19261
|
+
followUps?: Maybe<Array<Scalars['String']>>;
|
|
19262
|
+
};
|
|
18888
19263
|
export declare type NlpSearchResponse = {
|
|
18889
19264
|
__typename?: 'NlpSearchResponse';
|
|
18890
19265
|
nlpResults?: Maybe<Array<NlpSearchResult>>;
|
|
@@ -20601,6 +20976,7 @@ export declare type Query = {
|
|
|
20601
20976
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
20602
20977
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
20603
20978
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
20979
|
+
contentFacet: ContentPlatformContentFacetConnection;
|
|
20604
20980
|
smarts?: Maybe<SmartsQueryApi>;
|
|
20605
20981
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
20606
20982
|
appRecommendations?: Maybe<AppRecQuery>;
|
|
@@ -20626,7 +21002,6 @@ export declare type Query = {
|
|
|
20626
21002
|
codeInJira?: Maybe<CodeInJira>;
|
|
20627
21003
|
partnerCatalogApi?: Maybe<PartnerCatalogApi>;
|
|
20628
21004
|
jira?: Maybe<JiraQuery>;
|
|
20629
|
-
team?: Maybe<TeamQuery>;
|
|
20630
21005
|
testing?: Maybe<Testing>;
|
|
20631
21006
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
20632
21007
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
@@ -20706,6 +21081,7 @@ export declare type Query = {
|
|
|
20706
21081
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
20707
21082
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
20708
21083
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
21084
|
+
team?: Maybe<TeamQuery>;
|
|
20709
21085
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
20710
21086
|
jwmOverview?: Maybe<JiraWorkManagementOverviewResult>;
|
|
20711
21087
|
jwmOverviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
@@ -20719,7 +21095,9 @@ export declare type Query = {
|
|
|
20719
21095
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
20720
21096
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
20721
21097
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
21098
|
+
isSainSearchEnabled?: Maybe<Scalars['Boolean']>;
|
|
20722
21099
|
nlpSearch?: Maybe<NlpSearchResponse>;
|
|
21100
|
+
nlpFollowUp?: Maybe<NlpFollowUpResponse>;
|
|
20723
21101
|
};
|
|
20724
21102
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
20725
21103
|
id: Scalars['ID'];
|
|
@@ -20753,6 +21131,13 @@ export declare type QueryReleaseNoteArgs = {
|
|
|
20753
21131
|
id: Scalars['String'];
|
|
20754
21132
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
20755
21133
|
};
|
|
21134
|
+
export declare type QueryContentFacetArgs = {
|
|
21135
|
+
after?: Maybe<Scalars['String']>;
|
|
21136
|
+
first?: Scalars['Int'];
|
|
21137
|
+
forContentType: Scalars['String'];
|
|
21138
|
+
forFields: Array<Scalars['String']>;
|
|
21139
|
+
where?: Maybe<ContentPlatformContentFacetClause>;
|
|
21140
|
+
};
|
|
20756
21141
|
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
20757
21142
|
id: Scalars['ID'];
|
|
20758
21143
|
cloudId: Scalars['ID'];
|
|
@@ -21089,10 +21474,17 @@ export declare type QueryAppDeploymentArgs = {
|
|
|
21089
21474
|
export declare type QueryHelpCenterArgs = {
|
|
21090
21475
|
cloudId: Scalars['ID'];
|
|
21091
21476
|
};
|
|
21477
|
+
export declare type QueryIsSainSearchEnabledArgs = {
|
|
21478
|
+
cloudId: Scalars['String'];
|
|
21479
|
+
};
|
|
21092
21480
|
export declare type QueryNlpSearchArgs = {
|
|
21093
21481
|
query?: Maybe<Scalars['String']>;
|
|
21094
21482
|
locations: Array<Scalars['String']>;
|
|
21095
21483
|
};
|
|
21484
|
+
export declare type QueryNlpFollowUpArgs = {
|
|
21485
|
+
query?: Maybe<Scalars['String']>;
|
|
21486
|
+
locations: Array<Scalars['String']>;
|
|
21487
|
+
};
|
|
21096
21488
|
export declare type QueryError = {
|
|
21097
21489
|
__typename?: 'QueryError';
|
|
21098
21490
|
identifier?: Maybe<Scalars['ID']>;
|
|
@@ -21139,15 +21531,44 @@ export declare enum RateLimitingCurrency {
|
|
|
21139
21531
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
21140
21532
|
NaturalLanguageToJqlCurrency = "NATURAL_LANGUAGE_TO_JQL_CURRENCY",
|
|
21141
21533
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
21142
|
-
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
21143
21534
|
TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
|
|
21144
|
-
|
|
21535
|
+
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
21145
21536
|
PolarisCurrency = "POLARIS_CURRENCY",
|
|
21537
|
+
PolarisReactionCurrency = "POLARIS_REACTION_CURRENCY",
|
|
21538
|
+
PolarisViewCurrency = "POLARIS_VIEW_CURRENCY",
|
|
21539
|
+
PolarisRankingCurrency = "POLARIS_RANKING_CURRENCY",
|
|
21540
|
+
PolarisPlayCurrency = "POLARIS_PLAY_CURRENCY",
|
|
21541
|
+
PolarisInsightCurrency = "POLARIS_INSIGHT_CURRENCY",
|
|
21542
|
+
PolarisSnippetCurrency = "POLARIS_SNIPPET_CURRENCY",
|
|
21543
|
+
PolarisProjectConfigCurrency = "POLARIS_PROJECT_CONFIG_CURRENCY",
|
|
21544
|
+
PolarisFieldCurrency = "POLARIS_FIELD_CURRENCY",
|
|
21545
|
+
PolarisViewsetCurrency = "POLARIS_VIEWSET_CURRENCY",
|
|
21546
|
+
PolarisCommentCurrency = "POLARIS_COMMENT_CURRENCY",
|
|
21547
|
+
PolarisUnfurlCurrency = "POLARIS_UNFURL_CURRENCY",
|
|
21548
|
+
PolarisIdeaTemplateCurrency = "POLARIS_IDEA_TEMPLATE_CURRENCY",
|
|
21549
|
+
PolarisIdeaCurrency = "POLARIS_IDEA_CURRENCY",
|
|
21550
|
+
PolarisOnboardingCurrency = "POLARIS_ONBOARDING_CURRENCY",
|
|
21551
|
+
PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
|
|
21552
|
+
PolarisProjectQueryCurrency = "POLARIS_PROJECT_QUERY_CURRENCY",
|
|
21553
|
+
PolarisViewArrangementInfoQueryCurrency = "POLARIS_VIEW_ARRANGEMENT_INFO_QUERY_CURRENCY",
|
|
21554
|
+
PolarisViewQueryCurrency = "POLARIS_VIEW_QUERY_CURRENCY",
|
|
21555
|
+
PolarisInsightQueryCurrency = "POLARIS_INSIGHT_QUERY_CURRENCY",
|
|
21556
|
+
PolarisInsightsQueryCurrency = "POLARIS_INSIGHTS_QUERY_CURRENCY",
|
|
21557
|
+
PolarisInsightsWithErrorsQueryCurrency = "POLARIS_INSIGHTS_WITH_ERRORS_QUERY_CURRENCY",
|
|
21558
|
+
PolarisLabelsQueryCurrency = "POLARIS_LABELS_QUERY_CURRENCY",
|
|
21559
|
+
PolarisTermsConsentQueryCurrency = "POLARIS_TERMS_CONSENT_QUERY_CURRENCY",
|
|
21560
|
+
PolarisSnippetPropertiesConfigQueryCurrency = "POLARIS_SNIPPET_PROPERTIES_CONFIG_QUERY_CURRENCY",
|
|
21561
|
+
PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
|
|
21562
|
+
PolarisIdeaTemplatesQueryCurrency = "POLARIS_IDEA_TEMPLATES_QUERY_CURRENCY",
|
|
21146
21563
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
21147
21564
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
21148
21565
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
21566
|
+
ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
|
|
21149
21567
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
21150
21568
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
21569
|
+
TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
|
|
21570
|
+
TeamV2Currency = "TEAM_V2_CURRENCY",
|
|
21571
|
+
TeamMembersV2Currency = "TEAM_MEMBERS_V2_CURRENCY",
|
|
21151
21572
|
HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
|
|
21152
21573
|
ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
|
|
21153
21574
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
@@ -21354,6 +21775,7 @@ export declare type RoadmapComponent = {
|
|
|
21354
21775
|
export declare type RoadmapConfiguration = {
|
|
21355
21776
|
__typename?: 'RoadmapConfiguration';
|
|
21356
21777
|
isCrossProject: Scalars['Boolean'];
|
|
21778
|
+
isCrossProjectInconsistent: Scalars['Boolean'];
|
|
21357
21779
|
roadmapFeatureEnabled: Scalars['Boolean'];
|
|
21358
21780
|
rankIssuesSupported: Scalars['Boolean'];
|
|
21359
21781
|
dependencies?: Maybe<RoadmapDependencyConfiguration>;
|
|
@@ -22235,7 +22657,8 @@ export declare enum Scope {
|
|
|
22235
22657
|
MigrateConfluence = "MIGRATE_CONFLUENCE",
|
|
22236
22658
|
ReadTeam = "READ_TEAM",
|
|
22237
22659
|
ReadTeamMembers = "READ_TEAM_MEMBERS",
|
|
22238
|
-
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL"
|
|
22660
|
+
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
|
|
22661
|
+
CatalogRead = "CATALOG_READ"
|
|
22239
22662
|
}
|
|
22240
22663
|
export declare type ScopeSprintIssue = {
|
|
22241
22664
|
__typename?: 'ScopeSprintIssue';
|
|
@@ -22678,6 +23101,15 @@ export declare type ShepherdActivityHistogramBucket = {
|
|
|
22678
23101
|
value: Scalars['Int'];
|
|
22679
23102
|
};
|
|
22680
23103
|
export declare type ShepherdActivityResult = QueryError | ShepherdActivityConnection;
|
|
23104
|
+
export declare type ShepherdActor = {
|
|
23105
|
+
__typename?: 'ShepherdActor';
|
|
23106
|
+
aaid: Scalars['ID'];
|
|
23107
|
+
createdOn?: Maybe<Scalars['DateTime']>;
|
|
23108
|
+
mfaEnabled?: Maybe<Scalars['Boolean']>;
|
|
23109
|
+
productAccess?: Maybe<Array<Maybe<ShepherdActorProductAccess>>>;
|
|
23110
|
+
sessions?: Maybe<Array<Maybe<ShepherdActorSession>>>;
|
|
23111
|
+
user?: Maybe<User>;
|
|
23112
|
+
};
|
|
22681
23113
|
export declare type ShepherdActorActivity = {
|
|
22682
23114
|
__typename?: 'ShepherdActorActivity';
|
|
22683
23115
|
actor: ShepherdUser;
|
|
@@ -22691,8 +23123,18 @@ export declare type ShepherdActorProductAccess = {
|
|
|
22691
23123
|
cloudId: Scalars['ID'];
|
|
22692
23124
|
cloudUrl: Scalars['String'];
|
|
22693
23125
|
lastActiveTimestamp?: Maybe<Scalars['String']>;
|
|
23126
|
+
orgId?: Maybe<Scalars['ID']>;
|
|
22694
23127
|
product: Scalars['String'];
|
|
22695
|
-
productRole
|
|
23128
|
+
productRole?: Maybe<Array<Scalars['String']>>;
|
|
23129
|
+
};
|
|
23130
|
+
export declare type ShepherdActorResult = QueryError | ShepherdActor;
|
|
23131
|
+
export declare type ShepherdActorSession = {
|
|
23132
|
+
__typename?: 'ShepherdActorSession';
|
|
23133
|
+
device?: Maybe<ShepherdLoginDevice>;
|
|
23134
|
+
lastActiveTime?: Maybe<Scalars['DateTime']>;
|
|
23135
|
+
loginLocation?: Maybe<ShepherdLoginLocation>;
|
|
23136
|
+
loginTime: Scalars['DateTime'];
|
|
23137
|
+
sessionId: Scalars['String'];
|
|
22696
23138
|
};
|
|
22697
23139
|
export declare type ShepherdAlert = Node & {
|
|
22698
23140
|
__typename?: 'ShepherdAlert';
|
|
@@ -22747,6 +23189,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
22747
23189
|
AddedConfluenceSpacePermission = "ADDED_CONFLUENCE_SPACE_PERMISSION",
|
|
22748
23190
|
AddedJiraGlobalPermission = "ADDED_JIRA_GLOBAL_PERMISSION",
|
|
22749
23191
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
23192
|
+
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|
|
22750
23193
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
22751
23194
|
ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
|
|
22752
23195
|
ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
|
|
@@ -22917,6 +23360,38 @@ export declare type ShepherdLoginActivity = {
|
|
|
22917
23360
|
region?: Maybe<Scalars['String']>;
|
|
22918
23361
|
time: Scalars['DateTime'];
|
|
22919
23362
|
};
|
|
23363
|
+
export declare type ShepherdLoginDevice = {
|
|
23364
|
+
__typename?: 'ShepherdLoginDevice';
|
|
23365
|
+
browserName?: Maybe<Scalars['String']>;
|
|
23366
|
+
browserVersion?: Maybe<Scalars['String']>;
|
|
23367
|
+
model?: Maybe<Scalars['String']>;
|
|
23368
|
+
osName?: Maybe<Scalars['String']>;
|
|
23369
|
+
osVersion?: Maybe<Scalars['String']>;
|
|
23370
|
+
type?: Maybe<ShepherdLoginDeviceType>;
|
|
23371
|
+
userAgent?: Maybe<Scalars['String']>;
|
|
23372
|
+
vendor?: Maybe<Scalars['String']>;
|
|
23373
|
+
};
|
|
23374
|
+
export declare enum ShepherdLoginDeviceType {
|
|
23375
|
+
Computer = "COMPUTER",
|
|
23376
|
+
Console = "CONSOLE",
|
|
23377
|
+
Embedded = "EMBEDDED",
|
|
23378
|
+
Mobile = "MOBILE",
|
|
23379
|
+
SmartTv = "SMART_TV",
|
|
23380
|
+
Tablet = "TABLET",
|
|
23381
|
+
Wearable = "WEARABLE"
|
|
23382
|
+
}
|
|
23383
|
+
export declare type ShepherdLoginLocation = {
|
|
23384
|
+
__typename?: 'ShepherdLoginLocation';
|
|
23385
|
+
city?: Maybe<Scalars['String']>;
|
|
23386
|
+
countryIsoCode?: Maybe<Scalars['String']>;
|
|
23387
|
+
countryName?: Maybe<Scalars['String']>;
|
|
23388
|
+
ipAddress?: Maybe<Scalars['String']>;
|
|
23389
|
+
isp?: Maybe<Scalars['String']>;
|
|
23390
|
+
latitude?: Maybe<Scalars['Float']>;
|
|
23391
|
+
longitude?: Maybe<Scalars['Float']>;
|
|
23392
|
+
regionIsoCode?: Maybe<Scalars['String']>;
|
|
23393
|
+
regionName?: Maybe<Scalars['String']>;
|
|
23394
|
+
};
|
|
22920
23395
|
export declare type ShepherdMutation = {
|
|
22921
23396
|
__typename?: 'ShepherdMutation';
|
|
22922
23397
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
@@ -22950,6 +23425,7 @@ export declare type ShepherdQuery = {
|
|
|
22950
23425
|
__typename?: 'ShepherdQuery';
|
|
22951
23426
|
alert?: Maybe<ShepherdAlertQueries>;
|
|
22952
23427
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
23428
|
+
shepherdActor?: Maybe<ShepherdActorResult>;
|
|
22953
23429
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
22954
23430
|
shepherdAppInfo: ShepherdAppInfo;
|
|
22955
23431
|
shepherdConfig?: Maybe<ShepherdConfigResult>;
|
|
@@ -22969,6 +23445,9 @@ export declare type ShepherdQueryShepherdActivityArgs = {
|
|
|
22969
23445
|
subject?: Maybe<ShepherdSubjectInput>;
|
|
22970
23446
|
workspaceId?: Maybe<Scalars['String']>;
|
|
22971
23447
|
};
|
|
23448
|
+
export declare type ShepherdQueryShepherdActorArgs = {
|
|
23449
|
+
aaid: Scalars['ID'];
|
|
23450
|
+
};
|
|
22972
23451
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
22973
23452
|
id: Scalars['ID'];
|
|
22974
23453
|
};
|
|
@@ -23146,7 +23625,6 @@ export declare type ShepherdUser = {
|
|
|
23146
23625
|
__typename?: 'ShepherdUser';
|
|
23147
23626
|
aaid: Scalars['ID'];
|
|
23148
23627
|
createdOn?: Maybe<Scalars['DateTime']>;
|
|
23149
|
-
productAccess?: Maybe<Array<Maybe<ShepherdActorProductAccess>>>;
|
|
23150
23628
|
user?: Maybe<User>;
|
|
23151
23629
|
};
|
|
23152
23630
|
export declare enum ShepherdWebhookDestinationType {
|
|
@@ -23178,7 +23656,6 @@ export declare enum ShepherdWebhookType {
|
|
|
23178
23656
|
}
|
|
23179
23657
|
export declare type ShepherdWorkspace = {
|
|
23180
23658
|
__typename?: 'ShepherdWorkspace';
|
|
23181
|
-
actor?: Maybe<ShepherdUser>;
|
|
23182
23659
|
cloudId: Scalars['ID'];
|
|
23183
23660
|
cloudName?: Maybe<Scalars['String']>;
|
|
23184
23661
|
currentUser?: Maybe<ShepherdCurrentUser>;
|
|
@@ -23187,9 +23664,6 @@ export declare type ShepherdWorkspace = {
|
|
|
23187
23664
|
orgId: Scalars['ID'];
|
|
23188
23665
|
shouldOnboard?: Maybe<Scalars['Boolean']>;
|
|
23189
23666
|
};
|
|
23190
|
-
export declare type ShepherdWorkspaceActorArgs = {
|
|
23191
|
-
aaid: Scalars['ID'];
|
|
23192
|
-
};
|
|
23193
23667
|
export declare type ShepherdWorkspaceDetectionsArgs = {
|
|
23194
23668
|
detectionId?: Maybe<Scalars['ID']>;
|
|
23195
23669
|
settingId?: Maybe<Scalars['ID']>;
|
|
@@ -24029,33 +24503,68 @@ export declare type TeamMemberConnection = {
|
|
|
24029
24503
|
nodes?: Maybe<Array<Maybe<TeamMember>>>;
|
|
24030
24504
|
pageInfo: PageInfo;
|
|
24031
24505
|
};
|
|
24506
|
+
export declare type TeamMemberConnectionV2 = {
|
|
24507
|
+
__typename?: 'TeamMemberConnectionV2';
|
|
24508
|
+
edges?: Maybe<Array<Maybe<TeamMemberEdgeV2>>>;
|
|
24509
|
+
nodes?: Maybe<Array<Maybe<TeamMemberV2>>>;
|
|
24510
|
+
pageInfo: PageInfo;
|
|
24511
|
+
};
|
|
24032
24512
|
export declare type TeamMemberEdge = {
|
|
24033
24513
|
__typename?: 'TeamMemberEdge';
|
|
24034
24514
|
node?: Maybe<TeamMember>;
|
|
24035
24515
|
cursor: Scalars['String'];
|
|
24036
24516
|
};
|
|
24517
|
+
export declare type TeamMemberEdgeV2 = {
|
|
24518
|
+
__typename?: 'TeamMemberEdgeV2';
|
|
24519
|
+
node?: Maybe<TeamMemberV2>;
|
|
24520
|
+
cursor: Scalars['String'];
|
|
24521
|
+
};
|
|
24522
|
+
export declare type TeamMemberV2 = {
|
|
24523
|
+
__typename?: 'TeamMemberV2';
|
|
24524
|
+
member?: Maybe<User>;
|
|
24525
|
+
state?: Maybe<TeamMembershipState>;
|
|
24526
|
+
role?: Maybe<TeamMembershipRole>;
|
|
24527
|
+
};
|
|
24037
24528
|
export declare type TeamMembershipFilter = {
|
|
24038
24529
|
memberIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
24039
24530
|
};
|
|
24531
|
+
export declare enum TeamMembershipRole {
|
|
24532
|
+
Regular = "REGULAR",
|
|
24533
|
+
Admin = "ADMIN"
|
|
24534
|
+
}
|
|
24535
|
+
export declare enum TeamMembershipSetting {
|
|
24536
|
+
Open = "OPEN",
|
|
24537
|
+
MemberInvite = "MEMBER_INVITE"
|
|
24538
|
+
}
|
|
24539
|
+
export declare enum TeamMembershipState {
|
|
24540
|
+
FullMember = "FULL_MEMBER",
|
|
24541
|
+
Alumni = "ALUMNI",
|
|
24542
|
+
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
24543
|
+
}
|
|
24040
24544
|
export declare type TeamQuery = {
|
|
24041
24545
|
__typename?: 'TeamQuery';
|
|
24546
|
+
teamV2?: Maybe<TeamV2>;
|
|
24547
|
+
teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
|
|
24042
24548
|
team?: Maybe<Team>;
|
|
24043
24549
|
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
24044
|
-
teamSearchV2?: Maybe<TeamSearchResultConnection>;
|
|
24045
24550
|
};
|
|
24046
|
-
export declare type
|
|
24551
|
+
export declare type TeamQueryTeamV2Args = {
|
|
24047
24552
|
id: Scalars['ID'];
|
|
24553
|
+
siteId: Scalars['String'];
|
|
24048
24554
|
};
|
|
24049
|
-
export declare type
|
|
24555
|
+
export declare type TeamQueryTeamSearchV2Args = {
|
|
24050
24556
|
organizationId: Scalars['ID'];
|
|
24557
|
+
siteId: Scalars['String'];
|
|
24051
24558
|
filter?: Maybe<TeamSearchFilter>;
|
|
24052
24559
|
first?: Maybe<Scalars['Int']>;
|
|
24053
24560
|
after?: Maybe<Scalars['String']>;
|
|
24054
24561
|
sortBy?: Maybe<Array<Maybe<TeamSort>>>;
|
|
24055
24562
|
};
|
|
24056
|
-
export declare type
|
|
24563
|
+
export declare type TeamQueryTeamArgs = {
|
|
24564
|
+
id: Scalars['ID'];
|
|
24565
|
+
};
|
|
24566
|
+
export declare type TeamQueryTeamSearchArgs = {
|
|
24057
24567
|
organizationId: Scalars['ID'];
|
|
24058
|
-
siteId: Scalars['String'];
|
|
24059
24568
|
filter?: Maybe<TeamSearchFilter>;
|
|
24060
24569
|
first?: Maybe<Scalars['Int']>;
|
|
24061
24570
|
after?: Maybe<Scalars['String']>;
|
|
@@ -24077,11 +24586,28 @@ export declare type TeamSearchResultConnection = {
|
|
|
24077
24586
|
nodes?: Maybe<Array<Maybe<TeamSearchResult>>>;
|
|
24078
24587
|
pageInfo?: Maybe<PageInfo>;
|
|
24079
24588
|
};
|
|
24589
|
+
export declare type TeamSearchResultConnectionV2 = {
|
|
24590
|
+
__typename?: 'TeamSearchResultConnectionV2';
|
|
24591
|
+
edges?: Maybe<Array<Maybe<TeamSearchResultEdgeV2>>>;
|
|
24592
|
+
nodes?: Maybe<Array<Maybe<TeamSearchResultV2>>>;
|
|
24593
|
+
pageInfo?: Maybe<PageInfo>;
|
|
24594
|
+
};
|
|
24080
24595
|
export declare type TeamSearchResultEdge = {
|
|
24081
24596
|
__typename?: 'TeamSearchResultEdge';
|
|
24082
24597
|
node?: Maybe<TeamSearchResult>;
|
|
24083
24598
|
cursor: Scalars['String'];
|
|
24084
24599
|
};
|
|
24600
|
+
export declare type TeamSearchResultEdgeV2 = {
|
|
24601
|
+
__typename?: 'TeamSearchResultEdgeV2';
|
|
24602
|
+
node?: Maybe<TeamSearchResultV2>;
|
|
24603
|
+
cursor: Scalars['String'];
|
|
24604
|
+
};
|
|
24605
|
+
export declare type TeamSearchResultV2 = {
|
|
24606
|
+
__typename?: 'TeamSearchResultV2';
|
|
24607
|
+
team?: Maybe<TeamV2>;
|
|
24608
|
+
memberCount?: Maybe<Scalars['Int']>;
|
|
24609
|
+
includesYou?: Maybe<Scalars['Boolean']>;
|
|
24610
|
+
};
|
|
24085
24611
|
export declare type TeamSort = {
|
|
24086
24612
|
field: TeamSortField;
|
|
24087
24613
|
order?: Maybe<TeamSortOrder>;
|
|
@@ -24100,6 +24626,30 @@ export declare enum TeamState {
|
|
|
24100
24626
|
Disbanded = "DISBANDED",
|
|
24101
24627
|
Purged = "PURGED"
|
|
24102
24628
|
}
|
|
24629
|
+
export declare enum TeamStateV2 {
|
|
24630
|
+
Active = "ACTIVE",
|
|
24631
|
+
Purged = "PURGED"
|
|
24632
|
+
}
|
|
24633
|
+
export declare type TeamV2 = Node & {
|
|
24634
|
+
__typename?: 'TeamV2';
|
|
24635
|
+
id: Scalars['ID'];
|
|
24636
|
+
organizationId?: Maybe<Scalars['ID']>;
|
|
24637
|
+
creator?: Maybe<User>;
|
|
24638
|
+
state?: Maybe<TeamStateV2>;
|
|
24639
|
+
displayName?: Maybe<Scalars['String']>;
|
|
24640
|
+
description?: Maybe<Scalars['String']>;
|
|
24641
|
+
membershipSetting?: Maybe<TeamMembershipSetting>;
|
|
24642
|
+
smallHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
24643
|
+
largeHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
24644
|
+
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
24645
|
+
largeAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
24646
|
+
members?: Maybe<TeamMemberConnectionV2>;
|
|
24647
|
+
};
|
|
24648
|
+
export declare type TeamV2MembersArgs = {
|
|
24649
|
+
after?: Maybe<Scalars['String']>;
|
|
24650
|
+
first?: Scalars['Int'];
|
|
24651
|
+
state?: Array<TeamMembershipState>;
|
|
24652
|
+
};
|
|
24103
24653
|
export declare type TenantContext = {
|
|
24104
24654
|
__typename?: 'TenantContext';
|
|
24105
24655
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -24242,7 +24792,7 @@ export declare type ToolchainAssociateContainersPayload = Payload & {
|
|
|
24242
24792
|
errors?: Maybe<Array<MutationError>>;
|
|
24243
24793
|
containers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
24244
24794
|
};
|
|
24245
|
-
export declare type ToolchainAssociatedContainer = DevOpsDocument;
|
|
24795
|
+
export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsRepository;
|
|
24246
24796
|
export declare type ToolchainCheck3Lo = {
|
|
24247
24797
|
__typename?: 'ToolchainCheck3LO';
|
|
24248
24798
|
authorized: Scalars['Boolean'];
|
|
@@ -24251,6 +24801,7 @@ export declare type ToolchainContainer = Node & {
|
|
|
24251
24801
|
__typename?: 'ToolchainContainer';
|
|
24252
24802
|
id: Scalars['ID'];
|
|
24253
24803
|
name: Scalars['String'];
|
|
24804
|
+
workspace?: Maybe<ToolchainContainerWorkspaceDetails>;
|
|
24254
24805
|
};
|
|
24255
24806
|
export declare type ToolchainContainerConnection = {
|
|
24256
24807
|
__typename?: 'ToolchainContainerConnection';
|
|
@@ -24263,6 +24814,11 @@ export declare type ToolchainContainerEdge = {
|
|
|
24263
24814
|
cursor: Scalars['String'];
|
|
24264
24815
|
node?: Maybe<ToolchainContainer>;
|
|
24265
24816
|
};
|
|
24817
|
+
export declare type ToolchainContainerWorkspaceDetails = {
|
|
24818
|
+
__typename?: 'ToolchainContainerWorkspaceDetails';
|
|
24819
|
+
id: Scalars['ID'];
|
|
24820
|
+
name: Scalars['String'];
|
|
24821
|
+
};
|
|
24266
24822
|
export declare type ToolchainCreateContainerInput = {
|
|
24267
24823
|
cloudId: Scalars['ID'];
|
|
24268
24824
|
providerId?: Maybe<Scalars['ID']>;
|
|
@@ -24307,11 +24863,13 @@ export declare type ToolchainMutationCreateContainerArgs = {
|
|
|
24307
24863
|
};
|
|
24308
24864
|
export declare enum ToolchainSyncState {
|
|
24309
24865
|
InProgress = "IN_PROGRESS",
|
|
24310
|
-
Complete = "COMPLETE"
|
|
24866
|
+
Complete = "COMPLETE",
|
|
24867
|
+
Error = "ERROR"
|
|
24311
24868
|
}
|
|
24312
24869
|
export declare type ToolchainSyncStatus = {
|
|
24313
24870
|
__typename?: 'ToolchainSyncStatus';
|
|
24314
24871
|
state: ToolchainSyncState;
|
|
24872
|
+
errorKey?: Maybe<Scalars['String']>;
|
|
24315
24873
|
};
|
|
24316
24874
|
export declare type ToolchainWorkspace = Node & {
|
|
24317
24875
|
__typename?: 'ToolchainWorkspace';
|
|
@@ -24565,6 +25123,12 @@ export declare type TransitionFilter = {
|
|
|
24565
25123
|
from: Scalars['String'];
|
|
24566
25124
|
to: Scalars['String'];
|
|
24567
25125
|
};
|
|
25126
|
+
export declare type TrelloAddHelloMutationResponse = Payload & {
|
|
25127
|
+
__typename?: 'TrelloAddHelloMutationResponse';
|
|
25128
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25129
|
+
hello: Scalars['String'];
|
|
25130
|
+
success: Scalars['Boolean'];
|
|
25131
|
+
};
|
|
24568
25132
|
export declare type TrelloAttachment = {
|
|
24569
25133
|
__typename?: 'TrelloAttachment';
|
|
24570
25134
|
bytes?: Maybe<Scalars['Float']>;
|
|
@@ -24595,6 +25159,7 @@ export declare type TrelloBoard = Node & {
|
|
|
24595
25159
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
24596
25160
|
id: Scalars['ID'];
|
|
24597
25161
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
25162
|
+
limits?: Maybe<TrelloBoardLimits>;
|
|
24598
25163
|
lists?: Maybe<TrelloListConnection>;
|
|
24599
25164
|
name: Scalars['String'];
|
|
24600
25165
|
objectId: Scalars['ID'];
|
|
@@ -24608,6 +25173,11 @@ export declare type TrelloBoardListsArgs = {
|
|
|
24608
25173
|
filter?: Maybe<TrelloListFilterInput>;
|
|
24609
25174
|
first?: Maybe<Scalars['Int']>;
|
|
24610
25175
|
};
|
|
25176
|
+
export declare type TrelloBoardAttachmentsLimits = {
|
|
25177
|
+
__typename?: 'TrelloBoardAttachmentsLimits';
|
|
25178
|
+
perBoard?: Maybe<TrelloLimitProps>;
|
|
25179
|
+
perCard?: Maybe<TrelloLimitProps>;
|
|
25180
|
+
};
|
|
24611
25181
|
export declare type TrelloBoardBackground = {
|
|
24612
25182
|
__typename?: 'TrelloBoardBackground';
|
|
24613
25183
|
bottomColor?: Maybe<Scalars['String']>;
|
|
@@ -24615,7 +25185,7 @@ export declare type TrelloBoardBackground = {
|
|
|
24615
25185
|
color?: Maybe<Scalars['String']>;
|
|
24616
25186
|
image?: Maybe<Scalars['String']>;
|
|
24617
25187
|
imageScaled?: Maybe<Array<TrelloScaleProps>>;
|
|
24618
|
-
tile
|
|
25188
|
+
tile?: Maybe<Scalars['Boolean']>;
|
|
24619
25189
|
topColor?: Maybe<Scalars['String']>;
|
|
24620
25190
|
};
|
|
24621
25191
|
export declare type TrelloBoardBackgroundUpdatedDeltas = {
|
|
@@ -24628,17 +25198,69 @@ export declare type TrelloBoardBackgroundUpdatedDeltas = {
|
|
|
24628
25198
|
title?: Maybe<Scalars['Boolean']>;
|
|
24629
25199
|
topColor?: Maybe<Scalars['Boolean']>;
|
|
24630
25200
|
};
|
|
25201
|
+
export declare type TrelloBoardBoardsLimits = {
|
|
25202
|
+
__typename?: 'TrelloBoardBoardsLimits';
|
|
25203
|
+
totalAccessRequestsPerBoard?: Maybe<TrelloLimitProps>;
|
|
25204
|
+
totalMembersPerBoard?: Maybe<TrelloLimitProps>;
|
|
25205
|
+
};
|
|
25206
|
+
export declare type TrelloBoardCardsLimits = {
|
|
25207
|
+
__typename?: 'TrelloBoardCardsLimits';
|
|
25208
|
+
openPerBoard?: Maybe<TrelloLimitProps>;
|
|
25209
|
+
openPerList?: Maybe<TrelloLimitProps>;
|
|
25210
|
+
totalPerBoard?: Maybe<TrelloLimitProps>;
|
|
25211
|
+
totalPerList?: Maybe<TrelloLimitProps>;
|
|
25212
|
+
};
|
|
25213
|
+
export declare type TrelloBoardCheckItemsLimits = {
|
|
25214
|
+
__typename?: 'TrelloBoardCheckItemsLimits';
|
|
25215
|
+
perChecklist?: Maybe<TrelloLimitProps>;
|
|
25216
|
+
};
|
|
25217
|
+
export declare type TrelloBoardChecklistsLimits = {
|
|
25218
|
+
__typename?: 'TrelloBoardChecklistsLimits';
|
|
25219
|
+
perBoard?: Maybe<TrelloLimitProps>;
|
|
25220
|
+
perCard?: Maybe<TrelloLimitProps>;
|
|
25221
|
+
};
|
|
25222
|
+
export declare type TrelloBoardCustomFieldOptionsLimits = {
|
|
25223
|
+
__typename?: 'TrelloBoardCustomFieldOptionsLimits';
|
|
25224
|
+
perField?: Maybe<TrelloLimitProps>;
|
|
25225
|
+
};
|
|
25226
|
+
export declare type TrelloBoardCustomFieldsLimits = {
|
|
25227
|
+
__typename?: 'TrelloBoardCustomFieldsLimits';
|
|
25228
|
+
perBoard?: Maybe<TrelloLimitProps>;
|
|
25229
|
+
};
|
|
24631
25230
|
export declare type TrelloBoardEdge = {
|
|
24632
25231
|
__typename?: 'TrelloBoardEdge';
|
|
24633
25232
|
cursor: Scalars['String'];
|
|
24634
25233
|
node: TrelloBoard;
|
|
24635
25234
|
};
|
|
25235
|
+
export declare type TrelloBoardLabelsLimits = {
|
|
25236
|
+
__typename?: 'TrelloBoardLabelsLimits';
|
|
25237
|
+
perBoard?: Maybe<TrelloLimitProps>;
|
|
25238
|
+
};
|
|
25239
|
+
export declare type TrelloBoardLimits = {
|
|
25240
|
+
__typename?: 'TrelloBoardLimits';
|
|
25241
|
+
attachments?: Maybe<TrelloBoardAttachmentsLimits>;
|
|
25242
|
+
boards?: Maybe<TrelloBoardBoardsLimits>;
|
|
25243
|
+
cards?: Maybe<TrelloBoardCardsLimits>;
|
|
25244
|
+
checkItems?: Maybe<TrelloBoardCheckItemsLimits>;
|
|
25245
|
+
checklists?: Maybe<TrelloBoardChecklistsLimits>;
|
|
25246
|
+
customFieldOptions?: Maybe<TrelloBoardCustomFieldOptionsLimits>;
|
|
25247
|
+
customFields?: Maybe<TrelloBoardCustomFieldsLimits>;
|
|
25248
|
+
labels?: Maybe<TrelloBoardLabelsLimits>;
|
|
25249
|
+
lists?: Maybe<TrelloBoardListsLimits>;
|
|
25250
|
+
reactions?: Maybe<TrelloBoardReactionsLimits>;
|
|
25251
|
+
stickers?: Maybe<TrelloBoardStickersLimits>;
|
|
25252
|
+
};
|
|
25253
|
+
export declare type TrelloBoardListsLimits = {
|
|
25254
|
+
__typename?: 'TrelloBoardListsLimits';
|
|
25255
|
+
openPerBoard?: Maybe<TrelloLimitProps>;
|
|
25256
|
+
totalPerBoard?: Maybe<TrelloLimitProps>;
|
|
25257
|
+
};
|
|
24636
25258
|
export declare type TrelloBoardPrefs = {
|
|
24637
25259
|
__typename?: 'TrelloBoardPrefs';
|
|
24638
|
-
background
|
|
25260
|
+
background?: Maybe<TrelloBoardBackground>;
|
|
24639
25261
|
canInvite?: Maybe<Scalars['Boolean']>;
|
|
24640
25262
|
hideVotes?: Maybe<Scalars['Boolean']>;
|
|
24641
|
-
isTemplate
|
|
25263
|
+
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
24642
25264
|
};
|
|
24643
25265
|
export declare type TrelloBoardPrefsUpdatedDeltas = {
|
|
24644
25266
|
__typename?: 'TrelloBoardPrefsUpdatedDeltas';
|
|
@@ -24647,6 +25269,14 @@ export declare type TrelloBoardPrefsUpdatedDeltas = {
|
|
|
24647
25269
|
hideVotes?: Maybe<Scalars['Boolean']>;
|
|
24648
25270
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
24649
25271
|
};
|
|
25272
|
+
export declare type TrelloBoardReactionsLimits = {
|
|
25273
|
+
__typename?: 'TrelloBoardReactionsLimits';
|
|
25274
|
+
perAction?: Maybe<TrelloLimitProps>;
|
|
25275
|
+
};
|
|
25276
|
+
export declare type TrelloBoardStickersLimits = {
|
|
25277
|
+
__typename?: 'TrelloBoardStickersLimits';
|
|
25278
|
+
perCard?: Maybe<TrelloLimitProps>;
|
|
25279
|
+
};
|
|
24650
25280
|
export declare type TrelloBoardUpdated = {
|
|
24651
25281
|
__typename?: 'TrelloBoardUpdated';
|
|
24652
25282
|
_deltas?: Maybe<TrelloBoardUpdatedDeltas>;
|
|
@@ -24671,10 +25301,11 @@ export declare type TrelloCard = Node & {
|
|
|
24671
25301
|
__typename?: 'TrelloCard';
|
|
24672
25302
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
24673
25303
|
badges?: Maybe<TrelloCardBadges>;
|
|
25304
|
+
checklists?: Maybe<TrelloChecklistConnection>;
|
|
24674
25305
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24675
25306
|
cover?: Maybe<TrelloCardCover>;
|
|
24676
25307
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
24677
|
-
description?: Maybe<
|
|
25308
|
+
description?: Maybe<TrelloDescription>;
|
|
24678
25309
|
due?: Maybe<TrelloCardDueInfo>;
|
|
24679
25310
|
id: Scalars['ID'];
|
|
24680
25311
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
@@ -24699,6 +25330,10 @@ export declare type TrelloCardAttachmentsArgs = {
|
|
|
24699
25330
|
after?: Maybe<Scalars['String']>;
|
|
24700
25331
|
first?: Maybe<Scalars['Int']>;
|
|
24701
25332
|
};
|
|
25333
|
+
export declare type TrelloCardChecklistsArgs = {
|
|
25334
|
+
after?: Maybe<Scalars['String']>;
|
|
25335
|
+
first?: Maybe<Scalars['Int']>;
|
|
25336
|
+
};
|
|
24702
25337
|
export declare type TrelloCardCustomFieldItemsArgs = {
|
|
24703
25338
|
after?: Maybe<Scalars['String']>;
|
|
24704
25339
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -24852,9 +25487,30 @@ export declare type TrelloCardViewer = {
|
|
|
24852
25487
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
24853
25488
|
voted?: Maybe<Scalars['Boolean']>;
|
|
24854
25489
|
};
|
|
25490
|
+
export declare type TrelloChecklist = {
|
|
25491
|
+
__typename?: 'TrelloChecklist';
|
|
25492
|
+
board?: Maybe<TrelloBoard>;
|
|
25493
|
+
card?: Maybe<TrelloCard>;
|
|
25494
|
+
name?: Maybe<Scalars['String']>;
|
|
25495
|
+
objectId: Scalars['ID'];
|
|
25496
|
+
position?: Maybe<Scalars['Float']>;
|
|
25497
|
+
};
|
|
25498
|
+
export declare type TrelloChecklistConnection = {
|
|
25499
|
+
__typename?: 'TrelloChecklistConnection';
|
|
25500
|
+
edges?: Maybe<Array<TrelloChecklistEdge>>;
|
|
25501
|
+
nodes?: Maybe<Array<TrelloChecklist>>;
|
|
25502
|
+
pageInfo: PageInfo;
|
|
25503
|
+
};
|
|
25504
|
+
export declare type TrelloChecklistEdge = {
|
|
25505
|
+
__typename?: 'TrelloChecklistEdge';
|
|
25506
|
+
cursor: Scalars['String'];
|
|
25507
|
+
node: TrelloChecklist;
|
|
25508
|
+
};
|
|
24855
25509
|
export declare type TrelloCustomFieldItem = {
|
|
24856
25510
|
__typename?: 'TrelloCustomFieldItem';
|
|
25511
|
+
model?: Maybe<TrelloCard>;
|
|
24857
25512
|
objectId: Scalars['ID'];
|
|
25513
|
+
value?: Maybe<TrelloCustomFieldItemValueInfo>;
|
|
24858
25514
|
};
|
|
24859
25515
|
export declare type TrelloCustomFieldItemConnection = {
|
|
24860
25516
|
__typename?: 'TrelloCustomFieldItemConnection';
|
|
@@ -24867,6 +25523,43 @@ export declare type TrelloCustomFieldItemEdge = {
|
|
|
24867
25523
|
cursor: Scalars['String'];
|
|
24868
25524
|
node: TrelloCustomFieldItem;
|
|
24869
25525
|
};
|
|
25526
|
+
export declare type TrelloCustomFieldItemValueInfo = {
|
|
25527
|
+
__typename?: 'TrelloCustomFieldItemValueInfo';
|
|
25528
|
+
checked?: Maybe<Scalars['Boolean']>;
|
|
25529
|
+
date?: Maybe<Scalars['String']>;
|
|
25530
|
+
id?: Maybe<Scalars['ID']>;
|
|
25531
|
+
number?: Maybe<Scalars['Float']>;
|
|
25532
|
+
text?: Maybe<Scalars['String']>;
|
|
25533
|
+
};
|
|
25534
|
+
export declare type TrelloDescription = {
|
|
25535
|
+
__typename?: 'TrelloDescription';
|
|
25536
|
+
customData?: Maybe<TrelloDescriptionData>;
|
|
25537
|
+
text?: Maybe<Scalars['String']>;
|
|
25538
|
+
};
|
|
25539
|
+
export declare type TrelloDescriptionCustomEmoji = {
|
|
25540
|
+
__typename?: 'TrelloDescriptionCustomEmoji';
|
|
25541
|
+
name?: Maybe<Scalars['String']>;
|
|
25542
|
+
url?: Maybe<Scalars['URL']>;
|
|
25543
|
+
};
|
|
25544
|
+
export declare type TrelloDescriptionCustomEmojiConnection = {
|
|
25545
|
+
__typename?: 'TrelloDescriptionCustomEmojiConnection';
|
|
25546
|
+
edges?: Maybe<Array<TrelloDescriptionCustomEmojiEdge>>;
|
|
25547
|
+
nodes?: Maybe<Array<TrelloDescriptionCustomEmoji>>;
|
|
25548
|
+
pageInfo: PageInfo;
|
|
25549
|
+
};
|
|
25550
|
+
export declare type TrelloDescriptionCustomEmojiEdge = {
|
|
25551
|
+
__typename?: 'TrelloDescriptionCustomEmojiEdge';
|
|
25552
|
+
cursor?: Maybe<Scalars['String']>;
|
|
25553
|
+
node?: Maybe<TrelloDescriptionCustomEmoji>;
|
|
25554
|
+
};
|
|
25555
|
+
export declare type TrelloDescriptionData = {
|
|
25556
|
+
__typename?: 'TrelloDescriptionData';
|
|
25557
|
+
emojis?: Maybe<TrelloDescriptionCustomEmojiConnection>;
|
|
25558
|
+
};
|
|
25559
|
+
export declare type TrelloDescriptionDataEmojisArgs = {
|
|
25560
|
+
after?: Maybe<Scalars['String']>;
|
|
25561
|
+
first?: Maybe<Scalars['Int']>;
|
|
25562
|
+
};
|
|
24870
25563
|
export declare type TrelloHelloInput = {
|
|
24871
25564
|
hello: Scalars['String'];
|
|
24872
25565
|
};
|
|
@@ -24974,7 +25667,7 @@ export declare type TrelloListUpdatedConnection = {
|
|
|
24974
25667
|
};
|
|
24975
25668
|
export declare type TrelloListUpdatedConnectionDeltas = {
|
|
24976
25669
|
__typename?: 'TrelloListUpdatedConnectionDeltas';
|
|
24977
|
-
nodes
|
|
25670
|
+
nodes?: Maybe<Array<TrelloListUpdatedDeltas>>;
|
|
24978
25671
|
};
|
|
24979
25672
|
export declare type TrelloListUpdatedDeltas = {
|
|
24980
25673
|
__typename?: 'TrelloListUpdatedDeltas';
|
|
@@ -24991,7 +25684,7 @@ export declare type TrelloListViewer = {
|
|
|
24991
25684
|
};
|
|
24992
25685
|
export declare type TrelloMutationApi = {
|
|
24993
25686
|
__typename?: 'TrelloMutationApi';
|
|
24994
|
-
addHello?: Maybe<
|
|
25687
|
+
addHello?: Maybe<TrelloAddHelloMutationResponse>;
|
|
24995
25688
|
};
|
|
24996
25689
|
export declare type TrelloMutationApiAddHelloArgs = {
|
|
24997
25690
|
input: TrelloHelloInput;
|
|
@@ -25096,9 +25789,9 @@ export declare type TrelloRecentCardEdge = {
|
|
|
25096
25789
|
};
|
|
25097
25790
|
export declare type TrelloScaleProps = {
|
|
25098
25791
|
__typename?: 'TrelloScaleProps';
|
|
25099
|
-
height
|
|
25100
|
-
url
|
|
25101
|
-
width
|
|
25792
|
+
height?: Maybe<Scalars['Int']>;
|
|
25793
|
+
url?: Maybe<Scalars['String']>;
|
|
25794
|
+
width?: Maybe<Scalars['Int']>;
|
|
25102
25795
|
};
|
|
25103
25796
|
export declare type TrelloSticker = {
|
|
25104
25797
|
__typename?: 'TrelloSticker';
|
|
@@ -25884,6 +26577,8 @@ export declare type VirtualAgentCreateIntentRuleProjectionInput = {
|
|
|
25884
26577
|
questions?: Maybe<Array<Scalars['String']>>;
|
|
25885
26578
|
confirmationMessage?: Maybe<Scalars['String']>;
|
|
25886
26579
|
suggestionButtonText?: Maybe<Scalars['String']>;
|
|
26580
|
+
templateId?: Maybe<Scalars['String']>;
|
|
26581
|
+
templateType?: Maybe<VirtualAgentIntentTemplateType>;
|
|
25887
26582
|
};
|
|
25888
26583
|
export declare type VirtualAgentCreateIntentRuleProjectionPayload = Payload & {
|
|
25889
26584
|
__typename?: 'VirtualAgentCreateIntentRuleProjectionPayload';
|
|
@@ -26033,6 +26728,7 @@ export declare type VirtualAgentIntentTemplateEdge = {
|
|
|
26033
26728
|
node?: Maybe<VirtualAgentIntentTemplate>;
|
|
26034
26729
|
};
|
|
26035
26730
|
export declare enum VirtualAgentIntentTemplateType {
|
|
26731
|
+
Standard = "STANDARD",
|
|
26036
26732
|
Discovered = "DISCOVERED",
|
|
26037
26733
|
Shared = "SHARED"
|
|
26038
26734
|
}
|