@forge/cli-shared 3.16.0-next.17 → 3.16.0-next.19
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 +12 -0
- package/out/ari/ari.d.ts.map +1 -1
- package/out/ari/ari.js +3 -6
- package/out/graphql/graphql-types.d.ts +120 -64
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +13 -6
- package/out/service/feature-flag-service.d.ts +2 -0
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +4 -0
- package/out/shared/product.d.ts +5 -2
- package/out/shared/product.d.ts.map +1 -1
- package/out/shared/product.js +28 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.16.0-next.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0cb957de: Update conf dependency
|
|
8
|
+
|
|
9
|
+
## 3.16.0-next.18
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 0f580deb: SHIPIT: added townsquare as supported product
|
|
14
|
+
|
|
3
15
|
## 3.16.0-next.17
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/out/ari/ari.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ari.d.ts","sourceRoot":"","sources":["../../src/ari/ari.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAsB,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"ari.d.ts","sourceRoot":"","sources":["../../src/ari/ari.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAsB,MAAM,6BAA6B,CAAC;AAGtE,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAEtD;AAID,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,GAAG,CAMrE;AAED,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,GAAG,GAAG,CAMhG;AAGD,wBAAgB,aAAa,CAAC,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,GAAG,MAAM,CAKlE"}
|
package/out/ari/ari.js
CHANGED
|
@@ -2,13 +2,14 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.encodeContext = exports.buildExtensionAri = exports.buildContextAri = exports.appIdToAriString = void 0;
|
|
4
4
|
const cs_ari_1 = require("@forge/util/packages/cs-ari");
|
|
5
|
+
const shared_1 = require("../shared");
|
|
5
6
|
function appIdToAriString(appId) {
|
|
6
7
|
return `ari:cloud:ecosystem::app/${appId}`;
|
|
7
8
|
}
|
|
8
9
|
exports.appIdToAriString = appIdToAriString;
|
|
9
10
|
function buildContextAri(cloudId, product) {
|
|
10
11
|
return new cs_ari_1.ResourceIdentifier({
|
|
11
|
-
resourceOwner:
|
|
12
|
+
resourceOwner: (0, shared_1.ariResourceOwner)(product),
|
|
12
13
|
resourceType: 'site',
|
|
13
14
|
resourceId: cloudId
|
|
14
15
|
});
|
|
@@ -24,10 +25,6 @@ function buildExtensionAri(appId, environmentId, functionKey) {
|
|
|
24
25
|
exports.buildExtensionAri = buildExtensionAri;
|
|
25
26
|
function encodeContext(context, extension) {
|
|
26
27
|
const serialised = JSON.stringify({ ctx: context.toString(), ext: extension.toString() });
|
|
27
|
-
return Buffer.from(serialised, 'utf-8')
|
|
28
|
-
.toString('base64')
|
|
29
|
-
.replace(/=/g, '')
|
|
30
|
-
.replace(/\+/g, '-')
|
|
31
|
-
.replace(/\//g, '_');
|
|
28
|
+
return Buffer.from(serialised, 'utf-8').toString('base64').replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_');
|
|
32
29
|
}
|
|
33
30
|
exports.encodeContext = encodeContext;
|
|
@@ -374,10 +374,16 @@ export declare type App = {
|
|
|
374
374
|
tags?: Maybe<Array<Scalars['String']>>;
|
|
375
375
|
ensureCollaborator: Scalars['Boolean'];
|
|
376
376
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
377
|
+
deployments?: Maybe<AppDeploymentConnection>;
|
|
377
378
|
};
|
|
378
379
|
export declare type AppEnvironmentByKeyArgs = {
|
|
379
380
|
key: Scalars['String'];
|
|
380
381
|
};
|
|
382
|
+
export declare type AppDeploymentsArgs = {
|
|
383
|
+
interval: IntervalInput;
|
|
384
|
+
first?: Maybe<Scalars['Int']>;
|
|
385
|
+
after?: Maybe<Scalars['String']>;
|
|
386
|
+
};
|
|
381
387
|
export declare type AppAdminQuery = {
|
|
382
388
|
__typename?: 'AppAdminQuery';
|
|
383
389
|
appId: Scalars['ID'];
|
|
@@ -412,9 +418,11 @@ export declare type AppContributor = {
|
|
|
412
418
|
status: Scalars['String'];
|
|
413
419
|
isOwner?: Maybe<Scalars['Boolean']>;
|
|
414
420
|
avatarUrl?: Maybe<Scalars['String']>;
|
|
421
|
+
role?: Maybe<Scalars['String']>;
|
|
415
422
|
};
|
|
416
423
|
export declare enum AppContributorRole {
|
|
417
|
-
Admin = "ADMIN"
|
|
424
|
+
Admin = "ADMIN",
|
|
425
|
+
Developer = "DEVELOPER"
|
|
418
426
|
}
|
|
419
427
|
export declare type AppDeployment = {
|
|
420
428
|
__typename?: 'AppDeployment';
|
|
@@ -426,6 +434,18 @@ export declare type AppDeployment = {
|
|
|
426
434
|
createdBy?: Maybe<User>;
|
|
427
435
|
createdAt: Scalars['String'];
|
|
428
436
|
stages?: Maybe<Array<AppDeploymentStage>>;
|
|
437
|
+
majorVersion?: Maybe<AppEnvironmentVersion>;
|
|
438
|
+
};
|
|
439
|
+
export declare type AppDeploymentConnection = {
|
|
440
|
+
__typename?: 'AppDeploymentConnection';
|
|
441
|
+
edges?: Maybe<Array<Maybe<AppDeploymentEdge>>>;
|
|
442
|
+
nodes: Array<Maybe<AppDeployment>>;
|
|
443
|
+
pageInfo?: Maybe<PageInfo>;
|
|
444
|
+
};
|
|
445
|
+
export declare type AppDeploymentEdge = {
|
|
446
|
+
__typename?: 'AppDeploymentEdge';
|
|
447
|
+
cursor: Scalars['String'];
|
|
448
|
+
node?: Maybe<AppDeployment>;
|
|
429
449
|
};
|
|
430
450
|
export declare type AppDeploymentEvent = {
|
|
431
451
|
createdAt: Scalars['String'];
|
|
@@ -6274,6 +6294,7 @@ export declare type CustomerServiceAttribute = {
|
|
|
6274
6294
|
__typename?: 'CustomerServiceAttribute';
|
|
6275
6295
|
id: Scalars['ID'];
|
|
6276
6296
|
name: Scalars['String'];
|
|
6297
|
+
type: CustomerServiceAttributeType;
|
|
6277
6298
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
6278
6299
|
};
|
|
6279
6300
|
export declare type CustomerServiceAttributeConfigMetadata = {
|
|
@@ -6291,6 +6312,7 @@ export declare type CustomerServiceAttributeConfigMetadataUpdatePayload = Payloa
|
|
|
6291
6312
|
};
|
|
6292
6313
|
export declare type CustomerServiceAttributeCreateInput = {
|
|
6293
6314
|
name: Scalars['String'];
|
|
6315
|
+
type?: Maybe<CustomerServiceAttributeCreateTypeInput>;
|
|
6294
6316
|
};
|
|
6295
6317
|
export declare type CustomerServiceAttributeCreatePayload = Payload & {
|
|
6296
6318
|
__typename?: 'CustomerServiceAttributeCreatePayload';
|
|
@@ -6298,6 +6320,10 @@ export declare type CustomerServiceAttributeCreatePayload = Payload & {
|
|
|
6298
6320
|
errors?: Maybe<Array<MutationError>>;
|
|
6299
6321
|
successfullyCreatedAttribute?: Maybe<CustomerServiceAttribute>;
|
|
6300
6322
|
};
|
|
6323
|
+
export declare type CustomerServiceAttributeCreateTypeInput = {
|
|
6324
|
+
name?: Maybe<CustomerServiceAttributeTypeName>;
|
|
6325
|
+
options?: Maybe<Array<Scalars['String']>>;
|
|
6326
|
+
};
|
|
6301
6327
|
export declare type CustomerServiceAttributeDeleteInput = {
|
|
6302
6328
|
id: Scalars['ID'];
|
|
6303
6329
|
};
|
|
@@ -6306,9 +6332,23 @@ export declare type CustomerServiceAttributeDeletePayload = Payload & {
|
|
|
6306
6332
|
success: Scalars['Boolean'];
|
|
6307
6333
|
errors?: Maybe<Array<MutationError>>;
|
|
6308
6334
|
};
|
|
6335
|
+
export declare type CustomerServiceAttributeType = {
|
|
6336
|
+
__typename?: 'CustomerServiceAttributeType';
|
|
6337
|
+
name: CustomerServiceAttributeTypeName;
|
|
6338
|
+
options?: Maybe<Array<Scalars['String']>>;
|
|
6339
|
+
};
|
|
6340
|
+
export declare enum CustomerServiceAttributeTypeName {
|
|
6341
|
+
Text = "TEXT",
|
|
6342
|
+
Email = "EMAIL",
|
|
6343
|
+
Url = "URL",
|
|
6344
|
+
Number = "NUMBER",
|
|
6345
|
+
Select = "SELECT",
|
|
6346
|
+
Multiselect = "MULTISELECT"
|
|
6347
|
+
}
|
|
6309
6348
|
export declare type CustomerServiceAttributeUpdateInput = {
|
|
6310
6349
|
id: Scalars['ID'];
|
|
6311
6350
|
name: Scalars['String'];
|
|
6351
|
+
type?: Maybe<CustomerServiceAttributeUpdateTypeInput>;
|
|
6312
6352
|
};
|
|
6313
6353
|
export declare type CustomerServiceAttributeUpdatePayload = Payload & {
|
|
6314
6354
|
__typename?: 'CustomerServiceAttributeUpdatePayload';
|
|
@@ -6316,11 +6356,17 @@ export declare type CustomerServiceAttributeUpdatePayload = Payload & {
|
|
|
6316
6356
|
errors?: Maybe<Array<MutationError>>;
|
|
6317
6357
|
successfullyUpdatedAttribute?: Maybe<CustomerServiceAttribute>;
|
|
6318
6358
|
};
|
|
6359
|
+
export declare type CustomerServiceAttributeUpdateTypeInput = {
|
|
6360
|
+
name?: Maybe<CustomerServiceAttributeTypeName>;
|
|
6361
|
+
options?: Maybe<Array<Scalars['String']>>;
|
|
6362
|
+
};
|
|
6319
6363
|
export declare type CustomerServiceAttributeValue = {
|
|
6320
6364
|
__typename?: 'CustomerServiceAttributeValue';
|
|
6321
6365
|
id: Scalars['ID'];
|
|
6322
6366
|
name: Scalars['String'];
|
|
6367
|
+
type: CustomerServiceAttributeType;
|
|
6323
6368
|
value?: Maybe<Scalars['String']>;
|
|
6369
|
+
values?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
6324
6370
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
6325
6371
|
};
|
|
6326
6372
|
export declare type CustomerServiceAttributes = {
|
|
@@ -6332,7 +6378,7 @@ export declare type CustomerServiceIndividual = Node & {
|
|
|
6332
6378
|
__typename?: 'CustomerServiceIndividual';
|
|
6333
6379
|
id: Scalars['ID'];
|
|
6334
6380
|
name: Scalars['String'];
|
|
6335
|
-
attributes
|
|
6381
|
+
attributes: Array<Maybe<CustomerServiceAttributeValue>>;
|
|
6336
6382
|
};
|
|
6337
6383
|
export declare type CustomerServiceIndividualDeletePayload = Payload & {
|
|
6338
6384
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
@@ -6350,6 +6396,11 @@ export declare type CustomerServiceIndividualUpdateAttributeInput = {
|
|
|
6350
6396
|
attributeId: Scalars['String'];
|
|
6351
6397
|
attributeValue: Scalars['String'];
|
|
6352
6398
|
};
|
|
6399
|
+
export declare type CustomerServiceIndividualUpdateAttributeMultiValueByNameInput = {
|
|
6400
|
+
accountId: Scalars['String'];
|
|
6401
|
+
attributeName: Scalars['String'];
|
|
6402
|
+
attributeValues: Array<Scalars['String']>;
|
|
6403
|
+
};
|
|
6353
6404
|
export declare type CustomerServiceIndividualUpdateAttributeValuePayload = Payload & {
|
|
6354
6405
|
__typename?: 'CustomerServiceIndividualUpdateAttributeValuePayload';
|
|
6355
6406
|
success: Scalars['Boolean'];
|
|
@@ -6367,11 +6418,13 @@ export declare type CustomerServiceMutationApi = {
|
|
|
6367
6418
|
updateOrganizationAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
6368
6419
|
updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
6369
6420
|
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
6421
|
+
updateOrganizationAttributeMultiValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
6370
6422
|
createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
6371
6423
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
6372
6424
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
6373
6425
|
updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
6374
6426
|
updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
6427
|
+
updateIndividualAttributeMultiValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
6375
6428
|
};
|
|
6376
6429
|
export declare type CustomerServiceMutationApiCreateOrganizationArgs = {
|
|
6377
6430
|
input: CustomerServiceOrganizationCreateInput;
|
|
@@ -6400,6 +6453,9 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueAr
|
|
|
6400
6453
|
export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueByNameArgs = {
|
|
6401
6454
|
input: CustomerServiceOrganizationUpdateAttributeByNameInput;
|
|
6402
6455
|
};
|
|
6456
|
+
export declare type CustomerServiceMutationApiUpdateOrganizationAttributeMultiValueByNameArgs = {
|
|
6457
|
+
input: CustomerServiceOrganizationUpdateAttributeMultiValueByNameInput;
|
|
6458
|
+
};
|
|
6403
6459
|
export declare type CustomerServiceMutationApiCreateIndividualAttributeArgs = {
|
|
6404
6460
|
input: CustomerServiceAttributeCreateInput;
|
|
6405
6461
|
};
|
|
@@ -6415,11 +6471,14 @@ export declare type CustomerServiceMutationApiUpdateIndividualAttributeConfigArg
|
|
|
6415
6471
|
export declare type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs = {
|
|
6416
6472
|
input: CustomerServiceIndividualUpdateAttributeByNameInput;
|
|
6417
6473
|
};
|
|
6474
|
+
export declare type CustomerServiceMutationApiUpdateIndividualAttributeMultiValueByNameArgs = {
|
|
6475
|
+
input: CustomerServiceIndividualUpdateAttributeMultiValueByNameInput;
|
|
6476
|
+
};
|
|
6418
6477
|
export declare type CustomerServiceOrganization = Node & {
|
|
6419
6478
|
__typename?: 'CustomerServiceOrganization';
|
|
6420
6479
|
id: Scalars['ID'];
|
|
6421
6480
|
name: Scalars['String'];
|
|
6422
|
-
attributes
|
|
6481
|
+
attributes: Array<Maybe<CustomerServiceAttributeValue>>;
|
|
6423
6482
|
};
|
|
6424
6483
|
export declare type CustomerServiceOrganizationCreateInput = {
|
|
6425
6484
|
id: Scalars['ID'];
|
|
@@ -6450,6 +6509,11 @@ export declare type CustomerServiceOrganizationUpdateAttributeInput = {
|
|
|
6450
6509
|
attributeId: Scalars['String'];
|
|
6451
6510
|
attributeValue: Scalars['String'];
|
|
6452
6511
|
};
|
|
6512
|
+
export declare type CustomerServiceOrganizationUpdateAttributeMultiValueByNameInput = {
|
|
6513
|
+
organizationId: Scalars['String'];
|
|
6514
|
+
attributeName: Scalars['String'];
|
|
6515
|
+
attributeValues: Array<Scalars['String']>;
|
|
6516
|
+
};
|
|
6453
6517
|
export declare type CustomerServiceOrganizationUpdateAttributeValuePayload = Payload & {
|
|
6454
6518
|
__typename?: 'CustomerServiceOrganizationUpdateAttributeValuePayload';
|
|
6455
6519
|
success: Scalars['Boolean'];
|
|
@@ -8544,6 +8608,7 @@ export declare type ForgeAuditLog = {
|
|
|
8544
8608
|
actorId: Scalars['ID'];
|
|
8545
8609
|
actorName: Scalars['String'];
|
|
8546
8610
|
contributor?: Maybe<User>;
|
|
8611
|
+
role?: Maybe<Scalars['String']>;
|
|
8547
8612
|
timestamp: Scalars['String'];
|
|
8548
8613
|
};
|
|
8549
8614
|
export declare type ForgeAuditLogEdge = {
|
|
@@ -9895,6 +9960,10 @@ export declare type IntervalFilter = {
|
|
|
9895
9960
|
start: Scalars['String'];
|
|
9896
9961
|
end: Scalars['String'];
|
|
9897
9962
|
};
|
|
9963
|
+
export declare type IntervalInput = {
|
|
9964
|
+
startTime: Scalars['DateTime'];
|
|
9965
|
+
endTime: Scalars['DateTime'];
|
|
9966
|
+
};
|
|
9898
9967
|
export declare type InvocationMetrics = {
|
|
9899
9968
|
__typename?: 'InvocationMetrics';
|
|
9900
9969
|
appTimeMs?: Maybe<Scalars['Float']>;
|
|
@@ -10562,7 +10631,7 @@ export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldCon
|
|
|
10562
10631
|
export declare type JiraBulkEditField = {
|
|
10563
10632
|
__typename?: 'JiraBulkEditField';
|
|
10564
10633
|
field?: Maybe<JiraIssueField>;
|
|
10565
|
-
bulkEditMultiSelectFieldOptions?: Maybe<JiraBulkEditMultiSelectFieldOptions
|
|
10634
|
+
bulkEditMultiSelectFieldOptions?: Maybe<Array<Maybe<JiraBulkEditMultiSelectFieldOptions>>>;
|
|
10566
10635
|
unavailableMessage?: Maybe<Scalars['String']>;
|
|
10567
10636
|
};
|
|
10568
10637
|
export declare type JiraBulkEditFieldsConnection = HasTotal & HasPageInfo & {
|
|
@@ -10576,11 +10645,6 @@ export declare type JiraBulkEditFieldsEdge = {
|
|
|
10576
10645
|
node?: Maybe<JiraBulkEditField>;
|
|
10577
10646
|
cursor: Scalars['String'];
|
|
10578
10647
|
};
|
|
10579
|
-
export declare type JiraBulkEditInput = {
|
|
10580
|
-
selectedActions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
10581
|
-
selectedIssueIds: Array<Scalars['ID']>;
|
|
10582
|
-
editedFieldsInput: JiraIssueFieldsInput;
|
|
10583
|
-
};
|
|
10584
10648
|
export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
10585
10649
|
Add = "ADD",
|
|
10586
10650
|
Remove = "REMOVE",
|
|
@@ -10599,12 +10663,6 @@ export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
|
10599
10663
|
last?: Maybe<Scalars['Int']>;
|
|
10600
10664
|
before?: Maybe<Scalars['String']>;
|
|
10601
10665
|
};
|
|
10602
|
-
export declare type JiraBulkOperationInput = {
|
|
10603
|
-
bulkEditInput?: Maybe<JiraBulkEditInput>;
|
|
10604
|
-
};
|
|
10605
|
-
export declare enum JiraBulkOperationType {
|
|
10606
|
-
BulkEdit = "BULK_EDIT"
|
|
10607
|
-
}
|
|
10608
10666
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
10609
10667
|
__typename?: 'JiraCMDBField';
|
|
10610
10668
|
id: Scalars['ID'];
|
|
@@ -10827,6 +10885,16 @@ export declare type JiraCheckboxesFieldFieldOptionsArgs = {
|
|
|
10827
10885
|
last?: Maybe<Scalars['Int']>;
|
|
10828
10886
|
before?: Maybe<Scalars['String']>;
|
|
10829
10887
|
};
|
|
10888
|
+
export declare type JiraCheckboxesFieldOperationInput = {
|
|
10889
|
+
operation: JiraMultiValueFieldOperations;
|
|
10890
|
+
ids: Array<Scalars['ID']>;
|
|
10891
|
+
};
|
|
10892
|
+
export declare type JiraCheckboxesFieldPayload = Payload & {
|
|
10893
|
+
__typename?: 'JiraCheckboxesFieldPayload';
|
|
10894
|
+
success: Scalars['Boolean'];
|
|
10895
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10896
|
+
field?: Maybe<JiraCheckboxesField>;
|
|
10897
|
+
};
|
|
10830
10898
|
export declare type JiraChildIssues = JiraChildIssuesWithinLimit | JiraChildIssuesExceedingLimit;
|
|
10831
10899
|
export declare type JiraChildIssuesExceedingLimit = {
|
|
10832
10900
|
__typename?: 'JiraChildIssuesExceedingLimit';
|
|
@@ -12338,11 +12406,6 @@ export declare type JiraIssueFieldSetEdge = {
|
|
|
12338
12406
|
node?: Maybe<JiraIssueFieldSet>;
|
|
12339
12407
|
cursor: Scalars['String'];
|
|
12340
12408
|
};
|
|
12341
|
-
export declare type JiraIssueFieldsInput = {
|
|
12342
|
-
priority?: Maybe<JiraPriorityInput>;
|
|
12343
|
-
singleSelectUserPickerFields?: Maybe<Array<JiraSingleSelectUserPickerFieldInput>>;
|
|
12344
|
-
labelsFields?: Maybe<Array<JiraLabelsFieldInput>>;
|
|
12345
|
-
};
|
|
12346
12409
|
export declare type JiraIssueHierarchyConfigData = {
|
|
12347
12410
|
__typename?: 'JiraIssueHierarchyConfigData';
|
|
12348
12411
|
hierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
@@ -13425,11 +13488,6 @@ export declare type JiraLabelsFieldLabelsArgs = {
|
|
|
13425
13488
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
13426
13489
|
sessionId?: Maybe<Scalars['ID']>;
|
|
13427
13490
|
};
|
|
13428
|
-
export declare type JiraLabelsFieldInput = {
|
|
13429
|
-
fieldId: Scalars['ID'];
|
|
13430
|
-
labels?: Maybe<Array<JiraLabelsInput>>;
|
|
13431
|
-
bulkEditMultiSelectFieldOption?: Maybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
13432
|
-
};
|
|
13433
13491
|
export declare type JiraLabelsFieldOperationInput = {
|
|
13434
13492
|
operation: JiraMultiValueFieldOperations;
|
|
13435
13493
|
labels: Array<Scalars['String']>;
|
|
@@ -13440,9 +13498,6 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
13440
13498
|
errors?: Maybe<Array<MutationError>>;
|
|
13441
13499
|
field?: Maybe<JiraLabelsField>;
|
|
13442
13500
|
};
|
|
13443
|
-
export declare type JiraLabelsInput = {
|
|
13444
|
-
name: Scalars['String'];
|
|
13445
|
-
};
|
|
13446
13501
|
export declare type JiraLinkIssueToVersionRelatedWorkInput = {
|
|
13447
13502
|
issueId?: Maybe<Scalars['ID']>;
|
|
13448
13503
|
relatedWorkType: JiraVersionRelatedWorkType;
|
|
@@ -13687,6 +13742,7 @@ export declare type JiraMutation = {
|
|
|
13687
13742
|
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
13688
13743
|
updateTeamField?: Maybe<JiraTeamFieldPayload>;
|
|
13689
13744
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
13745
|
+
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
13690
13746
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
13691
13747
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
13692
13748
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -13695,7 +13751,6 @@ export declare type JiraMutation = {
|
|
|
13695
13751
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
13696
13752
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
13697
13753
|
updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
|
|
13698
|
-
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
13699
13754
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
13700
13755
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
13701
13756
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
@@ -13879,6 +13934,9 @@ export declare type JiraMutationUpdateTeamFieldArgs = {
|
|
|
13879
13934
|
export declare type JiraMutationUpdateResolutionFieldArgs = {
|
|
13880
13935
|
input: JiraUpdateResolutionFieldInput;
|
|
13881
13936
|
};
|
|
13937
|
+
export declare type JiraMutationUpdateCheckboxesFieldArgs = {
|
|
13938
|
+
input: JiraUpdateCheckboxesFieldInput;
|
|
13939
|
+
};
|
|
13882
13940
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
13883
13941
|
input: JiraPermissionSchemeAddGrantInput;
|
|
13884
13942
|
};
|
|
@@ -13904,10 +13962,6 @@ export declare type JiraMutationUpdateJiraVersionApproverDescriptionArgs = {
|
|
|
13904
13962
|
export declare type JiraMutationUpdateJiraVersionApproverStatusArgs = {
|
|
13905
13963
|
input: JiraVersionUpdateApproverStatusInput;
|
|
13906
13964
|
};
|
|
13907
|
-
export declare type JiraMutationSubmitBulkOperationArgs = {
|
|
13908
|
-
cloudId: Scalars['ID'];
|
|
13909
|
-
input: JiraSubmitBulkOperationInput;
|
|
13910
|
-
};
|
|
13911
13965
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
13912
13966
|
input: JiraCreateShortcutInput;
|
|
13913
13967
|
};
|
|
@@ -14469,9 +14523,6 @@ export declare type JiraPriorityFieldPayload = Payload & {
|
|
|
14469
14523
|
errors?: Maybe<Array<MutationError>>;
|
|
14470
14524
|
field?: Maybe<JiraPriorityField>;
|
|
14471
14525
|
};
|
|
14472
|
-
export declare type JiraPriorityInput = {
|
|
14473
|
-
priorityId: Scalars['ID'];
|
|
14474
|
-
};
|
|
14475
14526
|
export declare type JiraProformaForms = {
|
|
14476
14527
|
__typename?: 'JiraProformaForms';
|
|
14477
14528
|
hasProjectForms?: Maybe<Scalars['Boolean']>;
|
|
@@ -14988,11 +15039,11 @@ export declare type JiraQuery = {
|
|
|
14988
15039
|
__typename?: 'JiraQuery';
|
|
14989
15040
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
14990
15041
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
15042
|
+
jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
|
|
14991
15043
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
14992
15044
|
userSegmentation?: Maybe<JiraUserSegmentation>;
|
|
14993
15045
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
14994
15046
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
14995
|
-
jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
|
|
14996
15047
|
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
14997
15048
|
jiraProject?: Maybe<JiraProject>;
|
|
14998
15049
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
@@ -15078,6 +15129,9 @@ export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
|
15078
15129
|
cloudId: Scalars['ID'];
|
|
15079
15130
|
experimentKey?: Maybe<Scalars['String']>;
|
|
15080
15131
|
};
|
|
15132
|
+
export declare type JiraQueryJiraBulkEditFieldsArgs = {
|
|
15133
|
+
issueIds: Array<Scalars['ID']>;
|
|
15134
|
+
};
|
|
15081
15135
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
15082
15136
|
cloudId: Scalars['ID'];
|
|
15083
15137
|
keys: Array<Scalars['String']>;
|
|
@@ -15094,9 +15148,6 @@ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
|
15094
15148
|
export declare type JiraQueryBulkOperationsMetadataArgs = {
|
|
15095
15149
|
cloudId: Scalars['ID'];
|
|
15096
15150
|
};
|
|
15097
|
-
export declare type JiraQueryJiraBulkEditFieldsArgs = {
|
|
15098
|
-
issueIds: Array<Scalars['ID']>;
|
|
15099
|
-
};
|
|
15100
15151
|
export declare type JiraQueryAllJiraProjectTypesArgs = {
|
|
15101
15152
|
cloudId: Scalars['ID'];
|
|
15102
15153
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -16745,10 +16796,6 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
|
|
|
16745
16796
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
16746
16797
|
sessionId?: Maybe<Scalars['ID']>;
|
|
16747
16798
|
};
|
|
16748
|
-
export declare type JiraSingleSelectUserPickerFieldInput = {
|
|
16749
|
-
fieldId: Scalars['ID'];
|
|
16750
|
-
user: JiraUserInput;
|
|
16751
|
-
};
|
|
16752
16799
|
export declare type JiraSingleSelectUserPickerFieldOperationInput = {
|
|
16753
16800
|
operation: JiraSingleValueFieldOperations;
|
|
16754
16801
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -16935,22 +16982,6 @@ export declare type JiraStoryPointEstimateFieldPayload = Payload & {
|
|
|
16935
16982
|
errors?: Maybe<Array<MutationError>>;
|
|
16936
16983
|
field?: Maybe<JiraNumberField>;
|
|
16937
16984
|
};
|
|
16938
|
-
export declare type JiraSubmitBulkOperationInput = {
|
|
16939
|
-
bulkOperationType: JiraBulkOperationType;
|
|
16940
|
-
bulkOperationInput: JiraBulkOperationInput;
|
|
16941
|
-
};
|
|
16942
|
-
export declare type JiraSubmitBulkOperationPayload = Payload & {
|
|
16943
|
-
__typename?: 'JiraSubmitBulkOperationPayload';
|
|
16944
|
-
success: Scalars['Boolean'];
|
|
16945
|
-
errors?: Maybe<Array<MutationError>>;
|
|
16946
|
-
progress?: Maybe<JiraSubmitBulkOperationProgress>;
|
|
16947
|
-
};
|
|
16948
|
-
export declare type JiraSubmitBulkOperationProgress = Node & {
|
|
16949
|
-
__typename?: 'JiraSubmitBulkOperationProgress';
|
|
16950
|
-
id: Scalars['ID'];
|
|
16951
|
-
taskId: Scalars['String'];
|
|
16952
|
-
submittedTime: Scalars['DateTime'];
|
|
16953
|
-
};
|
|
16954
16985
|
export declare type JiraSubtasksField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
16955
16986
|
__typename?: 'JiraSubtasksField';
|
|
16956
16987
|
id: Scalars['ID'];
|
|
@@ -17177,6 +17208,10 @@ export declare type JiraUpdateCascadingSelectFieldInput = {
|
|
|
17177
17208
|
id: Scalars['ID'];
|
|
17178
17209
|
operation: JiraCascadingSelectFieldOperationInput;
|
|
17179
17210
|
};
|
|
17211
|
+
export declare type JiraUpdateCheckboxesFieldInput = {
|
|
17212
|
+
id: Scalars['ID'];
|
|
17213
|
+
operations: Array<JiraCheckboxesFieldOperationInput>;
|
|
17214
|
+
};
|
|
17180
17215
|
export declare type JiraUpdateColorFieldInput = {
|
|
17181
17216
|
id: Scalars['ID'];
|
|
17182
17217
|
operation: JiraColorFieldOperationInput;
|
|
@@ -17447,9 +17482,6 @@ export declare type JiraUserGroup = {
|
|
|
17447
17482
|
accountId?: Maybe<Scalars['String']>;
|
|
17448
17483
|
displayName?: Maybe<Scalars['String']>;
|
|
17449
17484
|
};
|
|
17450
|
-
export declare type JiraUserInput = {
|
|
17451
|
-
accountId: Scalars['ID'];
|
|
17452
|
-
};
|
|
17453
17485
|
export declare type JiraUserIssueFieldConfiguration = {
|
|
17454
17486
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
17455
17487
|
};
|
|
@@ -17699,7 +17731,8 @@ export declare enum JiraVersionDetailsCollapsedUi {
|
|
|
17699
17731
|
Description = "DESCRIPTION",
|
|
17700
17732
|
RelatedWork = "RELATED_WORK",
|
|
17701
17733
|
Issues = "ISSUES",
|
|
17702
|
-
ProgressCard = "PROGRESS_CARD"
|
|
17734
|
+
ProgressCard = "PROGRESS_CARD",
|
|
17735
|
+
RightSidebar = "RIGHT_SIDEBAR"
|
|
17703
17736
|
}
|
|
17704
17737
|
export declare type JiraVersionDetailsCollapsedUisInput = {
|
|
17705
17738
|
collapsedUis: Array<JiraVersionDetailsCollapsedUi>;
|
|
@@ -21308,6 +21341,7 @@ export declare type Query = {
|
|
|
21308
21341
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
21309
21342
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
21310
21343
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
21344
|
+
sandbox?: Maybe<Sandbox>;
|
|
21311
21345
|
xflow?: Maybe<Scalars['String']>;
|
|
21312
21346
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
21313
21347
|
jiraReleases?: Maybe<JiraReleases>;
|
|
@@ -22539,6 +22573,21 @@ export declare type RoadmapsQueryRoadmapDeriveFieldsArgs = {
|
|
|
22539
22573
|
jqlContexts?: Maybe<Array<Scalars['String']>>;
|
|
22540
22574
|
customFilterIds?: Maybe<Array<Scalars['ID']>>;
|
|
22541
22575
|
};
|
|
22576
|
+
export declare type Sandbox = {
|
|
22577
|
+
__typename?: 'Sandbox';
|
|
22578
|
+
events?: Maybe<Array<Maybe<SandboxEvent>>>;
|
|
22579
|
+
};
|
|
22580
|
+
export declare type SandboxEvent = {
|
|
22581
|
+
__typename?: 'SandboxEvent';
|
|
22582
|
+
orgId?: Maybe<Scalars['ID']>;
|
|
22583
|
+
};
|
|
22584
|
+
export declare type SandboxSubscription = {
|
|
22585
|
+
__typename?: 'SandboxSubscription';
|
|
22586
|
+
onSandboxUpdated?: Maybe<SandboxEvent>;
|
|
22587
|
+
};
|
|
22588
|
+
export declare type SandboxSubscriptionOnSandboxUpdatedArgs = {
|
|
22589
|
+
orgId: Scalars['ID'];
|
|
22590
|
+
};
|
|
22542
22591
|
export declare type ScanPolarisProjectInput = {
|
|
22543
22592
|
project: Scalars['ID'];
|
|
22544
22593
|
refresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -23150,6 +23199,7 @@ export declare type SecurityContainer = {
|
|
|
23150
23199
|
url?: Maybe<Scalars['URL']>;
|
|
23151
23200
|
icon?: Maybe<Scalars['URL']>;
|
|
23152
23201
|
providerName?: Maybe<Scalars['String']>;
|
|
23202
|
+
providerId?: Maybe<Scalars['String']>;
|
|
23153
23203
|
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
23154
23204
|
};
|
|
23155
23205
|
export declare type SecurityWorkspace = {
|
|
@@ -23157,6 +23207,7 @@ export declare type SecurityWorkspace = {
|
|
|
23157
23207
|
url?: Maybe<Scalars['URL']>;
|
|
23158
23208
|
icon?: Maybe<Scalars['URL']>;
|
|
23159
23209
|
providerName?: Maybe<Scalars['String']>;
|
|
23210
|
+
providerId?: Maybe<Scalars['String']>;
|
|
23160
23211
|
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
23161
23212
|
};
|
|
23162
23213
|
export declare type ServiceProvider = {
|
|
@@ -24128,6 +24179,8 @@ export declare type SoftwareSprintMetadata = {
|
|
|
24128
24179
|
numCompletedIssues?: Maybe<Scalars['Int']>;
|
|
24129
24180
|
numOpenIssues?: Maybe<Scalars['Int']>;
|
|
24130
24181
|
top100CompletedCardKeysWithIncompleteChildren?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
24182
|
+
unestimatedIssueKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
24183
|
+
unestimatedIssueCount?: Maybe<Scalars['Int']>;
|
|
24131
24184
|
};
|
|
24132
24185
|
export declare enum SortDirection {
|
|
24133
24186
|
Asc = "ASC",
|
|
@@ -24246,6 +24299,7 @@ export declare type Subscription = {
|
|
|
24246
24299
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
24247
24300
|
onJiraIssueCreatedForUser?: Maybe<JiraOnIssueCreatedForUserResponseType>;
|
|
24248
24301
|
testing?: Maybe<TestingSubscription>;
|
|
24302
|
+
sandbox?: Maybe<SandboxSubscription>;
|
|
24249
24303
|
};
|
|
24250
24304
|
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
24251
24305
|
cloudId: Scalars['ID'];
|
|
@@ -24941,6 +24995,7 @@ export declare type ThirdPartySecurityContainer = SecurityContainer & Node & {
|
|
|
24941
24995
|
url?: Maybe<Scalars['URL']>;
|
|
24942
24996
|
icon?: Maybe<Scalars['URL']>;
|
|
24943
24997
|
providerName?: Maybe<Scalars['String']>;
|
|
24998
|
+
providerId?: Maybe<Scalars['String']>;
|
|
24944
24999
|
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
24945
25000
|
};
|
|
24946
25001
|
export declare type ThirdPartySecurityWorkspace = SecurityWorkspace & Node & {
|
|
@@ -24950,6 +25005,7 @@ export declare type ThirdPartySecurityWorkspace = SecurityWorkspace & Node & {
|
|
|
24950
25005
|
url?: Maybe<Scalars['URL']>;
|
|
24951
25006
|
icon?: Maybe<Scalars['URL']>;
|
|
24952
25007
|
providerName?: Maybe<Scalars['String']>;
|
|
25008
|
+
providerId?: Maybe<Scalars['String']>;
|
|
24953
25009
|
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
24954
25010
|
};
|
|
24955
25011
|
export declare type TimeSeriesPoint = {
|