@forge/cli-shared 3.20.3-next.1 → 3.20.3-next.11
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 +97 -0
- package/out/graphql/graphql-types.d.ts +272 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +35 -13
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,102 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.3-next.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 821b018: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/js-yaml
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [821b018]
|
|
12
|
+
- @forge/manifest@4.20.4-next.4
|
|
13
|
+
|
|
14
|
+
## 3.20.3-next.10
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- bfef160: Bumping dependencies via Renovate:
|
|
19
|
+
|
|
20
|
+
- @types/inquirer
|
|
21
|
+
|
|
22
|
+
## 3.20.3-next.9
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- c4b3c64c: Bumping dependencies via Renovate:
|
|
27
|
+
|
|
28
|
+
- @types/node-fetch
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [c4b3c64c]
|
|
31
|
+
- @forge/manifest@4.20.4-next.3
|
|
32
|
+
|
|
33
|
+
## 3.20.3-next.8
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- a3d620b1: Bumping dependencies via Renovate:
|
|
38
|
+
|
|
39
|
+
- @types/jest
|
|
40
|
+
|
|
41
|
+
- Updated dependencies [a3d620b1]
|
|
42
|
+
- @forge/manifest@4.20.4-next.2
|
|
43
|
+
|
|
44
|
+
## 3.20.3-next.7
|
|
45
|
+
|
|
46
|
+
### Patch Changes
|
|
47
|
+
|
|
48
|
+
- f2196201: Bumping dependencies via Renovate:
|
|
49
|
+
|
|
50
|
+
- @types/fs-extra
|
|
51
|
+
|
|
52
|
+
## 3.20.3-next.6
|
|
53
|
+
|
|
54
|
+
### Patch Changes
|
|
55
|
+
|
|
56
|
+
- 77d7bc40: Bumping dependencies via Renovate:
|
|
57
|
+
|
|
58
|
+
- @types/cross-spawn
|
|
59
|
+
|
|
60
|
+
- 3a6bae44: Bumping dependencies via Renovate:
|
|
61
|
+
|
|
62
|
+
- @types/ignore-walk
|
|
63
|
+
|
|
64
|
+
## 3.20.3-next.5
|
|
65
|
+
|
|
66
|
+
### Patch Changes
|
|
67
|
+
|
|
68
|
+
- 637d8135: Bumping dependencies via Renovate:
|
|
69
|
+
|
|
70
|
+
- @types/cheerio
|
|
71
|
+
|
|
72
|
+
- 60c2f378: Bumping dependencies via Renovate:
|
|
73
|
+
|
|
74
|
+
- @types/adm-zip
|
|
75
|
+
|
|
76
|
+
## 3.20.3-next.4
|
|
77
|
+
|
|
78
|
+
### Patch Changes
|
|
79
|
+
|
|
80
|
+
- beacdee6: Bumping dependencies via Renovate:
|
|
81
|
+
|
|
82
|
+
- @sentry/node
|
|
83
|
+
|
|
84
|
+
## 3.20.3-next.3
|
|
85
|
+
|
|
86
|
+
### Patch Changes
|
|
87
|
+
|
|
88
|
+
- 33e84a1d: Bumping dependencies via Renovate:
|
|
89
|
+
|
|
90
|
+
- @types/array.prototype.flatmap
|
|
91
|
+
|
|
92
|
+
## 3.20.3-next.2
|
|
93
|
+
|
|
94
|
+
### Patch Changes
|
|
95
|
+
|
|
96
|
+
- 07efc052: Bumping dependencies via Renovate:
|
|
97
|
+
|
|
98
|
+
- @sentry/node
|
|
99
|
+
|
|
3
100
|
## 3.20.3-next.1
|
|
4
101
|
|
|
5
102
|
### Patch Changes
|
|
@@ -2824,6 +2824,7 @@ export type CommerceOffering = {
|
|
|
2824
2824
|
};
|
|
2825
2825
|
export type CommercePricingPlan = {
|
|
2826
2826
|
primaryCycle?: Maybe<CommercePrimaryCycle>;
|
|
2827
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
2827
2828
|
};
|
|
2828
2829
|
export type CommercePrimaryCycle = {
|
|
2829
2830
|
interval?: Maybe<CcpBillingInterval>;
|
|
@@ -2973,6 +2974,7 @@ export type CompassCatalogMutationApi = {
|
|
|
2973
2974
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
2974
2975
|
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
2975
2976
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
2977
|
+
createIncomingWebhook?: Maybe<CompassCreateIncomingWebhookPayload>;
|
|
2976
2978
|
createMetricDefinition?: Maybe<CompassCreateMetricDefinitionPayload>;
|
|
2977
2979
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
2978
2980
|
createRelationship?: Maybe<CreateCompassRelationshipPayload>;
|
|
@@ -3067,6 +3069,9 @@ export type CompassCatalogMutationApiCreateCustomFieldDefinitionArgs = {
|
|
|
3067
3069
|
export type CompassCatalogMutationApiCreateEventSourceArgs = {
|
|
3068
3070
|
input: CreateEventSourceInput;
|
|
3069
3071
|
};
|
|
3072
|
+
export type CompassCatalogMutationApiCreateIncomingWebhookArgs = {
|
|
3073
|
+
input: CompassCreateIncomingWebhookInput;
|
|
3074
|
+
};
|
|
3070
3075
|
export type CompassCatalogMutationApiCreateMetricDefinitionArgs = {
|
|
3071
3076
|
input: CompassCreateMetricDefinitionInput;
|
|
3072
3077
|
};
|
|
@@ -3598,6 +3603,18 @@ export type CompassCreateIncidentEventPropertiesInput = {
|
|
|
3598
3603
|
startTime: Scalars['DateTime']['input'];
|
|
3599
3604
|
state: CompassIncidentEventState;
|
|
3600
3605
|
};
|
|
3606
|
+
export type CompassCreateIncomingWebhookInput = {
|
|
3607
|
+
cloudId: Scalars['ID']['input'];
|
|
3608
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
3609
|
+
name: Scalars['String']['input'];
|
|
3610
|
+
source: Scalars['String']['input'];
|
|
3611
|
+
};
|
|
3612
|
+
export type CompassCreateIncomingWebhookPayload = Payload & {
|
|
3613
|
+
__typename?: 'CompassCreateIncomingWebhookPayload';
|
|
3614
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3615
|
+
success: Scalars['Boolean']['output'];
|
|
3616
|
+
webhookDetails: CompassIncomingWebhook;
|
|
3617
|
+
};
|
|
3601
3618
|
export type CompassCreateLifecycleEventInput = {
|
|
3602
3619
|
description: Scalars['String']['input'];
|
|
3603
3620
|
displayName: Scalars['String']['input'];
|
|
@@ -4264,6 +4281,13 @@ export declare enum CompassIncidentEventState {
|
|
|
4264
4281
|
Open = "OPEN",
|
|
4265
4282
|
Resolved = "RESOLVED"
|
|
4266
4283
|
}
|
|
4284
|
+
export type CompassIncomingWebhook = Node & {
|
|
4285
|
+
__typename?: 'CompassIncomingWebhook';
|
|
4286
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4287
|
+
id: Scalars['ID']['output'];
|
|
4288
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4289
|
+
source: Scalars['String']['output'];
|
|
4290
|
+
};
|
|
4267
4291
|
export type CompassInsertMetricValueByExternalIdInput = {
|
|
4268
4292
|
cloudId: Scalars['ID']['input'];
|
|
4269
4293
|
externalMetricSourceId: Scalars['ID']['input'];
|
|
@@ -5342,6 +5366,12 @@ export type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
|
5342
5366
|
success: Scalars['Boolean']['output'];
|
|
5343
5367
|
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
5344
5368
|
};
|
|
5369
|
+
export type ConfluenceDatabase = {
|
|
5370
|
+
__typename?: 'ConfluenceDatabase';
|
|
5371
|
+
databaseId: Scalars['ID']['output'];
|
|
5372
|
+
id: Scalars['ID']['output'];
|
|
5373
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
5374
|
+
};
|
|
5345
5375
|
export type ConfluenceDeleteBlogPostPropertyInput = {
|
|
5346
5376
|
blogPostId: Scalars['ID']['input'];
|
|
5347
5377
|
key: Scalars['String']['input'];
|
|
@@ -5764,6 +5794,8 @@ export type ConfluenceQueryApi = {
|
|
|
5764
5794
|
blogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
5765
5795
|
comment?: Maybe<ConfluenceComment>;
|
|
5766
5796
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
5797
|
+
database?: Maybe<ConfluenceDatabase>;
|
|
5798
|
+
databases?: Maybe<Array<Maybe<ConfluenceDatabase>>>;
|
|
5767
5799
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
5768
5800
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
5769
5801
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
@@ -5789,6 +5821,12 @@ export type ConfluenceQueryApiCommentArgs = {
|
|
|
5789
5821
|
export type ConfluenceQueryApiCommentsArgs = {
|
|
5790
5822
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
5791
5823
|
};
|
|
5824
|
+
export type ConfluenceQueryApiDatabaseArgs = {
|
|
5825
|
+
id: Scalars['ID']['input'];
|
|
5826
|
+
};
|
|
5827
|
+
export type ConfluenceQueryApiDatabasesArgs = {
|
|
5828
|
+
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
5829
|
+
};
|
|
5792
5830
|
export type ConfluenceQueryApiFindSpacesArgs = {
|
|
5793
5831
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
5794
5832
|
cloudId: Scalars['ID']['input'];
|
|
@@ -7488,6 +7526,7 @@ export type DataResidency = {
|
|
|
7488
7526
|
};
|
|
7489
7527
|
export declare enum DataResidencyResponse {
|
|
7490
7528
|
AppDoesNotSupportDr = "APP_DOES_NOT_SUPPORT_DR",
|
|
7529
|
+
NotApplicable = "NOT_APPLICABLE",
|
|
7491
7530
|
StoredExternalToAtlassian = "STORED_EXTERNAL_TO_ATLASSIAN",
|
|
7492
7531
|
StoredInAtlassianAndDrNotSupported = "STORED_IN_ATLASSIAN_AND_DR_NOT_SUPPORTED",
|
|
7493
7532
|
StoredInAtlassianAndDrSupported = "STORED_IN_ATLASSIAN_AND_DR_SUPPORTED"
|
|
@@ -7496,6 +7535,7 @@ export type DataRetention = {
|
|
|
7496
7535
|
__typename?: 'DataRetention';
|
|
7497
7536
|
isCustomRetentionPeriodAllowed?: Maybe<Scalars['Boolean']['output']>;
|
|
7498
7537
|
isDataRetentionSupported: Scalars['Boolean']['output'];
|
|
7538
|
+
isRetentionDurationIndefinite?: Maybe<Scalars['Boolean']['output']>;
|
|
7499
7539
|
retentionDurationInDays?: Maybe<RetentionDurationInDays>;
|
|
7500
7540
|
};
|
|
7501
7541
|
export type DataTransfer = {
|
|
@@ -9893,6 +9933,36 @@ export type ForgeContextToken = {
|
|
|
9893
9933
|
expiresAt: Scalars['String']['output'];
|
|
9894
9934
|
jwt: Scalars['String']['output'];
|
|
9895
9935
|
};
|
|
9936
|
+
export declare enum ForgeMetricsApiRequestGroupByDimensions {
|
|
9937
|
+
Url = "URL"
|
|
9938
|
+
}
|
|
9939
|
+
export type ForgeMetricsApiRequestLatencyValueData = {
|
|
9940
|
+
__typename?: 'ForgeMetricsApiRequestLatencyValueData';
|
|
9941
|
+
interval: ForgeMetricsIntervalRange;
|
|
9942
|
+
name: Scalars['String']['output'];
|
|
9943
|
+
series: Array<ForgeMetricsApiRequestLatencyValueSeries>;
|
|
9944
|
+
type: ForgeMetricsDataType;
|
|
9945
|
+
};
|
|
9946
|
+
export type ForgeMetricsApiRequestLatencyValueResult = ForgeMetricsApiRequestLatencyValueData | QueryError;
|
|
9947
|
+
export type ForgeMetricsApiRequestLatencyValueSeries = {
|
|
9948
|
+
__typename?: 'ForgeMetricsApiRequestLatencyValueSeries';
|
|
9949
|
+
percentiles: Array<ForgeMetricsLatenciesPercentile>;
|
|
9950
|
+
};
|
|
9951
|
+
export type ForgeMetricsApiRequestQueryFilters = {
|
|
9952
|
+
apiRequestType?: InputMaybe<ForgeMetricsApiRequestType>;
|
|
9953
|
+
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9954
|
+
environment: Scalars['ID']['input'];
|
|
9955
|
+
interval: ForgeMetricsIntervalInput;
|
|
9956
|
+
urls?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9957
|
+
};
|
|
9958
|
+
export type ForgeMetricsApiRequestQueryInput = {
|
|
9959
|
+
filters: ForgeMetricsApiRequestQueryFilters;
|
|
9960
|
+
groupBy?: InputMaybe<Array<ForgeMetricsApiRequestGroupByDimensions>>;
|
|
9961
|
+
};
|
|
9962
|
+
export declare enum ForgeMetricsApiRequestType {
|
|
9963
|
+
External = "EXTERNAL",
|
|
9964
|
+
Product = "PRODUCT"
|
|
9965
|
+
}
|
|
9896
9966
|
export type ForgeMetricsData = {
|
|
9897
9967
|
name: Scalars['String']['output'];
|
|
9898
9968
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
@@ -9983,6 +10053,8 @@ export type ForgeMetricsLabelGroup = {
|
|
|
9983
10053
|
value: Scalars['String']['output'];
|
|
9984
10054
|
};
|
|
9985
10055
|
export declare enum ForgeMetricsLabels {
|
|
10056
|
+
ForgeApiRequestCount = "FORGE_API_REQUEST_COUNT",
|
|
10057
|
+
ForgeApiRequestLatency = "FORGE_API_REQUEST_LATENCY",
|
|
9986
10058
|
ForgeBackendInvocationCount = "FORGE_BACKEND_INVOCATION_COUNT",
|
|
9987
10059
|
ForgeBackendInvocationErrors = "FORGE_BACKEND_INVOCATION_ERRORS",
|
|
9988
10060
|
ForgeBackendInvocationLatency = "FORGE_BACKEND_INVOCATION_LATENCY"
|
|
@@ -10036,6 +10108,7 @@ export type ForgeMetricsOtlpQueryInput = {
|
|
|
10036
10108
|
export type ForgeMetricsOtlpResult = ForgeMetricsOtlpData | QueryError;
|
|
10037
10109
|
export type ForgeMetricsQuery = {
|
|
10038
10110
|
__typename?: 'ForgeMetricsQuery';
|
|
10111
|
+
apiRequestLatencyValue: ForgeMetricsApiRequestLatencyValueResult;
|
|
10039
10112
|
appId: Scalars['ID']['output'];
|
|
10040
10113
|
errors: ForgeMetricsErrorsResult;
|
|
10041
10114
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
@@ -10048,6 +10121,9 @@ export type ForgeMetricsQuery = {
|
|
|
10048
10121
|
successRate: ForgeMetricsSuccessRateResult;
|
|
10049
10122
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
10050
10123
|
};
|
|
10124
|
+
export type ForgeMetricsQueryApiRequestLatencyValueArgs = {
|
|
10125
|
+
query: ForgeMetricsApiRequestQueryInput;
|
|
10126
|
+
};
|
|
10051
10127
|
export type ForgeMetricsQueryErrorsArgs = {
|
|
10052
10128
|
query: ForgeMetricsQueryInput;
|
|
10053
10129
|
};
|
|
@@ -11994,6 +12070,7 @@ export type HamsOffering = CommerceOffering & {
|
|
|
11994
12070
|
export type HamsPricingPlan = CommercePricingPlan & {
|
|
11995
12071
|
__typename?: 'HamsPricingPlan';
|
|
11996
12072
|
primaryCycle?: Maybe<HamsPrimaryCycle>;
|
|
12073
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
11997
12074
|
};
|
|
11998
12075
|
export type HamsPrimaryCycle = CommercePrimaryCycle & {
|
|
11999
12076
|
__typename?: 'HamsPrimaryCycle';
|
|
@@ -13182,6 +13259,73 @@ export type InlineColumnEditConfig = {
|
|
|
13182
13259
|
__typename?: 'InlineColumnEditConfig';
|
|
13183
13260
|
enabled: Scalars['Boolean']['output'];
|
|
13184
13261
|
};
|
|
13262
|
+
export type Insights = {
|
|
13263
|
+
__typename?: 'Insights';
|
|
13264
|
+
nextBestTasksByProject?: Maybe<Array<Maybe<InsightsNextBestTask>>>;
|
|
13265
|
+
nextBestTasksBySprint?: Maybe<Array<Maybe<InsightsNextBestTask>>>;
|
|
13266
|
+
};
|
|
13267
|
+
export type InsightsNextBestTasksByProjectArgs = {
|
|
13268
|
+
projectAri: Scalars['ID']['input'];
|
|
13269
|
+
};
|
|
13270
|
+
export type InsightsNextBestTasksBySprintArgs = {
|
|
13271
|
+
sprintAri: Scalars['ID']['input'];
|
|
13272
|
+
};
|
|
13273
|
+
export type InsightsBuildDetails = {
|
|
13274
|
+
__typename?: 'InsightsBuildDetails';
|
|
13275
|
+
buildNumber?: Maybe<Scalars['Int']['output']>;
|
|
13276
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
13277
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
13278
|
+
issueName?: Maybe<Scalars['String']['output']>;
|
|
13279
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13280
|
+
numberOfFailedBuilds?: Maybe<Scalars['Int']['output']>;
|
|
13281
|
+
};
|
|
13282
|
+
export type InsightsDeploymentDetails = {
|
|
13283
|
+
__typename?: 'InsightsDeploymentDetails';
|
|
13284
|
+
environmentNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13285
|
+
environmentType?: Maybe<InsightsEnvironmentType>;
|
|
13286
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
13287
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
13288
|
+
issueName?: Maybe<Scalars['String']['output']>;
|
|
13289
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13290
|
+
numberOfFailedDeployments?: Maybe<Scalars['Int']['output']>;
|
|
13291
|
+
pipelineName?: Maybe<Scalars['String']['output']>;
|
|
13292
|
+
};
|
|
13293
|
+
export declare enum InsightsEnvironmentType {
|
|
13294
|
+
Development = "DEVELOPMENT",
|
|
13295
|
+
Production = "PRODUCTION",
|
|
13296
|
+
Staging = "STAGING",
|
|
13297
|
+
Testing = "TESTING",
|
|
13298
|
+
Unmapped = "UNMAPPED"
|
|
13299
|
+
}
|
|
13300
|
+
export type InsightsNextBestTask = {
|
|
13301
|
+
__typename?: 'InsightsNextBestTask';
|
|
13302
|
+
details?: Maybe<InsightsNextBestTaskDetails>;
|
|
13303
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
13304
|
+
task?: Maybe<InsightsTaskType>;
|
|
13305
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
13306
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
13307
|
+
};
|
|
13308
|
+
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestDetails | InsightsPullRequestNeedsWorkDetails;
|
|
13309
|
+
export type InsightsPullRequestDetails = {
|
|
13310
|
+
__typename?: 'InsightsPullRequestDetails';
|
|
13311
|
+
approvalsCount?: Maybe<Scalars['Int']['output']>;
|
|
13312
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13313
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13314
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13315
|
+
};
|
|
13316
|
+
export type InsightsPullRequestNeedsWorkDetails = {
|
|
13317
|
+
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
13318
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13319
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13320
|
+
needsWorkCount?: Maybe<Scalars['Int']['output']>;
|
|
13321
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13322
|
+
};
|
|
13323
|
+
export declare enum InsightsTaskType {
|
|
13324
|
+
BuildFailed = "BUILD_FAILED",
|
|
13325
|
+
DeploymentFailed = "DEPLOYMENT_FAILED",
|
|
13326
|
+
PrNeedsWork = "PR_NEEDS_WORK",
|
|
13327
|
+
PrReview = "PR_REVIEW"
|
|
13328
|
+
}
|
|
13185
13329
|
export type InstallationContextWithLogAccess = {
|
|
13186
13330
|
__typename?: 'InstallationContextWithLogAccess';
|
|
13187
13331
|
installationContext: Scalars['ID']['output'];
|
|
@@ -14967,6 +15111,14 @@ export type JiraDefaultGrantTypeValue = Node & {
|
|
|
14967
15111
|
id: Scalars['ID']['output'];
|
|
14968
15112
|
name: Scalars['String']['output'];
|
|
14969
15113
|
};
|
|
15114
|
+
export type JiraDeleteProjectNotificationPreferencesInput = {
|
|
15115
|
+
projectId: Scalars['ID']['input'];
|
|
15116
|
+
};
|
|
15117
|
+
export type JiraDeleteProjectNotificationPreferencesPayload = Payload & {
|
|
15118
|
+
__typename?: 'JiraDeleteProjectNotificationPreferencesPayload';
|
|
15119
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15120
|
+
success: Scalars['Boolean']['output'];
|
|
15121
|
+
};
|
|
14970
15122
|
export type JiraDeleteShortcutInput = {
|
|
14971
15123
|
projectId: Scalars['ID']['input'];
|
|
14972
15124
|
shortcutId: Scalars['ID']['input'];
|
|
@@ -15917,6 +16069,14 @@ export type JiraIssueConnection = {
|
|
|
15917
16069
|
export type JiraIssueConnectionPageCursorsArgs = {
|
|
15918
16070
|
maxCursors: Scalars['Int']['input'];
|
|
15919
16071
|
};
|
|
16072
|
+
export type JiraIssueCreatedStreamHubPayload = {
|
|
16073
|
+
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
16074
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
16075
|
+
};
|
|
16076
|
+
export type JiraIssueDeletedStreamHubPayload = {
|
|
16077
|
+
__typename?: 'JiraIssueDeletedStreamHubPayload';
|
|
16078
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
16079
|
+
};
|
|
15920
16080
|
export type JiraIssueDeploymentEnvironment = {
|
|
15921
16081
|
__typename?: 'JiraIssueDeploymentEnvironment';
|
|
15922
16082
|
status?: Maybe<JiraIssueDeploymentEnvironmentState>;
|
|
@@ -16540,11 +16700,6 @@ export type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
16540
16700
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16541
16701
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
16542
16702
|
};
|
|
16543
|
-
export declare enum JiraIssueSearchViewContext {
|
|
16544
|
-
Nin = "NIN",
|
|
16545
|
-
NinWithFallback = "NIN_WITH_FALLBACK",
|
|
16546
|
-
ShadowRequest = "SHADOW_REQUEST"
|
|
16547
|
-
}
|
|
16548
16703
|
export type JiraIssueSearchViewPayload = Payload & {
|
|
16549
16704
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
16550
16705
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -16634,6 +16789,10 @@ export type JiraIssueTypeInput = {
|
|
|
16634
16789
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
16635
16790
|
issueTypeId: Scalars['ID']['input'];
|
|
16636
16791
|
};
|
|
16792
|
+
export type JiraIssueUpdatedStreamHubPayload = {
|
|
16793
|
+
__typename?: 'JiraIssueUpdatedStreamHubPayload';
|
|
16794
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
16795
|
+
};
|
|
16637
16796
|
export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
16638
16797
|
NewestFirst = "NEWEST_FIRST",
|
|
16639
16798
|
OldestFirst = "OLDEST_FIRST"
|
|
@@ -17467,6 +17626,7 @@ export type JiraMutation = {
|
|
|
17467
17626
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
17468
17627
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
17469
17628
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
17629
|
+
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
17470
17630
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
17471
17631
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
17472
17632
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
@@ -17480,6 +17640,7 @@ export type JiraMutation = {
|
|
|
17480
17640
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
17481
17641
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
17482
17642
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
17643
|
+
resetProjectNotificationPreferences?: Maybe<JiraResetProjectNotificationPreferencesPayload>;
|
|
17483
17644
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
17484
17645
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
17485
17646
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
@@ -17509,6 +17670,7 @@ export type JiraMutation = {
|
|
|
17509
17670
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
17510
17671
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
17511
17672
|
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
17673
|
+
updateProjectNotificationPreferences?: Maybe<JiraUpdateProjectNotificationPreferencesPayload>;
|
|
17512
17674
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
17513
17675
|
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
17514
17676
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
@@ -17585,6 +17747,10 @@ export type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
|
17585
17747
|
export type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
17586
17748
|
id: Scalars['ID']['input'];
|
|
17587
17749
|
};
|
|
17750
|
+
export type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
17751
|
+
cloudId: Scalars['ID']['input'];
|
|
17752
|
+
input: JiraDeleteProjectNotificationPreferencesInput;
|
|
17753
|
+
};
|
|
17588
17754
|
export type JiraMutationDeleteProjectShortcutArgs = {
|
|
17589
17755
|
input: JiraDeleteShortcutInput;
|
|
17590
17756
|
};
|
|
@@ -17620,6 +17786,10 @@ export type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
17620
17786
|
id: Scalars['ID']['input'];
|
|
17621
17787
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
17622
17788
|
};
|
|
17789
|
+
export type JiraMutationResetProjectNotificationPreferencesArgs = {
|
|
17790
|
+
cloudId: Scalars['ID']['input'];
|
|
17791
|
+
input: JiraResetProjectNotificationPreferencesInput;
|
|
17792
|
+
};
|
|
17623
17793
|
export type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
|
|
17624
17794
|
input: JiraVersionDetailsCollapsedUisInput;
|
|
17625
17795
|
};
|
|
@@ -17713,6 +17883,10 @@ export type JiraMutationUpdatePriorityFieldArgs = {
|
|
|
17713
17883
|
export type JiraMutationUpdateProjectFieldArgs = {
|
|
17714
17884
|
input: JiraUpdateProjectFieldInput;
|
|
17715
17885
|
};
|
|
17886
|
+
export type JiraMutationUpdateProjectNotificationPreferencesArgs = {
|
|
17887
|
+
cloudId: Scalars['ID']['input'];
|
|
17888
|
+
input: JiraUpdateProjectNotificationPreferencesInput;
|
|
17889
|
+
};
|
|
17716
17890
|
export type JiraMutationUpdateProjectShortcutArgs = {
|
|
17717
17891
|
input: JiraUpdateShortcutInput;
|
|
17718
17892
|
};
|
|
@@ -17834,6 +18008,17 @@ export type JiraNotificationPreferences = {
|
|
|
17834
18008
|
issueMentioned?: Maybe<JiraNotificationPreference>;
|
|
17835
18009
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
17836
18010
|
};
|
|
18011
|
+
export type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
18012
|
+
__typename?: 'JiraNotificationProjectPreferenceConnection';
|
|
18013
|
+
edges?: Maybe<Array<Maybe<JiraProjectNotificationPreferenceEdge>>>;
|
|
18014
|
+
pageInfo: PageInfo;
|
|
18015
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
18016
|
+
};
|
|
18017
|
+
export type JiraNotificationProjectPreferences = {
|
|
18018
|
+
__typename?: 'JiraNotificationProjectPreferences';
|
|
18019
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
18020
|
+
project?: Maybe<JiraProject>;
|
|
18021
|
+
};
|
|
17837
18022
|
export declare enum JiraNotificationType {
|
|
17838
18023
|
CommentCreated = "COMMENT_CREATED",
|
|
17839
18024
|
CommentDeleted = "COMMENT_DELETED",
|
|
@@ -18464,6 +18649,8 @@ export type JiraProject = Node & {
|
|
|
18464
18649
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
18465
18650
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
18466
18651
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
18652
|
+
hasRelationshipFrom?: Maybe<Scalars['Boolean']['output']>;
|
|
18653
|
+
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
18467
18654
|
id: Scalars['ID']['output'];
|
|
18468
18655
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
18469
18656
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18521,6 +18708,12 @@ export type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
|
18521
18708
|
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
18522
18709
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18523
18710
|
};
|
|
18711
|
+
export type JiraProjectHasRelationshipFromArgs = {
|
|
18712
|
+
type: Scalars['ID']['input'];
|
|
18713
|
+
};
|
|
18714
|
+
export type JiraProjectHasRelationshipToArgs = {
|
|
18715
|
+
type: Scalars['ID']['input'];
|
|
18716
|
+
};
|
|
18524
18717
|
export type JiraProjectIntentTemplatesArgs = {
|
|
18525
18718
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
18526
18719
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18860,6 +19053,11 @@ export type JiraProjectListViewTemplateItem = {
|
|
|
18860
19053
|
title?: Maybe<Scalars['String']['output']>;
|
|
18861
19054
|
};
|
|
18862
19055
|
export type JiraProjectNavigationMetadata = JiraServiceManagementProjectNavigationMetadata | JiraSoftwareProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
19056
|
+
export type JiraProjectNotificationPreferenceEdge = {
|
|
19057
|
+
__typename?: 'JiraProjectNotificationPreferenceEdge';
|
|
19058
|
+
cursor: Scalars['String']['output'];
|
|
19059
|
+
node?: Maybe<JiraNotificationProjectPreferences>;
|
|
19060
|
+
};
|
|
18863
19061
|
export type JiraProjectOptions = {
|
|
18864
19062
|
projectType?: InputMaybe<JiraProjectType>;
|
|
18865
19063
|
};
|
|
@@ -18974,6 +19172,7 @@ export type JiraQuery = {
|
|
|
18974
19172
|
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
18975
19173
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
18976
19174
|
allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
|
|
19175
|
+
allNotificationProjectPreferences?: Maybe<JiraNotificationProjectPreferenceConnection>;
|
|
18977
19176
|
announcementBanner?: Maybe<JiraAnnouncementBanner>;
|
|
18978
19177
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
18979
19178
|
booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
|
|
@@ -19040,6 +19239,7 @@ export type JiraQuery = {
|
|
|
19040
19239
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
19041
19240
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
19042
19241
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
19242
|
+
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
19043
19243
|
permission?: Maybe<JiraPermission>;
|
|
19044
19244
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
19045
19245
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
@@ -19101,6 +19301,13 @@ export type JiraQueryAllJiraUserBroadcastMessagesArgs = {
|
|
|
19101
19301
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19102
19302
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
19103
19303
|
};
|
|
19304
|
+
export type JiraQueryAllNotificationProjectPreferencesArgs = {
|
|
19305
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
19306
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
19307
|
+
cloudId: Scalars['ID']['input'];
|
|
19308
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19309
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
19310
|
+
};
|
|
19104
19311
|
export type JiraQueryAnnouncementBannerArgs = {
|
|
19105
19312
|
cloudId: Scalars['ID']['input'];
|
|
19106
19313
|
};
|
|
@@ -19184,6 +19391,7 @@ export type JiraQueryFiltersArgs = {
|
|
|
19184
19391
|
export type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
19185
19392
|
cloudId: Scalars['ID']['input'];
|
|
19186
19393
|
keywords?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19394
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
19187
19395
|
projectStyle?: InputMaybe<JiraProjectStyle>;
|
|
19188
19396
|
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19189
19397
|
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19390,6 +19598,10 @@ export type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
19390
19598
|
export type JiraQueryNotificationGlobalPreferenceArgs = {
|
|
19391
19599
|
cloudId: Scalars['ID']['input'];
|
|
19392
19600
|
};
|
|
19601
|
+
export type JiraQueryNotificationProjectPreferencesArgs = {
|
|
19602
|
+
cloudId: Scalars['ID']['input'];
|
|
19603
|
+
projectIds: Array<Scalars['ID']['input']>;
|
|
19604
|
+
};
|
|
19393
19605
|
export type JiraQueryPermissionArgs = {
|
|
19394
19606
|
cloudId: Scalars['ID']['input'];
|
|
19395
19607
|
type: JiraPermissionType;
|
|
@@ -19733,6 +19945,15 @@ export type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
|
19733
19945
|
inclusive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19734
19946
|
nodes: Array<Scalars['String']['input']>;
|
|
19735
19947
|
};
|
|
19948
|
+
export type JiraResetProjectNotificationPreferencesInput = {
|
|
19949
|
+
projectId: Scalars['ID']['input'];
|
|
19950
|
+
};
|
|
19951
|
+
export type JiraResetProjectNotificationPreferencesPayload = Payload & {
|
|
19952
|
+
__typename?: 'JiraResetProjectNotificationPreferencesPayload';
|
|
19953
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19954
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
19955
|
+
success: Scalars['Boolean']['output'];
|
|
19956
|
+
};
|
|
19736
19957
|
export type JiraResolution = Node & {
|
|
19737
19958
|
__typename?: 'JiraResolution';
|
|
19738
19959
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -21232,10 +21453,25 @@ export type JiraSubmitBulkOperationProgress = Node & {
|
|
|
21232
21453
|
export type JiraSubscription = {
|
|
21233
21454
|
__typename?: 'JiraSubscription';
|
|
21234
21455
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
21456
|
+
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
21457
|
+
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
21458
|
+
onJwmIssueUpdatedByProject?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
21235
21459
|
};
|
|
21236
21460
|
export type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
21237
21461
|
siteId: Scalars['ID']['input'];
|
|
21238
21462
|
};
|
|
21463
|
+
export type JiraSubscriptionOnJwmIssueCreatedByProjectArgs = {
|
|
21464
|
+
cloudId: Scalars['ID']['input'];
|
|
21465
|
+
projectId: Scalars['String']['input'];
|
|
21466
|
+
};
|
|
21467
|
+
export type JiraSubscriptionOnJwmIssueDeletedByProjectArgs = {
|
|
21468
|
+
cloudId: Scalars['ID']['input'];
|
|
21469
|
+
projectId: Scalars['String']['input'];
|
|
21470
|
+
};
|
|
21471
|
+
export type JiraSubscriptionOnJwmIssueUpdatedByProjectArgs = {
|
|
21472
|
+
cloudId: Scalars['ID']['input'];
|
|
21473
|
+
projectId: Scalars['String']['input'];
|
|
21474
|
+
};
|
|
21239
21475
|
export type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
21240
21476
|
__typename?: 'JiraSubtasksField';
|
|
21241
21477
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -21573,6 +21809,16 @@ export type JiraUpdateProjectFieldInput = {
|
|
|
21573
21809
|
id: Scalars['ID']['input'];
|
|
21574
21810
|
operation: JiraProjectFieldOperationInput;
|
|
21575
21811
|
};
|
|
21812
|
+
export type JiraUpdateProjectNotificationPreferencesInput = {
|
|
21813
|
+
preferences: Array<JiraNotificationPreferenceInput>;
|
|
21814
|
+
projectId: Scalars['ID']['input'];
|
|
21815
|
+
};
|
|
21816
|
+
export type JiraUpdateProjectNotificationPreferencesPayload = Payload & {
|
|
21817
|
+
__typename?: 'JiraUpdateProjectNotificationPreferencesPayload';
|
|
21818
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21819
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
21820
|
+
success: Scalars['Boolean']['output'];
|
|
21821
|
+
};
|
|
21576
21822
|
export type JiraUpdateRadioSelectFieldInput = {
|
|
21577
21823
|
id: Scalars['ID']['input'];
|
|
21578
21824
|
operation: JiraRadioSelectFieldOperationInput;
|
|
@@ -23904,6 +24150,7 @@ export declare enum NlpErrorState {
|
|
|
23904
24150
|
NoAnswerRelevantContent = "NO_ANSWER_RELEVANT_CONTENT",
|
|
23905
24151
|
NoAnswerSearchResults = "NO_ANSWER_SEARCH_RESULTS",
|
|
23906
24152
|
NoAnswerWhoQuestion = "NO_ANSWER_WHO_QUESTION",
|
|
24153
|
+
OpenaiRateLimitUserAbuse = "OPENAI_RATE_LIMIT_USER_ABUSE",
|
|
23907
24154
|
SubjectiveQuery = "SUBJECTIVE_QUERY"
|
|
23908
24155
|
}
|
|
23909
24156
|
export type NlpFollowUpResponse = {
|
|
@@ -25855,6 +26102,7 @@ export type Query = {
|
|
|
25855
26102
|
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
25856
26103
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
25857
26104
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
26105
|
+
insights?: Maybe<Insights>;
|
|
25858
26106
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
25859
26107
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
25860
26108
|
jira?: Maybe<JiraQuery>;
|
|
@@ -29850,6 +30098,7 @@ export type ToolchainAssociateContainersInput = {
|
|
|
29850
30098
|
};
|
|
29851
30099
|
export type ToolchainAssociateContainersPayload = Payload & {
|
|
29852
30100
|
__typename?: 'ToolchainAssociateContainersPayload';
|
|
30101
|
+
associatedContainers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
29853
30102
|
containers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
29854
30103
|
errors?: Maybe<Array<MutationError>>;
|
|
29855
30104
|
success: Scalars['Boolean']['output'];
|
|
@@ -30812,8 +31061,10 @@ export type TrelloCreateCardPayload = Payload & {
|
|
|
30812
31061
|
};
|
|
30813
31062
|
export type TrelloCustomField = {
|
|
30814
31063
|
__typename?: 'TrelloCustomField';
|
|
31064
|
+
display?: Maybe<TrelloCustomFieldDisplay>;
|
|
30815
31065
|
name?: Maybe<Scalars['String']['output']>;
|
|
30816
31066
|
objectId: Scalars['ID']['output'];
|
|
31067
|
+
options?: Maybe<Array<TrelloCustomFieldOption>>;
|
|
30817
31068
|
position?: Maybe<Scalars['Float']['output']>;
|
|
30818
31069
|
type?: Maybe<Scalars['String']['output']>;
|
|
30819
31070
|
};
|
|
@@ -30823,6 +31074,10 @@ export type TrelloCustomFieldConnection = {
|
|
|
30823
31074
|
nodes?: Maybe<Array<TrelloCustomField>>;
|
|
30824
31075
|
pageInfo: PageInfo;
|
|
30825
31076
|
};
|
|
31077
|
+
export type TrelloCustomFieldDisplay = {
|
|
31078
|
+
__typename?: 'TrelloCustomFieldDisplay';
|
|
31079
|
+
cardFront?: Maybe<Scalars['Boolean']['output']>;
|
|
31080
|
+
};
|
|
30826
31081
|
export type TrelloCustomFieldEdge = {
|
|
30827
31082
|
__typename?: 'TrelloCustomFieldEdge';
|
|
30828
31083
|
cursor: Scalars['String']['output'];
|
|
@@ -30854,6 +31109,17 @@ export type TrelloCustomFieldItemValueInfo = {
|
|
|
30854
31109
|
number?: Maybe<Scalars['Float']['output']>;
|
|
30855
31110
|
text?: Maybe<Scalars['String']['output']>;
|
|
30856
31111
|
};
|
|
31112
|
+
export type TrelloCustomFieldOption = {
|
|
31113
|
+
__typename?: 'TrelloCustomFieldOption';
|
|
31114
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
31115
|
+
objectId: Scalars['ID']['output'];
|
|
31116
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
31117
|
+
value?: Maybe<TrelloCustomFieldOptionValue>;
|
|
31118
|
+
};
|
|
31119
|
+
export type TrelloCustomFieldOptionValue = {
|
|
31120
|
+
__typename?: 'TrelloCustomFieldOptionValue';
|
|
31121
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
31122
|
+
};
|
|
30857
31123
|
export type TrelloDescription = {
|
|
30858
31124
|
__typename?: 'TrelloDescription';
|
|
30859
31125
|
customData?: Maybe<TrelloDescriptionData>;
|
|
@@ -30918,6 +31184,7 @@ export type TrelloImagePreviewUpdatedConnection = {
|
|
|
30918
31184
|
export type TrelloJwmWorkspaceLink = {
|
|
30919
31185
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
30920
31186
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
31187
|
+
idCloud?: Maybe<Scalars['String']['output']>;
|
|
30921
31188
|
};
|
|
30922
31189
|
export type TrelloLabel = {
|
|
30923
31190
|
__typename?: 'TrelloLabel';
|