@forge/cli-shared 6.8.0 → 6.8.1-next.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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.8.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [680704b]
8
+ - @forge/manifest@9.1.0-next.0
9
+
3
10
  ## 6.8.0
4
11
 
5
12
  ### Minor Changes
@@ -799,7 +799,8 @@ export declare type AgentStudioAgent = {
799
799
  };
800
800
  export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
801
801
  export declare enum AgentStudioAgentType {
802
- Assistant = "ASSISTANT"
802
+ Assistant = "ASSISTANT",
803
+ ServiceAgent = "SERVICE_AGENT"
803
804
  }
804
805
  export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
805
806
  __typename?: 'AgentStudioAssistant';
@@ -841,10 +842,12 @@ export declare type AgentStudioCreateAgentInput = {
841
842
  actions?: InputMaybe<AgentStudioActionConfigurationInput>;
842
843
  agentType: AgentStudioAgentType;
843
844
  conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
845
+ defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
844
846
  description?: InputMaybe<Scalars['String']['input']>;
845
847
  instructions?: InputMaybe<Scalars['String']['input']>;
848
+ jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
846
849
  knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
847
- name: Scalars['String']['input'];
850
+ name?: InputMaybe<Scalars['String']['input']>;
848
851
  };
849
852
  export declare type AgentStudioCreateAgentPayload = Payload & {
850
853
  __typename?: 'AgentStudioCreateAgentPayload';
@@ -4073,6 +4076,17 @@ export declare type ChangeOwnerWarning = {
4073
4076
  contentId?: Maybe<Scalars['Long']['output']>;
4074
4077
  message?: Maybe<Scalars['String']['output']>;
4075
4078
  };
4079
+ export declare type ChannelPlatformSampleQueue = {
4080
+ __typename?: 'ChannelPlatformSampleQueue';
4081
+ config?: Maybe<ChannelPlatformSampleQueueConfig>;
4082
+ id?: Maybe<Scalars['ID']['output']>;
4083
+ name?: Maybe<Scalars['String']['output']>;
4084
+ };
4085
+ export declare type ChannelPlatformSampleQueueConfig = {
4086
+ __typename?: 'ChannelPlatformSampleQueueConfig';
4087
+ maxItems?: Maybe<Scalars['Int']['output']>;
4088
+ queueId?: Maybe<Scalars['ID']['output']>;
4089
+ };
4076
4090
  export declare type CheckConsentPermissionByOAuthClientIdInput = {
4077
4091
  cloudId: Scalars['ID']['input'];
4078
4092
  oauthClientId: Scalars['ID']['input'];
@@ -63798,9 +63812,18 @@ export declare type JiraPlaybookStepRunEdge = {
63798
63812
  node?: Maybe<JiraPlaybookStepRun>;
63799
63813
  };
63800
63814
  export declare enum JiraPlaybookStepRunStatus {
63815
+ Aborted = "ABORTED",
63816
+ ConfigChange = "CONFIG_CHANGE",
63801
63817
  Failed = "FAILED",
63818
+ Failure = "FAILURE",
63802
63819
  InProgress = "IN_PROGRESS",
63803
- Success = "SUCCESS"
63820
+ Loop = "LOOP",
63821
+ NoActionsPerformed = "NO_ACTIONS_PERFORMED",
63822
+ QueuedForRetry = "QUEUED_FOR_RETRY",
63823
+ SomeErrors = "SOME_ERRORS",
63824
+ Success = "SUCCESS",
63825
+ Throttled = "THROTTLED",
63826
+ Waiting = "WAITING"
63804
63827
  }
63805
63828
  export declare enum JiraPlaybookStepType {
63806
63829
  AutomationRule = "AUTOMATION_RULE",
@@ -72460,6 +72483,7 @@ export declare type KnowledgeDiscoveryDefinitionList = {
72460
72483
  export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
72461
72484
  export declare enum KnowledgeDiscoveryDefinitionScope {
72462
72485
  Blogpost = "BLOGPOST",
72486
+ Goal = "GOAL",
72463
72487
  Organization = "ORGANIZATION",
72464
72488
  Page = "PAGE",
72465
72489
  Project = "PROJECT",
@@ -72605,6 +72629,8 @@ export declare type KnowledgeDiscoveryQueryApi = {
72605
72629
  bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
72606
72630
  definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
72607
72631
  definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
72632
+ definitionHistoryV2?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
72633
+ definitionV2?: Maybe<KnowledgeDiscoveryDefinitionResult>;
72608
72634
  keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
72609
72635
  relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
72610
72636
  searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
@@ -72650,6 +72676,16 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
72650
72676
  spaceId?: InputMaybe<Scalars['String']['input']>;
72651
72677
  workspaceId: Scalars['String']['input'];
72652
72678
  };
72679
+ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryV2Args = {
72680
+ keyPhrase: Scalars['String']['input'];
72681
+ scopes?: InputMaybe<Array<KnowledgeDiscoveryScopeInput>>;
72682
+ workspaceId: Scalars['String']['input'];
72683
+ };
72684
+ export declare type KnowledgeDiscoveryQueryApiDefinitionV2Args = {
72685
+ keyPhrase: Scalars['String']['input'];
72686
+ scopes?: InputMaybe<Array<KnowledgeDiscoveryScopeInput>>;
72687
+ workspaceId: Scalars['String']['input'];
72688
+ };
72653
72689
  export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
72654
72690
  after?: InputMaybe<Scalars['String']['input']>;
72655
72691
  cloudId?: InputMaybe<Scalars['String']['input']>;
@@ -72718,6 +72754,10 @@ export declare type KnowledgeDiscoveryRelatedEntityRequest = {
72718
72754
  export declare type KnowledgeDiscoveryRelatedEntityRequests = {
72719
72755
  requests?: InputMaybe<Array<KnowledgeDiscoveryRelatedEntityRequest>>;
72720
72756
  };
72757
+ export declare type KnowledgeDiscoveryScopeInput = {
72758
+ entityIdInScope: Scalars['String']['input'];
72759
+ scope: KnowledgeDiscoveryDefinitionScope;
72760
+ };
72721
72761
  export declare enum KnowledgeDiscoverySearchQueryClassification {
72722
72762
  KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
72723
72763
  NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
@@ -74000,6 +74040,43 @@ export declare enum MarketplaceConsoleDevSpaceTier {
74000
74040
  Platinum = "PLATINUM",
74001
74041
  Silver = "SILVER"
74002
74042
  }
74043
+ export declare type MarketplaceConsoleEditAppVersionRequest = {
74044
+ appKey: Scalars['ID']['input'];
74045
+ buildNumber: Scalars['ID']['input'];
74046
+ compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
74047
+ deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
74048
+ documentationUrl?: InputMaybe<Scalars['String']['input']>;
74049
+ eulaUrl?: InputMaybe<Scalars['String']['input']>;
74050
+ heroImageUrl?: InputMaybe<Scalars['String']['input']>;
74051
+ highlights?: InputMaybe<Array<MarketplaceConsoleListingHighLightInput>>;
74052
+ isBeta?: InputMaybe<Scalars['Boolean']['input']>;
74053
+ isSupported?: InputMaybe<Scalars['Boolean']['input']>;
74054
+ learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
74055
+ licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
74056
+ moreDetails?: InputMaybe<Scalars['String']['input']>;
74057
+ purchaseUrl?: InputMaybe<Scalars['String']['input']>;
74058
+ releaseNotes?: InputMaybe<Scalars['String']['input']>;
74059
+ releaseSummary?: InputMaybe<Scalars['String']['input']>;
74060
+ screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
74061
+ sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
74062
+ youtubeId?: InputMaybe<Scalars['String']['input']>;
74063
+ };
74064
+ export declare type MarketplaceConsoleEditVersionError = MarketplaceConsoleError & {
74065
+ __typename?: 'MarketplaceConsoleEditVersionError';
74066
+ id: Scalars['ID']['output'];
74067
+ message: Scalars['String']['output'];
74068
+ path?: Maybe<Scalars['String']['output']>;
74069
+ subCode?: Maybe<Scalars['String']['output']>;
74070
+ };
74071
+ export declare type MarketplaceConsoleEditVersionMutationKnownError = {
74072
+ __typename?: 'MarketplaceConsoleEditVersionMutationKnownError';
74073
+ errors?: Maybe<Array<Maybe<MarketplaceConsoleEditVersionError>>>;
74074
+ };
74075
+ export declare type MarketplaceConsoleEditVersionMutationResponse = MarketplaceConsoleEditVersionMutationKnownError | MarketplaceConsoleEditVersionMutationSuccessResponse;
74076
+ export declare type MarketplaceConsoleEditVersionMutationSuccessResponse = {
74077
+ __typename?: 'MarketplaceConsoleEditVersionMutationSuccessResponse';
74078
+ versions?: Maybe<Array<Maybe<MarketplaceConsoleAppSoftwareVersion>>>;
74079
+ };
74003
74080
  export declare type MarketplaceConsoleEdition = {
74004
74081
  __typename?: 'MarketplaceConsoleEdition';
74005
74082
  features: Array<MarketplaceConsoleFeature>;
@@ -74293,6 +74370,7 @@ export declare type MarketplaceConsoleMutationApi = {
74293
74370
  createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
74294
74371
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
74295
74372
  deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
74373
+ editAppVersion?: Maybe<MarketplaceConsoleEditVersionMutationResponse>;
74296
74374
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
74297
74375
  makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
74298
74376
  updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
@@ -74320,6 +74398,9 @@ export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
74320
74398
  export declare type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
74321
74399
  deleteVersion: MarketplaceConsoleAppVersionDeleteRequestInput;
74322
74400
  };
74401
+ export declare type MarketplaceConsoleMutationApiEditAppVersionArgs = {
74402
+ editAppVersionRequest: MarketplaceConsoleEditAppVersionRequest;
74403
+ };
74323
74404
  export declare type MarketplaceConsoleMutationApiEditionsArgs = {
74324
74405
  editions: Array<MarketplaceConsoleEditionInput>;
74325
74406
  product: MarketplaceConsoleEditionsInput;
@@ -75722,6 +75803,17 @@ export declare type MercuryAggregatedPortfolioStatusCount = {
75722
75803
  __typename?: 'MercuryAggregatedPortfolioStatusCount';
75723
75804
  children: MercuryFocusAreaStatusCount;
75724
75805
  };
75806
+ export declare type MercuryArchiveFocusAreaChange = MercuryChangeInterface & Node & {
75807
+ __typename?: 'MercuryArchiveFocusAreaChange';
75808
+ changeProposal?: Maybe<MercuryChangeProposal>;
75809
+ changeType: MercuryChangeType;
75810
+ createdBy?: Maybe<User>;
75811
+ createdDate: Scalars['DateTime']['output'];
75812
+ id: Scalars['ID']['output'];
75813
+ targetFocusArea?: Maybe<MercuryFocusArea>;
75814
+ updatedBy?: Maybe<User>;
75815
+ updatedDate: Scalars['DateTime']['output'];
75816
+ };
75725
75817
  export declare type MercuryArchiveFocusAreaChangeInput = {
75726
75818
  targetFocusAreaId: Scalars['ID']['input'];
75727
75819
  };
@@ -75744,7 +75836,7 @@ export declare type MercuryBudgetAggregation = {
75744
75836
  aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
75745
75837
  totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
75746
75838
  };
75747
- export declare type MercuryChange = MercuryCreateFocusAreaChange | MercuryPositionAllocationChange;
75839
+ export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
75748
75840
  export declare type MercuryChangeConnection = {
75749
75841
  __typename?: 'MercuryChangeConnection';
75750
75842
  edges?: Maybe<Array<Maybe<MercuryChangeEdge>>>;
@@ -75786,6 +75878,8 @@ export declare type MercuryChangeProposalComment = {
75786
75878
  createdBy?: Maybe<User>;
75787
75879
  createdDate: Scalars['String']['output'];
75788
75880
  id: Scalars['ID']['output'];
75881
+ updatedBy?: Maybe<User>;
75882
+ updatedDate?: Maybe<Scalars['String']['output']>;
75789
75883
  };
75790
75884
  export declare type MercuryChangeProposalCommentConnection = {
75791
75885
  __typename?: 'MercuryChangeProposalCommentConnection';
@@ -75841,8 +75935,13 @@ export declare enum MercuryChangeSortField {
75841
75935
  Type = "TYPE"
75842
75936
  }
75843
75937
  export declare enum MercuryChangeType {
75938
+ ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
75844
75939
  CreateFocusArea = "CREATE_FOCUS_AREA",
75845
- PositionAllocation = "POSITION_ALLOCATION"
75940
+ MoveFunds = "MOVE_FUNDS",
75941
+ MovePositions = "MOVE_POSITIONS",
75942
+ PositionAllocation = "POSITION_ALLOCATION",
75943
+ RequestFunds = "REQUEST_FUNDS",
75944
+ RequestPositions = "REQUEST_POSITIONS"
75846
75945
  }
75847
75946
  export declare type MercuryComment = Node & {
75848
75947
  __typename?: 'MercuryComment';
@@ -76566,11 +76665,38 @@ export declare type MercuryMediaToken = {
76566
76665
  __typename?: 'MercuryMediaToken';
76567
76666
  token: Scalars['String']['output'];
76568
76667
  };
76668
+ export declare type MercuryMoveFundsChange = MercuryChangeInterface & Node & {
76669
+ __typename?: 'MercuryMoveFundsChange';
76670
+ amount: Scalars['BigDecimal']['output'];
76671
+ changeProposal?: Maybe<MercuryChangeProposal>;
76672
+ changeType: MercuryChangeType;
76673
+ createdBy?: Maybe<User>;
76674
+ createdDate: Scalars['DateTime']['output'];
76675
+ id: Scalars['ID']['output'];
76676
+ sourceFocusArea?: Maybe<MercuryFocusArea>;
76677
+ targetFocusArea?: Maybe<MercuryFocusArea>;
76678
+ updatedBy?: Maybe<User>;
76679
+ updatedDate: Scalars['DateTime']['output'];
76680
+ };
76569
76681
  export declare type MercuryMoveFundsChangeInput = {
76570
76682
  amount: Scalars['BigDecimal']['input'];
76571
76683
  sourceFocusAreaId: Scalars['ID']['input'];
76572
76684
  targetFocusAreaId: Scalars['ID']['input'];
76573
76685
  };
76686
+ export declare type MercuryMovePositionsChange = MercuryChangeInterface & Node & {
76687
+ __typename?: 'MercuryMovePositionsChange';
76688
+ changeProposal?: Maybe<MercuryChangeProposal>;
76689
+ changeType: MercuryChangeType;
76690
+ cost?: Maybe<Scalars['BigDecimal']['output']>;
76691
+ createdBy?: Maybe<User>;
76692
+ createdDate: Scalars['DateTime']['output'];
76693
+ id: Scalars['ID']['output'];
76694
+ positionsAmount: Scalars['Int']['output'];
76695
+ sourceFocusArea?: Maybe<MercuryFocusArea>;
76696
+ targetFocusArea?: Maybe<MercuryFocusArea>;
76697
+ updatedBy?: Maybe<User>;
76698
+ updatedDate: Scalars['DateTime']['output'];
76699
+ };
76574
76700
  export declare type MercuryMovePositionsChangeInput = {
76575
76701
  cost?: InputMaybe<Scalars['BigDecimal']['input']>;
76576
76702
  positionsAmount: Scalars['Int']['input'];
@@ -77161,10 +77287,35 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
77161
77287
  errors?: Maybe<Array<MutationError>>;
77162
77288
  success: Scalars['Boolean']['output'];
77163
77289
  };
77290
+ export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
77291
+ __typename?: 'MercuryRequestFundsChange';
77292
+ amount: Scalars['BigDecimal']['output'];
77293
+ changeProposal?: Maybe<MercuryChangeProposal>;
77294
+ changeType: MercuryChangeType;
77295
+ createdBy?: Maybe<User>;
77296
+ createdDate: Scalars['DateTime']['output'];
77297
+ id: Scalars['ID']['output'];
77298
+ targetFocusArea?: Maybe<MercuryFocusArea>;
77299
+ updatedBy?: Maybe<User>;
77300
+ updatedDate: Scalars['DateTime']['output'];
77301
+ };
77164
77302
  export declare type MercuryRequestFundsChangeInput = {
77165
77303
  amount: Scalars['BigDecimal']['input'];
77166
77304
  targetFocusAreaId: Scalars['ID']['input'];
77167
77305
  };
77306
+ export declare type MercuryRequestPositionsChange = MercuryChangeInterface & Node & {
77307
+ __typename?: 'MercuryRequestPositionsChange';
77308
+ changeProposal?: Maybe<MercuryChangeProposal>;
77309
+ changeType: MercuryChangeType;
77310
+ cost?: Maybe<Scalars['BigDecimal']['output']>;
77311
+ createdBy?: Maybe<User>;
77312
+ createdDate: Scalars['DateTime']['output'];
77313
+ id: Scalars['ID']['output'];
77314
+ positionsAmount: Scalars['Int']['output'];
77315
+ targetFocusArea?: Maybe<MercuryFocusArea>;
77316
+ updatedBy?: Maybe<User>;
77317
+ updatedDate: Scalars['DateTime']['output'];
77318
+ };
77168
77319
  export declare type MercuryRequestPositionsChangeInput = {
77169
77320
  cost?: InputMaybe<Scalars['BigDecimal']['input']>;
77170
77321
  positionsAmount: Scalars['Int']['input'];
@@ -82862,6 +83013,7 @@ export declare type Query = {
82862
83013
  catchupGetLastViewedTime?: Maybe<CatchupLastViewedTimeResponse>;
82863
83014
  catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
82864
83015
  ccp?: Maybe<CcpQueryApi>;
83016
+ channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
82865
83017
  classificationLevel?: Maybe<ContentDataClassificationLevel>;
82866
83018
  classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
82867
83019
  codeInJira?: Maybe<CodeInJira>;
@@ -83736,6 +83888,9 @@ export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
83736
83888
  originalContentVersion: Scalars['Int']['input'];
83737
83889
  revisedContentVersion: Scalars['Int']['input'];
83738
83890
  };
83891
+ export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
83892
+ id?: InputMaybe<Scalars['ID']['input']>;
83893
+ };
83739
83894
  export declare type QueryClassificationLevelArgs = {
83740
83895
  id: Scalars['String']['input'];
83741
83896
  };
@@ -85913,7 +86068,6 @@ export declare type QueryRadar_PositionsSearchArgs = {
85913
86068
  after?: InputMaybe<Scalars['String']['input']>;
85914
86069
  before?: InputMaybe<Scalars['String']['input']>;
85915
86070
  cloudId: Scalars['ID']['input'];
85916
- fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
85917
86071
  first?: InputMaybe<Scalars['Int']['input']>;
85918
86072
  last?: InputMaybe<Scalars['Int']['input']>;
85919
86073
  rql?: InputMaybe<Scalars['String']['input']>;
@@ -86445,6 +86599,9 @@ export declare type RadarEntity = {
86445
86599
  id: Scalars['ID']['output'];
86446
86600
  type?: Maybe<RadarEntityType>;
86447
86601
  };
86602
+ export declare type RadarEntityFieldValuesArgs = {
86603
+ fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
86604
+ };
86448
86605
  export declare enum RadarEntityType {
86449
86606
  FocusArea = "focusArea",
86450
86607
  Position = "position",
@@ -86634,6 +86791,9 @@ export declare type RadarPosition = Node & RadarEntity & {
86634
86791
  type?: Maybe<RadarEntityType>;
86635
86792
  worker?: Maybe<RadarWorker>;
86636
86793
  };
86794
+ export declare type RadarPositionFieldValuesArgs = {
86795
+ fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
86796
+ };
86637
86797
  export declare type RadarPositionConnection = RadarConnection & {
86638
86798
  __typename?: 'RadarPositionConnection';
86639
86799
  edges?: Maybe<Array<RadarPositionEdge>>;
@@ -86713,6 +86873,9 @@ export declare type RadarWorker = Node & RadarEntity & {
86713
86873
  type: RadarEntityType;
86714
86874
  user?: Maybe<User>;
86715
86875
  };
86876
+ export declare type RadarWorkerFieldValuesArgs = {
86877
+ fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
86878
+ };
86716
86879
  export declare type RadarWorkerConnection = RadarConnection & {
86717
86880
  __typename?: 'RadarWorkerConnection';
86718
86881
  edges?: Maybe<Array<RadarWorkerEdge>>;