@forge/cli-shared 3.6.2-next.1 → 3.6.2-next.2

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.
@@ -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: Scalars['ID'];
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: Scalars['ID'];
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'];
@@ -9143,7 +9242,8 @@ export declare enum JiraCmdbAttributeType {
9143
9242
  Version = "VERSION",
9144
9243
  Project = "PROJECT",
9145
9244
  Status = "STATUS",
9146
- BitbucketRepo = "BITBUCKET_REPO"
9245
+ BitbucketRepo = "BITBUCKET_REPO",
9246
+ OpsgenieTeam = "OPSGENIE_TEAM"
9147
9247
  }
9148
9248
  export declare type JiraCmdbAvatar = {
9149
9249
  __typename?: 'JiraCmdbAvatar';
@@ -9243,6 +9343,7 @@ export declare type JiraCmdbObjectAttributeValue = {
9243
9343
  status?: Maybe<JiraCmdbStatusType>;
9244
9344
  project?: Maybe<JiraProject>;
9245
9345
  bitbucketRepo?: Maybe<JiraCmdbBitbucketRepository>;
9346
+ opsgenieTeam?: Maybe<JiraOpsgenieTeam>;
9246
9347
  value?: Maybe<Scalars['String']>;
9247
9348
  displayValue?: Maybe<Scalars['String']>;
9248
9349
  searchValue?: Maybe<Scalars['String']>;
@@ -10213,6 +10314,17 @@ export declare type JiraHierarchyConfigTask = {
10213
10314
  issueHierarchyConfig?: Maybe<Array<JiraIssueHierarchyConfigData>>;
10214
10315
  errors?: Maybe<Array<JiraHierarchyConfigError>>;
10215
10316
  };
10317
+ export declare type JiraHomePage = {
10318
+ __typename?: 'JiraHomePage';
10319
+ type?: Maybe<JiraHomePageType>;
10320
+ link?: Maybe<Scalars['String']>;
10321
+ };
10322
+ export declare enum JiraHomePageType {
10323
+ YourWork = "YOUR_WORK",
10324
+ Dashboards = "DASHBOARDS",
10325
+ ProjectsDirectory = "PROJECTS_DIRECTORY",
10326
+ LoginRedirect = "LOGIN_REDIRECT"
10327
+ }
10216
10328
  export declare enum JiraInstallDeploymentsBannerPrecondition {
10217
10329
  NotAvailable = "NOT_AVAILABLE",
10218
10330
  FeatureNotEnabled = "FEATURE_NOT_ENABLED",
@@ -12104,6 +12216,12 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
12104
12216
  marketplaceApp?: Maybe<MarketplaceApp>;
12105
12217
  };
12106
12218
  export declare type JiraOnIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
12219
+ export declare type JiraOpsgenieTeam = Node & {
12220
+ __typename?: 'JiraOpsgenieTeam';
12221
+ id: Scalars['ID'];
12222
+ name?: Maybe<Scalars['String']>;
12223
+ url?: Maybe<Scalars['String']>;
12224
+ };
12107
12225
  export declare type JiraOption = Node & {
12108
12226
  __typename?: 'JiraOption';
12109
12227
  id: Scalars['ID'];
@@ -12701,7 +12819,7 @@ export declare type JiraProjectCategoryEdge = {
12701
12819
  node?: Maybe<JiraProjectCategory>;
12702
12820
  cursor: Scalars['String'];
12703
12821
  };
12704
- export declare type JiraProjectConnection = {
12822
+ export declare type JiraProjectConnection = HasTotal & HasPageInfo & {
12705
12823
  __typename?: 'JiraProjectConnection';
12706
12824
  totalCount?: Maybe<Scalars['Int']>;
12707
12825
  pageInfo: PageInfo;
@@ -12865,6 +12983,7 @@ export declare type JiraQuery = {
12865
12983
  screenIdByIssueKey?: Maybe<Scalars['Long']>;
12866
12984
  epicLinkFieldKey?: Maybe<Scalars['String']>;
12867
12985
  childIssuesLimit?: Maybe<Scalars['Long']>;
12986
+ first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
12868
12987
  getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
12869
12988
  allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
12870
12989
  grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
@@ -12909,6 +13028,7 @@ export declare type JiraQuery = {
12909
13028
  deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
12910
13029
  deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
12911
13030
  installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
13031
+ userHomePage?: Maybe<JiraHomePage>;
12912
13032
  };
12913
13033
  export declare type JiraQueryGlobalTimeTrackingSettingsArgs = {
12914
13034
  cloudId: Scalars['ID'];
@@ -12985,6 +13105,12 @@ export declare type JiraQueryScreenIdByIssueIdArgs = {
12985
13105
  export declare type JiraQueryScreenIdByIssueKeyArgs = {
12986
13106
  issueKey: Scalars['String'];
12987
13107
  };
13108
+ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
13109
+ cloudId: Scalars['ID'];
13110
+ projectStyle?: Maybe<JiraProjectStyle>;
13111
+ keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
13112
+ tags?: Maybe<Array<Maybe<Scalars['String']>>>;
13113
+ };
12988
13114
  export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
12989
13115
  cloudId: Scalars['ID'];
12990
13116
  };
@@ -13192,6 +13318,9 @@ export declare type JiraQueryDeploymentsFeaturePreconditionByProjectKeyArgs = {
13192
13318
  export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
13193
13319
  projectId: Scalars['ID'];
13194
13320
  };
13321
+ export declare type JiraQueryUserHomePageArgs = {
13322
+ cloudId: Scalars['ID'];
13323
+ };
13195
13324
  export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
13196
13325
  __typename?: 'JiraRadioSelectField';
13197
13326
  id: Scalars['ID'];
@@ -14149,6 +14278,14 @@ export declare type JiraServiceManagementUserResponder = {
14149
14278
  __typename?: 'JiraServiceManagementUserResponder';
14150
14279
  user?: Maybe<User>;
14151
14280
  };
14281
+ export declare type JiraServiceManagementWorkflowTemplateMetadata = {
14282
+ __typename?: 'JiraServiceManagementWorkflowTemplateMetadata';
14283
+ templateId?: Maybe<Scalars['String']>;
14284
+ name?: Maybe<Scalars['String']>;
14285
+ description?: Maybe<Scalars['String']>;
14286
+ tags?: Maybe<Array<Scalars['String']>>;
14287
+ thumbnail?: Maybe<Scalars['String']>;
14288
+ };
14152
14289
  export declare type JiraSetApplicationPropertiesPayload = Payload & {
14153
14290
  __typename?: 'JiraSetApplicationPropertiesPayload';
14154
14291
  success: Scalars['Boolean'];
@@ -15461,6 +15598,13 @@ export declare type LocalizationContext = {
15461
15598
  zoneinfo?: Maybe<Scalars['String']>;
15462
15599
  locale?: Maybe<Scalars['String']>;
15463
15600
  };
15601
+ export declare type LogDetails = {
15602
+ __typename?: 'LogDetails';
15603
+ logEndUserData?: Maybe<Scalars['Boolean']>;
15604
+ logProcessAndOrStoreEUDOutsideAtlassian?: Maybe<Scalars['Boolean']>;
15605
+ logEUDShareWithThirdParty?: Maybe<Scalars['Boolean']>;
15606
+ logsIntegralForAppFunctionality?: Maybe<Scalars['Boolean']>;
15607
+ };
15464
15608
  export declare type LogQueryInput = {
15465
15609
  installationContexts?: Maybe<Array<Scalars['ID']>>;
15466
15610
  functionKey?: Maybe<Scalars['String']>;
@@ -15500,6 +15644,7 @@ export declare type MarketplaceApp = {
15500
15644
  segmentWriteKey?: Maybe<Scalars['String']>;
15501
15645
  categories: Array<MarketplaceAppCategory>;
15502
15646
  jsdWidgetKey?: Maybe<Scalars['String']>;
15647
+ marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
15503
15648
  };
15504
15649
  export declare type MarketplaceAppProductHostingOptionsArgs = {
15505
15650
  excludeHiddenIn?: Maybe<MarketplaceLocation>;
@@ -15509,6 +15654,10 @@ export declare type MarketplaceAppVersionsArgs = {
15509
15654
  first?: Maybe<Scalars['Int']>;
15510
15655
  after?: Maybe<Scalars['String']>;
15511
15656
  };
15657
+ export declare type MarketplaceAppMarketplaceAppTrustInformationArgs = {
15658
+ appKey: Scalars['String'];
15659
+ state: AppTrustInformationState;
15660
+ };
15512
15661
  export declare type MarketplaceAppCategory = {
15513
15662
  __typename?: 'MarketplaceAppCategory';
15514
15663
  name: Scalars['String'];
@@ -15558,6 +15707,18 @@ export declare type MarketplaceAppReviewSummary = {
15558
15707
  rating?: Maybe<Scalars['Float']>;
15559
15708
  count?: Maybe<Scalars['Int']>;
15560
15709
  };
15710
+ export declare type MarketplaceAppTrustInformation = {
15711
+ __typename?: 'MarketplaceAppTrustInformation';
15712
+ dataAccessAndStorage?: Maybe<DataAccessAndStorage>;
15713
+ thirdPartyInformation?: Maybe<ThirdPartyInformation>;
15714
+ logDetails?: Maybe<LogDetails>;
15715
+ dataResidency?: Maybe<DataResidency>;
15716
+ dataRetention?: Maybe<DataRetention>;
15717
+ privacy?: Maybe<Privacy>;
15718
+ security?: Maybe<Security>;
15719
+ properties?: Maybe<Properties>;
15720
+ };
15721
+ export declare type MarketplaceAppTrustInformationResult = MarketplaceAppTrustInformation | QueryError;
15561
15722
  export declare type MarketplaceAppVersion = {
15562
15723
  __typename?: 'MarketplaceAppVersion';
15563
15724
  buildNumber: Scalars['ID'];
@@ -16875,38 +17036,6 @@ export declare type PageInfo = {
16875
17036
  startCursor?: Maybe<Scalars['String']>;
16876
17037
  endCursor?: Maybe<Scalars['String']>;
16877
17038
  };
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
17039
  export declare type PartnerBillingCycle = {
16911
17040
  __typename?: 'PartnerBillingCycle';
16912
17041
  count?: Maybe<Scalars['Int']>;
@@ -18304,6 +18433,18 @@ export declare enum PrincipalType {
18304
18433
  Anonymous = "ANONYMOUS",
18305
18434
  Customer = "CUSTOMER"
18306
18435
  }
18436
+ export declare type Privacy = {
18437
+ __typename?: 'Privacy';
18438
+ privacyEnhancingTechniques?: Maybe<PrivacyEnhancingTechniques>;
18439
+ gdpr?: Maybe<GdprDetails>;
18440
+ ccpa?: Maybe<CcpaDetails>;
18441
+ dataProcessingAgreement?: Maybe<DataProcessingAgreement>;
18442
+ };
18443
+ export declare type PrivacyEnhancingTechniques = {
18444
+ __typename?: 'PrivacyEnhancingTechniques';
18445
+ arePrivacyEnhancingTechniquesSupported: Scalars['Boolean'];
18446
+ privacyEnhancingTechniquesSupported?: Maybe<Array<Maybe<Scalars['String']>>>;
18447
+ };
18307
18448
  export declare type ProductListing = {
18308
18449
  __typename?: 'ProductListing';
18309
18450
  name: Scalars['String'];
@@ -18339,6 +18480,14 @@ export declare type ProjectAvatars = {
18339
18480
  x32: Scalars['URL'];
18340
18481
  x48: Scalars['URL'];
18341
18482
  };
18483
+ export declare type Properties = {
18484
+ __typename?: 'Properties';
18485
+ updatedBy?: Maybe<Scalars['String']>;
18486
+ updatedAt?: Maybe<Scalars['Float']>;
18487
+ updatedValues?: Maybe<Scalars['String']>;
18488
+ formStatus: FormStatus;
18489
+ jiraIssueLinks?: Maybe<Array<Maybe<Scalars['String']>>>;
18490
+ };
18342
18491
  export declare type Query = {
18343
18492
  __typename?: 'Query';
18344
18493
  trello: TrelloQueryApi;
@@ -18415,6 +18564,7 @@ export declare type Query = {
18415
18564
  marketplaceUser?: Maybe<MarketplaceUser>;
18416
18565
  productListing?: Maybe<ProductListingResult>;
18417
18566
  productListings: Array<ProductListingResult>;
18567
+ marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
18418
18568
  compass?: Maybe<CompassCatalogQueryApi>;
18419
18569
  extensionsEcho?: Maybe<Scalars['String']>;
18420
18570
  extensionContexts?: Maybe<Array<ExtensionContext>>;
@@ -18433,6 +18583,7 @@ export declare type Query = {
18433
18583
  boardScope?: Maybe<BoardScope>;
18434
18584
  developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
18435
18585
  softwareBoards?: Maybe<BoardScopeConnection>;
18586
+ canSplitIssue?: Maybe<Scalars['Boolean']>;
18436
18587
  apps?: Maybe<AppConnection>;
18437
18588
  app?: Maybe<App>;
18438
18589
  appHostServices?: Maybe<Array<AppHostService>>;
@@ -18711,6 +18862,10 @@ export declare type QueryProductListingArgs = {
18711
18862
  export declare type QueryProductListingsArgs = {
18712
18863
  ids: Array<Scalars['ID']>;
18713
18864
  };
18865
+ export declare type QueryMarketplaceAppTrustInformationArgs = {
18866
+ appKey: Scalars['String'];
18867
+ state: AppTrustInformationState;
18868
+ };
18714
18869
  export declare type QueryExtensionsEchoArgs = {
18715
18870
  text: Scalars['String'];
18716
18871
  };
@@ -18740,6 +18895,10 @@ export declare type QueryDevelopmentInformationArgs = {
18740
18895
  export declare type QuerySoftwareBoardsArgs = {
18741
18896
  projectAri: Scalars['ID'];
18742
18897
  };
18898
+ export declare type QueryCanSplitIssueArgs = {
18899
+ boardId: Scalars['ID'];
18900
+ cardId: Scalars['ID'];
18901
+ };
18743
18902
  export declare type QueryAppsArgs = {
18744
18903
  first?: Maybe<Scalars['Int']>;
18745
18904
  after?: Maybe<Scalars['String']>;
@@ -18875,6 +19034,7 @@ export declare enum RateLimitingCurrency {
18875
19034
  TeamsCurrency = "TEAMS_CURRENCY",
18876
19035
  TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
18877
19036
  TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
19037
+ PolarisCurrency = "POLARIS_CURRENCY",
18878
19038
  CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
18879
19039
  DirectoryCurrency = "DIRECTORY_CURRENCY",
18880
19040
  HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
@@ -18981,6 +19141,11 @@ export declare type ResolvedPolarisObjectExternalAuth = {
18981
19141
  displayName: Scalars['String'];
18982
19142
  url: Scalars['String'];
18983
19143
  };
19144
+ export declare type RetentionDurationInDays = {
19145
+ __typename?: 'RetentionDurationInDays';
19146
+ min: Scalars['Float'];
19147
+ max: Scalars['Float'];
19148
+ };
18984
19149
  export declare type RoadmapAddItemInput = {
18985
19150
  projectId: Scalars['ID'];
18986
19151
  itemTypeId: Scalars['ID'];
@@ -19036,10 +19201,12 @@ export declare type RoadmapChildItem = {
19036
19201
  itemTypeId: Scalars['ID'];
19037
19202
  parentId?: Maybe<Scalars['ID']>;
19038
19203
  summary?: Maybe<Scalars['String']>;
19204
+ assigneeId?: Maybe<Scalars['ID']>;
19039
19205
  assignee?: Maybe<User>;
19040
19206
  dueDateRFC3339?: Maybe<Scalars['Date']>;
19041
19207
  startDateRFC3339?: Maybe<Scalars['Date']>;
19042
19208
  status?: Maybe<RoadmapItemStatus>;
19209
+ statusId?: Maybe<Scalars['ID']>;
19043
19210
  dependencies?: Maybe<Array<Scalars['ID']>>;
19044
19211
  color?: Maybe<RoadmapPaletteColor>;
19045
19212
  rank?: Maybe<Scalars['String']>;
@@ -19191,11 +19358,13 @@ export declare type RoadmapItem = {
19191
19358
  parentId?: Maybe<Scalars['ID']>;
19192
19359
  summary?: Maybe<Scalars['String']>;
19193
19360
  assignee?: Maybe<User>;
19361
+ assigneeId?: Maybe<Scalars['ID']>;
19194
19362
  dueDate?: Maybe<Scalars['DateTime']>;
19195
19363
  dueDateRFC3339?: Maybe<Scalars['Date']>;
19196
19364
  startDate?: Maybe<Scalars['DateTime']>;
19197
19365
  startDateRFC3339?: Maybe<Scalars['Date']>;
19198
19366
  status?: Maybe<RoadmapItemStatus>;
19367
+ statusId?: Maybe<Scalars['ID']>;
19199
19368
  statusCategory?: Maybe<RoadmapItemStatusCategory>;
19200
19369
  createdDate?: Maybe<Scalars['DateTime']>;
19201
19370
  resolutionDate?: Maybe<Scalars['DateTime']>;
@@ -19256,9 +19425,11 @@ export declare type RoadmapLevelOneItem = {
19256
19425
  parentId?: Maybe<Scalars['ID']>;
19257
19426
  summary?: Maybe<Scalars['String']>;
19258
19427
  assignee?: Maybe<User>;
19428
+ assigneeId?: Maybe<Scalars['ID']>;
19259
19429
  dueDateRFC3339?: Maybe<Scalars['Date']>;
19260
19430
  startDateRFC3339?: Maybe<Scalars['Date']>;
19261
19431
  status?: Maybe<RoadmapItemStatus>;
19432
+ statusId?: Maybe<Scalars['ID']>;
19262
19433
  dependencies?: Maybe<Array<Scalars['ID']>>;
19263
19434
  color?: Maybe<RoadmapPaletteColor>;
19264
19435
  rank?: Maybe<Scalars['String']>;
@@ -19270,6 +19441,7 @@ export declare type RoadmapLevelOneItem = {
19270
19441
  inferredStartDate?: Maybe<Scalars['Date']>;
19271
19442
  resolved?: Maybe<Scalars['Boolean']>;
19272
19443
  childIssueCount: Scalars['Int'];
19444
+ progress: Array<RoadmapProgressEntry>;
19273
19445
  };
19274
19446
  export declare type RoadmapLevelOneItemConnection = {
19275
19447
  __typename?: 'RoadmapLevelOneItemConnection';
@@ -19318,6 +19490,11 @@ export declare enum RoadmapPaletteColor {
19318
19490
  DarkOrange = "DARK_ORANGE",
19319
19491
  DarkGrey = "DARK_GREY"
19320
19492
  }
19493
+ export declare type RoadmapProgressEntry = {
19494
+ __typename?: 'RoadmapProgressEntry';
19495
+ statusCategoryId: Scalars['ID'];
19496
+ count: Scalars['Int'];
19497
+ };
19321
19498
  export declare type RoadmapProject = {
19322
19499
  __typename?: 'RoadmapProject';
19323
19500
  id: Scalars['ID'];
@@ -20165,6 +20342,15 @@ export declare enum SearchResultType {
20165
20342
  Project = "project",
20166
20343
  Unrecognised = "unrecognised"
20167
20344
  }
20345
+ export declare type Security = {
20346
+ __typename?: 'Security';
20347
+ caiq?: Maybe<Caiq>;
20348
+ securityContact: Scalars['String'];
20349
+ isDiskEncryptionSupported?: Maybe<Scalars['Boolean']>;
20350
+ hasCompliantCertifications?: Maybe<Scalars['Boolean']>;
20351
+ compliantCertifications?: Maybe<Array<Maybe<Scalars['String']>>>;
20352
+ publicSecurityPoliciesLink?: Maybe<Scalars['String']>;
20353
+ };
20168
20354
  export declare type SecurityContainer = {
20169
20355
  name: Scalars['String'];
20170
20356
  url?: Maybe<Scalars['URL']>;
@@ -20179,6 +20365,11 @@ export declare type SecurityWorkspace = {
20179
20365
  providerName?: Maybe<Scalars['String']>;
20180
20366
  lastUpdated?: Maybe<Scalars['DateTime']>;
20181
20367
  };
20368
+ export declare type ServiceProvider = {
20369
+ __typename?: 'ServiceProvider';
20370
+ isAppServiceProvider: AcceptableResponse;
20371
+ endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
20372
+ };
20182
20373
  export declare type SetAppEnvironmentVariableInput = {
20183
20374
  environment: AppEnvironmentInput;
20184
20375
  environmentVariable: AppEnvironmentVariableInput;
@@ -21242,6 +21433,7 @@ export declare type Storage = {
21242
21433
  };
21243
21434
  export declare type Subscription = {
21244
21435
  __typename?: 'Subscription';
21436
+ trello: TrelloSubscriptionApi;
21245
21437
  onPullRequestCreatedOrUpdatedForProject?: Maybe<AriGraphRelationshipConnection>;
21246
21438
  onJiraIssueCreatedForUser?: Maybe<JiraOnIssueCreatedForUserResponseType>;
21247
21439
  onTestingActivityItemUpdate?: Maybe<Node>;
@@ -21896,6 +22088,19 @@ export declare type TestingPerformance = {
21896
22088
  __typename?: 'TestingPerformance';
21897
22089
  myActivities: TestingMyActivity;
21898
22090
  };
22091
+ export declare type ThirdPartyDetails = {
22092
+ __typename?: 'ThirdPartyDetails';
22093
+ name: Scalars['String'];
22094
+ link: Scalars['String'];
22095
+ purpose: Scalars['String'];
22096
+ thirdPartyCountries: Array<Maybe<Scalars['String']>>;
22097
+ };
22098
+ export declare type ThirdPartyInformation = {
22099
+ __typename?: 'ThirdPartyInformation';
22100
+ isEndUserDataShared: Scalars['Boolean'];
22101
+ dataSubProcessors?: Maybe<Scalars['String']>;
22102
+ thirdPartyDetails?: Maybe<Array<Maybe<ThirdPartyDetails>>>;
22103
+ };
21899
22104
  export declare type ThirdPartyRepositoryInput = {
21900
22105
  id: Scalars['ID'];
21901
22106
  webUrl?: Maybe<Scalars['String']>;
@@ -22111,6 +22316,8 @@ export declare type TownsquareQueryApi = {
22111
22316
  commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
22112
22317
  projectSearch?: Maybe<TownsquareProjectConnection>;
22113
22318
  goalSearch?: Maybe<TownsquareGoalConnection>;
22319
+ projectTql?: Maybe<TownsquareProjectConnection>;
22320
+ goalTql?: Maybe<TownsquareGoalConnection>;
22114
22321
  };
22115
22322
  export declare type TownsquareQueryApiProjectArgs = {
22116
22323
  ari: Scalars['String'];
@@ -22148,6 +22355,20 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
22148
22355
  q?: Maybe<Scalars['String']>;
22149
22356
  sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
22150
22357
  };
22358
+ export declare type TownsquareQueryApiProjectTqlArgs = {
22359
+ q: Scalars['String'];
22360
+ cloudId: Scalars['String'];
22361
+ after?: Maybe<Scalars['String']>;
22362
+ first?: Maybe<Scalars['Int']>;
22363
+ sort?: Maybe<Array<Maybe<TownsquareProjectSortEnum>>>;
22364
+ };
22365
+ export declare type TownsquareQueryApiGoalTqlArgs = {
22366
+ q: Scalars['String'];
22367
+ cloudId: Scalars['String'];
22368
+ after?: Maybe<Scalars['String']>;
22369
+ first?: Maybe<Scalars['Int']>;
22370
+ sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
22371
+ };
22151
22372
  export declare type TownsquareTag = Node & {
22152
22373
  __typename?: 'TownsquareTag';
22153
22374
  description?: Maybe<Scalars['String']>;
@@ -22194,6 +22415,7 @@ export declare type TransitionFilter = {
22194
22415
  export declare type TrelloBoard = {
22195
22416
  __typename?: 'TrelloBoard';
22196
22417
  closed: Scalars['Boolean'];
22418
+ galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
22197
22419
  id: Scalars['ID'];
22198
22420
  lastActivityAt?: Maybe<Scalars['DateTime']>;
22199
22421
  name: Scalars['String'];
@@ -22210,11 +22432,41 @@ export declare type TrelloBoardBackground = {
22210
22432
  imageScaled?: Maybe<Array<TrelloScaleProps>>;
22211
22433
  tile: Scalars['Boolean'];
22212
22434
  };
22435
+ export declare type TrelloBoardBackgroundUpdatedDeltas = {
22436
+ __typename?: 'TrelloBoardBackgroundUpdatedDeltas';
22437
+ color?: Maybe<Scalars['Boolean']>;
22438
+ image?: Maybe<Scalars['Boolean']>;
22439
+ imageScaled?: Maybe<Scalars['Boolean']>;
22440
+ title?: Maybe<Scalars['Boolean']>;
22441
+ };
22442
+ export declare type TrelloBoardEdge = {
22443
+ __typename?: 'TrelloBoardEdge';
22444
+ cursor: Scalars['String'];
22445
+ node: TrelloBoard;
22446
+ };
22213
22447
  export declare type TrelloBoardPrefs = {
22214
22448
  __typename?: 'TrelloBoardPrefs';
22215
22449
  background: TrelloBoardBackground;
22216
22450
  isTemplate: Scalars['Boolean'];
22217
22451
  };
22452
+ export declare type TrelloBoardPrefsUpdatedDeltas = {
22453
+ __typename?: 'TrelloBoardPrefsUpdatedDeltas';
22454
+ background?: Maybe<TrelloBoardBackgroundUpdatedDeltas>;
22455
+ isTemplate?: Maybe<Scalars['Boolean']>;
22456
+ };
22457
+ export declare type TrelloBoardUpdated = {
22458
+ __typename?: 'TrelloBoardUpdated';
22459
+ _deltas?: Maybe<TrelloBoardUpdatedDeltas>;
22460
+ closed?: Maybe<Scalars['Boolean']>;
22461
+ name?: Maybe<Scalars['String']>;
22462
+ prefs?: Maybe<TrelloBoardPrefs>;
22463
+ };
22464
+ export declare type TrelloBoardUpdatedDeltas = {
22465
+ __typename?: 'TrelloBoardUpdatedDeltas';
22466
+ closed?: Maybe<Scalars['Boolean']>;
22467
+ name?: Maybe<Scalars['Boolean']>;
22468
+ prefs?: Maybe<TrelloBoardPrefsUpdatedDeltas>;
22469
+ };
22218
22470
  export declare type TrelloBoardViewer = {
22219
22471
  __typename?: 'TrelloBoardViewer';
22220
22472
  lastSeenAt?: Maybe<Scalars['DateTime']>;
@@ -22226,6 +22478,7 @@ export declare type TrelloQueryApi = {
22226
22478
  echo: Scalars['String'];
22227
22479
  recentBoardsByIds: Array<Maybe<TrelloBoard>>;
22228
22480
  templateCategories: Array<TrelloTemplateGalleryCategory>;
22481
+ templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
22229
22482
  templateLanguages: Array<TrelloTemplateGalleryLanguage>;
22230
22483
  };
22231
22484
  export declare type TrelloQueryApiBoardArgs = {
@@ -22234,16 +22487,55 @@ export declare type TrelloQueryApiBoardArgs = {
22234
22487
  export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
22235
22488
  ids: Array<Scalars['ID']>;
22236
22489
  };
22490
+ export declare type TrelloQueryApiTemplateGalleryArgs = {
22491
+ after?: Maybe<Scalars['String']>;
22492
+ filter?: Maybe<TrelloTemplateGalleryFilterInput>;
22493
+ first?: Maybe<Scalars['Int']>;
22494
+ };
22237
22495
  export declare type TrelloScaleProps = {
22238
22496
  __typename?: 'TrelloScaleProps';
22239
22497
  height: Scalars['Int'];
22240
22498
  url: Scalars['String'];
22241
22499
  width: Scalars['Int'];
22242
22500
  };
22501
+ export declare type TrelloSubscriptionApi = {
22502
+ __typename?: 'TrelloSubscriptionApi';
22503
+ onBoardUpdated?: Maybe<TrelloBoardUpdated>;
22504
+ };
22505
+ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
22506
+ id: Scalars['ID'];
22507
+ };
22243
22508
  export declare type TrelloTemplateGalleryCategory = {
22244
22509
  __typename?: 'TrelloTemplateGalleryCategory';
22245
22510
  key: Scalars['String'];
22246
22511
  };
22512
+ export declare type TrelloTemplateGalleryConnection = {
22513
+ __typename?: 'TrelloTemplateGalleryConnection';
22514
+ edges: Array<Maybe<TrelloBoardEdge>>;
22515
+ nodes: Array<Maybe<TrelloBoard>>;
22516
+ pageInfo: PageInfo;
22517
+ };
22518
+ export declare type TrelloTemplateGalleryFilterInput = {
22519
+ category?: Maybe<Scalars['String']>;
22520
+ language: Scalars['String'];
22521
+ supportedPowerUps?: Maybe<Array<Scalars['ID']>>;
22522
+ };
22523
+ export declare type TrelloTemplateGalleryItemInfo = {
22524
+ __typename?: 'TrelloTemplateGalleryItemInfo';
22525
+ avatarShape?: Maybe<Scalars['String']>;
22526
+ avatarUrl?: Maybe<Scalars['String']>;
22527
+ blurb?: Maybe<Scalars['String']>;
22528
+ byline?: Maybe<Scalars['String']>;
22529
+ category: TrelloTemplateGalleryCategory;
22530
+ id?: Maybe<Scalars['ID']>;
22531
+ language: TrelloTemplateGalleryLanguage;
22532
+ stats?: Maybe<TrelloTemplateGalleryItemStats>;
22533
+ };
22534
+ export declare type TrelloTemplateGalleryItemStats = {
22535
+ __typename?: 'TrelloTemplateGalleryItemStats';
22536
+ copyCount: Scalars['Int'];
22537
+ viewCount: Scalars['Int'];
22538
+ };
22247
22539
  export declare type TrelloTemplateGalleryLanguage = {
22248
22540
  __typename?: 'TrelloTemplateGalleryLanguage';
22249
22541
  description: Scalars['String'];