@forge/cli-shared 8.8.2-next.0 → 8.8.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.8.2-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [9a6d346]
8
+ - @forge/manifest@11.0.0-next.1
9
+
10
+ ## 8.8.2-next.1
11
+
12
+ ### Patch Changes
13
+
14
+ - aaf8a03: forge tunnel with containers: delete auto generated docker compose files upon failing to startup
15
+
3
16
  ## 8.8.2-next.0
4
17
 
5
18
  ### Patch Changes
@@ -1606,6 +1606,10 @@ export declare type AdminCcpOffering = {
1606
1606
  productKey?: Maybe<Scalars['ID']['output']>;
1607
1607
  productListing?: Maybe<AdminProductListingResult>;
1608
1608
  };
1609
+ export declare type AdminCheckLicensesCapacity = {
1610
+ __typename?: 'AdminCheckLicensesCapacity';
1611
+ limitExceeded: Scalars['Boolean']['output'];
1612
+ };
1609
1613
  export declare type AdminCommerceEntitlementRelationship = {
1610
1614
  __typename?: 'AdminCommerceEntitlementRelationship';
1611
1615
  entitlementId?: Maybe<Scalars['ID']['output']>;
@@ -1952,6 +1956,27 @@ export declare type AdminIpAllowlistingFeature = {
1952
1956
  __typename?: 'AdminIpAllowlistingFeature';
1953
1957
  ip?: Maybe<Scalars['String']['output']>;
1954
1958
  };
1959
+ export declare type AdminLicenseData = {
1960
+ __typename?: 'AdminLicenseData';
1961
+ capacity: Scalars['Int']['output'];
1962
+ limitExceeded: Scalars['Boolean']['output'];
1963
+ resourceId: Scalars['ID']['output'];
1964
+ usage: Scalars['Int']['output'];
1965
+ };
1966
+ export declare type AdminLicenseDataConnection = {
1967
+ __typename?: 'AdminLicenseDataConnection';
1968
+ edges?: Maybe<Array<AdminLicenseDataEdge>>;
1969
+ pageInfo: PageInfo;
1970
+ };
1971
+ export declare type AdminLicenseDataEdge = {
1972
+ __typename?: 'AdminLicenseDataEdge';
1973
+ cursor: Scalars['String']['output'];
1974
+ node: AdminLicenseData;
1975
+ };
1976
+ export declare type AdminLicenseInput = {
1977
+ groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
1978
+ resourceIds?: InputMaybe<Array<Scalars['String']['input']>>;
1979
+ };
1955
1980
  export declare type AdminLimit = {
1956
1981
  __typename?: 'AdminLimit';
1957
1982
  limit?: Maybe<Scalars['Int']['output']>;
@@ -4687,6 +4712,17 @@ export declare type AquaIssueContext = {
4687
4712
  issue?: Maybe<JiraIssue>;
4688
4713
  issueARI?: Maybe<Scalars['ID']['output']>;
4689
4714
  };
4715
+ export declare type AquaLiveChatSubscription = {
4716
+ __typename?: 'AquaLiveChatSubscription';
4717
+ updateConversation?: Maybe<AquaLiveChatSubscriptionResponse>;
4718
+ };
4719
+ export declare type AquaLiveChatSubscriptionUpdateConversationArgs = {
4720
+ conversationId: Scalars['ID']['input'];
4721
+ };
4722
+ export declare type AquaLiveChatSubscriptionResponse = {
4723
+ __typename?: 'AquaLiveChatSubscriptionResponse';
4724
+ result?: Maybe<Scalars['String']['output']>;
4725
+ };
4690
4726
  export declare type AquaNotificationDetails = {
4691
4727
  __typename?: 'AquaNotificationDetails';
4692
4728
  actionTaken?: Maybe<Scalars['String']['output']>;
@@ -5573,6 +5609,22 @@ export declare type AssetsDmObjectClassMetadata = {
5573
5609
  tenantId: Scalars['ID']['output'];
5574
5610
  uniqueRecordsCount?: Maybe<Scalars['Int']['output']>;
5575
5611
  };
5612
+ export declare type AssetsDmObjectDetail = {
5613
+ __typename?: 'AssetsDMObjectDetail';
5614
+ lastSnapshotDate?: Maybe<Scalars['String']['output']>;
5615
+ name: Scalars['String']['output'];
5616
+ objectDataSourceColumnNames: Array<Scalars['JSON']['output']>;
5617
+ objectDataSources: Array<Scalars['JSON']['output']>;
5618
+ pkColumnName: Scalars['String']['output'];
5619
+ preferredAttributes: Array<Scalars['JSON']['output']>;
5620
+ unverifiedAttributesCount: Scalars['Int']['output'];
5621
+ };
5622
+ export declare type AssetsDmObjectHistory = {
5623
+ __typename?: 'AssetsDMObjectHistory';
5624
+ dataSourceColumnNames: Array<Scalars['String']['output']>;
5625
+ pageInfo: AssetsDmPaginationInfo;
5626
+ snapshots: Array<Scalars['JSON']['output']>;
5627
+ };
5576
5628
  export declare type AssetsDmObjectSchema = {
5577
5629
  __typename?: 'AssetsDMObjectSchema';
5578
5630
  id: Scalars['ID']['output'];
@@ -59395,6 +59447,7 @@ export declare type GrowthUnifiedProfileProductDetails = {
59395
59447
  d0Eligible?: Maybe<Scalars['Boolean']['output']>;
59396
59448
  d1to6Active?: Maybe<Scalars['Boolean']['output']>;
59397
59449
  d1to6Eligible?: Maybe<Scalars['Boolean']['output']>;
59450
+ everActive?: Maybe<Scalars['Boolean']['output']>;
59398
59451
  firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
59399
59452
  isTrial?: Maybe<Scalars['Boolean']['output']>;
59400
59453
  nbeRecommendation?: Maybe<GrowthUnifiedProfileProductNbe>;
@@ -68124,6 +68177,7 @@ export declare enum JiraFieldConfigOrderBy {
68124
68177
  Description = "DESCRIPTION",
68125
68178
  FieldType = "FIELD_TYPE",
68126
68179
  Id = "ID",
68180
+ IsGlobal = "IS_GLOBAL",
68127
68181
  LastUsed = "LAST_USED",
68128
68182
  Name = "NAME",
68129
68183
  PlannedDeleteDate = "PLANNED_DELETE_DATE",
@@ -68531,6 +68585,17 @@ export declare type JiraFilterNameMutationErrorExtension = MutationErrorExtensio
68531
68585
  statusCode?: Maybe<Scalars['Int']['output']>;
68532
68586
  };
68533
68587
  export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
68588
+ export declare enum JiraFilterSearchMode {
68589
+ Advanced = "ADVANCED",
68590
+ Basic = "BASIC",
68591
+ Jql = "JQL"
68592
+ }
68593
+ export declare type JiraFilterSearchModeMutationPayload = Payload & {
68594
+ __typename?: 'JiraFilterSearchModeMutationPayload';
68595
+ errors?: Maybe<Array<MutationError>>;
68596
+ filterSearchMode?: Maybe<JiraFilterSearchMode>;
68597
+ success: Scalars['Boolean']['output'];
68598
+ };
68534
68599
  export declare type JiraFilterShareGrantMutationErrorExtension = MutationErrorExtension & {
68535
68600
  __typename?: 'JiraFilterShareGrantMutationErrorExtension';
68536
68601
  errorType?: Maybe<Scalars['String']['output']>;
@@ -71058,6 +71123,10 @@ export declare enum JiraIssueModuleType {
71058
71123
  IssueModule = "ISSUE_MODULE",
71059
71124
  WebPanel = "WEB_PANEL"
71060
71125
  }
71126
+ export declare type JiraIssueMutatedStreamHubPayload = {
71127
+ __typename?: 'JiraIssueMutatedStreamHubPayload';
71128
+ resource?: Maybe<Scalars['ID']['output']>;
71129
+ };
71061
71130
  export declare type JiraIssueNavigatorJqlHistoryDeletePayload = Payload & {
71062
71131
  __typename?: 'JiraIssueNavigatorJQLHistoryDeletePayload';
71063
71132
  errors?: Maybe<Array<MutationError>>;
@@ -81558,6 +81627,7 @@ export declare type JiraSubscription = {
81558
81627
  onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
81559
81628
  onIssueDeletedByProjectsNoEnrichment?: Maybe<JiraIssueDeletedStreamHubPayload>;
81560
81629
  onIssueExported?: Maybe<JiraIssueExportEvent>;
81630
+ onIssueMutatedByIssueIdNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
81561
81631
  onIssueUpdatedByProject?: Maybe<JiraIssue>;
81562
81632
  onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
81563
81633
  onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
@@ -81633,6 +81703,9 @@ export declare type JiraSubscriptionOnIssueDeletedByProjectsNoEnrichmentArgs = {
81633
81703
  export declare type JiraSubscriptionOnIssueExportedArgs = {
81634
81704
  input: JiraIssueExportInput;
81635
81705
  };
81706
+ export declare type JiraSubscriptionOnIssueMutatedByIssueIdNoEnrichmentArgs = {
81707
+ issueId: Scalars['ID']['input'];
81708
+ };
81636
81709
  export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
81637
81710
  cloudId: Scalars['ID']['input'];
81638
81711
  projectId: Scalars['String']['input'];
@@ -83037,6 +83110,7 @@ export declare type JiraUserPreferences = {
83037
83110
  __typename?: 'JiraUserPreferences';
83038
83111
  colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
83039
83112
  dismissedAutomationDiscoverabilityTemplates?: Maybe<JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeConnection>;
83113
+ filterSearchMode?: Maybe<JiraFilterSearchMode>;
83040
83114
  globalIssueCreateView?: Maybe<JiraGlobalIssueCreateView>;
83041
83115
  isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
83042
83116
  isCustomNavBarThemeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
@@ -83059,6 +83133,7 @@ export declare type JiraUserPreferences = {
83059
83133
  issueViewContextPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
83060
83134
  issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
83061
83135
  issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
83136
+ issueViewHiddenFieldsMenuState?: Maybe<Scalars['Boolean']['output']>;
83062
83137
  issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
83063
83138
  issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
83064
83139
  issueViewShouldShowWelcomeMessage?: Maybe<Scalars['Boolean']['output']>;
@@ -83090,6 +83165,9 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
83090
83165
  export declare type JiraUserPreferencesIssueViewDetailsPanelFieldsOrderArgs = {
83091
83166
  projectKey: Scalars['String']['input'];
83092
83167
  };
83168
+ export declare type JiraUserPreferencesIssueViewHiddenFieldsMenuStateArgs = {
83169
+ projectKey: Scalars['String']['input'];
83170
+ };
83093
83171
  export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
83094
83172
  projectKey: Scalars['String']['input'];
83095
83173
  };
@@ -83103,6 +83181,7 @@ export declare type JiraUserPreferencesMutation = {
83103
83181
  __typename?: 'JiraUserPreferencesMutation';
83104
83182
  dismissDateFieldAssociationMessageByIssueKey?: Maybe<JiraDateFieldAssociationMessageMutationPayload>;
83105
83183
  saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
83184
+ setFilterSearchMode?: Maybe<JiraFilterSearchModeMutationPayload>;
83106
83185
  setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
83107
83186
  setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
83108
83187
  setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
@@ -83119,6 +83198,9 @@ export declare type JiraUserPreferencesMutationSaveRequestTypeTableViewSettingsA
83119
83198
  projectKey: Scalars['String']['input'];
83120
83199
  viewSettings: Scalars['String']['input'];
83121
83200
  };
83201
+ export declare type JiraUserPreferencesMutationSetFilterSearchModeArgs = {
83202
+ filterSearchMode?: InputMaybe<JiraFilterSearchMode>;
83203
+ };
83122
83204
  export declare type JiraUserPreferencesMutationSetIsIssueViewHideDoneChildIssuesFilterEnabledArgs = {
83123
83205
  isHideDoneEnabled: Scalars['Boolean']['input'];
83124
83206
  };
@@ -90688,6 +90770,14 @@ export declare type MercuryDeleteFocusAreaWorkLinksPayload = Payload & {
90688
90770
  errors?: Maybe<Array<MutationError>>;
90689
90771
  success: Scalars['Boolean']['output'];
90690
90772
  };
90773
+ export declare type MercuryDeleteInvestmentCategoryInput = {
90774
+ id: Scalars['ID']['input'];
90775
+ };
90776
+ export declare type MercuryDeleteInvestmentCategoryPayload = Payload & {
90777
+ __typename?: 'MercuryDeleteInvestmentCategoryPayload';
90778
+ errors?: Maybe<Array<MutationError>>;
90779
+ success: Scalars['Boolean']['output'];
90780
+ };
90691
90781
  export declare type MercuryDeleteInvestmentCategorySetInput = {
90692
90782
  id: Scalars['ID']['input'];
90693
90783
  };
@@ -91179,6 +91269,7 @@ export declare type MercuryFundsMutationApi = {
91179
91269
  createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
91180
91270
  createInvestmentCategorySet?: Maybe<MercuryCreateInvestmentCategorySetPayload>;
91181
91271
  deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
91272
+ deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
91182
91273
  deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
91183
91274
  };
91184
91275
  export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
@@ -91196,6 +91287,9 @@ export declare type MercuryFundsMutationApiCreateInvestmentCategorySetArgs = {
91196
91287
  export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
91197
91288
  input: MercuryDeleteCostSubtypeInput;
91198
91289
  };
91290
+ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
91291
+ input: MercuryDeleteInvestmentCategoryInput;
91292
+ };
91199
91293
  export declare type MercuryFundsMutationApiDeleteInvestmentCategorySetArgs = {
91200
91294
  input: MercuryDeleteInvestmentCategorySetInput;
91201
91295
  };
@@ -91217,6 +91311,7 @@ export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
91217
91311
  after?: InputMaybe<Scalars['String']['input']>;
91218
91312
  cloudId?: InputMaybe<Scalars['ID']['input']>;
91219
91313
  first?: InputMaybe<Scalars['Int']['input']>;
91314
+ q?: InputMaybe<Scalars['String']['input']>;
91220
91315
  sort?: InputMaybe<Array<InputMaybe<MercuryCostSubtypeSort>>>;
91221
91316
  };
91222
91317
  export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
@@ -98499,6 +98594,11 @@ export declare type PolarisAddReactionPayload = Payload & {
98499
98594
  node: Array<PolarisReactionSummary>;
98500
98595
  success: Scalars['Boolean']['output'];
98501
98596
  };
98597
+ export declare enum PolarisColumnSize {
98598
+ Default = "DEFAULT",
98599
+ Large = "LARGE",
98600
+ Small = "SMALL"
98601
+ }
98502
98602
  export declare type PolarisComment = {
98503
98603
  __typename?: 'PolarisComment';
98504
98604
  aaid: Scalars['String']['output'];
@@ -98523,6 +98623,11 @@ export declare type PolarisConnectApp = {
98523
98623
  oauthClientId: Scalars['String']['output'];
98524
98624
  play?: Maybe<PolarisPlay>;
98525
98625
  };
98626
+ export declare enum PolarisConnectionsLayout {
98627
+ Cards = "CARDS",
98628
+ List = "LIST",
98629
+ Summary = "SUMMARY"
98630
+ }
98526
98631
  export declare type PolarisDecoration = {
98527
98632
  __typename?: 'PolarisDecoration';
98528
98633
  id: Scalars['ID']['output'];
@@ -98923,7 +99028,7 @@ export declare type PolarisTimelineConfig = {
98923
99028
  startDateField?: Maybe<PolarisIdeaField>;
98924
99029
  startTimestamp?: Maybe<Scalars['String']['output']>;
98925
99030
  summaryCardField?: Maybe<PolarisIdeaField>;
98926
- todayMarker?: Maybe<PolarisTimelineTodayMarker>;
99031
+ todayMarker: PolarisTimelineTodayMarker;
98927
99032
  };
98928
99033
  export declare enum PolarisTimelineMode {
98929
99034
  Months = "MONTHS",
@@ -98955,7 +99060,9 @@ export declare type PolarisValueRule = {
98955
99060
  export declare type PolarisView = {
98956
99061
  __typename?: 'PolarisView';
98957
99062
  comments?: Maybe<Array<PolarisComment>>;
99063
+ connectionsColumnSize?: Maybe<PolarisColumnSize>;
98958
99064
  connectionsFilter?: Maybe<Array<PolarisViewFilter>>;
99065
+ connectionsLayoutType?: Maybe<PolarisConnectionsLayout>;
98959
99066
  containsArchived: Scalars['Boolean']['output'];
98960
99067
  createdAt?: Maybe<Scalars['String']['output']>;
98961
99068
  description?: Maybe<Scalars['JSON']['output']>;
@@ -99529,6 +99636,7 @@ export declare type Query = {
99529
99636
  adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
99530
99637
  admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
99531
99638
  admin_appModules?: Maybe<Array<Maybe<AdminAppFoundryManifest>>>;
99639
+ admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
99532
99640
  admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
99533
99641
  admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
99534
99642
  admin_eventActions?: Maybe<AdminGroupEventActionConnection>;
@@ -99536,6 +99644,7 @@ export declare type Query = {
99536
99644
  admin_group?: Maybe<AdminGroup>;
99537
99645
  admin_groups?: Maybe<AdminGroupConnection>;
99538
99646
  admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
99647
+ admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
99539
99648
  admin_org?: Maybe<AdminOrganization>;
99540
99649
  admin_permissions?: Maybe<Array<AdminPermission>>;
99541
99650
  admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
@@ -99627,6 +99736,8 @@ export declare type Query = {
99627
99736
  assetsDM_getDataSourceForCleansing?: Maybe<AssetsDmGetDataSourceForCleansingResponse>;
99628
99737
  assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
99629
99738
  assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
99739
+ assetsDM_objectDetail?: Maybe<AssetsDmObjectDetail>;
99740
+ assetsDM_objectHistory?: Maybe<AssetsDmObjectHistory>;
99630
99741
  assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
99631
99742
  assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
99632
99743
  assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
@@ -100056,6 +100167,7 @@ export declare type Query = {
100056
100167
  jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
100057
100168
  jsmChat?: Maybe<JsmChatQuery>;
100058
100169
  jsw?: Maybe<JswQuery>;
100170
+ kitsune_hello?: Maybe<Scalars['String']['output']>;
100059
100171
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
100060
100172
  knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
100061
100173
  knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
@@ -100318,6 +100430,7 @@ export declare type Query = {
100318
100430
  teamCalendarSettings?: Maybe<TeamCalendarSettings>;
100319
100431
  teamLabels?: Maybe<PaginatedLabelList>;
100320
100432
  teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
100433
+ teamworkGraph_teamUsers?: Maybe<GraphStoreCypherQueryV2Connection>;
100321
100434
  teamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
100322
100435
  teamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
100323
100436
  teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -100393,6 +100506,10 @@ export declare type QueryAdmin_AppModulesArgs = {
100393
100506
  ari: Scalars['String']['input'];
100394
100507
  modules?: InputMaybe<Array<Scalars['String']['input']>>;
100395
100508
  };
100509
+ export declare type QueryAdmin_CheckLicensesCapacityArgs = {
100510
+ input: AdminLicenseInput;
100511
+ orgId: Scalars['ID']['input'];
100512
+ };
100396
100513
  export declare type QueryAdmin_ConnectedAppInstallationsArgs = {
100397
100514
  after?: InputMaybe<Scalars['String']['input']>;
100398
100515
  appInstallationId: Scalars['ID']['input'];
@@ -100441,6 +100558,14 @@ export declare type QueryAdmin_InvitePoliciesArgs = {
100441
100558
  last?: InputMaybe<Scalars['Int']['input']>;
100442
100559
  orgId: Scalars['ID']['input'];
100443
100560
  };
100561
+ export declare type QueryAdmin_LicenseUsageArgs = {
100562
+ after?: InputMaybe<Scalars['String']['input']>;
100563
+ before?: InputMaybe<Scalars['String']['input']>;
100564
+ first?: InputMaybe<Scalars['Int']['input']>;
100565
+ input: AdminLicenseInput;
100566
+ last?: InputMaybe<Scalars['Int']['input']>;
100567
+ orgId: Scalars['ID']['input'];
100568
+ };
100444
100569
  export declare type QueryAdmin_OrgArgs = {
100445
100570
  id: Scalars['ID']['input'];
100446
100571
  };
@@ -100905,6 +101030,19 @@ export declare type QueryAssetsDm_ObjectClassesArgs = {
100905
101030
  cloudId: Scalars['ID']['input'];
100906
101031
  workspaceId: Scalars['ID']['input'];
100907
101032
  };
101033
+ export declare type QueryAssetsDm_ObjectDetailArgs = {
101034
+ cloudId: Scalars['ID']['input'];
101035
+ objectId: Scalars['ID']['input'];
101036
+ objectTableId: Scalars['ID']['input'];
101037
+ workspaceId: Scalars['ID']['input'];
101038
+ };
101039
+ export declare type QueryAssetsDm_ObjectHistoryArgs = {
101040
+ cloudId: Scalars['ID']['input'];
101041
+ objectId: Scalars['ID']['input'];
101042
+ objectTableId: Scalars['ID']['input'];
101043
+ pagination?: InputMaybe<AssetsDmPaginationInput>;
101044
+ workspaceId: Scalars['ID']['input'];
101045
+ };
100908
101046
  export declare type QueryAssetsDm_ObjectTagsArgs = {
100909
101047
  cloudId: Scalars['ID']['input'];
100910
101048
  objectId: Scalars['ID']['input'];
@@ -102748,6 +102886,9 @@ export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArg
102748
102886
  jiraProjectAri: Scalars['ID']['input'];
102749
102887
  ticketId: Scalars['ID']['input'];
102750
102888
  };
102889
+ export declare type QueryKitsune_HelloArgs = {
102890
+ projectAri: Scalars['ID']['input'];
102891
+ };
102751
102892
  export declare type QueryKnowledgeBaseArgs = {
102752
102893
  cloudId: Scalars['ID']['input'];
102753
102894
  };
@@ -103683,6 +103824,11 @@ export declare type QueryTeamworkGraph_ProjectUpdatesArgs = {
103683
103824
  projectId: Scalars['String']['input'];
103684
103825
  startDate: Scalars['DateTime']['input'];
103685
103826
  };
103827
+ export declare type QueryTeamworkGraph_TeamUsersArgs = {
103828
+ after?: InputMaybe<Scalars['String']['input']>;
103829
+ first?: InputMaybe<Scalars['Int']['input']>;
103830
+ teamId: Scalars['ID']['input'];
103831
+ };
103686
103832
  export declare type QueryTeamworkGraph_UserCommentedArgs = {
103687
103833
  after?: InputMaybe<Scalars['String']['input']>;
103688
103834
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -129028,6 +129174,7 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
129028
129174
  };
129029
129175
  export declare type Subscription = {
129030
129176
  __typename?: 'Subscription';
129177
+ aqua?: Maybe<AquaLiveChatSubscription>;
129031
129178
  bitbucket?: Maybe<BitbucketSubscription>;
129032
129179
  confluence_onContentModified?: Maybe<ConfluenceContentModified>;
129033
129180
  convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
@@ -132996,6 +133143,7 @@ export declare type TrelloBoard = Node & TrelloBaseBoard & {
132996
133143
  members?: Maybe<TrelloBoardMembershipsConnection>;
132997
133144
  name: Scalars['String']['output'];
132998
133145
  objectId: Scalars['ID']['output'];
133146
+ plannerEventCards?: Maybe<TrelloCardConnection>;
132999
133147
  powerUpData?: Maybe<TrelloPowerUpDataConnection>;
133000
133148
  powerUps?: Maybe<TrelloBoardPowerUpConnection>;
133001
133149
  powerUpsDisableAt?: Maybe<Scalars['DateTime']['output']>;
@@ -133027,6 +133175,10 @@ export declare type TrelloBoardMembersArgs = {
133027
133175
  filter?: InputMaybe<TrelloBoardMembershipFilterInput>;
133028
133176
  first?: InputMaybe<Scalars['Int']['input']>;
133029
133177
  };
133178
+ export declare type TrelloBoardPlannerEventCardsArgs = {
133179
+ after?: InputMaybe<Scalars['String']['input']>;
133180
+ first?: InputMaybe<Scalars['Int']['input']>;
133181
+ };
133030
133182
  export declare type TrelloBoardPowerUpDataArgs = {
133031
133183
  after?: InputMaybe<Scalars['String']['input']>;
133032
133184
  filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
@@ -133347,6 +133499,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
133347
133499
  originalDesc?: Maybe<TrelloUserGeneratedText>;
133348
133500
  originalName?: Maybe<TrelloUserGeneratedText>;
133349
133501
  pinned?: Maybe<Scalars['Boolean']['output']>;
133502
+ plannerEventBadge?: Maybe<TrelloPlannerEventBadge>;
133350
133503
  position?: Maybe<Scalars['Float']['output']>;
133351
133504
  powerUpData?: Maybe<TrelloPowerUpDataConnection>;
133352
133505
  role?: Maybe<TrelloCardRole>;
@@ -133564,6 +133717,7 @@ export declare type TrelloCardCover = {
133564
133717
  sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
133565
133718
  size?: Maybe<TrelloCardCoverSize>;
133566
133719
  uploadedBackground?: Maybe<TrelloUploadedBackground>;
133720
+ yPosition?: Maybe<Scalars['Float']['output']>;
133567
133721
  };
133568
133722
  export declare type TrelloCardCoverPreviewsArgs = {
133569
133723
  after?: InputMaybe<Scalars['String']['input']>;
@@ -133600,6 +133754,7 @@ export declare type TrelloCardCoverUpdated = {
133600
133754
  sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
133601
133755
  size?: Maybe<TrelloCardCoverSize>;
133602
133756
  uploadedBackground?: Maybe<TrelloUploadedBackground>;
133757
+ yPosition?: Maybe<Scalars['Float']['output']>;
133603
133758
  };
133604
133759
  export declare type TrelloCardCreationInfo = {
133605
133760
  __typename?: 'TrelloCardCreationInfo';
@@ -134862,6 +135017,7 @@ export declare type TrelloMutationApi = {
134862
135017
  removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
134863
135018
  removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
134864
135019
  smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
135020
+ smartScheduleCardsWithSmartSelection?: Maybe<TrelloProposedSmartSchedule>;
134865
135021
  sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
134866
135022
  sortListCards?: Maybe<TrelloSortListCardsPayload>;
134867
135023
  submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
@@ -134965,6 +135121,9 @@ export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
134965
135121
  export declare type TrelloMutationApiSmartScheduleCardsArgs = {
134966
135122
  input: TrelloSmartScheduleCardsInput;
134967
135123
  };
135124
+ export declare type TrelloMutationApiSmartScheduleCardsWithSmartSelectionArgs = {
135125
+ input: TrelloSmartScheduleCardsWithSmartSelectionInput;
135126
+ };
134968
135127
  export declare type TrelloMutationApiSortInboxCardsArgs = {
134969
135128
  input: TrelloSortInboxCardsInput;
134970
135129
  };
@@ -135391,6 +135550,10 @@ export declare type TrelloPlannerCardUpdated = {
135391
135550
  list?: Maybe<TrelloPlannerCardListUpdated>;
135392
135551
  objectId?: Maybe<Scalars['ID']['output']>;
135393
135552
  };
135553
+ export declare type TrelloPlannerEventBadge = {
135554
+ __typename?: 'TrelloPlannerEventBadge';
135555
+ hasEvents?: Maybe<Scalars['Boolean']['output']>;
135556
+ };
135394
135557
  export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
135395
135558
  __typename?: 'TrelloPlannerProviderCalendar';
135396
135559
  color?: Maybe<TrelloPlannerCalendarColor>;
@@ -135822,6 +135985,11 @@ export declare type TrelloSmartScheduleCardsInput = {
135822
135985
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
135823
135986
  timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
135824
135987
  };
135988
+ export declare type TrelloSmartScheduleCardsWithSmartSelectionInput = {
135989
+ endDate?: InputMaybe<Scalars['DateTime']['input']>;
135990
+ startDate?: InputMaybe<Scalars['DateTime']['input']>;
135991
+ timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
135992
+ };
135825
135993
  export declare type TrelloSortInboxCardsInput = {
135826
135994
  sortBy: TrelloListCardSortBy;
135827
135995
  };
@@ -138425,7 +138593,9 @@ export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
138425
138593
  success: Scalars['Boolean']['output'];
138426
138594
  };
138427
138595
  export declare type UpdatePolarisViewInput = {
138596
+ connectionsColumnSize?: InputMaybe<PolarisColumnSize>;
138428
138597
  connectionsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
138598
+ connectionsLayoutType?: InputMaybe<PolarisConnectionsLayout>;
138429
138599
  description?: InputMaybe<Scalars['JSON']['input']>;
138430
138600
  emoji?: InputMaybe<Scalars['String']['input']>;
138431
138601
  enabledAutoSave?: InputMaybe<Scalars['Boolean']['input']>;