@forge/cli-shared 8.9.1-next.6 → 8.9.1-next.8

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.9.1-next.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 0c4a82e:
8
+
9
+ ## 8.9.1-next.7
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [b5f0775]
14
+ - Updated dependencies [b5f0775]
15
+ - @forge/manifest@11.1.0-next.5
16
+
3
17
  ## 8.9.1-next.6
4
18
 
5
19
  ### Patch Changes
@@ -1635,6 +1635,54 @@ export declare type AdminAssignRoleResponsePayload = Payload & {
1635
1635
  errors?: Maybe<Array<MutationError>>;
1636
1636
  success: Scalars['Boolean']['output'];
1637
1637
  };
1638
+ export declare type AdminAuditLogEvent = {
1639
+ __typename?: 'AdminAuditLogEvent';
1640
+ action: Scalars['String']['output'];
1641
+ containers?: Maybe<Array<Maybe<AdminAuditLogEventContainer>>>;
1642
+ context?: Maybe<Array<Maybe<AdminAuditLogEventContext>>>;
1643
+ correlationId?: Maybe<Scalars['String']['output']>;
1644
+ location?: Maybe<AdminAuditLogEventLocation>;
1645
+ message?: Maybe<AdminAuditLogEventMessage>;
1646
+ time: Scalars['String']['output'];
1647
+ };
1648
+ export declare type AdminAuditLogEventConnection = {
1649
+ __typename?: 'AdminAuditLogEventConnection';
1650
+ edges?: Maybe<Array<AdminAuditLogEventEdge>>;
1651
+ pageInfo: PageInfo;
1652
+ };
1653
+ export declare type AdminAuditLogEventContainer = {
1654
+ __typename?: 'AdminAuditLogEventContainer';
1655
+ attributes: Array<Maybe<AdminStringKeyValuePair>>;
1656
+ id: Scalars['ID']['output'];
1657
+ type: Scalars['String']['output'];
1658
+ };
1659
+ export declare type AdminAuditLogEventContext = {
1660
+ __typename?: 'AdminAuditLogEventContext';
1661
+ attributes: Array<Maybe<AdminStringKeyValuePair>>;
1662
+ id: Scalars['ID']['output'];
1663
+ type: Scalars['String']['output'];
1664
+ };
1665
+ export declare type AdminAuditLogEventEdge = {
1666
+ __typename?: 'AdminAuditLogEventEdge';
1667
+ cursor: Scalars['String']['output'];
1668
+ node: AdminAuditLogEvent;
1669
+ };
1670
+ export declare type AdminAuditLogEventLocation = {
1671
+ __typename?: 'AdminAuditLogEventLocation';
1672
+ cityName?: Maybe<Scalars['String']['output']>;
1673
+ countryName?: Maybe<Scalars['String']['output']>;
1674
+ ip: Scalars['String']['output'];
1675
+ regionName?: Maybe<Scalars['String']['output']>;
1676
+ };
1677
+ export declare type AdminAuditLogEventMessage = {
1678
+ __typename?: 'AdminAuditLogEventMessage';
1679
+ content: Scalars['String']['output'];
1680
+ format: AdminAuditLogEventMessageFormat;
1681
+ };
1682
+ export declare enum AdminAuditLogEventMessageFormat {
1683
+ Adf = "ADF",
1684
+ Simple = "SIMPLE"
1685
+ }
1638
1686
  export declare type AdminAuditLogFeature = {
1639
1687
  __typename?: 'AdminAuditLogFeature';
1640
1688
  allInclusive?: Maybe<Scalars['Boolean']['output']>;
@@ -1786,6 +1834,19 @@ export declare type AdminExternalCollaboratorFeature = {
1786
1834
  enabled?: Maybe<Scalars['Boolean']['output']>;
1787
1835
  };
1788
1836
  export declare type AdminFeature = AdminAiFeature | AdminAuditLogFeature | AdminCustomDomains | AdminDataResidencyFeature | AdminExternalCollaboratorFeature | AdminFreezeWindowsFeature | AdminInsightsFeature | AdminIpAllowlistingFeature | AdminReleaseTrackFeature | AdminSandboxFeature | AdminStorageFeature | AdminUserManagement;
1837
+ export declare type AdminFetchAdminAuditLogEventsInput = {
1838
+ action?: InputMaybe<Array<Scalars['String']['input']>>;
1839
+ actor?: InputMaybe<Array<Scalars['String']['input']>>;
1840
+ appType?: InputMaybe<Scalars['String']['input']>;
1841
+ correlationId?: InputMaybe<Scalars['String']['input']>;
1842
+ format?: InputMaybe<AdminAuditLogEventMessageFormat>;
1843
+ from?: InputMaybe<Scalars['String']['input']>;
1844
+ ip?: InputMaybe<Array<Scalars['String']['input']>>;
1845
+ location?: InputMaybe<Scalars['String']['input']>;
1846
+ query?: InputMaybe<Scalars['String']['input']>;
1847
+ sortOrder?: InputMaybe<SortDirection>;
1848
+ to?: InputMaybe<Scalars['String']['input']>;
1849
+ };
1789
1850
  export declare type AdminFetchGroupInput = {
1790
1851
  directoryId?: InputMaybe<Scalars['String']['input']>;
1791
1852
  groupId: Scalars['String']['input'];
@@ -2261,6 +2322,11 @@ export declare type AdminStorageFeature = {
2261
2322
  __typename?: 'AdminStorageFeature';
2262
2323
  name?: Maybe<Scalars['String']['output']>;
2263
2324
  };
2325
+ export declare type AdminStringKeyValuePair = {
2326
+ __typename?: 'AdminStringKeyValuePair';
2327
+ key: Scalars['String']['output'];
2328
+ value: Scalars['String']['output'];
2329
+ };
2264
2330
  export declare type AdminUnit = {
2265
2331
  __typename?: 'AdminUnit';
2266
2332
  apps?: Maybe<AdminUnitAppsConnection>;
@@ -3664,15 +3730,11 @@ export declare type AppAdminQuery = {
3664
3730
  __typename?: 'AppAdminQuery';
3665
3731
  appId: Scalars['ID']['output'];
3666
3732
  getQuotaInfo?: Maybe<Array<QuotaInfo>>;
3667
- listStorage?: Maybe<AppStoredEntityConnection>;
3668
3733
  };
3669
3734
  export declare type AppAdminQueryGetQuotaInfoArgs = {
3670
3735
  contextAri: Scalars['ID']['input'];
3671
3736
  environmentId: Scalars['ID']['input'];
3672
3737
  };
3673
- export declare type AppAdminQueryListStorageArgs = {
3674
- input: ListStorageInput;
3675
- };
3676
3738
  export declare type AppAuditConnection = {
3677
3739
  __typename?: 'AppAuditConnection';
3678
3740
  edges?: Maybe<Array<Maybe<AuditEventEdge>>>;
@@ -88155,12 +88217,6 @@ export declare type LinksSelf = {
88155
88217
  __typename?: 'LinksSelf';
88156
88218
  self?: Maybe<Scalars['String']['output']>;
88157
88219
  };
88158
- export declare type ListStorageInput = {
88159
- after?: InputMaybe<Scalars['String']['input']>;
88160
- contextAri: Scalars['ID']['input'];
88161
- environmentId: Scalars['ID']['input'];
88162
- first?: InputMaybe<Scalars['Int']['input']>;
88163
- };
88164
88220
  export declare type LocalStorage = {
88165
88221
  __typename?: 'LocalStorage';
88166
88222
  booleanValues: Array<Maybe<LocalStorageBooleanPair>>;
@@ -89232,6 +89288,10 @@ export declare type MarketplaceConsoleCreateAppSoftwareVersionMutationResponse =
89232
89288
  success: Scalars['Boolean']['output'];
89233
89289
  versionType: MarketplaceConsoleVersionType;
89234
89290
  };
89291
+ export declare type MarketplaceConsoleCreateMakerInput = {
89292
+ developerSpaceListing: MarketplaceConsoleDevSpaceListingInput;
89293
+ makerName: Scalars['String']['input'];
89294
+ };
89235
89295
  export declare type MarketplaceConsoleCreatePrivateAppMutationOutput = MarketplaceConsoleCreatePrivateAppMutationResponse | MarketplaceConsoleDomainErrorResponse;
89236
89296
  export declare type MarketplaceConsoleCreatePrivateAppMutationResponse = {
89237
89297
  __typename?: 'MarketplaceConsoleCreatePrivateAppMutationResponse';
@@ -89296,6 +89356,18 @@ export declare type MarketplaceConsoleDevSpaceContact = {
89296
89356
  postCode?: Maybe<Scalars['String']['output']>;
89297
89357
  state?: Maybe<Scalars['String']['output']>;
89298
89358
  };
89359
+ export declare type MarketplaceConsoleDevSpaceContactInput = {
89360
+ addressLine1?: InputMaybe<Scalars['String']['input']>;
89361
+ addressLine2?: InputMaybe<Scalars['String']['input']>;
89362
+ city?: InputMaybe<Scalars['String']['input']>;
89363
+ country?: InputMaybe<Scalars['String']['input']>;
89364
+ email: Scalars['String']['input'];
89365
+ homePageUrl?: InputMaybe<Scalars['String']['input']>;
89366
+ otherContactDetails?: InputMaybe<Scalars['String']['input']>;
89367
+ phone?: InputMaybe<Scalars['String']['input']>;
89368
+ postCode?: InputMaybe<Scalars['String']['input']>;
89369
+ state?: InputMaybe<Scalars['String']['input']>;
89370
+ };
89299
89371
  export declare type MarketplaceConsoleDevSpaceListing = {
89300
89372
  __typename?: 'MarketplaceConsoleDevSpaceListing';
89301
89373
  contactDetails: MarketplaceConsoleDevSpaceContact;
@@ -89304,6 +89376,13 @@ export declare type MarketplaceConsoleDevSpaceListing = {
89304
89376
  supportDetails?: Maybe<MarketplaceConsoleDevSpaceSupportDetails>;
89305
89377
  trustCenterUrl?: Maybe<Scalars['String']['output']>;
89306
89378
  };
89379
+ export declare type MarketplaceConsoleDevSpaceListingInput = {
89380
+ contactDetails: MarketplaceConsoleDevSpaceContactInput;
89381
+ description?: InputMaybe<Scalars['String']['input']>;
89382
+ displayLogoUrl?: InputMaybe<Scalars['String']['input']>;
89383
+ supportDetails?: InputMaybe<MarketplaceConsoleDevSpaceSupportDetailsInput>;
89384
+ trustCenterUrl?: InputMaybe<Scalars['String']['input']>;
89385
+ };
89307
89386
  export declare enum MarketplaceConsoleDevSpaceProgram {
89308
89387
  AtlassianParter = "ATLASSIAN_PARTER",
89309
89388
  FreeLicense = "FREE_LICENSE",
@@ -89326,12 +89405,24 @@ export declare type MarketplaceConsoleDevSpaceSupportAvailability = {
89326
89405
  holidays?: Maybe<Array<MarketplaceConsoleDevSpaceSupportContactHoliday>>;
89327
89406
  timezone: Scalars['String']['output'];
89328
89407
  };
89408
+ export declare type MarketplaceConsoleDevSpaceSupportAvailabilityInput = {
89409
+ availableFrom: Scalars['String']['input'];
89410
+ availableTo: Scalars['String']['input'];
89411
+ days?: InputMaybe<Array<Scalars['String']['input']>>;
89412
+ holidays?: InputMaybe<Array<MarketplaceConsoleDevSpaceSupportContactHolidayInput>>;
89413
+ timezone: Scalars['String']['input'];
89414
+ };
89329
89415
  export declare type MarketplaceConsoleDevSpaceSupportContactHoliday = {
89330
89416
  __typename?: 'MarketplaceConsoleDevSpaceSupportContactHoliday';
89331
89417
  date: Scalars['String']['output'];
89332
89418
  repeatAnnually: Scalars['Boolean']['output'];
89333
89419
  title: Scalars['String']['output'];
89334
89420
  };
89421
+ export declare type MarketplaceConsoleDevSpaceSupportContactHolidayInput = {
89422
+ date: Scalars['String']['input'];
89423
+ repeatAnnually: Scalars['Boolean']['input'];
89424
+ title: Scalars['String']['input'];
89425
+ };
89335
89426
  export declare type MarketplaceConsoleDevSpaceSupportDetails = {
89336
89427
  __typename?: 'MarketplaceConsoleDevSpaceSupportDetails';
89337
89428
  availability?: Maybe<MarketplaceConsoleDevSpaceSupportAvailability>;
@@ -89343,6 +89434,16 @@ export declare type MarketplaceConsoleDevSpaceSupportDetails = {
89343
89434
  targetResponseTimeInHrs?: Maybe<Scalars['Int']['output']>;
89344
89435
  url?: Maybe<Scalars['String']['output']>;
89345
89436
  };
89437
+ export declare type MarketplaceConsoleDevSpaceSupportDetailsInput = {
89438
+ availability?: InputMaybe<MarketplaceConsoleDevSpaceSupportAvailabilityInput>;
89439
+ contactEmail?: InputMaybe<Scalars['String']['input']>;
89440
+ contactName?: InputMaybe<Scalars['String']['input']>;
89441
+ contactPhone?: InputMaybe<Scalars['String']['input']>;
89442
+ emergencyContact?: InputMaybe<Scalars['String']['input']>;
89443
+ slaUrl?: InputMaybe<Scalars['String']['input']>;
89444
+ targetResponseTimeInHrs?: InputMaybe<Scalars['Int']['input']>;
89445
+ url?: InputMaybe<Scalars['String']['input']>;
89446
+ };
89346
89447
  export declare enum MarketplaceConsoleDevSpaceTier {
89347
89448
  Gold = "GOLD",
89348
89449
  Platinum = "PLATINUM",
@@ -89772,12 +89873,14 @@ export declare type MarketplaceConsoleMakerContactsResponse = {
89772
89873
  count: Scalars['Int']['output'];
89773
89874
  makerContacts: Array<Maybe<MarketplaceConsoleMakerContact>>;
89774
89875
  };
89876
+ export declare type MarketplaceConsoleMakerResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
89775
89877
  export declare type MarketplaceConsoleMutationApi = {
89776
89878
  __typename?: 'MarketplaceConsoleMutationApi';
89777
89879
  activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
89778
89880
  createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
89779
89881
  createAppSoftwareVersion?: Maybe<MarketplaceConsoleCreateAppSoftwareVersionMutationOutput>;
89780
89882
  createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
89883
+ createMaker?: Maybe<MarketplaceConsoleMakerResponse>;
89781
89884
  createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
89782
89885
  createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
89783
89886
  createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
@@ -89797,7 +89900,6 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
89797
89900
  product: MarketplaceConsoleEditionsInput;
89798
89901
  };
89799
89902
  export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
89800
- appId: Scalars['String']['input'];
89801
89903
  appSoftwareId: Scalars['String']['input'];
89802
89904
  };
89803
89905
  export declare type MarketplaceConsoleMutationApiCreateAppSoftwareVersionArgs = {
@@ -89807,6 +89909,9 @@ export declare type MarketplaceConsoleMutationApiCreateAppSoftwareVersionArgs =
89807
89909
  export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
89808
89910
  product: MarketplaceConsoleEditionsInput;
89809
89911
  };
89912
+ export declare type MarketplaceConsoleMutationApiCreateMakerArgs = {
89913
+ input: MarketplaceConsoleCreateMakerInput;
89914
+ };
89810
89915
  export declare type MarketplaceConsoleMutationApiCreateMakerContactArgs = {
89811
89916
  input: MarketplaceConsoleMakerContactCreateInput;
89812
89917
  };
@@ -90149,7 +90254,6 @@ export declare type MarketplaceConsoleQueryApi = {
90149
90254
  validateForgeAGCApp?: Maybe<MarketplaceConsoleForgeAgcAppValidationResponse>;
90150
90255
  };
90151
90256
  export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
90152
- appId: Scalars['ID']['input'];
90153
90257
  appSoftwareId: Scalars['ID']['input'];
90154
90258
  };
90155
90259
  export declare type MarketplaceConsoleQueryApiAppSoftwareVersionByAppIdArgs = {
@@ -95780,8 +95884,11 @@ export declare type Mutation = {
95780
95884
  projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
95781
95885
  projects_createRisk?: Maybe<TownsquareProjectsCreateRiskPayload>;
95782
95886
  projects_createUpdate?: Maybe<TownsquareProjectsCreateUpdatePayload>;
95887
+ projects_deleteDecision?: Maybe<TownsquareProjectsDeleteDecisionPayload>;
95783
95888
  projects_deleteLatestUpdate?: Maybe<TownsquareProjectsDeleteLatestUpdatePayload>;
95889
+ projects_deleteLearning?: Maybe<TownsquareProjectsDeleteLearningPayload>;
95784
95890
  projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
95891
+ projects_deleteRisk?: Maybe<TownsquareProjectsDeleteRiskPayload>;
95785
95892
  projects_edit?: Maybe<TownsquareProjectsEditPayload>;
95786
95893
  projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
95787
95894
  projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
@@ -98005,12 +98112,21 @@ export declare type MutationProjects_CreateRiskArgs = {
98005
98112
  export declare type MutationProjects_CreateUpdateArgs = {
98006
98113
  input?: InputMaybe<TownsquareProjectsCreateUpdateInput>;
98007
98114
  };
98115
+ export declare type MutationProjects_DeleteDecisionArgs = {
98116
+ input: TownsquareProjectsDeleteDecisionInput;
98117
+ };
98008
98118
  export declare type MutationProjects_DeleteLatestUpdateArgs = {
98009
98119
  input?: InputMaybe<TownsquareProjectsDeleteLatestUpdateInput>;
98010
98120
  };
98121
+ export declare type MutationProjects_DeleteLearningArgs = {
98122
+ input: TownsquareProjectsDeleteLearningInput;
98123
+ };
98011
98124
  export declare type MutationProjects_DeleteLinkArgs = {
98012
98125
  input?: InputMaybe<TownsquareProjectsDeleteLinkInput>;
98013
98126
  };
98127
+ export declare type MutationProjects_DeleteRiskArgs = {
98128
+ input: TownsquareProjectsDeleteRiskInput;
98129
+ };
98014
98130
  export declare type MutationProjects_EditArgs = {
98015
98131
  input?: InputMaybe<TownsquareProjectsEditInput>;
98016
98132
  };
@@ -101637,6 +101753,7 @@ export declare type Query = {
101637
101753
  adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
101638
101754
  admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
101639
101755
  admin_appModules?: Maybe<AdminAppModuleConnection>;
101756
+ admin_auditAuditLogEvents?: Maybe<AdminAuditLogEventConnection>;
101640
101757
  admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
101641
101758
  admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
101642
101759
  admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
@@ -102547,6 +102664,14 @@ export declare type QueryAdmin_AppModulesArgs = {
102547
102664
  last?: InputMaybe<Scalars['Int']['input']>;
102548
102665
  moduleKeys: Array<Scalars['String']['input']>;
102549
102666
  };
102667
+ export declare type QueryAdmin_AuditAuditLogEventsArgs = {
102668
+ after?: InputMaybe<Scalars['String']['input']>;
102669
+ before?: InputMaybe<Scalars['String']['input']>;
102670
+ first?: InputMaybe<Scalars['Int']['input']>;
102671
+ input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
102672
+ last?: InputMaybe<Scalars['Int']['input']>;
102673
+ orgId: Scalars['ID']['input'];
102674
+ };
102550
102675
  export declare type QueryAdmin_CheckLicensesCapacityArgs = {
102551
102676
  input: AdminLicenseInput;
102552
102677
  orgId: Scalars['ID']['input'];
@@ -133796,6 +133921,7 @@ export declare type TownsquareGoalsCreateRiskPayload = {
133796
133921
  };
133797
133922
  export declare type TownsquareGoalsCreateUpdateInput = {
133798
133923
  goalId: Scalars['ID']['input'];
133924
+ highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
133799
133925
  metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
133800
133926
  score?: InputMaybe<Scalars['Int']['input']>;
133801
133927
  status?: InputMaybe<Scalars['String']['input']>;
@@ -133936,6 +134062,7 @@ export declare type TownsquareGoalsEditRiskPayload = {
133936
134062
  };
133937
134063
  export declare type TownsquareGoalsEditUpdateInput = {
133938
134064
  goalUpdateId: Scalars['ID']['input'];
134065
+ highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
133939
134066
  metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateEditInput>>>;
133940
134067
  score?: InputMaybe<Scalars['Int']['input']>;
133941
134068
  status?: InputMaybe<Scalars['String']['input']>;
@@ -134756,6 +134883,15 @@ export declare type TownsquareProjectsCreateUpdatePayload = {
134756
134883
  success: Scalars['Boolean']['output'];
134757
134884
  update?: Maybe<TownsquareProjectUpdate>;
134758
134885
  };
134886
+ export declare type TownsquareProjectsDeleteDecisionInput = {
134887
+ decisionId: Scalars['ID']['input'];
134888
+ };
134889
+ export declare type TownsquareProjectsDeleteDecisionPayload = {
134890
+ __typename?: 'TownsquareProjectsDeleteDecisionPayload';
134891
+ deletedDecisionId?: Maybe<Scalars['ID']['output']>;
134892
+ errors?: Maybe<Array<MutationError>>;
134893
+ success: Scalars['Boolean']['output'];
134894
+ };
134759
134895
  export declare type TownsquareProjectsDeleteLatestUpdateInput = {
134760
134896
  updateId: Scalars['ID']['input'];
134761
134897
  };
@@ -134766,6 +134902,15 @@ export declare type TownsquareProjectsDeleteLatestUpdatePayload = {
134766
134902
  project?: Maybe<TownsquareProject>;
134767
134903
  success: Scalars['Boolean']['output'];
134768
134904
  };
134905
+ export declare type TownsquareProjectsDeleteLearningInput = {
134906
+ learningId: Scalars['ID']['input'];
134907
+ };
134908
+ export declare type TownsquareProjectsDeleteLearningPayload = {
134909
+ __typename?: 'TownsquareProjectsDeleteLearningPayload';
134910
+ deletedLearningId?: Maybe<Scalars['ID']['output']>;
134911
+ errors?: Maybe<Array<MutationError>>;
134912
+ success: Scalars['Boolean']['output'];
134913
+ };
134769
134914
  export declare type TownsquareProjectsDeleteLinkInput = {
134770
134915
  linkId: Scalars['ID']['input'];
134771
134916
  };
@@ -134776,6 +134921,15 @@ export declare type TownsquareProjectsDeleteLinkPayload = {
134776
134921
  project?: Maybe<TownsquareProject>;
134777
134922
  success: Scalars['Boolean']['output'];
134778
134923
  };
134924
+ export declare type TownsquareProjectsDeleteRiskInput = {
134925
+ riskId: Scalars['ID']['input'];
134926
+ };
134927
+ export declare type TownsquareProjectsDeleteRiskPayload = {
134928
+ __typename?: 'TownsquareProjectsDeleteRiskPayload';
134929
+ deletedRiskId?: Maybe<Scalars['ID']['output']>;
134930
+ errors?: Maybe<Array<MutationError>>;
134931
+ success: Scalars['Boolean']['output'];
134932
+ };
134779
134933
  export declare type TownsquareProjectsEditDecisionInput = {
134780
134934
  decisionId: Scalars['ID']['input'];
134781
134935
  description?: InputMaybe<Scalars['String']['input']>;