@forge/cli-shared 2.4.2-next.0 → 2.5.0-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/out/graphql/gateway.d.ts +1 -1
- package/out/graphql/gateway.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +109 -61
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -0
- package/out/service/feature-flag-service.d.ts +35 -0
- package/out/service/feature-flag-service.d.ts.map +1 -0
- package/out/service/feature-flag-service.js +90 -0
- package/out/service/index.d.ts +1 -0
- package/out/service/index.d.ts.map +1 -1
- package/out/service/index.js +1 -0
- package/out/shared/error-handling.d.ts +1 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/ui/logger.d.ts +1 -0
- package/out/ui/logger.d.ts.map +1 -1
- package/out/ui/logger.js +17 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.5.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6d7a574: Add the ability to query feature flags in the CLI
|
|
8
|
+
|
|
9
|
+
## 2.4.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [34d085a]
|
|
14
|
+
- Updated dependencies [9e700ef]
|
|
15
|
+
- Updated dependencies [c87cdea]
|
|
16
|
+
- Updated dependencies [ce4a65f]
|
|
17
|
+
- @forge/manifest@3.7.0
|
|
18
|
+
|
|
19
|
+
## 2.4.2-next.1
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [34d085a]
|
|
24
|
+
- Updated dependencies [c87cdea]
|
|
25
|
+
- Updated dependencies [ce4a65f]
|
|
26
|
+
- @forge/manifest@3.7.0-next.1
|
|
27
|
+
|
|
3
28
|
## 2.4.2-next.0
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/out/graphql/gateway.d.ts
CHANGED
|
@@ -5,12 +5,12 @@ declare enum Environments {
|
|
|
5
5
|
STG = "staging",
|
|
6
6
|
PROD = "prod"
|
|
7
7
|
}
|
|
8
|
+
declare type EnvironmentOptions = Record<keyof typeof Environments, string>;
|
|
8
9
|
export declare enum CDNEnvironments {
|
|
9
10
|
DEV = "dev",
|
|
10
11
|
STG = "stg",
|
|
11
12
|
PROD = "prod"
|
|
12
13
|
}
|
|
13
|
-
declare type EnvironmentOptions = typeof Environments | typeof CDNEnvironments;
|
|
14
14
|
export declare const getEnvironment: (envOptions?: EnvironmentOptions) => string;
|
|
15
15
|
export {};
|
|
16
16
|
//# sourceMappingURL=gateway.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gateway.d.ts","sourceRoot":"","sources":["../../src/graphql/gateway.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,uBAAuB,sCAAsC,CAAC;AAE3E,eAAO,MAAM,iBAAiB,QAAO,MAEpC,CAAC;AAEF,aAAK,YAAY;IACf,GAAG,QAAQ;IACX,GAAG,YAAY;IACf,IAAI,SAAS;CACd;AAED,oBAAY,eAAe;IACzB,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;CACd;
|
|
1
|
+
{"version":3,"file":"gateway.d.ts","sourceRoot":"","sources":["../../src/graphql/gateway.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,uBAAuB,sCAAsC,CAAC;AAE3E,eAAO,MAAM,iBAAiB,QAAO,MAEpC,CAAC;AAEF,aAAK,YAAY;IACf,GAAG,QAAQ;IACX,GAAG,YAAY;IACf,IAAI,SAAS;CACd;AAED,aAAK,kBAAkB,GAAG,MAAM,CAAC,MAAM,OAAO,YAAY,EAAE,MAAM,CAAC,CAAC;AAEpE,oBAAY,eAAe;IACzB,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;CACd;AAED,eAAO,MAAM,cAAc,gBAAgB,kBAAkB,KAAkB,MAS9E,CAAC"}
|
|
@@ -936,6 +936,8 @@ export declare type AriGraphRelationshipsFilter = {
|
|
|
936
936
|
type: Scalars['ID'];
|
|
937
937
|
from?: Maybe<Scalars['ID']>;
|
|
938
938
|
to?: Maybe<Scalars['ID']>;
|
|
939
|
+
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
940
|
+
updatedTo?: Maybe<Scalars['DateTime']>;
|
|
939
941
|
};
|
|
940
942
|
export declare type ArjConfiguration = {
|
|
941
943
|
__typename?: 'ArjConfiguration';
|
|
@@ -2179,6 +2181,9 @@ export declare type CompassCreateTeamCheckinInput = {
|
|
|
2179
2181
|
response1?: Maybe<Scalars['String']>;
|
|
2180
2182
|
response2?: Maybe<Scalars['String']>;
|
|
2181
2183
|
response3?: Maybe<Scalars['String']>;
|
|
2184
|
+
response1RichText?: Maybe<CompassCreateTeamCheckinResponseRichText>;
|
|
2185
|
+
response2RichText?: Maybe<CompassCreateTeamCheckinResponseRichText>;
|
|
2186
|
+
response3RichText?: Maybe<CompassCreateTeamCheckinResponseRichText>;
|
|
2182
2187
|
actions?: Maybe<Array<CompassCreateTeamCheckinActionInput>>;
|
|
2183
2188
|
};
|
|
2184
2189
|
export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
@@ -2187,6 +2192,9 @@ export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
|
2187
2192
|
errors?: Maybe<Array<MutationError>>;
|
|
2188
2193
|
createdTeamCheckin?: Maybe<CompassTeamCheckin>;
|
|
2189
2194
|
};
|
|
2195
|
+
export declare type CompassCreateTeamCheckinResponseRichText = {
|
|
2196
|
+
adf?: Maybe<Scalars['String']>;
|
|
2197
|
+
};
|
|
2190
2198
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
2191
2199
|
Equals = "EQUALS",
|
|
2192
2200
|
GreaterThan = "GREATER_THAN",
|
|
@@ -2804,6 +2812,10 @@ export declare type CompassRelationshipQueryFilters = {
|
|
|
2804
2812
|
export declare enum CompassRelationshipType {
|
|
2805
2813
|
DependsOn = "DEPENDS_ON"
|
|
2806
2814
|
}
|
|
2815
|
+
export declare type CompassRichTextObject = {
|
|
2816
|
+
__typename?: 'CompassRichTextObject';
|
|
2817
|
+
adf?: Maybe<Scalars['String']>;
|
|
2818
|
+
};
|
|
2807
2819
|
export declare type CompassScorecard = Node & {
|
|
2808
2820
|
__typename?: 'CompassScorecard';
|
|
2809
2821
|
id: Scalars['ID'];
|
|
@@ -2967,6 +2979,9 @@ export declare type CompassTeamCheckin = {
|
|
|
2967
2979
|
response1?: Maybe<Scalars['String']>;
|
|
2968
2980
|
response2?: Maybe<Scalars['String']>;
|
|
2969
2981
|
response3?: Maybe<Scalars['String']>;
|
|
2982
|
+
response1RichText?: Maybe<CompassRichTextObject>;
|
|
2983
|
+
response2RichText?: Maybe<CompassRichTextObject>;
|
|
2984
|
+
response3RichText?: Maybe<CompassRichTextObject>;
|
|
2970
2985
|
changeMetadata: CompassChangeMetadata;
|
|
2971
2986
|
actions?: Maybe<Array<CompassTeamCheckinAction>>;
|
|
2972
2987
|
};
|
|
@@ -3055,6 +3070,9 @@ export declare type CompassUpdateTeamCheckinInput = {
|
|
|
3055
3070
|
response1?: Maybe<Scalars['String']>;
|
|
3056
3071
|
response2?: Maybe<Scalars['String']>;
|
|
3057
3072
|
response3?: Maybe<Scalars['String']>;
|
|
3073
|
+
response1RichText?: Maybe<CompassUpdateTeamCheckinResponseRichText>;
|
|
3074
|
+
response2RichText?: Maybe<CompassUpdateTeamCheckinResponseRichText>;
|
|
3075
|
+
response3RichText?: Maybe<CompassUpdateTeamCheckinResponseRichText>;
|
|
3058
3076
|
actions?: Maybe<Array<CompassTeamCheckinActionInput>>;
|
|
3059
3077
|
};
|
|
3060
3078
|
export declare type CompassUpdateTeamCheckinPayload = Payload & {
|
|
@@ -3063,6 +3081,9 @@ export declare type CompassUpdateTeamCheckinPayload = Payload & {
|
|
|
3063
3081
|
errors?: Maybe<Array<MutationError>>;
|
|
3064
3082
|
updatedTeamCheckin?: Maybe<CompassTeamCheckin>;
|
|
3065
3083
|
};
|
|
3084
|
+
export declare type CompassUpdateTeamCheckinResponseRichText = {
|
|
3085
|
+
adf?: Maybe<Scalars['String']>;
|
|
3086
|
+
};
|
|
3066
3087
|
export declare type CompatibleAtlassianCloudProduct = CompatibleAtlassianProduct & {
|
|
3067
3088
|
__typename?: 'CompatibleAtlassianCloudProduct';
|
|
3068
3089
|
atlassianProduct?: Maybe<MarketplaceSupportedAtlassianProduct>;
|
|
@@ -3309,75 +3330,80 @@ export declare type ConfluenceLabel = {
|
|
|
3309
3330
|
};
|
|
3310
3331
|
export declare type ConfluenceMutationApi = {
|
|
3311
3332
|
__typename?: 'ConfluenceMutationApi';
|
|
3333
|
+
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3334
|
+
createPage?: Maybe<ConfluenceCreatePagePayload>;
|
|
3335
|
+
createSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
3312
3336
|
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
confluenceUpdateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
3327
|
-
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3337
|
+
deleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
3338
|
+
deleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
3339
|
+
publishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
3340
|
+
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3341
|
+
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3342
|
+
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3343
|
+
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3344
|
+
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3345
|
+
updateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
3346
|
+
updateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
3347
|
+
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
3348
|
+
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
3349
|
+
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3328
3350
|
confluenceCreateUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
3329
3351
|
confluenceUpdateValueUserProperty?: Maybe<ConfluenceUpdateValueUserPropertyPayload>;
|
|
3330
3352
|
confluenceDeleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3331
3353
|
};
|
|
3332
|
-
export declare type
|
|
3354
|
+
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
3333
3355
|
cloudId: Scalars['ID'];
|
|
3334
3356
|
input: ConfluenceCreateBlogPostInput;
|
|
3335
3357
|
};
|
|
3336
|
-
export declare type
|
|
3358
|
+
export declare type ConfluenceMutationApiCreatePageArgs = {
|
|
3337
3359
|
cloudId: Scalars['ID'];
|
|
3338
3360
|
input: ConfluenceCreatePageInput;
|
|
3339
3361
|
};
|
|
3340
|
-
export declare type
|
|
3362
|
+
export declare type ConfluenceMutationApiCreateSpaceArgs = {
|
|
3341
3363
|
cloudId: Scalars['ID'];
|
|
3342
3364
|
input: ConfluenceCreateSpaceInput;
|
|
3343
3365
|
};
|
|
3344
|
-
export declare type
|
|
3366
|
+
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
3367
|
+
cloudId: Scalars['ID'];
|
|
3368
|
+
input: ConfluenceCreateBlogPostInput;
|
|
3369
|
+
};
|
|
3370
|
+
export declare type ConfluenceMutationApiDeleteDraftBlogPostArgs = {
|
|
3345
3371
|
input: ConfluenceDeleteDraftBlogPostInput;
|
|
3346
3372
|
};
|
|
3347
|
-
export declare type
|
|
3373
|
+
export declare type ConfluenceMutationApiDeleteDraftPageArgs = {
|
|
3348
3374
|
input: ConfluenceDeleteDraftPageInput;
|
|
3349
3375
|
};
|
|
3350
|
-
export declare type
|
|
3376
|
+
export declare type ConfluenceMutationApiPublishBlogPostArgs = {
|
|
3351
3377
|
input: ConfluencePublishBlogPostInput;
|
|
3352
3378
|
};
|
|
3353
|
-
export declare type
|
|
3379
|
+
export declare type ConfluenceMutationApiPublishPageArgs = {
|
|
3354
3380
|
input: ConfluencePublishPageInput;
|
|
3355
3381
|
};
|
|
3356
|
-
export declare type
|
|
3382
|
+
export declare type ConfluenceMutationApiPurgeBlogPostArgs = {
|
|
3357
3383
|
input: ConfluencePurgeBlogPostInput;
|
|
3358
3384
|
};
|
|
3359
|
-
export declare type
|
|
3385
|
+
export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
3360
3386
|
input: ConfluencePurgePageInput;
|
|
3361
3387
|
};
|
|
3362
|
-
export declare type
|
|
3388
|
+
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
3363
3389
|
input: ConfluenceTrashBlogPostInput;
|
|
3364
3390
|
};
|
|
3365
|
-
export declare type
|
|
3391
|
+
export declare type ConfluenceMutationApiTrashPageArgs = {
|
|
3366
3392
|
input: ConfluenceTrashPageInput;
|
|
3367
3393
|
};
|
|
3368
|
-
export declare type
|
|
3394
|
+
export declare type ConfluenceMutationApiUpdateCurrentBlogPostArgs = {
|
|
3369
3395
|
input: ConfluenceUpdateCurrentBlogPostInput;
|
|
3370
3396
|
};
|
|
3371
|
-
export declare type
|
|
3397
|
+
export declare type ConfluenceMutationApiUpdateCurrentPageArgs = {
|
|
3372
3398
|
input: ConfluenceUpdateCurrentPageInput;
|
|
3373
3399
|
};
|
|
3374
|
-
export declare type
|
|
3400
|
+
export declare type ConfluenceMutationApiUpdateDraftBlogPostArgs = {
|
|
3375
3401
|
input: ConfluenceUpdateDraftBlogPostInput;
|
|
3376
3402
|
};
|
|
3377
|
-
export declare type
|
|
3403
|
+
export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
3378
3404
|
input: ConfluenceUpdateDraftPageInput;
|
|
3379
3405
|
};
|
|
3380
|
-
export declare type
|
|
3406
|
+
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
3381
3407
|
input: ConfluenceUpdateSpaceInput;
|
|
3382
3408
|
};
|
|
3383
3409
|
export declare type ConfluenceMutationApiConfluenceCreateUserPropertyArgs = {
|
|
@@ -3487,43 +3513,47 @@ export declare type ConfluencePurgePagePayload = Payload & {
|
|
|
3487
3513
|
};
|
|
3488
3514
|
export declare type ConfluenceQueryApi = {
|
|
3489
3515
|
__typename?: 'ConfluenceQueryApi';
|
|
3516
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3517
|
+
blogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3518
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3519
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3490
3520
|
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3497
|
-
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
3498
|
-
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3521
|
+
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
3522
|
+
page?: Maybe<ConfluencePage>;
|
|
3523
|
+
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3524
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3525
|
+
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3499
3526
|
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3500
3527
|
confluenceUserProperties?: Maybe<Array<Maybe<ConfluenceUserProperty>>>;
|
|
3501
3528
|
};
|
|
3502
|
-
export declare type
|
|
3529
|
+
export declare type ConfluenceQueryApiBlogPostArgs = {
|
|
3503
3530
|
id: Scalars['ID'];
|
|
3504
3531
|
};
|
|
3505
|
-
export declare type
|
|
3532
|
+
export declare type ConfluenceQueryApiBlogPostsArgs = {
|
|
3506
3533
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3507
3534
|
};
|
|
3508
|
-
export declare type
|
|
3535
|
+
export declare type ConfluenceQueryApiCommentArgs = {
|
|
3509
3536
|
id: Scalars['ID'];
|
|
3510
3537
|
};
|
|
3511
|
-
export declare type
|
|
3538
|
+
export declare type ConfluenceQueryApiCommentsArgs = {
|
|
3512
3539
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3513
3540
|
};
|
|
3514
|
-
export declare type
|
|
3541
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3515
3542
|
id: Scalars['ID'];
|
|
3516
3543
|
};
|
|
3517
|
-
export declare type
|
|
3544
|
+
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
3518
3545
|
id: Scalars['ID'];
|
|
3519
3546
|
};
|
|
3520
|
-
export declare type
|
|
3547
|
+
export declare type ConfluenceQueryApiPageArgs = {
|
|
3548
|
+
id: Scalars['ID'];
|
|
3549
|
+
};
|
|
3550
|
+
export declare type ConfluenceQueryApiPagesArgs = {
|
|
3521
3551
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3522
3552
|
};
|
|
3523
|
-
export declare type
|
|
3553
|
+
export declare type ConfluenceQueryApiSpaceArgs = {
|
|
3524
3554
|
id: Scalars['ID'];
|
|
3525
3555
|
};
|
|
3526
|
-
export declare type
|
|
3556
|
+
export declare type ConfluenceQueryApiSpacesArgs = {
|
|
3527
3557
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3528
3558
|
};
|
|
3529
3559
|
export declare type ConfluenceQueryApiConfluenceUserPropertyArgs = {
|
|
@@ -5810,7 +5840,8 @@ export declare type ForgeMetricsErrorsSeries = ForgeMetricsSeries & {
|
|
|
5810
5840
|
export declare enum ForgeMetricsGroupByDimensions {
|
|
5811
5841
|
UserTier = "USER_TIER",
|
|
5812
5842
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
5813
|
-
ErrorType = "ERROR_TYPE"
|
|
5843
|
+
ErrorType = "ERROR_TYPE",
|
|
5844
|
+
Version = "VERSION"
|
|
5814
5845
|
}
|
|
5815
5846
|
export declare type ForgeMetricsInstallationContext = {
|
|
5816
5847
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
@@ -6043,7 +6074,7 @@ export declare type HelpCenterCollectionItemEdge = {
|
|
|
6043
6074
|
export declare type HelpCenterCollectionItemInput = {
|
|
6044
6075
|
ari: Scalars['ID'];
|
|
6045
6076
|
};
|
|
6046
|
-
export declare type HelpCenterCollectionResult = HelpCenterCollection |
|
|
6077
|
+
export declare type HelpCenterCollectionResult = HelpCenterCollection | QueryError;
|
|
6047
6078
|
export declare type HelpCenterCreateCollectionInput = {
|
|
6048
6079
|
helpCenterId: Scalars['ID'];
|
|
6049
6080
|
items: Array<HelpCenterCollectionItemInput>;
|
|
@@ -6095,11 +6126,7 @@ export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
|
6095
6126
|
helpCenterId: Scalars['ID'];
|
|
6096
6127
|
collectionId: Scalars['ID'];
|
|
6097
6128
|
};
|
|
6098
|
-
export declare type
|
|
6099
|
-
__typename?: 'HelpCenterQueryErrors';
|
|
6100
|
-
errors?: Maybe<Array<QueryError>>;
|
|
6101
|
-
};
|
|
6102
|
-
export declare type HelpCenterQueryResult = HelpCenter | HelpCenterQueryErrors;
|
|
6129
|
+
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
6103
6130
|
export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
6104
6131
|
__typename?: 'HelpCenterSuccessfullyCreatedCollectionIds';
|
|
6105
6132
|
helpCenterId: Scalars['ID'];
|
|
@@ -9644,6 +9671,8 @@ export declare type JiraProject = Node & {
|
|
|
9644
9671
|
projectType?: Maybe<JiraProjectType>;
|
|
9645
9672
|
status?: Maybe<JiraProjectStatus>;
|
|
9646
9673
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9674
|
+
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
9675
|
+
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
9647
9676
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
9648
9677
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
9649
9678
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -9652,6 +9681,11 @@ export declare type JiraProject = Node & {
|
|
|
9652
9681
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
9653
9682
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
9654
9683
|
};
|
|
9684
|
+
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
9685
|
+
limit?: Maybe<Scalars['Int']>;
|
|
9686
|
+
after?: Maybe<Scalars['String']>;
|
|
9687
|
+
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
9688
|
+
};
|
|
9655
9689
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
9656
9690
|
first?: Maybe<Scalars['Int']>;
|
|
9657
9691
|
after?: Maybe<Scalars['String']>;
|
|
@@ -9720,6 +9754,12 @@ export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
|
9720
9754
|
export declare type JiraProjectAndDevOpsToolRelationshipPropertiesArgs = {
|
|
9721
9755
|
keys: Array<Scalars['String']>;
|
|
9722
9756
|
};
|
|
9757
|
+
export declare type JiraProjectAndDevOpsToolRelationshipConnection = {
|
|
9758
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipConnection';
|
|
9759
|
+
edges?: Maybe<Array<Maybe<JiraProjectAndDevOpsToolRelationshipEdge>>>;
|
|
9760
|
+
nodes?: Maybe<Array<Maybe<JiraProjectAndDevOpsToolRelationship>>>;
|
|
9761
|
+
pageInfo: PageInfo;
|
|
9762
|
+
};
|
|
9723
9763
|
export declare type JiraProjectAndDevOpsToolRelationshipCreateInput = {
|
|
9724
9764
|
jiraProjectId: Scalars['ID'];
|
|
9725
9765
|
devOpsToolId: Scalars['ID'];
|
|
@@ -9740,6 +9780,14 @@ export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
|
9740
9780
|
success: Scalars['Boolean'];
|
|
9741
9781
|
errors?: Maybe<Array<MutationError>>;
|
|
9742
9782
|
};
|
|
9783
|
+
export declare type JiraProjectAndDevOpsToolRelationshipEdge = {
|
|
9784
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipEdge';
|
|
9785
|
+
node?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9786
|
+
cursor?: Maybe<Scalars['String']>;
|
|
9787
|
+
};
|
|
9788
|
+
export declare type JiraProjectAndDevOpsToolRelationshipFilter = {
|
|
9789
|
+
hasPropertyEqualTo?: Maybe<DevOpsContainerRelationshipEntityPropertyInput>;
|
|
9790
|
+
};
|
|
9743
9791
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9744
9792
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9745
9793
|
id: Scalars['ID'];
|
|
@@ -14478,8 +14526,8 @@ export declare type RoadmapItem = {
|
|
|
14478
14526
|
parentId?: Maybe<Scalars['ID']>;
|
|
14479
14527
|
summary?: Maybe<Scalars['String']>;
|
|
14480
14528
|
assignee?: Maybe<User>;
|
|
14481
|
-
|
|
14482
|
-
|
|
14529
|
+
dueDateRFC3339?: Maybe<Scalars['Date']>;
|
|
14530
|
+
startDateRFC3339?: Maybe<Scalars['Date']>;
|
|
14483
14531
|
status?: Maybe<RoadmapItemStatus>;
|
|
14484
14532
|
statusCategory?: Maybe<RoadmapItemStatusCategory>;
|
|
14485
14533
|
createdDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -14650,8 +14698,8 @@ export declare type RoadmapSprint = {
|
|
|
14650
14698
|
__typename?: 'RoadmapSprint';
|
|
14651
14699
|
id: Scalars['ID'];
|
|
14652
14700
|
name: Scalars['String'];
|
|
14653
|
-
|
|
14654
|
-
|
|
14701
|
+
startDateRFC3339: Scalars['Date'];
|
|
14702
|
+
endDateRFC3339: Scalars['Date'];
|
|
14655
14703
|
state: RoadmapSprintState;
|
|
14656
14704
|
};
|
|
14657
14705
|
export declare enum RoadmapSprintState {
|
|
@@ -15724,7 +15772,7 @@ export declare type Storage = {
|
|
|
15724
15772
|
export declare type Subscription = {
|
|
15725
15773
|
__typename?: 'Subscription';
|
|
15726
15774
|
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
15727
|
-
|
|
15775
|
+
onTestingActivityItemUpdate?: Maybe<Node>;
|
|
15728
15776
|
};
|
|
15729
15777
|
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
15730
15778
|
cloudId: Scalars['ID'];
|
|
@@ -15732,7 +15780,7 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
15732
15780
|
projectType?: JiraProjectType;
|
|
15733
15781
|
filter?: JiraProjectFilterInput;
|
|
15734
15782
|
};
|
|
15735
|
-
export declare type
|
|
15783
|
+
export declare type SubscriptionOnTestingActivityItemUpdateArgs = {
|
|
15736
15784
|
issueId: Scalars['ID'];
|
|
15737
15785
|
};
|
|
15738
15786
|
export declare type SupportRequest = {
|