@forge/cli-shared 3.6.2-next.1 → 3.6.2-next.1-experimental-58938ba
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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.6.2-next.1-experimental-58938ba
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1eca527f: Type-safe argument and option handling
|
|
8
|
+
- Updated dependencies [23a89df6]
|
|
9
|
+
- @forge/manifest@4.7.1-next.0-experimental-58938ba
|
|
10
|
+
|
|
3
11
|
## 3.6.2-next.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -33,6 +33,11 @@ export declare type Scalars = {
|
|
|
33
33
|
TrelloShortLink: any;
|
|
34
34
|
URL: any;
|
|
35
35
|
};
|
|
36
|
+
export declare enum AcceptableResponse {
|
|
37
|
+
NotApplicable = "NOT_APPLICABLE",
|
|
38
|
+
True = "TRUE",
|
|
39
|
+
False = "FALSE"
|
|
40
|
+
}
|
|
36
41
|
export declare enum AccountStatus {
|
|
37
42
|
Active = "active",
|
|
38
43
|
Inactive = "inactive",
|
|
@@ -796,7 +801,8 @@ export declare type AppRecContext = {
|
|
|
796
801
|
userId?: Maybe<Scalars['ID']>;
|
|
797
802
|
};
|
|
798
803
|
export declare type AppRecDismissRecommendationInput = {
|
|
799
|
-
appId
|
|
804
|
+
appId?: Maybe<Scalars['ID']>;
|
|
805
|
+
productId?: Maybe<Scalars['ID']>;
|
|
800
806
|
context?: Maybe<AppRecContext>;
|
|
801
807
|
};
|
|
802
808
|
export declare type AppRecDismissRecommendationPayload = Payload & {
|
|
@@ -807,8 +813,9 @@ export declare type AppRecDismissRecommendationPayload = Payload & {
|
|
|
807
813
|
};
|
|
808
814
|
export declare type AppRecDismissal = {
|
|
809
815
|
__typename?: 'AppRecDismissal';
|
|
810
|
-
appId: Scalars['ID'];
|
|
811
816
|
dismissedAt: Scalars['String'];
|
|
817
|
+
appId: Scalars['ID'];
|
|
818
|
+
productId: Scalars['ID'];
|
|
812
819
|
};
|
|
813
820
|
export declare type AppRecMutation = {
|
|
814
821
|
__typename?: 'AppRecMutation';
|
|
@@ -832,11 +839,13 @@ export declare type AppRecQueryRecommendationsArgs = {
|
|
|
832
839
|
export declare type AppRecRecommendation = {
|
|
833
840
|
__typename?: 'AppRecRecommendation';
|
|
834
841
|
appId: Scalars['ID'];
|
|
842
|
+
productId: Scalars['ID'];
|
|
835
843
|
reasons?: Maybe<Array<Scalars['String']>>;
|
|
836
844
|
};
|
|
837
845
|
export declare type AppRecRecommendationResult = QueryError | AppRecRecommendation;
|
|
838
846
|
export declare type AppRecUndoDismissalInput = {
|
|
839
|
-
appId
|
|
847
|
+
appId?: Maybe<Scalars['ID']>;
|
|
848
|
+
productId?: Maybe<Scalars['ID']>;
|
|
840
849
|
context: AppRecContext;
|
|
841
850
|
};
|
|
842
851
|
export declare type AppRecUndoDismissalPayload = Payload & {
|
|
@@ -998,6 +1007,10 @@ export declare enum AppTaskState {
|
|
|
998
1007
|
Complete = "COMPLETE",
|
|
999
1008
|
Failed = "FAILED"
|
|
1000
1009
|
}
|
|
1010
|
+
export declare enum AppTrustInformationState {
|
|
1011
|
+
Draft = "DRAFT",
|
|
1012
|
+
Live = "LIVE"
|
|
1013
|
+
}
|
|
1001
1014
|
export declare type AppTunnelDefinitions = {
|
|
1002
1015
|
__typename?: 'AppTunnelDefinitions';
|
|
1003
1016
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
@@ -1157,7 +1170,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
1157
1170
|
id: Scalars['ID'];
|
|
1158
1171
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1159
1172
|
};
|
|
1160
|
-
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | OpsgenieTeam;
|
|
1173
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment;
|
|
1161
1174
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
1162
1175
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1163
1176
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -1640,6 +1653,21 @@ export declare type BurndownChartDataTableScopeChangeRow = {
|
|
|
1640
1653
|
cardType?: Maybe<CardType>;
|
|
1641
1654
|
cardParent?: Maybe<CardParent>;
|
|
1642
1655
|
};
|
|
1656
|
+
export declare type Business = {
|
|
1657
|
+
__typename?: 'Business';
|
|
1658
|
+
isAppBusiness: AcceptableResponse;
|
|
1659
|
+
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1660
|
+
};
|
|
1661
|
+
export declare type Caiq = {
|
|
1662
|
+
__typename?: 'CAIQ';
|
|
1663
|
+
isCAIQCompleted: Scalars['Boolean'];
|
|
1664
|
+
CAIQLiteLink?: Maybe<Scalars['String']>;
|
|
1665
|
+
};
|
|
1666
|
+
export declare type CcpaDetails = {
|
|
1667
|
+
__typename?: 'CCPADetails';
|
|
1668
|
+
business?: Maybe<Business>;
|
|
1669
|
+
serviceProvider?: Maybe<ServiceProvider>;
|
|
1670
|
+
};
|
|
1643
1671
|
export declare type CfdChartConnection = {
|
|
1644
1672
|
__typename?: 'CFDChartConnection';
|
|
1645
1673
|
edges: Array<Maybe<CfdChartEdge>>;
|
|
@@ -5672,6 +5700,54 @@ export declare type CustomerUser = User & LocalizationContext & {
|
|
|
5672
5700
|
zoneinfo?: Maybe<Scalars['String']>;
|
|
5673
5701
|
locale?: Maybe<Scalars['String']>;
|
|
5674
5702
|
};
|
|
5703
|
+
export declare type DataAccessAndStorage = {
|
|
5704
|
+
__typename?: 'DataAccessAndStorage';
|
|
5705
|
+
typesOfDataAccessed?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
5706
|
+
typesOfDataStored?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
5707
|
+
isSameDataProcessedAndStored?: Maybe<Scalars['Boolean']>;
|
|
5708
|
+
appProcessEUDOutsideAtlassian?: Maybe<Scalars['Boolean']>;
|
|
5709
|
+
appStoresEUDOutsideAtlassian?: Maybe<Scalars['Boolean']>;
|
|
5710
|
+
};
|
|
5711
|
+
export declare type DataController = {
|
|
5712
|
+
__typename?: 'DataController';
|
|
5713
|
+
isAppDataController: AcceptableResponse;
|
|
5714
|
+
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
5715
|
+
};
|
|
5716
|
+
export declare type DataProcessingAgreement = {
|
|
5717
|
+
__typename?: 'DataProcessingAgreement';
|
|
5718
|
+
isDPASupported: AcceptableResponse;
|
|
5719
|
+
link: Scalars['String'];
|
|
5720
|
+
};
|
|
5721
|
+
export declare type DataProcessor = {
|
|
5722
|
+
__typename?: 'DataProcessor';
|
|
5723
|
+
isAppDataProcessor: AcceptableResponse;
|
|
5724
|
+
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
5725
|
+
};
|
|
5726
|
+
export declare type DataResidency = {
|
|
5727
|
+
__typename?: 'DataResidency';
|
|
5728
|
+
isDataResidencySupported: DataResidencyResponse;
|
|
5729
|
+
countriesWhereEndUserDataStored?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
5730
|
+
realmMigrationSupported?: Maybe<Scalars['Boolean']>;
|
|
5731
|
+
inScopeDataTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
5732
|
+
};
|
|
5733
|
+
export declare enum DataResidencyResponse {
|
|
5734
|
+
StoredExternalToAtlassian = "STORED_EXTERNAL_TO_ATLASSIAN",
|
|
5735
|
+
StoredInAtlassianAndDrSupported = "STORED_IN_ATLASSIAN_AND_DR_SUPPORTED",
|
|
5736
|
+
AppDoesNotSupportDr = "APP_DOES_NOT_SUPPORT_DR",
|
|
5737
|
+
StoredInAtlassianAndDrNotSupported = "STORED_IN_ATLASSIAN_AND_DR_NOT_SUPPORTED"
|
|
5738
|
+
}
|
|
5739
|
+
export declare type DataRetention = {
|
|
5740
|
+
__typename?: 'DataRetention';
|
|
5741
|
+
isDataRetentionSupported: Scalars['Boolean'];
|
|
5742
|
+
retentionDurationInDays?: Maybe<RetentionDurationInDays>;
|
|
5743
|
+
isCustomRetentionPeriodAllowed?: Maybe<Scalars['Boolean']>;
|
|
5744
|
+
};
|
|
5745
|
+
export declare type DataTransfer = {
|
|
5746
|
+
__typename?: 'DataTransfer';
|
|
5747
|
+
isEndUserDataTransferredOutsideEEA: Scalars['Boolean'];
|
|
5748
|
+
isTransferComplianceMechanismsAdhered?: Maybe<Scalars['Boolean']>;
|
|
5749
|
+
transferComplianceMechanismsAdheredDetails?: Maybe<Scalars['String']>;
|
|
5750
|
+
};
|
|
5675
5751
|
export declare type DateSearchInput = {
|
|
5676
5752
|
earliestStart?: Maybe<Scalars['String']>;
|
|
5677
5753
|
latestStart?: Maybe<Scalars['String']>;
|
|
@@ -7390,12 +7466,16 @@ export declare type Extension = {
|
|
|
7390
7466
|
export declare type ExtensionContext = {
|
|
7391
7467
|
__typename?: 'ExtensionContext';
|
|
7392
7468
|
id: Scalars['ID'];
|
|
7469
|
+
extensions: Array<Extension>;
|
|
7393
7470
|
extensionsByType: Array<Extension>;
|
|
7394
7471
|
installationsSummary?: Maybe<Array<InstallationSummary>>;
|
|
7395
7472
|
appAuditLogs: AppAuditConnection;
|
|
7396
7473
|
userConsentByAaid?: Maybe<Array<UserConsent>>;
|
|
7397
7474
|
installations?: Maybe<AppInstallationConnection>;
|
|
7398
7475
|
};
|
|
7476
|
+
export declare type ExtensionContextExtensionsArgs = {
|
|
7477
|
+
filter?: Maybe<Array<ExtensionContextsFilter>>;
|
|
7478
|
+
};
|
|
7399
7479
|
export declare type ExtensionContextExtensionsByTypeArgs = {
|
|
7400
7480
|
type: Scalars['String'];
|
|
7401
7481
|
principalType?: Maybe<PrincipalType>;
|
|
@@ -7421,7 +7501,8 @@ export declare type ExtensionContextsFilter = {
|
|
|
7421
7501
|
export declare enum ExtensionContextsFilterType {
|
|
7422
7502
|
Container = "CONTAINER",
|
|
7423
7503
|
DataClassificationTag = "DATA_CLASSIFICATION_TAG",
|
|
7424
|
-
ExtensionType = "EXTENSION_TYPE"
|
|
7504
|
+
ExtensionType = "EXTENSION_TYPE",
|
|
7505
|
+
PrincipalType = "PRINCIPAL_TYPE"
|
|
7425
7506
|
}
|
|
7426
7507
|
export declare type ExtensionDetailsInput = {
|
|
7427
7508
|
definitionId: Scalars['ID'];
|
|
@@ -7790,6 +7871,12 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
7790
7871
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
7791
7872
|
};
|
|
7792
7873
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
7874
|
+
export declare enum FormStatus {
|
|
7875
|
+
Submitted = "SUBMITTED",
|
|
7876
|
+
Rejected = "REJECTED",
|
|
7877
|
+
Approved = "APPROVED",
|
|
7878
|
+
Saved = "SAVED"
|
|
7879
|
+
}
|
|
7793
7880
|
export declare type FortifiedMetricsIntervalInput = {
|
|
7794
7881
|
start: Scalars['DateTime'];
|
|
7795
7882
|
end: Scalars['DateTime'];
|
|
@@ -7876,6 +7963,12 @@ export declare enum FunctionTriggerType {
|
|
|
7876
7963
|
Product = "PRODUCT",
|
|
7877
7964
|
Web = "WEB"
|
|
7878
7965
|
}
|
|
7966
|
+
export declare type GdprDetails = {
|
|
7967
|
+
__typename?: 'GDPRDetails';
|
|
7968
|
+
dataController?: Maybe<DataController>;
|
|
7969
|
+
dataProcessor?: Maybe<DataProcessor>;
|
|
7970
|
+
dataTransfer?: Maybe<DataTransfer>;
|
|
7971
|
+
};
|
|
7879
7972
|
export declare type GenericMutationErrorExtension = MutationErrorExtension & {
|
|
7880
7973
|
__typename?: 'GenericMutationErrorExtension';
|
|
7881
7974
|
statusCode?: Maybe<Scalars['Int']>;
|
|
@@ -7904,6 +7997,12 @@ export declare enum GrantCheckProduct {
|
|
|
7904
7997
|
Compass = "COMPASS",
|
|
7905
7998
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
7906
7999
|
}
|
|
8000
|
+
export declare type HasPageInfo = {
|
|
8001
|
+
pageInfo: PageInfo;
|
|
8002
|
+
};
|
|
8003
|
+
export declare type HasTotal = {
|
|
8004
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
8005
|
+
};
|
|
7907
8006
|
export declare type HelpCenter = Node & {
|
|
7908
8007
|
__typename?: 'HelpCenter';
|
|
7909
8008
|
id: Scalars['ID'];
|
|
@@ -10213,6 +10312,17 @@ export declare type JiraHierarchyConfigTask = {
|
|
|
10213
10312
|
issueHierarchyConfig?: Maybe<Array<JiraIssueHierarchyConfigData>>;
|
|
10214
10313
|
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
10215
10314
|
};
|
|
10315
|
+
export declare type JiraHomePage = {
|
|
10316
|
+
__typename?: 'JiraHomePage';
|
|
10317
|
+
type?: Maybe<JiraHomePageType>;
|
|
10318
|
+
link?: Maybe<Scalars['String']>;
|
|
10319
|
+
};
|
|
10320
|
+
export declare enum JiraHomePageType {
|
|
10321
|
+
YourWork = "YOUR_WORK",
|
|
10322
|
+
Dashboards = "DASHBOARDS",
|
|
10323
|
+
ProjectsDirectory = "PROJECTS_DIRECTORY",
|
|
10324
|
+
LoginRedirect = "LOGIN_REDIRECT"
|
|
10325
|
+
}
|
|
10216
10326
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
10217
10327
|
NotAvailable = "NOT_AVAILABLE",
|
|
10218
10328
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
@@ -12701,7 +12811,7 @@ export declare type JiraProjectCategoryEdge = {
|
|
|
12701
12811
|
node?: Maybe<JiraProjectCategory>;
|
|
12702
12812
|
cursor: Scalars['String'];
|
|
12703
12813
|
};
|
|
12704
|
-
export declare type JiraProjectConnection = {
|
|
12814
|
+
export declare type JiraProjectConnection = HasTotal & HasPageInfo & {
|
|
12705
12815
|
__typename?: 'JiraProjectConnection';
|
|
12706
12816
|
totalCount?: Maybe<Scalars['Int']>;
|
|
12707
12817
|
pageInfo: PageInfo;
|
|
@@ -12865,6 +12975,7 @@ export declare type JiraQuery = {
|
|
|
12865
12975
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
12866
12976
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
12867
12977
|
childIssuesLimit?: Maybe<Scalars['Long']>;
|
|
12978
|
+
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
12868
12979
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
12869
12980
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
12870
12981
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
@@ -12909,6 +13020,7 @@ export declare type JiraQuery = {
|
|
|
12909
13020
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
12910
13021
|
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
12911
13022
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
13023
|
+
userHomePage?: Maybe<JiraHomePage>;
|
|
12912
13024
|
};
|
|
12913
13025
|
export declare type JiraQueryGlobalTimeTrackingSettingsArgs = {
|
|
12914
13026
|
cloudId: Scalars['ID'];
|
|
@@ -12985,6 +13097,12 @@ export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
|
12985
13097
|
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
12986
13098
|
issueKey: Scalars['String'];
|
|
12987
13099
|
};
|
|
13100
|
+
export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
13101
|
+
cloudId: Scalars['ID'];
|
|
13102
|
+
projectStyle?: Maybe<JiraProjectStyle>;
|
|
13103
|
+
keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13104
|
+
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13105
|
+
};
|
|
12988
13106
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
12989
13107
|
cloudId: Scalars['ID'];
|
|
12990
13108
|
};
|
|
@@ -13192,6 +13310,9 @@ export declare type JiraQueryDeploymentsFeaturePreconditionByProjectKeyArgs = {
|
|
|
13192
13310
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
13193
13311
|
projectId: Scalars['ID'];
|
|
13194
13312
|
};
|
|
13313
|
+
export declare type JiraQueryUserHomePageArgs = {
|
|
13314
|
+
cloudId: Scalars['ID'];
|
|
13315
|
+
};
|
|
13195
13316
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
13196
13317
|
__typename?: 'JiraRadioSelectField';
|
|
13197
13318
|
id: Scalars['ID'];
|
|
@@ -14149,6 +14270,14 @@ export declare type JiraServiceManagementUserResponder = {
|
|
|
14149
14270
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
14150
14271
|
user?: Maybe<User>;
|
|
14151
14272
|
};
|
|
14273
|
+
export declare type JiraServiceManagementWorkflowTemplateMetadata = {
|
|
14274
|
+
__typename?: 'JiraServiceManagementWorkflowTemplateMetadata';
|
|
14275
|
+
templateId?: Maybe<Scalars['String']>;
|
|
14276
|
+
name?: Maybe<Scalars['String']>;
|
|
14277
|
+
description?: Maybe<Scalars['String']>;
|
|
14278
|
+
tags?: Maybe<Array<Scalars['String']>>;
|
|
14279
|
+
thumbnail?: Maybe<Scalars['String']>;
|
|
14280
|
+
};
|
|
14152
14281
|
export declare type JiraSetApplicationPropertiesPayload = Payload & {
|
|
14153
14282
|
__typename?: 'JiraSetApplicationPropertiesPayload';
|
|
14154
14283
|
success: Scalars['Boolean'];
|
|
@@ -15461,6 +15590,13 @@ export declare type LocalizationContext = {
|
|
|
15461
15590
|
zoneinfo?: Maybe<Scalars['String']>;
|
|
15462
15591
|
locale?: Maybe<Scalars['String']>;
|
|
15463
15592
|
};
|
|
15593
|
+
export declare type LogDetails = {
|
|
15594
|
+
__typename?: 'LogDetails';
|
|
15595
|
+
logEndUserData?: Maybe<Scalars['Boolean']>;
|
|
15596
|
+
logProcessAndOrStoreEUDOutsideAtlassian?: Maybe<Scalars['Boolean']>;
|
|
15597
|
+
logEUDShareWithThirdParty?: Maybe<Scalars['Boolean']>;
|
|
15598
|
+
logsIntegralForAppFunctionality?: Maybe<Scalars['Boolean']>;
|
|
15599
|
+
};
|
|
15464
15600
|
export declare type LogQueryInput = {
|
|
15465
15601
|
installationContexts?: Maybe<Array<Scalars['ID']>>;
|
|
15466
15602
|
functionKey?: Maybe<Scalars['String']>;
|
|
@@ -15500,6 +15636,7 @@ export declare type MarketplaceApp = {
|
|
|
15500
15636
|
segmentWriteKey?: Maybe<Scalars['String']>;
|
|
15501
15637
|
categories: Array<MarketplaceAppCategory>;
|
|
15502
15638
|
jsdWidgetKey?: Maybe<Scalars['String']>;
|
|
15639
|
+
marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
|
|
15503
15640
|
};
|
|
15504
15641
|
export declare type MarketplaceAppProductHostingOptionsArgs = {
|
|
15505
15642
|
excludeHiddenIn?: Maybe<MarketplaceLocation>;
|
|
@@ -15509,6 +15646,10 @@ export declare type MarketplaceAppVersionsArgs = {
|
|
|
15509
15646
|
first?: Maybe<Scalars['Int']>;
|
|
15510
15647
|
after?: Maybe<Scalars['String']>;
|
|
15511
15648
|
};
|
|
15649
|
+
export declare type MarketplaceAppMarketplaceAppTrustInformationArgs = {
|
|
15650
|
+
appKey: Scalars['String'];
|
|
15651
|
+
state: AppTrustInformationState;
|
|
15652
|
+
};
|
|
15512
15653
|
export declare type MarketplaceAppCategory = {
|
|
15513
15654
|
__typename?: 'MarketplaceAppCategory';
|
|
15514
15655
|
name: Scalars['String'];
|
|
@@ -15558,6 +15699,18 @@ export declare type MarketplaceAppReviewSummary = {
|
|
|
15558
15699
|
rating?: Maybe<Scalars['Float']>;
|
|
15559
15700
|
count?: Maybe<Scalars['Int']>;
|
|
15560
15701
|
};
|
|
15702
|
+
export declare type MarketplaceAppTrustInformation = {
|
|
15703
|
+
__typename?: 'MarketplaceAppTrustInformation';
|
|
15704
|
+
dataAccessAndStorage?: Maybe<DataAccessAndStorage>;
|
|
15705
|
+
thirdPartyInformation?: Maybe<ThirdPartyInformation>;
|
|
15706
|
+
logDetails?: Maybe<LogDetails>;
|
|
15707
|
+
dataResidency?: Maybe<DataResidency>;
|
|
15708
|
+
dataRetention?: Maybe<DataRetention>;
|
|
15709
|
+
privacy?: Maybe<Privacy>;
|
|
15710
|
+
security?: Maybe<Security>;
|
|
15711
|
+
properties?: Maybe<Properties>;
|
|
15712
|
+
};
|
|
15713
|
+
export declare type MarketplaceAppTrustInformationResult = MarketplaceAppTrustInformation | QueryError;
|
|
15561
15714
|
export declare type MarketplaceAppVersion = {
|
|
15562
15715
|
__typename?: 'MarketplaceAppVersion';
|
|
15563
15716
|
buildNumber: Scalars['ID'];
|
|
@@ -16875,38 +17028,6 @@ export declare type PageInfo = {
|
|
|
16875
17028
|
startCursor?: Maybe<Scalars['String']>;
|
|
16876
17029
|
endCursor?: Maybe<Scalars['String']>;
|
|
16877
17030
|
};
|
|
16878
|
-
export declare type PartnerBaseBtfProduct = PartnerBtfProductNode & {
|
|
16879
|
-
__typename?: 'PartnerBaseBtfProduct';
|
|
16880
|
-
orderableItems?: Maybe<Array<Maybe<PartnerBaseOrderableItem>>>;
|
|
16881
|
-
productDescription?: Maybe<Scalars['String']>;
|
|
16882
|
-
productKey: Scalars['ID'];
|
|
16883
|
-
};
|
|
16884
|
-
export declare type PartnerBaseCloudProduct = PartnerCloudProductNode & {
|
|
16885
|
-
__typename?: 'PartnerBaseCloudProduct';
|
|
16886
|
-
key: Scalars['ID'];
|
|
16887
|
-
name?: Maybe<Scalars['String']>;
|
|
16888
|
-
offerings?: Maybe<Array<Maybe<PartnerBaseOfferingItem>>>;
|
|
16889
|
-
};
|
|
16890
|
-
export declare type PartnerBaseOfferingItem = PartnerOfferingNode & {
|
|
16891
|
-
__typename?: 'PartnerBaseOfferingItem';
|
|
16892
|
-
key: Scalars['ID'];
|
|
16893
|
-
name?: Maybe<Scalars['String']>;
|
|
16894
|
-
pricingPlans?: Maybe<Array<Maybe<PartnerBasePricingPlan>>>;
|
|
16895
|
-
};
|
|
16896
|
-
export declare type PartnerBaseOrderableItem = PartnerOrderableItemNode & {
|
|
16897
|
-
__typename?: 'PartnerBaseOrderableItem';
|
|
16898
|
-
currency?: Maybe<Scalars['String']>;
|
|
16899
|
-
description?: Maybe<Scalars['String']>;
|
|
16900
|
-
licenseType?: Maybe<Scalars['String']>;
|
|
16901
|
-
orderableItemId: Scalars['ID'];
|
|
16902
|
-
};
|
|
16903
|
-
export declare type PartnerBasePricingPlan = PartnerPricingPlanNode & {
|
|
16904
|
-
__typename?: 'PartnerBasePricingPlan';
|
|
16905
|
-
currency?: Maybe<Scalars['String']>;
|
|
16906
|
-
description?: Maybe<Scalars['String']>;
|
|
16907
|
-
key: Scalars['ID'];
|
|
16908
|
-
type?: Maybe<Scalars['String']>;
|
|
16909
|
-
};
|
|
16910
17031
|
export declare type PartnerBillingCycle = {
|
|
16911
17032
|
__typename?: 'PartnerBillingCycle';
|
|
16912
17033
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -18304,6 +18425,18 @@ export declare enum PrincipalType {
|
|
|
18304
18425
|
Anonymous = "ANONYMOUS",
|
|
18305
18426
|
Customer = "CUSTOMER"
|
|
18306
18427
|
}
|
|
18428
|
+
export declare type Privacy = {
|
|
18429
|
+
__typename?: 'Privacy';
|
|
18430
|
+
privacyEnhancingTechniques?: Maybe<PrivacyEnhancingTechniques>;
|
|
18431
|
+
gdpr?: Maybe<GdprDetails>;
|
|
18432
|
+
ccpa?: Maybe<CcpaDetails>;
|
|
18433
|
+
dataProcessingAgreement?: Maybe<DataProcessingAgreement>;
|
|
18434
|
+
};
|
|
18435
|
+
export declare type PrivacyEnhancingTechniques = {
|
|
18436
|
+
__typename?: 'PrivacyEnhancingTechniques';
|
|
18437
|
+
arePrivacyEnhancingTechniquesSupported: Scalars['Boolean'];
|
|
18438
|
+
privacyEnhancingTechniquesSupported?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
18439
|
+
};
|
|
18307
18440
|
export declare type ProductListing = {
|
|
18308
18441
|
__typename?: 'ProductListing';
|
|
18309
18442
|
name: Scalars['String'];
|
|
@@ -18339,6 +18472,14 @@ export declare type ProjectAvatars = {
|
|
|
18339
18472
|
x32: Scalars['URL'];
|
|
18340
18473
|
x48: Scalars['URL'];
|
|
18341
18474
|
};
|
|
18475
|
+
export declare type Properties = {
|
|
18476
|
+
__typename?: 'Properties';
|
|
18477
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
18478
|
+
updatedAt?: Maybe<Scalars['Float']>;
|
|
18479
|
+
updatedValues?: Maybe<Scalars['String']>;
|
|
18480
|
+
formStatus: FormStatus;
|
|
18481
|
+
jiraIssueLinks?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
18482
|
+
};
|
|
18342
18483
|
export declare type Query = {
|
|
18343
18484
|
__typename?: 'Query';
|
|
18344
18485
|
trello: TrelloQueryApi;
|
|
@@ -18415,6 +18556,7 @@ export declare type Query = {
|
|
|
18415
18556
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
18416
18557
|
productListing?: Maybe<ProductListingResult>;
|
|
18417
18558
|
productListings: Array<ProductListingResult>;
|
|
18559
|
+
marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
|
|
18418
18560
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
18419
18561
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
18420
18562
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
@@ -18433,6 +18575,7 @@ export declare type Query = {
|
|
|
18433
18575
|
boardScope?: Maybe<BoardScope>;
|
|
18434
18576
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
18435
18577
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
18578
|
+
canSplitIssue?: Maybe<Scalars['Boolean']>;
|
|
18436
18579
|
apps?: Maybe<AppConnection>;
|
|
18437
18580
|
app?: Maybe<App>;
|
|
18438
18581
|
appHostServices?: Maybe<Array<AppHostService>>;
|
|
@@ -18711,6 +18854,10 @@ export declare type QueryProductListingArgs = {
|
|
|
18711
18854
|
export declare type QueryProductListingsArgs = {
|
|
18712
18855
|
ids: Array<Scalars['ID']>;
|
|
18713
18856
|
};
|
|
18857
|
+
export declare type QueryMarketplaceAppTrustInformationArgs = {
|
|
18858
|
+
appKey: Scalars['String'];
|
|
18859
|
+
state: AppTrustInformationState;
|
|
18860
|
+
};
|
|
18714
18861
|
export declare type QueryExtensionsEchoArgs = {
|
|
18715
18862
|
text: Scalars['String'];
|
|
18716
18863
|
};
|
|
@@ -18740,6 +18887,10 @@ export declare type QueryDevelopmentInformationArgs = {
|
|
|
18740
18887
|
export declare type QuerySoftwareBoardsArgs = {
|
|
18741
18888
|
projectAri: Scalars['ID'];
|
|
18742
18889
|
};
|
|
18890
|
+
export declare type QueryCanSplitIssueArgs = {
|
|
18891
|
+
boardId: Scalars['ID'];
|
|
18892
|
+
cardId: Scalars['ID'];
|
|
18893
|
+
};
|
|
18743
18894
|
export declare type QueryAppsArgs = {
|
|
18744
18895
|
first?: Maybe<Scalars['Int']>;
|
|
18745
18896
|
after?: Maybe<Scalars['String']>;
|
|
@@ -18875,6 +19026,7 @@ export declare enum RateLimitingCurrency {
|
|
|
18875
19026
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
18876
19027
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
18877
19028
|
TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
|
|
19029
|
+
PolarisCurrency = "POLARIS_CURRENCY",
|
|
18878
19030
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
18879
19031
|
DirectoryCurrency = "DIRECTORY_CURRENCY",
|
|
18880
19032
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
@@ -18981,6 +19133,11 @@ export declare type ResolvedPolarisObjectExternalAuth = {
|
|
|
18981
19133
|
displayName: Scalars['String'];
|
|
18982
19134
|
url: Scalars['String'];
|
|
18983
19135
|
};
|
|
19136
|
+
export declare type RetentionDurationInDays = {
|
|
19137
|
+
__typename?: 'RetentionDurationInDays';
|
|
19138
|
+
min: Scalars['Float'];
|
|
19139
|
+
max: Scalars['Float'];
|
|
19140
|
+
};
|
|
18984
19141
|
export declare type RoadmapAddItemInput = {
|
|
18985
19142
|
projectId: Scalars['ID'];
|
|
18986
19143
|
itemTypeId: Scalars['ID'];
|
|
@@ -19191,6 +19348,7 @@ export declare type RoadmapItem = {
|
|
|
19191
19348
|
parentId?: Maybe<Scalars['ID']>;
|
|
19192
19349
|
summary?: Maybe<Scalars['String']>;
|
|
19193
19350
|
assignee?: Maybe<User>;
|
|
19351
|
+
assigneeId?: Maybe<Scalars['ID']>;
|
|
19194
19352
|
dueDate?: Maybe<Scalars['DateTime']>;
|
|
19195
19353
|
dueDateRFC3339?: Maybe<Scalars['Date']>;
|
|
19196
19354
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -20165,6 +20323,15 @@ export declare enum SearchResultType {
|
|
|
20165
20323
|
Project = "project",
|
|
20166
20324
|
Unrecognised = "unrecognised"
|
|
20167
20325
|
}
|
|
20326
|
+
export declare type Security = {
|
|
20327
|
+
__typename?: 'Security';
|
|
20328
|
+
caiq?: Maybe<Caiq>;
|
|
20329
|
+
securityContact: Scalars['String'];
|
|
20330
|
+
isDiskEncryptionSupported?: Maybe<Scalars['Boolean']>;
|
|
20331
|
+
hasCompliantCertifications?: Maybe<Scalars['Boolean']>;
|
|
20332
|
+
compliantCertifications?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
20333
|
+
publicSecurityPoliciesLink?: Maybe<Scalars['String']>;
|
|
20334
|
+
};
|
|
20168
20335
|
export declare type SecurityContainer = {
|
|
20169
20336
|
name: Scalars['String'];
|
|
20170
20337
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -20179,6 +20346,11 @@ export declare type SecurityWorkspace = {
|
|
|
20179
20346
|
providerName?: Maybe<Scalars['String']>;
|
|
20180
20347
|
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
20181
20348
|
};
|
|
20349
|
+
export declare type ServiceProvider = {
|
|
20350
|
+
__typename?: 'ServiceProvider';
|
|
20351
|
+
isAppServiceProvider: AcceptableResponse;
|
|
20352
|
+
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
20353
|
+
};
|
|
20182
20354
|
export declare type SetAppEnvironmentVariableInput = {
|
|
20183
20355
|
environment: AppEnvironmentInput;
|
|
20184
20356
|
environmentVariable: AppEnvironmentVariableInput;
|
|
@@ -21242,6 +21414,7 @@ export declare type Storage = {
|
|
|
21242
21414
|
};
|
|
21243
21415
|
export declare type Subscription = {
|
|
21244
21416
|
__typename?: 'Subscription';
|
|
21417
|
+
trello: TrelloSubscriptionApi;
|
|
21245
21418
|
onPullRequestCreatedOrUpdatedForProject?: Maybe<AriGraphRelationshipConnection>;
|
|
21246
21419
|
onJiraIssueCreatedForUser?: Maybe<JiraOnIssueCreatedForUserResponseType>;
|
|
21247
21420
|
onTestingActivityItemUpdate?: Maybe<Node>;
|
|
@@ -21896,6 +22069,19 @@ export declare type TestingPerformance = {
|
|
|
21896
22069
|
__typename?: 'TestingPerformance';
|
|
21897
22070
|
myActivities: TestingMyActivity;
|
|
21898
22071
|
};
|
|
22072
|
+
export declare type ThirdPartyDetails = {
|
|
22073
|
+
__typename?: 'ThirdPartyDetails';
|
|
22074
|
+
name: Scalars['String'];
|
|
22075
|
+
link: Scalars['String'];
|
|
22076
|
+
purpose: Scalars['String'];
|
|
22077
|
+
thirdPartyCountries: Array<Maybe<Scalars['String']>>;
|
|
22078
|
+
};
|
|
22079
|
+
export declare type ThirdPartyInformation = {
|
|
22080
|
+
__typename?: 'ThirdPartyInformation';
|
|
22081
|
+
isEndUserDataShared: Scalars['Boolean'];
|
|
22082
|
+
dataSubProcessors?: Maybe<Scalars['String']>;
|
|
22083
|
+
thirdPartyDetails?: Maybe<Array<Maybe<ThirdPartyDetails>>>;
|
|
22084
|
+
};
|
|
21899
22085
|
export declare type ThirdPartyRepositoryInput = {
|
|
21900
22086
|
id: Scalars['ID'];
|
|
21901
22087
|
webUrl?: Maybe<Scalars['String']>;
|
|
@@ -22111,6 +22297,8 @@ export declare type TownsquareQueryApi = {
|
|
|
22111
22297
|
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
22112
22298
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
22113
22299
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
22300
|
+
projectTql?: Maybe<TownsquareProjectConnection>;
|
|
22301
|
+
goalTql?: Maybe<TownsquareGoalConnection>;
|
|
22114
22302
|
};
|
|
22115
22303
|
export declare type TownsquareQueryApiProjectArgs = {
|
|
22116
22304
|
ari: Scalars['String'];
|
|
@@ -22148,6 +22336,20 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
22148
22336
|
q?: Maybe<Scalars['String']>;
|
|
22149
22337
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
22150
22338
|
};
|
|
22339
|
+
export declare type TownsquareQueryApiProjectTqlArgs = {
|
|
22340
|
+
q: Scalars['String'];
|
|
22341
|
+
cloudId: Scalars['String'];
|
|
22342
|
+
after?: Maybe<Scalars['String']>;
|
|
22343
|
+
first?: Maybe<Scalars['Int']>;
|
|
22344
|
+
sort?: Maybe<Array<Maybe<TownsquareProjectSortEnum>>>;
|
|
22345
|
+
};
|
|
22346
|
+
export declare type TownsquareQueryApiGoalTqlArgs = {
|
|
22347
|
+
q: Scalars['String'];
|
|
22348
|
+
cloudId: Scalars['String'];
|
|
22349
|
+
after?: Maybe<Scalars['String']>;
|
|
22350
|
+
first?: Maybe<Scalars['Int']>;
|
|
22351
|
+
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
22352
|
+
};
|
|
22151
22353
|
export declare type TownsquareTag = Node & {
|
|
22152
22354
|
__typename?: 'TownsquareTag';
|
|
22153
22355
|
description?: Maybe<Scalars['String']>;
|
|
@@ -22194,6 +22396,7 @@ export declare type TransitionFilter = {
|
|
|
22194
22396
|
export declare type TrelloBoard = {
|
|
22195
22397
|
__typename?: 'TrelloBoard';
|
|
22196
22398
|
closed: Scalars['Boolean'];
|
|
22399
|
+
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
22197
22400
|
id: Scalars['ID'];
|
|
22198
22401
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
22199
22402
|
name: Scalars['String'];
|
|
@@ -22210,11 +22413,41 @@ export declare type TrelloBoardBackground = {
|
|
|
22210
22413
|
imageScaled?: Maybe<Array<TrelloScaleProps>>;
|
|
22211
22414
|
tile: Scalars['Boolean'];
|
|
22212
22415
|
};
|
|
22416
|
+
export declare type TrelloBoardBackgroundUpdatedDeltas = {
|
|
22417
|
+
__typename?: 'TrelloBoardBackgroundUpdatedDeltas';
|
|
22418
|
+
color?: Maybe<Scalars['Boolean']>;
|
|
22419
|
+
image?: Maybe<Scalars['Boolean']>;
|
|
22420
|
+
imageScaled?: Maybe<Scalars['Boolean']>;
|
|
22421
|
+
title?: Maybe<Scalars['Boolean']>;
|
|
22422
|
+
};
|
|
22423
|
+
export declare type TrelloBoardEdge = {
|
|
22424
|
+
__typename?: 'TrelloBoardEdge';
|
|
22425
|
+
cursor: Scalars['String'];
|
|
22426
|
+
node: TrelloBoard;
|
|
22427
|
+
};
|
|
22213
22428
|
export declare type TrelloBoardPrefs = {
|
|
22214
22429
|
__typename?: 'TrelloBoardPrefs';
|
|
22215
22430
|
background: TrelloBoardBackground;
|
|
22216
22431
|
isTemplate: Scalars['Boolean'];
|
|
22217
22432
|
};
|
|
22433
|
+
export declare type TrelloBoardPrefsUpdatedDeltas = {
|
|
22434
|
+
__typename?: 'TrelloBoardPrefsUpdatedDeltas';
|
|
22435
|
+
background?: Maybe<TrelloBoardBackgroundUpdatedDeltas>;
|
|
22436
|
+
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
22437
|
+
};
|
|
22438
|
+
export declare type TrelloBoardUpdated = {
|
|
22439
|
+
__typename?: 'TrelloBoardUpdated';
|
|
22440
|
+
_deltas?: Maybe<TrelloBoardUpdatedDeltas>;
|
|
22441
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
22442
|
+
name?: Maybe<Scalars['String']>;
|
|
22443
|
+
prefs?: Maybe<TrelloBoardPrefs>;
|
|
22444
|
+
};
|
|
22445
|
+
export declare type TrelloBoardUpdatedDeltas = {
|
|
22446
|
+
__typename?: 'TrelloBoardUpdatedDeltas';
|
|
22447
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
22448
|
+
name?: Maybe<Scalars['Boolean']>;
|
|
22449
|
+
prefs?: Maybe<TrelloBoardPrefsUpdatedDeltas>;
|
|
22450
|
+
};
|
|
22218
22451
|
export declare type TrelloBoardViewer = {
|
|
22219
22452
|
__typename?: 'TrelloBoardViewer';
|
|
22220
22453
|
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -22226,6 +22459,7 @@ export declare type TrelloQueryApi = {
|
|
|
22226
22459
|
echo: Scalars['String'];
|
|
22227
22460
|
recentBoardsByIds: Array<Maybe<TrelloBoard>>;
|
|
22228
22461
|
templateCategories: Array<TrelloTemplateGalleryCategory>;
|
|
22462
|
+
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
22229
22463
|
templateLanguages: Array<TrelloTemplateGalleryLanguage>;
|
|
22230
22464
|
};
|
|
22231
22465
|
export declare type TrelloQueryApiBoardArgs = {
|
|
@@ -22234,16 +22468,55 @@ export declare type TrelloQueryApiBoardArgs = {
|
|
|
22234
22468
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
22235
22469
|
ids: Array<Scalars['ID']>;
|
|
22236
22470
|
};
|
|
22471
|
+
export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
22472
|
+
after?: Maybe<Scalars['String']>;
|
|
22473
|
+
filter?: Maybe<TrelloTemplateGalleryFilterInput>;
|
|
22474
|
+
first?: Maybe<Scalars['Int']>;
|
|
22475
|
+
};
|
|
22237
22476
|
export declare type TrelloScaleProps = {
|
|
22238
22477
|
__typename?: 'TrelloScaleProps';
|
|
22239
22478
|
height: Scalars['Int'];
|
|
22240
22479
|
url: Scalars['String'];
|
|
22241
22480
|
width: Scalars['Int'];
|
|
22242
22481
|
};
|
|
22482
|
+
export declare type TrelloSubscriptionApi = {
|
|
22483
|
+
__typename?: 'TrelloSubscriptionApi';
|
|
22484
|
+
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
22485
|
+
};
|
|
22486
|
+
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
22487
|
+
id: Scalars['ID'];
|
|
22488
|
+
};
|
|
22243
22489
|
export declare type TrelloTemplateGalleryCategory = {
|
|
22244
22490
|
__typename?: 'TrelloTemplateGalleryCategory';
|
|
22245
22491
|
key: Scalars['String'];
|
|
22246
22492
|
};
|
|
22493
|
+
export declare type TrelloTemplateGalleryConnection = {
|
|
22494
|
+
__typename?: 'TrelloTemplateGalleryConnection';
|
|
22495
|
+
edges: Array<Maybe<TrelloBoardEdge>>;
|
|
22496
|
+
nodes: Array<Maybe<TrelloBoard>>;
|
|
22497
|
+
pageInfo: PageInfo;
|
|
22498
|
+
};
|
|
22499
|
+
export declare type TrelloTemplateGalleryFilterInput = {
|
|
22500
|
+
category?: Maybe<Scalars['String']>;
|
|
22501
|
+
language: Scalars['String'];
|
|
22502
|
+
supportedPowerUps?: Maybe<Array<Scalars['ID']>>;
|
|
22503
|
+
};
|
|
22504
|
+
export declare type TrelloTemplateGalleryItemInfo = {
|
|
22505
|
+
__typename?: 'TrelloTemplateGalleryItemInfo';
|
|
22506
|
+
avatarShape?: Maybe<Scalars['String']>;
|
|
22507
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
22508
|
+
blurb?: Maybe<Scalars['String']>;
|
|
22509
|
+
byline?: Maybe<Scalars['String']>;
|
|
22510
|
+
category: TrelloTemplateGalleryCategory;
|
|
22511
|
+
id?: Maybe<Scalars['ID']>;
|
|
22512
|
+
language: TrelloTemplateGalleryLanguage;
|
|
22513
|
+
stats?: Maybe<TrelloTemplateGalleryItemStats>;
|
|
22514
|
+
};
|
|
22515
|
+
export declare type TrelloTemplateGalleryItemStats = {
|
|
22516
|
+
__typename?: 'TrelloTemplateGalleryItemStats';
|
|
22517
|
+
copyCount: Scalars['Int'];
|
|
22518
|
+
viewCount: Scalars['Int'];
|
|
22519
|
+
};
|
|
22247
22520
|
export declare type TrelloTemplateGalleryLanguage = {
|
|
22248
22521
|
__typename?: 'TrelloTemplateGalleryLanguage';
|
|
22249
22522
|
description: Scalars['String'];
|