@forge/cli-shared 8.9.1-next.7 → 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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.9.1-next.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 0c4a82e:
8
+
3
9
  ## 8.9.1-next.7
4
10
 
5
11
  ### 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 = {
@@ -101649,6 +101753,7 @@ export declare type Query = {
101649
101753
  adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
101650
101754
  admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
101651
101755
  admin_appModules?: Maybe<AdminAppModuleConnection>;
101756
+ admin_auditAuditLogEvents?: Maybe<AdminAuditLogEventConnection>;
101652
101757
  admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
101653
101758
  admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
101654
101759
  admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
@@ -102559,6 +102664,14 @@ export declare type QueryAdmin_AppModulesArgs = {
102559
102664
  last?: InputMaybe<Scalars['Int']['input']>;
102560
102665
  moduleKeys: Array<Scalars['String']['input']>;
102561
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
+ };
102562
102675
  export declare type QueryAdmin_CheckLicensesCapacityArgs = {
102563
102676
  input: AdminLicenseInput;
102564
102677
  orgId: Scalars['ID']['input'];
@@ -133949,6 +134062,7 @@ export declare type TownsquareGoalsEditRiskPayload = {
133949
134062
  };
133950
134063
  export declare type TownsquareGoalsEditUpdateInput = {
133951
134064
  goalUpdateId: Scalars['ID']['input'];
134065
+ highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
133952
134066
  metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateEditInput>>>;
133953
134067
  score?: InputMaybe<Scalars['Int']['input']>;
133954
134068
  status?: InputMaybe<Scalars['String']['input']>;