@forge/cli-shared 5.6.0-next.8 → 6.0.0-next.16
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 +58 -0
- package/out/app-logs/graphql-client.d.ts +2 -1
- package/out/app-logs/graphql-client.d.ts.map +1 -1
- package/out/app-logs/graphql-client.js +71 -0
- package/out/app-logs/view-logs.d.ts +12 -2
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +31 -3
- package/out/graphql/graphql-types.d.ts +266 -706
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +35 -21
- package/out/service/feature-flag-service.d.ts +2 -2
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +2 -2
- package/out/ui/command-line-ui.d.ts +3 -3
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/text.js +1 -1
- package/package.json +2 -2
|
@@ -832,9 +832,13 @@ export declare type AppEnvironmentVersion = {
|
|
|
832
832
|
permissions: Array<AppPermission>;
|
|
833
833
|
requiresLicense: Scalars['Boolean']['output'];
|
|
834
834
|
storage: Storage;
|
|
835
|
+
trustSignal: TrustSignal;
|
|
835
836
|
updatedAt: Scalars['String']['output'];
|
|
836
837
|
version: Scalars['String']['output'];
|
|
837
838
|
};
|
|
839
|
+
export declare type AppEnvironmentVersionTrustSignalArgs = {
|
|
840
|
+
key: Scalars['ID']['input'];
|
|
841
|
+
};
|
|
838
842
|
export declare type AppEnvironmentVersionConnection = {
|
|
839
843
|
__typename?: 'AppEnvironmentVersionConnection';
|
|
840
844
|
edges?: Maybe<Array<Maybe<AppEnvironmentVersionEdge>>>;
|
|
@@ -3842,6 +3846,7 @@ export declare type CompassComponent = Node & {
|
|
|
3842
3846
|
type: CompassComponentType;
|
|
3843
3847
|
typeId: Scalars['ID']['output'];
|
|
3844
3848
|
typeMetadata?: Maybe<CompassComponentTypeObject>;
|
|
3849
|
+
viewerApplicableScorecards?: Maybe<CompassComponentViewerApplicableScorecardsConnection>;
|
|
3845
3850
|
viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
|
|
3846
3851
|
viewerSubscription?: Maybe<CompassViewerSubscription>;
|
|
3847
3852
|
};
|
|
@@ -3865,6 +3870,10 @@ export declare type CompassComponentRelationshipsArgs = {
|
|
|
3865
3870
|
export declare type CompassComponentScorecardScoreArgs = {
|
|
3866
3871
|
query?: InputMaybe<CompassComponentScorecardScoreQuery>;
|
|
3867
3872
|
};
|
|
3873
|
+
export declare type CompassComponentViewerApplicableScorecardsArgs = {
|
|
3874
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3875
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3876
|
+
};
|
|
3868
3877
|
export declare type CompassComponentApi = {
|
|
3869
3878
|
__typename?: 'CompassComponentApi';
|
|
3870
3879
|
changelog: CompassComponentApiChangelogConnection;
|
|
@@ -3993,6 +4002,10 @@ export declare enum CompassComponentCreationTimeFilterType {
|
|
|
3993
4002
|
After = "AFTER",
|
|
3994
4003
|
Before = "BEFORE"
|
|
3995
4004
|
}
|
|
4005
|
+
export declare type CompassComponentCustomBooleanFieldFilterInput = {
|
|
4006
|
+
customFieldId: Scalars['String']['input'];
|
|
4007
|
+
value?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4008
|
+
};
|
|
3996
4009
|
export declare type CompassComponentDataManager = {
|
|
3997
4010
|
__typename?: 'CompassComponentDataManager';
|
|
3998
4011
|
ecosystemAppId: Scalars['ID']['output'];
|
|
@@ -4219,6 +4232,17 @@ export declare type CompassComponentTypeQueryInput = {
|
|
|
4219
4232
|
};
|
|
4220
4233
|
export declare type CompassComponentTypeResult = CompassComponentTypeObject | QueryError;
|
|
4221
4234
|
export declare type CompassComponentTypesQueryResult = CompassComponentTypeConnection | QueryError;
|
|
4235
|
+
export declare type CompassComponentViewerApplicableScorecardEdge = {
|
|
4236
|
+
__typename?: 'CompassComponentViewerApplicableScorecardEdge';
|
|
4237
|
+
cursor: Scalars['String']['output'];
|
|
4238
|
+
node?: Maybe<CompassScorecard>;
|
|
4239
|
+
};
|
|
4240
|
+
export declare type CompassComponentViewerApplicableScorecardsConnection = {
|
|
4241
|
+
__typename?: 'CompassComponentViewerApplicableScorecardsConnection';
|
|
4242
|
+
edges?: Maybe<Array<CompassComponentViewerApplicableScorecardEdge>>;
|
|
4243
|
+
nodes?: Maybe<Array<CompassScorecard>>;
|
|
4244
|
+
pageInfo: PageInfo;
|
|
4245
|
+
};
|
|
4222
4246
|
export declare type CompassCreateAlertEventInput = {
|
|
4223
4247
|
alertProperties: CompassAlertEventPropertiesInput;
|
|
4224
4248
|
description: Scalars['String']['input'];
|
|
@@ -4603,6 +4627,11 @@ export declare type CompassCustomBooleanFieldDefinition = CompassCustomFieldDefi
|
|
|
4603
4627
|
id: Scalars['ID']['output'];
|
|
4604
4628
|
name?: Maybe<Scalars['String']['output']>;
|
|
4605
4629
|
};
|
|
4630
|
+
export declare type CompassCustomBooleanFieldFilter = CompassCustomFieldFilter & {
|
|
4631
|
+
__typename?: 'CompassCustomBooleanFieldFilter';
|
|
4632
|
+
customFieldId: Scalars['String']['output'];
|
|
4633
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
4634
|
+
};
|
|
4606
4635
|
export declare type CompassCustomBooleanFieldInput = {
|
|
4607
4636
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4608
4637
|
booleanValue: Scalars['Boolean']['input'];
|
|
@@ -4675,6 +4704,13 @@ export declare type CompassCustomFieldDefinitionsQuery = {
|
|
|
4675
4704
|
componentTypes?: InputMaybe<Array<CompassComponentType>>;
|
|
4676
4705
|
};
|
|
4677
4706
|
export declare type CompassCustomFieldDefinitionsResult = CompassCustomFieldDefinitionsConnection | QueryError;
|
|
4707
|
+
export declare type CompassCustomFieldFilter = {
|
|
4708
|
+
customFieldId: Scalars['String']['output'];
|
|
4709
|
+
};
|
|
4710
|
+
export declare type CompassCustomFieldFilterInput = {
|
|
4711
|
+
boolean?: InputMaybe<CompassComponentCustomBooleanFieldFilterInput>;
|
|
4712
|
+
multiselect?: InputMaybe<CompassCustomMultiselectFieldFilterInput>;
|
|
4713
|
+
};
|
|
4678
4714
|
export declare type CompassCustomFieldInput = {
|
|
4679
4715
|
booleanField?: InputMaybe<CompassCustomBooleanFieldInput>;
|
|
4680
4716
|
multiSelectField?: InputMaybe<CompassCustomMultiSelectFieldInput>;
|
|
@@ -4714,6 +4750,17 @@ export declare type CompassCustomMultiSelectFieldInput = {
|
|
|
4714
4750
|
definitionId: Scalars['ID']['input'];
|
|
4715
4751
|
options?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4716
4752
|
};
|
|
4753
|
+
export declare type CompassCustomMultiselectFieldFilter = CompassCustomFieldFilter & {
|
|
4754
|
+
__typename?: 'CompassCustomMultiselectFieldFilter';
|
|
4755
|
+
comparator: Scalars['String']['output'];
|
|
4756
|
+
customFieldId: Scalars['String']['output'];
|
|
4757
|
+
values: Array<Scalars['String']['output']>;
|
|
4758
|
+
};
|
|
4759
|
+
export declare type CompassCustomMultiselectFieldFilterInput = {
|
|
4760
|
+
comparator?: InputMaybe<CustomMultiselectFieldInputComparators>;
|
|
4761
|
+
customFieldId: Scalars['String']['input'];
|
|
4762
|
+
values: Array<Scalars['String']['input']>;
|
|
4763
|
+
};
|
|
4717
4764
|
export declare type CompassCustomNumberField = CompassCustomField & {
|
|
4718
4765
|
__typename?: 'CompassCustomNumberField';
|
|
4719
4766
|
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
@@ -5156,9 +5203,12 @@ export declare type CompassFilteredComponentsCount = {
|
|
|
5156
5203
|
count: Scalars['Int']['output'];
|
|
5157
5204
|
};
|
|
5158
5205
|
export declare type CompassFilteredComponentsCountQuery = {
|
|
5206
|
+
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
5159
5207
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
5160
5208
|
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
5209
|
+
lifecycleFilter?: InputMaybe<CompassLifecycleFilterInput>;
|
|
5161
5210
|
ownerIds?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
5211
|
+
repositoryLinkFilter?: InputMaybe<CompassRepositoryValueInput>;
|
|
5162
5212
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
5163
5213
|
};
|
|
5164
5214
|
export declare type CompassFilteredComponentsCountResult = CompassFilteredComponentsCount | QueryError;
|
|
@@ -5458,7 +5508,7 @@ export declare enum CompassLifecycleEventStage {
|
|
|
5458
5508
|
export declare type CompassLifecycleFilter = {
|
|
5459
5509
|
__typename?: 'CompassLifecycleFilter';
|
|
5460
5510
|
operator: Scalars['String']['output'];
|
|
5461
|
-
values?: Maybe<Array<
|
|
5511
|
+
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
5462
5512
|
};
|
|
5463
5513
|
export declare type CompassLifecycleFilterInput = {
|
|
5464
5514
|
operator: CompassLifecycleFilterOperator;
|
|
@@ -5965,6 +6015,7 @@ export declare type CompassScorecardAutomaticApplicationModel = CompassScorecard
|
|
|
5965
6015
|
__typename?: 'CompassScorecardAutomaticApplicationModel';
|
|
5966
6016
|
applicationType: Scalars['String']['output'];
|
|
5967
6017
|
componentCreationTimeFilter?: Maybe<CompassComponentCreationTimeFilter>;
|
|
6018
|
+
componentCustomFieldFilters?: Maybe<Array<CompassCustomFieldFilter>>;
|
|
5968
6019
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
5969
6020
|
componentLifecycleStages?: Maybe<CompassLifecycleFilter>;
|
|
5970
6021
|
componentOwnerIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -15550,6 +15601,7 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
15550
15601
|
};
|
|
15551
15602
|
export declare type CreateCompassScorecardInput = {
|
|
15552
15603
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
15604
|
+
componentCustomFieldFilters?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
15553
15605
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15554
15606
|
componentLifecycleStages?: InputMaybe<CompassLifecycleFilterInput>;
|
|
15555
15607
|
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -15957,6 +16009,12 @@ export declare type CustomFiltersValidationError = {
|
|
|
15957
16009
|
errorMessage: Scalars['String']['output'];
|
|
15958
16010
|
fieldName: Scalars['String']['output'];
|
|
15959
16011
|
};
|
|
16012
|
+
export declare enum CustomMultiselectFieldInputComparators {
|
|
16013
|
+
ContainAll = "CONTAIN_ALL",
|
|
16014
|
+
ContainAny = "CONTAIN_ANY",
|
|
16015
|
+
ContainNone = "CONTAIN_NONE",
|
|
16016
|
+
NotSet = "NOT_SET"
|
|
16017
|
+
}
|
|
15960
16018
|
export declare type CustomUiTunnelDefinition = {
|
|
15961
16019
|
__typename?: 'CustomUITunnelDefinition';
|
|
15962
16020
|
resourceKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -16298,7 +16356,6 @@ export declare type CustomerServiceIndividual = Node & {
|
|
|
16298
16356
|
entitlementList: Array<CustomerServiceEntitlement>;
|
|
16299
16357
|
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
16300
16358
|
id: Scalars['ID']['output'];
|
|
16301
|
-
links: Array<CustomerServiceLink>;
|
|
16302
16359
|
name: Scalars['String']['output'];
|
|
16303
16360
|
notes: CustomerServiceNotes;
|
|
16304
16361
|
organizations: Array<CustomerServiceOrganization>;
|
|
@@ -16311,10 +16368,6 @@ export declare type CustomerServiceIndividualEntitlementsArgs = {
|
|
|
16311
16368
|
filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
|
|
16312
16369
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16313
16370
|
};
|
|
16314
|
-
export declare type CustomerServiceIndividualLinksArgs = {
|
|
16315
|
-
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
16316
|
-
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
16317
|
-
};
|
|
16318
16371
|
export declare type CustomerServiceIndividualNotesArgs = {
|
|
16319
16372
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
16320
16373
|
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16346,52 +16399,17 @@ export declare type CustomerServiceIndividualUpdateAttributeValuePayload = Paylo
|
|
|
16346
16399
|
errors?: Maybe<Array<MutationError>>;
|
|
16347
16400
|
success: Scalars['Boolean']['output'];
|
|
16348
16401
|
};
|
|
16349
|
-
export declare type CustomerServiceLink = {
|
|
16350
|
-
__typename?: 'CustomerServiceLink';
|
|
16351
|
-
displayName?: Maybe<Scalars['String']['output']>;
|
|
16352
|
-
id: Scalars['ID']['output'];
|
|
16353
|
-
url: Scalars['URL']['output'];
|
|
16354
|
-
};
|
|
16355
|
-
export declare type CustomerServiceLinkCreateInput = {
|
|
16356
|
-
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
16357
|
-
entityId: Scalars['ID']['input'];
|
|
16358
|
-
type: CustomerServiceLinkEntityType;
|
|
16359
|
-
url: Scalars['URL']['input'];
|
|
16360
|
-
};
|
|
16361
|
-
export declare type CustomerServiceLinkCreatePayload = Payload & {
|
|
16362
|
-
__typename?: 'CustomerServiceLinkCreatePayload';
|
|
16363
|
-
errors?: Maybe<Array<MutationError>>;
|
|
16364
|
-
success: Scalars['Boolean']['output'];
|
|
16365
|
-
successfullyCreatedLink?: Maybe<CustomerServiceLink>;
|
|
16366
|
-
};
|
|
16367
|
-
export declare type CustomerServiceLinkDeleteInput = {
|
|
16368
|
-
entityId: Scalars['ID']['input'];
|
|
16369
|
-
linkId: Scalars['ID']['input'];
|
|
16370
|
-
type: CustomerServiceLinkEntityType;
|
|
16371
|
-
};
|
|
16372
|
-
export declare type CustomerServiceLinkDeletePayload = Payload & {
|
|
16373
|
-
__typename?: 'CustomerServiceLinkDeletePayload';
|
|
16374
|
-
errors?: Maybe<Array<MutationError>>;
|
|
16375
|
-
success: Scalars['Boolean']['output'];
|
|
16376
|
-
};
|
|
16377
|
-
export declare enum CustomerServiceLinkEntityType {
|
|
16378
|
-
Customer = "CUSTOMER",
|
|
16379
|
-
Organization = "ORGANIZATION"
|
|
16380
|
-
}
|
|
16381
|
-
export declare type CustomerServiceLinksQueryResult = CustomerServiceLink | QueryError;
|
|
16382
16402
|
export declare type CustomerServiceMutationApi = {
|
|
16383
16403
|
__typename?: 'CustomerServiceMutationApi';
|
|
16384
16404
|
addEntitlement?: Maybe<CustomerServiceEntitlementAddPayload>;
|
|
16385
16405
|
createCustomDetail?: Maybe<CustomerServiceCustomDetailCreatePayload>;
|
|
16386
16406
|
createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
16387
|
-
createLink?: Maybe<CustomerServiceLinkCreatePayload>;
|
|
16388
16407
|
createNote?: Maybe<CustomerServiceNoteCreatePayload>;
|
|
16389
16408
|
createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
|
|
16390
16409
|
createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
16391
16410
|
createProduct?: Maybe<CustomerServiceProductCreatePayload>;
|
|
16392
16411
|
deleteCustomDetail?: Maybe<CustomerServiceCustomDetailDeletePayload>;
|
|
16393
16412
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
16394
|
-
deleteLink?: Maybe<CustomerServiceLinkDeletePayload>;
|
|
16395
16413
|
deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
|
|
16396
16414
|
deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
|
|
16397
16415
|
deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
@@ -16424,9 +16442,6 @@ export declare type CustomerServiceMutationApiCreateCustomDetailArgs = {
|
|
|
16424
16442
|
export declare type CustomerServiceMutationApiCreateIndividualAttributeArgs = {
|
|
16425
16443
|
input: CustomerServiceAttributeCreateInput;
|
|
16426
16444
|
};
|
|
16427
|
-
export declare type CustomerServiceMutationApiCreateLinkArgs = {
|
|
16428
|
-
input: CustomerServiceLinkCreateInput;
|
|
16429
|
-
};
|
|
16430
16445
|
export declare type CustomerServiceMutationApiCreateNoteArgs = {
|
|
16431
16446
|
input?: InputMaybe<CustomerServiceNoteCreateInput>;
|
|
16432
16447
|
};
|
|
@@ -16445,9 +16460,6 @@ export declare type CustomerServiceMutationApiDeleteCustomDetailArgs = {
|
|
|
16445
16460
|
export declare type CustomerServiceMutationApiDeleteIndividualAttributeArgs = {
|
|
16446
16461
|
input: CustomerServiceAttributeDeleteInput;
|
|
16447
16462
|
};
|
|
16448
|
-
export declare type CustomerServiceMutationApiDeleteLinkArgs = {
|
|
16449
|
-
input: CustomerServiceLinkDeleteInput;
|
|
16450
|
-
};
|
|
16451
16463
|
export declare type CustomerServiceMutationApiDeleteNoteArgs = {
|
|
16452
16464
|
input?: InputMaybe<CustomerServiceNoteDeleteInput>;
|
|
16453
16465
|
};
|
|
@@ -16583,7 +16595,6 @@ export declare type CustomerServiceOrganization = Node & {
|
|
|
16583
16595
|
entitlementList: Array<CustomerServiceEntitlement>;
|
|
16584
16596
|
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
16585
16597
|
id: Scalars['ID']['output'];
|
|
16586
|
-
links: Array<CustomerServiceLink>;
|
|
16587
16598
|
name: Scalars['String']['output'];
|
|
16588
16599
|
notes: CustomerServiceNotes;
|
|
16589
16600
|
};
|
|
@@ -16595,10 +16606,6 @@ export declare type CustomerServiceOrganizationEntitlementsArgs = {
|
|
|
16595
16606
|
filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
|
|
16596
16607
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16597
16608
|
};
|
|
16598
|
-
export declare type CustomerServiceOrganizationLinksArgs = {
|
|
16599
|
-
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
16600
|
-
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
16601
|
-
};
|
|
16602
16609
|
export declare type CustomerServiceOrganizationNotesArgs = {
|
|
16603
16610
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
16604
16611
|
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -28336,20 +28343,6 @@ export declare type GraphStoreCreateComponentImpactedByIncidentRelationshipObjec
|
|
|
28336
28343
|
reporterAri?: InputMaybe<Scalars['String']['input']>;
|
|
28337
28344
|
status?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentJiraIncidentStatusInput>;
|
|
28338
28345
|
};
|
|
28339
|
-
export declare type GraphStoreCreateFocusAreaHasAtlasGoalInput = {
|
|
28340
|
-
relationships: Array<GraphStoreCreateFocusAreaHasAtlasGoalRelationshipInput>;
|
|
28341
|
-
};
|
|
28342
|
-
export declare type GraphStoreCreateFocusAreaHasAtlasGoalPayload = Payload & {
|
|
28343
|
-
__typename?: 'GraphStoreCreateFocusAreaHasAtlasGoalPayload';
|
|
28344
|
-
errors?: Maybe<Array<MutationError>>;
|
|
28345
|
-
success: Scalars['Boolean']['output'];
|
|
28346
|
-
};
|
|
28347
|
-
export declare type GraphStoreCreateFocusAreaHasAtlasGoalRelationshipInput = {
|
|
28348
|
-
from: Scalars['ID']['input'];
|
|
28349
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
28350
|
-
to: Scalars['ID']['input'];
|
|
28351
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
28352
|
-
};
|
|
28353
28346
|
export declare type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
28354
28347
|
relationships: Array<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
28355
28348
|
};
|
|
@@ -28685,19 +28678,6 @@ export declare type GraphStoreDeleteComponentImpactedByIncidentRelationshipInput
|
|
|
28685
28678
|
from: Scalars['ID']['input'];
|
|
28686
28679
|
to: Scalars['ID']['input'];
|
|
28687
28680
|
};
|
|
28688
|
-
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalInput = {
|
|
28689
|
-
relationships: Array<GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput>;
|
|
28690
|
-
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28691
|
-
};
|
|
28692
|
-
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalPayload = Payload & {
|
|
28693
|
-
__typename?: 'GraphStoreDeleteFocusAreaHasAtlasGoalPayload';
|
|
28694
|
-
errors?: Maybe<Array<MutationError>>;
|
|
28695
|
-
success: Scalars['Boolean']['output'];
|
|
28696
|
-
};
|
|
28697
|
-
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput = {
|
|
28698
|
-
from: Scalars['ID']['input'];
|
|
28699
|
-
to: Scalars['ID']['input'];
|
|
28700
|
-
};
|
|
28701
28681
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
28702
28682
|
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
28703
28683
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28970,10 +28950,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectSortInput = {
|
|
|
28970
28950
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28971
28951
|
};
|
|
28972
28952
|
export declare type GraphStoreFocusAreaHasAtlasGoalSortInput = {
|
|
28973
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
28974
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
28975
28953
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28976
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
28977
28954
|
};
|
|
28978
28955
|
export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
|
|
28979
28956
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -32616,7 +32593,6 @@ export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
|
32616
32593
|
export declare type GraphStoreMutation = {
|
|
32617
32594
|
__typename?: 'GraphStoreMutation';
|
|
32618
32595
|
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
32619
|
-
createFocusAreaHasAtlasGoal?: Maybe<GraphStoreCreateFocusAreaHasAtlasGoalPayload>;
|
|
32620
32596
|
createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
32621
32597
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
32622
32598
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
@@ -32638,7 +32614,6 @@ export declare type GraphStoreMutation = {
|
|
|
32638
32614
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
32639
32615
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
32640
32616
|
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
32641
|
-
deleteFocusAreaHasAtlasGoal?: Maybe<GraphStoreDeleteFocusAreaHasAtlasGoalPayload>;
|
|
32642
32617
|
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
32643
32618
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
32644
32619
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
@@ -32663,9 +32638,6 @@ export declare type GraphStoreMutation = {
|
|
|
32663
32638
|
export declare type GraphStoreMutationCreateComponentImpactedByIncidentArgs = {
|
|
32664
32639
|
input?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentInput>;
|
|
32665
32640
|
};
|
|
32666
|
-
export declare type GraphStoreMutationCreateFocusAreaHasAtlasGoalArgs = {
|
|
32667
|
-
input?: InputMaybe<GraphStoreCreateFocusAreaHasAtlasGoalInput>;
|
|
32668
|
-
};
|
|
32669
32641
|
export declare type GraphStoreMutationCreateIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
32670
32642
|
input?: InputMaybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
32671
32643
|
};
|
|
@@ -32729,9 +32701,6 @@ export declare type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
|
32729
32701
|
export declare type GraphStoreMutationDeleteComponentImpactedByIncidentArgs = {
|
|
32730
32702
|
input?: InputMaybe<GraphStoreDeleteComponentImpactedByIncidentInput>;
|
|
32731
32703
|
};
|
|
32732
|
-
export declare type GraphStoreMutationDeleteFocusAreaHasAtlasGoalArgs = {
|
|
32733
|
-
input?: InputMaybe<GraphStoreDeleteFocusAreaHasAtlasGoalInput>;
|
|
32734
|
-
};
|
|
32735
32704
|
export declare type GraphStoreMutationDeleteIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
32736
32705
|
input?: InputMaybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
32737
32706
|
};
|
|
@@ -33556,12 +33525,10 @@ export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge
|
|
|
33556
33525
|
};
|
|
33557
33526
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseUnion = MercuryFocusArea;
|
|
33558
33527
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectUnion = DevOpsProjectDetails;
|
|
33559
|
-
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection = HasPageInfo &
|
|
33528
|
+
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection = HasPageInfo & {
|
|
33560
33529
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection';
|
|
33561
33530
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalEdge>>>;
|
|
33562
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33563
33531
|
pageInfo: PageInfo;
|
|
33564
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33565
33532
|
};
|
|
33566
33533
|
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalEdge = {
|
|
33567
33534
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasAtlasGoalEdge';
|
|
@@ -33571,12 +33538,10 @@ export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalEdge = {
|
|
|
33571
33538
|
lastUpdated: Scalars['DateTime']['output'];
|
|
33572
33539
|
node?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalUnion>;
|
|
33573
33540
|
};
|
|
33574
|
-
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection = HasPageInfo &
|
|
33541
|
+
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection = HasPageInfo & {
|
|
33575
33542
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection';
|
|
33576
33543
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseEdge>>>;
|
|
33577
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33578
33544
|
pageInfo: PageInfo;
|
|
33579
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33580
33545
|
};
|
|
33581
33546
|
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseEdge = {
|
|
33582
33547
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseEdge';
|
|
@@ -39524,6 +39489,10 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
|
|
|
39524
39489
|
errors?: Maybe<Array<MutationError>>;
|
|
39525
39490
|
success: Scalars['Boolean']['output'];
|
|
39526
39491
|
};
|
|
39492
|
+
export declare type JiraArchiveJourneyConfigurationInput = {
|
|
39493
|
+
id: Scalars['ID']['input'];
|
|
39494
|
+
version: Scalars['Long']['input'];
|
|
39495
|
+
};
|
|
39527
39496
|
export declare type JiraArchivedIssue = {
|
|
39528
39497
|
__typename?: 'JiraArchivedIssue';
|
|
39529
39498
|
archivedBy?: Maybe<User>;
|
|
@@ -42252,6 +42221,10 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
42252
42221
|
name: Scalars['String']['output'];
|
|
42253
42222
|
type: Scalars['String']['output'];
|
|
42254
42223
|
};
|
|
42224
|
+
export declare type JiraDisableJourneyConfigurationInput = {
|
|
42225
|
+
id: Scalars['ID']['input'];
|
|
42226
|
+
version: Scalars['Long']['input'];
|
|
42227
|
+
};
|
|
42255
42228
|
export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
|
|
42256
42229
|
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42257
42230
|
};
|
|
@@ -43410,6 +43383,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
43410
43383
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
43411
43384
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
43412
43385
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
43386
|
+
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
43413
43387
|
hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
|
|
43414
43388
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
43415
43389
|
hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44531,6 +44505,7 @@ export declare type JiraIssueSearchView = Node & {
|
|
|
44531
44505
|
id: Scalars['ID']['output'];
|
|
44532
44506
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44533
44507
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
44508
|
+
viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
44534
44509
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
44535
44510
|
};
|
|
44536
44511
|
export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
@@ -44540,10 +44515,18 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
44540
44515
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44541
44516
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
44542
44517
|
};
|
|
44518
|
+
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
44519
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
44520
|
+
};
|
|
44543
44521
|
export declare type JiraIssueSearchViewConfigInput = {
|
|
44544
44522
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
44545
44523
|
viewInput?: InputMaybe<JiraIssueSearchViewInput>;
|
|
44546
44524
|
};
|
|
44525
|
+
export declare type JiraIssueSearchViewConfigSettings = {
|
|
44526
|
+
__typename?: 'JiraIssueSearchViewConfigSettings';
|
|
44527
|
+
canEnableHierarchy?: Maybe<Scalars['Boolean']['output']>;
|
|
44528
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44529
|
+
};
|
|
44547
44530
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
44548
44531
|
projectContext?: InputMaybe<JiraIssueSearchViewFieldSetsProjectContext>;
|
|
44549
44532
|
};
|
|
@@ -44598,7 +44581,13 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
44598
44581
|
JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
44599
44582
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
44600
44583
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
44584
|
+
JiraForgeDateField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
44585
|
+
JiraForgeDatetimeField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
44586
|
+
JiraForgeNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
44587
|
+
JiraForgeObjectField?: InputMaybe<Array<JiraUpdateForgeObjectFieldInput>>;
|
|
44601
44588
|
JiraForgeStringField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
44589
|
+
JiraForgeStringsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
44590
|
+
JiraForgeUserField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
44602
44591
|
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
44603
44592
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
44604
44593
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
@@ -45897,6 +45886,7 @@ export declare type JiraMutation = {
|
|
|
45897
45886
|
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
45898
45887
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
45899
45888
|
answerApprovalDecision?: Maybe<JiraAnswerApprovalDecisionPayload>;
|
|
45889
|
+
archiveJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
45900
45890
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
45901
45891
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
45902
45892
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
@@ -45931,6 +45921,7 @@ export declare type JiraMutation = {
|
|
|
45931
45921
|
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
45932
45922
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
45933
45923
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
45924
|
+
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
45934
45925
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
45935
45926
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
45936
45927
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
@@ -46078,6 +46069,10 @@ export declare type JiraMutationAnswerApprovalDecisionArgs = {
|
|
|
46078
46069
|
cloudId: Scalars['ID']['input'];
|
|
46079
46070
|
input: JiraAnswerApprovalDecisionInput;
|
|
46080
46071
|
};
|
|
46072
|
+
export declare type JiraMutationArchiveJiraJourneyConfigurationArgs = {
|
|
46073
|
+
cloudId: Scalars['ID']['input'];
|
|
46074
|
+
input: JiraArchiveJourneyConfigurationInput;
|
|
46075
|
+
};
|
|
46081
46076
|
export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
46082
46077
|
input: JiraAssignRelatedWorkInput;
|
|
46083
46078
|
};
|
|
@@ -46190,6 +46185,10 @@ export declare type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
|
46190
46185
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
46191
46186
|
input: JiraDeleteShortcutInput;
|
|
46192
46187
|
};
|
|
46188
|
+
export declare type JiraMutationDisableJiraJourneyConfigurationArgs = {
|
|
46189
|
+
cloudId: Scalars['ID']['input'];
|
|
46190
|
+
input: JiraDisableJourneyConfigurationInput;
|
|
46191
|
+
};
|
|
46193
46192
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
46194
46193
|
cloudId: Scalars['ID']['input'];
|
|
46195
46194
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
@@ -47540,6 +47539,7 @@ export declare type JiraProject = Node & {
|
|
|
47540
47539
|
jsmChatSlackConfig?: Maybe<JsmChatSlackConfig>;
|
|
47541
47540
|
jwmDefaultSavedView?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
47542
47541
|
key: Scalars['String']['output'];
|
|
47542
|
+
knowledgeBaseArticlesCount?: Maybe<KnowledgeBaseArticleCountResponse>;
|
|
47543
47543
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
47544
47544
|
lastUpdatedFormatted?: Maybe<Scalars['String']['output']>;
|
|
47545
47545
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -47636,6 +47636,9 @@ export declare type JiraProjectIssueTypesArgs = {
|
|
|
47636
47636
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47637
47637
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47638
47638
|
};
|
|
47639
|
+
export declare type JiraProjectKnowledgeBaseArticlesCountArgs = {
|
|
47640
|
+
cloudId: Scalars['ID']['input'];
|
|
47641
|
+
};
|
|
47639
47642
|
export declare type JiraProjectLastUpdatedFormattedArgs = {
|
|
47640
47643
|
format?: InputMaybe<JiraProjectDateTimeFormat>;
|
|
47641
47644
|
};
|
|
@@ -48872,6 +48875,7 @@ export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
|
48872
48875
|
export declare type JiraQueryIssueSearchViewResultArgs = {
|
|
48873
48876
|
cloudId: Scalars['ID']['input'];
|
|
48874
48877
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
48878
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
48875
48879
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
48876
48880
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
48877
48881
|
};
|
|
@@ -54527,7 +54531,6 @@ export declare type JsmChatUpdatedProjectSettings = {
|
|
|
54527
54531
|
requesterThreadMessageDisabled: Scalars['Boolean']['input'];
|
|
54528
54532
|
};
|
|
54529
54533
|
export declare type JsmChatWebAddConversationInteractionInput = {
|
|
54530
|
-
authorId: Scalars['String']['input'];
|
|
54531
54534
|
interactionType: JsmChatWebInteractionType;
|
|
54532
54535
|
jiraFieldId?: InputMaybe<Scalars['String']['input']>;
|
|
54533
54536
|
selectedValue: Scalars['String']['input'];
|
|
@@ -54881,6 +54884,7 @@ export declare type KnowledgeBaseArticleCountError = {
|
|
|
54881
54884
|
extensions: Array<QueryErrorExtension>;
|
|
54882
54885
|
message: Scalars['String']['output'];
|
|
54883
54886
|
};
|
|
54887
|
+
export declare type KnowledgeBaseArticleCountResponse = KnowledgeBaseArticleCountError | KnowledgeBaseArticleCountSource;
|
|
54884
54888
|
export declare type KnowledgeBaseArticleCountSource = {
|
|
54885
54889
|
__typename?: 'KnowledgeBaseArticleCountSource';
|
|
54886
54890
|
container: Scalars['ID']['output'];
|
|
@@ -55146,6 +55150,11 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
|
55146
55150
|
export declare type KnowledgeDiscoveryEntity = {
|
|
55147
55151
|
id: Scalars['ID']['output'];
|
|
55148
55152
|
};
|
|
55153
|
+
export declare type KnowledgeDiscoveryEntityGroup = {
|
|
55154
|
+
__typename?: 'KnowledgeDiscoveryEntityGroup';
|
|
55155
|
+
entities?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
|
|
55156
|
+
entityType: KnowledgeDiscoveryEntityType;
|
|
55157
|
+
};
|
|
55149
55158
|
export declare enum KnowledgeDiscoveryEntityType {
|
|
55150
55159
|
ConfluenceBlogpost = "CONFLUENCE_BLOGPOST",
|
|
55151
55160
|
ConfluenceDocument = "CONFLUENCE_DOCUMENT",
|
|
@@ -55226,6 +55235,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
55226
55235
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
55227
55236
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
55228
55237
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
55238
|
+
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
55229
55239
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
55230
55240
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
55231
55241
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
@@ -55284,6 +55294,12 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
|
55284
55294
|
relatedEntityType: KnowledgeDiscoveryEntityType;
|
|
55285
55295
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55286
55296
|
};
|
|
55297
|
+
export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
55298
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
55299
|
+
query: Scalars['String']['input'];
|
|
55300
|
+
relatedEntityRequests?: InputMaybe<KnowledgeDiscoveryRelatedEntityRequests>;
|
|
55301
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55302
|
+
};
|
|
55287
55303
|
export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
55288
55304
|
orgId: Scalars['String']['input'];
|
|
55289
55305
|
teamName: Scalars['String']['input'];
|
|
@@ -55313,6 +55329,13 @@ export declare type KnowledgeDiscoveryRelatedEntityConnection = {
|
|
|
55313
55329
|
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
|
|
55314
55330
|
pageInfo: KnowledgeDiscoveryPageInfo;
|
|
55315
55331
|
};
|
|
55332
|
+
export declare type KnowledgeDiscoveryRelatedEntityRequest = {
|
|
55333
|
+
count: Scalars['Int']['input'];
|
|
55334
|
+
entityType: KnowledgeDiscoveryEntityType;
|
|
55335
|
+
};
|
|
55336
|
+
export declare type KnowledgeDiscoveryRelatedEntityRequests = {
|
|
55337
|
+
requests?: InputMaybe<Array<KnowledgeDiscoveryRelatedEntityRequest>>;
|
|
55338
|
+
};
|
|
55316
55339
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
55317
55340
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
55318
55341
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -55320,6 +55343,11 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
55320
55343
|
Person = "PERSON",
|
|
55321
55344
|
Team = "TEAM"
|
|
55322
55345
|
}
|
|
55346
|
+
export declare type KnowledgeDiscoverySearchRelatedEntities = {
|
|
55347
|
+
__typename?: 'KnowledgeDiscoverySearchRelatedEntities';
|
|
55348
|
+
entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
|
|
55349
|
+
};
|
|
55350
|
+
export declare type KnowledgeDiscoverySearchRelatedEntitiesResult = KnowledgeDiscoverySearchRelatedEntities | QueryError;
|
|
55323
55351
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
55324
55352
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
55325
55353
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -55954,9 +55982,7 @@ export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
|
55954
55982
|
scopes: Array<Scalars['String']['output']>;
|
|
55955
55983
|
};
|
|
55956
55984
|
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
55957
|
-
descriptorId: Scalars['String']['input'];
|
|
55958
55985
|
href: Scalars['String']['input'];
|
|
55959
|
-
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
55960
55986
|
};
|
|
55961
55987
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
55962
55988
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
@@ -56384,7 +56410,6 @@ export declare type MarketplaceConsolePluginFrameworkAttributes = {
|
|
|
56384
56410
|
pluginFrameworkType: MarketplaceConsolePluginFrameworkType;
|
|
56385
56411
|
};
|
|
56386
56412
|
export declare type MarketplaceConsolePluginFrameworkAttributesInput = {
|
|
56387
|
-
artifactId: Scalars['String']['input'];
|
|
56388
56413
|
href: Scalars['String']['input'];
|
|
56389
56414
|
};
|
|
56390
56415
|
export declare enum MarketplaceConsolePluginFrameworkType {
|
|
@@ -56622,7 +56647,6 @@ export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
|
|
|
56622
56647
|
artifactId: Scalars['ID']['output'];
|
|
56623
56648
|
};
|
|
56624
56649
|
export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
|
|
56625
|
-
artifactId: Scalars['String']['input'];
|
|
56626
56650
|
href: Scalars['String']['input'];
|
|
56627
56651
|
};
|
|
56628
56652
|
export declare enum MarketplaceEntityStatus {
|
|
@@ -60385,11 +60409,7 @@ export declare type PeapMutationApi = {
|
|
|
60385
60409
|
programEnrollment: PeapProgramEnrollmentMutation;
|
|
60386
60410
|
};
|
|
60387
60411
|
export declare type PeapNewProgramInput = {
|
|
60388
|
-
description: Scalars['String']['input'];
|
|
60389
|
-
documentationURL: Scalars['String']['input'];
|
|
60390
60412
|
name: Scalars['String']['input'];
|
|
60391
|
-
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
60392
|
-
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
60393
60413
|
};
|
|
60394
60414
|
export declare type PeapProgram = {
|
|
60395
60415
|
__typename?: 'PEAPProgram';
|
|
@@ -60398,12 +60418,9 @@ export declare type PeapProgram = {
|
|
|
60398
60418
|
changeTicket?: Maybe<Scalars['String']['output']>;
|
|
60399
60419
|
completedAt?: Maybe<Scalars['Date']['output']>;
|
|
60400
60420
|
createdAt: Scalars['Date']['output'];
|
|
60401
|
-
description: Scalars['String']['output'];
|
|
60402
|
-
documentationURL: Scalars['String']['output'];
|
|
60403
60421
|
id: Scalars['ID']['output'];
|
|
60404
60422
|
internal?: Maybe<PeapProgramInternalData>;
|
|
60405
60423
|
name: Scalars['String']['output'];
|
|
60406
|
-
serviceId?: Maybe<Scalars['String']['output']>;
|
|
60407
60424
|
status: PeapProgramStatus;
|
|
60408
60425
|
updatedAt: Scalars['Date']['output'];
|
|
60409
60426
|
};
|
|
@@ -60443,7 +60460,6 @@ export declare type PeapProgramInternalData = {
|
|
|
60443
60460
|
__typename?: 'PEAPProgramInternalData';
|
|
60444
60461
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
60445
60462
|
owner?: Maybe<User>;
|
|
60446
|
-
teamChannel?: Maybe<Scalars['String']['output']>;
|
|
60447
60463
|
};
|
|
60448
60464
|
export declare type PeapProgramMutationResponse = Payload & {
|
|
60449
60465
|
__typename?: 'PEAPProgramMutationResponse';
|
|
@@ -60455,8 +60471,7 @@ export declare enum PeapProgramStatus {
|
|
|
60455
60471
|
Abandoned = "ABANDONED",
|
|
60456
60472
|
Active = "ACTIVE",
|
|
60457
60473
|
Ended = "ENDED",
|
|
60458
|
-
New = "NEW"
|
|
60459
|
-
Planned = "PLANNED"
|
|
60474
|
+
New = "NEW"
|
|
60460
60475
|
}
|
|
60461
60476
|
export declare type PeapQueryApi = {
|
|
60462
60477
|
__typename?: 'PEAPQueryApi';
|
|
@@ -60474,14 +60489,9 @@ export declare type PeapQueryApiProgramsArgs = {
|
|
|
60474
60489
|
params?: InputMaybe<PeapQueryParams>;
|
|
60475
60490
|
};
|
|
60476
60491
|
export declare type PeapQueryParams = {
|
|
60477
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
60478
60492
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
60479
60493
|
status?: InputMaybe<Array<PeapProgramStatus>>;
|
|
60480
60494
|
};
|
|
60481
|
-
export declare type PeapSiteEnrollmentQueryInput = {
|
|
60482
|
-
cloudId: Scalars['ID']['input'];
|
|
60483
|
-
programId: Scalars['ID']['input'];
|
|
60484
|
-
};
|
|
60485
60495
|
export declare type PeapSiteEnrollmentStatus = {
|
|
60486
60496
|
__typename?: 'PEAPSiteEnrollmentStatus';
|
|
60487
60497
|
cloudId: Scalars['ID']['output'];
|
|
@@ -60491,11 +60501,7 @@ export declare type PeapSiteEnrollmentStatus = {
|
|
|
60491
60501
|
success: Scalars['Boolean']['output'];
|
|
60492
60502
|
};
|
|
60493
60503
|
export declare type PeapUpdateProgramInput = {
|
|
60494
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
60495
|
-
documentationURL?: InputMaybe<Scalars['String']['input']>;
|
|
60496
60504
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
60497
|
-
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
60498
|
-
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
60499
60505
|
};
|
|
60500
60506
|
export declare type PageInfo = {
|
|
60501
60507
|
__typename?: 'PageInfo';
|
|
@@ -60944,20 +60950,7 @@ export declare type PolarisDeleteReactionPayload = Payload & {
|
|
|
60944
60950
|
success: Scalars['Boolean']['output'];
|
|
60945
60951
|
};
|
|
60946
60952
|
export declare enum PolarisFieldType {
|
|
60947
|
-
PolarisIdeaDateField = "PolarisIdeaDateField",
|
|
60948
|
-
PolarisIdeaDateTimeField = "PolarisIdeaDateTimeField",
|
|
60949
|
-
PolarisIdeaExternalReferenceField = "PolarisIdeaExternalReferenceField",
|
|
60950
|
-
PolarisIdeaExternalReferencePropertyField = "PolarisIdeaExternalReferencePropertyField",
|
|
60951
|
-
PolarisIdeaIntervalField = "PolarisIdeaIntervalField",
|
|
60952
|
-
PolarisIdeaLabelsField = "PolarisIdeaLabelsField",
|
|
60953
|
-
PolarisIdeaNumberField = "PolarisIdeaNumberField",
|
|
60954
|
-
PolarisIdeaOptionField = "PolarisIdeaOptionField",
|
|
60955
|
-
PolarisIdeaOptionsField = "PolarisIdeaOptionsField",
|
|
60956
60953
|
PolarisIdeaPlayField = "PolarisIdeaPlayField",
|
|
60957
|
-
PolarisIdeaReactionsField = "PolarisIdeaReactionsField",
|
|
60958
|
-
PolarisIdeaStringField = "PolarisIdeaStringField",
|
|
60959
|
-
PolarisIdeaUserField = "PolarisIdeaUserField",
|
|
60960
|
-
PolarisIdeaUsersField = "PolarisIdeaUsersField",
|
|
60961
60954
|
PolarisJiraField = "PolarisJiraField"
|
|
60962
60955
|
}
|
|
60963
60956
|
export declare type PolarisFilterInput = {
|
|
@@ -60988,493 +60981,14 @@ export declare type PolarisIdea = {
|
|
|
60988
60981
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']['output']>;
|
|
60989
60982
|
lastInsightsViewedTimestamp?: Maybe<Scalars['String']['output']>;
|
|
60990
60983
|
};
|
|
60991
|
-
export declare type PolarisIdeaArchivedByField = PolarisIdeaField & {
|
|
60992
|
-
__typename?: 'PolarisIdeaArchivedByField';
|
|
60993
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
60994
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
60995
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
60996
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
60997
|
-
editable: Scalars['Boolean']['output'];
|
|
60998
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
60999
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61000
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61001
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61002
|
-
groupable: Scalars['Boolean']['output'];
|
|
61003
|
-
id: Scalars['ID']['output'];
|
|
61004
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61005
|
-
label: Scalars['String']['output'];
|
|
61006
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61007
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61008
|
-
sortable: Scalars['Boolean']['output'];
|
|
61009
|
-
};
|
|
61010
|
-
export declare type PolarisIdeaArchivedField = PolarisIdeaField & {
|
|
61011
|
-
__typename?: 'PolarisIdeaArchivedField';
|
|
61012
|
-
archivedOption: PolarisIdeaFieldOption;
|
|
61013
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61014
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61015
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61016
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61017
|
-
editable: Scalars['Boolean']['output'];
|
|
61018
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61019
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61020
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61021
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61022
|
-
groupable: Scalars['Boolean']['output'];
|
|
61023
|
-
id: Scalars['ID']['output'];
|
|
61024
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61025
|
-
label: Scalars['String']['output'];
|
|
61026
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61027
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61028
|
-
sortable: Scalars['Boolean']['output'];
|
|
61029
|
-
};
|
|
61030
|
-
export declare type PolarisIdeaArchivedOnField = PolarisIdeaField & {
|
|
61031
|
-
__typename?: 'PolarisIdeaArchivedOnField';
|
|
61032
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61033
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61034
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61035
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61036
|
-
editable: Scalars['Boolean']['output'];
|
|
61037
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61038
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61039
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61040
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61041
|
-
groupable: Scalars['Boolean']['output'];
|
|
61042
|
-
id: Scalars['ID']['output'];
|
|
61043
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61044
|
-
label: Scalars['String']['output'];
|
|
61045
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61046
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61047
|
-
sortable: Scalars['Boolean']['output'];
|
|
61048
|
-
};
|
|
61049
|
-
export declare type PolarisIdeaDateField = PolarisIdeaField & {
|
|
61050
|
-
__typename?: 'PolarisIdeaDateField';
|
|
61051
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61052
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61053
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61054
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61055
|
-
editable: Scalars['Boolean']['output'];
|
|
61056
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61057
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61058
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61059
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61060
|
-
groupable: Scalars['Boolean']['output'];
|
|
61061
|
-
id: Scalars['ID']['output'];
|
|
61062
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61063
|
-
label: Scalars['String']['output'];
|
|
61064
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61065
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61066
|
-
sortable: Scalars['Boolean']['output'];
|
|
61067
|
-
};
|
|
61068
|
-
export declare type PolarisIdeaDateTimeField = PolarisIdeaField & {
|
|
61069
|
-
__typename?: 'PolarisIdeaDateTimeField';
|
|
61070
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61071
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61072
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61073
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61074
|
-
editable: Scalars['Boolean']['output'];
|
|
61075
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61076
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61077
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61078
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61079
|
-
groupable: Scalars['Boolean']['output'];
|
|
61080
|
-
id: Scalars['ID']['output'];
|
|
61081
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61082
|
-
label: Scalars['String']['output'];
|
|
61083
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61084
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61085
|
-
sortable: Scalars['Boolean']['output'];
|
|
61086
|
-
};
|
|
61087
|
-
export declare type PolarisIdeaDocumentField = PolarisIdeaField & {
|
|
61088
|
-
__typename?: 'PolarisIdeaDocumentField';
|
|
61089
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61090
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61091
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61092
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61093
|
-
editable: Scalars['Boolean']['output'];
|
|
61094
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61095
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61096
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61097
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61098
|
-
groupable: Scalars['Boolean']['output'];
|
|
61099
|
-
id: Scalars['ID']['output'];
|
|
61100
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61101
|
-
label: Scalars['String']['output'];
|
|
61102
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61103
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61104
|
-
sortable: Scalars['Boolean']['output'];
|
|
61105
|
-
};
|
|
61106
|
-
export declare type PolarisIdeaExternalReferenceField = PolarisIdeaField & {
|
|
61107
|
-
__typename?: 'PolarisIdeaExternalReferenceField';
|
|
61108
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61109
|
-
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
61110
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61111
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61112
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61113
|
-
editable: Scalars['Boolean']['output'];
|
|
61114
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61115
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61116
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61117
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61118
|
-
groupable: Scalars['Boolean']['output'];
|
|
61119
|
-
id: Scalars['ID']['output'];
|
|
61120
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61121
|
-
label: Scalars['String']['output'];
|
|
61122
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61123
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61124
|
-
sortable: Scalars['Boolean']['output'];
|
|
61125
|
-
};
|
|
61126
|
-
export declare type PolarisIdeaExternalReferencePropertyField = PolarisIdeaField & {
|
|
61127
|
-
__typename?: 'PolarisIdeaExternalReferencePropertyField';
|
|
61128
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61129
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61130
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61131
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61132
|
-
editable: Scalars['Boolean']['output'];
|
|
61133
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61134
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61135
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61136
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61137
|
-
groupable: Scalars['Boolean']['output'];
|
|
61138
|
-
id: Scalars['ID']['output'];
|
|
61139
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61140
|
-
label: Scalars['String']['output'];
|
|
61141
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61142
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61143
|
-
sortable: Scalars['Boolean']['output'];
|
|
61144
|
-
};
|
|
61145
60984
|
export declare type PolarisIdeaField = {
|
|
61146
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61147
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61148
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61149
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61150
|
-
editable: Scalars['Boolean']['output'];
|
|
61151
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61152
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61153
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61154
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61155
|
-
groupable: Scalars['Boolean']['output'];
|
|
61156
|
-
id: Scalars['ID']['output'];
|
|
61157
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61158
|
-
label: Scalars['String']['output'];
|
|
61159
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61160
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61161
|
-
sortable: Scalars['Boolean']['output'];
|
|
61162
|
-
};
|
|
61163
|
-
export declare type PolarisIdeaFieldOption = {
|
|
61164
|
-
__typename?: 'PolarisIdeaFieldOption';
|
|
61165
|
-
id: Scalars['ID']['output'];
|
|
61166
|
-
label: Scalars['String']['output'];
|
|
61167
|
-
weight: Scalars['Int']['output'];
|
|
61168
|
-
};
|
|
61169
|
-
export declare type PolarisIdeaIntervalField = PolarisIdeaField & {
|
|
61170
|
-
__typename?: 'PolarisIdeaIntervalField';
|
|
61171
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61172
|
-
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
61173
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61174
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61175
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61176
|
-
editable: Scalars['Boolean']['output'];
|
|
61177
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61178
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61179
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61180
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61181
|
-
groupable: Scalars['Boolean']['output'];
|
|
61182
|
-
id: Scalars['ID']['output'];
|
|
61183
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61184
|
-
label: Scalars['String']['output'];
|
|
61185
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61186
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61187
|
-
sortable: Scalars['Boolean']['output'];
|
|
61188
|
-
};
|
|
61189
|
-
export declare type PolarisIdeaIssueCommentsField = PolarisIdeaField & {
|
|
61190
|
-
__typename?: 'PolarisIdeaIssueCommentsField';
|
|
61191
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61192
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61193
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61194
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61195
|
-
editable: Scalars['Boolean']['output'];
|
|
61196
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61197
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61198
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61199
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61200
|
-
groupable: Scalars['Boolean']['output'];
|
|
61201
60985
|
id: Scalars['ID']['output'];
|
|
61202
60986
|
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61203
|
-
label: Scalars['String']['output'];
|
|
61204
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61205
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61206
|
-
sortable: Scalars['Boolean']['output'];
|
|
61207
|
-
};
|
|
61208
|
-
export declare type PolarisIdeaIssueIdField = PolarisIdeaField & {
|
|
61209
|
-
__typename?: 'PolarisIdeaIssueIdField';
|
|
61210
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61211
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61212
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61213
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61214
|
-
editable: Scalars['Boolean']['output'];
|
|
61215
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61216
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61217
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61218
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61219
|
-
groupable: Scalars['Boolean']['output'];
|
|
61220
|
-
id: Scalars['ID']['output'];
|
|
61221
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61222
|
-
label: Scalars['String']['output'];
|
|
61223
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61224
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61225
|
-
sortable: Scalars['Boolean']['output'];
|
|
61226
|
-
};
|
|
61227
|
-
export declare type PolarisIdeaIssueTypeField = PolarisIdeaField & {
|
|
61228
|
-
__typename?: 'PolarisIdeaIssueTypeField';
|
|
61229
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61230
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61231
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61232
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61233
|
-
editable: Scalars['Boolean']['output'];
|
|
61234
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61235
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61236
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61237
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61238
|
-
groupable: Scalars['Boolean']['output'];
|
|
61239
|
-
id: Scalars['ID']['output'];
|
|
61240
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61241
|
-
label: Scalars['String']['output'];
|
|
61242
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61243
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61244
|
-
sortable: Scalars['Boolean']['output'];
|
|
61245
|
-
};
|
|
61246
|
-
export declare type PolarisIdeaKeyField = PolarisIdeaField & {
|
|
61247
|
-
__typename?: 'PolarisIdeaKeyField';
|
|
61248
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61249
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61250
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61251
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61252
|
-
editable: Scalars['Boolean']['output'];
|
|
61253
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61254
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61255
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61256
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61257
|
-
groupable: Scalars['Boolean']['output'];
|
|
61258
|
-
id: Scalars['ID']['output'];
|
|
61259
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61260
|
-
label: Scalars['String']['output'];
|
|
61261
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61262
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61263
|
-
sortable: Scalars['Boolean']['output'];
|
|
61264
|
-
};
|
|
61265
|
-
export declare type PolarisIdeaLabelsField = PolarisIdeaField & {
|
|
61266
|
-
__typename?: 'PolarisIdeaLabelsField';
|
|
61267
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61268
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61269
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61270
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61271
|
-
editable: Scalars['Boolean']['output'];
|
|
61272
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61273
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61274
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61275
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61276
|
-
groupable: Scalars['Boolean']['output'];
|
|
61277
|
-
id: Scalars['ID']['output'];
|
|
61278
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61279
|
-
label: Scalars['String']['output'];
|
|
61280
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61281
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61282
|
-
sortable: Scalars['Boolean']['output'];
|
|
61283
|
-
};
|
|
61284
|
-
export declare type PolarisIdeaLinkedIssuesField = PolarisIdeaField & {
|
|
61285
|
-
__typename?: 'PolarisIdeaLinkedIssuesField';
|
|
61286
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61287
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61288
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61289
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61290
|
-
editable: Scalars['Boolean']['output'];
|
|
61291
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61292
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61293
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61294
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61295
|
-
groupable: Scalars['Boolean']['output'];
|
|
61296
|
-
id: Scalars['ID']['output'];
|
|
61297
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61298
|
-
label: Scalars['String']['output'];
|
|
61299
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61300
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61301
|
-
sortable: Scalars['Boolean']['output'];
|
|
61302
|
-
};
|
|
61303
|
-
export declare type PolarisIdeaLinkedIssuesProgressField = PolarisIdeaField & {
|
|
61304
|
-
__typename?: 'PolarisIdeaLinkedIssuesProgressField';
|
|
61305
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61306
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61307
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61308
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61309
|
-
editable: Scalars['Boolean']['output'];
|
|
61310
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61311
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61312
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61313
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61314
|
-
groupable: Scalars['Boolean']['output'];
|
|
61315
|
-
id: Scalars['ID']['output'];
|
|
61316
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61317
|
-
label: Scalars['String']['output'];
|
|
61318
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61319
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61320
|
-
sortable: Scalars['Boolean']['output'];
|
|
61321
|
-
};
|
|
61322
|
-
export declare type PolarisIdeaNumberField = PolarisIdeaField & {
|
|
61323
|
-
__typename?: 'PolarisIdeaNumberField';
|
|
61324
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61325
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61326
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61327
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61328
|
-
editable: Scalars['Boolean']['output'];
|
|
61329
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61330
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61331
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61332
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61333
|
-
groupable: Scalars['Boolean']['output'];
|
|
61334
|
-
id: Scalars['ID']['output'];
|
|
61335
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61336
|
-
label: Scalars['String']['output'];
|
|
61337
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61338
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61339
|
-
sortable: Scalars['Boolean']['output'];
|
|
61340
|
-
};
|
|
61341
|
-
export declare type PolarisIdeaOptionField = PolarisIdeaField & {
|
|
61342
|
-
__typename?: 'PolarisIdeaOptionField';
|
|
61343
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61344
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61345
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61346
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61347
|
-
editable: Scalars['Boolean']['output'];
|
|
61348
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61349
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61350
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61351
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61352
|
-
groupable: Scalars['Boolean']['output'];
|
|
61353
|
-
id: Scalars['ID']['output'];
|
|
61354
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61355
|
-
label: Scalars['String']['output'];
|
|
61356
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61357
|
-
options?: Maybe<Array<PolarisIdeaFieldOption>>;
|
|
61358
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61359
|
-
sortable: Scalars['Boolean']['output'];
|
|
61360
|
-
};
|
|
61361
|
-
export declare type PolarisIdeaOptionsField = PolarisIdeaField & {
|
|
61362
|
-
__typename?: 'PolarisIdeaOptionsField';
|
|
61363
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61364
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61365
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61366
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61367
|
-
editable: Scalars['Boolean']['output'];
|
|
61368
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61369
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61370
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61371
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61372
|
-
groupable: Scalars['Boolean']['output'];
|
|
61373
|
-
id: Scalars['ID']['output'];
|
|
61374
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61375
|
-
label: Scalars['String']['output'];
|
|
61376
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61377
|
-
options?: Maybe<Array<PolarisIdeaFieldOption>>;
|
|
61378
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61379
|
-
sortable: Scalars['Boolean']['output'];
|
|
61380
60987
|
};
|
|
61381
60988
|
export declare type PolarisIdeaPlayField = PolarisIdeaField & {
|
|
61382
60989
|
__typename?: 'PolarisIdeaPlayField';
|
|
61383
|
-
aspect?: Maybe<Scalars['String']['output']>;
|
|
61384
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61385
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61386
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61387
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61388
|
-
editable: Scalars['Boolean']['output'];
|
|
61389
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61390
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61391
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61392
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61393
|
-
groupable: Scalars['Boolean']['output'];
|
|
61394
60990
|
id: Scalars['ID']['output'];
|
|
61395
60991
|
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61396
|
-
label: Scalars['String']['output'];
|
|
61397
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61398
|
-
play?: Maybe<PolarisPlay>;
|
|
61399
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61400
|
-
sortable: Scalars['Boolean']['output'];
|
|
61401
|
-
};
|
|
61402
|
-
export declare type PolarisIdeaReactionsField = PolarisIdeaField & {
|
|
61403
|
-
__typename?: 'PolarisIdeaReactionsField';
|
|
61404
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61405
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61406
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61407
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61408
|
-
editable: Scalars['Boolean']['output'];
|
|
61409
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61410
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61411
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61412
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61413
|
-
groupable: Scalars['Boolean']['output'];
|
|
61414
|
-
id: Scalars['ID']['output'];
|
|
61415
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61416
|
-
label: Scalars['String']['output'];
|
|
61417
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61418
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61419
|
-
sortable: Scalars['Boolean']['output'];
|
|
61420
|
-
};
|
|
61421
|
-
export declare type PolarisIdeaSpecialField = PolarisIdeaField & {
|
|
61422
|
-
__typename?: 'PolarisIdeaSpecialField';
|
|
61423
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61424
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61425
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61426
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61427
|
-
editable: Scalars['Boolean']['output'];
|
|
61428
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61429
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61430
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61431
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61432
|
-
groupable: Scalars['Boolean']['output'];
|
|
61433
|
-
id: Scalars['ID']['output'];
|
|
61434
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61435
|
-
label: Scalars['String']['output'];
|
|
61436
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61437
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61438
|
-
sortable: Scalars['Boolean']['output'];
|
|
61439
|
-
specialType?: Maybe<Scalars['String']['output']>;
|
|
61440
|
-
};
|
|
61441
|
-
export declare type PolarisIdeaStatusField = PolarisIdeaField & {
|
|
61442
|
-
__typename?: 'PolarisIdeaStatusField';
|
|
61443
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61444
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61445
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61446
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61447
|
-
editable: Scalars['Boolean']['output'];
|
|
61448
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61449
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61450
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61451
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61452
|
-
groupable: Scalars['Boolean']['output'];
|
|
61453
|
-
id: Scalars['ID']['output'];
|
|
61454
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61455
|
-
label: Scalars['String']['output'];
|
|
61456
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61457
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61458
|
-
sortable: Scalars['Boolean']['output'];
|
|
61459
|
-
};
|
|
61460
|
-
export declare type PolarisIdeaStringField = PolarisIdeaField & {
|
|
61461
|
-
__typename?: 'PolarisIdeaStringField';
|
|
61462
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61463
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61464
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61465
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61466
|
-
editable: Scalars['Boolean']['output'];
|
|
61467
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61468
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61469
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61470
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61471
|
-
groupable: Scalars['Boolean']['output'];
|
|
61472
|
-
id: Scalars['ID']['output'];
|
|
61473
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61474
|
-
label: Scalars['String']['output'];
|
|
61475
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61476
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61477
|
-
sortable: Scalars['Boolean']['output'];
|
|
61478
60992
|
};
|
|
61479
60993
|
export declare type PolarisIdeaTemplate = {
|
|
61480
60994
|
__typename?: 'PolarisIdeaTemplate';
|
|
@@ -61494,44 +61008,6 @@ export declare type PolarisIdeaType = {
|
|
|
61494
61008
|
id: Scalars['ID']['output'];
|
|
61495
61009
|
name: Scalars['String']['output'];
|
|
61496
61010
|
};
|
|
61497
|
-
export declare type PolarisIdeaUserField = PolarisIdeaField & {
|
|
61498
|
-
__typename?: 'PolarisIdeaUserField';
|
|
61499
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61500
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61501
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61502
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61503
|
-
editable: Scalars['Boolean']['output'];
|
|
61504
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61505
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61506
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61507
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61508
|
-
groupable: Scalars['Boolean']['output'];
|
|
61509
|
-
id: Scalars['ID']['output'];
|
|
61510
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61511
|
-
label: Scalars['String']['output'];
|
|
61512
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61513
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61514
|
-
sortable: Scalars['Boolean']['output'];
|
|
61515
|
-
};
|
|
61516
|
-
export declare type PolarisIdeaUsersField = PolarisIdeaField & {
|
|
61517
|
-
__typename?: 'PolarisIdeaUsersField';
|
|
61518
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61519
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61520
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61521
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61522
|
-
editable: Scalars['Boolean']['output'];
|
|
61523
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61524
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61525
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61526
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61527
|
-
groupable: Scalars['Boolean']['output'];
|
|
61528
|
-
id: Scalars['ID']['output'];
|
|
61529
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61530
|
-
label: Scalars['String']['output'];
|
|
61531
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61532
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61533
|
-
sortable: Scalars['Boolean']['output'];
|
|
61534
|
-
};
|
|
61535
61011
|
export declare type PolarisIdeas = {
|
|
61536
61012
|
__typename?: 'PolarisIdeas';
|
|
61537
61013
|
ideas?: Maybe<Array<PolarisRestIdea>>;
|
|
@@ -61558,23 +61034,8 @@ export declare type PolarisIssueLinkType = {
|
|
|
61558
61034
|
};
|
|
61559
61035
|
export declare type PolarisJiraField = PolarisIdeaField & {
|
|
61560
61036
|
__typename?: 'PolarisJiraField';
|
|
61561
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61562
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61563
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61564
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61565
|
-
editable: Scalars['Boolean']['output'];
|
|
61566
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61567
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61568
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61569
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61570
|
-
groupable: Scalars['Boolean']['output'];
|
|
61571
61037
|
id: Scalars['ID']['output'];
|
|
61572
61038
|
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61573
|
-
label: Scalars['String']['output'];
|
|
61574
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61575
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61576
|
-
sortable: Scalars['Boolean']['output'];
|
|
61577
|
-
specialType?: Maybe<Scalars['String']['output']>;
|
|
61578
61039
|
};
|
|
61579
61040
|
export declare type PolarisMatrixAxis = {
|
|
61580
61041
|
__typename?: 'PolarisMatrixAxis';
|
|
@@ -62035,7 +61496,9 @@ export declare type PolarisViewTableColumnSizeInput = {
|
|
|
62035
61496
|
};
|
|
62036
61497
|
export declare enum PolarisVisualizationType {
|
|
62037
61498
|
Board = "BOARD",
|
|
61499
|
+
Collection = "COLLECTION",
|
|
62038
61500
|
Matrix = "MATRIX",
|
|
61501
|
+
Section = "SECTION",
|
|
62039
61502
|
Table = "TABLE",
|
|
62040
61503
|
Timeline = "TIMELINE",
|
|
62041
61504
|
Twoxtwo = "TWOXTWO"
|
|
@@ -62478,7 +61941,6 @@ export declare type Query = {
|
|
|
62478
61941
|
productListings: Array<ProductListingResult>;
|
|
62479
61942
|
radar_enlistment: RadarEnlistment;
|
|
62480
61943
|
radar_fieldValues: RadarFieldValuesConnection;
|
|
62481
|
-
radar_healthcheck: Scalars['String']['output'];
|
|
62482
61944
|
radar_positions: RadarPositionConnection;
|
|
62483
61945
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
62484
61946
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
@@ -63861,14 +63323,12 @@ export declare type QueryRadar_FieldValuesArgs = {
|
|
|
63861
63323
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63862
63324
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
63863
63325
|
cloudId: Scalars['ID']['input'];
|
|
63864
|
-
|
|
63326
|
+
entityType: RadarEntityType;
|
|
63327
|
+
fieldId: Scalars['ID']['input'];
|
|
63865
63328
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63866
63329
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63867
63330
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
63868
63331
|
};
|
|
63869
|
-
export declare type QueryRadar_HealthcheckArgs = {
|
|
63870
|
-
cloudId: Scalars['ID']['input'];
|
|
63871
|
-
};
|
|
63872
63332
|
export declare type QueryRadar_PositionsArgs = {
|
|
63873
63333
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63874
63334
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64019,7 +63479,7 @@ export declare type RadarEdge = {
|
|
|
64019
63479
|
export declare type RadarEnlistment = {
|
|
64020
63480
|
__typename?: 'RadarEnlistment';
|
|
64021
63481
|
cloudId: Scalars['ID']['output'];
|
|
64022
|
-
positionFields?: Maybe<Array<Maybe<
|
|
63482
|
+
positionFields?: Maybe<Array<Maybe<RadarFieldDefinition>>>;
|
|
64023
63483
|
};
|
|
64024
63484
|
export declare type RadarEntity = {
|
|
64025
63485
|
fieldValues?: Maybe<Array<Maybe<RadarFieldValueIdPair>>>;
|
|
@@ -65455,6 +64915,7 @@ export declare enum SearchBoardProductType {
|
|
|
65455
64915
|
Software = "SOFTWARE"
|
|
65456
64916
|
}
|
|
65457
64917
|
export declare type SearchCommonFilter = {
|
|
64918
|
+
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
65458
64919
|
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
65459
64920
|
};
|
|
65460
64921
|
export declare type SearchCommonRangeFilter = {
|
|
@@ -66359,9 +65820,11 @@ export declare type ShepherdActorSessionInfoInput = {
|
|
|
66359
65820
|
};
|
|
66360
65821
|
export declare type ShepherdAlert = Node & {
|
|
66361
65822
|
__typename?: 'ShepherdAlert';
|
|
65823
|
+
actor: ShepherdAlertActor;
|
|
66362
65824
|
assignee?: Maybe<ShepherdUser>;
|
|
66363
65825
|
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
66364
65826
|
createdOn: Scalars['DateTime']['output'];
|
|
65827
|
+
customFields?: Maybe<Scalars['JSON']['output']>;
|
|
66365
65828
|
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
66366
65829
|
id: Scalars['ID']['output'];
|
|
66367
65830
|
linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
|
|
@@ -66371,7 +65834,9 @@ export declare type ShepherdAlert = Node & {
|
|
|
66371
65834
|
statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
66372
65835
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
66373
65836
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
65837
|
+
time: ShepherdTime;
|
|
66374
65838
|
title: Scalars['String']['output'];
|
|
65839
|
+
type: Scalars['String']['output'];
|
|
66375
65840
|
updatedBy?: Maybe<ShepherdUser>;
|
|
66376
65841
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
66377
65842
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -66382,6 +65847,7 @@ export declare enum ShepherdAlertAction {
|
|
|
66382
65847
|
Restrict = "RESTRICT",
|
|
66383
65848
|
UpdateDataClassification = "UPDATE_DATA_CLASSIFICATION"
|
|
66384
65849
|
}
|
|
65850
|
+
export declare type ShepherdAlertActor = ShepherdActor | ShepherdAnonymousActor | ShepherdAtlassianSystemActor;
|
|
66385
65851
|
export declare type ShepherdAlertAuthorizedActions = {
|
|
66386
65852
|
__typename?: 'ShepherdAlertAuthorizedActions';
|
|
66387
65853
|
actions?: Maybe<Array<ShepherdAlertAction>>;
|
|
@@ -66550,6 +66016,10 @@ export declare type ShepherdAlertsConnection = {
|
|
|
66550
66016
|
pageInfo: PageInfo;
|
|
66551
66017
|
};
|
|
66552
66018
|
export declare type ShepherdAlertsResult = QueryError | ShepherdAlertsConnection;
|
|
66019
|
+
export declare type ShepherdAnonymousActor = {
|
|
66020
|
+
__typename?: 'ShepherdAnonymousActor';
|
|
66021
|
+
ipAddress?: Maybe<Scalars['String']['output']>;
|
|
66022
|
+
};
|
|
66553
66023
|
export declare type ShepherdAppInfo = {
|
|
66554
66024
|
__typename?: 'ShepherdAppInfo';
|
|
66555
66025
|
apiVersion: Scalars['Int']['output'];
|
|
@@ -66565,6 +66035,10 @@ export declare enum ShepherdAtlassianProduct {
|
|
|
66565
66035
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
66566
66036
|
Marketplace = "MARKETPLACE"
|
|
66567
66037
|
}
|
|
66038
|
+
export declare type ShepherdAtlassianSystemActor = {
|
|
66039
|
+
__typename?: 'ShepherdAtlassianSystemActor';
|
|
66040
|
+
name: Scalars['String']['output'];
|
|
66041
|
+
};
|
|
66568
66042
|
export declare type ShepherdAuditLogAttribute = {
|
|
66569
66043
|
__typename?: 'ShepherdAuditLogAttribute';
|
|
66570
66044
|
name: Scalars['String']['output'];
|
|
@@ -66784,7 +66258,6 @@ export declare type ShepherdDetection = {
|
|
|
66784
66258
|
category: ShepherdAlertDetectionCategory;
|
|
66785
66259
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
66786
66260
|
id: Scalars['ID']['output'];
|
|
66787
|
-
product: ShepherdAtlassianProduct;
|
|
66788
66261
|
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
66789
66262
|
regions?: Maybe<Array<Scalars['String']['output']>>;
|
|
66790
66263
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
@@ -69773,6 +69246,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
69773
69246
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
69774
69247
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
69775
69248
|
url?: Maybe<Scalars['URL']['output']>;
|
|
69249
|
+
viewer?: Maybe<TrelloBoardViewerUpdated>;
|
|
69776
69250
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
69777
69251
|
};
|
|
69778
69252
|
export declare type TrelloBoardUpdatedEdge = {
|
|
@@ -69800,6 +69274,10 @@ export declare type TrelloBoardViewerSidebar = {
|
|
|
69800
69274
|
__typename?: 'TrelloBoardViewerSidebar';
|
|
69801
69275
|
show?: Maybe<Scalars['Boolean']['output']>;
|
|
69802
69276
|
};
|
|
69277
|
+
export declare type TrelloBoardViewerUpdated = {
|
|
69278
|
+
__typename?: 'TrelloBoardViewerUpdated';
|
|
69279
|
+
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
69280
|
+
};
|
|
69803
69281
|
export declare type TrelloBoardWorkspaceUpdated = {
|
|
69804
69282
|
__typename?: 'TrelloBoardWorkspaceUpdated';
|
|
69805
69283
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -70042,6 +69520,22 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
70042
69520
|
errors?: Maybe<Array<MutationError>>;
|
|
70043
69521
|
success: Scalars['Boolean']['output'];
|
|
70044
69522
|
};
|
|
69523
|
+
export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
69524
|
+
enabled: Scalars['Boolean']['input'];
|
|
69525
|
+
providerCalendarId: Scalars['ID']['input'];
|
|
69526
|
+
type: TrelloSupportedPlannerProviders;
|
|
69527
|
+
workspaceId: Scalars['ID']['input'];
|
|
69528
|
+
};
|
|
69529
|
+
export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
69530
|
+
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
69531
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69532
|
+
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
69533
|
+
success: Scalars['Boolean']['output'];
|
|
69534
|
+
};
|
|
69535
|
+
export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
|
|
69536
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69537
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69538
|
+
};
|
|
70045
69539
|
export declare type TrelloCustomField = {
|
|
70046
69540
|
__typename?: 'TrelloCustomField';
|
|
70047
69541
|
display?: Maybe<TrelloCustomFieldDisplay>;
|
|
@@ -70173,6 +69667,7 @@ export declare type TrelloInbox = {
|
|
|
70173
69667
|
export declare type TrelloJwmWorkspaceLink = {
|
|
70174
69668
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
70175
69669
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
69670
|
+
crossflowTouchpoint?: Maybe<Scalars['String']['output']>;
|
|
70176
69671
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
70177
69672
|
inaccessible?: Maybe<Scalars['Boolean']['output']>;
|
|
70178
69673
|
};
|
|
@@ -70361,6 +69856,7 @@ export declare type TrelloMutationApi = {
|
|
|
70361
69856
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
70362
69857
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
70363
69858
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
69859
|
+
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
70364
69860
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
70365
69861
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
70366
69862
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
@@ -70382,6 +69878,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
|
|
|
70382
69878
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
70383
69879
|
input: TrelloCreateCardInput;
|
|
70384
69880
|
};
|
|
69881
|
+
export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
69882
|
+
input: TrelloCreateOrUpdatePlannerCalendarInput;
|
|
69883
|
+
};
|
|
70385
69884
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
70386
69885
|
input: TrelloPinCardInput;
|
|
70387
69886
|
};
|
|
@@ -70434,16 +69933,17 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
70434
69933
|
};
|
|
70435
69934
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
70436
69935
|
__typename?: 'TrelloPlannerCalendar';
|
|
70437
|
-
|
|
70438
|
-
|
|
69936
|
+
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
69937
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
69938
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
70439
69939
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70440
69940
|
id: Scalars['ID']['output'];
|
|
70441
|
-
objectId
|
|
70442
|
-
providerCalendarId
|
|
70443
|
-
readOnly
|
|
70444
|
-
timezone
|
|
70445
|
-
title
|
|
70446
|
-
type
|
|
69941
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
69942
|
+
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
69943
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
69944
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
69945
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
69946
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
70447
69947
|
};
|
|
70448
69948
|
export declare type TrelloPlannerCalendarEventsArgs = {
|
|
70449
69949
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70452,8 +69952,8 @@ export declare type TrelloPlannerCalendarEventsArgs = {
|
|
|
70452
69952
|
};
|
|
70453
69953
|
export declare type TrelloPlannerCalendarAccount = Node & {
|
|
70454
69954
|
__typename?: 'TrelloPlannerCalendarAccount';
|
|
70455
|
-
accountType
|
|
70456
|
-
displayName
|
|
69955
|
+
accountType?: Maybe<TrelloSupportedPlannerProviders>;
|
|
69956
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
70457
69957
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
70458
69958
|
id: Scalars['ID']['output'];
|
|
70459
69959
|
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
@@ -70477,6 +69977,25 @@ export declare type TrelloPlannerCalendarAccountEdge = {
|
|
|
70477
69977
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
70478
69978
|
node?: Maybe<TrelloPlannerCalendarAccount>;
|
|
70479
69979
|
};
|
|
69980
|
+
export declare enum TrelloPlannerCalendarColor {
|
|
69981
|
+
BlueSubtler = "BLUE_SUBTLER",
|
|
69982
|
+
BlueSubtlest = "BLUE_SUBTLEST",
|
|
69983
|
+
GraySubtler = "GRAY_SUBTLER",
|
|
69984
|
+
GreenSubtler = "GREEN_SUBTLER",
|
|
69985
|
+
GreenSubtlest = "GREEN_SUBTLEST",
|
|
69986
|
+
LimeSubtler = "LIME_SUBTLER",
|
|
69987
|
+
LimeSubtlest = "LIME_SUBTLEST",
|
|
69988
|
+
MagentaSubtler = "MAGENTA_SUBTLER",
|
|
69989
|
+
MagentaSubtlest = "MAGENTA_SUBTLEST",
|
|
69990
|
+
OrangeSubtler = "ORANGE_SUBTLER",
|
|
69991
|
+
OrangeSubtlest = "ORANGE_SUBTLEST",
|
|
69992
|
+
PurpleSubtlest = "PURPLE_SUBTLEST",
|
|
69993
|
+
RedSubtler = "RED_SUBTLER",
|
|
69994
|
+
RedSubtlest = "RED_SUBTLEST",
|
|
69995
|
+
YellowBolder = "YELLOW_BOLDER",
|
|
69996
|
+
YellowSubtler = "YELLOW_SUBTLER",
|
|
69997
|
+
YellowSubtlest = "YELLOW_SUBTLEST"
|
|
69998
|
+
}
|
|
70480
69999
|
export declare type TrelloPlannerCalendarConnection = {
|
|
70481
70000
|
__typename?: 'TrelloPlannerCalendarConnection';
|
|
70482
70001
|
edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
|
|
@@ -70491,24 +70010,46 @@ export declare type TrelloPlannerCalendarEdge = {
|
|
|
70491
70010
|
};
|
|
70492
70011
|
export declare type TrelloPlannerCalendarEvent = Node & {
|
|
70493
70012
|
__typename?: 'TrelloPlannerCalendarEvent';
|
|
70494
|
-
allDay
|
|
70495
|
-
busy
|
|
70013
|
+
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
70014
|
+
busy?: Maybe<Scalars['Boolean']['output']>;
|
|
70015
|
+
cards?: Maybe<TrelloPlannerCalendarEventCardConnection>;
|
|
70496
70016
|
conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
|
|
70497
|
-
createdByTrello
|
|
70017
|
+
createdByTrello?: Maybe<Scalars['Boolean']['output']>;
|
|
70498
70018
|
description?: Maybe<Scalars['String']['output']>;
|
|
70499
|
-
endAt
|
|
70019
|
+
endAt?: Maybe<Scalars['DateTime']['output']>;
|
|
70500
70020
|
id: Scalars['ID']['output'];
|
|
70501
70021
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
70502
|
-
readOnly
|
|
70503
|
-
startAt
|
|
70504
|
-
status
|
|
70505
|
-
title
|
|
70506
|
-
type
|
|
70507
|
-
visibility
|
|
70022
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
70023
|
+
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
70024
|
+
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
70025
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
70026
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
70027
|
+
visibility?: Maybe<TrelloPlannerCalendarEventVisibility>;
|
|
70028
|
+
};
|
|
70029
|
+
export declare type TrelloPlannerCalendarEventCardsArgs = {
|
|
70030
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70031
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70032
|
+
};
|
|
70033
|
+
export declare type TrelloPlannerCalendarEventCard = Node & {
|
|
70034
|
+
__typename?: 'TrelloPlannerCalendarEventCard';
|
|
70035
|
+
cardId?: Maybe<Scalars['ID']['output']>;
|
|
70036
|
+
id: Scalars['ID']['output'];
|
|
70037
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
70038
|
+
};
|
|
70039
|
+
export declare type TrelloPlannerCalendarEventCardConnection = {
|
|
70040
|
+
__typename?: 'TrelloPlannerCalendarEventCardConnection';
|
|
70041
|
+
edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdge>>;
|
|
70042
|
+
nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
|
|
70043
|
+
pageInfo: PageInfo;
|
|
70044
|
+
};
|
|
70045
|
+
export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
70046
|
+
__typename?: 'TrelloPlannerCalendarEventCardEdge';
|
|
70047
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70048
|
+
node?: Maybe<TrelloPlannerCalendarEventCard>;
|
|
70508
70049
|
};
|
|
70509
70050
|
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
70510
70051
|
__typename?: 'TrelloPlannerCalendarEventConferencing';
|
|
70511
|
-
url
|
|
70052
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
70512
70053
|
};
|
|
70513
70054
|
export declare type TrelloPlannerCalendarEventConnection = {
|
|
70514
70055
|
__typename?: 'TrelloPlannerCalendarEventConnection';
|
|
@@ -70523,8 +70064,11 @@ export declare type TrelloPlannerCalendarEventEdge = {
|
|
|
70523
70064
|
node?: Maybe<TrelloPlannerCalendarEvent>;
|
|
70524
70065
|
};
|
|
70525
70066
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
70067
|
+
Accepted = "ACCEPTED",
|
|
70526
70068
|
Cancelled = "CANCELLED",
|
|
70527
70069
|
Confirmed = "CONFIRMED",
|
|
70070
|
+
Declined = "DECLINED",
|
|
70071
|
+
NeedsAction = "NEEDS_ACTION",
|
|
70528
70072
|
Tentative = "TENTATIVE"
|
|
70529
70073
|
}
|
|
70530
70074
|
export declare enum TrelloPlannerCalendarEventVisibility {
|
|
@@ -70533,22 +70077,23 @@ export declare enum TrelloPlannerCalendarEventVisibility {
|
|
|
70533
70077
|
Public = "PUBLIC"
|
|
70534
70078
|
}
|
|
70535
70079
|
export declare type TrelloPlannerCalendarEventsFilter = {
|
|
70536
|
-
end
|
|
70537
|
-
start
|
|
70080
|
+
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
70081
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
70538
70082
|
};
|
|
70539
70083
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
70540
70084
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
70541
|
-
|
|
70085
|
+
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70086
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
70542
70087
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70543
70088
|
id: Scalars['ID']['output'];
|
|
70544
|
-
readOnly
|
|
70545
|
-
timezone
|
|
70546
|
-
title
|
|
70547
|
-
type
|
|
70089
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
70090
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
70091
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
70092
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
70548
70093
|
};
|
|
70549
70094
|
export declare type TrelloPlannerProviderCalendarEventsArgs = {
|
|
70550
70095
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70551
|
-
filter
|
|
70096
|
+
filter: TrelloPlannerCalendarEventsFilter;
|
|
70552
70097
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70553
70098
|
};
|
|
70554
70099
|
export declare type TrelloPlannerProviderCalendarConnection = {
|
|
@@ -70613,12 +70158,13 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
70613
70158
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
70614
70159
|
};
|
|
70615
70160
|
export declare type TrelloProviderCalendarInterface = {
|
|
70616
|
-
|
|
70161
|
+
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70162
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
70617
70163
|
id: Scalars['ID']['output'];
|
|
70618
|
-
readOnly
|
|
70619
|
-
timezone
|
|
70620
|
-
title
|
|
70621
|
-
type
|
|
70164
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
70165
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
70166
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
70167
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
70622
70168
|
};
|
|
70623
70169
|
export declare type TrelloQueryApi = {
|
|
70624
70170
|
__typename?: 'TrelloQueryApi';
|
|
@@ -70954,6 +70500,17 @@ export declare type TrelloWorkspacePrefs = {
|
|
|
70954
70500
|
export declare enum TrelloWorkspaceTier {
|
|
70955
70501
|
Paid = "PAID"
|
|
70956
70502
|
}
|
|
70503
|
+
export declare type TrustSignal = {
|
|
70504
|
+
__typename?: 'TrustSignal';
|
|
70505
|
+
key: Scalars['ID']['output'];
|
|
70506
|
+
result: Scalars['Boolean']['output'];
|
|
70507
|
+
rules?: Maybe<Array<TrustSignalRule>>;
|
|
70508
|
+
};
|
|
70509
|
+
export declare type TrustSignalRule = {
|
|
70510
|
+
__typename?: 'TrustSignalRule';
|
|
70511
|
+
name: Scalars['String']['output'];
|
|
70512
|
+
value: Scalars['Boolean']['output'];
|
|
70513
|
+
};
|
|
70957
70514
|
export declare type TunnelDefinitionsInput = {
|
|
70958
70515
|
customUI?: InputMaybe<Array<InputMaybe<CustomUiTunnelDefinitionInput>>>;
|
|
70959
70516
|
faasTunnelUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -70999,6 +70556,7 @@ export declare type UnifiedAllowList = UnifiedINode & {
|
|
|
70999
70556
|
export declare type UnifiedAtlassianProduct = UnifiedINode & {
|
|
71000
70557
|
__typename?: 'UnifiedAtlassianProduct';
|
|
71001
70558
|
id: Scalars['ID']['output'];
|
|
70559
|
+
productId: Scalars['String']['output'];
|
|
71002
70560
|
title?: Maybe<Scalars['String']['output']>;
|
|
71003
70561
|
type?: Maybe<Scalars['String']['output']>;
|
|
71004
70562
|
viewHref?: Maybe<Scalars['String']['output']>;
|
|
@@ -71684,6 +71242,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
71684
71242
|
};
|
|
71685
71243
|
export declare type UpdateCompassScorecardInput = {
|
|
71686
71244
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
71245
|
+
componentCustomFieldFilters?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
71687
71246
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
71688
71247
|
componentLifecycleStages?: InputMaybe<CompassLifecycleFilterInput>;
|
|
71689
71248
|
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -72211,6 +71770,7 @@ export declare enum VirtualAgentConversationActionType {
|
|
|
72211
71770
|
export declare enum VirtualAgentConversationChannel {
|
|
72212
71771
|
HelpCenter = "HELP_CENTER",
|
|
72213
71772
|
JsmPortal = "JSM_PORTAL",
|
|
71773
|
+
JsmWidget = "JSM_WIDGET",
|
|
72214
71774
|
MsTeams = "MS_TEAMS",
|
|
72215
71775
|
Slack = "SLACK"
|
|
72216
71776
|
}
|