@forge/cli-shared 8.11.0-next.3 → 8.11.0

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,29 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9986bf3: Bug fix for egress diffs
8
+ - d6892c9: Add --json option to display containers/services information in json
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies [29741cf]
13
+ - Updated dependencies [0c31fcd]
14
+ - Updated dependencies [0c31fcd]
15
+ - Updated dependencies [354f5d1]
16
+ - Updated dependencies [09bdcf1]
17
+ - @forge/manifest@11.2.0
18
+
19
+ ## 8.11.0-next.4
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [0c31fcd]
24
+ - Updated dependencies [0c31fcd]
25
+ - @forge/manifest@11.2.0-next.2
26
+
3
27
  ## 8.11.0-next.3
4
28
 
5
29
  ### Patch Changes
@@ -25524,7 +25524,6 @@ export declare type CustomerServiceCustomDetail = Node & {
25524
25524
  config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
25525
25525
  editPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
25526
25526
  id: Scalars['ID']['output'];
25527
- isDefaultField?: Maybe<Scalars['Boolean']['output']>;
25528
25527
  name: Scalars['String']['output'];
25529
25528
  readPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
25530
25529
  type: CustomerServiceCustomDetailType;
@@ -73682,6 +73681,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
73682
73681
  contextPanels?: Maybe<JiraIssueContextPanelConnection>;
73683
73682
  coverMedia?: Maybe<JiraWorkManagementBackground>;
73684
73683
  createdField?: Maybe<JiraDateTimePickerField>;
73684
+ delegator?: Maybe<User>;
73685
73685
  deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
73686
73686
  deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
73687
73687
  descriptionField?: Maybe<JiraRichTextField>;
@@ -92661,6 +92661,77 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
92661
92661
  logicalFileName: Scalars['String']['output'];
92662
92662
  size: Scalars['Int']['output'];
92663
92663
  };
92664
+ export declare enum MarketplaceConsoleBankAccountType {
92665
+ Cacc = "CACC",
92666
+ Moma = "MOMA",
92667
+ Other = "OTHER",
92668
+ Svgs = "SVGS"
92669
+ }
92670
+ export declare type MarketplaceConsoleBankDetails = {
92671
+ __typename?: 'MarketplaceConsoleBankDetails';
92672
+ accountName: Scalars['String']['output'];
92673
+ accountNumber: Scalars['String']['output'];
92674
+ bankAccountType?: Maybe<MarketplaceConsoleBankAccountType>;
92675
+ bankAddress?: Maybe<Scalars['String']['output']>;
92676
+ bankCity: Scalars['String']['output'];
92677
+ bankCountryCode: Scalars['String']['output'];
92678
+ bankName: Scalars['String']['output'];
92679
+ bankPostCode?: Maybe<Scalars['String']['output']>;
92680
+ bankState?: Maybe<Scalars['String']['output']>;
92681
+ intermediaryBankId?: Maybe<Scalars['String']['output']>;
92682
+ intermediaryBankName?: Maybe<Scalars['String']['output']>;
92683
+ localBankId?: Maybe<Scalars['String']['output']>;
92684
+ routingNumber?: Maybe<Scalars['String']['output']>;
92685
+ specialHandlingNotes?: Maybe<Scalars['String']['output']>;
92686
+ swiftCode?: Maybe<Scalars['String']['output']>;
92687
+ };
92688
+ export declare type MarketplaceConsoleBankDetailsInput = {
92689
+ accountName: Scalars['String']['input'];
92690
+ accountNumber: Scalars['String']['input'];
92691
+ bankAccountType?: InputMaybe<MarketplaceConsoleBankAccountType>;
92692
+ bankAddress?: InputMaybe<Scalars['String']['input']>;
92693
+ bankCity: Scalars['String']['input'];
92694
+ bankCountry: Scalars['String']['input'];
92695
+ bankName: Scalars['String']['input'];
92696
+ bankPostCode?: InputMaybe<Scalars['String']['input']>;
92697
+ bankState?: InputMaybe<Scalars['String']['input']>;
92698
+ intermediaryBankId?: InputMaybe<Scalars['String']['input']>;
92699
+ intermediaryBankName?: InputMaybe<Scalars['String']['input']>;
92700
+ localBankId?: InputMaybe<Scalars['String']['input']>;
92701
+ routingNumber?: InputMaybe<Scalars['String']['input']>;
92702
+ specialHandlingNotes?: InputMaybe<Scalars['String']['input']>;
92703
+ swiftCode?: InputMaybe<Scalars['String']['input']>;
92704
+ };
92705
+ export declare type MarketplaceConsoleBillingAddress = {
92706
+ __typename?: 'MarketplaceConsoleBillingAddress';
92707
+ city: Scalars['String']['output'];
92708
+ country: Scalars['String']['output'];
92709
+ line1: Scalars['String']['output'];
92710
+ line2?: Maybe<Scalars['String']['output']>;
92711
+ postcode: Scalars['String']['output'];
92712
+ state: Scalars['String']['output'];
92713
+ };
92714
+ export declare type MarketplaceConsoleBillingAddressInput = {
92715
+ city: Scalars['String']['input'];
92716
+ country: Scalars['String']['input'];
92717
+ line1: Scalars['String']['input'];
92718
+ line2?: InputMaybe<Scalars['String']['input']>;
92719
+ postcode: Scalars['String']['input'];
92720
+ state: Scalars['String']['input'];
92721
+ };
92722
+ export declare type MarketplaceConsoleBillingContact = {
92723
+ __typename?: 'MarketplaceConsoleBillingContact';
92724
+ emailId: Scalars['String']['output'];
92725
+ firstName: Scalars['String']['output'];
92726
+ lastName: Scalars['String']['output'];
92727
+ phoneNumber: Scalars['String']['output'];
92728
+ };
92729
+ export declare type MarketplaceConsoleBillingContactInput = {
92730
+ emailId: Scalars['String']['input'];
92731
+ firstName: Scalars['String']['input'];
92732
+ lastName: Scalars['String']['input'];
92733
+ phoneNumber: Scalars['String']['input'];
92734
+ };
92664
92735
  export declare type MarketplaceConsoleBulkProductMigration = {
92665
92736
  __typename?: 'MarketplaceConsoleBulkProductMigration';
92666
92737
  products: Array<Maybe<MarketplaceConsoleProductMigration>>;
@@ -92829,8 +92900,8 @@ export declare type MarketplaceConsoleDevSpaceSupportAvailability = {
92829
92900
  timezone: Scalars['String']['output'];
92830
92901
  };
92831
92902
  export declare type MarketplaceConsoleDevSpaceSupportAvailabilityInput = {
92832
- availableFrom: Scalars['String']['input'];
92833
- availableTo: Scalars['String']['input'];
92903
+ availableFrom?: InputMaybe<Scalars['String']['input']>;
92904
+ availableTo?: InputMaybe<Scalars['String']['input']>;
92834
92905
  days?: InputMaybe<Array<Scalars['String']['input']>>;
92835
92906
  holidays?: InputMaybe<Array<MarketplaceConsoleDevSpaceSupportContactHolidayInput>>;
92836
92907
  timezone: Scalars['String']['input'];
@@ -93296,6 +93367,20 @@ export declare type MarketplaceConsoleMakerContactsResponse = {
93296
93367
  count: Scalars['Int']['output'];
93297
93368
  makerContacts: Array<Maybe<MarketplaceConsoleMakerContact>>;
93298
93369
  };
93370
+ export declare type MarketplaceConsoleMakerPayment = {
93371
+ __typename?: 'MarketplaceConsoleMakerPayment';
93372
+ bankDetails: MarketplaceConsoleBankDetails;
93373
+ billingAddress: MarketplaceConsoleBillingAddress;
93374
+ billingContact: MarketplaceConsoleBillingContact;
93375
+ tax: MarketplaceConsoleTax;
93376
+ version?: Maybe<Scalars['Int']['output']>;
93377
+ };
93378
+ export declare type MarketplaceConsoleMakerPaymentInput = {
93379
+ bankDetails: MarketplaceConsoleBankDetailsInput;
93380
+ billingAddress: MarketplaceConsoleBillingAddressInput;
93381
+ billingContact: MarketplaceConsoleBillingContactInput;
93382
+ tax: MarketplaceConsoleTaxInput;
93383
+ };
93299
93384
  export declare type MarketplaceConsoleMakerResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
93300
93385
  export declare type MarketplaceConsoleMutationApi = {
93301
93386
  __typename?: 'MarketplaceConsoleMutationApi';
@@ -93315,7 +93400,10 @@ export declare type MarketplaceConsoleMutationApi = {
93315
93400
  makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
93316
93401
  patchProductMigration?: Maybe<MarketplaceConsoleProductMigrationResponse>;
93317
93402
  updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
93403
+ updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
93318
93404
  updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
93405
+ upsertMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerResponse>;
93406
+ upsertProgramEnrollment?: Maybe<MarketplaceConsoleMakerResponse>;
93319
93407
  validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
93320
93408
  };
93321
93409
  export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
@@ -93373,9 +93461,18 @@ export declare type MarketplaceConsoleMutationApiPatchProductMigrationArgs = {
93373
93461
  export declare type MarketplaceConsoleMutationApiUpdateAppDetailsArgs = {
93374
93462
  updateAppDetailsRequest: MarketplaceConsoleUpdateAppDetailsRequest;
93375
93463
  };
93464
+ export declare type MarketplaceConsoleMutationApiUpdateMakerAccountAndMakerListingArgs = {
93465
+ input: MarketplaceConsoleUpdateMakerListingInput;
93466
+ };
93376
93467
  export declare type MarketplaceConsoleMutationApiUpdateMakerContactArgs = {
93377
93468
  input: MarketplaceConsoleMakerContactUpdateInput;
93378
93469
  };
93470
+ export declare type MarketplaceConsoleMutationApiUpsertMakerPaymentDetailsArgs = {
93471
+ input: MarketplaceConsoleUpsertMakerPaymentInput;
93472
+ };
93473
+ export declare type MarketplaceConsoleMutationApiUpsertProgramEnrollmentArgs = {
93474
+ input: MarketplaceConsoleUpsertProgramEnrollmentInput;
93475
+ };
93379
93476
  export declare type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
93380
93477
  url: Scalars['String']['input'];
93381
93478
  };
@@ -93482,6 +93579,11 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
93482
93579
  isSiteAdmin: Scalars['Boolean']['output'];
93483
93580
  partnerId: Scalars['ID']['output'];
93484
93581
  };
93582
+ export declare enum MarketplaceConsolePartnerTier {
93583
+ Gold = "gold",
93584
+ Platinum = "platinum",
93585
+ Silver = "silver"
93586
+ }
93485
93587
  export declare enum MarketplaceConsolePaymentModel {
93486
93588
  Free = "FREE",
93487
93589
  PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
@@ -93645,6 +93747,13 @@ export declare type MarketplaceConsoleProductTags = {
93645
93747
  keywords: Array<MarketplaceConsoleProductTag>;
93646
93748
  marketing: Array<MarketplaceConsoleProductTag>;
93647
93749
  };
93750
+ export declare type MarketplaceConsoleProgramInput = {
93751
+ baseUri?: InputMaybe<Scalars['String']['input']>;
93752
+ partnerTier?: InputMaybe<MarketplaceConsolePartnerTier>;
93753
+ program: MarketplaceConsoleDevSpaceProgram;
93754
+ programId?: InputMaybe<Scalars['ID']['input']>;
93755
+ solutionPartnerBenefit?: InputMaybe<Scalars['Boolean']['input']>;
93756
+ };
93648
93757
  export declare type MarketplaceConsoleQueryApi = {
93649
93758
  __typename?: 'MarketplaceConsoleQueryApi';
93650
93759
  appPrivateListings?: Maybe<MarketplaceConsolePrivateListingsTokens>;
@@ -93665,6 +93774,7 @@ export declare type MarketplaceConsoleQueryApi = {
93665
93774
  editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
93666
93775
  getBulkProductMigration?: Maybe<MarketplaceConsoleBulkProductMigrationResponse>;
93667
93776
  getMakerContacts?: Maybe<MarketplaceConsoleMakerContactsQueryResponse>;
93777
+ getMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerPayment>;
93668
93778
  makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
93669
93779
  offerings?: Maybe<Array<Maybe<MarketplaceConsoleOffering>>>;
93670
93780
  parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
@@ -93731,6 +93841,9 @@ export declare type MarketplaceConsoleQueryApiGetMakerContactsArgs = {
93731
93841
  offset?: InputMaybe<Scalars['Int']['input']>;
93732
93842
  partnerId: Scalars['ID']['input'];
93733
93843
  };
93844
+ export declare type MarketplaceConsoleQueryApiGetMakerPaymentDetailsArgs = {
93845
+ developerId: Scalars['ID']['input'];
93846
+ };
93734
93847
  export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
93735
93848
  appId: Scalars['ID']['input'];
93736
93849
  buildNumber: Scalars['ID']['input'];
@@ -93792,6 +93905,17 @@ export declare type MarketplaceConsoleTagsContent = {
93792
93905
  id: Scalars['ID']['output'];
93793
93906
  name: Scalars['String']['output'];
93794
93907
  };
93908
+ export declare type MarketplaceConsoleTax = {
93909
+ __typename?: 'MarketplaceConsoleTax';
93910
+ id: Scalars['String']['output'];
93911
+ isGSTRegistered?: Maybe<Scalars['Boolean']['output']>;
93912
+ name: Scalars['String']['output'];
93913
+ };
93914
+ export declare type MarketplaceConsoleTaxInput = {
93915
+ id: Scalars['String']['input'];
93916
+ isGSTRegistered?: InputMaybe<Scalars['Boolean']['input']>;
93917
+ name?: InputMaybe<Scalars['String']['input']>;
93918
+ };
93795
93919
  export declare type MarketplaceConsoleTokenDetails = {
93796
93920
  __typename?: 'MarketplaceConsoleTokenDetails';
93797
93921
  cloudId?: Maybe<Scalars['String']['output']>;
@@ -93845,6 +93969,19 @@ export declare type MarketplaceConsoleUpdateAppDetailsRequestKnownError = {
93845
93969
  errors?: Maybe<Array<Maybe<MarketplaceConsoleUpdateAppDetailsRequestError>>>;
93846
93970
  };
93847
93971
  export declare type MarketplaceConsoleUpdateAppDetailsResponse = MarketplaceConsoleMutationVoidResponse | MarketplaceConsoleUpdateAppDetailsRequestKnownError;
93972
+ export declare type MarketplaceConsoleUpdateMakerListingInput = {
93973
+ developerId: Scalars['String']['input'];
93974
+ developerSpaceListing: MarketplaceConsoleDevSpaceListingInput;
93975
+ makerName: Scalars['String']['input'];
93976
+ };
93977
+ export declare type MarketplaceConsoleUpsertMakerPaymentInput = {
93978
+ developerId: Scalars['ID']['input'];
93979
+ paymentDetails: MarketplaceConsoleMakerPaymentInput;
93980
+ };
93981
+ export declare type MarketplaceConsoleUpsertProgramEnrollmentInput = {
93982
+ developerId: Scalars['String']['input'];
93983
+ programEnrollments: Array<MarketplaceConsoleProgramInput>;
93984
+ };
93848
93985
  export declare type MarketplaceConsoleUser = {
93849
93986
  __typename?: 'MarketplaceConsoleUser';
93850
93987
  atlassianAccountId: Scalars['ID']['output'];
@@ -99380,6 +99517,7 @@ export declare type Mutation = {
99380
99517
  goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
99381
99518
  goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
99382
99519
  goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
99520
+ goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
99383
99521
  goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
99384
99522
  goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
99385
99523
  goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
@@ -101347,6 +101485,9 @@ export declare type MutationGoals_RemoveMetricTargetArgs = {
101347
101485
  export declare type MutationGoals_RevokeAccessArgs = {
101348
101486
  input: TownsquareGoalRevokeAccessInput;
101349
101487
  };
101488
+ export declare type MutationGoals_SetRollupProgressArgs = {
101489
+ input: TownsquareGoalsSetRollupProgressInput;
101490
+ };
101350
101491
  export declare type MutationGoals_SetUserWatchingTeamArgs = {
101351
101492
  input: TownsquareGoalsSetUserWatchingTeamInput;
101352
101493
  };
@@ -136672,6 +136813,7 @@ export declare type TeamMutation = {
136672
136813
  bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
136673
136814
  createTeam?: Maybe<TeamCreateTeamPayload>;
136674
136815
  createTeamType?: Maybe<TeamType>;
136816
+ deleteTeamType?: Maybe<TeamType>;
136675
136817
  removeChild?: Maybe<TeamV2>;
136676
136818
  removeParent?: Maybe<TeamV2>;
136677
136819
  updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
@@ -136703,6 +136845,9 @@ export declare type TeamMutationCreateTeamTypeArgs = {
136703
136845
  scopeId: Scalars['ID']['input'];
136704
136846
  typeData: TeamTypeCreationPayload;
136705
136847
  };
136848
+ export declare type TeamMutationDeleteTeamTypeArgs = {
136849
+ id: Scalars['ID']['input'];
136850
+ };
136706
136851
  export declare type TeamMutationRemoveChildArgs = {
136707
136852
  childId: Scalars['ID']['input'];
136708
136853
  siteId: Scalars['ID']['input'];
@@ -137520,6 +137665,7 @@ export declare enum TownsquareAccessControlCapability {
137520
137665
  Administer = "ADMINISTER",
137521
137666
  Create = "CREATE"
137522
137667
  }
137668
+ export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
137523
137669
  export declare type TownsquareAddProjectLinkInput = {
137524
137670
  goalId: Scalars['ID']['input'];
137525
137671
  projectId: Scalars['ID']['input'];
@@ -137832,6 +137978,7 @@ export declare type TownsquareFusionDetails = {
137832
137978
  };
137833
137979
  export declare type TownsquareGoal = Node & {
137834
137980
  __typename?: 'TownsquareGoal';
137981
+ access?: Maybe<TownsquareGoalAccessConnection>;
137835
137982
  archived: Scalars['Boolean']['output'];
137836
137983
  canEditMembers?: Maybe<Scalars['Boolean']['output']>;
137837
137984
  canEditUpdate?: Maybe<Scalars['Boolean']['output']>;
@@ -137879,6 +138026,10 @@ export declare type TownsquareGoal = Node & {
137879
138026
  watchers?: Maybe<TownsquareUserConnection>;
137880
138027
  workItems?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
137881
138028
  };
138029
+ export declare type TownsquareGoalAccessArgs = {
138030
+ after?: InputMaybe<Scalars['String']['input']>;
138031
+ first?: InputMaybe<Scalars['Int']['input']>;
138032
+ };
137882
138033
  export declare type TownsquareGoalCommentsArgs = {
137883
138034
  after?: InputMaybe<Scalars['String']['input']>;
137884
138035
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -137967,6 +138118,25 @@ export declare type TownsquareGoalWorkItemsArgs = {
137967
138118
  after?: InputMaybe<Scalars['String']['input']>;
137968
138119
  first?: InputMaybe<Scalars['Int']['input']>;
137969
138120
  };
138121
+ export declare type TownsquareGoalAccessConnection = {
138122
+ __typename?: 'TownsquareGoalAccessConnection';
138123
+ count: Scalars['Int']['output'];
138124
+ edges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
138125
+ pageInfo: PageInfo;
138126
+ };
138127
+ export declare type TownsquareGoalAccessEdge = {
138128
+ __typename?: 'TownsquareGoalAccessEdge';
138129
+ cursor: Scalars['String']['output'];
138130
+ isFollower?: Maybe<Scalars['Boolean']['output']>;
138131
+ isOwner?: Maybe<Scalars['Boolean']['output']>;
138132
+ node?: Maybe<TownsquareAccessPrincipal>;
138133
+ principalAri?: Maybe<Scalars['String']['output']>;
138134
+ role?: Maybe<TownsquareGoalAccessRole>;
138135
+ };
138136
+ export declare enum TownsquareGoalAccessRole {
138137
+ Editor = "EDITOR",
138138
+ Viewer = "VIEWER"
138139
+ }
137970
138140
  export declare enum TownsquareGoalAccessRoleInput {
137971
138141
  Editor = "EDITOR",
137972
138142
  Viewer = "VIEWER"
@@ -138053,6 +138223,26 @@ export declare enum TownsquareGoalIconKey {
138053
138223
  KeyResult = "KEY_RESULT",
138054
138224
  Objective = "OBJECTIVE"
138055
138225
  }
138226
+ export declare type TownsquareGoalMetricUpdate = {
138227
+ __typename?: 'TownsquareGoalMetricUpdate';
138228
+ metric?: Maybe<TownsquareMetric>;
138229
+ newStartValue?: Maybe<Scalars['Float']['output']>;
138230
+ newTargetValue?: Maybe<Scalars['Float']['output']>;
138231
+ newValue?: Maybe<TownsquareMetricValue>;
138232
+ oldStartValue?: Maybe<Scalars['Float']['output']>;
138233
+ oldTargetValue?: Maybe<Scalars['Float']['output']>;
138234
+ oldValue?: Maybe<TownsquareMetricValue>;
138235
+ };
138236
+ export declare type TownsquareGoalMetricUpdateConnection = {
138237
+ __typename?: 'TownsquareGoalMetricUpdateConnection';
138238
+ edges?: Maybe<Array<Maybe<TownsquareGoalMetricUpdateEdge>>>;
138239
+ pageInfo: PageInfo;
138240
+ };
138241
+ export declare type TownsquareGoalMetricUpdateEdge = {
138242
+ __typename?: 'TownsquareGoalMetricUpdateEdge';
138243
+ cursor: Scalars['String']['output'];
138244
+ node?: Maybe<TownsquareGoalMetricUpdate>;
138245
+ };
138056
138246
  export declare type TownsquareGoalProgress = {
138057
138247
  __typename?: 'TownsquareGoalProgress';
138058
138248
  percentage?: Maybe<Scalars['Float']['output']>;
@@ -138200,6 +138390,7 @@ export declare type TownsquareGoalUpdate = Node & {
138200
138390
  highlights?: Maybe<TownsquareHighlightConnection>;
138201
138391
  id: Scalars['ID']['output'];
138202
138392
  lastEditedBy?: Maybe<User>;
138393
+ metricUpdate?: Maybe<TownsquareGoalMetricUpdateConnection>;
138203
138394
  missedUpdate: Scalars['Boolean']['output'];
138204
138395
  newDueDate?: Maybe<TownsquareTargetDate>;
138205
138396
  newScore: Scalars['Int']['output'];
@@ -138225,6 +138416,10 @@ export declare type TownsquareGoalUpdateHighlightsArgs = {
138225
138416
  after?: InputMaybe<Scalars['String']['input']>;
138226
138417
  first?: InputMaybe<Scalars['Int']['input']>;
138227
138418
  };
138419
+ export declare type TownsquareGoalUpdateMetricUpdateArgs = {
138420
+ after?: InputMaybe<Scalars['String']['input']>;
138421
+ first?: InputMaybe<Scalars['Int']['input']>;
138422
+ };
138228
138423
  export declare type TownsquareGoalUpdateUpdateNotesArgs = {
138229
138424
  after?: InputMaybe<Scalars['String']['input']>;
138230
138425
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -138530,6 +138725,16 @@ export declare type TownsquareGoalsRemoveMetricTargetPayload = {
138530
138725
  goal?: Maybe<TownsquareGoal>;
138531
138726
  success: Scalars['Boolean']['output'];
138532
138727
  };
138728
+ export declare type TownsquareGoalsSetRollupProgressInput = {
138729
+ enableRollupProgress: Scalars['Boolean']['input'];
138730
+ goalId: Scalars['ID']['input'];
138731
+ };
138732
+ export declare type TownsquareGoalsSetRollupProgressPayload = {
138733
+ __typename?: 'TownsquareGoalsSetRollupProgressPayload';
138734
+ errors?: Maybe<Array<MutationError>>;
138735
+ goal?: Maybe<TownsquareGoal>;
138736
+ success: Scalars['Boolean']['output'];
138737
+ };
138533
138738
  export declare type TownsquareGoalsSetUserWatchingTeamInput = {
138534
138739
  containerId: Scalars['ID']['input'];
138535
138740
  isWatching: Scalars['Boolean']['input'];
@@ -139973,6 +140178,7 @@ export declare type TownsquareUpdateNote = {
139973
140178
  creationDate?: Maybe<Scalars['DateTime']['output']>;
139974
140179
  creator?: Maybe<User>;
139975
140180
  description?: Maybe<Scalars['String']['output']>;
140181
+ id: Scalars['ID']['output'];
139976
140182
  index?: Maybe<Scalars['Int']['output']>;
139977
140183
  summary?: Maybe<Scalars['String']['output']>;
139978
140184
  };
@@ -139990,6 +140196,7 @@ export declare type TownsquareUpdateNoteInput = {
139990
140196
  archived?: InputMaybe<Scalars['Boolean']['input']>;
139991
140197
  description: Scalars['String']['input'];
139992
140198
  summary?: InputMaybe<Scalars['String']['input']>;
140199
+ updateNoteId?: InputMaybe<Scalars['ID']['input']>;
139993
140200
  uuid?: InputMaybe<Scalars['String']['input']>;
139994
140201
  };
139995
140202
  export declare enum TownsquareUpdateType {