@forge/cli-shared 2.4.2-next.1 → 2.5.0-next.1
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 +27 -2
- package/out/graphql/gateway.d.ts +1 -1
- package/out/graphql/gateway.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +104 -55
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- 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,11 +1,36 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.5.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [74b6c3c]
|
|
8
|
+
- @forge/manifest@3.8.0-next.0
|
|
9
|
+
|
|
10
|
+
## 2.5.0-next.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 6d7a574: Add the ability to query feature flags in the CLI
|
|
15
|
+
|
|
16
|
+
## 2.4.2
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [34d085a]
|
|
21
|
+
- Updated dependencies [9e700ef]
|
|
22
|
+
- Updated dependencies [c87cdea]
|
|
23
|
+
- Updated dependencies [ce4a65f]
|
|
24
|
+
- @forge/manifest@3.7.0
|
|
25
|
+
|
|
3
26
|
## 2.4.2-next.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
6
29
|
|
|
7
|
-
- Updated dependencies [
|
|
8
|
-
|
|
30
|
+
- Updated dependencies [34d085a]
|
|
31
|
+
- Updated dependencies [c87cdea]
|
|
32
|
+
- Updated dependencies [ce4a65f]
|
|
33
|
+
- @forge/manifest@3.7.0-next.1
|
|
9
34
|
|
|
10
35
|
## 2.4.2-next.0
|
|
11
36
|
|
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 = {
|
|
@@ -9641,6 +9671,7 @@ export declare type JiraProject = Node & {
|
|
|
9641
9671
|
projectType?: Maybe<JiraProjectType>;
|
|
9642
9672
|
status?: Maybe<JiraProjectStatus>;
|
|
9643
9673
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9674
|
+
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
9644
9675
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
9645
9676
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
9646
9677
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -9755,7 +9786,7 @@ export declare type JiraProjectAndDevOpsToolRelationshipEdge = {
|
|
|
9755
9786
|
cursor?: Maybe<Scalars['String']>;
|
|
9756
9787
|
};
|
|
9757
9788
|
export declare type JiraProjectAndDevOpsToolRelationshipFilter = {
|
|
9758
|
-
|
|
9789
|
+
hasPropertyEqualTo?: Maybe<DevOpsContainerRelationshipEntityPropertyInput>;
|
|
9759
9790
|
};
|
|
9760
9791
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9761
9792
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
@@ -12090,6 +12121,7 @@ export declare type Mutation = {
|
|
|
12090
12121
|
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
12091
12122
|
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
12092
12123
|
createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
|
|
12124
|
+
updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
|
|
12093
12125
|
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
12094
12126
|
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
12095
12127
|
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
@@ -12416,6 +12448,9 @@ export declare type MutationDeletePolarisDecorationArgs = {
|
|
|
12416
12448
|
export declare type MutationCreatePolarisIdeaTemplateArgs = {
|
|
12417
12449
|
input: CreatePolarisIdeaTemplateInput;
|
|
12418
12450
|
};
|
|
12451
|
+
export declare type MutationUpdatePolarisIdeaTemplateArgs = {
|
|
12452
|
+
input: UpdatePolarisIdeaTemplateInput;
|
|
12453
|
+
};
|
|
12419
12454
|
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
12420
12455
|
project: Scalars['ID'];
|
|
12421
12456
|
idea: Scalars['ID'];
|
|
@@ -14495,8 +14530,8 @@ export declare type RoadmapItem = {
|
|
|
14495
14530
|
parentId?: Maybe<Scalars['ID']>;
|
|
14496
14531
|
summary?: Maybe<Scalars['String']>;
|
|
14497
14532
|
assignee?: Maybe<User>;
|
|
14498
|
-
|
|
14499
|
-
|
|
14533
|
+
dueDateRFC3339?: Maybe<Scalars['Date']>;
|
|
14534
|
+
startDateRFC3339?: Maybe<Scalars['Date']>;
|
|
14500
14535
|
status?: Maybe<RoadmapItemStatus>;
|
|
14501
14536
|
statusCategory?: Maybe<RoadmapItemStatusCategory>;
|
|
14502
14537
|
createdDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -14667,8 +14702,8 @@ export declare type RoadmapSprint = {
|
|
|
14667
14702
|
__typename?: 'RoadmapSprint';
|
|
14668
14703
|
id: Scalars['ID'];
|
|
14669
14704
|
name: Scalars['String'];
|
|
14670
|
-
|
|
14671
|
-
|
|
14705
|
+
startDateRFC3339: Scalars['Date'];
|
|
14706
|
+
endDateRFC3339: Scalars['Date'];
|
|
14672
14707
|
state: RoadmapSprintState;
|
|
14673
14708
|
};
|
|
14674
14709
|
export declare enum RoadmapSprintState {
|
|
@@ -15741,7 +15776,7 @@ export declare type Storage = {
|
|
|
15741
15776
|
export declare type Subscription = {
|
|
15742
15777
|
__typename?: 'Subscription';
|
|
15743
15778
|
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
15744
|
-
|
|
15779
|
+
onTestingActivityItemUpdate?: Maybe<Node>;
|
|
15745
15780
|
};
|
|
15746
15781
|
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
15747
15782
|
cloudId: Scalars['ID'];
|
|
@@ -15749,7 +15784,7 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
15749
15784
|
projectType?: JiraProjectType;
|
|
15750
15785
|
filter?: JiraProjectFilterInput;
|
|
15751
15786
|
};
|
|
15752
|
-
export declare type
|
|
15787
|
+
export declare type SubscriptionOnTestingActivityItemUpdateArgs = {
|
|
15753
15788
|
issueId: Scalars['ID'];
|
|
15754
15789
|
};
|
|
15755
15790
|
export declare type SupportRequest = {
|
|
@@ -16852,6 +16887,20 @@ export declare type UpdatePolarisIdeaPayload = Payload & {
|
|
|
16852
16887
|
errors?: Maybe<Array<MutationError>>;
|
|
16853
16888
|
node?: Maybe<PolarisIdea>;
|
|
16854
16889
|
};
|
|
16890
|
+
export declare type UpdatePolarisIdeaTemplateInput = {
|
|
16891
|
+
id: Scalars['ID'];
|
|
16892
|
+
project: Scalars['ID'];
|
|
16893
|
+
title: Scalars['String'];
|
|
16894
|
+
description?: Maybe<Scalars['String']>;
|
|
16895
|
+
color?: Maybe<Scalars['String']>;
|
|
16896
|
+
emoji?: Maybe<Scalars['String']>;
|
|
16897
|
+
template?: Maybe<Scalars['JSON']>;
|
|
16898
|
+
};
|
|
16899
|
+
export declare type UpdatePolarisIdeaTemplatePayload = Payload & {
|
|
16900
|
+
__typename?: 'UpdatePolarisIdeaTemplatePayload';
|
|
16901
|
+
success: Scalars['Boolean'];
|
|
16902
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16903
|
+
};
|
|
16855
16904
|
export declare type UpdatePolarisInsightInput = {
|
|
16856
16905
|
description?: Maybe<Scalars['JSON']>;
|
|
16857
16906
|
snippets?: Maybe<Array<UpdatePolarisSnippetInput>>;
|