@forge/cli-shared 3.20.4-next.2 → 3.20.4-next.2-experimental-949ef5f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/out/graphql/graphql-types.d.ts +158 -59
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +12 -12
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.4-next.2-experimental-949ef5f
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a45ba82fef: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @sentry/node
|
|
10
|
+
|
|
11
|
+
- e5c1e4eadb: Bumping dependencies via Renovate:
|
|
12
|
+
|
|
13
|
+
- yaml
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [6a302439e5]
|
|
16
|
+
- Updated dependencies [5fadc46db2]
|
|
17
|
+
- @forge/manifest@5.0.1-next.1-experimental-949ef5f
|
|
18
|
+
|
|
3
19
|
## 3.20.4-next.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -1498,7 +1498,7 @@ export type AquaIssueContext = {
|
|
|
1498
1498
|
__typename?: 'AquaIssueContext';
|
|
1499
1499
|
commentId?: Maybe<Scalars['Long']['output']>;
|
|
1500
1500
|
issue?: Maybe<JiraIssue>;
|
|
1501
|
-
|
|
1501
|
+
issueARI?: Maybe<Scalars['ID']['output']>;
|
|
1502
1502
|
};
|
|
1503
1503
|
export type AquaNotificationDetails = {
|
|
1504
1504
|
__typename?: 'AquaNotificationDetails';
|
|
@@ -2408,6 +2408,7 @@ export type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
2408
2408
|
slug?: Maybe<Scalars['String']['output']>;
|
|
2409
2409
|
status?: Maybe<CcpEntitlementStatus>;
|
|
2410
2410
|
subscription?: Maybe<CcpSubscription>;
|
|
2411
|
+
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
2411
2412
|
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
2412
2413
|
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
2413
2414
|
version?: Maybe<Scalars['Int']['output']>;
|
|
@@ -2668,6 +2669,14 @@ export declare enum CcpTiersMode {
|
|
|
2668
2669
|
Graduated = "GRADUATED",
|
|
2669
2670
|
Volume = "VOLUME"
|
|
2670
2671
|
}
|
|
2672
|
+
export type CcpTransactionAccount = CommerceTransactionAccount & {
|
|
2673
|
+
__typename?: 'CcpTransactionAccount';
|
|
2674
|
+
experienceCapabilities?: Maybe<CcpTransactionAccountExperienceCapabilities>;
|
|
2675
|
+
};
|
|
2676
|
+
export type CcpTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
|
|
2677
|
+
__typename?: 'CcpTransactionAccountExperienceCapabilities';
|
|
2678
|
+
addPaymentMethod?: Maybe<CcpExperienceCapability>;
|
|
2679
|
+
};
|
|
2671
2680
|
export type CcpTrial = CommerceTrial & {
|
|
2672
2681
|
__typename?: 'CcpTrial';
|
|
2673
2682
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -2783,6 +2792,7 @@ export type CommerceEntitlement = {
|
|
|
2783
2792
|
offering?: Maybe<CommerceOffering>;
|
|
2784
2793
|
preDunning?: Maybe<CommerceEntitlementPreDunning>;
|
|
2785
2794
|
subscription?: Maybe<CommerceSubscription>;
|
|
2795
|
+
transactionAccount?: Maybe<CommerceTransactionAccount>;
|
|
2786
2796
|
};
|
|
2787
2797
|
export type CommerceEntitlementExperienceCapabilities = {
|
|
2788
2798
|
changeOffering?: Maybe<CommerceExperienceCapability>;
|
|
@@ -2834,6 +2844,12 @@ export type CommerceSubscription = {
|
|
|
2834
2844
|
pricingPlan?: Maybe<CommercePricingPlan>;
|
|
2835
2845
|
trial?: Maybe<CommerceTrial>;
|
|
2836
2846
|
};
|
|
2847
|
+
export type CommerceTransactionAccount = {
|
|
2848
|
+
experienceCapabilities?: Maybe<CommerceTransactionAccountExperienceCapabilities>;
|
|
2849
|
+
};
|
|
2850
|
+
export type CommerceTransactionAccountExperienceCapabilities = {
|
|
2851
|
+
addPaymentMethod?: Maybe<CommerceExperienceCapability>;
|
|
2852
|
+
};
|
|
2837
2853
|
export type CommerceTrial = {
|
|
2838
2854
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
2839
2855
|
};
|
|
@@ -2989,6 +3005,7 @@ export type CompassCatalogMutationApi = {
|
|
|
2989
3005
|
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
2990
3006
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
2991
3007
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
3008
|
+
deleteIncomingWebhook?: Maybe<CompassDeleteIncomingWebhookPayload>;
|
|
2992
3009
|
deleteMetricDefinition?: Maybe<CompassDeleteMetricDefinitionPayload>;
|
|
2993
3010
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
2994
3011
|
deleteRelationship?: Maybe<DeleteCompassRelationshipPayload>;
|
|
@@ -3116,6 +3133,9 @@ export type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
|
3116
3133
|
export type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
3117
3134
|
input: DeleteEventSourceInput;
|
|
3118
3135
|
};
|
|
3136
|
+
export type CompassCatalogMutationApiDeleteIncomingWebhookArgs = {
|
|
3137
|
+
input: CompassDeleteIncomingWebhookInput;
|
|
3138
|
+
};
|
|
3119
3139
|
export type CompassCatalogMutationApiDeleteMetricDefinitionArgs = {
|
|
3120
3140
|
input: CompassDeleteMetricDefinitionInput;
|
|
3121
3141
|
};
|
|
@@ -3654,7 +3674,7 @@ export type CompassCreateIncomingWebhookPayload = Payload & {
|
|
|
3654
3674
|
__typename?: 'CompassCreateIncomingWebhookPayload';
|
|
3655
3675
|
errors?: Maybe<Array<MutationError>>;
|
|
3656
3676
|
success: Scalars['Boolean']['output'];
|
|
3657
|
-
webhookDetails
|
|
3677
|
+
webhookDetails?: Maybe<CompassIncomingWebhook>;
|
|
3658
3678
|
};
|
|
3659
3679
|
export type CompassCreateLifecycleEventInput = {
|
|
3660
3680
|
description: Scalars['String']['input'];
|
|
@@ -3963,6 +3983,16 @@ export type CompassDeleteExternalAliasInput = {
|
|
|
3963
3983
|
externalId: Scalars['ID']['input'];
|
|
3964
3984
|
externalSource: Scalars['ID']['input'];
|
|
3965
3985
|
};
|
|
3986
|
+
export type CompassDeleteIncomingWebhookInput = {
|
|
3987
|
+
cloudId: Scalars['ID']['input'];
|
|
3988
|
+
id: Scalars['ID']['input'];
|
|
3989
|
+
};
|
|
3990
|
+
export type CompassDeleteIncomingWebhookPayload = Payload & {
|
|
3991
|
+
__typename?: 'CompassDeleteIncomingWebhookPayload';
|
|
3992
|
+
deletedIncomingWebhookId?: Maybe<Scalars['ID']['output']>;
|
|
3993
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3994
|
+
success: Scalars['Boolean']['output'];
|
|
3995
|
+
};
|
|
3966
3996
|
export type CompassDeleteMetricDefinitionInput = {
|
|
3967
3997
|
id: Scalars['ID']['input'];
|
|
3968
3998
|
};
|
|
@@ -4327,7 +4357,7 @@ export type CompassIncomingWebhook = Node & {
|
|
|
4327
4357
|
changeMetadata: CompassChangeMetadata;
|
|
4328
4358
|
description?: Maybe<Scalars['String']['output']>;
|
|
4329
4359
|
id: Scalars['ID']['output'];
|
|
4330
|
-
name
|
|
4360
|
+
name: Scalars['String']['output'];
|
|
4331
4361
|
source: Scalars['String']['output'];
|
|
4332
4362
|
};
|
|
4333
4363
|
export type CompassIncomingWebhookEdge = {
|
|
@@ -5145,6 +5175,7 @@ export type CompleteSprintResponse = MutationResponse & {
|
|
|
5145
5175
|
message: Scalars['String']['output'];
|
|
5146
5176
|
statusCode: Scalars['Int']['output'];
|
|
5147
5177
|
success: Scalars['Boolean']['output'];
|
|
5178
|
+
taskId?: Maybe<Scalars['String']['output']>;
|
|
5148
5179
|
};
|
|
5149
5180
|
export type ComponentSyncEvent = {
|
|
5150
5181
|
__typename?: 'ComponentSyncEvent';
|
|
@@ -9434,7 +9465,7 @@ export type EcosystemDataClassificationsContext = {
|
|
|
9434
9465
|
id: Scalars['ID']['output'];
|
|
9435
9466
|
};
|
|
9436
9467
|
export type EcosystemDataClassificationsContextContainersArgs = {
|
|
9437
|
-
ids
|
|
9468
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9438
9469
|
};
|
|
9439
9470
|
export type EcosystemMutation = {
|
|
9440
9471
|
__typename?: 'EcosystemMutation';
|
|
@@ -10514,6 +10545,7 @@ export type Graph = {
|
|
|
10514
10545
|
projectAssociatedVulnerabilityInverse?: Maybe<GraphJiraProjectConnection>;
|
|
10515
10546
|
projectAssociatedVulnerabilityRelationship?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
10516
10547
|
projectAssociatedVulnerabilityRelationshipInverse?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
10548
|
+
securityContainerAssociatedToVulnerabilityRelationshipBatch?: Maybe<Array<Maybe<GraphSecurityContainerAssociatedToVulnerabilityRelationshipConnection>>>;
|
|
10517
10549
|
serviceLinkedIncident?: Maybe<GraphJiraIssueConnection>;
|
|
10518
10550
|
serviceLinkedIncidentInverse?: Maybe<GraphProjectServiceConnection>;
|
|
10519
10551
|
sprintAssociatedBuild?: Maybe<GraphJiraBuildConnection>;
|
|
@@ -10698,6 +10730,9 @@ export type GraphProjectAssociatedVulnerabilityRelationshipInverseArgs = {
|
|
|
10698
10730
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10699
10731
|
to: Scalars['ID']['input'];
|
|
10700
10732
|
};
|
|
10733
|
+
export type GraphSecurityContainerAssociatedToVulnerabilityRelationshipBatchArgs = {
|
|
10734
|
+
from: Array<Scalars['ID']['input']>;
|
|
10735
|
+
};
|
|
10701
10736
|
export type GraphServiceLinkedIncidentArgs = {
|
|
10702
10737
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
10703
10738
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -11200,6 +11235,20 @@ export type GraphJiraPullRequestEdge = {
|
|
|
11200
11235
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
11201
11236
|
node: GraphJiraPullRequest;
|
|
11202
11237
|
};
|
|
11238
|
+
export type GraphJiraSecurityContainer = Node & {
|
|
11239
|
+
__typename?: 'GraphJiraSecurityContainer';
|
|
11240
|
+
id: Scalars['ID']['output'];
|
|
11241
|
+
};
|
|
11242
|
+
export type GraphJiraSecurityContainerConnection = {
|
|
11243
|
+
__typename?: 'GraphJiraSecurityContainerConnection';
|
|
11244
|
+
edges: Array<Maybe<GraphJiraSecurityContainerEdge>>;
|
|
11245
|
+
pageInfo: PageInfo;
|
|
11246
|
+
};
|
|
11247
|
+
export type GraphJiraSecurityContainerEdge = {
|
|
11248
|
+
__typename?: 'GraphJiraSecurityContainerEdge';
|
|
11249
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
11250
|
+
node: GraphJiraSecurityContainer;
|
|
11251
|
+
};
|
|
11203
11252
|
export type GraphJiraSprint = Node & {
|
|
11204
11253
|
__typename?: 'GraphJiraSprint';
|
|
11205
11254
|
id: Scalars['ID']['output'];
|
|
@@ -11998,6 +12047,26 @@ export type GraphQueryMetadataSprintAssociatedPrInputToTaskCountRangeField = {
|
|
|
11998
12047
|
lte?: InputMaybe<Scalars['Int']['input']>;
|
|
11999
12048
|
};
|
|
12000
12049
|
export type GraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
12050
|
+
export type GraphSecurityContainerAssociatedToVulnerabilityRelationship = Node & {
|
|
12051
|
+
__typename?: 'GraphSecurityContainerAssociatedToVulnerabilityRelationship';
|
|
12052
|
+
from: GraphJiraSecurityContainer;
|
|
12053
|
+
id: Scalars['ID']['output'];
|
|
12054
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
12055
|
+
to: GraphJiraVulnerability;
|
|
12056
|
+
};
|
|
12057
|
+
export type GraphSecurityContainerAssociatedToVulnerabilityRelationshipConnection = {
|
|
12058
|
+
__typename?: 'GraphSecurityContainerAssociatedToVulnerabilityRelationshipConnection';
|
|
12059
|
+
edges: Array<Maybe<GraphSecurityContainerAssociatedToVulnerabilityRelationshipEdge>>;
|
|
12060
|
+
fromId?: Maybe<Scalars['ID']['output']>;
|
|
12061
|
+
pageInfo: PageInfo;
|
|
12062
|
+
toId?: Maybe<Scalars['ID']['output']>;
|
|
12063
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
12064
|
+
};
|
|
12065
|
+
export type GraphSecurityContainerAssociatedToVulnerabilityRelationshipEdge = {
|
|
12066
|
+
__typename?: 'GraphSecurityContainerAssociatedToVulnerabilityRelationshipEdge';
|
|
12067
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
12068
|
+
node: GraphSecurityContainerAssociatedToVulnerabilityRelationship;
|
|
12069
|
+
};
|
|
12001
12070
|
export type GraphSimpleRelationship = {
|
|
12002
12071
|
__typename?: 'GraphSimpleRelationship';
|
|
12003
12072
|
from: GraphGeneric;
|
|
@@ -12161,6 +12230,7 @@ export type HamsEntitlement = CommerceEntitlement & {
|
|
|
12161
12230
|
status?: Maybe<Scalars['String']['output']>;
|
|
12162
12231
|
subscription?: Maybe<HamsSubscription>;
|
|
12163
12232
|
suspended?: Maybe<Scalars['Boolean']['output']>;
|
|
12233
|
+
transactionAccount?: Maybe<HamsTransactionAccount>;
|
|
12164
12234
|
trialEdition?: Maybe<Scalars['String']['output']>;
|
|
12165
12235
|
trialEditionEndDate?: Maybe<Scalars['String']['output']>;
|
|
12166
12236
|
trialEndDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -12216,6 +12286,14 @@ export type HamsSubscription = CommerceSubscription & {
|
|
|
12216
12286
|
pricingPlan?: Maybe<HamsPricingPlan>;
|
|
12217
12287
|
trial?: Maybe<HamsTrial>;
|
|
12218
12288
|
};
|
|
12289
|
+
export type HamsTransactionAccount = CommerceTransactionAccount & {
|
|
12290
|
+
__typename?: 'HamsTransactionAccount';
|
|
12291
|
+
experienceCapabilities?: Maybe<HamsTransactionAccountExperienceCapabilities>;
|
|
12292
|
+
};
|
|
12293
|
+
export type HamsTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
|
|
12294
|
+
__typename?: 'HamsTransactionAccountExperienceCapabilities';
|
|
12295
|
+
addPaymentMethod?: Maybe<HamsExperienceCapability>;
|
|
12296
|
+
};
|
|
12219
12297
|
export type HamsTrial = CommerceTrial & {
|
|
12220
12298
|
__typename?: 'HamsTrial';
|
|
12221
12299
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -12983,6 +13061,7 @@ export declare enum HelpObjectStoreHelpObjectType {
|
|
|
12983
13061
|
export type HelpObjectStoreIcon = {
|
|
12984
13062
|
__typename?: 'HelpObjectStoreIcon';
|
|
12985
13063
|
iconUrl: Scalars['URL']['output'];
|
|
13064
|
+
iconUrlV2: Scalars['String']['output'];
|
|
12986
13065
|
};
|
|
12987
13066
|
export declare enum HelpObjectStoreJsmEntityType {
|
|
12988
13067
|
Article = "ARTICLE",
|
|
@@ -13440,19 +13519,19 @@ export type InsightsNextBestTask = {
|
|
|
13440
13519
|
title?: Maybe<Scalars['String']['output']>;
|
|
13441
13520
|
url?: Maybe<Scalars['String']['output']>;
|
|
13442
13521
|
};
|
|
13443
|
-
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails |
|
|
13444
|
-
export type
|
|
13445
|
-
__typename?: '
|
|
13446
|
-
approvalsCount?: Maybe<Scalars['Int']['output']>;
|
|
13522
|
+
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails;
|
|
13523
|
+
export type InsightsPullRequestNeedsWorkDetails = {
|
|
13524
|
+
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
13447
13525
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13448
13526
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13527
|
+
needsWorkCount?: Maybe<Scalars['Int']['output']>;
|
|
13449
13528
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13450
13529
|
};
|
|
13451
|
-
export type
|
|
13452
|
-
__typename?: '
|
|
13530
|
+
export type InsightsPullRequestReviewDetails = {
|
|
13531
|
+
__typename?: 'InsightsPullRequestReviewDetails';
|
|
13532
|
+
approvalsCount?: Maybe<Scalars['Int']['output']>;
|
|
13453
13533
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13454
13534
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13455
|
-
needsWorkCount?: Maybe<Scalars['Int']['output']>;
|
|
13456
13535
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13457
13536
|
};
|
|
13458
13537
|
export declare enum InsightsTaskType {
|
|
@@ -19369,6 +19448,7 @@ export type JiraQuery = {
|
|
|
19369
19448
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
19370
19449
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
19371
19450
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
19451
|
+
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
19372
19452
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
19373
19453
|
jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
|
|
19374
19454
|
jwmNavigation?: Maybe<JiraWorkManagementNavigation>;
|
|
@@ -19690,6 +19770,14 @@ export type JiraQueryJqlBuilderArgs = {
|
|
|
19690
19770
|
export type JiraQueryJsmProjectTeamTypeArgs = {
|
|
19691
19771
|
projectId: Scalars['ID']['input'];
|
|
19692
19772
|
};
|
|
19773
|
+
export type JiraQueryJsmWorkflowTemplatesArgs = {
|
|
19774
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
19775
|
+
cloudId: Scalars['ID']['input'];
|
|
19776
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19777
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
19778
|
+
projectStyle?: InputMaybe<JiraProjectStyle>;
|
|
19779
|
+
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
19780
|
+
};
|
|
19693
19781
|
export type JiraQueryJsonUserPropertyArgs = {
|
|
19694
19782
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
19695
19783
|
cloudId: Scalars['ID']['input'];
|
|
@@ -21121,6 +21209,17 @@ export type JiraServiceManagementWorkflowTemplateMetadata = {
|
|
|
21121
21209
|
thumbnail?: Maybe<Scalars['String']['output']>;
|
|
21122
21210
|
workflowTemplateJsonData?: Maybe<Scalars['JSON']['output']>;
|
|
21123
21211
|
};
|
|
21212
|
+
export type JiraServiceManagementWorkflowTemplatesMetadataConnection = {
|
|
21213
|
+
__typename?: 'JiraServiceManagementWorkflowTemplatesMetadataConnection';
|
|
21214
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementWorkflowTemplatesMetadataEdge>>>;
|
|
21215
|
+
nodes?: Maybe<Array<Maybe<JiraServiceManagementWorkflowTemplateMetadata>>>;
|
|
21216
|
+
pageInfo: PageInfo;
|
|
21217
|
+
};
|
|
21218
|
+
export type JiraServiceManagementWorkflowTemplatesMetadataEdge = {
|
|
21219
|
+
__typename?: 'JiraServiceManagementWorkflowTemplatesMetadataEdge';
|
|
21220
|
+
cursor: Scalars['String']['output'];
|
|
21221
|
+
node?: Maybe<JiraServiceManagementWorkflowTemplateMetadata>;
|
|
21222
|
+
};
|
|
21124
21223
|
export type JiraSetApplicationPropertiesPayload = Payload & {
|
|
21125
21224
|
__typename?: 'JiraSetApplicationPropertiesPayload';
|
|
21126
21225
|
applicationProperties: Array<JiraApplicationProperty>;
|
|
@@ -30729,10 +30828,10 @@ export type TrelloBoard = Node & {
|
|
|
30729
30828
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
30730
30829
|
name: Scalars['String']['output'];
|
|
30731
30830
|
objectId: Scalars['ID']['output'];
|
|
30732
|
-
pluginData?: Maybe<TrelloPluginDataConnection>;
|
|
30733
|
-
plugins?: Maybe<TrelloBoardPluginConnection>;
|
|
30734
|
-
pluginsDisableAt?: Maybe<Scalars['DateTime']['output']>;
|
|
30735
30831
|
popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
|
|
30832
|
+
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
30833
|
+
powerUps?: Maybe<TrelloBoardPowerUpConnection>;
|
|
30834
|
+
powerUpsDisableAt?: Maybe<Scalars['DateTime']['output']>;
|
|
30736
30835
|
prefs: TrelloBoardPrefs;
|
|
30737
30836
|
premiumFeatures?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
30738
30837
|
shortLink: Scalars['TrelloShortLink']['output'];
|
|
@@ -30760,14 +30859,14 @@ export type TrelloBoardMembersArgs = {
|
|
|
30760
30859
|
filter?: InputMaybe<TrelloBoardMembershipFilterInput>;
|
|
30761
30860
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30762
30861
|
};
|
|
30763
|
-
export type
|
|
30862
|
+
export type TrelloBoardPowerUpDataArgs = {
|
|
30764
30863
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30765
|
-
filter?: InputMaybe<
|
|
30864
|
+
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
30766
30865
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30767
30866
|
};
|
|
30768
|
-
export type
|
|
30867
|
+
export type TrelloBoardPowerUpsArgs = {
|
|
30769
30868
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30770
|
-
filter?: InputMaybe<
|
|
30869
|
+
filter?: InputMaybe<TrelloBoardPowerUpFilterInput>;
|
|
30771
30870
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30772
30871
|
};
|
|
30773
30872
|
export type TrelloBoardTagsArgs = {
|
|
@@ -30886,21 +30985,21 @@ export type TrelloBoardMembershipsConnection = {
|
|
|
30886
30985
|
nodes?: Maybe<Array<TrelloMember>>;
|
|
30887
30986
|
pageInfo: PageInfo;
|
|
30888
30987
|
};
|
|
30889
|
-
export type
|
|
30890
|
-
__typename?: '
|
|
30891
|
-
edges?: Maybe<Array<
|
|
30892
|
-
nodes?: Maybe<Array<
|
|
30988
|
+
export type TrelloBoardPowerUpConnection = {
|
|
30989
|
+
__typename?: 'TrelloBoardPowerUpConnection';
|
|
30990
|
+
edges?: Maybe<Array<TrelloBoardPowerUpEdge>>;
|
|
30991
|
+
nodes?: Maybe<Array<TrelloPowerUp>>;
|
|
30893
30992
|
pageInfo: PageInfo;
|
|
30894
30993
|
};
|
|
30895
|
-
export type
|
|
30896
|
-
__typename?: '
|
|
30994
|
+
export type TrelloBoardPowerUpEdge = {
|
|
30995
|
+
__typename?: 'TrelloBoardPowerUpEdge';
|
|
30897
30996
|
cursor: Scalars['String']['output'];
|
|
30898
30997
|
memberId?: Maybe<Scalars['ID']['output']>;
|
|
30899
|
-
node:
|
|
30998
|
+
node: TrelloPowerUp;
|
|
30900
30999
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
30901
31000
|
promotional?: Maybe<Scalars['Boolean']['output']>;
|
|
30902
31001
|
};
|
|
30903
|
-
export type
|
|
31002
|
+
export type TrelloBoardPowerUpFilterInput = {
|
|
30904
31003
|
access?: InputMaybe<Scalars['String']['input']>;
|
|
30905
31004
|
};
|
|
30906
31005
|
export type TrelloBoardPrefs = {
|
|
@@ -30984,8 +31083,8 @@ export type TrelloCard = Node & {
|
|
|
30984
31083
|
members?: Maybe<TrelloMemberConnection>;
|
|
30985
31084
|
name?: Maybe<Scalars['String']['output']>;
|
|
30986
31085
|
objectId: Scalars['ID']['output'];
|
|
30987
|
-
pluginData?: Maybe<TrelloPluginDataConnection>;
|
|
30988
31086
|
position?: Maybe<Scalars['Float']['output']>;
|
|
31087
|
+
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
30989
31088
|
role?: Maybe<TrelloCardRole>;
|
|
30990
31089
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
30991
31090
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -31014,9 +31113,9 @@ export type TrelloCardMembersArgs = {
|
|
|
31014
31113
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31015
31114
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31016
31115
|
};
|
|
31017
|
-
export type
|
|
31116
|
+
export type TrelloCardPowerUpDataArgs = {
|
|
31018
31117
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31019
|
-
filter?: InputMaybe<
|
|
31118
|
+
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
31020
31119
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31021
31120
|
};
|
|
31022
31121
|
export type TrelloCardStickersArgs = {
|
|
@@ -31069,7 +31168,7 @@ export type TrelloCardCover = {
|
|
|
31069
31168
|
brightness?: Maybe<TrelloCardCoverBrightness>;
|
|
31070
31169
|
color?: Maybe<TrelloCardCoverColor>;
|
|
31071
31170
|
edgeColor?: Maybe<Scalars['String']['output']>;
|
|
31072
|
-
|
|
31171
|
+
powerUp?: Maybe<TrelloPowerUp>;
|
|
31073
31172
|
previews?: Maybe<TrelloImagePreviewConnection>;
|
|
31074
31173
|
sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
|
|
31075
31174
|
size?: Maybe<TrelloCardCoverSize>;
|
|
@@ -31104,7 +31203,7 @@ export type TrelloCardCoverUpdated = {
|
|
|
31104
31203
|
brightness?: Maybe<TrelloCardCoverBrightness>;
|
|
31105
31204
|
color?: Maybe<TrelloCardCoverColor>;
|
|
31106
31205
|
edgeColor?: Maybe<Scalars['String']['output']>;
|
|
31107
|
-
|
|
31206
|
+
powerUp?: Maybe<TrelloPowerUpUpdated>;
|
|
31108
31207
|
previews?: Maybe<TrelloImagePreviewUpdatedConnection>;
|
|
31109
31208
|
sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
|
|
31110
31209
|
size?: Maybe<TrelloCardCoverSize>;
|
|
@@ -31511,60 +31610,60 @@ export type TrelloMutationApiUpdateCardNameArgs = {
|
|
|
31511
31610
|
export type TrelloMutationApiWatchCardArgs = {
|
|
31512
31611
|
input: TrelloWatchCardInput;
|
|
31513
31612
|
};
|
|
31514
|
-
export type
|
|
31515
|
-
__typename?: '
|
|
31613
|
+
export type TrelloPopularLabelForColor = {
|
|
31614
|
+
__typename?: 'TrelloPopularLabelForColor';
|
|
31615
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
31616
|
+
labelName?: Maybe<Scalars['String']['output']>;
|
|
31617
|
+
};
|
|
31618
|
+
export type TrelloPowerUp = {
|
|
31619
|
+
__typename?: 'TrelloPowerUp';
|
|
31516
31620
|
author?: Maybe<Scalars['String']['output']>;
|
|
31517
31621
|
email?: Maybe<Scalars['String']['output']>;
|
|
31518
|
-
icon?: Maybe<
|
|
31622
|
+
icon?: Maybe<TrelloPowerUpIcon>;
|
|
31519
31623
|
name?: Maybe<Scalars['String']['output']>;
|
|
31520
31624
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
31521
31625
|
public?: Maybe<Scalars['Boolean']['output']>;
|
|
31522
31626
|
};
|
|
31523
|
-
export type
|
|
31524
|
-
__typename?: '
|
|
31525
|
-
access?: Maybe<
|
|
31627
|
+
export type TrelloPowerUpData = {
|
|
31628
|
+
__typename?: 'TrelloPowerUpData';
|
|
31629
|
+
access?: Maybe<TrelloPowerUpDataAccess>;
|
|
31526
31630
|
objectId: Scalars['ID']['output'];
|
|
31527
|
-
|
|
31528
|
-
scope?: Maybe<
|
|
31631
|
+
powerUp?: Maybe<TrelloPowerUp>;
|
|
31632
|
+
scope?: Maybe<TrelloPowerUpDataScope>;
|
|
31529
31633
|
value?: Maybe<Scalars['String']['output']>;
|
|
31530
31634
|
};
|
|
31531
|
-
export declare enum
|
|
31635
|
+
export declare enum TrelloPowerUpDataAccess {
|
|
31532
31636
|
Private = "PRIVATE",
|
|
31533
31637
|
Shared = "SHARED"
|
|
31534
31638
|
}
|
|
31535
|
-
export type
|
|
31536
|
-
__typename?: '
|
|
31537
|
-
edges?: Maybe<Array<
|
|
31538
|
-
nodes?: Maybe<Array<
|
|
31639
|
+
export type TrelloPowerUpDataConnection = {
|
|
31640
|
+
__typename?: 'TrelloPowerUpDataConnection';
|
|
31641
|
+
edges?: Maybe<Array<TrelloPowerUpDataEdge>>;
|
|
31642
|
+
nodes?: Maybe<Array<TrelloPowerUpData>>;
|
|
31539
31643
|
pageInfo: PageInfo;
|
|
31540
31644
|
};
|
|
31541
|
-
export type
|
|
31542
|
-
__typename?: '
|
|
31645
|
+
export type TrelloPowerUpDataEdge = {
|
|
31646
|
+
__typename?: 'TrelloPowerUpDataEdge';
|
|
31543
31647
|
cursor: Scalars['String']['output'];
|
|
31544
|
-
node:
|
|
31648
|
+
node: TrelloPowerUpData;
|
|
31545
31649
|
};
|
|
31546
|
-
export type
|
|
31650
|
+
export type TrelloPowerUpDataFilterInput = {
|
|
31547
31651
|
access?: InputMaybe<Scalars['String']['input']>;
|
|
31548
|
-
|
|
31652
|
+
powerUps?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
31549
31653
|
};
|
|
31550
|
-
export declare enum
|
|
31654
|
+
export declare enum TrelloPowerUpDataScope {
|
|
31551
31655
|
Board = "BOARD",
|
|
31552
31656
|
Card = "CARD",
|
|
31553
31657
|
Organization = "ORGANIZATION"
|
|
31554
31658
|
}
|
|
31555
|
-
export type
|
|
31556
|
-
__typename?: '
|
|
31659
|
+
export type TrelloPowerUpIcon = {
|
|
31660
|
+
__typename?: 'TrelloPowerUpIcon';
|
|
31557
31661
|
url?: Maybe<Scalars['String']['output']>;
|
|
31558
31662
|
};
|
|
31559
|
-
export type
|
|
31560
|
-
__typename?: '
|
|
31663
|
+
export type TrelloPowerUpUpdated = {
|
|
31664
|
+
__typename?: 'TrelloPowerUpUpdated';
|
|
31561
31665
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
31562
31666
|
};
|
|
31563
|
-
export type TrelloPopularLabelForColor = {
|
|
31564
|
-
__typename?: 'TrelloPopularLabelForColor';
|
|
31565
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
31566
|
-
labelName?: Maybe<Scalars['String']['output']>;
|
|
31567
|
-
};
|
|
31568
31667
|
export type TrelloProduct = {
|
|
31569
31668
|
__typename?: 'TrelloProduct';
|
|
31570
31669
|
sku: Scalars['Int']['output'];
|