@forge/cli-shared 8.8.1-next.1 → 8.8.1-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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.8.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b3792e4]
8
+ - @forge/manifest@10.8.0-next.2
9
+
3
10
  ## 8.8.1-next.1
4
11
 
5
12
  ### Patch Changes
@@ -3896,6 +3896,7 @@ export declare type AppInstallationUnsubscribeTask = AppInstallationTask & {
3896
3896
  export declare type AppInstallationUpgradeInput = {
3897
3897
  appId: Scalars['ID']['input'];
3898
3898
  async?: InputMaybe<Scalars['Boolean']['input']>;
3899
+ computeOnly?: InputMaybe<Scalars['Boolean']['input']>;
3899
3900
  environmentKey: Scalars['String']['input'];
3900
3901
  installationContext: Scalars['ID']['input'];
3901
3902
  sourceBillingType?: InputMaybe<SourceBillingType>;
@@ -15546,6 +15547,10 @@ export declare type ConfluenceContentMetadata = {
15546
15547
  titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
15547
15548
  titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
15548
15549
  };
15550
+ export declare type ConfluenceContentModeUpdated = {
15551
+ __typename?: 'ConfluenceContentModeUpdated';
15552
+ contentMode?: Maybe<Scalars['String']['output']>;
15553
+ };
15549
15554
  export declare type ConfluenceContentModified = {
15550
15555
  __typename?: 'ConfluenceContentModified';
15551
15556
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
@@ -15555,6 +15560,7 @@ export declare type ConfluenceContentModified = {
15555
15560
  commentReopened?: Maybe<ConfluenceCommentUpdated>;
15556
15561
  commentResolved?: Maybe<ConfluenceCommentCreated>;
15557
15562
  commentUpdated?: Maybe<ConfluenceCommentUpdated>;
15563
+ contentModeUpdated?: Maybe<ConfluenceContentModeUpdated>;
15558
15564
  contentRestrictionUpdated?: Maybe<ConfluenceContentRestrictionUpdated>;
15559
15565
  contentStateDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
15560
15566
  contentStateUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
@@ -26429,6 +26435,11 @@ export declare type DevConsoleAppUsageOverviewResponse = {
26429
26435
  error?: Maybe<QueryError>;
26430
26436
  resourceUsage?: Maybe<DevConsoleResourceUsageData>;
26431
26437
  };
26438
+ export declare type DevConsoleAppsWithoutConsentResponse = {
26439
+ __typename?: 'DevConsoleAppsWithoutConsentResponse';
26440
+ appIds: Array<Scalars['String']['output']>;
26441
+ error?: Maybe<QueryError>;
26442
+ };
26432
26443
  export declare type DevConsoleArchiveDeveloperSpaceInput = {
26433
26444
  developerSpaceId: Scalars['String']['input'];
26434
26445
  };
@@ -26565,6 +26576,7 @@ export declare type DevConsoleQuery = {
26565
26576
  appResourceUsage: DevConsoleAppResourceUsageResponse;
26566
26577
  appResourceUsageDetailedView: DevConsoleAppResourceUsageDetailedViewResponse;
26567
26578
  appUsageOverview: DevConsoleAppUsageOverviewResponse;
26579
+ getAppsWithoutConsent: DevConsoleAppsWithoutConsentResponse;
26568
26580
  getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
26569
26581
  getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
26570
26582
  getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -26583,6 +26595,9 @@ export declare type DevConsoleQueryAppUsageOverviewArgs = {
26583
26595
  appId: Scalars['ID']['input'];
26584
26596
  filters: DevConsoleAppUsageFiltersInput;
26585
26597
  };
26598
+ export declare type DevConsoleQueryGetAppsWithoutConsentArgs = {
26599
+ developerSpaceId: Scalars['String']['input'];
26600
+ };
26586
26601
  export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
26587
26602
  developerSpaceIds: Array<Scalars['String']['input']>;
26588
26603
  };
@@ -59168,6 +59183,7 @@ export declare type GrowthUnifiedProfileTwcOnboardingContext = {
59168
59183
  entitlementId: Scalars['ID']['output'];
59169
59184
  existingProducts?: Maybe<Array<Maybe<GrowthUnifiedProfileTwcProductDetails>>>;
59170
59185
  newProducts?: Maybe<Array<Maybe<GrowthUnifiedProfileTwcProductDetails>>>;
59186
+ onboardingUrl?: Maybe<Scalars['String']['output']>;
59171
59187
  };
59172
59188
  export declare type GrowthUnifiedProfileTwcOnboardingContextInput = {
59173
59189
  createdAt?: InputMaybe<Scalars['String']['input']>;
@@ -59176,14 +59192,17 @@ export declare type GrowthUnifiedProfileTwcOnboardingContextInput = {
59176
59192
  entitlementId: Scalars['ID']['input'];
59177
59193
  existingProducts?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcProductDetailsInput>>>;
59178
59194
  newProducts?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcProductDetailsInput>>>;
59195
+ onboardingUrl?: InputMaybe<Scalars['String']['input']>;
59179
59196
  };
59180
59197
  export declare type GrowthUnifiedProfileTwcProductDetails = {
59181
59198
  __typename?: 'GrowthUnifiedProfileTwcProductDetails';
59182
59199
  productKey: Scalars['String']['output'];
59200
+ productUrl?: Maybe<Scalars['String']['output']>;
59183
59201
  tenantId?: Maybe<Scalars['String']['output']>;
59184
59202
  };
59185
59203
  export declare type GrowthUnifiedProfileTwcProductDetailsInput = {
59186
59204
  productKey: Scalars['String']['input'];
59205
+ productUrl?: InputMaybe<Scalars['String']['input']>;
59187
59206
  tenantId?: InputMaybe<Scalars['String']['input']>;
59188
59207
  };
59189
59208
  export declare type GrowthUnifiedProfileUserActivityContext = {
@@ -64297,6 +64316,7 @@ export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOpt
64297
64316
  export declare type JiraBoardViewWorkflow = {
64298
64317
  __typename?: 'JiraBoardViewWorkflow';
64299
64318
  eligibleTransitions?: Maybe<JiraTransitionConnection>;
64319
+ id: Scalars['ID']['output'];
64300
64320
  issueTypes?: Maybe<JiraIssueTypeConnection>;
64301
64321
  };
64302
64322
  export declare type JiraBoardViewWorkflowEligibleTransitionsArgs = {
@@ -66133,6 +66153,7 @@ export declare type JiraCreateCalendarIssuePayload = Payload & {
66133
66153
  __typename?: 'JiraCreateCalendarIssuePayload';
66134
66154
  errors?: Maybe<Array<MutationError>>;
66135
66155
  issue?: Maybe<JiraIssue>;
66156
+ issueV2?: Maybe<JiraScenarioIssueLike>;
66136
66157
  success: Scalars['Boolean']['output'];
66137
66158
  };
66138
66159
  export declare type JiraCreateCustomBackgroundInput = {
@@ -67856,6 +67877,7 @@ export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
67856
67877
  __typename?: 'JiraFieldSetPreferencesUpdatePayload';
67857
67878
  errors?: Maybe<Array<MutationError>>;
67858
67879
  success: Scalars['Boolean']['output'];
67880
+ view?: Maybe<JiraView>;
67859
67881
  };
67860
67882
  export declare type JiraFieldSetView = JiraFieldSetsViewMetadata & Node & {
67861
67883
  __typename?: 'JiraFieldSetView';
@@ -76257,6 +76279,7 @@ export declare type JiraProjectWithIssueTypeIds = {
76257
76279
  allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
76258
76280
  availableFields?: Maybe<JiraAvailableFieldsConnection>;
76259
76281
  fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
76282
+ fieldAssociationWithIssueTypesByFieldId?: Maybe<JiraFieldAssociationWithIssueTypes>;
76260
76283
  };
76261
76284
  export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
76262
76285
  after?: InputMaybe<Scalars['String']['input']>;
@@ -76272,6 +76295,9 @@ export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArg
76272
76295
  first?: InputMaybe<Scalars['Int']['input']>;
76273
76296
  input?: InputMaybe<JiraFieldAssociationWithIssueTypesInput>;
76274
76297
  };
76298
+ export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesByFieldIdArgs = {
76299
+ fieldId: Scalars['String']['input'];
76300
+ };
76275
76301
  export declare enum JiraProjectsHelpCenterMappingStatus {
76276
76302
  All = "ALL",
76277
76303
  Linked = "LINKED",
@@ -84060,6 +84086,12 @@ export declare type JsmChannelsServiceAgentResolutionPlan = {
84060
84086
  __typename?: 'JsmChannelsServiceAgentResolutionPlan';
84061
84087
  planId?: Maybe<Scalars['ID']['output']>;
84062
84088
  runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
84089
+ steps?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionPlanStep>>>;
84090
+ };
84091
+ export declare type JsmChannelsServiceAgentResolutionPlanStep = {
84092
+ __typename?: 'JsmChannelsServiceAgentResolutionPlanStep';
84093
+ description?: Maybe<Scalars['String']['output']>;
84094
+ title: Scalars['String']['output'];
84063
84095
  };
84064
84096
  export declare type JsmChannelsServiceAgentResolutionRunbook = {
84065
84097
  __typename?: 'JsmChannelsServiceAgentResolutionRunbook';
@@ -85628,6 +85660,7 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionV2Args = {
85628
85660
  };
85629
85661
  export declare type KnowledgeDiscoveryQueryApiIntentDetectionArgs = {
85630
85662
  locale: Scalars['String']['input'];
85663
+ orgId: Scalars['String']['input'];
85631
85664
  query: Scalars['String']['input'];
85632
85665
  siteId: Scalars['String']['input'];
85633
85666
  };
@@ -86442,6 +86475,7 @@ export declare type LoomVideo = Node & {
86442
86475
  description?: Maybe<Scalars['String']['output']>;
86443
86476
  id: Scalars['ID']['output'];
86444
86477
  isArchived: Scalars['Boolean']['output'];
86478
+ isComplete: Scalars['Boolean']['output'];
86445
86479
  isMeeting?: Maybe<Scalars['Boolean']['output']>;
86446
86480
  meetingAri?: Maybe<Scalars['String']['output']>;
86447
86481
  name: Scalars['String']['output'];
@@ -87135,7 +87169,8 @@ export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
87135
87169
  };
87136
87170
  export declare enum MarketplaceConsoleCloudComplianceBoundary {
87137
87171
  Commercial = "COMMERCIAL",
87138
- FedrampModerate = "FEDRAMP_MODERATE"
87172
+ FedrampModerate = "FEDRAMP_MODERATE",
87173
+ IsolatedCloud = "ISOLATED_CLOUD"
87139
87174
  }
87140
87175
  export declare type MarketplaceConsoleConnectFrameworkAttributes = {
87141
87176
  __typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
@@ -88738,7 +88773,9 @@ export declare type MarketplaceStoreInstallAppInput = {
88738
88773
  export declare type MarketplaceStoreInstallAppResponse = {
88739
88774
  __typename?: 'MarketplaceStoreInstallAppResponse';
88740
88775
  id: Scalars['ID']['output'];
88776
+ orderId?: Maybe<Scalars['ID']['output']>;
88741
88777
  status: MarketplaceStoreInstallAppStatus;
88778
+ txaAccountId?: Maybe<Scalars['String']['output']>;
88742
88779
  };
88743
88780
  export declare enum MarketplaceStoreInstallAppStatus {
88744
88781
  InProgress = "IN_PROGRESS",
@@ -88755,7 +88792,8 @@ export declare type MarketplaceStoreInstallAppTargetInput = {
88755
88792
  export declare enum MarketplaceStoreInstallationTargetProduct {
88756
88793
  Compass = "COMPASS",
88757
88794
  Confluence = "CONFLUENCE",
88758
- Jira = "JIRA"
88795
+ Jira = "JIRA",
88796
+ Jsm = "JSM"
88759
88797
  }
88760
88798
  export declare type MarketplaceStoreInstalledAppDetailsResponse = {
88761
88799
  __typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
@@ -89116,6 +89154,8 @@ export declare type MarketplaceStoreQueryApiHostStatusArgs = {
89116
89154
  };
89117
89155
  export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
89118
89156
  id: Scalars['ID']['input'];
89157
+ orderId?: InputMaybe<Scalars['ID']['input']>;
89158
+ txaAccountId?: InputMaybe<Scalars['String']['input']>;
89119
89159
  };
89120
89160
  export declare type MarketplaceStoreQueryApiInstalledAppDetailsArgs = {
89121
89161
  input: MarketplaceStoreInstallAppInput;
@@ -92812,6 +92852,7 @@ export declare type Mutation = {
92812
92852
  goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
92813
92853
  goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
92814
92854
  goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
92855
+ goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
92815
92856
  goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
92816
92857
  goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
92817
92858
  goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
@@ -94543,6 +94584,9 @@ export declare type MutationGoals_CreateUpdateArgs = {
94543
94584
  export declare type MutationGoals_DeleteLatestUpdateArgs = {
94544
94585
  input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
94545
94586
  };
94587
+ export declare type MutationGoals_EditMetricArgs = {
94588
+ input: TownsquareGoalsEditMetricInput;
94589
+ };
94546
94590
  export declare type MutationGoals_EditUpdateArgs = {
94547
94591
  input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
94548
94592
  };
@@ -98619,13 +98663,6 @@ export declare enum PushNotificationSettingGroup {
98619
98663
  }
98620
98664
  export declare type Query = {
98621
98665
  __typename?: 'Query';
98622
- TeamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
98623
- TeamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
98624
- TeamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
98625
- TeamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
98626
- TeamworkGraph_userTopRecentReferencers?: Maybe<GraphStoreCypherQueryV2Connection>;
98627
- TeamworkGraph_userViewed?: Maybe<GraphStoreCypherQueryV2Connection>;
98628
- TeamworkGraph_userWorkMentioned?: Maybe<GraphStoreCypherQueryV2Connection>;
98629
98666
  abTestCohorts?: Maybe<Scalars['String']['output']>;
98630
98667
  actions?: Maybe<Actions>;
98631
98668
  activities?: Maybe<Activities>;
@@ -99410,6 +99447,13 @@ export declare type Query = {
99410
99447
  team?: Maybe<TeamQuery>;
99411
99448
  teamCalendarSettings?: Maybe<TeamCalendarSettings>;
99412
99449
  teamLabels?: Maybe<PaginatedLabelList>;
99450
+ teamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
99451
+ teamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
99452
+ teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
99453
+ teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
99454
+ teamworkGraph_userTopRecentReferencers?: Maybe<GraphStoreCypherQueryV2Connection>;
99455
+ teamworkGraph_userViewed?: Maybe<GraphStoreCypherQueryV2Connection>;
99456
+ teamworkGraph_userWorkMentioned?: Maybe<GraphStoreCypherQueryV2Connection>;
99413
99457
  template?: Maybe<ContentPlatformTemplate>;
99414
99458
  templateBodies?: Maybe<PaginatedTemplateBodyList>;
99415
99459
  templateCategories?: Maybe<PaginatedTemplateCategoryList>;
@@ -99457,34 +99501,6 @@ export declare type Query = {
99457
99501
  workSuggestions?: Maybe<WorkSuggestions>;
99458
99502
  xflow?: Maybe<Scalars['String']['output']>;
99459
99503
  };
99460
- export declare type QueryTeamworkGraph_UserCommentedArgs = {
99461
- after?: InputMaybe<Scalars['String']['input']>;
99462
- first?: InputMaybe<Scalars['Int']['input']>;
99463
- };
99464
- export declare type QueryTeamworkGraph_UserCreatedArgs = {
99465
- after?: InputMaybe<Scalars['String']['input']>;
99466
- first?: InputMaybe<Scalars['Int']['input']>;
99467
- };
99468
- export declare type QueryTeamworkGraph_UserTaggedInArgs = {
99469
- after?: InputMaybe<Scalars['String']['input']>;
99470
- first?: InputMaybe<Scalars['Int']['input']>;
99471
- };
99472
- export declare type QueryTeamworkGraph_UserTopRecentMentionersArgs = {
99473
- after?: InputMaybe<Scalars['String']['input']>;
99474
- first?: InputMaybe<Scalars['Int']['input']>;
99475
- };
99476
- export declare type QueryTeamworkGraph_UserTopRecentReferencersArgs = {
99477
- after?: InputMaybe<Scalars['String']['input']>;
99478
- first?: InputMaybe<Scalars['Int']['input']>;
99479
- };
99480
- export declare type QueryTeamworkGraph_UserViewedArgs = {
99481
- after?: InputMaybe<Scalars['String']['input']>;
99482
- first?: InputMaybe<Scalars['Int']['input']>;
99483
- };
99484
- export declare type QueryTeamworkGraph_UserWorkMentionedArgs = {
99485
- after?: InputMaybe<Scalars['String']['input']>;
99486
- first?: InputMaybe<Scalars['Int']['input']>;
99487
- };
99488
99504
  export declare type QueryAdminAnnouncementBannerSettingArgs = {
99489
99505
  id: Scalars['String']['input'];
99490
99506
  };
@@ -102724,6 +102740,34 @@ export declare type QueryTeamLabelsArgs = {
102724
102740
  first?: InputMaybe<Scalars['Int']['input']>;
102725
102741
  start?: InputMaybe<Scalars['Int']['input']>;
102726
102742
  };
102743
+ export declare type QueryTeamworkGraph_UserCommentedArgs = {
102744
+ after?: InputMaybe<Scalars['String']['input']>;
102745
+ first?: InputMaybe<Scalars['Int']['input']>;
102746
+ };
102747
+ export declare type QueryTeamworkGraph_UserCreatedArgs = {
102748
+ after?: InputMaybe<Scalars['String']['input']>;
102749
+ first?: InputMaybe<Scalars['Int']['input']>;
102750
+ };
102751
+ export declare type QueryTeamworkGraph_UserTaggedInArgs = {
102752
+ after?: InputMaybe<Scalars['String']['input']>;
102753
+ first?: InputMaybe<Scalars['Int']['input']>;
102754
+ };
102755
+ export declare type QueryTeamworkGraph_UserTopRecentMentionersArgs = {
102756
+ after?: InputMaybe<Scalars['String']['input']>;
102757
+ first?: InputMaybe<Scalars['Int']['input']>;
102758
+ };
102759
+ export declare type QueryTeamworkGraph_UserTopRecentReferencersArgs = {
102760
+ after?: InputMaybe<Scalars['String']['input']>;
102761
+ first?: InputMaybe<Scalars['Int']['input']>;
102762
+ };
102763
+ export declare type QueryTeamworkGraph_UserViewedArgs = {
102764
+ after?: InputMaybe<Scalars['String']['input']>;
102765
+ first?: InputMaybe<Scalars['Int']['input']>;
102766
+ };
102767
+ export declare type QueryTeamworkGraph_UserWorkMentionedArgs = {
102768
+ after?: InputMaybe<Scalars['String']['input']>;
102769
+ first?: InputMaybe<Scalars['Int']['input']>;
102770
+ };
102727
102771
  export declare type QueryTemplateArgs = {
102728
102772
  id: Scalars['String']['input'];
102729
102773
  locale?: InputMaybe<Scalars['String']['input']>;
@@ -126164,7 +126208,10 @@ export declare type SpaceRoleEdge = {
126164
126208
  export declare type SpaceRoleGroupPrincipal = SpaceRolePrincipal & {
126165
126209
  __typename?: 'SpaceRoleGroupPrincipal';
126166
126210
  displayName: Scalars['String']['output'];
126211
+ managedBy?: Maybe<ConfluenceGroupManagementType>;
126167
126212
  principalId: Scalars['ID']['output'];
126213
+ resourceAri?: Maybe<Scalars['ID']['output']>;
126214
+ team?: Maybe<TeamV2>;
126168
126215
  usageType?: Maybe<ConfluenceGroupUsageType>;
126169
126216
  };
126170
126217
  export declare type SpaceRoleGuestPrincipal = SpaceRolePrincipal & {
@@ -130009,6 +130056,20 @@ export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
130009
130056
  success: Scalars['Boolean']['output'];
130010
130057
  updateId?: Maybe<Scalars['ID']['output']>;
130011
130058
  };
130059
+ export declare type TownsquareGoalsEditMetricInput = {
130060
+ externalEntityId?: InputMaybe<Scalars['String']['input']>;
130061
+ metricId: Scalars['ID']['input'];
130062
+ name?: InputMaybe<Scalars['String']['input']>;
130063
+ source?: InputMaybe<Scalars['String']['input']>;
130064
+ subType?: InputMaybe<Scalars['String']['input']>;
130065
+ value?: InputMaybe<Scalars['Float']['input']>;
130066
+ };
130067
+ export declare type TownsquareGoalsEditMetricPayload = {
130068
+ __typename?: 'TownsquareGoalsEditMetricPayload';
130069
+ errors?: Maybe<Array<MutationError>>;
130070
+ metric?: Maybe<TownsquareMetric>;
130071
+ success: Scalars['Boolean']['output'];
130072
+ };
130012
130073
  export declare type TownsquareGoalsEditUpdateInput = {
130013
130074
  goalUpdateId: Scalars['ID']['input'];
130014
130075
  score?: InputMaybe<Scalars['Int']['input']>;