@forge/cli-shared 3.5.1-next.7 → 3.6.0-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/out/graphql/graphql-types.d.ts +1056 -29
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +138 -7
- package/out/service/feature-flag-service.d.ts +4 -0
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +6 -1
- package/out/shared/read-app-config-files.js +1 -1
- package/out/ui/runtime-log.d.ts.map +1 -1
- package/out/ui/runtime-log.js +9 -4
- package/package.json +2 -2
|
@@ -16,6 +16,7 @@ export declare type Scalars = {
|
|
|
16
16
|
Boolean: boolean;
|
|
17
17
|
Int: number;
|
|
18
18
|
Float: number;
|
|
19
|
+
AppStoredCustomEntityFieldValue: any;
|
|
19
20
|
AppStoredEntityFieldValue: any;
|
|
20
21
|
CardPaletteColor: any;
|
|
21
22
|
CardTypeHierarchyLevelType: any;
|
|
@@ -294,6 +295,14 @@ export declare type AddAppContributorResponsePayload = Payload & {
|
|
|
294
295
|
success: Scalars['Boolean'];
|
|
295
296
|
errors?: Maybe<Array<MutationError>>;
|
|
296
297
|
};
|
|
298
|
+
export declare type AddBetaUserAsSiteCreatorInput = {
|
|
299
|
+
cloudID: Scalars['String'];
|
|
300
|
+
};
|
|
301
|
+
export declare type AddBetaUserAsSiteCreatorPayload = Payload & {
|
|
302
|
+
__typename?: 'AddBetaUserAsSiteCreatorPayload';
|
|
303
|
+
success: Scalars['Boolean'];
|
|
304
|
+
errors?: Maybe<Array<MutationError>>;
|
|
305
|
+
};
|
|
297
306
|
export declare type AddCompassComponentLabelsInput = {
|
|
298
307
|
componentId: Scalars['ID'];
|
|
299
308
|
labelNames: Array<Scalars['String']>;
|
|
@@ -313,6 +322,21 @@ export declare type AddPolarisColumnInput = {
|
|
|
313
322
|
heading?: Maybe<Scalars['String']>;
|
|
314
323
|
};
|
|
315
324
|
export declare type Admin = JiraUser | JiraUserGroup;
|
|
325
|
+
export declare type AdminCustomSchemaMutation = {
|
|
326
|
+
__typename?: 'AdminCustomSchemaMutation';
|
|
327
|
+
createCustomSchemas?: Maybe<CustomSchemaPayload>;
|
|
328
|
+
validateCustomSchemas?: Maybe<CustomSchemaPayload>;
|
|
329
|
+
};
|
|
330
|
+
export declare type AdminCustomSchemaMutationCreateCustomSchemasArgs = {
|
|
331
|
+
input: AdminCustomSchemaMutationInput;
|
|
332
|
+
};
|
|
333
|
+
export declare type AdminCustomSchemaMutationValidateCustomSchemasArgs = {
|
|
334
|
+
input: AdminCustomSchemaMutationInput;
|
|
335
|
+
};
|
|
336
|
+
export declare type AdminCustomSchemaMutationInput = {
|
|
337
|
+
oauthClientId: Scalars['String'];
|
|
338
|
+
schemas: Array<Scalars['JSON']>;
|
|
339
|
+
};
|
|
316
340
|
export declare enum ApiContext {
|
|
317
341
|
Devops = "DEVOPS"
|
|
318
342
|
}
|
|
@@ -472,6 +496,7 @@ export declare type AppEnvironmentVersionsArgs = {
|
|
|
472
496
|
last?: Maybe<Scalars['Int']>;
|
|
473
497
|
after?: Maybe<Scalars['String']>;
|
|
474
498
|
before?: Maybe<Scalars['String']>;
|
|
499
|
+
interval?: Maybe<IntervalFilter>;
|
|
475
500
|
};
|
|
476
501
|
export declare type AppEnvironmentInput = {
|
|
477
502
|
appId: Scalars['ID'];
|
|
@@ -497,6 +522,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
497
522
|
__typename?: 'AppEnvironmentVersion';
|
|
498
523
|
id: Scalars['ID'];
|
|
499
524
|
version: Scalars['String'];
|
|
525
|
+
createdAt: Scalars['String'];
|
|
500
526
|
isLatest: Scalars['Boolean'];
|
|
501
527
|
requiresLicense: Scalars['Boolean'];
|
|
502
528
|
permissions: Array<AppPermission>;
|
|
@@ -798,6 +824,17 @@ export declare enum AppSecurityPoliciesPermissionTypeExtension {
|
|
|
798
824
|
export declare type AppServicesFilter = {
|
|
799
825
|
name: Scalars['String'];
|
|
800
826
|
};
|
|
827
|
+
export declare type AppStorageCustomEntityMutation = {
|
|
828
|
+
__typename?: 'AppStorageCustomEntityMutation';
|
|
829
|
+
setAppStoredCustomEntity?: Maybe<SetAppStoredCustomEntityPayload>;
|
|
830
|
+
deleteAppStoredCustomEntity?: Maybe<DeleteAppStoredCustomEntityPayload>;
|
|
831
|
+
};
|
|
832
|
+
export declare type AppStorageCustomEntityMutationSetAppStoredCustomEntityArgs = {
|
|
833
|
+
input: SetAppStoredCustomEntityMutationInput;
|
|
834
|
+
};
|
|
835
|
+
export declare type AppStorageCustomEntityMutationDeleteAppStoredCustomEntityArgs = {
|
|
836
|
+
input: DeleteAppStoredCustomEntityMutationInput;
|
|
837
|
+
};
|
|
801
838
|
export declare type AppStorageMutation = {
|
|
802
839
|
__typename?: 'AppStorageMutation';
|
|
803
840
|
setAppStoredEntity?: Maybe<SetAppStoredEntityPayload>;
|
|
@@ -809,13 +846,70 @@ export declare type AppStorageMutationSetAppStoredEntityArgs = {
|
|
|
809
846
|
export declare type AppStorageMutationDeleteAppStoredEntityArgs = {
|
|
810
847
|
input: DeleteAppStoredEntityMutationInput;
|
|
811
848
|
};
|
|
849
|
+
export declare type AppStoredCustomEntity = {
|
|
850
|
+
__typename?: 'AppStoredCustomEntity';
|
|
851
|
+
value?: Maybe<Scalars['JSON']>;
|
|
852
|
+
key: Scalars['ID'];
|
|
853
|
+
entityName: Scalars['String'];
|
|
854
|
+
};
|
|
855
|
+
export declare type AppStoredCustomEntityConnection = {
|
|
856
|
+
__typename?: 'AppStoredCustomEntityConnection';
|
|
857
|
+
edges?: Maybe<Array<Maybe<AppStoredCustomEntityEdge>>>;
|
|
858
|
+
nodes?: Maybe<Array<Maybe<AppStoredEntity>>>;
|
|
859
|
+
pageInfo?: Maybe<AppStoredEntityPageInfo>;
|
|
860
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
861
|
+
cursor?: Maybe<Scalars['String']>;
|
|
862
|
+
};
|
|
863
|
+
export declare type AppStoredCustomEntityEdge = {
|
|
864
|
+
__typename?: 'AppStoredCustomEntityEdge';
|
|
865
|
+
cursor?: Maybe<Scalars['String']>;
|
|
866
|
+
node?: Maybe<AppStoredEntity>;
|
|
867
|
+
};
|
|
868
|
+
export declare type AppStoredCustomEntityFilter = {
|
|
869
|
+
property: Scalars['String'];
|
|
870
|
+
condition: AppStoredCustomEntityFilterCondition;
|
|
871
|
+
values: Array<Scalars['AppStoredCustomEntityFieldValue']>;
|
|
872
|
+
};
|
|
873
|
+
export declare enum AppStoredCustomEntityFilterCondition {
|
|
874
|
+
BeginsWith = "BEGINS_WITH",
|
|
875
|
+
Between = "BETWEEN",
|
|
876
|
+
Contains = "CONTAINS",
|
|
877
|
+
NotContains = "NOT_CONTAINS",
|
|
878
|
+
Exists = "EXISTS",
|
|
879
|
+
NotExists = "NOT_EXISTS",
|
|
880
|
+
EqualTo = "EQUAL_TO",
|
|
881
|
+
NotEqualTo = "NOT_EQUAL_TO",
|
|
882
|
+
GreaterThanEqualTo = "GREATER_THAN_EQUAL_TO",
|
|
883
|
+
GreaterThan = "GREATER_THAN",
|
|
884
|
+
LessThanEqualTo = "LESS_THAN_EQUAL_TO",
|
|
885
|
+
LessThan = "LESS_THAN"
|
|
886
|
+
}
|
|
887
|
+
export declare type AppStoredCustomEntityFilters = {
|
|
888
|
+
or?: Maybe<Array<AppStoredCustomEntityFilter>>;
|
|
889
|
+
and?: Maybe<Array<AppStoredCustomEntityFilter>>;
|
|
890
|
+
};
|
|
891
|
+
export declare type AppStoredCustomEntityRange = {
|
|
892
|
+
condition: AppStoredCustomEntityRangeCondition;
|
|
893
|
+
values: Array<Scalars['AppStoredCustomEntityFieldValue']>;
|
|
894
|
+
};
|
|
895
|
+
export declare enum AppStoredCustomEntityRangeCondition {
|
|
896
|
+
BeginsWith = "BEGINS_WITH",
|
|
897
|
+
Between = "BETWEEN",
|
|
898
|
+
GreaterThanEqualTo = "GREATER_THAN_EQUAL_TO",
|
|
899
|
+
GreaterThan = "GREATER_THAN",
|
|
900
|
+
LessThanEqualTo = "LESS_THAN_EQUAL_TO",
|
|
901
|
+
LessThan = "LESS_THAN",
|
|
902
|
+
EqualTo = "EQUAL_TO"
|
|
903
|
+
}
|
|
812
904
|
export declare type AppStoredEntity = {
|
|
813
905
|
__typename?: 'AppStoredEntity';
|
|
814
906
|
value?: Maybe<Scalars['JSON']>;
|
|
815
907
|
key: Scalars['ID'];
|
|
816
908
|
};
|
|
817
909
|
export declare enum AppStoredEntityCondition {
|
|
818
|
-
StartsWith = "STARTS_WITH"
|
|
910
|
+
StartsWith = "STARTS_WITH",
|
|
911
|
+
NotEqualTo = "NOT_EQUAL_TO",
|
|
912
|
+
In = "IN"
|
|
819
913
|
}
|
|
820
914
|
export declare type AppStoredEntityConnection = {
|
|
821
915
|
__typename?: 'AppStoredEntityConnection';
|
|
@@ -2282,6 +2376,7 @@ export declare type CompassCreateCustomFieldDefinitionInput = {
|
|
|
2282
2376
|
booleanFieldDefinition?: Maybe<CompassCreateCustomBooleanFieldDefinitionInput>;
|
|
2283
2377
|
textFieldDefinition?: Maybe<CompassCreateCustomTextFieldDefinitionInput>;
|
|
2284
2378
|
numberFieldDefinition?: Maybe<CompassCreateCustomNumberFieldDefinitionInput>;
|
|
2379
|
+
userFieldDefinition?: Maybe<CompassCreateCustomUserFieldDefinitionInput>;
|
|
2285
2380
|
};
|
|
2286
2381
|
export declare type CompassCreateCustomFieldDefinitionPayload = Payload & {
|
|
2287
2382
|
__typename?: 'CompassCreateCustomFieldDefinitionPayload';
|
|
@@ -2303,6 +2398,13 @@ export declare type CompassCreateCustomTextFieldDefinitionInput = {
|
|
|
2303
2398
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2304
2399
|
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2305
2400
|
};
|
|
2401
|
+
export declare type CompassCreateCustomUserFieldDefinitionInput = {
|
|
2402
|
+
cloudId: Scalars['ID'];
|
|
2403
|
+
name: Scalars['String'];
|
|
2404
|
+
description?: Maybe<Scalars['String']>;
|
|
2405
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2406
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2407
|
+
};
|
|
2306
2408
|
export declare type CompassCreateDeploymentEventInput = {
|
|
2307
2409
|
updateSequenceNumber: Scalars['Long'];
|
|
2308
2410
|
displayName: Scalars['String'];
|
|
@@ -2454,6 +2556,10 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
2454
2556
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
2455
2557
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
2456
2558
|
}
|
|
2559
|
+
export declare enum CompassCriteriaTextComparatorOptions {
|
|
2560
|
+
IsPresent = "IS_PRESENT",
|
|
2561
|
+
MatchesRegex = "MATCHES_REGEX"
|
|
2562
|
+
}
|
|
2457
2563
|
export declare type CompassCustomBooleanField = CompassCustomField & {
|
|
2458
2564
|
__typename?: 'CompassCustomBooleanField';
|
|
2459
2565
|
definition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
@@ -2526,6 +2632,7 @@ export declare type CompassCustomFieldInput = {
|
|
|
2526
2632
|
booleanField?: Maybe<CompassCustomBooleanFieldInput>;
|
|
2527
2633
|
textField?: Maybe<CompassCustomTextFieldInput>;
|
|
2528
2634
|
numberField?: Maybe<CompassCustomNumberFieldInput>;
|
|
2635
|
+
userField?: Maybe<CompassCustomUserFieldInput>;
|
|
2529
2636
|
};
|
|
2530
2637
|
export declare type CompassCustomFieldScorecardCriteria = {
|
|
2531
2638
|
id: Scalars['ID'];
|
|
@@ -2569,6 +2676,23 @@ export declare type CompassCustomTextFieldInput = {
|
|
|
2569
2676
|
definitionId: Scalars['ID'];
|
|
2570
2677
|
textValue?: Maybe<Scalars['String']>;
|
|
2571
2678
|
};
|
|
2679
|
+
export declare type CompassCustomUserField = CompassCustomField & {
|
|
2680
|
+
__typename?: 'CompassCustomUserField';
|
|
2681
|
+
definition?: Maybe<CompassCustomUserFieldDefinition>;
|
|
2682
|
+
userValue?: Maybe<User>;
|
|
2683
|
+
};
|
|
2684
|
+
export declare type CompassCustomUserFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
2685
|
+
__typename?: 'CompassCustomUserFieldDefinition';
|
|
2686
|
+
id: Scalars['ID'];
|
|
2687
|
+
name?: Maybe<Scalars['String']>;
|
|
2688
|
+
description?: Maybe<Scalars['String']>;
|
|
2689
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2690
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2691
|
+
};
|
|
2692
|
+
export declare type CompassCustomUserFieldInput = {
|
|
2693
|
+
definitionId: Scalars['ID'];
|
|
2694
|
+
userIdValue?: Maybe<Scalars['ID']>;
|
|
2695
|
+
};
|
|
2572
2696
|
export declare type CompassDeleteAnnouncementInput = {
|
|
2573
2697
|
cloudId: Scalars['ID'];
|
|
2574
2698
|
id: Scalars['ID'];
|
|
@@ -2659,6 +2783,9 @@ export declare type CompassDeploymentEventEnvironmentInput = {
|
|
|
2659
2783
|
displayName: Scalars['String'];
|
|
2660
2784
|
environmentId: Scalars['String'];
|
|
2661
2785
|
};
|
|
2786
|
+
export declare type CompassDeploymentEventFilters = {
|
|
2787
|
+
environments?: Maybe<Array<CompassDeploymentEventEnvironmentCategory>>;
|
|
2788
|
+
};
|
|
2662
2789
|
export declare type CompassDeploymentEventPipeline = {
|
|
2663
2790
|
__typename?: 'CompassDeploymentEventPipeline';
|
|
2664
2791
|
pipelineId?: Maybe<Scalars['String']>;
|
|
@@ -2720,6 +2847,9 @@ export declare type CompassEventEdge = {
|
|
|
2720
2847
|
cursor: Scalars['String'];
|
|
2721
2848
|
node?: Maybe<CompassEvent>;
|
|
2722
2849
|
};
|
|
2850
|
+
export declare type CompassEventFilters = {
|
|
2851
|
+
deployments?: Maybe<CompassDeploymentEventFilters>;
|
|
2852
|
+
};
|
|
2723
2853
|
export declare type CompassEventInput = {
|
|
2724
2854
|
deployment?: Maybe<CompassCreateDeploymentEventInput>;
|
|
2725
2855
|
build?: Maybe<CompassCreateBuildEventInput>;
|
|
@@ -2749,12 +2879,14 @@ export declare type CompassEventsInEventSourceQuery = {
|
|
|
2749
2879
|
first?: Maybe<Scalars['Int']>;
|
|
2750
2880
|
after?: Maybe<Scalars['String']>;
|
|
2751
2881
|
timeParameters?: Maybe<CompassEventTimeParameters>;
|
|
2882
|
+
eventFilters?: Maybe<CompassEventFilters>;
|
|
2752
2883
|
};
|
|
2753
2884
|
export declare type CompassEventsQuery = {
|
|
2754
2885
|
eventTypes?: Maybe<Array<CompassEventType>>;
|
|
2755
2886
|
first?: Maybe<Scalars['Int']>;
|
|
2756
2887
|
after?: Maybe<Scalars['String']>;
|
|
2757
2888
|
timeParameters?: Maybe<CompassEventTimeParameters>;
|
|
2889
|
+
eventFilters?: Maybe<CompassEventFilters>;
|
|
2758
2890
|
};
|
|
2759
2891
|
export declare type CompassEventsQueryResult = CompassEventConnection | QueryError;
|
|
2760
2892
|
export declare type CompassExternalAlias = {
|
|
@@ -2869,6 +3001,8 @@ export declare type CompassHasLinkScorecardCriteria = CompassScorecardCriteria &
|
|
|
2869
3001
|
id: Scalars['ID'];
|
|
2870
3002
|
weight: Scalars['Int'];
|
|
2871
3003
|
linkType: CompassLinkType;
|
|
3004
|
+
textComparator?: Maybe<CompassCriteriaTextComparatorOptions>;
|
|
3005
|
+
textComparatorValue?: Maybe<Scalars['String']>;
|
|
2872
3006
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2873
3007
|
};
|
|
2874
3008
|
export declare type CompassHasLinkScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -3265,6 +3399,8 @@ export declare type CompassScorecardCriteriaScore = {
|
|
|
3265
3399
|
__typename?: 'CompassScorecardCriteriaScore';
|
|
3266
3400
|
score: Scalars['Int'];
|
|
3267
3401
|
maxScore: Scalars['Int'];
|
|
3402
|
+
explanation?: Maybe<Scalars['String']>;
|
|
3403
|
+
dataSourceLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
3268
3404
|
};
|
|
3269
3405
|
export declare type CompassScorecardCriteriaScoreQuery = {
|
|
3270
3406
|
componentId: Scalars['ID'];
|
|
@@ -3452,6 +3588,7 @@ export declare type CompassUpdateCustomFieldDefinitionInput = {
|
|
|
3452
3588
|
booleanFieldDefinition?: Maybe<CompassUpdateCustomBooleanFieldDefinitionInput>;
|
|
3453
3589
|
textFieldDefinition?: Maybe<CompassUpdateCustomTextFieldDefinitionInput>;
|
|
3454
3590
|
numberFieldDefinition?: Maybe<CompassUpdateCustomNumberFieldDefinitionInput>;
|
|
3591
|
+
userFieldDefinition?: Maybe<CompassUpdateCustomUserFieldDefinitionInput>;
|
|
3455
3592
|
};
|
|
3456
3593
|
export declare type CompassUpdateCustomFieldDefinitionPayload = Payload & {
|
|
3457
3594
|
__typename?: 'CompassUpdateCustomFieldDefinitionPayload';
|
|
@@ -3473,6 +3610,13 @@ export declare type CompassUpdateCustomTextFieldDefinitionInput = {
|
|
|
3473
3610
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3474
3611
|
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
3475
3612
|
};
|
|
3613
|
+
export declare type CompassUpdateCustomUserFieldDefinitionInput = {
|
|
3614
|
+
id: Scalars['ID'];
|
|
3615
|
+
name?: Maybe<Scalars['String']>;
|
|
3616
|
+
description?: Maybe<Scalars['String']>;
|
|
3617
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3618
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
3619
|
+
};
|
|
3476
3620
|
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
3477
3621
|
id: Scalars['ID'];
|
|
3478
3622
|
weight?: Maybe<Scalars['Int']>;
|
|
@@ -4933,6 +5077,8 @@ export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
|
4933
5077
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
4934
5078
|
weight: Scalars['Int'];
|
|
4935
5079
|
linkType: CompassLinkType;
|
|
5080
|
+
textComparator?: Maybe<CompassCriteriaTextComparatorOptions>;
|
|
5081
|
+
textComparatorValue?: Maybe<Scalars['String']>;
|
|
4936
5082
|
};
|
|
4937
5083
|
export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
4938
5084
|
weight: Scalars['Int'];
|
|
@@ -5309,6 +5455,31 @@ export declare type CurrentUser = {
|
|
|
5309
5455
|
__typename?: 'CurrentUser';
|
|
5310
5456
|
permissions: Array<Maybe<Scalars['SoftwareBoardPermission']>>;
|
|
5311
5457
|
};
|
|
5458
|
+
export declare type CustomEntityDefinition = {
|
|
5459
|
+
__typename?: 'CustomEntityDefinition';
|
|
5460
|
+
name: Scalars['String'];
|
|
5461
|
+
version: Scalars['Int'];
|
|
5462
|
+
attributes: Scalars['JSON'];
|
|
5463
|
+
indexes?: Maybe<Array<Maybe<CustomEntityIndex>>>;
|
|
5464
|
+
status: CustomEntityStatus;
|
|
5465
|
+
};
|
|
5466
|
+
export declare type CustomEntityIndex = {
|
|
5467
|
+
__typename?: 'CustomEntityIndex';
|
|
5468
|
+
name: Scalars['String'];
|
|
5469
|
+
range: Array<Scalars['String']>;
|
|
5470
|
+
partition?: Maybe<Array<Scalars['String']>>;
|
|
5471
|
+
status: CustomEntityIndexStatus;
|
|
5472
|
+
};
|
|
5473
|
+
export declare enum CustomEntityIndexStatus {
|
|
5474
|
+
Active = "ACTIVE",
|
|
5475
|
+
Inactive = "INACTIVE",
|
|
5476
|
+
Creating = "CREATING",
|
|
5477
|
+
Pending = "PENDING"
|
|
5478
|
+
}
|
|
5479
|
+
export declare enum CustomEntityStatus {
|
|
5480
|
+
Active = "ACTIVE",
|
|
5481
|
+
Inactive = "INACTIVE"
|
|
5482
|
+
}
|
|
5312
5483
|
export declare type CustomFilter = {
|
|
5313
5484
|
__typename?: 'CustomFilter';
|
|
5314
5485
|
id: Scalars['ID'];
|
|
@@ -5330,6 +5501,21 @@ export declare type CustomFiltersValidationError = {
|
|
|
5330
5501
|
errorMessage: Scalars['String'];
|
|
5331
5502
|
errorKey: Scalars['String'];
|
|
5332
5503
|
};
|
|
5504
|
+
export declare type CustomSchemaMutation = {
|
|
5505
|
+
__typename?: 'CustomSchemaMutation';
|
|
5506
|
+
createCustomSchemas?: Maybe<CustomSchemaPayload>;
|
|
5507
|
+
};
|
|
5508
|
+
export declare type CustomSchemaMutationCreateCustomSchemasArgs = {
|
|
5509
|
+
input: CustomSchemaMutationInput;
|
|
5510
|
+
};
|
|
5511
|
+
export declare type CustomSchemaMutationInput = {
|
|
5512
|
+
schemas: Array<Scalars['JSON']>;
|
|
5513
|
+
};
|
|
5514
|
+
export declare type CustomSchemaPayload = Payload & {
|
|
5515
|
+
__typename?: 'CustomSchemaPayload';
|
|
5516
|
+
success: Scalars['Boolean'];
|
|
5517
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5518
|
+
};
|
|
5333
5519
|
export declare type CustomUiTunnelDefinition = {
|
|
5334
5520
|
__typename?: 'CustomUITunnelDefinition';
|
|
5335
5521
|
resourceKey?: Maybe<Scalars['String']>;
|
|
@@ -5436,6 +5622,16 @@ export declare type DeleteAppResponse = Payload & {
|
|
|
5436
5622
|
success: Scalars['Boolean'];
|
|
5437
5623
|
errors?: Maybe<Array<MutationError>>;
|
|
5438
5624
|
};
|
|
5625
|
+
export declare type DeleteAppStoredCustomEntityMutationInput = {
|
|
5626
|
+
key: Scalars['ID'];
|
|
5627
|
+
contextAri: Scalars['ID'];
|
|
5628
|
+
entityName: Scalars['String'];
|
|
5629
|
+
};
|
|
5630
|
+
export declare type DeleteAppStoredCustomEntityPayload = Payload & {
|
|
5631
|
+
__typename?: 'DeleteAppStoredCustomEntityPayload';
|
|
5632
|
+
success: Scalars['Boolean'];
|
|
5633
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5634
|
+
};
|
|
5439
5635
|
export declare type DeleteAppStoredEntityMutationInput = {
|
|
5440
5636
|
key: Scalars['ID'];
|
|
5441
5637
|
contextAri: Scalars['ID'];
|
|
@@ -6876,12 +7072,16 @@ export declare type DeveloperLogAccessResult = {
|
|
|
6876
7072
|
export declare type DirectoryMutation = {
|
|
6877
7073
|
__typename?: 'DirectoryMutation';
|
|
6878
7074
|
removeUserFromOrganization?: Maybe<DirectoryRemoveUserPayload>;
|
|
7075
|
+
removeUserAccess?: Maybe<DirectoryRemoveUserAccessPayload>;
|
|
6879
7076
|
restoreUserAccess?: Maybe<DirectoryRestoreUserAccessPayload>;
|
|
6880
7077
|
suspendUserAccess?: Maybe<DirectorySuspendUserAccessPayload>;
|
|
6881
7078
|
};
|
|
6882
7079
|
export declare type DirectoryMutationRemoveUserFromOrganizationArgs = {
|
|
6883
7080
|
input?: Maybe<DirectoryRemoveUserInput>;
|
|
6884
7081
|
};
|
|
7082
|
+
export declare type DirectoryMutationRemoveUserAccessArgs = {
|
|
7083
|
+
input?: Maybe<DirectoryRemoveUserInput>;
|
|
7084
|
+
};
|
|
6885
7085
|
export declare type DirectoryMutationRestoreUserAccessArgs = {
|
|
6886
7086
|
input?: Maybe<DirectoryRestoreUserInput>;
|
|
6887
7087
|
};
|
|
@@ -6892,6 +7092,11 @@ export declare type DirectoryQuery = {
|
|
|
6892
7092
|
__typename?: 'DirectoryQuery';
|
|
6893
7093
|
_version?: Maybe<Scalars['String']>;
|
|
6894
7094
|
};
|
|
7095
|
+
export declare type DirectoryRemoveUserAccessPayload = Payload & {
|
|
7096
|
+
__typename?: 'DirectoryRemoveUserAccessPayload';
|
|
7097
|
+
success: Scalars['Boolean'];
|
|
7098
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7099
|
+
};
|
|
6895
7100
|
export declare type DirectoryRemoveUserInput = {
|
|
6896
7101
|
orgId: Scalars['ID'];
|
|
6897
7102
|
accountId: Scalars['ID'];
|
|
@@ -7030,6 +7235,18 @@ export declare type ErrorDetails = {
|
|
|
7030
7235
|
fields?: Maybe<Scalars['JSON']>;
|
|
7031
7236
|
message: Scalars['String'];
|
|
7032
7237
|
};
|
|
7238
|
+
export declare type ErsLifecycleMutation = {
|
|
7239
|
+
__typename?: 'ErsLifecycleMutation';
|
|
7240
|
+
customSchemas?: Maybe<AdminCustomSchemaMutation>;
|
|
7241
|
+
};
|
|
7242
|
+
export declare type ErsLifecycleQuery = {
|
|
7243
|
+
__typename?: 'ErsLifecycleQuery';
|
|
7244
|
+
customEntityDefinitions?: Maybe<Array<Maybe<CustomEntityDefinition>>>;
|
|
7245
|
+
};
|
|
7246
|
+
export declare type ErsLifecycleQueryCustomEntityDefinitionsArgs = {
|
|
7247
|
+
entities: Array<Scalars['String']>;
|
|
7248
|
+
oauthClientId: Scalars['String'];
|
|
7249
|
+
};
|
|
7033
7250
|
export declare type Estimate = {
|
|
7034
7251
|
__typename?: 'Estimate';
|
|
7035
7252
|
storyPoints?: Maybe<Scalars['Float']>;
|
|
@@ -7106,18 +7323,27 @@ export declare type Extension = {
|
|
|
7106
7323
|
export declare type ExtensionContext = {
|
|
7107
7324
|
__typename?: 'ExtensionContext';
|
|
7108
7325
|
id: Scalars['ID'];
|
|
7326
|
+
extensions: Array<Extension>;
|
|
7109
7327
|
extensionsByType: Array<Extension>;
|
|
7110
7328
|
installationsSummary?: Maybe<Array<InstallationSummary>>;
|
|
7111
7329
|
appAuditLogs: AppAuditConnection;
|
|
7330
|
+
userConsentByAaid?: Maybe<Array<UserConsent>>;
|
|
7112
7331
|
installations?: Maybe<AppInstallationConnection>;
|
|
7113
7332
|
};
|
|
7333
|
+
export declare type ExtensionContextExtensionsArgs = {
|
|
7334
|
+
filter?: Maybe<Array<ExtensionContextsFilter>>;
|
|
7335
|
+
};
|
|
7114
7336
|
export declare type ExtensionContextExtensionsByTypeArgs = {
|
|
7115
7337
|
type: Scalars['String'];
|
|
7338
|
+
principalType?: Maybe<PrincipalType>;
|
|
7116
7339
|
};
|
|
7117
7340
|
export declare type ExtensionContextAppAuditLogsArgs = {
|
|
7118
7341
|
first?: Maybe<Scalars['Int']>;
|
|
7119
7342
|
after?: Maybe<Scalars['String']>;
|
|
7120
7343
|
};
|
|
7344
|
+
export declare type ExtensionContextUserConsentByAaidArgs = {
|
|
7345
|
+
userAaid: Scalars['ID'];
|
|
7346
|
+
};
|
|
7121
7347
|
export declare type ExtensionContextInstallationsArgs = {
|
|
7122
7348
|
first?: Maybe<Scalars['Int']>;
|
|
7123
7349
|
last?: Maybe<Scalars['Int']>;
|
|
@@ -7125,6 +7351,15 @@ export declare type ExtensionContextInstallationsArgs = {
|
|
|
7125
7351
|
after?: Maybe<Scalars['String']>;
|
|
7126
7352
|
filter?: Maybe<AppInstallationsFilter>;
|
|
7127
7353
|
};
|
|
7354
|
+
export declare type ExtensionContextsFilter = {
|
|
7355
|
+
type: ExtensionContextsFilterType;
|
|
7356
|
+
value: Scalars['String'];
|
|
7357
|
+
};
|
|
7358
|
+
export declare enum ExtensionContextsFilterType {
|
|
7359
|
+
Container = "CONTAINER",
|
|
7360
|
+
DataClassificationTag = "DATA_CLASSIFICATION_TAG",
|
|
7361
|
+
ExtensionType = "EXTENSION_TYPE"
|
|
7362
|
+
}
|
|
7128
7363
|
export declare type ExtensionDetailsInput = {
|
|
7129
7364
|
definitionId: Scalars['ID'];
|
|
7130
7365
|
extensionKey: Scalars['String'];
|
|
@@ -7319,7 +7554,8 @@ export declare enum ForgeMetricsGroupByDimensions {
|
|
|
7319
7554
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
7320
7555
|
ErrorType = "ERROR_TYPE",
|
|
7321
7556
|
Version = "VERSION",
|
|
7322
|
-
ContextAri = "CONTEXT_ARI"
|
|
7557
|
+
ContextAri = "CONTEXT_ARI",
|
|
7558
|
+
Function = "FUNCTION"
|
|
7323
7559
|
}
|
|
7324
7560
|
export declare type ForgeMetricsInstallationContext = {
|
|
7325
7561
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
@@ -7378,11 +7614,17 @@ export declare type ForgeMetricsLatenciesDataPoint = {
|
|
|
7378
7614
|
bucket: Scalars['String'];
|
|
7379
7615
|
count: Scalars['Int'];
|
|
7380
7616
|
};
|
|
7617
|
+
export declare type ForgeMetricsLatenciesPercentile = {
|
|
7618
|
+
__typename?: 'ForgeMetricsLatenciesPercentile';
|
|
7619
|
+
percentile: Scalars['String'];
|
|
7620
|
+
value: Scalars['String'];
|
|
7621
|
+
};
|
|
7381
7622
|
export declare type ForgeMetricsLatenciesResult = ForgeMetricsLatenciesData | QueryError;
|
|
7382
7623
|
export declare type ForgeMetricsLatenciesSeries = ForgeMetricsSeries & {
|
|
7383
7624
|
__typename?: 'ForgeMetricsLatenciesSeries';
|
|
7384
7625
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
7385
7626
|
data: Array<ForgeMetricsLatenciesDataPoint>;
|
|
7627
|
+
percentiles?: Maybe<Array<ForgeMetricsLatenciesPercentile>>;
|
|
7386
7628
|
};
|
|
7387
7629
|
export declare type ForgeMetricsQuery = {
|
|
7388
7630
|
__typename?: 'ForgeMetricsQuery';
|
|
@@ -7419,6 +7661,7 @@ export declare type ForgeMetricsQuerySitesArgs = {
|
|
|
7419
7661
|
};
|
|
7420
7662
|
export declare type ForgeMetricsQueryLatenciesArgs = {
|
|
7421
7663
|
query: ForgeMetricsQueryInput;
|
|
7664
|
+
percentiles?: Maybe<Array<Scalars['Float']>>;
|
|
7422
7665
|
};
|
|
7423
7666
|
export declare type ForgeMetricsQueryFilters = {
|
|
7424
7667
|
environment?: Maybe<Scalars['ID']>;
|
|
@@ -7655,6 +7898,8 @@ export declare type HelpCenterQueryApi = {
|
|
|
7655
7898
|
__typename?: 'HelpCenterQueryApi';
|
|
7656
7899
|
helpCenterFromProductName?: Maybe<HelpCenterQueryResult>;
|
|
7657
7900
|
helpCenterTopicFromProductName?: Maybe<HelpCenterTopicResult>;
|
|
7901
|
+
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
7902
|
+
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
7658
7903
|
};
|
|
7659
7904
|
export declare type HelpCenterQueryApiHelpCenterFromProductNameArgs = {
|
|
7660
7905
|
productName: Scalars['String'];
|
|
@@ -7663,6 +7908,13 @@ export declare type HelpCenterQueryApiHelpCenterTopicFromProductNameArgs = {
|
|
|
7663
7908
|
productName: Scalars['String'];
|
|
7664
7909
|
topicId: Scalars['ID'];
|
|
7665
7910
|
};
|
|
7911
|
+
export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
7912
|
+
helpCenterAri: Scalars['ID'];
|
|
7913
|
+
};
|
|
7914
|
+
export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
|
|
7915
|
+
helpCenterAri: Scalars['ID'];
|
|
7916
|
+
topicId: Scalars['ID'];
|
|
7917
|
+
};
|
|
7666
7918
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
7667
7919
|
export declare type HelpCenterSuccessfullyCreatedTopicIds = {
|
|
7668
7920
|
__typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
|
|
@@ -7737,7 +7989,7 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
7737
7989
|
title?: Maybe<Scalars['String']>;
|
|
7738
7990
|
description?: Maybe<Scalars['String']>;
|
|
7739
7991
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
7740
|
-
displayLink?: Maybe<Scalars['
|
|
7992
|
+
displayLink?: Maybe<Scalars['String']>;
|
|
7741
7993
|
entityId?: Maybe<Scalars['String']>;
|
|
7742
7994
|
entityKey?: Maybe<Scalars['String']>;
|
|
7743
7995
|
entityProjectId?: Maybe<Scalars['String']>;
|
|
@@ -7755,7 +8007,7 @@ export declare type HelpObjectStoreChannel = HelpObjectStoreHelpObject & Node &
|
|
|
7755
8007
|
title?: Maybe<Scalars['String']>;
|
|
7756
8008
|
description?: Maybe<Scalars['String']>;
|
|
7757
8009
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
7758
|
-
displayLink?: Maybe<Scalars['
|
|
8010
|
+
displayLink?: Maybe<Scalars['String']>;
|
|
7759
8011
|
entityId?: Maybe<Scalars['String']>;
|
|
7760
8012
|
entityKey?: Maybe<Scalars['String']>;
|
|
7761
8013
|
containerId?: Maybe<Scalars['String']>;
|
|
@@ -7782,7 +8034,7 @@ export declare type HelpObjectStoreHelpObject = {
|
|
|
7782
8034
|
title?: Maybe<Scalars['String']>;
|
|
7783
8035
|
description?: Maybe<Scalars['String']>;
|
|
7784
8036
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
7785
|
-
displayLink?: Maybe<Scalars['
|
|
8037
|
+
displayLink?: Maybe<Scalars['String']>;
|
|
7786
8038
|
};
|
|
7787
8039
|
export declare enum HelpObjectStoreHelpObjectType {
|
|
7788
8040
|
RequestForm = "REQUEST_FORM",
|
|
@@ -7833,7 +8085,7 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
7833
8085
|
title?: Maybe<Scalars['String']>;
|
|
7834
8086
|
description?: Maybe<Scalars['String']>;
|
|
7835
8087
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
7836
|
-
displayLink?: Maybe<Scalars['
|
|
8088
|
+
displayLink?: Maybe<Scalars['String']>;
|
|
7837
8089
|
entityId?: Maybe<Scalars['String']>;
|
|
7838
8090
|
entityKey?: Maybe<Scalars['String']>;
|
|
7839
8091
|
entityProjectId?: Maybe<Scalars['String']>;
|
|
@@ -7919,6 +8171,10 @@ export declare type InstallationsListFilterByAppInstallationsWithCompulsoryConte
|
|
|
7919
8171
|
export declare type InstallationsListFilterByApps = {
|
|
7920
8172
|
ids: Array<Scalars['ID']>;
|
|
7921
8173
|
};
|
|
8174
|
+
export declare type IntervalFilter = {
|
|
8175
|
+
start: Scalars['String'];
|
|
8176
|
+
end: Scalars['String'];
|
|
8177
|
+
};
|
|
7922
8178
|
export declare type InvocationResponsePayload = {
|
|
7923
8179
|
__typename?: 'InvocationResponsePayload';
|
|
7924
8180
|
body: Scalars['JSON'];
|
|
@@ -8326,6 +8582,7 @@ export declare type JiraAffectedServiceConnection = {
|
|
|
8326
8582
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8327
8583
|
pageInfo: PageInfo;
|
|
8328
8584
|
edges?: Maybe<Array<Maybe<JiraAffectedServiceEdge>>>;
|
|
8585
|
+
errors?: Maybe<Array<QueryError>>;
|
|
8329
8586
|
};
|
|
8330
8587
|
export declare type JiraAffectedServiceEdge = {
|
|
8331
8588
|
__typename?: 'JiraAffectedServiceEdge';
|
|
@@ -8386,6 +8643,7 @@ export declare type JiraAssetConnection = {
|
|
|
8386
8643
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8387
8644
|
pageInfo: PageInfo;
|
|
8388
8645
|
edges?: Maybe<Array<Maybe<JiraAssetEdge>>>;
|
|
8646
|
+
errors?: Maybe<Array<QueryError>>;
|
|
8389
8647
|
};
|
|
8390
8648
|
export declare type JiraAssetEdge = {
|
|
8391
8649
|
__typename?: 'JiraAssetEdge';
|
|
@@ -8479,6 +8737,7 @@ export declare type JiraAttachmentConnection = {
|
|
|
8479
8737
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
8480
8738
|
pageInfo: PageInfo;
|
|
8481
8739
|
edges?: Maybe<Array<Maybe<JiraAttachmentEdge>>>;
|
|
8740
|
+
errors?: Maybe<Array<QueryError>>;
|
|
8482
8741
|
};
|
|
8483
8742
|
export declare type JiraAttachmentEdge = {
|
|
8484
8743
|
__typename?: 'JiraAttachmentEdge';
|
|
@@ -8574,6 +8833,13 @@ export declare type JiraCannedResponse = Node & {
|
|
|
8574
8833
|
createdBy?: Maybe<Scalars['ID']>;
|
|
8575
8834
|
usageCount?: Maybe<Scalars['Int']>;
|
|
8576
8835
|
};
|
|
8836
|
+
export declare type JiraCannedResponseConnection = {
|
|
8837
|
+
__typename?: 'JiraCannedResponseConnection';
|
|
8838
|
+
edges?: Maybe<Array<JiraCannedResponseEdge>>;
|
|
8839
|
+
nodes?: Maybe<Array<Maybe<JiraCannedResponse>>>;
|
|
8840
|
+
pageInfo: PageInfo;
|
|
8841
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
8842
|
+
};
|
|
8577
8843
|
export declare type JiraCannedResponseCreateInput = {
|
|
8578
8844
|
projectAri: Scalars['ID'];
|
|
8579
8845
|
title: Scalars['String'];
|
|
@@ -8592,6 +8858,16 @@ export declare type JiraCannedResponseDeletePayload = Payload & {
|
|
|
8592
8858
|
success: Scalars['Boolean'];
|
|
8593
8859
|
errors?: Maybe<Array<MutationError>>;
|
|
8594
8860
|
};
|
|
8861
|
+
export declare type JiraCannedResponseEdge = {
|
|
8862
|
+
__typename?: 'JiraCannedResponseEdge';
|
|
8863
|
+
cursor: Scalars['String'];
|
|
8864
|
+
node?: Maybe<JiraCannedResponse>;
|
|
8865
|
+
};
|
|
8866
|
+
export declare type JiraCannedResponseFilter = {
|
|
8867
|
+
projectAri: Scalars['ID'];
|
|
8868
|
+
query?: Maybe<Scalars['String']>;
|
|
8869
|
+
scopes?: Maybe<Array<JiraCannedResponseScope>>;
|
|
8870
|
+
};
|
|
8595
8871
|
export declare type JiraCannedResponseMutationApi = {
|
|
8596
8872
|
__typename?: 'JiraCannedResponseMutationApi';
|
|
8597
8873
|
createCannedResponse?: Maybe<JiraCannedResponseCreatePayload>;
|
|
@@ -8610,15 +8886,31 @@ export declare type JiraCannedResponseMutationApiDeleteCannedResponseArgs = {
|
|
|
8610
8886
|
export declare type JiraCannedResponseQueryApi = {
|
|
8611
8887
|
__typename?: 'JiraCannedResponseQueryApi';
|
|
8612
8888
|
cannedResponseById?: Maybe<JiraCannedResponseQueryResult>;
|
|
8889
|
+
searchCannedResponses?: Maybe<JiraCannedResponseSearchQueryResult>;
|
|
8613
8890
|
};
|
|
8614
8891
|
export declare type JiraCannedResponseQueryApiCannedResponseByIdArgs = {
|
|
8615
8892
|
id: Scalars['ID'];
|
|
8616
8893
|
};
|
|
8894
|
+
export declare type JiraCannedResponseQueryApiSearchCannedResponsesArgs = {
|
|
8895
|
+
first?: Maybe<Scalars['Int']>;
|
|
8896
|
+
after?: Maybe<Scalars['String']>;
|
|
8897
|
+
filter?: Maybe<JiraCannedResponseFilter>;
|
|
8898
|
+
sort?: Maybe<JiraCannedResponseSort>;
|
|
8899
|
+
};
|
|
8617
8900
|
export declare type JiraCannedResponseQueryResult = JiraCannedResponse | QueryError;
|
|
8618
8901
|
export declare enum JiraCannedResponseScope {
|
|
8619
8902
|
Project = "PROJECT",
|
|
8620
8903
|
Personal = "PERSONAL"
|
|
8621
8904
|
}
|
|
8905
|
+
export declare type JiraCannedResponseSearchQueryResult = JiraCannedResponseConnection | QueryError;
|
|
8906
|
+
export declare type JiraCannedResponseSort = {
|
|
8907
|
+
name?: Maybe<Scalars['String']>;
|
|
8908
|
+
order?: Maybe<JiraCannedResponseSortOrder>;
|
|
8909
|
+
};
|
|
8910
|
+
export declare enum JiraCannedResponseSortOrder {
|
|
8911
|
+
Asc = "ASC",
|
|
8912
|
+
Desc = "DESC"
|
|
8913
|
+
}
|
|
8622
8914
|
export declare type JiraCannedResponseUpdateInput = {
|
|
8623
8915
|
id: Scalars['ID'];
|
|
8624
8916
|
title: Scalars['String'];
|
|
@@ -8646,6 +8938,7 @@ export declare type JiraCascadingOptionsConnection = {
|
|
|
8646
8938
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8647
8939
|
pageInfo: PageInfo;
|
|
8648
8940
|
edges?: Maybe<Array<Maybe<JiraCascadingOptionsEdge>>>;
|
|
8941
|
+
errors?: Maybe<Array<QueryError>>;
|
|
8649
8942
|
};
|
|
8650
8943
|
export declare type JiraCascadingOptionsEdge = {
|
|
8651
8944
|
__typename?: 'JiraCascadingOptionsEdge';
|
|
@@ -8886,6 +9179,7 @@ export declare type JiraCmdbObjectConnection = {
|
|
|
8886
9179
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8887
9180
|
pageInfo: PageInfo;
|
|
8888
9181
|
edges?: Maybe<Array<Maybe<JiraCmdbObjectEdge>>>;
|
|
9182
|
+
errors?: Maybe<Array<QueryError>>;
|
|
8889
9183
|
};
|
|
8890
9184
|
export declare type JiraCmdbObjectEdge = {
|
|
8891
9185
|
__typename?: 'JiraCmdbObjectEdge';
|
|
@@ -8992,6 +9286,7 @@ export declare type JiraComponentConnection = {
|
|
|
8992
9286
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8993
9287
|
pageInfo: PageInfo;
|
|
8994
9288
|
edges?: Maybe<Array<Maybe<JiraComponentEdge>>>;
|
|
9289
|
+
errors?: Maybe<Array<QueryError>>;
|
|
8995
9290
|
};
|
|
8996
9291
|
export declare type JiraComponentEdge = {
|
|
8997
9292
|
__typename?: 'JiraComponentEdge';
|
|
@@ -9390,6 +9685,7 @@ export declare type JiraEpicConnection = {
|
|
|
9390
9685
|
totalCount?: Maybe<Scalars['Int']>;
|
|
9391
9686
|
pageInfo: PageInfo;
|
|
9392
9687
|
edges?: Maybe<Array<Maybe<JiraEpicEdge>>>;
|
|
9688
|
+
errors?: Maybe<Array<QueryError>>;
|
|
9393
9689
|
};
|
|
9394
9690
|
export declare type JiraEpicEdge = {
|
|
9395
9691
|
__typename?: 'JiraEpicEdge';
|
|
@@ -9790,6 +10086,7 @@ export declare type JiraGroupConnection = {
|
|
|
9790
10086
|
totalCount?: Maybe<Scalars['Int']>;
|
|
9791
10087
|
pageInfo: PageInfo;
|
|
9792
10088
|
edges?: Maybe<Array<Maybe<JiraGroupEdge>>>;
|
|
10089
|
+
errors?: Maybe<Array<QueryError>>;
|
|
9793
10090
|
};
|
|
9794
10091
|
export declare type JiraGroupEdge = {
|
|
9795
10092
|
__typename?: 'JiraGroupEdge';
|
|
@@ -9977,6 +10274,7 @@ export declare type JiraIssueConnection = {
|
|
|
9977
10274
|
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']>;
|
|
9978
10275
|
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
9979
10276
|
pageCursors?: Maybe<JiraPageCursors>;
|
|
10277
|
+
errors?: Maybe<Array<QueryError>>;
|
|
9980
10278
|
};
|
|
9981
10279
|
export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
9982
10280
|
maxCursors: Scalars['Int'];
|
|
@@ -10255,6 +10553,7 @@ export declare type JiraIssueLinkConnection = {
|
|
|
10255
10553
|
totalCount?: Maybe<Scalars['Int']>;
|
|
10256
10554
|
pageInfo: PageInfo;
|
|
10257
10555
|
edges?: Maybe<Array<Maybe<JiraIssueLinkEdge>>>;
|
|
10556
|
+
errors?: Maybe<Array<QueryError>>;
|
|
10258
10557
|
};
|
|
10259
10558
|
export declare enum JiraIssueLinkDirection {
|
|
10260
10559
|
Inward = "INWARD",
|
|
@@ -10333,6 +10632,7 @@ export declare type JiraIssueLinkTypeRelationConnection = {
|
|
|
10333
10632
|
totalCount?: Maybe<Scalars['Int']>;
|
|
10334
10633
|
pageInfo: PageInfo;
|
|
10335
10634
|
edges?: Maybe<Array<Maybe<JiraIssueLinkTypeRelationEdge>>>;
|
|
10635
|
+
errors?: Maybe<Array<QueryError>>;
|
|
10336
10636
|
};
|
|
10337
10637
|
export declare type JiraIssueLinkTypeRelationEdge = {
|
|
10338
10638
|
__typename?: 'JiraIssueLinkTypeRelationEdge';
|
|
@@ -10557,6 +10857,7 @@ export declare type JiraIssueTypeConnection = {
|
|
|
10557
10857
|
totalCount?: Maybe<Scalars['Int']>;
|
|
10558
10858
|
pageInfo: PageInfo;
|
|
10559
10859
|
edges?: Maybe<Array<Maybe<JiraIssueTypeEdge>>>;
|
|
10860
|
+
errors?: Maybe<Array<QueryError>>;
|
|
10560
10861
|
};
|
|
10561
10862
|
export declare type JiraIssueTypeEdge = {
|
|
10562
10863
|
__typename?: 'JiraIssueTypeEdge';
|
|
@@ -10588,6 +10889,18 @@ export declare type JiraIssueTypeHierarchyLevel = {
|
|
|
10588
10889
|
level?: Maybe<Scalars['Int']>;
|
|
10589
10890
|
name?: Maybe<Scalars['String']>;
|
|
10590
10891
|
};
|
|
10892
|
+
export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
10893
|
+
NewestFirst = "NEWEST_FIRST",
|
|
10894
|
+
OldestFirst = "OLDEST_FIRST"
|
|
10895
|
+
}
|
|
10896
|
+
export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
10897
|
+
ListView = "LIST_VIEW",
|
|
10898
|
+
StripView = "STRIP_VIEW"
|
|
10899
|
+
}
|
|
10900
|
+
export declare enum JiraIssueViewTimestampDisplayMode {
|
|
10901
|
+
Absolute = "ABSOLUTE",
|
|
10902
|
+
Relative = "RELATIVE"
|
|
10903
|
+
}
|
|
10591
10904
|
export declare enum JiraJqlAutocompleteType {
|
|
10592
10905
|
None = "NONE",
|
|
10593
10906
|
Component = "COMPONENT",
|
|
@@ -11043,6 +11356,7 @@ export declare type JiraLabelConnection = {
|
|
|
11043
11356
|
totalCount?: Maybe<Scalars['Int']>;
|
|
11044
11357
|
pageInfo: PageInfo;
|
|
11045
11358
|
edges?: Maybe<Array<Maybe<JiraLabelEdge>>>;
|
|
11359
|
+
errors?: Maybe<Array<QueryError>>;
|
|
11046
11360
|
};
|
|
11047
11361
|
export declare type JiraLabelEdge = {
|
|
11048
11362
|
__typename?: 'JiraLabelEdge';
|
|
@@ -11348,10 +11662,10 @@ export declare type JiraMutationUpdateDateTimeFieldArgs = {
|
|
|
11348
11662
|
input: JiraUpdateDateTimeFieldInput;
|
|
11349
11663
|
};
|
|
11350
11664
|
export declare type JiraMutationUpdateNumberFieldArgs = {
|
|
11351
|
-
input
|
|
11665
|
+
input: JiraUpdateNumberFieldInput;
|
|
11352
11666
|
};
|
|
11353
11667
|
export declare type JiraMutationUpdateStoryPointEstimateFieldArgs = {
|
|
11354
|
-
input
|
|
11668
|
+
input: JiraUpdateStoryPointEstimateFieldInput;
|
|
11355
11669
|
};
|
|
11356
11670
|
export declare type JiraMutationUpdateSingleSelectFieldArgs = {
|
|
11357
11671
|
input: JiraUpdateSingleSelectFieldInput;
|
|
@@ -11360,19 +11674,19 @@ export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
|
11360
11674
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
11361
11675
|
};
|
|
11362
11676
|
export declare type JiraMutationUpdatePriorityFieldArgs = {
|
|
11363
|
-
input
|
|
11677
|
+
input: JiraUpdatePriorityFieldInput;
|
|
11364
11678
|
};
|
|
11365
11679
|
export declare type JiraMutationUpdateVotesFieldArgs = {
|
|
11366
|
-
input
|
|
11680
|
+
input: JiraUpdateVotesFieldInput;
|
|
11367
11681
|
};
|
|
11368
11682
|
export declare type JiraMutationUpdateColorFieldArgs = {
|
|
11369
11683
|
input: JiraUpdateColorFieldInput;
|
|
11370
11684
|
};
|
|
11371
11685
|
export declare type JiraMutationUpdateSingleSelectUserPickerFieldArgs = {
|
|
11372
|
-
input
|
|
11686
|
+
input: JiraUpdateSingleSelectUserPickerFieldInput;
|
|
11373
11687
|
};
|
|
11374
11688
|
export declare type JiraMutationUpdateWatchesFieldArgs = {
|
|
11375
|
-
input
|
|
11689
|
+
input: JiraUpdateWatchesFieldInput;
|
|
11376
11690
|
};
|
|
11377
11691
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
11378
11692
|
input: JiraPermissionSchemeAddGrantInput;
|
|
@@ -11638,6 +11952,7 @@ export declare type JiraOptionConnection = {
|
|
|
11638
11952
|
totalCount?: Maybe<Scalars['Int']>;
|
|
11639
11953
|
pageInfo: PageInfo;
|
|
11640
11954
|
edges?: Maybe<Array<Maybe<JiraOptionEdge>>>;
|
|
11955
|
+
errors?: Maybe<Array<QueryError>>;
|
|
11641
11956
|
};
|
|
11642
11957
|
export declare type JiraOptionEdge = {
|
|
11643
11958
|
__typename?: 'JiraOptionEdge';
|
|
@@ -11887,6 +12202,7 @@ export declare type JiraPriorityConnection = {
|
|
|
11887
12202
|
totalCount?: Maybe<Scalars['Int']>;
|
|
11888
12203
|
pageInfo: PageInfo;
|
|
11889
12204
|
edges?: Maybe<Array<Maybe<JiraPriorityEdge>>>;
|
|
12205
|
+
errors?: Maybe<Array<QueryError>>;
|
|
11890
12206
|
};
|
|
11891
12207
|
export declare type JiraPriorityEdge = {
|
|
11892
12208
|
__typename?: 'JiraPriorityEdge';
|
|
@@ -11928,6 +12244,7 @@ export declare type JiraProformaForms = {
|
|
|
11928
12244
|
__typename?: 'JiraProformaForms';
|
|
11929
12245
|
hasProjectForms?: Maybe<Scalars['Boolean']>;
|
|
11930
12246
|
hasIssueForms?: Maybe<Scalars['Boolean']>;
|
|
12247
|
+
isHarmonisationEnabled?: Maybe<Scalars['Boolean']>;
|
|
11931
12248
|
};
|
|
11932
12249
|
export declare type JiraProformaFormsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
11933
12250
|
__typename?: 'JiraProformaFormsField';
|
|
@@ -11962,6 +12279,7 @@ export declare type JiraProject = Node & {
|
|
|
11962
12279
|
action?: Maybe<JiraProjectAction>;
|
|
11963
12280
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
11964
12281
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
12282
|
+
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
11965
12283
|
lead?: Maybe<User>;
|
|
11966
12284
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
11967
12285
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -12038,7 +12356,9 @@ export declare enum JiraProjectActionType {
|
|
|
12038
12356
|
ViewIssues = "VIEW_ISSUES",
|
|
12039
12357
|
CreateIssues = "CREATE_ISSUES",
|
|
12040
12358
|
DeleteIssues = "DELETE_ISSUES",
|
|
12041
|
-
LinkIssues = "LINK_ISSUES"
|
|
12359
|
+
LinkIssues = "LINK_ISSUES",
|
|
12360
|
+
EditIssues = "EDIT_ISSUES",
|
|
12361
|
+
ScheduleIssues = "SCHEDULE_ISSUES"
|
|
12042
12362
|
}
|
|
12043
12363
|
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
12044
12364
|
id: Scalars['ID'];
|
|
@@ -12316,7 +12636,8 @@ export declare enum JiraProjectStyle {
|
|
|
12316
12636
|
export declare enum JiraProjectType {
|
|
12317
12637
|
ServiceDesk = "SERVICE_DESK",
|
|
12318
12638
|
Business = "BUSINESS",
|
|
12319
|
-
Software = "SOFTWARE"
|
|
12639
|
+
Software = "SOFTWARE",
|
|
12640
|
+
ProductDiscovery = "PRODUCT_DISCOVERY"
|
|
12320
12641
|
}
|
|
12321
12642
|
export declare type JiraProjectTypeDetails = Node & {
|
|
12322
12643
|
__typename?: 'JiraProjectTypeDetails';
|
|
@@ -12356,6 +12677,7 @@ export declare type JiraQuery = {
|
|
|
12356
12677
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
12357
12678
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
12358
12679
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
12680
|
+
userPreferences?: Maybe<JiraUserPreferences>;
|
|
12359
12681
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
12360
12682
|
filter?: Maybe<JiraFilter>;
|
|
12361
12683
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -12404,6 +12726,7 @@ export declare type JiraQuery = {
|
|
|
12404
12726
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
12405
12727
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
12406
12728
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
12729
|
+
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
12407
12730
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
12408
12731
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
12409
12732
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
@@ -12433,6 +12756,9 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
12433
12756
|
export declare type JiraQueryGlobalTimeTrackingSettingsArgs = {
|
|
12434
12757
|
cloudId: Scalars['ID'];
|
|
12435
12758
|
};
|
|
12759
|
+
export declare type JiraQueryUserPreferencesArgs = {
|
|
12760
|
+
cloudId: Scalars['ID'];
|
|
12761
|
+
};
|
|
12436
12762
|
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
12437
12763
|
cloudId: Scalars['ID'];
|
|
12438
12764
|
};
|
|
@@ -12649,6 +12975,10 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
12649
12975
|
last?: Maybe<Scalars['Int']>;
|
|
12650
12976
|
before?: Maybe<Scalars['String']>;
|
|
12651
12977
|
};
|
|
12978
|
+
export declare type JiraQueryIssueSearchTotalCountArgs = {
|
|
12979
|
+
cloudId: Scalars['ID'];
|
|
12980
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
12981
|
+
};
|
|
12652
12982
|
export declare type JiraQueryResourceUsageMetricByIdArgs = {
|
|
12653
12983
|
id: Scalars['ID'];
|
|
12654
12984
|
};
|
|
@@ -12874,6 +13204,7 @@ export declare type JiraResolutionConnection = {
|
|
|
12874
13204
|
totalCount?: Maybe<Scalars['Int']>;
|
|
12875
13205
|
pageInfo: PageInfo;
|
|
12876
13206
|
edges?: Maybe<Array<Maybe<JiraResolutionEdge>>>;
|
|
13207
|
+
errors?: Maybe<Array<QueryError>>;
|
|
12877
13208
|
};
|
|
12878
13209
|
export declare type JiraResolutionEdge = {
|
|
12879
13210
|
__typename?: 'JiraResolutionEdge';
|
|
@@ -12989,6 +13320,7 @@ export declare type JiraRoleConnection = {
|
|
|
12989
13320
|
totalCount?: Maybe<Scalars['Int']>;
|
|
12990
13321
|
pageInfo: PageInfo;
|
|
12991
13322
|
edges?: Maybe<Array<Maybe<JiraRoleEdge>>>;
|
|
13323
|
+
errors?: Maybe<Array<QueryError>>;
|
|
12992
13324
|
};
|
|
12993
13325
|
export declare type JiraRoleEdge = {
|
|
12994
13326
|
__typename?: 'JiraRoleEdge';
|
|
@@ -13012,6 +13344,7 @@ export declare type JiraSecurityLevelConnection = {
|
|
|
13012
13344
|
totalCount?: Maybe<Scalars['Int']>;
|
|
13013
13345
|
pageInfo: PageInfo;
|
|
13014
13346
|
edges?: Maybe<Array<Maybe<JiraSecurityLevelEdge>>>;
|
|
13347
|
+
errors?: Maybe<Array<QueryError>>;
|
|
13015
13348
|
};
|
|
13016
13349
|
export declare type JiraSecurityLevelEdge = {
|
|
13017
13350
|
__typename?: 'JiraSecurityLevelEdge';
|
|
@@ -13217,6 +13550,7 @@ export declare type JiraServiceManagementCompletedApprovalConnection = {
|
|
|
13217
13550
|
totalCount?: Maybe<Scalars['Int']>;
|
|
13218
13551
|
pageInfo: PageInfo;
|
|
13219
13552
|
edges?: Maybe<Array<Maybe<JiraServiceManagementCompletedApprovalEdge>>>;
|
|
13553
|
+
errors?: Maybe<Array<QueryError>>;
|
|
13220
13554
|
};
|
|
13221
13555
|
export declare type JiraServiceManagementCompletedApprovalEdge = {
|
|
13222
13556
|
__typename?: 'JiraServiceManagementCompletedApprovalEdge';
|
|
@@ -13337,6 +13671,7 @@ export declare type JiraServiceManagementOrganizationConnection = {
|
|
|
13337
13671
|
totalCount?: Maybe<Scalars['Int']>;
|
|
13338
13672
|
pageInfo: PageInfo;
|
|
13339
13673
|
edges?: Maybe<Array<Maybe<JiraServiceManagementOrganizationEdge>>>;
|
|
13674
|
+
errors?: Maybe<Array<QueryError>>;
|
|
13340
13675
|
};
|
|
13341
13676
|
export declare type JiraServiceManagementOrganizationEdge = {
|
|
13342
13677
|
__typename?: 'JiraServiceManagementOrganizationEdge';
|
|
@@ -13457,6 +13792,7 @@ export declare type JiraServiceManagementRequestTypeConnection = {
|
|
|
13457
13792
|
totalCount?: Maybe<Scalars['Int']>;
|
|
13458
13793
|
pageInfo: PageInfo;
|
|
13459
13794
|
edges?: Maybe<Array<Maybe<JiraServiceManagementRequestTypeEdge>>>;
|
|
13795
|
+
errors?: Maybe<Array<QueryError>>;
|
|
13460
13796
|
};
|
|
13461
13797
|
export declare type JiraServiceManagementRequestTypeEdge = {
|
|
13462
13798
|
__typename?: 'JiraServiceManagementRequestTypeEdge';
|
|
@@ -13493,6 +13829,7 @@ export declare type JiraServiceManagementResponderConnection = {
|
|
|
13493
13829
|
totalCount?: Maybe<Scalars['Int']>;
|
|
13494
13830
|
pageInfo: PageInfo;
|
|
13495
13831
|
edges?: Maybe<Array<Maybe<JiraServiceManagementResponderEdge>>>;
|
|
13832
|
+
errors?: Maybe<Array<QueryError>>;
|
|
13496
13833
|
};
|
|
13497
13834
|
export declare type JiraServiceManagementResponderEdge = {
|
|
13498
13835
|
__typename?: 'JiraServiceManagementResponderEdge';
|
|
@@ -13817,6 +14154,7 @@ export declare type JiraSprintConnection = {
|
|
|
13817
14154
|
totalCount?: Maybe<Scalars['Int']>;
|
|
13818
14155
|
pageInfo: PageInfo;
|
|
13819
14156
|
edges?: Maybe<Array<Maybe<JiraSprintEdge>>>;
|
|
14157
|
+
errors?: Maybe<Array<QueryError>>;
|
|
13820
14158
|
};
|
|
13821
14159
|
export declare type JiraSprintEdge = {
|
|
13822
14160
|
__typename?: 'JiraSprintEdge';
|
|
@@ -13965,6 +14303,7 @@ export declare type JiraTeamConnection = {
|
|
|
13965
14303
|
totalCount?: Maybe<Scalars['Int']>;
|
|
13966
14304
|
pageInfo: PageInfo;
|
|
13967
14305
|
edges?: Maybe<Array<Maybe<JiraTeamEdge>>>;
|
|
14306
|
+
errors?: Maybe<Array<QueryError>>;
|
|
13968
14307
|
};
|
|
13969
14308
|
export declare type JiraTeamEdge = {
|
|
13970
14309
|
__typename?: 'JiraTeamEdge';
|
|
@@ -14206,6 +14545,7 @@ export declare type JiraUserConnection = {
|
|
|
14206
14545
|
pageInfo: PageInfo;
|
|
14207
14546
|
edges?: Maybe<Array<Maybe<JiraUserEdge>>>;
|
|
14208
14547
|
totalCount?: Maybe<Scalars['Int']>;
|
|
14548
|
+
errors?: Maybe<Array<QueryError>>;
|
|
14209
14549
|
};
|
|
14210
14550
|
export declare type JiraUserEdge = {
|
|
14211
14551
|
__typename?: 'JiraUserEdge';
|
|
@@ -14230,6 +14570,22 @@ export declare type JiraUserGroup = {
|
|
|
14230
14570
|
export declare type JiraUserIssueFieldConfiguration = {
|
|
14231
14571
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
14232
14572
|
};
|
|
14573
|
+
export declare type JiraUserPreferences = {
|
|
14574
|
+
__typename?: 'JiraUserPreferences';
|
|
14575
|
+
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']>;
|
|
14576
|
+
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']>;
|
|
14577
|
+
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']>;
|
|
14578
|
+
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']>;
|
|
14579
|
+
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
14580
|
+
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
14581
|
+
issueViewPinnedFields?: Maybe<Scalars['String']>;
|
|
14582
|
+
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']>;
|
|
14583
|
+
issueViewSidebarResizeRatio?: Maybe<Scalars['String']>;
|
|
14584
|
+
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
14585
|
+
};
|
|
14586
|
+
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
14587
|
+
projectKey: Scalars['String'];
|
|
14588
|
+
};
|
|
14233
14589
|
export declare type JiraVersion = Node & {
|
|
14234
14590
|
__typename?: 'JiraVersion';
|
|
14235
14591
|
id: Scalars['ID'];
|
|
@@ -14268,6 +14624,7 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
14268
14624
|
last?: Maybe<Scalars['Int']>;
|
|
14269
14625
|
before?: Maybe<Scalars['String']>;
|
|
14270
14626
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
14627
|
+
filters?: Maybe<JiraVersionIssuesFiltersInput>;
|
|
14271
14628
|
sortBy?: Maybe<JiraVersionIssuesSortInput>;
|
|
14272
14629
|
};
|
|
14273
14630
|
export declare type JiraVersionReleaseNotesOptionsIssueTypesArgs = {
|
|
@@ -14328,6 +14685,7 @@ export declare type JiraVersionConnection = {
|
|
|
14328
14685
|
totalCount?: Maybe<Scalars['Int']>;
|
|
14329
14686
|
pageInfo: PageInfo;
|
|
14330
14687
|
edges?: Maybe<Array<Maybe<JiraVersionEdge>>>;
|
|
14688
|
+
errors?: Maybe<Array<QueryError>>;
|
|
14331
14689
|
};
|
|
14332
14690
|
export declare type JiraVersionDetailPage = {
|
|
14333
14691
|
__typename?: 'JiraVersionDetailPage';
|
|
@@ -14387,6 +14745,13 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
14387
14745
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
14388
14746
|
FailingBuild = "FAILING_BUILD"
|
|
14389
14747
|
}
|
|
14748
|
+
export declare type JiraVersionIssuesFiltersInput = {
|
|
14749
|
+
searchStr?: Maybe<Scalars['String']>;
|
|
14750
|
+
epicIds?: Maybe<Array<Scalars['ID']>>;
|
|
14751
|
+
statusCategories?: Maybe<Array<JiraVersionIssuesStatusCategories>>;
|
|
14752
|
+
warningCategories?: Maybe<Array<JiraVersionWarningCategories>>;
|
|
14753
|
+
assigneeAccountIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
14754
|
+
};
|
|
14390
14755
|
export declare enum JiraVersionIssuesSortField {
|
|
14391
14756
|
Assignee = "ASSIGNEE",
|
|
14392
14757
|
Created = "CREATED",
|
|
@@ -14398,6 +14763,11 @@ export declare type JiraVersionIssuesSortInput = {
|
|
|
14398
14763
|
sortByField?: Maybe<JiraVersionIssuesSortField>;
|
|
14399
14764
|
order?: Maybe<SortDirection>;
|
|
14400
14765
|
};
|
|
14766
|
+
export declare enum JiraVersionIssuesStatusCategories {
|
|
14767
|
+
Done = "DONE",
|
|
14768
|
+
InProgress = "IN_PROGRESS",
|
|
14769
|
+
Todo = "TODO"
|
|
14770
|
+
}
|
|
14401
14771
|
export declare type JiraVersionRelatedWork = {
|
|
14402
14772
|
__typename?: 'JiraVersionRelatedWork';
|
|
14403
14773
|
relatedWorkId?: Maybe<Scalars['ID']>;
|
|
@@ -14485,6 +14855,12 @@ export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
|
14485
14855
|
isUnreviewedCodeEnabled?: Maybe<Scalars['Boolean']>;
|
|
14486
14856
|
isFailingBuildEnabled?: Maybe<Scalars['Boolean']>;
|
|
14487
14857
|
};
|
|
14858
|
+
export declare enum JiraVersionWarningCategories {
|
|
14859
|
+
UnreviewedCode = "UNREVIEWED_CODE",
|
|
14860
|
+
OpenReview = "OPEN_REVIEW",
|
|
14861
|
+
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
14862
|
+
FailingBuild = "FAILING_BUILD"
|
|
14863
|
+
}
|
|
14488
14864
|
export declare type JiraVersionWarningConfig = {
|
|
14489
14865
|
__typename?: 'JiraVersionWarningConfig';
|
|
14490
14866
|
openPullRequest?: Maybe<JiraVersionWarningConfigState>;
|
|
@@ -14601,6 +14977,7 @@ export declare type JiraWorkLogConnection = {
|
|
|
14601
14977
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
14602
14978
|
pageInfo: PageInfo;
|
|
14603
14979
|
edges?: Maybe<Array<Maybe<JiraWorkLogEdge>>>;
|
|
14980
|
+
errors?: Maybe<Array<QueryError>>;
|
|
14604
14981
|
};
|
|
14605
14982
|
export declare type JiraWorkLogEdge = {
|
|
14606
14983
|
__typename?: 'JiraWorkLogEdge';
|
|
@@ -15823,6 +16200,9 @@ export declare type Mutation = {
|
|
|
15823
16200
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
15824
16201
|
jira?: Maybe<JiraMutation>;
|
|
15825
16202
|
appStorage?: Maybe<AppStorageMutation>;
|
|
16203
|
+
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
16204
|
+
customSchema?: Maybe<CustomSchemaMutation>;
|
|
16205
|
+
ersLifecycle?: Maybe<ErsLifecycleMutation>;
|
|
15826
16206
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
15827
16207
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
15828
16208
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
@@ -15832,6 +16212,7 @@ export declare type Mutation = {
|
|
|
15832
16212
|
invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
|
|
15833
16213
|
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
15834
16214
|
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
16215
|
+
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
15835
16216
|
createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
|
|
15836
16217
|
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
15837
16218
|
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
@@ -15967,9 +16348,9 @@ export declare type MutationDeleteDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
|
15967
16348
|
input: JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput;
|
|
15968
16349
|
};
|
|
15969
16350
|
export declare type MutationCreateReleaseNoteArgs = {
|
|
15970
|
-
changeStatus?:
|
|
15971
|
-
title?:
|
|
15972
|
-
changeType?:
|
|
16351
|
+
changeStatus?: Scalars['String'];
|
|
16352
|
+
title?: Scalars['String'];
|
|
16353
|
+
changeType?: Scalars['String'];
|
|
15973
16354
|
fdIssueKey?: Maybe<Scalars['String']>;
|
|
15974
16355
|
fdIssueLink?: Maybe<Scalars['String']>;
|
|
15975
16356
|
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -15982,7 +16363,6 @@ export declare type MutationCreateReleaseNoteArgs = {
|
|
|
15982
16363
|
productIds?: Maybe<Array<Scalars['String']>>;
|
|
15983
16364
|
description: Scalars['JSON'];
|
|
15984
16365
|
changeCategory?: Maybe<Scalars['String']>;
|
|
15985
|
-
benefitsList?: Maybe<Scalars['JSON']>;
|
|
15986
16366
|
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
15987
16367
|
};
|
|
15988
16368
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
@@ -15990,9 +16370,9 @@ export declare type MutationPublishReleaseNoteArgs = {
|
|
|
15990
16370
|
};
|
|
15991
16371
|
export declare type MutationUpdateReleaseNoteArgs = {
|
|
15992
16372
|
id: Scalars['String'];
|
|
15993
|
-
changeStatus?:
|
|
15994
|
-
title?:
|
|
15995
|
-
changeType?:
|
|
16373
|
+
changeStatus?: Scalars['String'];
|
|
16374
|
+
title?: Scalars['String'];
|
|
16375
|
+
changeType?: Scalars['String'];
|
|
15996
16376
|
fdIssueKey?: Maybe<Scalars['String']>;
|
|
15997
16377
|
fdIssueLink?: Maybe<Scalars['String']>;
|
|
15998
16378
|
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -16079,6 +16459,9 @@ export declare type MutationCreatePolarisCommentArgs = {
|
|
|
16079
16459
|
export declare type MutationUpdatePolarisCommentArgs = {
|
|
16080
16460
|
input: UpdatePolarisCommentInput;
|
|
16081
16461
|
};
|
|
16462
|
+
export declare type MutationAddBetaUserAsSiteCreatorArgs = {
|
|
16463
|
+
input: AddBetaUserAsSiteCreatorInput;
|
|
16464
|
+
};
|
|
16082
16465
|
export declare type MutationCreatePolarisStandardFieldArgs = {
|
|
16083
16466
|
input: CreatePolarisStandardFieldInput;
|
|
16084
16467
|
};
|
|
@@ -16828,6 +17211,330 @@ export declare type PartnerBtfProductNode = {
|
|
|
16828
17211
|
productDescription?: Maybe<Scalars['String']>;
|
|
16829
17212
|
productKey: Scalars['ID'];
|
|
16830
17213
|
};
|
|
17214
|
+
export declare type PartnerCcpApplicationReason = {
|
|
17215
|
+
__typename?: 'PartnerCcpApplicationReason';
|
|
17216
|
+
id?: Maybe<Scalars['ID']>;
|
|
17217
|
+
};
|
|
17218
|
+
export declare type PartnerCcpBaseSubscription = {
|
|
17219
|
+
entitlementId?: Maybe<Scalars['ID']>;
|
|
17220
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
17221
|
+
};
|
|
17222
|
+
export declare type PartnerCcpBenefit = {
|
|
17223
|
+
__typename?: 'PartnerCcpBenefit';
|
|
17224
|
+
duration?: Maybe<PartnerCcpBenefitDuration>;
|
|
17225
|
+
iterations?: Maybe<Scalars['Int']>;
|
|
17226
|
+
value?: Maybe<Scalars['Float']>;
|
|
17227
|
+
};
|
|
17228
|
+
export declare enum PartnerCcpBenefitDuration {
|
|
17229
|
+
Forever = "FOREVER",
|
|
17230
|
+
Once = "ONCE",
|
|
17231
|
+
Repeating = "REPEATING"
|
|
17232
|
+
}
|
|
17233
|
+
export declare type PartnerCcpCreditCard = PartnerCcpPaymentMethod & {
|
|
17234
|
+
__typename?: 'PartnerCcpCreditCard';
|
|
17235
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
17236
|
+
currency?: Maybe<PartnerCurrency>;
|
|
17237
|
+
deferred?: Maybe<Scalars['Boolean']>;
|
|
17238
|
+
id?: Maybe<Scalars['ID']>;
|
|
17239
|
+
sourceType?: Maybe<PartnerCcpPaymentMethodType>;
|
|
17240
|
+
stripeAccountStatus?: Maybe<PartnerStripeAccountStatus>;
|
|
17241
|
+
stripeCard?: Maybe<PartnerStripeCreditCard>;
|
|
17242
|
+
type?: Maybe<PartnerCcpPaymentMethodType>;
|
|
17243
|
+
};
|
|
17244
|
+
export declare type PartnerCcpCustomisedValues = {
|
|
17245
|
+
__typename?: 'PartnerCcpCustomisedValues';
|
|
17246
|
+
applicationReason?: Maybe<PartnerCcpApplicationReason>;
|
|
17247
|
+
benefits?: Maybe<Array<Maybe<PartnerCcpBenefit>>>;
|
|
17248
|
+
};
|
|
17249
|
+
export declare type PartnerCcpDeferred = PartnerCcpPaymentMethod & {
|
|
17250
|
+
__typename?: 'PartnerCcpDeferred';
|
|
17251
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
17252
|
+
currency?: Maybe<PartnerCurrency>;
|
|
17253
|
+
deferred?: Maybe<Scalars['Boolean']>;
|
|
17254
|
+
id?: Maybe<Scalars['ID']>;
|
|
17255
|
+
sourceType?: Maybe<PartnerCcpPaymentMethodType>;
|
|
17256
|
+
stripeAccountStatus?: Maybe<PartnerStripeAccountStatus>;
|
|
17257
|
+
terms?: Maybe<PartnerCcpDeferredTerms>;
|
|
17258
|
+
type?: Maybe<PartnerCcpPaymentMethodType>;
|
|
17259
|
+
};
|
|
17260
|
+
export declare type PartnerCcpDeferredTerms = {
|
|
17261
|
+
__typename?: 'PartnerCcpDeferredTerms';
|
|
17262
|
+
invoiceDueDays?: Maybe<Scalars['Long']>;
|
|
17263
|
+
};
|
|
17264
|
+
export declare type PartnerCcpDunningStatus = {
|
|
17265
|
+
__typename?: 'PartnerCcpDunningStatus';
|
|
17266
|
+
attempt?: Maybe<Scalars['Int']>;
|
|
17267
|
+
attemptCount?: Maybe<Scalars['Int']>;
|
|
17268
|
+
declineCode?: Maybe<Scalars['String']>;
|
|
17269
|
+
errorCode?: Maybe<Scalars['String']>;
|
|
17270
|
+
message?: Maybe<Scalars['String']>;
|
|
17271
|
+
nextPaymentAttemptDate?: Maybe<Scalars['Long']>;
|
|
17272
|
+
updatedAt?: Maybe<Scalars['Long']>;
|
|
17273
|
+
};
|
|
17274
|
+
export declare type PartnerCcpInvoice = {
|
|
17275
|
+
__typename?: 'PartnerCcpInvoice';
|
|
17276
|
+
additionalNotes?: Maybe<Scalars['String']>;
|
|
17277
|
+
appliedBalance?: Maybe<Scalars['Float']>;
|
|
17278
|
+
billTo?: Maybe<PartnerCcpInvoiceBillToParty>;
|
|
17279
|
+
billToParty?: Maybe<PartnerCcpInvoiceBillToParty>;
|
|
17280
|
+
chargeId?: Maybe<Scalars['ID']>;
|
|
17281
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
17282
|
+
currency?: Maybe<PartnerCurrency>;
|
|
17283
|
+
dueAt?: Maybe<Scalars['Long']>;
|
|
17284
|
+
dueDate?: Maybe<Scalars['Long']>;
|
|
17285
|
+
dunningHistory?: Maybe<Array<Maybe<PartnerCcpDunningStatus>>>;
|
|
17286
|
+
dunningStatus?: Maybe<PartnerCcpDunningStatus>;
|
|
17287
|
+
finalizedAt?: Maybe<Scalars['Long']>;
|
|
17288
|
+
finalizedDate?: Maybe<Scalars['Long']>;
|
|
17289
|
+
headerTaxId?: Maybe<Scalars['String']>;
|
|
17290
|
+
id?: Maybe<Scalars['ID']>;
|
|
17291
|
+
invoiceGroup?: Maybe<Scalars['ID']>;
|
|
17292
|
+
items?: Maybe<Array<Maybe<PartnerCcpInvoiceItem>>>;
|
|
17293
|
+
memo?: Maybe<Scalars['String']>;
|
|
17294
|
+
number?: Maybe<Scalars['ID']>;
|
|
17295
|
+
paidAt?: Maybe<Scalars['Long']>;
|
|
17296
|
+
paidDate?: Maybe<Scalars['Long']>;
|
|
17297
|
+
paymentMethod?: Maybe<Scalars['String']>;
|
|
17298
|
+
paymentMethodObj?: Maybe<PartnerCcpPaymentMethodObj>;
|
|
17299
|
+
shipTo?: Maybe<PartnerCcpInvoiceShipToParty>;
|
|
17300
|
+
shipToParty?: Maybe<PartnerCcpInvoiceShipToParty>;
|
|
17301
|
+
status?: Maybe<PartnerCcpInvoiceStatus>;
|
|
17302
|
+
stripeInvoiceId?: Maybe<Scalars['ID']>;
|
|
17303
|
+
subtotal?: Maybe<Scalars['Float']>;
|
|
17304
|
+
tax?: Maybe<Scalars['Float']>;
|
|
17305
|
+
taxIdLabel?: Maybe<Scalars['String']>;
|
|
17306
|
+
total?: Maybe<Scalars['Float']>;
|
|
17307
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
17308
|
+
uncollectibleAt?: Maybe<Scalars['Long']>;
|
|
17309
|
+
version?: Maybe<Scalars['Long']>;
|
|
17310
|
+
};
|
|
17311
|
+
export declare type PartnerCcpInvoiceBillToParty = PartnerCcpInvoiceParty & {
|
|
17312
|
+
__typename?: 'PartnerCcpInvoiceBillToParty';
|
|
17313
|
+
name?: Maybe<Scalars['String']>;
|
|
17314
|
+
postalAddress?: Maybe<PartnerCcpPostalAddress>;
|
|
17315
|
+
priceEligibility?: Maybe<Scalars['JSON']>;
|
|
17316
|
+
taxId?: Maybe<Scalars['String']>;
|
|
17317
|
+
taxIds?: Maybe<Array<Maybe<PartnerCcpTaxId>>>;
|
|
17318
|
+
};
|
|
17319
|
+
export declare type PartnerCcpInvoiceInput = {
|
|
17320
|
+
id?: Maybe<Scalars['ID']>;
|
|
17321
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
17322
|
+
};
|
|
17323
|
+
export declare type PartnerCcpInvoiceItem = {
|
|
17324
|
+
__typename?: 'PartnerCcpInvoiceItem';
|
|
17325
|
+
adjustments?: Maybe<Array<Maybe<PartnerCcpInvoiceItemAdjustment>>>;
|
|
17326
|
+
currency?: Maybe<PartnerCurrency>;
|
|
17327
|
+
description?: Maybe<Scalars['String']>;
|
|
17328
|
+
entitlementId?: Maybe<Scalars['ID']>;
|
|
17329
|
+
entitlementNumber?: Maybe<Scalars['ID']>;
|
|
17330
|
+
exchangeRate?: Maybe<Scalars['Float']>;
|
|
17331
|
+
exchangeRateDate?: Maybe<Scalars['Long']>;
|
|
17332
|
+
id?: Maybe<Scalars['ID']>;
|
|
17333
|
+
invoiceRequest?: Maybe<Scalars['ID']>;
|
|
17334
|
+
invoiceRequestItem?: Maybe<Scalars['Int']>;
|
|
17335
|
+
invoiceRequestItemId?: Maybe<Scalars['ID']>;
|
|
17336
|
+
offeringKey?: Maybe<Scalars['ID']>;
|
|
17337
|
+
orderItemId?: Maybe<Scalars['ID']>;
|
|
17338
|
+
period?: Maybe<PartnerCcpInvoicePeriod>;
|
|
17339
|
+
plan?: Maybe<PartnerCcpInvoiceItemPlan>;
|
|
17340
|
+
quantity?: Maybe<Scalars['Int']>;
|
|
17341
|
+
subscription?: Maybe<PartnerCcpInvoiceItemSubscription>;
|
|
17342
|
+
subtotal?: Maybe<Scalars['Float']>;
|
|
17343
|
+
tax?: Maybe<Scalars['Float']>;
|
|
17344
|
+
taxItems?: Maybe<Array<Maybe<PartnerCcpInvoiceItemTaxItems>>>;
|
|
17345
|
+
taxPercent?: Maybe<Scalars['Float']>;
|
|
17346
|
+
total?: Maybe<Scalars['Float']>;
|
|
17347
|
+
unitAmount?: Maybe<Scalars['Float']>;
|
|
17348
|
+
};
|
|
17349
|
+
export declare type PartnerCcpInvoiceItemAdjustment = {
|
|
17350
|
+
__typename?: 'PartnerCcpInvoiceItemAdjustment';
|
|
17351
|
+
amount?: Maybe<Scalars['Float']>;
|
|
17352
|
+
percent?: Maybe<Scalars['Float']>;
|
|
17353
|
+
promotionId?: Maybe<Scalars['ID']>;
|
|
17354
|
+
reason?: Maybe<Scalars['String']>;
|
|
17355
|
+
reasonCode?: Maybe<Scalars['String']>;
|
|
17356
|
+
type?: Maybe<Scalars['String']>;
|
|
17357
|
+
};
|
|
17358
|
+
export declare type PartnerCcpInvoiceItemPlan = {
|
|
17359
|
+
__typename?: 'PartnerCcpInvoiceItemPlan';
|
|
17360
|
+
hostingType?: Maybe<Scalars['String']>;
|
|
17361
|
+
id?: Maybe<Scalars['ID']>;
|
|
17362
|
+
sku?: Maybe<Scalars['ID']>;
|
|
17363
|
+
type?: Maybe<Scalars['String']>;
|
|
17364
|
+
};
|
|
17365
|
+
export declare type PartnerCcpInvoiceItemSubscription = {
|
|
17366
|
+
__typename?: 'PartnerCcpInvoiceItemSubscription';
|
|
17367
|
+
chargeType?: Maybe<Scalars['String']>;
|
|
17368
|
+
id?: Maybe<Scalars['ID']>;
|
|
17369
|
+
itemId?: Maybe<Scalars['ID']>;
|
|
17370
|
+
};
|
|
17371
|
+
export declare type PartnerCcpInvoiceItemTaxItems = {
|
|
17372
|
+
__typename?: 'PartnerCcpInvoiceItemTaxItems';
|
|
17373
|
+
id?: Maybe<Scalars['ID']>;
|
|
17374
|
+
tax?: Maybe<Scalars['Float']>;
|
|
17375
|
+
taxAmountLabel?: Maybe<Scalars['String']>;
|
|
17376
|
+
taxPercent?: Maybe<Scalars['Float']>;
|
|
17377
|
+
};
|
|
17378
|
+
export declare type PartnerCcpInvoiceParty = {
|
|
17379
|
+
name?: Maybe<Scalars['String']>;
|
|
17380
|
+
postalAddress?: Maybe<PartnerCcpPostalAddress>;
|
|
17381
|
+
priceEligibility?: Maybe<Scalars['JSON']>;
|
|
17382
|
+
taxId?: Maybe<Scalars['String']>;
|
|
17383
|
+
taxIds?: Maybe<Array<Maybe<PartnerCcpTaxId>>>;
|
|
17384
|
+
};
|
|
17385
|
+
export declare type PartnerCcpInvoicePeriod = {
|
|
17386
|
+
__typename?: 'PartnerCcpInvoicePeriod';
|
|
17387
|
+
endAt?: Maybe<Scalars['Long']>;
|
|
17388
|
+
startAt?: Maybe<Scalars['Long']>;
|
|
17389
|
+
};
|
|
17390
|
+
export declare type PartnerCcpInvoiceShipToParty = PartnerCcpInvoiceParty & {
|
|
17391
|
+
__typename?: 'PartnerCcpInvoiceShipToParty';
|
|
17392
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
17393
|
+
id?: Maybe<Scalars['ID']>;
|
|
17394
|
+
name?: Maybe<Scalars['String']>;
|
|
17395
|
+
postalAddress?: Maybe<PartnerCcpPostalAddress>;
|
|
17396
|
+
priceEligibility?: Maybe<Scalars['JSON']>;
|
|
17397
|
+
taxId?: Maybe<Scalars['String']>;
|
|
17398
|
+
taxIds?: Maybe<Array<Maybe<PartnerCcpTaxId>>>;
|
|
17399
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
17400
|
+
version?: Maybe<Scalars['Long']>;
|
|
17401
|
+
};
|
|
17402
|
+
export declare enum PartnerCcpInvoiceStatus {
|
|
17403
|
+
DeferredPaid = "DEFERRED_PAID",
|
|
17404
|
+
Draft = "DRAFT",
|
|
17405
|
+
Open = "OPEN",
|
|
17406
|
+
Paid = "PAID",
|
|
17407
|
+
PaymentDeferred = "PAYMENT_DEFERRED",
|
|
17408
|
+
Uncollectible = "UNCOLLECTIBLE",
|
|
17409
|
+
Void = "VOID"
|
|
17410
|
+
}
|
|
17411
|
+
export declare type PartnerCcpInvoiceTxA = {
|
|
17412
|
+
__typename?: 'PartnerCcpInvoiceTxA';
|
|
17413
|
+
invoices?: Maybe<Array<Maybe<PartnerCcpInvoice>>>;
|
|
17414
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
17415
|
+
};
|
|
17416
|
+
export declare type PartnerCcpPaymentMethod = {
|
|
17417
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
17418
|
+
currency?: Maybe<PartnerCurrency>;
|
|
17419
|
+
deferred?: Maybe<Scalars['Boolean']>;
|
|
17420
|
+
id?: Maybe<Scalars['ID']>;
|
|
17421
|
+
sourceType?: Maybe<PartnerCcpPaymentMethodType>;
|
|
17422
|
+
stripeAccountStatus?: Maybe<PartnerStripeAccountStatus>;
|
|
17423
|
+
type?: Maybe<PartnerCcpPaymentMethodType>;
|
|
17424
|
+
};
|
|
17425
|
+
export declare type PartnerCcpPaymentMethodObj = PartnerCcpCreditCard | PartnerCcpDeferred;
|
|
17426
|
+
export declare enum PartnerCcpPaymentMethodType {
|
|
17427
|
+
Deferred = "DEFERRED",
|
|
17428
|
+
StripeCard = "STRIPE_CARD"
|
|
17429
|
+
}
|
|
17430
|
+
export declare type PartnerCcpPostalAddress = {
|
|
17431
|
+
__typename?: 'PartnerCcpPostalAddress';
|
|
17432
|
+
city?: Maybe<Scalars['String']>;
|
|
17433
|
+
country?: Maybe<Scalars['String']>;
|
|
17434
|
+
line1?: Maybe<Scalars['String']>;
|
|
17435
|
+
line2?: Maybe<Scalars['String']>;
|
|
17436
|
+
phone?: Maybe<Scalars['String']>;
|
|
17437
|
+
postcode?: Maybe<Scalars['String']>;
|
|
17438
|
+
state?: Maybe<Scalars['String']>;
|
|
17439
|
+
};
|
|
17440
|
+
export declare type PartnerCcpPromotionDefinition = {
|
|
17441
|
+
__typename?: 'PartnerCcpPromotionDefinition';
|
|
17442
|
+
customisedValues?: Maybe<PartnerCcpCustomisedValues>;
|
|
17443
|
+
promotionId?: Maybe<Scalars['ID']>;
|
|
17444
|
+
};
|
|
17445
|
+
export declare type PartnerCcpPromotionInstance = {
|
|
17446
|
+
__typename?: 'PartnerCcpPromotionInstance';
|
|
17447
|
+
promotionDefinition?: Maybe<PartnerCcpPromotionDefinition>;
|
|
17448
|
+
promotionInstanceId?: Maybe<Scalars['ID']>;
|
|
17449
|
+
};
|
|
17450
|
+
export declare type PartnerCcpSubscription = PartnerCcpBaseSubscription & {
|
|
17451
|
+
__typename?: 'PartnerCcpSubscription';
|
|
17452
|
+
changeReason?: Maybe<Scalars['String']>;
|
|
17453
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
17454
|
+
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']>;
|
|
17455
|
+
entitlementId?: Maybe<Scalars['ID']>;
|
|
17456
|
+
entitlementNumber?: Maybe<Scalars['ID']>;
|
|
17457
|
+
featureVariables?: Maybe<PartnerCcpSubscriptionFeatureVariables>;
|
|
17458
|
+
offeringKey?: Maybe<Scalars['ID']>;
|
|
17459
|
+
order?: Maybe<PartnerCcpSubscriptionOrder>;
|
|
17460
|
+
relatesFromEntitlements?: Maybe<Array<Maybe<PartnerCcpSubscriptionRelationship>>>;
|
|
17461
|
+
relatesToEntitlements?: Maybe<Array<Maybe<PartnerCcpSubscriptionRelationship>>>;
|
|
17462
|
+
status?: Maybe<PartnerCcpSubscriptionLicenseStatus>;
|
|
17463
|
+
subscription?: Maybe<PartnerCcpSubscriptionDetails>;
|
|
17464
|
+
subscriptionId?: Maybe<Scalars['ID']>;
|
|
17465
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
17466
|
+
updatedAt?: Maybe<Scalars['Long']>;
|
|
17467
|
+
version?: Maybe<Scalars['Int']>;
|
|
17468
|
+
};
|
|
17469
|
+
export declare type PartnerCcpSubscriptionChargeQuantities = {
|
|
17470
|
+
__typename?: 'PartnerCcpSubscriptionChargeQuantities';
|
|
17471
|
+
chargeElement?: Maybe<Scalars['String']>;
|
|
17472
|
+
quantity?: Maybe<Scalars['Long']>;
|
|
17473
|
+
};
|
|
17474
|
+
export declare type PartnerCcpSubscriptionDetails = PartnerCcpBaseSubscription & {
|
|
17475
|
+
__typename?: 'PartnerCcpSubscriptionDetails';
|
|
17476
|
+
chargeQuantities?: Maybe<Array<Maybe<PartnerCcpSubscriptionChargeQuantities>>>;
|
|
17477
|
+
createdTimestamp?: Maybe<Scalars['Long']>;
|
|
17478
|
+
currentBillingEndTimestamp?: Maybe<Scalars['Long']>;
|
|
17479
|
+
currentBillingStartTimestamp?: Maybe<Scalars['Long']>;
|
|
17480
|
+
currentListPrice?: Maybe<Scalars['Long']>;
|
|
17481
|
+
endTimestamp?: Maybe<Scalars['Long']>;
|
|
17482
|
+
entitlementId?: Maybe<Scalars['ID']>;
|
|
17483
|
+
id?: Maybe<Scalars['ID']>;
|
|
17484
|
+
invoiceGroupId?: Maybe<Scalars['ID']>;
|
|
17485
|
+
nextBillingTimestamp?: Maybe<Scalars['Long']>;
|
|
17486
|
+
offeringId?: Maybe<Scalars['ID']>;
|
|
17487
|
+
orderItemId?: Maybe<Scalars['ID']>;
|
|
17488
|
+
pricingPlanId?: Maybe<Scalars['ID']>;
|
|
17489
|
+
promotionIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
17490
|
+
promotionInstances?: Maybe<Array<Maybe<PartnerCcpPromotionInstance>>>;
|
|
17491
|
+
status?: Maybe<PartnerCcpSubscriptionStatus>;
|
|
17492
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
17493
|
+
versionInfo?: Maybe<Scalars['String']>;
|
|
17494
|
+
};
|
|
17495
|
+
export declare type PartnerCcpSubscriptionFeatureVariables = {
|
|
17496
|
+
__typename?: 'PartnerCcpSubscriptionFeatureVariables';
|
|
17497
|
+
agent?: Maybe<Scalars['String']>;
|
|
17498
|
+
unit?: Maybe<Scalars['String']>;
|
|
17499
|
+
user?: Maybe<Scalars['String']>;
|
|
17500
|
+
};
|
|
17501
|
+
export declare type PartnerCcpSubscriptionInput = {
|
|
17502
|
+
entitlementNumber?: Maybe<Scalars['ID']>;
|
|
17503
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
17504
|
+
};
|
|
17505
|
+
export declare enum PartnerCcpSubscriptionLicenseStatus {
|
|
17506
|
+
Active = "ACTIVE",
|
|
17507
|
+
Inactive = "INACTIVE"
|
|
17508
|
+
}
|
|
17509
|
+
export declare type PartnerCcpSubscriptionOrder = {
|
|
17510
|
+
__typename?: 'PartnerCcpSubscriptionOrder';
|
|
17511
|
+
id?: Maybe<Scalars['ID']>;
|
|
17512
|
+
itemId?: Maybe<Scalars['ID']>;
|
|
17513
|
+
};
|
|
17514
|
+
export declare type PartnerCcpSubscriptionRelationship = {
|
|
17515
|
+
__typename?: 'PartnerCcpSubscriptionRelationship';
|
|
17516
|
+
entitlementId?: Maybe<Scalars['String']>;
|
|
17517
|
+
relationshipId?: Maybe<Scalars['String']>;
|
|
17518
|
+
relationshipType?: Maybe<Scalars['String']>;
|
|
17519
|
+
};
|
|
17520
|
+
export declare enum PartnerCcpSubscriptionStatus {
|
|
17521
|
+
Active = "ACTIVE",
|
|
17522
|
+
Cancelled = "CANCELLED",
|
|
17523
|
+
Processing = "PROCESSING"
|
|
17524
|
+
}
|
|
17525
|
+
export declare type PartnerCcpSubscriptionTxA = {
|
|
17526
|
+
__typename?: 'PartnerCcpSubscriptionTxA';
|
|
17527
|
+
entitlements?: Maybe<Array<Maybe<PartnerCcpSubscription>>>;
|
|
17528
|
+
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
17529
|
+
};
|
|
17530
|
+
export declare type PartnerCcpTaxId = {
|
|
17531
|
+
__typename?: 'PartnerCcpTaxId';
|
|
17532
|
+
id?: Maybe<Scalars['ID']>;
|
|
17533
|
+
label?: Maybe<Scalars['String']>;
|
|
17534
|
+
metadata?: Maybe<Scalars['JSON']>;
|
|
17535
|
+
taxIdDescription?: Maybe<Scalars['String']>;
|
|
17536
|
+
taxIdLabel?: Maybe<Scalars['String']>;
|
|
17537
|
+
};
|
|
16831
17538
|
export declare enum PartnerCloudLicenseType {
|
|
16832
17539
|
Academic = "ACADEMIC",
|
|
16833
17540
|
Commercial = "COMMERCIAL",
|
|
@@ -16855,6 +17562,83 @@ export declare enum PartnerCurrency {
|
|
|
16855
17562
|
Jpy = "JPY",
|
|
16856
17563
|
Usd = "USD"
|
|
16857
17564
|
}
|
|
17565
|
+
export declare type PartnerHamsBaseSubscription = {
|
|
17566
|
+
ccpEntitlementId?: Maybe<Scalars['ID']>;
|
|
17567
|
+
customerRoles?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
17568
|
+
evaluation?: Maybe<Scalars['Boolean']>;
|
|
17569
|
+
sen?: Maybe<Scalars['ID']>;
|
|
17570
|
+
slug?: Maybe<Scalars['ID']>;
|
|
17571
|
+
sourceSystem?: Maybe<Scalars['String']>;
|
|
17572
|
+
supportLevel?: Maybe<Scalars['String']>;
|
|
17573
|
+
};
|
|
17574
|
+
export declare type PartnerHamsSubscription = PartnerHamsBaseSubscription & {
|
|
17575
|
+
__typename?: 'PartnerHamsSubscription';
|
|
17576
|
+
billingContact?: Maybe<Scalars['Boolean']>;
|
|
17577
|
+
ccpEntitlementId?: Maybe<Scalars['ID']>;
|
|
17578
|
+
cloudSiteId?: Maybe<Scalars['ID']>;
|
|
17579
|
+
cloudUrl?: Maybe<Scalars['String']>;
|
|
17580
|
+
customerRoles?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
17581
|
+
daysSinceEntitlementStart?: Maybe<Scalars['Int']>;
|
|
17582
|
+
evaluation?: Maybe<Scalars['Boolean']>;
|
|
17583
|
+
expired?: Maybe<Scalars['Boolean']>;
|
|
17584
|
+
expiryDate?: Maybe<Scalars['String']>;
|
|
17585
|
+
firstPeriodStartDate?: Maybe<Scalars['String']>;
|
|
17586
|
+
licenseType?: Maybe<Scalars['String']>;
|
|
17587
|
+
product?: Maybe<PartnerHamsSubscriptionProduct>;
|
|
17588
|
+
secondaryContact?: Maybe<Scalars['Boolean']>;
|
|
17589
|
+
sen?: Maybe<Scalars['ID']>;
|
|
17590
|
+
slug?: Maybe<Scalars['ID']>;
|
|
17591
|
+
sourceSystem?: Maybe<Scalars['String']>;
|
|
17592
|
+
supportLevel?: Maybe<Scalars['String']>;
|
|
17593
|
+
technicalContact?: Maybe<Scalars['Boolean']>;
|
|
17594
|
+
unitCount?: Maybe<Scalars['Long']>;
|
|
17595
|
+
};
|
|
17596
|
+
export declare type PartnerHamsSubscriptionInput = {
|
|
17597
|
+
sen?: Maybe<Scalars['ID']>;
|
|
17598
|
+
site?: Maybe<Scalars['String']>;
|
|
17599
|
+
technicalContactEmail?: Maybe<Scalars['String']>;
|
|
17600
|
+
};
|
|
17601
|
+
export declare type PartnerHamsSubscriptionProduct = PartnerHamsBaseSubscription & {
|
|
17602
|
+
__typename?: 'PartnerHamsSubscriptionProduct';
|
|
17603
|
+
admin?: Maybe<Scalars['Boolean']>;
|
|
17604
|
+
ccpEntitlementId?: Maybe<Scalars['ID']>;
|
|
17605
|
+
children?: Maybe<Array<Maybe<PartnerHamsSubscriptionProduct>>>;
|
|
17606
|
+
customerRoles?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
17607
|
+
edition?: Maybe<Scalars['String']>;
|
|
17608
|
+
evaluation?: Maybe<Scalars['Boolean']>;
|
|
17609
|
+
hostingType?: Maybe<Scalars['String']>;
|
|
17610
|
+
key?: Maybe<Scalars['String']>;
|
|
17611
|
+
name?: Maybe<Scalars['String']>;
|
|
17612
|
+
sen?: Maybe<Scalars['ID']>;
|
|
17613
|
+
siteAdmin?: Maybe<Scalars['Boolean']>;
|
|
17614
|
+
slug?: Maybe<Scalars['ID']>;
|
|
17615
|
+
sourceSystem?: Maybe<Scalars['String']>;
|
|
17616
|
+
supportEligibility?: Maybe<PartnerHamsSubscriptionSupportEligibility>;
|
|
17617
|
+
supportLevel?: Maybe<Scalars['String']>;
|
|
17618
|
+
versions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
17619
|
+
};
|
|
17620
|
+
export declare type PartnerHamsSubscriptionSite = {
|
|
17621
|
+
__typename?: 'PartnerHamsSubscriptionSite';
|
|
17622
|
+
site?: Maybe<Scalars['String']>;
|
|
17623
|
+
technicalContacts?: Maybe<Array<Maybe<PartnerHamsSubscriptionTechnicalContact>>>;
|
|
17624
|
+
};
|
|
17625
|
+
export declare type PartnerHamsSubscriptionSupportEligibility = {
|
|
17626
|
+
__typename?: 'PartnerHamsSubscriptionSupportEligibility';
|
|
17627
|
+
community?: Maybe<Scalars['String']>;
|
|
17628
|
+
gsac?: Maybe<Scalars['String']>;
|
|
17629
|
+
};
|
|
17630
|
+
export declare type PartnerHamsSubscriptionTechnicalContact = {
|
|
17631
|
+
__typename?: 'PartnerHamsSubscriptionTechnicalContact';
|
|
17632
|
+
email?: Maybe<Scalars['String']>;
|
|
17633
|
+
entitlements?: Maybe<Array<Maybe<PartnerHamsSubscription>>>;
|
|
17634
|
+
};
|
|
17635
|
+
export declare type PartnerInvoiceFilter = {
|
|
17636
|
+
ccp?: Maybe<PartnerCcpInvoiceInput>;
|
|
17637
|
+
};
|
|
17638
|
+
export declare type PartnerInvoiceResponse = {
|
|
17639
|
+
__typename?: 'PartnerInvoiceResponse';
|
|
17640
|
+
ccp?: Maybe<Array<Maybe<PartnerCcpInvoiceTxA>>>;
|
|
17641
|
+
};
|
|
16858
17642
|
export declare type PartnerOfferingBtfInput = {
|
|
16859
17643
|
currency?: Maybe<Array<Maybe<PartnerCurrency>>>;
|
|
16860
17644
|
licenseType?: Maybe<Array<Maybe<PartnerBtfLicenseType>>>;
|
|
@@ -16961,6 +17745,40 @@ export declare type PartnerPricingTier = {
|
|
|
16961
17745
|
policy?: Maybe<Scalars['String']>;
|
|
16962
17746
|
unitAmount?: Maybe<Scalars['Float']>;
|
|
16963
17747
|
};
|
|
17748
|
+
export declare type PartnerStripeAccountStatus = {
|
|
17749
|
+
__typename?: 'PartnerStripeAccountStatus';
|
|
17750
|
+
accountConfirmed?: Maybe<Scalars['Boolean']>;
|
|
17751
|
+
clonedAt?: Maybe<Scalars['Long']>;
|
|
17752
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
17753
|
+
currentAccount?: Maybe<Scalars['String']>;
|
|
17754
|
+
initialAccount?: Maybe<Scalars['String']>;
|
|
17755
|
+
initialStripeObjectId?: Maybe<Scalars['ID']>;
|
|
17756
|
+
};
|
|
17757
|
+
export declare type PartnerStripeCardDetails = {
|
|
17758
|
+
__typename?: 'PartnerStripeCardDetails';
|
|
17759
|
+
brand?: Maybe<Scalars['String']>;
|
|
17760
|
+
cardHolderName?: Maybe<Scalars['String']>;
|
|
17761
|
+
country?: Maybe<Scalars['String']>;
|
|
17762
|
+
expMonth?: Maybe<Scalars['Long']>;
|
|
17763
|
+
expYear?: Maybe<Scalars['Long']>;
|
|
17764
|
+
funding?: Maybe<Scalars['String']>;
|
|
17765
|
+
last4?: Maybe<Scalars['String']>;
|
|
17766
|
+
};
|
|
17767
|
+
export declare type PartnerStripeCreditCard = {
|
|
17768
|
+
__typename?: 'PartnerStripeCreditCard';
|
|
17769
|
+
card?: Maybe<PartnerStripeCardDetails>;
|
|
17770
|
+
stripePaymentMethodId?: Maybe<Scalars['ID']>;
|
|
17771
|
+
};
|
|
17772
|
+
export declare type PartnerSubscriptionFilter = {
|
|
17773
|
+
ccp?: Maybe<PartnerCcpSubscriptionInput>;
|
|
17774
|
+
hams?: Maybe<PartnerHamsSubscriptionInput>;
|
|
17775
|
+
renewalPendingInDays?: Maybe<Scalars['Long']>;
|
|
17776
|
+
};
|
|
17777
|
+
export declare type PartnerSubscriptionResponse = {
|
|
17778
|
+
__typename?: 'PartnerSubscriptionResponse';
|
|
17779
|
+
ccp?: Maybe<Array<Maybe<PartnerCcpSubscriptionTxA>>>;
|
|
17780
|
+
hams?: Maybe<Array<Maybe<PartnerHamsSubscriptionSite>>>;
|
|
17781
|
+
};
|
|
16964
17782
|
export declare type PartnerUncollectibleAction = {
|
|
16965
17783
|
__typename?: 'PartnerUncollectibleAction';
|
|
16966
17784
|
destination?: Maybe<PartnerUncollectibleDestination>;
|
|
@@ -18167,6 +18985,27 @@ export declare enum PolarisVisualizationType {
|
|
|
18167
18985
|
Matrix = "MATRIX",
|
|
18168
18986
|
Timeline = "TIMELINE"
|
|
18169
18987
|
}
|
|
18988
|
+
export declare enum PrincipalType {
|
|
18989
|
+
Unlicensed = "UNLICENSED",
|
|
18990
|
+
Anonymous = "ANONYMOUS",
|
|
18991
|
+
Customer = "CUSTOMER"
|
|
18992
|
+
}
|
|
18993
|
+
export declare type ProductListing = {
|
|
18994
|
+
__typename?: 'ProductListing';
|
|
18995
|
+
name: Scalars['String'];
|
|
18996
|
+
productKey: Scalars['ID'];
|
|
18997
|
+
shortDescription: Scalars['String'];
|
|
18998
|
+
links: ProductListingLinks;
|
|
18999
|
+
additionalIds: ProductListingAdditionalIds;
|
|
19000
|
+
};
|
|
19001
|
+
export declare type ProductListingAdditionalIds = {
|
|
19002
|
+
__typename?: 'ProductListingAdditionalIds';
|
|
19003
|
+
mpacAppKey?: Maybe<Scalars['String']>;
|
|
19004
|
+
};
|
|
19005
|
+
export declare type ProductListingLinks = {
|
|
19006
|
+
__typename?: 'ProductListingLinks';
|
|
19007
|
+
tryUrl?: Maybe<Scalars['String']>;
|
|
19008
|
+
};
|
|
18170
19009
|
export declare type ProjectAvatars = {
|
|
18171
19010
|
__typename?: 'ProjectAvatars';
|
|
18172
19011
|
x16: Scalars['URL'];
|
|
@@ -18205,6 +19044,10 @@ export declare type Query = {
|
|
|
18205
19044
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
18206
19045
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
18207
19046
|
codeInJira?: Maybe<CodeInJira>;
|
|
19047
|
+
partnerInvoices?: Maybe<PartnerInvoiceResponse>;
|
|
19048
|
+
partnerOfferingCatalog?: Maybe<PartnerOfferingListResponse>;
|
|
19049
|
+
partnerOfferingDetails?: Maybe<PartnerOfferingDetailsResponse>;
|
|
19050
|
+
partnerSubscriptions?: Maybe<PartnerSubscriptionResponse>;
|
|
18208
19051
|
jira?: Maybe<JiraQuery>;
|
|
18209
19052
|
avocado?: Maybe<Avocado>;
|
|
18210
19053
|
team?: Maybe<TeamQuery>;
|
|
@@ -18213,6 +19056,9 @@ export declare type Query = {
|
|
|
18213
19056
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
18214
19057
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
18215
19058
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
19059
|
+
appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
|
|
19060
|
+
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
19061
|
+
ersLifecycle?: Maybe<ErsLifecycleQuery>;
|
|
18216
19062
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
18217
19063
|
polarisProject?: Maybe<PolarisProject>;
|
|
18218
19064
|
polarisView?: Maybe<PolarisView>;
|
|
@@ -18244,11 +19090,12 @@ export declare type Query = {
|
|
|
18244
19090
|
myMarketplaceApps?: Maybe<MarketplaceAppConnection>;
|
|
18245
19091
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
18246
19092
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
19093
|
+
productListing?: Maybe<ProductListing>;
|
|
19094
|
+
productListings: Array<Maybe<ProductListing>>;
|
|
18247
19095
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
18248
|
-
partnerOfferingCatalog?: Maybe<PartnerOfferingListResponse>;
|
|
18249
|
-
partnerOfferingDetails?: Maybe<PartnerOfferingDetailsResponse>;
|
|
18250
19096
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
18251
19097
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
19098
|
+
extensionContext?: Maybe<ExtensionContext>;
|
|
18252
19099
|
extensionByKey?: Maybe<Extension>;
|
|
18253
19100
|
echo?: Maybe<Scalars['String']>;
|
|
18254
19101
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
@@ -18290,7 +19137,8 @@ export declare type Query = {
|
|
|
18290
19137
|
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
18291
19138
|
jwmOverviews?: Maybe<JiraWorkManagementOverviewConnection>;
|
|
18292
19139
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
18293
|
-
surfacePlatform
|
|
19140
|
+
surfacePlatform: SurfacePlatformQueryApi;
|
|
19141
|
+
xflow?: Maybe<XFlowQuery>;
|
|
18294
19142
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
18295
19143
|
jiraReleases?: Maybe<JiraReleases>;
|
|
18296
19144
|
appDeployment?: Maybe<AppDeployment>;
|
|
@@ -18316,7 +19164,7 @@ export declare type QueryJiraProjectRelationshipsForDevOpsToolArgs = {
|
|
|
18316
19164
|
};
|
|
18317
19165
|
export declare type QueryReleaseNotesArgs = {
|
|
18318
19166
|
after?: Maybe<Scalars['String']>;
|
|
18319
|
-
first?:
|
|
19167
|
+
first?: Scalars['Int'];
|
|
18320
19168
|
search?: Maybe<ContentPlatformSearchOptions>;
|
|
18321
19169
|
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
18322
19170
|
filterByAnnouncementPlan?: Maybe<Scalars['Boolean']>;
|
|
@@ -18405,6 +19253,15 @@ export declare type QueryJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
|
18405
19253
|
export declare type QueryCodeInJiraArgs = {
|
|
18406
19254
|
cloudId: Scalars['ID'];
|
|
18407
19255
|
};
|
|
19256
|
+
export declare type QueryPartnerInvoicesArgs = {
|
|
19257
|
+
where?: Maybe<PartnerInvoiceFilter>;
|
|
19258
|
+
};
|
|
19259
|
+
export declare type QueryPartnerOfferingDetailsArgs = {
|
|
19260
|
+
where?: Maybe<PartnerOfferingFilter>;
|
|
19261
|
+
};
|
|
19262
|
+
export declare type QueryPartnerSubscriptionsArgs = {
|
|
19263
|
+
where?: Maybe<PartnerSubscriptionFilter>;
|
|
19264
|
+
};
|
|
18408
19265
|
export declare type QueryMovieArgs = {
|
|
18409
19266
|
id: Scalars['ID'];
|
|
18410
19267
|
};
|
|
@@ -18425,6 +19282,22 @@ export declare type QueryAppStoredEntitiesForCleanupArgs = {
|
|
|
18425
19282
|
first?: Maybe<Scalars['Int']>;
|
|
18426
19283
|
after?: Maybe<Scalars['String']>;
|
|
18427
19284
|
};
|
|
19285
|
+
export declare type QueryAppStoredCustomEntityArgs = {
|
|
19286
|
+
contextAri: Scalars['ID'];
|
|
19287
|
+
entityName: Scalars['String'];
|
|
19288
|
+
key: Scalars['ID'];
|
|
19289
|
+
};
|
|
19290
|
+
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
19291
|
+
contextAri: Scalars['ID'];
|
|
19292
|
+
entityName: Scalars['String'];
|
|
19293
|
+
indexName: Scalars['String'];
|
|
19294
|
+
partition?: Maybe<Array<Scalars['AppStoredCustomEntityFieldValue']>>;
|
|
19295
|
+
range?: Maybe<AppStoredCustomEntityRange>;
|
|
19296
|
+
filters?: Maybe<AppStoredCustomEntityFilters>;
|
|
19297
|
+
sort?: Maybe<SortOrder>;
|
|
19298
|
+
limit?: Maybe<Scalars['Int']>;
|
|
19299
|
+
cursor?: Maybe<Scalars['String']>;
|
|
19300
|
+
};
|
|
18428
19301
|
export declare type QueryPolarisProjectArgs = {
|
|
18429
19302
|
id: Scalars['ID'];
|
|
18430
19303
|
skipRefresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -18518,8 +19391,11 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
18518
19391
|
hostingType: AtlassianProductHostingType;
|
|
18519
19392
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
18520
19393
|
};
|
|
18521
|
-
export declare type
|
|
18522
|
-
|
|
19394
|
+
export declare type QueryProductListingArgs = {
|
|
19395
|
+
id: Scalars['ID'];
|
|
19396
|
+
};
|
|
19397
|
+
export declare type QueryProductListingsArgs = {
|
|
19398
|
+
ids: Array<Scalars['ID']>;
|
|
18523
19399
|
};
|
|
18524
19400
|
export declare type QueryExtensionsEchoArgs = {
|
|
18525
19401
|
text: Scalars['String'];
|
|
@@ -18527,6 +19403,9 @@ export declare type QueryExtensionsEchoArgs = {
|
|
|
18527
19403
|
export declare type QueryExtensionContextsArgs = {
|
|
18528
19404
|
contextIds: Array<Scalars['ID']>;
|
|
18529
19405
|
};
|
|
19406
|
+
export declare type QueryExtensionContextArgs = {
|
|
19407
|
+
contextId: Scalars['ID'];
|
|
19408
|
+
};
|
|
18530
19409
|
export declare type QueryExtensionByKeyArgs = {
|
|
18531
19410
|
contextId: Scalars['ID'];
|
|
18532
19411
|
definitionId: Scalars['ID'];
|
|
@@ -18676,12 +19555,12 @@ export declare type RankingDiffPayload = {
|
|
|
18676
19555
|
};
|
|
18677
19556
|
export declare enum RateLimitingCurrency {
|
|
18678
19557
|
TestingService = "TESTING_SERVICE",
|
|
19558
|
+
TrelloCurrency = "TRELLO_CURRENCY",
|
|
18679
19559
|
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
18680
19560
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
18681
19561
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
18682
19562
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
18683
19563
|
TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
|
|
18684
|
-
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
|
|
18685
19564
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
18686
19565
|
DirectoryCurrency = "DIRECTORY_CURRENCY",
|
|
18687
19566
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
@@ -18833,6 +19712,7 @@ export declare type RoadmapBoardConfiguration = {
|
|
|
18833
19712
|
isBoardJqlFilteringOutEpics?: Maybe<Scalars['Boolean']>;
|
|
18834
19713
|
isSprintsFeatureEnabled?: Maybe<Scalars['Boolean']>;
|
|
18835
19714
|
isChildIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
19715
|
+
derivedFields?: Maybe<Array<RoadmapField>>;
|
|
18836
19716
|
};
|
|
18837
19717
|
export declare type RoadmapComponent = {
|
|
18838
19718
|
__typename?: 'RoadmapComponent';
|
|
@@ -18903,6 +19783,11 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
18903
19783
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
18904
19784
|
sprintField?: Maybe<Scalars['ID']>;
|
|
18905
19785
|
};
|
|
19786
|
+
export declare type RoadmapField = {
|
|
19787
|
+
__typename?: 'RoadmapField';
|
|
19788
|
+
id: Scalars['String'];
|
|
19789
|
+
values: Array<Scalars['String']>;
|
|
19790
|
+
};
|
|
18906
19791
|
export declare type RoadmapFilterConfiguration = {
|
|
18907
19792
|
__typename?: 'RoadmapFilterConfiguration';
|
|
18908
19793
|
customFilters?: Maybe<Array<RoadmapCustomFilter>>;
|
|
@@ -19281,6 +20166,7 @@ export declare type RoadmapsQuery = {
|
|
|
19281
20166
|
roadmapFilterItems: Array<Scalars['ID']>;
|
|
19282
20167
|
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
19283
20168
|
roadmapSubtasksByIds?: Maybe<RoadmapSubtasksWithStatusCategories>;
|
|
20169
|
+
roadmapDeriveFields: Array<Maybe<RoadmapField>>;
|
|
19284
20170
|
};
|
|
19285
20171
|
export declare type RoadmapsQueryRoadmapForSourceArgs = {
|
|
19286
20172
|
sourceARI: Scalars['ID'];
|
|
@@ -19302,12 +20188,18 @@ export declare type RoadmapsQueryRoadmapSubtasksByIdsArgs = {
|
|
|
19302
20188
|
sourceARI: Scalars['ID'];
|
|
19303
20189
|
itemIds: Array<Scalars['ID']>;
|
|
19304
20190
|
};
|
|
20191
|
+
export declare type RoadmapsQueryRoadmapDeriveFieldsArgs = {
|
|
20192
|
+
sourceARI: Scalars['ID'];
|
|
20193
|
+
jqlContexts?: Maybe<Array<Scalars['String']>>;
|
|
20194
|
+
customFilterIds?: Maybe<Array<Scalars['ID']>>;
|
|
20195
|
+
};
|
|
19305
20196
|
export declare type ScanPolarisProjectInput = {
|
|
19306
20197
|
project: Scalars['ID'];
|
|
19307
20198
|
refresh?: Maybe<Scalars['Boolean']>;
|
|
19308
20199
|
};
|
|
19309
20200
|
export declare enum Scope {
|
|
19310
20201
|
ManageOrg = "MANAGE_ORG",
|
|
20202
|
+
ManageOrgPublicApis = "MANAGE_ORG_PUBLIC_APIS",
|
|
19311
20203
|
AuthConfluenceUser = "AUTH_CONFLUENCE_USER",
|
|
19312
20204
|
ManageDirectory = "MANAGE_DIRECTORY",
|
|
19313
20205
|
ReadMe = "READ_ME",
|
|
@@ -19688,7 +20580,6 @@ export declare type SearchConfluenceFilter = {
|
|
|
19688
20580
|
ancestorIdsFilter?: Maybe<Array<Scalars['String']>>;
|
|
19689
20581
|
range?: Maybe<Array<Maybe<SearchConfluenceRangeFilter>>>;
|
|
19690
20582
|
containerStatus?: Maybe<Array<Maybe<SearchContainerStatus>>>;
|
|
19691
|
-
types?: Maybe<Array<Scalars['String']>>;
|
|
19692
20583
|
contentStatuses?: Maybe<Array<SearchConfluenceDocumentStatus>>;
|
|
19693
20584
|
titleMatchOnly?: Maybe<Scalars['Boolean']>;
|
|
19694
20585
|
};
|
|
@@ -19885,6 +20776,17 @@ export declare type SetAppEnvironmentVariablePayload = Payload & {
|
|
|
19885
20776
|
success: Scalars['Boolean'];
|
|
19886
20777
|
errors?: Maybe<Array<MutationError>>;
|
|
19887
20778
|
};
|
|
20779
|
+
export declare type SetAppStoredCustomEntityMutationInput = {
|
|
20780
|
+
key: Scalars['ID'];
|
|
20781
|
+
contextAri: Scalars['ID'];
|
|
20782
|
+
value: Scalars['JSON'];
|
|
20783
|
+
entityName: Scalars['String'];
|
|
20784
|
+
};
|
|
20785
|
+
export declare type SetAppStoredCustomEntityPayload = Payload & {
|
|
20786
|
+
__typename?: 'SetAppStoredCustomEntityPayload';
|
|
20787
|
+
success: Scalars['Boolean'];
|
|
20788
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20789
|
+
};
|
|
19888
20790
|
export declare type SetAppStoredEntityMutationInput = {
|
|
19889
20791
|
key: Scalars['ID'];
|
|
19890
20792
|
contextAri: Scalars['ID'];
|
|
@@ -20778,6 +21680,10 @@ export declare enum SortDirection {
|
|
|
20778
21680
|
Asc = "ASC",
|
|
20779
21681
|
Desc = "DESC"
|
|
20780
21682
|
}
|
|
21683
|
+
export declare enum SortOrder {
|
|
21684
|
+
Asc = "ASC",
|
|
21685
|
+
Desc = "DESC"
|
|
21686
|
+
}
|
|
20781
21687
|
export declare type SplitIssueInput = {
|
|
20782
21688
|
originalIssue: OriginalSplitIssue;
|
|
20783
21689
|
newIssues: Array<Maybe<NewSplitIssueRequest>>;
|
|
@@ -20953,6 +21859,10 @@ export declare type SupportRequestAddCommentInput = {
|
|
|
20953
21859
|
message: Scalars['String'];
|
|
20954
21860
|
issueKey: Scalars['String'];
|
|
20955
21861
|
};
|
|
21862
|
+
export declare type SupportRequestAdditionalTicketData = {
|
|
21863
|
+
parentIssueIdOrKey?: Maybe<Scalars['String']>;
|
|
21864
|
+
operationType?: Maybe<Scalars['String']>;
|
|
21865
|
+
};
|
|
20956
21866
|
export declare type SupportRequestCatalogMutationApi = {
|
|
20957
21867
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
20958
21868
|
addComment?: Maybe<SupportRequestComment>;
|
|
@@ -20964,6 +21874,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
20964
21874
|
addSupportRequestOrganizations?: Maybe<Array<SupportRequestOrganization>>;
|
|
20965
21875
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
20966
21876
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
21877
|
+
createTicket?: Maybe<SupportRequestCreateTicketResponse>;
|
|
20967
21878
|
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
20968
21879
|
};
|
|
20969
21880
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
@@ -20996,6 +21907,12 @@ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationR
|
|
|
20996
21907
|
export declare type SupportRequestCatalogMutationApiUpdateSupportRequestArgs = {
|
|
20997
21908
|
input: SupportRequestUpdateInput;
|
|
20998
21909
|
};
|
|
21910
|
+
export declare type SupportRequestCatalogMutationApiCreateTicketArgs = {
|
|
21911
|
+
summary: Scalars['String'];
|
|
21912
|
+
description: Scalars['String'];
|
|
21913
|
+
fields?: Maybe<Array<Maybe<SupportRequestTicketFields>>>;
|
|
21914
|
+
additionalData?: Maybe<SupportRequestAdditionalTicketData>;
|
|
21915
|
+
};
|
|
20999
21916
|
export declare type SupportRequestCatalogQueryApi = {
|
|
21000
21917
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
21001
21918
|
me?: Maybe<SupportRequestPage>;
|
|
@@ -21044,6 +21961,12 @@ export declare type SupportRequestContextSetNotificationInput = {
|
|
|
21044
21961
|
requestKey: Scalars['String'];
|
|
21045
21962
|
status: Scalars['Boolean'];
|
|
21046
21963
|
};
|
|
21964
|
+
export declare type SupportRequestCreateTicketResponse = {
|
|
21965
|
+
__typename?: 'SupportRequestCreateTicketResponse';
|
|
21966
|
+
ticketKey?: Maybe<Scalars['String']>;
|
|
21967
|
+
success?: Maybe<Scalars['Boolean']>;
|
|
21968
|
+
message?: Maybe<Scalars['String']>;
|
|
21969
|
+
};
|
|
21047
21970
|
export declare type SupportRequestDisplayableDateTime = {
|
|
21048
21971
|
__typename?: 'SupportRequestDisplayableDateTime';
|
|
21049
21972
|
dateTime: Scalars['String'];
|
|
@@ -21196,6 +22119,11 @@ export declare type SupportRequestTicket = {
|
|
|
21196
22119
|
statusName?: Maybe<Scalars['String']>;
|
|
21197
22120
|
categoryKey?: Maybe<Scalars['String']>;
|
|
21198
22121
|
};
|
|
22122
|
+
export declare type SupportRequestTicketFields = {
|
|
22123
|
+
fieldId: Scalars['Long'];
|
|
22124
|
+
fieldValue: Scalars['String'];
|
|
22125
|
+
dataType: SupportRequestFieldDataType;
|
|
22126
|
+
};
|
|
21199
22127
|
export declare type SupportRequestTransition = {
|
|
21200
22128
|
__typename?: 'SupportRequestTransition';
|
|
21201
22129
|
id: Scalars['String'];
|
|
@@ -21257,6 +22185,7 @@ export declare type SurfacePlatformQueryApi = {
|
|
|
21257
22185
|
surface?: Maybe<SurfacePlatformSurface>;
|
|
21258
22186
|
};
|
|
21259
22187
|
export declare type SurfacePlatformQueryApiSurfaceArgs = {
|
|
22188
|
+
context?: Maybe<Scalars['JSON']>;
|
|
21260
22189
|
id: Scalars['ID'];
|
|
21261
22190
|
};
|
|
21262
22191
|
export declare type SurfacePlatformSurface = {
|
|
@@ -21883,12 +22812,16 @@ export declare type TrelloQueryApi = {
|
|
|
21883
22812
|
__typename?: 'TrelloQueryApi';
|
|
21884
22813
|
board?: Maybe<TrelloBoard>;
|
|
21885
22814
|
echo: Scalars['String'];
|
|
22815
|
+
recentBoardsByIds: Array<Maybe<TrelloBoard>>;
|
|
21886
22816
|
templateCategories: Array<TrelloTemplateGalleryCategory>;
|
|
21887
22817
|
templateLanguages: Array<TrelloTemplateGalleryLanguage>;
|
|
21888
22818
|
};
|
|
21889
22819
|
export declare type TrelloQueryApiBoardArgs = {
|
|
21890
22820
|
id: Scalars['ID'];
|
|
21891
22821
|
};
|
|
22822
|
+
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
22823
|
+
ids: Array<Scalars['ID']>;
|
|
22824
|
+
};
|
|
21892
22825
|
export declare type TrelloScaleProps = {
|
|
21893
22826
|
__typename?: 'TrelloScaleProps';
|
|
21894
22827
|
height: Scalars['Int'];
|
|
@@ -22049,6 +22982,8 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
22049
22982
|
id: Scalars['ID'];
|
|
22050
22983
|
weight?: Maybe<Scalars['Int']>;
|
|
22051
22984
|
linkType?: Maybe<CompassLinkType>;
|
|
22985
|
+
textComparator?: Maybe<CompassCriteriaTextComparatorOptions>;
|
|
22986
|
+
textComparatorValue?: Maybe<Scalars['String']>;
|
|
22052
22987
|
};
|
|
22053
22988
|
export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
22054
22989
|
id: Scalars['ID'];
|
|
@@ -22462,6 +23397,7 @@ export declare type User = {
|
|
|
22462
23397
|
};
|
|
22463
23398
|
export declare type UserAuthTokenForExtensionInput = {
|
|
22464
23399
|
extensionId: Scalars['ID'];
|
|
23400
|
+
contextIds?: Maybe<Array<Scalars['ID']>>;
|
|
22465
23401
|
};
|
|
22466
23402
|
export declare type UserAuthTokenForExtensionResponse = Payload & {
|
|
22467
23403
|
__typename?: 'UserAuthTokenForExtensionResponse';
|
|
@@ -22469,6 +23405,13 @@ export declare type UserAuthTokenForExtensionResponse = Payload & {
|
|
|
22469
23405
|
errors?: Maybe<Array<MutationError>>;
|
|
22470
23406
|
authToken?: Maybe<AuthToken>;
|
|
22471
23407
|
};
|
|
23408
|
+
export declare type UserConsent = {
|
|
23409
|
+
__typename?: 'UserConsent';
|
|
23410
|
+
oauthClientId: Scalars['ID'];
|
|
23411
|
+
appId: Scalars['ID'];
|
|
23412
|
+
environmentId: Scalars['ID'];
|
|
23413
|
+
versionId: Scalars['ID'];
|
|
23414
|
+
};
|
|
22472
23415
|
export declare type UserConsentExtension = {
|
|
22473
23416
|
__typename?: 'UserConsentExtension';
|
|
22474
23417
|
user: UserConsentExtensionUser;
|
|
@@ -22540,6 +23483,9 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
22540
23483
|
respondToQueries: Scalars['Boolean'];
|
|
22541
23484
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
22542
23485
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
23486
|
+
virtualAgentStatisticsProjection?: Maybe<VirtualAgentStatisticsProjection>;
|
|
23487
|
+
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
23488
|
+
flowEditorFlow?: Maybe<VirtualAgentFlowEditor>;
|
|
22543
23489
|
};
|
|
22544
23490
|
export declare type VirtualAgentConfigurationIntentRuleProjectionsArgs = {
|
|
22545
23491
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -22548,6 +23494,17 @@ export declare type VirtualAgentConfigurationIntentRuleProjectionsArgs = {
|
|
|
22548
23494
|
export declare type VirtualAgentConfigurationIntentRuleProjectionArgs = {
|
|
22549
23495
|
intentId: Scalars['String'];
|
|
22550
23496
|
};
|
|
23497
|
+
export declare type VirtualAgentConfigurationVirtualAgentStatisticsProjectionArgs = {
|
|
23498
|
+
startDate?: Maybe<Scalars['String']>;
|
|
23499
|
+
endDate?: Maybe<Scalars['String']>;
|
|
23500
|
+
};
|
|
23501
|
+
export declare type VirtualAgentConfigurationStandardFlowEditorsArgs = {
|
|
23502
|
+
first?: Maybe<Scalars['Int']>;
|
|
23503
|
+
after?: Maybe<Scalars['String']>;
|
|
23504
|
+
};
|
|
23505
|
+
export declare type VirtualAgentConfigurationFlowEditorFlowArgs = {
|
|
23506
|
+
flowRevisionId: Scalars['String'];
|
|
23507
|
+
};
|
|
22551
23508
|
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
22552
23509
|
export declare type VirtualAgentCreateIntentRuleProjectionInput = {
|
|
22553
23510
|
name: Scalars['String'];
|
|
@@ -22575,7 +23532,36 @@ export declare type VirtualAgentFlowEditor = Node & {
|
|
|
22575
23532
|
group?: Maybe<Scalars['String']>;
|
|
22576
23533
|
jsonRepresentation?: Maybe<Scalars['String']>;
|
|
22577
23534
|
};
|
|
23535
|
+
export declare type VirtualAgentFlowEditorEdge = {
|
|
23536
|
+
__typename?: 'VirtualAgentFlowEditorEdge';
|
|
23537
|
+
cursor: Scalars['String'];
|
|
23538
|
+
node?: Maybe<VirtualAgentFlowEditor>;
|
|
23539
|
+
};
|
|
23540
|
+
export declare type VirtualAgentFlowEditorInput = {
|
|
23541
|
+
name?: Maybe<Scalars['String']>;
|
|
23542
|
+
group?: Maybe<Scalars['String']>;
|
|
23543
|
+
jsonRepresentation: Scalars['String'];
|
|
23544
|
+
};
|
|
23545
|
+
export declare type VirtualAgentFlowEditorPayload = Payload & {
|
|
23546
|
+
__typename?: 'VirtualAgentFlowEditorPayload';
|
|
23547
|
+
success: Scalars['Boolean'];
|
|
23548
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23549
|
+
virtualAgentFlowEditor?: Maybe<VirtualAgentFlowEditor>;
|
|
23550
|
+
};
|
|
22578
23551
|
export declare type VirtualAgentFlowEditorResult = VirtualAgentFlowEditor | VirtualAgentQueryError;
|
|
23552
|
+
export declare type VirtualAgentFlowEditorsConnection = {
|
|
23553
|
+
__typename?: 'VirtualAgentFlowEditorsConnection';
|
|
23554
|
+
edges?: Maybe<Array<VirtualAgentFlowEditorEdge>>;
|
|
23555
|
+
nodes?: Maybe<Array<Maybe<VirtualAgentFlowEditor>>>;
|
|
23556
|
+
pageInfo?: Maybe<PageInfo>;
|
|
23557
|
+
};
|
|
23558
|
+
export declare type VirtualAgentGlobalStatisticsProjection = {
|
|
23559
|
+
__typename?: 'VirtualAgentGlobalStatisticsProjection';
|
|
23560
|
+
totalTraffic?: Maybe<Scalars['Int']>;
|
|
23561
|
+
assistanceRate?: Maybe<Scalars['Float']>;
|
|
23562
|
+
resolutionRate?: Maybe<Scalars['Float']>;
|
|
23563
|
+
averageCsat?: Maybe<Scalars['Float']>;
|
|
23564
|
+
};
|
|
22579
23565
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
22580
23566
|
__typename?: 'VirtualAgentIntentProjection';
|
|
22581
23567
|
id: Scalars['ID'];
|
|
@@ -22610,8 +23596,14 @@ export declare type VirtualAgentIntentRuleProjection = Node & {
|
|
|
22610
23596
|
isEnabled: Scalars['Boolean'];
|
|
22611
23597
|
intentProjection?: Maybe<VirtualAgentIntentProjectionResult>;
|
|
22612
23598
|
flowJsonRepresentation?: Maybe<Scalars['String']>;
|
|
23599
|
+
flowEditor?: Maybe<VirtualAgentFlowEditorResult>;
|
|
22613
23600
|
confirmationMessage?: Maybe<Scalars['String']>;
|
|
22614
23601
|
suggestionButtonText?: Maybe<Scalars['String']>;
|
|
23602
|
+
intentStatisticsProjection?: Maybe<VirtualAgentIntentStatisticsProjection>;
|
|
23603
|
+
};
|
|
23604
|
+
export declare type VirtualAgentIntentRuleProjectionIntentStatisticsProjectionArgs = {
|
|
23605
|
+
startDate?: Maybe<Scalars['String']>;
|
|
23606
|
+
endDate?: Maybe<Scalars['String']>;
|
|
22615
23607
|
};
|
|
22616
23608
|
export declare type VirtualAgentIntentRuleProjectionEdge = {
|
|
22617
23609
|
__typename?: 'VirtualAgentIntentRuleProjectionEdge';
|
|
@@ -22628,6 +23620,13 @@ export declare type VirtualAgentIntentRuleProjectionsConnection = {
|
|
|
22628
23620
|
export declare type VirtualAgentIntentRuleProjectionsFilter = {
|
|
22629
23621
|
virtualAgentConfigurationId: Scalars['ID'];
|
|
22630
23622
|
};
|
|
23623
|
+
export declare type VirtualAgentIntentStatisticsProjection = {
|
|
23624
|
+
__typename?: 'VirtualAgentIntentStatisticsProjection';
|
|
23625
|
+
totalTraffic?: Maybe<Scalars['Int']>;
|
|
23626
|
+
trafficPercentageOfAllAssisted?: Maybe<Scalars['Float']>;
|
|
23627
|
+
resolutionRate?: Maybe<Scalars['Float']>;
|
|
23628
|
+
averageCsat?: Maybe<Scalars['Float']>;
|
|
23629
|
+
};
|
|
22631
23630
|
export declare type VirtualAgentMutationApi = {
|
|
22632
23631
|
__typename?: 'VirtualAgentMutationApi';
|
|
22633
23632
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
@@ -22635,6 +23634,7 @@ export declare type VirtualAgentMutationApi = {
|
|
|
22635
23634
|
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
22636
23635
|
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
22637
23636
|
deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
|
|
23637
|
+
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
22638
23638
|
};
|
|
22639
23639
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
22640
23640
|
input: VirtualAgentUpdateConfigurationInput;
|
|
@@ -22654,6 +23654,10 @@ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsAr
|
|
|
22654
23654
|
export declare type VirtualAgentMutationApiDeleteIntentRuleProjectionArgs = {
|
|
22655
23655
|
virtualAgentIntentRuleProjectionId: Scalars['ID'];
|
|
22656
23656
|
};
|
|
23657
|
+
export declare type VirtualAgentMutationApiUpdateFlowEditorFlowArgs = {
|
|
23658
|
+
virtualAgentFlowEditorId: Scalars['ID'];
|
|
23659
|
+
input: VirtualAgentFlowEditorInput;
|
|
23660
|
+
};
|
|
22657
23661
|
export declare type VirtualAgentQueryApi = {
|
|
22658
23662
|
__typename?: 'VirtualAgentQueryApi';
|
|
22659
23663
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
@@ -22673,6 +23677,18 @@ export declare type VirtualAgentQueryError = {
|
|
|
22673
23677
|
message?: Maybe<Scalars['String']>;
|
|
22674
23678
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
22675
23679
|
};
|
|
23680
|
+
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
23681
|
+
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
23682
|
+
traffic?: Maybe<Scalars['Float']>;
|
|
23683
|
+
assistance?: Maybe<Scalars['Float']>;
|
|
23684
|
+
resolution?: Maybe<Scalars['Float']>;
|
|
23685
|
+
csat?: Maybe<Scalars['Float']>;
|
|
23686
|
+
};
|
|
23687
|
+
export declare type VirtualAgentStatisticsProjection = {
|
|
23688
|
+
__typename?: 'VirtualAgentStatisticsProjection';
|
|
23689
|
+
globalStatistics?: Maybe<VirtualAgentGlobalStatisticsProjection>;
|
|
23690
|
+
statisticsPercentageChange?: Maybe<VirtualAgentStatisticsPercentageChangeProjection>;
|
|
23691
|
+
};
|
|
22676
23692
|
export declare type VirtualAgentUpdateConfigurationInput = {
|
|
22677
23693
|
id: Scalars['ID'];
|
|
22678
23694
|
respondToQueries?: Maybe<Scalars['Boolean']>;
|
|
@@ -22740,6 +23756,17 @@ export declare type WebTriggerUrlInput = {
|
|
|
22740
23756
|
triggerKey: Scalars['String'];
|
|
22741
23757
|
contextId: Scalars['ID'];
|
|
22742
23758
|
};
|
|
23759
|
+
export declare type XFlowQuery = {
|
|
23760
|
+
__typename?: 'XFlowQuery';
|
|
23761
|
+
recommendedApps?: Maybe<Array<XFlowRecommendedApp>>;
|
|
23762
|
+
};
|
|
23763
|
+
export declare type XFlowQueryRecommendedAppsArgs = {
|
|
23764
|
+
site: Scalars['ID'];
|
|
23765
|
+
};
|
|
23766
|
+
export declare type XFlowRecommendedApp = {
|
|
23767
|
+
__typename?: 'XFlowRecommendedApp';
|
|
23768
|
+
appKey: Scalars['String'];
|
|
23769
|
+
};
|
|
22743
23770
|
export declare type _AppliedDirective = {
|
|
22744
23771
|
__typename?: '_AppliedDirective';
|
|
22745
23772
|
name: Scalars['String'];
|