@forge/cli-shared 5.6.0-next.9 → 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 +51 -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 +264 -661
- 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']>;
|
|
@@ -39482,6 +39489,10 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
|
|
|
39482
39489
|
errors?: Maybe<Array<MutationError>>;
|
|
39483
39490
|
success: Scalars['Boolean']['output'];
|
|
39484
39491
|
};
|
|
39492
|
+
export declare type JiraArchiveJourneyConfigurationInput = {
|
|
39493
|
+
id: Scalars['ID']['input'];
|
|
39494
|
+
version: Scalars['Long']['input'];
|
|
39495
|
+
};
|
|
39485
39496
|
export declare type JiraArchivedIssue = {
|
|
39486
39497
|
__typename?: 'JiraArchivedIssue';
|
|
39487
39498
|
archivedBy?: Maybe<User>;
|
|
@@ -42210,6 +42221,10 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
42210
42221
|
name: Scalars['String']['output'];
|
|
42211
42222
|
type: Scalars['String']['output'];
|
|
42212
42223
|
};
|
|
42224
|
+
export declare type JiraDisableJourneyConfigurationInput = {
|
|
42225
|
+
id: Scalars['ID']['input'];
|
|
42226
|
+
version: Scalars['Long']['input'];
|
|
42227
|
+
};
|
|
42213
42228
|
export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
|
|
42214
42229
|
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42215
42230
|
};
|
|
@@ -43368,6 +43383,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
43368
43383
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
43369
43384
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
43370
43385
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
43386
|
+
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
43371
43387
|
hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
|
|
43372
43388
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
43373
43389
|
hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44489,6 +44505,7 @@ export declare type JiraIssueSearchView = Node & {
|
|
|
44489
44505
|
id: Scalars['ID']['output'];
|
|
44490
44506
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44491
44507
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
44508
|
+
viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
44492
44509
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
44493
44510
|
};
|
|
44494
44511
|
export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
@@ -44498,10 +44515,18 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
44498
44515
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44499
44516
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
44500
44517
|
};
|
|
44518
|
+
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
44519
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
44520
|
+
};
|
|
44501
44521
|
export declare type JiraIssueSearchViewConfigInput = {
|
|
44502
44522
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
44503
44523
|
viewInput?: InputMaybe<JiraIssueSearchViewInput>;
|
|
44504
44524
|
};
|
|
44525
|
+
export declare type JiraIssueSearchViewConfigSettings = {
|
|
44526
|
+
__typename?: 'JiraIssueSearchViewConfigSettings';
|
|
44527
|
+
canEnableHierarchy?: Maybe<Scalars['Boolean']['output']>;
|
|
44528
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44529
|
+
};
|
|
44505
44530
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
44506
44531
|
projectContext?: InputMaybe<JiraIssueSearchViewFieldSetsProjectContext>;
|
|
44507
44532
|
};
|
|
@@ -44556,7 +44581,13 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
44556
44581
|
JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
44557
44582
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
44558
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>>;
|
|
44559
44588
|
JiraForgeStringField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
44589
|
+
JiraForgeStringsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
44590
|
+
JiraForgeUserField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
44560
44591
|
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
44561
44592
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
44562
44593
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
@@ -45855,6 +45886,7 @@ export declare type JiraMutation = {
|
|
|
45855
45886
|
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
45856
45887
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
45857
45888
|
answerApprovalDecision?: Maybe<JiraAnswerApprovalDecisionPayload>;
|
|
45889
|
+
archiveJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
45858
45890
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
45859
45891
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
45860
45892
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
@@ -45889,6 +45921,7 @@ export declare type JiraMutation = {
|
|
|
45889
45921
|
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
45890
45922
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
45891
45923
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
45924
|
+
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
45892
45925
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
45893
45926
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
45894
45927
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
@@ -46036,6 +46069,10 @@ export declare type JiraMutationAnswerApprovalDecisionArgs = {
|
|
|
46036
46069
|
cloudId: Scalars['ID']['input'];
|
|
46037
46070
|
input: JiraAnswerApprovalDecisionInput;
|
|
46038
46071
|
};
|
|
46072
|
+
export declare type JiraMutationArchiveJiraJourneyConfigurationArgs = {
|
|
46073
|
+
cloudId: Scalars['ID']['input'];
|
|
46074
|
+
input: JiraArchiveJourneyConfigurationInput;
|
|
46075
|
+
};
|
|
46039
46076
|
export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
46040
46077
|
input: JiraAssignRelatedWorkInput;
|
|
46041
46078
|
};
|
|
@@ -46148,6 +46185,10 @@ export declare type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
|
46148
46185
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
46149
46186
|
input: JiraDeleteShortcutInput;
|
|
46150
46187
|
};
|
|
46188
|
+
export declare type JiraMutationDisableJiraJourneyConfigurationArgs = {
|
|
46189
|
+
cloudId: Scalars['ID']['input'];
|
|
46190
|
+
input: JiraDisableJourneyConfigurationInput;
|
|
46191
|
+
};
|
|
46151
46192
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
46152
46193
|
cloudId: Scalars['ID']['input'];
|
|
46153
46194
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
@@ -47498,6 +47539,7 @@ export declare type JiraProject = Node & {
|
|
|
47498
47539
|
jsmChatSlackConfig?: Maybe<JsmChatSlackConfig>;
|
|
47499
47540
|
jwmDefaultSavedView?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
47500
47541
|
key: Scalars['String']['output'];
|
|
47542
|
+
knowledgeBaseArticlesCount?: Maybe<KnowledgeBaseArticleCountResponse>;
|
|
47501
47543
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
47502
47544
|
lastUpdatedFormatted?: Maybe<Scalars['String']['output']>;
|
|
47503
47545
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -47594,6 +47636,9 @@ export declare type JiraProjectIssueTypesArgs = {
|
|
|
47594
47636
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47595
47637
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47596
47638
|
};
|
|
47639
|
+
export declare type JiraProjectKnowledgeBaseArticlesCountArgs = {
|
|
47640
|
+
cloudId: Scalars['ID']['input'];
|
|
47641
|
+
};
|
|
47597
47642
|
export declare type JiraProjectLastUpdatedFormattedArgs = {
|
|
47598
47643
|
format?: InputMaybe<JiraProjectDateTimeFormat>;
|
|
47599
47644
|
};
|
|
@@ -48830,6 +48875,7 @@ export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
|
48830
48875
|
export declare type JiraQueryIssueSearchViewResultArgs = {
|
|
48831
48876
|
cloudId: Scalars['ID']['input'];
|
|
48832
48877
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
48878
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
48833
48879
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
48834
48880
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
48835
48881
|
};
|
|
@@ -54838,6 +54884,7 @@ export declare type KnowledgeBaseArticleCountError = {
|
|
|
54838
54884
|
extensions: Array<QueryErrorExtension>;
|
|
54839
54885
|
message: Scalars['String']['output'];
|
|
54840
54886
|
};
|
|
54887
|
+
export declare type KnowledgeBaseArticleCountResponse = KnowledgeBaseArticleCountError | KnowledgeBaseArticleCountSource;
|
|
54841
54888
|
export declare type KnowledgeBaseArticleCountSource = {
|
|
54842
54889
|
__typename?: 'KnowledgeBaseArticleCountSource';
|
|
54843
54890
|
container: Scalars['ID']['output'];
|
|
@@ -55103,6 +55150,11 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
|
55103
55150
|
export declare type KnowledgeDiscoveryEntity = {
|
|
55104
55151
|
id: Scalars['ID']['output'];
|
|
55105
55152
|
};
|
|
55153
|
+
export declare type KnowledgeDiscoveryEntityGroup = {
|
|
55154
|
+
__typename?: 'KnowledgeDiscoveryEntityGroup';
|
|
55155
|
+
entities?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
|
|
55156
|
+
entityType: KnowledgeDiscoveryEntityType;
|
|
55157
|
+
};
|
|
55106
55158
|
export declare enum KnowledgeDiscoveryEntityType {
|
|
55107
55159
|
ConfluenceBlogpost = "CONFLUENCE_BLOGPOST",
|
|
55108
55160
|
ConfluenceDocument = "CONFLUENCE_DOCUMENT",
|
|
@@ -55183,6 +55235,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
55183
55235
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
55184
55236
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
55185
55237
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
55238
|
+
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
55186
55239
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
55187
55240
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
55188
55241
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
@@ -55241,6 +55294,12 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
|
55241
55294
|
relatedEntityType: KnowledgeDiscoveryEntityType;
|
|
55242
55295
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55243
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
|
+
};
|
|
55244
55303
|
export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
55245
55304
|
orgId: Scalars['String']['input'];
|
|
55246
55305
|
teamName: Scalars['String']['input'];
|
|
@@ -55270,6 +55329,13 @@ export declare type KnowledgeDiscoveryRelatedEntityConnection = {
|
|
|
55270
55329
|
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
|
|
55271
55330
|
pageInfo: KnowledgeDiscoveryPageInfo;
|
|
55272
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
|
+
};
|
|
55273
55339
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
55274
55340
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
55275
55341
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -55277,6 +55343,11 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
55277
55343
|
Person = "PERSON",
|
|
55278
55344
|
Team = "TEAM"
|
|
55279
55345
|
}
|
|
55346
|
+
export declare type KnowledgeDiscoverySearchRelatedEntities = {
|
|
55347
|
+
__typename?: 'KnowledgeDiscoverySearchRelatedEntities';
|
|
55348
|
+
entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
|
|
55349
|
+
};
|
|
55350
|
+
export declare type KnowledgeDiscoverySearchRelatedEntitiesResult = KnowledgeDiscoverySearchRelatedEntities | QueryError;
|
|
55280
55351
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
55281
55352
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
55282
55353
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -55911,9 +55982,7 @@ export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
|
55911
55982
|
scopes: Array<Scalars['String']['output']>;
|
|
55912
55983
|
};
|
|
55913
55984
|
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
55914
|
-
descriptorId: Scalars['String']['input'];
|
|
55915
55985
|
href: Scalars['String']['input'];
|
|
55916
|
-
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
55917
55986
|
};
|
|
55918
55987
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
55919
55988
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
@@ -56341,7 +56410,6 @@ export declare type MarketplaceConsolePluginFrameworkAttributes = {
|
|
|
56341
56410
|
pluginFrameworkType: MarketplaceConsolePluginFrameworkType;
|
|
56342
56411
|
};
|
|
56343
56412
|
export declare type MarketplaceConsolePluginFrameworkAttributesInput = {
|
|
56344
|
-
artifactId: Scalars['String']['input'];
|
|
56345
56413
|
href: Scalars['String']['input'];
|
|
56346
56414
|
};
|
|
56347
56415
|
export declare enum MarketplaceConsolePluginFrameworkType {
|
|
@@ -56579,7 +56647,6 @@ export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
|
|
|
56579
56647
|
artifactId: Scalars['ID']['output'];
|
|
56580
56648
|
};
|
|
56581
56649
|
export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
|
|
56582
|
-
artifactId: Scalars['String']['input'];
|
|
56583
56650
|
href: Scalars['String']['input'];
|
|
56584
56651
|
};
|
|
56585
56652
|
export declare enum MarketplaceEntityStatus {
|
|
@@ -60342,11 +60409,7 @@ export declare type PeapMutationApi = {
|
|
|
60342
60409
|
programEnrollment: PeapProgramEnrollmentMutation;
|
|
60343
60410
|
};
|
|
60344
60411
|
export declare type PeapNewProgramInput = {
|
|
60345
|
-
description: Scalars['String']['input'];
|
|
60346
|
-
documentationURL: Scalars['String']['input'];
|
|
60347
60412
|
name: Scalars['String']['input'];
|
|
60348
|
-
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
60349
|
-
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
60350
60413
|
};
|
|
60351
60414
|
export declare type PeapProgram = {
|
|
60352
60415
|
__typename?: 'PEAPProgram';
|
|
@@ -60355,12 +60418,9 @@ export declare type PeapProgram = {
|
|
|
60355
60418
|
changeTicket?: Maybe<Scalars['String']['output']>;
|
|
60356
60419
|
completedAt?: Maybe<Scalars['Date']['output']>;
|
|
60357
60420
|
createdAt: Scalars['Date']['output'];
|
|
60358
|
-
description: Scalars['String']['output'];
|
|
60359
|
-
documentationURL: Scalars['String']['output'];
|
|
60360
60421
|
id: Scalars['ID']['output'];
|
|
60361
60422
|
internal?: Maybe<PeapProgramInternalData>;
|
|
60362
60423
|
name: Scalars['String']['output'];
|
|
60363
|
-
serviceId?: Maybe<Scalars['String']['output']>;
|
|
60364
60424
|
status: PeapProgramStatus;
|
|
60365
60425
|
updatedAt: Scalars['Date']['output'];
|
|
60366
60426
|
};
|
|
@@ -60400,7 +60460,6 @@ export declare type PeapProgramInternalData = {
|
|
|
60400
60460
|
__typename?: 'PEAPProgramInternalData';
|
|
60401
60461
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
60402
60462
|
owner?: Maybe<User>;
|
|
60403
|
-
teamChannel?: Maybe<Scalars['String']['output']>;
|
|
60404
60463
|
};
|
|
60405
60464
|
export declare type PeapProgramMutationResponse = Payload & {
|
|
60406
60465
|
__typename?: 'PEAPProgramMutationResponse';
|
|
@@ -60412,8 +60471,7 @@ export declare enum PeapProgramStatus {
|
|
|
60412
60471
|
Abandoned = "ABANDONED",
|
|
60413
60472
|
Active = "ACTIVE",
|
|
60414
60473
|
Ended = "ENDED",
|
|
60415
|
-
New = "NEW"
|
|
60416
|
-
Planned = "PLANNED"
|
|
60474
|
+
New = "NEW"
|
|
60417
60475
|
}
|
|
60418
60476
|
export declare type PeapQueryApi = {
|
|
60419
60477
|
__typename?: 'PEAPQueryApi';
|
|
@@ -60431,14 +60489,9 @@ export declare type PeapQueryApiProgramsArgs = {
|
|
|
60431
60489
|
params?: InputMaybe<PeapQueryParams>;
|
|
60432
60490
|
};
|
|
60433
60491
|
export declare type PeapQueryParams = {
|
|
60434
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
60435
60492
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
60436
60493
|
status?: InputMaybe<Array<PeapProgramStatus>>;
|
|
60437
60494
|
};
|
|
60438
|
-
export declare type PeapSiteEnrollmentQueryInput = {
|
|
60439
|
-
cloudId: Scalars['ID']['input'];
|
|
60440
|
-
programId: Scalars['ID']['input'];
|
|
60441
|
-
};
|
|
60442
60495
|
export declare type PeapSiteEnrollmentStatus = {
|
|
60443
60496
|
__typename?: 'PEAPSiteEnrollmentStatus';
|
|
60444
60497
|
cloudId: Scalars['ID']['output'];
|
|
@@ -60448,11 +60501,7 @@ export declare type PeapSiteEnrollmentStatus = {
|
|
|
60448
60501
|
success: Scalars['Boolean']['output'];
|
|
60449
60502
|
};
|
|
60450
60503
|
export declare type PeapUpdateProgramInput = {
|
|
60451
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
60452
|
-
documentationURL?: InputMaybe<Scalars['String']['input']>;
|
|
60453
60504
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
60454
|
-
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
60455
|
-
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
60456
60505
|
};
|
|
60457
60506
|
export declare type PageInfo = {
|
|
60458
60507
|
__typename?: 'PageInfo';
|
|
@@ -60901,20 +60950,7 @@ export declare type PolarisDeleteReactionPayload = Payload & {
|
|
|
60901
60950
|
success: Scalars['Boolean']['output'];
|
|
60902
60951
|
};
|
|
60903
60952
|
export declare enum PolarisFieldType {
|
|
60904
|
-
PolarisIdeaDateField = "PolarisIdeaDateField",
|
|
60905
|
-
PolarisIdeaDateTimeField = "PolarisIdeaDateTimeField",
|
|
60906
|
-
PolarisIdeaExternalReferenceField = "PolarisIdeaExternalReferenceField",
|
|
60907
|
-
PolarisIdeaExternalReferencePropertyField = "PolarisIdeaExternalReferencePropertyField",
|
|
60908
|
-
PolarisIdeaIntervalField = "PolarisIdeaIntervalField",
|
|
60909
|
-
PolarisIdeaLabelsField = "PolarisIdeaLabelsField",
|
|
60910
|
-
PolarisIdeaNumberField = "PolarisIdeaNumberField",
|
|
60911
|
-
PolarisIdeaOptionField = "PolarisIdeaOptionField",
|
|
60912
|
-
PolarisIdeaOptionsField = "PolarisIdeaOptionsField",
|
|
60913
60953
|
PolarisIdeaPlayField = "PolarisIdeaPlayField",
|
|
60914
|
-
PolarisIdeaReactionsField = "PolarisIdeaReactionsField",
|
|
60915
|
-
PolarisIdeaStringField = "PolarisIdeaStringField",
|
|
60916
|
-
PolarisIdeaUserField = "PolarisIdeaUserField",
|
|
60917
|
-
PolarisIdeaUsersField = "PolarisIdeaUsersField",
|
|
60918
60954
|
PolarisJiraField = "PolarisJiraField"
|
|
60919
60955
|
}
|
|
60920
60956
|
export declare type PolarisFilterInput = {
|
|
@@ -60945,493 +60981,14 @@ export declare type PolarisIdea = {
|
|
|
60945
60981
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']['output']>;
|
|
60946
60982
|
lastInsightsViewedTimestamp?: Maybe<Scalars['String']['output']>;
|
|
60947
60983
|
};
|
|
60948
|
-
export declare type PolarisIdeaArchivedByField = PolarisIdeaField & {
|
|
60949
|
-
__typename?: 'PolarisIdeaArchivedByField';
|
|
60950
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
60951
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
60952
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
60953
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
60954
|
-
editable: Scalars['Boolean']['output'];
|
|
60955
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
60956
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
60957
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
60958
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
60959
|
-
groupable: Scalars['Boolean']['output'];
|
|
60960
|
-
id: Scalars['ID']['output'];
|
|
60961
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
60962
|
-
label: Scalars['String']['output'];
|
|
60963
|
-
linearizable: Scalars['Boolean']['output'];
|
|
60964
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
60965
|
-
sortable: Scalars['Boolean']['output'];
|
|
60966
|
-
};
|
|
60967
|
-
export declare type PolarisIdeaArchivedField = PolarisIdeaField & {
|
|
60968
|
-
__typename?: 'PolarisIdeaArchivedField';
|
|
60969
|
-
archivedOption: PolarisIdeaFieldOption;
|
|
60970
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
60971
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
60972
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
60973
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
60974
|
-
editable: Scalars['Boolean']['output'];
|
|
60975
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
60976
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
60977
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
60978
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
60979
|
-
groupable: Scalars['Boolean']['output'];
|
|
60980
|
-
id: Scalars['ID']['output'];
|
|
60981
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
60982
|
-
label: Scalars['String']['output'];
|
|
60983
|
-
linearizable: Scalars['Boolean']['output'];
|
|
60984
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
60985
|
-
sortable: Scalars['Boolean']['output'];
|
|
60986
|
-
};
|
|
60987
|
-
export declare type PolarisIdeaArchivedOnField = PolarisIdeaField & {
|
|
60988
|
-
__typename?: 'PolarisIdeaArchivedOnField';
|
|
60989
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
60990
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
60991
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
60992
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
60993
|
-
editable: Scalars['Boolean']['output'];
|
|
60994
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
60995
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
60996
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
60997
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
60998
|
-
groupable: Scalars['Boolean']['output'];
|
|
60999
|
-
id: Scalars['ID']['output'];
|
|
61000
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61001
|
-
label: Scalars['String']['output'];
|
|
61002
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61003
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61004
|
-
sortable: Scalars['Boolean']['output'];
|
|
61005
|
-
};
|
|
61006
|
-
export declare type PolarisIdeaDateField = PolarisIdeaField & {
|
|
61007
|
-
__typename?: 'PolarisIdeaDateField';
|
|
61008
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61009
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61010
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61011
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61012
|
-
editable: Scalars['Boolean']['output'];
|
|
61013
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61014
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61015
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61016
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61017
|
-
groupable: Scalars['Boolean']['output'];
|
|
61018
|
-
id: Scalars['ID']['output'];
|
|
61019
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61020
|
-
label: Scalars['String']['output'];
|
|
61021
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61022
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61023
|
-
sortable: Scalars['Boolean']['output'];
|
|
61024
|
-
};
|
|
61025
|
-
export declare type PolarisIdeaDateTimeField = PolarisIdeaField & {
|
|
61026
|
-
__typename?: 'PolarisIdeaDateTimeField';
|
|
61027
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61028
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61029
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61030
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61031
|
-
editable: Scalars['Boolean']['output'];
|
|
61032
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61033
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61034
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61035
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61036
|
-
groupable: Scalars['Boolean']['output'];
|
|
61037
|
-
id: Scalars['ID']['output'];
|
|
61038
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61039
|
-
label: Scalars['String']['output'];
|
|
61040
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61041
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61042
|
-
sortable: Scalars['Boolean']['output'];
|
|
61043
|
-
};
|
|
61044
|
-
export declare type PolarisIdeaDocumentField = PolarisIdeaField & {
|
|
61045
|
-
__typename?: 'PolarisIdeaDocumentField';
|
|
61046
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61047
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61048
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61049
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61050
|
-
editable: Scalars['Boolean']['output'];
|
|
61051
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61052
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61053
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61054
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61055
|
-
groupable: Scalars['Boolean']['output'];
|
|
61056
|
-
id: Scalars['ID']['output'];
|
|
61057
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61058
|
-
label: Scalars['String']['output'];
|
|
61059
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61060
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61061
|
-
sortable: Scalars['Boolean']['output'];
|
|
61062
|
-
};
|
|
61063
|
-
export declare type PolarisIdeaExternalReferenceField = PolarisIdeaField & {
|
|
61064
|
-
__typename?: 'PolarisIdeaExternalReferenceField';
|
|
61065
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61066
|
-
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
61067
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61068
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61069
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61070
|
-
editable: Scalars['Boolean']['output'];
|
|
61071
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61072
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61073
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61074
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61075
|
-
groupable: Scalars['Boolean']['output'];
|
|
61076
|
-
id: Scalars['ID']['output'];
|
|
61077
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61078
|
-
label: Scalars['String']['output'];
|
|
61079
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61080
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61081
|
-
sortable: Scalars['Boolean']['output'];
|
|
61082
|
-
};
|
|
61083
|
-
export declare type PolarisIdeaExternalReferencePropertyField = PolarisIdeaField & {
|
|
61084
|
-
__typename?: 'PolarisIdeaExternalReferencePropertyField';
|
|
61085
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61086
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61087
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61088
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61089
|
-
editable: Scalars['Boolean']['output'];
|
|
61090
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61091
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61092
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61093
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61094
|
-
groupable: Scalars['Boolean']['output'];
|
|
61095
|
-
id: Scalars['ID']['output'];
|
|
61096
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61097
|
-
label: Scalars['String']['output'];
|
|
61098
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61099
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61100
|
-
sortable: Scalars['Boolean']['output'];
|
|
61101
|
-
};
|
|
61102
60984
|
export declare type PolarisIdeaField = {
|
|
61103
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61104
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61105
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61106
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61107
|
-
editable: Scalars['Boolean']['output'];
|
|
61108
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61109
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61110
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61111
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61112
|
-
groupable: Scalars['Boolean']['output'];
|
|
61113
60985
|
id: Scalars['ID']['output'];
|
|
61114
60986
|
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61115
|
-
label: Scalars['String']['output'];
|
|
61116
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61117
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61118
|
-
sortable: Scalars['Boolean']['output'];
|
|
61119
|
-
};
|
|
61120
|
-
export declare type PolarisIdeaFieldOption = {
|
|
61121
|
-
__typename?: 'PolarisIdeaFieldOption';
|
|
61122
|
-
id: Scalars['ID']['output'];
|
|
61123
|
-
label: Scalars['String']['output'];
|
|
61124
|
-
weight: Scalars['Int']['output'];
|
|
61125
|
-
};
|
|
61126
|
-
export declare type PolarisIdeaIntervalField = PolarisIdeaField & {
|
|
61127
|
-
__typename?: 'PolarisIdeaIntervalField';
|
|
61128
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61129
|
-
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
61130
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61131
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61132
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61133
|
-
editable: Scalars['Boolean']['output'];
|
|
61134
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61135
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61136
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61137
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61138
|
-
groupable: Scalars['Boolean']['output'];
|
|
61139
|
-
id: Scalars['ID']['output'];
|
|
61140
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61141
|
-
label: Scalars['String']['output'];
|
|
61142
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61143
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61144
|
-
sortable: Scalars['Boolean']['output'];
|
|
61145
|
-
};
|
|
61146
|
-
export declare type PolarisIdeaIssueCommentsField = PolarisIdeaField & {
|
|
61147
|
-
__typename?: 'PolarisIdeaIssueCommentsField';
|
|
61148
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61149
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61150
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61151
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61152
|
-
editable: Scalars['Boolean']['output'];
|
|
61153
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61154
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61155
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61156
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61157
|
-
groupable: Scalars['Boolean']['output'];
|
|
61158
|
-
id: Scalars['ID']['output'];
|
|
61159
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61160
|
-
label: Scalars['String']['output'];
|
|
61161
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61162
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61163
|
-
sortable: Scalars['Boolean']['output'];
|
|
61164
|
-
};
|
|
61165
|
-
export declare type PolarisIdeaIssueIdField = PolarisIdeaField & {
|
|
61166
|
-
__typename?: 'PolarisIdeaIssueIdField';
|
|
61167
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61168
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61169
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61170
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61171
|
-
editable: Scalars['Boolean']['output'];
|
|
61172
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61173
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61174
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61175
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61176
|
-
groupable: Scalars['Boolean']['output'];
|
|
61177
|
-
id: Scalars['ID']['output'];
|
|
61178
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61179
|
-
label: Scalars['String']['output'];
|
|
61180
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61181
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61182
|
-
sortable: Scalars['Boolean']['output'];
|
|
61183
|
-
};
|
|
61184
|
-
export declare type PolarisIdeaIssueTypeField = PolarisIdeaField & {
|
|
61185
|
-
__typename?: 'PolarisIdeaIssueTypeField';
|
|
61186
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61187
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61188
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61189
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61190
|
-
editable: Scalars['Boolean']['output'];
|
|
61191
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61192
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61193
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61194
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61195
|
-
groupable: Scalars['Boolean']['output'];
|
|
61196
|
-
id: Scalars['ID']['output'];
|
|
61197
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61198
|
-
label: Scalars['String']['output'];
|
|
61199
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61200
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61201
|
-
sortable: Scalars['Boolean']['output'];
|
|
61202
|
-
};
|
|
61203
|
-
export declare type PolarisIdeaKeyField = PolarisIdeaField & {
|
|
61204
|
-
__typename?: 'PolarisIdeaKeyField';
|
|
61205
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61206
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61207
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61208
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61209
|
-
editable: Scalars['Boolean']['output'];
|
|
61210
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61211
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61212
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61213
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61214
|
-
groupable: Scalars['Boolean']['output'];
|
|
61215
|
-
id: Scalars['ID']['output'];
|
|
61216
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61217
|
-
label: Scalars['String']['output'];
|
|
61218
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61219
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61220
|
-
sortable: Scalars['Boolean']['output'];
|
|
61221
|
-
};
|
|
61222
|
-
export declare type PolarisIdeaLabelsField = PolarisIdeaField & {
|
|
61223
|
-
__typename?: 'PolarisIdeaLabelsField';
|
|
61224
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61225
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61226
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61227
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61228
|
-
editable: Scalars['Boolean']['output'];
|
|
61229
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61230
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61231
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61232
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61233
|
-
groupable: Scalars['Boolean']['output'];
|
|
61234
|
-
id: Scalars['ID']['output'];
|
|
61235
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61236
|
-
label: Scalars['String']['output'];
|
|
61237
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61238
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61239
|
-
sortable: Scalars['Boolean']['output'];
|
|
61240
|
-
};
|
|
61241
|
-
export declare type PolarisIdeaLinkedIssuesField = PolarisIdeaField & {
|
|
61242
|
-
__typename?: 'PolarisIdeaLinkedIssuesField';
|
|
61243
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61244
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61245
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61246
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61247
|
-
editable: Scalars['Boolean']['output'];
|
|
61248
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61249
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61250
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61251
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61252
|
-
groupable: Scalars['Boolean']['output'];
|
|
61253
|
-
id: Scalars['ID']['output'];
|
|
61254
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61255
|
-
label: Scalars['String']['output'];
|
|
61256
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61257
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61258
|
-
sortable: Scalars['Boolean']['output'];
|
|
61259
|
-
};
|
|
61260
|
-
export declare type PolarisIdeaLinkedIssuesProgressField = PolarisIdeaField & {
|
|
61261
|
-
__typename?: 'PolarisIdeaLinkedIssuesProgressField';
|
|
61262
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61263
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61264
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61265
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61266
|
-
editable: Scalars['Boolean']['output'];
|
|
61267
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61268
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61269
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61270
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61271
|
-
groupable: Scalars['Boolean']['output'];
|
|
61272
|
-
id: Scalars['ID']['output'];
|
|
61273
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61274
|
-
label: Scalars['String']['output'];
|
|
61275
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61276
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61277
|
-
sortable: Scalars['Boolean']['output'];
|
|
61278
|
-
};
|
|
61279
|
-
export declare type PolarisIdeaNumberField = PolarisIdeaField & {
|
|
61280
|
-
__typename?: 'PolarisIdeaNumberField';
|
|
61281
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61282
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61283
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61284
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61285
|
-
editable: Scalars['Boolean']['output'];
|
|
61286
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61287
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61288
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61289
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61290
|
-
groupable: Scalars['Boolean']['output'];
|
|
61291
|
-
id: Scalars['ID']['output'];
|
|
61292
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61293
|
-
label: Scalars['String']['output'];
|
|
61294
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61295
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61296
|
-
sortable: Scalars['Boolean']['output'];
|
|
61297
|
-
};
|
|
61298
|
-
export declare type PolarisIdeaOptionField = PolarisIdeaField & {
|
|
61299
|
-
__typename?: 'PolarisIdeaOptionField';
|
|
61300
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61301
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61302
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61303
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61304
|
-
editable: Scalars['Boolean']['output'];
|
|
61305
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61306
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61307
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61308
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61309
|
-
groupable: Scalars['Boolean']['output'];
|
|
61310
|
-
id: Scalars['ID']['output'];
|
|
61311
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61312
|
-
label: Scalars['String']['output'];
|
|
61313
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61314
|
-
options?: Maybe<Array<PolarisIdeaFieldOption>>;
|
|
61315
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61316
|
-
sortable: Scalars['Boolean']['output'];
|
|
61317
|
-
};
|
|
61318
|
-
export declare type PolarisIdeaOptionsField = PolarisIdeaField & {
|
|
61319
|
-
__typename?: 'PolarisIdeaOptionsField';
|
|
61320
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61321
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61322
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61323
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61324
|
-
editable: Scalars['Boolean']['output'];
|
|
61325
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61326
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61327
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61328
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61329
|
-
groupable: Scalars['Boolean']['output'];
|
|
61330
|
-
id: Scalars['ID']['output'];
|
|
61331
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61332
|
-
label: Scalars['String']['output'];
|
|
61333
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61334
|
-
options?: Maybe<Array<PolarisIdeaFieldOption>>;
|
|
61335
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61336
|
-
sortable: Scalars['Boolean']['output'];
|
|
61337
60987
|
};
|
|
61338
60988
|
export declare type PolarisIdeaPlayField = PolarisIdeaField & {
|
|
61339
60989
|
__typename?: 'PolarisIdeaPlayField';
|
|
61340
|
-
aspect?: Maybe<Scalars['String']['output']>;
|
|
61341
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61342
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61343
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61344
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61345
|
-
editable: Scalars['Boolean']['output'];
|
|
61346
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61347
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61348
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61349
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61350
|
-
groupable: Scalars['Boolean']['output'];
|
|
61351
|
-
id: Scalars['ID']['output'];
|
|
61352
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61353
|
-
label: Scalars['String']['output'];
|
|
61354
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61355
|
-
play?: Maybe<PolarisPlay>;
|
|
61356
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61357
|
-
sortable: Scalars['Boolean']['output'];
|
|
61358
|
-
};
|
|
61359
|
-
export declare type PolarisIdeaReactionsField = PolarisIdeaField & {
|
|
61360
|
-
__typename?: 'PolarisIdeaReactionsField';
|
|
61361
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61362
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61363
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61364
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61365
|
-
editable: Scalars['Boolean']['output'];
|
|
61366
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61367
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61368
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61369
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61370
|
-
groupable: Scalars['Boolean']['output'];
|
|
61371
|
-
id: Scalars['ID']['output'];
|
|
61372
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61373
|
-
label: Scalars['String']['output'];
|
|
61374
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61375
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61376
|
-
sortable: Scalars['Boolean']['output'];
|
|
61377
|
-
};
|
|
61378
|
-
export declare type PolarisIdeaSpecialField = PolarisIdeaField & {
|
|
61379
|
-
__typename?: 'PolarisIdeaSpecialField';
|
|
61380
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61381
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61382
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61383
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61384
|
-
editable: Scalars['Boolean']['output'];
|
|
61385
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61386
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61387
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61388
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61389
|
-
groupable: Scalars['Boolean']['output'];
|
|
61390
60990
|
id: Scalars['ID']['output'];
|
|
61391
60991
|
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61392
|
-
label: Scalars['String']['output'];
|
|
61393
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61394
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61395
|
-
sortable: Scalars['Boolean']['output'];
|
|
61396
|
-
specialType?: Maybe<Scalars['String']['output']>;
|
|
61397
|
-
};
|
|
61398
|
-
export declare type PolarisIdeaStatusField = PolarisIdeaField & {
|
|
61399
|
-
__typename?: 'PolarisIdeaStatusField';
|
|
61400
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61401
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61402
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61403
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61404
|
-
editable: Scalars['Boolean']['output'];
|
|
61405
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61406
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61407
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61408
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61409
|
-
groupable: Scalars['Boolean']['output'];
|
|
61410
|
-
id: Scalars['ID']['output'];
|
|
61411
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61412
|
-
label: Scalars['String']['output'];
|
|
61413
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61414
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61415
|
-
sortable: Scalars['Boolean']['output'];
|
|
61416
|
-
};
|
|
61417
|
-
export declare type PolarisIdeaStringField = PolarisIdeaField & {
|
|
61418
|
-
__typename?: 'PolarisIdeaStringField';
|
|
61419
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61420
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61421
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61422
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61423
|
-
editable: Scalars['Boolean']['output'];
|
|
61424
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61425
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61426
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61427
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61428
|
-
groupable: Scalars['Boolean']['output'];
|
|
61429
|
-
id: Scalars['ID']['output'];
|
|
61430
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61431
|
-
label: Scalars['String']['output'];
|
|
61432
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61433
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61434
|
-
sortable: Scalars['Boolean']['output'];
|
|
61435
60992
|
};
|
|
61436
60993
|
export declare type PolarisIdeaTemplate = {
|
|
61437
60994
|
__typename?: 'PolarisIdeaTemplate';
|
|
@@ -61451,44 +61008,6 @@ export declare type PolarisIdeaType = {
|
|
|
61451
61008
|
id: Scalars['ID']['output'];
|
|
61452
61009
|
name: Scalars['String']['output'];
|
|
61453
61010
|
};
|
|
61454
|
-
export declare type PolarisIdeaUserField = PolarisIdeaField & {
|
|
61455
|
-
__typename?: 'PolarisIdeaUserField';
|
|
61456
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61457
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61458
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61459
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61460
|
-
editable: Scalars['Boolean']['output'];
|
|
61461
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61462
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61463
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61464
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61465
|
-
groupable: Scalars['Boolean']['output'];
|
|
61466
|
-
id: Scalars['ID']['output'];
|
|
61467
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61468
|
-
label: Scalars['String']['output'];
|
|
61469
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61470
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61471
|
-
sortable: Scalars['Boolean']['output'];
|
|
61472
|
-
};
|
|
61473
|
-
export declare type PolarisIdeaUsersField = PolarisIdeaField & {
|
|
61474
|
-
__typename?: 'PolarisIdeaUsersField';
|
|
61475
|
-
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
61476
|
-
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
61477
|
-
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
61478
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
61479
|
-
editable: Scalars['Boolean']['output'];
|
|
61480
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
61481
|
-
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
61482
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
61483
|
-
formula?: Maybe<Scalars['JSON']['output']>;
|
|
61484
|
-
groupable: Scalars['Boolean']['output'];
|
|
61485
|
-
id: Scalars['ID']['output'];
|
|
61486
|
-
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61487
|
-
label: Scalars['String']['output'];
|
|
61488
|
-
linearizable: Scalars['Boolean']['output'];
|
|
61489
|
-
presentation?: Maybe<PolarisPresentation>;
|
|
61490
|
-
sortable: Scalars['Boolean']['output'];
|
|
61491
|
-
};
|
|
61492
61011
|
export declare type PolarisIdeas = {
|
|
61493
61012
|
__typename?: 'PolarisIdeas';
|
|
61494
61013
|
ideas?: Maybe<Array<PolarisRestIdea>>;
|
|
@@ -61515,23 +61034,8 @@ export declare type PolarisIssueLinkType = {
|
|
|
61515
61034
|
};
|
|
61516
61035
|
export declare type PolarisJiraField = PolarisIdeaField & {
|
|
61517
61036
|
__typename?: 'PolarisJiraField';
|
|
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
61037
|
id: Scalars['ID']['output'];
|
|
61529
61038
|
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
|
-
specialType?: Maybe<Scalars['String']['output']>;
|
|
61535
61039
|
};
|
|
61536
61040
|
export declare type PolarisMatrixAxis = {
|
|
61537
61041
|
__typename?: 'PolarisMatrixAxis';
|
|
@@ -61992,7 +61496,9 @@ export declare type PolarisViewTableColumnSizeInput = {
|
|
|
61992
61496
|
};
|
|
61993
61497
|
export declare enum PolarisVisualizationType {
|
|
61994
61498
|
Board = "BOARD",
|
|
61499
|
+
Collection = "COLLECTION",
|
|
61995
61500
|
Matrix = "MATRIX",
|
|
61501
|
+
Section = "SECTION",
|
|
61996
61502
|
Table = "TABLE",
|
|
61997
61503
|
Timeline = "TIMELINE",
|
|
61998
61504
|
Twoxtwo = "TWOXTWO"
|
|
@@ -62435,7 +61941,6 @@ export declare type Query = {
|
|
|
62435
61941
|
productListings: Array<ProductListingResult>;
|
|
62436
61942
|
radar_enlistment: RadarEnlistment;
|
|
62437
61943
|
radar_fieldValues: RadarFieldValuesConnection;
|
|
62438
|
-
radar_healthcheck: Scalars['String']['output'];
|
|
62439
61944
|
radar_positions: RadarPositionConnection;
|
|
62440
61945
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
62441
61946
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
@@ -63818,14 +63323,12 @@ export declare type QueryRadar_FieldValuesArgs = {
|
|
|
63818
63323
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63819
63324
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
63820
63325
|
cloudId: Scalars['ID']['input'];
|
|
63821
|
-
|
|
63326
|
+
entityType: RadarEntityType;
|
|
63327
|
+
fieldId: Scalars['ID']['input'];
|
|
63822
63328
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63823
63329
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63824
63330
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
63825
63331
|
};
|
|
63826
|
-
export declare type QueryRadar_HealthcheckArgs = {
|
|
63827
|
-
cloudId: Scalars['ID']['input'];
|
|
63828
|
-
};
|
|
63829
63332
|
export declare type QueryRadar_PositionsArgs = {
|
|
63830
63333
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63831
63334
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63976,7 +63479,7 @@ export declare type RadarEdge = {
|
|
|
63976
63479
|
export declare type RadarEnlistment = {
|
|
63977
63480
|
__typename?: 'RadarEnlistment';
|
|
63978
63481
|
cloudId: Scalars['ID']['output'];
|
|
63979
|
-
positionFields?: Maybe<Array<Maybe<
|
|
63482
|
+
positionFields?: Maybe<Array<Maybe<RadarFieldDefinition>>>;
|
|
63980
63483
|
};
|
|
63981
63484
|
export declare type RadarEntity = {
|
|
63982
63485
|
fieldValues?: Maybe<Array<Maybe<RadarFieldValueIdPair>>>;
|
|
@@ -65412,6 +64915,7 @@ export declare enum SearchBoardProductType {
|
|
|
65412
64915
|
Software = "SOFTWARE"
|
|
65413
64916
|
}
|
|
65414
64917
|
export declare type SearchCommonFilter = {
|
|
64918
|
+
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
65415
64919
|
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
65416
64920
|
};
|
|
65417
64921
|
export declare type SearchCommonRangeFilter = {
|
|
@@ -66316,9 +65820,11 @@ export declare type ShepherdActorSessionInfoInput = {
|
|
|
66316
65820
|
};
|
|
66317
65821
|
export declare type ShepherdAlert = Node & {
|
|
66318
65822
|
__typename?: 'ShepherdAlert';
|
|
65823
|
+
actor: ShepherdAlertActor;
|
|
66319
65824
|
assignee?: Maybe<ShepherdUser>;
|
|
66320
65825
|
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
66321
65826
|
createdOn: Scalars['DateTime']['output'];
|
|
65827
|
+
customFields?: Maybe<Scalars['JSON']['output']>;
|
|
66322
65828
|
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
66323
65829
|
id: Scalars['ID']['output'];
|
|
66324
65830
|
linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
|
|
@@ -66328,7 +65834,9 @@ export declare type ShepherdAlert = Node & {
|
|
|
66328
65834
|
statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
66329
65835
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
66330
65836
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
65837
|
+
time: ShepherdTime;
|
|
66331
65838
|
title: Scalars['String']['output'];
|
|
65839
|
+
type: Scalars['String']['output'];
|
|
66332
65840
|
updatedBy?: Maybe<ShepherdUser>;
|
|
66333
65841
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
66334
65842
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -66339,6 +65847,7 @@ export declare enum ShepherdAlertAction {
|
|
|
66339
65847
|
Restrict = "RESTRICT",
|
|
66340
65848
|
UpdateDataClassification = "UPDATE_DATA_CLASSIFICATION"
|
|
66341
65849
|
}
|
|
65850
|
+
export declare type ShepherdAlertActor = ShepherdActor | ShepherdAnonymousActor | ShepherdAtlassianSystemActor;
|
|
66342
65851
|
export declare type ShepherdAlertAuthorizedActions = {
|
|
66343
65852
|
__typename?: 'ShepherdAlertAuthorizedActions';
|
|
66344
65853
|
actions?: Maybe<Array<ShepherdAlertAction>>;
|
|
@@ -66507,6 +66016,10 @@ export declare type ShepherdAlertsConnection = {
|
|
|
66507
66016
|
pageInfo: PageInfo;
|
|
66508
66017
|
};
|
|
66509
66018
|
export declare type ShepherdAlertsResult = QueryError | ShepherdAlertsConnection;
|
|
66019
|
+
export declare type ShepherdAnonymousActor = {
|
|
66020
|
+
__typename?: 'ShepherdAnonymousActor';
|
|
66021
|
+
ipAddress?: Maybe<Scalars['String']['output']>;
|
|
66022
|
+
};
|
|
66510
66023
|
export declare type ShepherdAppInfo = {
|
|
66511
66024
|
__typename?: 'ShepherdAppInfo';
|
|
66512
66025
|
apiVersion: Scalars['Int']['output'];
|
|
@@ -66522,6 +66035,10 @@ export declare enum ShepherdAtlassianProduct {
|
|
|
66522
66035
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
66523
66036
|
Marketplace = "MARKETPLACE"
|
|
66524
66037
|
}
|
|
66038
|
+
export declare type ShepherdAtlassianSystemActor = {
|
|
66039
|
+
__typename?: 'ShepherdAtlassianSystemActor';
|
|
66040
|
+
name: Scalars['String']['output'];
|
|
66041
|
+
};
|
|
66525
66042
|
export declare type ShepherdAuditLogAttribute = {
|
|
66526
66043
|
__typename?: 'ShepherdAuditLogAttribute';
|
|
66527
66044
|
name: Scalars['String']['output'];
|
|
@@ -66741,7 +66258,6 @@ export declare type ShepherdDetection = {
|
|
|
66741
66258
|
category: ShepherdAlertDetectionCategory;
|
|
66742
66259
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
66743
66260
|
id: Scalars['ID']['output'];
|
|
66744
|
-
product: ShepherdAtlassianProduct;
|
|
66745
66261
|
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
66746
66262
|
regions?: Maybe<Array<Scalars['String']['output']>>;
|
|
66747
66263
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
@@ -69730,6 +69246,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
69730
69246
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
69731
69247
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
69732
69248
|
url?: Maybe<Scalars['URL']['output']>;
|
|
69249
|
+
viewer?: Maybe<TrelloBoardViewerUpdated>;
|
|
69733
69250
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
69734
69251
|
};
|
|
69735
69252
|
export declare type TrelloBoardUpdatedEdge = {
|
|
@@ -69757,6 +69274,10 @@ export declare type TrelloBoardViewerSidebar = {
|
|
|
69757
69274
|
__typename?: 'TrelloBoardViewerSidebar';
|
|
69758
69275
|
show?: Maybe<Scalars['Boolean']['output']>;
|
|
69759
69276
|
};
|
|
69277
|
+
export declare type TrelloBoardViewerUpdated = {
|
|
69278
|
+
__typename?: 'TrelloBoardViewerUpdated';
|
|
69279
|
+
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
69280
|
+
};
|
|
69760
69281
|
export declare type TrelloBoardWorkspaceUpdated = {
|
|
69761
69282
|
__typename?: 'TrelloBoardWorkspaceUpdated';
|
|
69762
69283
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -69999,6 +69520,22 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
69999
69520
|
errors?: Maybe<Array<MutationError>>;
|
|
70000
69521
|
success: Scalars['Boolean']['output'];
|
|
70001
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
|
+
};
|
|
70002
69539
|
export declare type TrelloCustomField = {
|
|
70003
69540
|
__typename?: 'TrelloCustomField';
|
|
70004
69541
|
display?: Maybe<TrelloCustomFieldDisplay>;
|
|
@@ -70130,6 +69667,7 @@ export declare type TrelloInbox = {
|
|
|
70130
69667
|
export declare type TrelloJwmWorkspaceLink = {
|
|
70131
69668
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
70132
69669
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
69670
|
+
crossflowTouchpoint?: Maybe<Scalars['String']['output']>;
|
|
70133
69671
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
70134
69672
|
inaccessible?: Maybe<Scalars['Boolean']['output']>;
|
|
70135
69673
|
};
|
|
@@ -70318,6 +69856,7 @@ export declare type TrelloMutationApi = {
|
|
|
70318
69856
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
70319
69857
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
70320
69858
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
69859
|
+
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
70321
69860
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
70322
69861
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
70323
69862
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
@@ -70339,6 +69878,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
|
|
|
70339
69878
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
70340
69879
|
input: TrelloCreateCardInput;
|
|
70341
69880
|
};
|
|
69881
|
+
export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
69882
|
+
input: TrelloCreateOrUpdatePlannerCalendarInput;
|
|
69883
|
+
};
|
|
70342
69884
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
70343
69885
|
input: TrelloPinCardInput;
|
|
70344
69886
|
};
|
|
@@ -70391,16 +69933,17 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
70391
69933
|
};
|
|
70392
69934
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
70393
69935
|
__typename?: 'TrelloPlannerCalendar';
|
|
70394
|
-
|
|
70395
|
-
|
|
69936
|
+
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
69937
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
69938
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
70396
69939
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70397
69940
|
id: Scalars['ID']['output'];
|
|
70398
|
-
objectId
|
|
70399
|
-
providerCalendarId
|
|
70400
|
-
readOnly
|
|
70401
|
-
timezone
|
|
70402
|
-
title
|
|
70403
|
-
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>;
|
|
70404
69947
|
};
|
|
70405
69948
|
export declare type TrelloPlannerCalendarEventsArgs = {
|
|
70406
69949
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70409,8 +69952,8 @@ export declare type TrelloPlannerCalendarEventsArgs = {
|
|
|
70409
69952
|
};
|
|
70410
69953
|
export declare type TrelloPlannerCalendarAccount = Node & {
|
|
70411
69954
|
__typename?: 'TrelloPlannerCalendarAccount';
|
|
70412
|
-
accountType
|
|
70413
|
-
displayName
|
|
69955
|
+
accountType?: Maybe<TrelloSupportedPlannerProviders>;
|
|
69956
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
70414
69957
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
70415
69958
|
id: Scalars['ID']['output'];
|
|
70416
69959
|
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
@@ -70434,6 +69977,25 @@ export declare type TrelloPlannerCalendarAccountEdge = {
|
|
|
70434
69977
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
70435
69978
|
node?: Maybe<TrelloPlannerCalendarAccount>;
|
|
70436
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
|
+
}
|
|
70437
69999
|
export declare type TrelloPlannerCalendarConnection = {
|
|
70438
70000
|
__typename?: 'TrelloPlannerCalendarConnection';
|
|
70439
70001
|
edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
|
|
@@ -70448,24 +70010,46 @@ export declare type TrelloPlannerCalendarEdge = {
|
|
|
70448
70010
|
};
|
|
70449
70011
|
export declare type TrelloPlannerCalendarEvent = Node & {
|
|
70450
70012
|
__typename?: 'TrelloPlannerCalendarEvent';
|
|
70451
|
-
allDay
|
|
70452
|
-
busy
|
|
70013
|
+
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
70014
|
+
busy?: Maybe<Scalars['Boolean']['output']>;
|
|
70015
|
+
cards?: Maybe<TrelloPlannerCalendarEventCardConnection>;
|
|
70453
70016
|
conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
|
|
70454
|
-
createdByTrello
|
|
70017
|
+
createdByTrello?: Maybe<Scalars['Boolean']['output']>;
|
|
70455
70018
|
description?: Maybe<Scalars['String']['output']>;
|
|
70456
|
-
endAt
|
|
70019
|
+
endAt?: Maybe<Scalars['DateTime']['output']>;
|
|
70457
70020
|
id: Scalars['ID']['output'];
|
|
70458
70021
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
70459
|
-
readOnly
|
|
70460
|
-
startAt
|
|
70461
|
-
status
|
|
70462
|
-
title
|
|
70463
|
-
type
|
|
70464
|
-
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>;
|
|
70465
70049
|
};
|
|
70466
70050
|
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
70467
70051
|
__typename?: 'TrelloPlannerCalendarEventConferencing';
|
|
70468
|
-
url
|
|
70052
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
70469
70053
|
};
|
|
70470
70054
|
export declare type TrelloPlannerCalendarEventConnection = {
|
|
70471
70055
|
__typename?: 'TrelloPlannerCalendarEventConnection';
|
|
@@ -70480,8 +70064,11 @@ export declare type TrelloPlannerCalendarEventEdge = {
|
|
|
70480
70064
|
node?: Maybe<TrelloPlannerCalendarEvent>;
|
|
70481
70065
|
};
|
|
70482
70066
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
70067
|
+
Accepted = "ACCEPTED",
|
|
70483
70068
|
Cancelled = "CANCELLED",
|
|
70484
70069
|
Confirmed = "CONFIRMED",
|
|
70070
|
+
Declined = "DECLINED",
|
|
70071
|
+
NeedsAction = "NEEDS_ACTION",
|
|
70485
70072
|
Tentative = "TENTATIVE"
|
|
70486
70073
|
}
|
|
70487
70074
|
export declare enum TrelloPlannerCalendarEventVisibility {
|
|
@@ -70490,22 +70077,23 @@ export declare enum TrelloPlannerCalendarEventVisibility {
|
|
|
70490
70077
|
Public = "PUBLIC"
|
|
70491
70078
|
}
|
|
70492
70079
|
export declare type TrelloPlannerCalendarEventsFilter = {
|
|
70493
|
-
end
|
|
70494
|
-
start
|
|
70080
|
+
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
70081
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
70495
70082
|
};
|
|
70496
70083
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
70497
70084
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
70498
|
-
|
|
70085
|
+
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70086
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
70499
70087
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70500
70088
|
id: Scalars['ID']['output'];
|
|
70501
|
-
readOnly
|
|
70502
|
-
timezone
|
|
70503
|
-
title
|
|
70504
|
-
type
|
|
70089
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
70090
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
70091
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
70092
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
70505
70093
|
};
|
|
70506
70094
|
export declare type TrelloPlannerProviderCalendarEventsArgs = {
|
|
70507
70095
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70508
|
-
filter
|
|
70096
|
+
filter: TrelloPlannerCalendarEventsFilter;
|
|
70509
70097
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70510
70098
|
};
|
|
70511
70099
|
export declare type TrelloPlannerProviderCalendarConnection = {
|
|
@@ -70570,12 +70158,13 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
70570
70158
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
70571
70159
|
};
|
|
70572
70160
|
export declare type TrelloProviderCalendarInterface = {
|
|
70573
|
-
|
|
70161
|
+
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70162
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
70574
70163
|
id: Scalars['ID']['output'];
|
|
70575
|
-
readOnly
|
|
70576
|
-
timezone
|
|
70577
|
-
title
|
|
70578
|
-
type
|
|
70164
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
70165
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
70166
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
70167
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
70579
70168
|
};
|
|
70580
70169
|
export declare type TrelloQueryApi = {
|
|
70581
70170
|
__typename?: 'TrelloQueryApi';
|
|
@@ -70911,6 +70500,17 @@ export declare type TrelloWorkspacePrefs = {
|
|
|
70911
70500
|
export declare enum TrelloWorkspaceTier {
|
|
70912
70501
|
Paid = "PAID"
|
|
70913
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
|
+
};
|
|
70914
70514
|
export declare type TunnelDefinitionsInput = {
|
|
70915
70515
|
customUI?: InputMaybe<Array<InputMaybe<CustomUiTunnelDefinitionInput>>>;
|
|
70916
70516
|
faasTunnelUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -70956,6 +70556,7 @@ export declare type UnifiedAllowList = UnifiedINode & {
|
|
|
70956
70556
|
export declare type UnifiedAtlassianProduct = UnifiedINode & {
|
|
70957
70557
|
__typename?: 'UnifiedAtlassianProduct';
|
|
70958
70558
|
id: Scalars['ID']['output'];
|
|
70559
|
+
productId: Scalars['String']['output'];
|
|
70959
70560
|
title?: Maybe<Scalars['String']['output']>;
|
|
70960
70561
|
type?: Maybe<Scalars['String']['output']>;
|
|
70961
70562
|
viewHref?: Maybe<Scalars['String']['output']>;
|
|
@@ -71641,6 +71242,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
71641
71242
|
};
|
|
71642
71243
|
export declare type UpdateCompassScorecardInput = {
|
|
71643
71244
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
71245
|
+
componentCustomFieldFilters?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
71644
71246
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
71645
71247
|
componentLifecycleStages?: InputMaybe<CompassLifecycleFilterInput>;
|
|
71646
71248
|
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -72168,6 +71770,7 @@ export declare enum VirtualAgentConversationActionType {
|
|
|
72168
71770
|
export declare enum VirtualAgentConversationChannel {
|
|
72169
71771
|
HelpCenter = "HELP_CENTER",
|
|
72170
71772
|
JsmPortal = "JSM_PORTAL",
|
|
71773
|
+
JsmWidget = "JSM_WIDGET",
|
|
72171
71774
|
MsTeams = "MS_TEAMS",
|
|
72172
71775
|
Slack = "SLACK"
|
|
72173
71776
|
}
|