@forge/cli-shared 3.8.0-next.2 → 3.8.0-next.3-experimental-3fb944e
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 +25 -0
- package/out/graphql/app-oauth-client-id-graphql-client.d.ts +18 -0
- package/out/graphql/app-oauth-client-id-graphql-client.d.ts.map +1 -0
- package/out/graphql/app-oauth-client-id-graphql-client.js +44 -0
- package/out/graphql/graphql-types.d.ts +153 -13
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +12 -4
- package/out/graphql/index.d.ts +1 -0
- package/out/graphql/index.d.ts.map +1 -1
- package/out/graphql/index.js +1 -0
- package/out/ui/text.d.ts +16 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +19 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.8.0-next.3-experimental-3fb944e
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- db2615bd: Allow custom environment names
|
|
8
|
+
- acc35d7: Introduced command to list custom entities indexes
|
|
9
|
+
- dc0e198: Added 'forge environment list' command
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 081aaa9: Bumping dependencies via Renovate:
|
|
14
|
+
|
|
15
|
+
- cli-table3
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [32ca02f]
|
|
18
|
+
- Updated dependencies [4d594e7]
|
|
19
|
+
- @forge/manifest@4.8.0-next.1-experimental-3fb944e
|
|
20
|
+
|
|
21
|
+
## 3.8.0-next.3
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [4d594e7e]
|
|
26
|
+
- @forge/manifest@4.8.0-next.1
|
|
27
|
+
|
|
3
28
|
## 3.8.0-next.2
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AppEnvironmentType, GraphQLClient } from './index';
|
|
2
|
+
export interface AppOauthClientDetails {
|
|
3
|
+
appAri: string;
|
|
4
|
+
name: string;
|
|
5
|
+
environmentType: AppEnvironmentType;
|
|
6
|
+
environmentKey: string;
|
|
7
|
+
oauthClientId: string;
|
|
8
|
+
environmentId: string;
|
|
9
|
+
}
|
|
10
|
+
export interface AppOauthClientIdClient {
|
|
11
|
+
getAppOauthClientIdDetails: (appId: string, environmentKey: string) => Promise<AppOauthClientDetails>;
|
|
12
|
+
}
|
|
13
|
+
export declare class AppOauthClientGraphqlClient implements AppOauthClientIdClient {
|
|
14
|
+
private readonly graphqlClient;
|
|
15
|
+
constructor(graphqlClient: GraphQLClient);
|
|
16
|
+
getAppOauthClientIdDetails(appAri: string, environmentKey: string): Promise<AppOauthClientDetails>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=app-oauth-client-id-graphql-client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-oauth-client-id-graphql-client.d.ts","sourceRoot":"","sources":["../../src/graphql/app-oauth-client-id-graphql-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,aAAa,EAA+C,MAAM,SAAS,CAAC;AAEzG,MAAM,WAAW,qBAAqB;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,eAAe,EAAE,kBAAkB,CAAC;IACpC,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,sBAAsB;IACrC,0BAA0B,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,KAAK,OAAO,CAAC,qBAAqB,CAAC,CAAC;CACvG;AAED,qBAAa,2BAA4B,YAAW,sBAAsB;IAC5D,OAAO,CAAC,QAAQ,CAAC,aAAa;gBAAb,aAAa,EAAE,aAAa;IAE5C,0BAA0B,CAAC,MAAM,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,qBAAqB,CAAC;CAsChH"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppOauthClientGraphqlClient = void 0;
|
|
4
|
+
const index_1 = require("./index");
|
|
5
|
+
class AppOauthClientGraphqlClient {
|
|
6
|
+
constructor(graphqlClient) {
|
|
7
|
+
this.graphqlClient = graphqlClient;
|
|
8
|
+
}
|
|
9
|
+
async getAppOauthClientIdDetails(appAri, environmentKey) {
|
|
10
|
+
const query = `
|
|
11
|
+
query forge_cli_getAppOauthClientIdDetails($id: ID!, $key: String!) {
|
|
12
|
+
app(id: $id) {
|
|
13
|
+
name
|
|
14
|
+
environmentByKey(key: $key) {
|
|
15
|
+
id
|
|
16
|
+
type
|
|
17
|
+
oauthClient {
|
|
18
|
+
clientID
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
`;
|
|
24
|
+
const result = await this.graphqlClient.query(query, {
|
|
25
|
+
id: appAri,
|
|
26
|
+
key: environmentKey
|
|
27
|
+
});
|
|
28
|
+
if (!result.app) {
|
|
29
|
+
throw new index_1.MissingAppError();
|
|
30
|
+
}
|
|
31
|
+
if (!result.app.environmentByKey) {
|
|
32
|
+
throw new index_1.MissingAppEnvironmentError(environmentKey);
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
name: result.app.name,
|
|
36
|
+
appAri,
|
|
37
|
+
environmentKey,
|
|
38
|
+
environmentType: result.app.environmentByKey.type,
|
|
39
|
+
environmentId: result.app.environmentByKey.id,
|
|
40
|
+
oauthClientId: result.app.environmentByKey.oauthClient.clientID
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.AppOauthClientGraphqlClient = AppOauthClientGraphqlClient;
|
|
@@ -159,6 +159,7 @@ export declare enum ActivitiesObjectType {
|
|
|
159
159
|
Issue = "ISSUE",
|
|
160
160
|
Page = "PAGE",
|
|
161
161
|
Blogpost = "BLOGPOST",
|
|
162
|
+
Whiteboard = "WHITEBOARD",
|
|
162
163
|
Project = "PROJECT",
|
|
163
164
|
Goal = "GOAL"
|
|
164
165
|
}
|
|
@@ -265,6 +266,7 @@ export declare enum ActivityObjectType {
|
|
|
265
266
|
Space = "SPACE",
|
|
266
267
|
Page = "PAGE",
|
|
267
268
|
Blogpost = "BLOGPOST",
|
|
269
|
+
Whiteboard = "WHITEBOARD",
|
|
268
270
|
Task = "TASK",
|
|
269
271
|
Goal = "GOAL"
|
|
270
272
|
}
|
|
@@ -2742,6 +2744,7 @@ export declare type CompassCustomTextFieldInput = {
|
|
|
2742
2744
|
export declare type CompassCustomUserField = CompassCustomField & {
|
|
2743
2745
|
__typename?: 'CompassCustomUserField';
|
|
2744
2746
|
definition?: Maybe<CompassCustomUserFieldDefinition>;
|
|
2747
|
+
userIdValue?: Maybe<Scalars['ID']>;
|
|
2745
2748
|
userValue?: Maybe<User>;
|
|
2746
2749
|
};
|
|
2747
2750
|
export declare type CompassCustomUserFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
@@ -2783,6 +2786,10 @@ export declare type CompassDeleteCustomFieldDefinitionPayload = Payload & {
|
|
|
2783
2786
|
errors?: Maybe<Array<MutationError>>;
|
|
2784
2787
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
2785
2788
|
};
|
|
2789
|
+
export declare type CompassDeleteExternalAliasInput = {
|
|
2790
|
+
externalId: Scalars['ID'];
|
|
2791
|
+
externalSource: Scalars['ID'];
|
|
2792
|
+
};
|
|
2786
2793
|
export declare type CompassDeleteMetricDefinitionInput = {
|
|
2787
2794
|
id: Scalars['ID'];
|
|
2788
2795
|
};
|
|
@@ -2956,10 +2963,12 @@ export declare type CompassExternalAlias = {
|
|
|
2956
2963
|
__typename?: 'CompassExternalAlias';
|
|
2957
2964
|
externalSource: Scalars['ID'];
|
|
2958
2965
|
externalAliasId: Scalars['ID'];
|
|
2966
|
+
url?: Maybe<Scalars['String']>;
|
|
2959
2967
|
};
|
|
2960
2968
|
export declare type CompassExternalAliasInput = {
|
|
2961
2969
|
externalId: Scalars['ID'];
|
|
2962
2970
|
externalSource: Scalars['ID'];
|
|
2971
|
+
url?: Maybe<Scalars['String']>;
|
|
2963
2972
|
};
|
|
2964
2973
|
export declare type CompassExternalMetricSourceConfigurationInput = {
|
|
2965
2974
|
slo?: Maybe<CompassSloMetricSourceConfigurationInput>;
|
|
@@ -5123,6 +5132,8 @@ export declare type CreateCompassComponentInput = {
|
|
|
5123
5132
|
typeId?: Maybe<Scalars['ID']>;
|
|
5124
5133
|
ownerId?: Maybe<Scalars['ID']>;
|
|
5125
5134
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
5135
|
+
links?: Maybe<Array<CreateCompassLinkInput>>;
|
|
5136
|
+
labels?: Maybe<Array<Scalars['String']>>;
|
|
5126
5137
|
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
5127
5138
|
};
|
|
5128
5139
|
export declare type CreateCompassComponentLinkInput = {
|
|
@@ -5825,7 +5836,7 @@ export declare type DeleteColumnOutput = MutationResponse & {
|
|
|
5825
5836
|
};
|
|
5826
5837
|
export declare type DeleteCompassComponentExternalAliasInput = {
|
|
5827
5838
|
componentId: Scalars['ID'];
|
|
5828
|
-
externalAlias:
|
|
5839
|
+
externalAlias: CompassDeleteExternalAliasInput;
|
|
5829
5840
|
};
|
|
5830
5841
|
export declare type DeleteCompassComponentExternalAliasPayload = Payload & {
|
|
5831
5842
|
__typename?: 'DeleteCompassComponentExternalAliasPayload';
|
|
@@ -7314,6 +7325,7 @@ export declare type EcosystemQuery = {
|
|
|
7314
7325
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
7315
7326
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
7316
7327
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
7328
|
+
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
7317
7329
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
7318
7330
|
};
|
|
7319
7331
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -7351,6 +7363,9 @@ export declare type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
|
|
|
7351
7363
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
7352
7364
|
appId: Scalars['ID'];
|
|
7353
7365
|
};
|
|
7366
|
+
export declare type EcosystemQueryForgeAuditLogsArgs = {
|
|
7367
|
+
appId: Scalars['ID'];
|
|
7368
|
+
};
|
|
7354
7369
|
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
7355
7370
|
appId: Scalars['ID'];
|
|
7356
7371
|
};
|
|
@@ -7645,6 +7660,46 @@ export declare type ForgeAlertsUpdateConfigInput = {
|
|
|
7645
7660
|
alertName?: Maybe<Scalars['String']>;
|
|
7646
7661
|
triggerValue?: Maybe<Scalars['Float']>;
|
|
7647
7662
|
};
|
|
7663
|
+
export declare type ForgeAuditLog = {
|
|
7664
|
+
__typename?: 'ForgeAuditLog';
|
|
7665
|
+
action: ForgeAuditLogsActionType;
|
|
7666
|
+
actorId: Scalars['ID'];
|
|
7667
|
+
actorName: Scalars['String'];
|
|
7668
|
+
contributor?: Maybe<User>;
|
|
7669
|
+
timestamp: Scalars['String'];
|
|
7670
|
+
};
|
|
7671
|
+
export declare type ForgeAuditLogEdge = {
|
|
7672
|
+
__typename?: 'ForgeAuditLogEdge';
|
|
7673
|
+
cursor: Scalars['String'];
|
|
7674
|
+
node?: Maybe<ForgeAuditLog>;
|
|
7675
|
+
};
|
|
7676
|
+
export declare enum ForgeAuditLogsActionType {
|
|
7677
|
+
ContributorAdded = "CONTRIBUTOR_ADDED",
|
|
7678
|
+
ContributorRemoved = "CONTRIBUTOR_REMOVED"
|
|
7679
|
+
}
|
|
7680
|
+
export declare type ForgeAuditLogsConnection = {
|
|
7681
|
+
__typename?: 'ForgeAuditLogsConnection';
|
|
7682
|
+
edges: Array<ForgeAuditLogEdge>;
|
|
7683
|
+
nodes: Array<ForgeAuditLog>;
|
|
7684
|
+
pageInfo: PageInfo;
|
|
7685
|
+
};
|
|
7686
|
+
export declare type ForgeAuditLogsQuery = {
|
|
7687
|
+
__typename?: 'ForgeAuditLogsQuery';
|
|
7688
|
+
appId: Scalars['ID'];
|
|
7689
|
+
auditLogs?: Maybe<ForgeAuditLogsResult>;
|
|
7690
|
+
};
|
|
7691
|
+
export declare type ForgeAuditLogsQueryAuditLogsArgs = {
|
|
7692
|
+
input: ForgeAuditLogsQueryInput;
|
|
7693
|
+
};
|
|
7694
|
+
export declare type ForgeAuditLogsQueryInput = {
|
|
7695
|
+
startTime?: Maybe<Scalars['String']>;
|
|
7696
|
+
endTime?: Maybe<Scalars['String']>;
|
|
7697
|
+
contributorIds?: Maybe<Array<Scalars['ID']>>;
|
|
7698
|
+
actions?: Maybe<Array<ForgeAuditLogsActionType>>;
|
|
7699
|
+
after?: Maybe<Scalars['String']>;
|
|
7700
|
+
first?: Maybe<Scalars['Int']>;
|
|
7701
|
+
};
|
|
7702
|
+
export declare type ForgeAuditLogsResult = ForgeAuditLogsConnection | QueryError;
|
|
7648
7703
|
export declare type ForgeContextToken = {
|
|
7649
7704
|
__typename?: 'ForgeContextToken';
|
|
7650
7705
|
jwt: Scalars['String'];
|
|
@@ -7763,6 +7818,16 @@ export declare type ForgeMetricsLatenciesSeries = ForgeMetricsSeries & {
|
|
|
7763
7818
|
data: Array<ForgeMetricsLatenciesDataPoint>;
|
|
7764
7819
|
percentiles?: Maybe<Array<ForgeMetricsLatenciesPercentile>>;
|
|
7765
7820
|
};
|
|
7821
|
+
export declare type ForgeMetricsLatencyBucketsQueryFilters = {
|
|
7822
|
+
environment?: Maybe<Scalars['ID']>;
|
|
7823
|
+
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
7824
|
+
interval: ForgeMetricsIntervalInput;
|
|
7825
|
+
functionNames?: Maybe<Array<Scalars['String']>>;
|
|
7826
|
+
};
|
|
7827
|
+
export declare type ForgeMetricsLatencyBucketsQueryInput = {
|
|
7828
|
+
filters: ForgeMetricsLatencyBucketsQueryFilters;
|
|
7829
|
+
groupBy?: Maybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
7830
|
+
};
|
|
7766
7831
|
export declare type ForgeMetricsQuery = {
|
|
7767
7832
|
__typename?: 'ForgeMetricsQuery';
|
|
7768
7833
|
appId: Scalars['ID'];
|
|
@@ -7774,6 +7839,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
7774
7839
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
7775
7840
|
sites: ForgeMetricsSitesResult;
|
|
7776
7841
|
latencies: ForgeMetricsLatenciesResult;
|
|
7842
|
+
latencyBuckets: ForgeMetricsLatenciesResult;
|
|
7777
7843
|
};
|
|
7778
7844
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
7779
7845
|
query: ForgeMetricsQueryInput;
|
|
@@ -7800,6 +7866,10 @@ export declare type ForgeMetricsQueryLatenciesArgs = {
|
|
|
7800
7866
|
query: ForgeMetricsQueryInput;
|
|
7801
7867
|
percentiles?: Maybe<Array<Scalars['Float']>>;
|
|
7802
7868
|
};
|
|
7869
|
+
export declare type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
7870
|
+
query: ForgeMetricsLatencyBucketsQueryInput;
|
|
7871
|
+
percentiles?: Maybe<Array<Scalars['Float']>>;
|
|
7872
|
+
};
|
|
7803
7873
|
export declare type ForgeMetricsQueryFilters = {
|
|
7804
7874
|
environment?: Maybe<Scalars['ID']>;
|
|
7805
7875
|
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
@@ -11267,6 +11337,7 @@ export declare type JiraJqlField = {
|
|
|
11267
11337
|
__typename?: 'JiraJqlField';
|
|
11268
11338
|
jqlTerm: Scalars['ID'];
|
|
11269
11339
|
displayName?: Maybe<Scalars['String']>;
|
|
11340
|
+
type?: Maybe<Scalars['String']>;
|
|
11270
11341
|
dataTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
11271
11342
|
allowedClauseTypes: Array<JiraJqlClauseType>;
|
|
11272
11343
|
operators: Array<JiraJqlOperator>;
|
|
@@ -11835,6 +11906,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
11835
11906
|
export declare type JiraMutation = {
|
|
11836
11907
|
__typename?: 'JiraMutation';
|
|
11837
11908
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11909
|
+
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
11838
11910
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
11839
11911
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
11840
11912
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
@@ -11843,6 +11915,8 @@ export declare type JiraMutation = {
|
|
|
11843
11915
|
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
11844
11916
|
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11845
11917
|
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11918
|
+
updateVersionReleasedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
11919
|
+
updateVersionArchivedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
11846
11920
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
11847
11921
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
11848
11922
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
@@ -11888,6 +11962,9 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
|
11888
11962
|
cloudId: Scalars['ID'];
|
|
11889
11963
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
11890
11964
|
};
|
|
11965
|
+
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
11966
|
+
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
11967
|
+
};
|
|
11891
11968
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
11892
11969
|
input: JiraAddIssuesToFixVersionInput;
|
|
11893
11970
|
};
|
|
@@ -11912,6 +11989,12 @@ export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
|
11912
11989
|
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
11913
11990
|
input: JiraUpdateVersionReleaseDateInput;
|
|
11914
11991
|
};
|
|
11992
|
+
export declare type JiraMutationUpdateVersionReleasedStatusArgs = {
|
|
11993
|
+
input: JiraUpdateVersionReleasedStatusInput;
|
|
11994
|
+
};
|
|
11995
|
+
export declare type JiraMutationUpdateVersionArchivedStatusArgs = {
|
|
11996
|
+
input: JiraUpdateVersionArchivedStatusInput;
|
|
11997
|
+
};
|
|
11915
11998
|
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
11916
11999
|
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
11917
12000
|
};
|
|
@@ -12584,6 +12667,7 @@ export declare type JiraProject = Node & {
|
|
|
12584
12667
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
12585
12668
|
action?: Maybe<JiraProjectAction>;
|
|
12586
12669
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
12670
|
+
virtualAgentProjectSettings?: Maybe<VirtualAgentProjectSettingsResult>;
|
|
12587
12671
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
12588
12672
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
12589
12673
|
lead?: Maybe<User>;
|
|
@@ -13055,6 +13139,7 @@ export declare type JiraQuery = {
|
|
|
13055
13139
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
13056
13140
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
13057
13141
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
13142
|
+
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
13058
13143
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
13059
13144
|
filter?: Maybe<JiraFilter>;
|
|
13060
13145
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -13237,6 +13322,9 @@ export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
|
13237
13322
|
export declare type JiraQueryUserPreferencesArgs = {
|
|
13238
13323
|
cloudId: Scalars['ID'];
|
|
13239
13324
|
};
|
|
13325
|
+
export declare type JiraQueryJsmProjectTeamTypeArgs = {
|
|
13326
|
+
projectId: Scalars['ID'];
|
|
13327
|
+
};
|
|
13240
13328
|
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
13241
13329
|
cloudId: Scalars['ID'];
|
|
13242
13330
|
};
|
|
@@ -13978,6 +14066,19 @@ export declare type JiraServiceManagementCompletedApprovalEdge = {
|
|
|
13978
14066
|
node?: Maybe<JiraServiceManagementCompletedApproval>;
|
|
13979
14067
|
cursor: Scalars['String'];
|
|
13980
14068
|
};
|
|
14069
|
+
export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput = {
|
|
14070
|
+
templateId: Scalars['String'];
|
|
14071
|
+
projectId: Scalars['ID'];
|
|
14072
|
+
workflowName?: Maybe<Scalars['String']>;
|
|
14073
|
+
issueTypeName?: Maybe<Scalars['String']>;
|
|
14074
|
+
issueTypeIcon?: Maybe<Scalars['String']>;
|
|
14075
|
+
};
|
|
14076
|
+
export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload = Payload & {
|
|
14077
|
+
__typename?: 'JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload';
|
|
14078
|
+
success: Scalars['Boolean'];
|
|
14079
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14080
|
+
workflowAndIssueSummary?: Maybe<JiraServiceManagementWorkflowAndIssueSummary>;
|
|
14081
|
+
};
|
|
13981
14082
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateInput = {
|
|
13982
14083
|
name: Scalars['String'];
|
|
13983
14084
|
description?: Maybe<Scalars['String']>;
|
|
@@ -14218,6 +14319,10 @@ export declare type JiraServiceManagementProjectNavigationMetadata = {
|
|
|
14218
14319
|
queueId: Scalars['ID'];
|
|
14219
14320
|
queueName: Scalars['String'];
|
|
14220
14321
|
};
|
|
14322
|
+
export declare type JiraServiceManagementProjectTeamType = {
|
|
14323
|
+
__typename?: 'JiraServiceManagementProjectTeamType';
|
|
14324
|
+
teamType?: Maybe<Scalars['String']>;
|
|
14325
|
+
};
|
|
14221
14326
|
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
14222
14327
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
14223
14328
|
id: Scalars['ID'];
|
|
@@ -14367,6 +14472,11 @@ export declare type JiraServiceManagementUserResponder = {
|
|
|
14367
14472
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
14368
14473
|
user?: Maybe<User>;
|
|
14369
14474
|
};
|
|
14475
|
+
export declare type JiraServiceManagementWorkflowAndIssueSummary = {
|
|
14476
|
+
__typename?: 'JiraServiceManagementWorkflowAndIssueSummary';
|
|
14477
|
+
workflowId?: Maybe<Scalars['String']>;
|
|
14478
|
+
issueTypeId?: Maybe<Scalars['String']>;
|
|
14479
|
+
};
|
|
14370
14480
|
export declare type JiraServiceManagementWorkflowTemplateMetadata = {
|
|
14371
14481
|
__typename?: 'JiraServiceManagementWorkflowTemplateMetadata';
|
|
14372
14482
|
templateId?: Maybe<Scalars['String']>;
|
|
@@ -14465,7 +14575,7 @@ export declare type JiraShareableEntityProjectRoleGrantInput = {
|
|
|
14465
14575
|
projectId: Scalars['ID'];
|
|
14466
14576
|
projectRoleId: Scalars['Int'];
|
|
14467
14577
|
};
|
|
14468
|
-
export declare type JiraShareableEntityShareGrant = JiraShareableEntityGroupGrant | JiraShareableEntityProjectRoleGrant | JiraShareableEntityProjectGrant | JiraShareableEntityAnonymousAccessGrant | JiraShareableEntityAnyLoggedInUserGrant | JiraShareableEntityUnknownProjectGrant;
|
|
14578
|
+
export declare type JiraShareableEntityShareGrant = JiraShareableEntityGroupGrant | JiraShareableEntityProjectRoleGrant | JiraShareableEntityProjectGrant | JiraShareableEntityAnonymousAccessGrant | JiraShareableEntityAnyLoggedInUserGrant | JiraShareableEntityUnknownProjectGrant | JiraShareableEntityUserGrant;
|
|
14469
14579
|
export declare type JiraShareableEntityShareGrantConnection = {
|
|
14470
14580
|
__typename?: 'JiraShareableEntityShareGrantConnection';
|
|
14471
14581
|
pageInfo: PageInfo;
|
|
@@ -14482,6 +14592,7 @@ export declare type JiraShareableEntityShareGrantInput = {
|
|
|
14482
14592
|
projectRole?: Maybe<JiraShareableEntityProjectRoleGrantInput>;
|
|
14483
14593
|
anonymousAccess?: Maybe<JiraShareableEntityAnonymousAccessGrantInput>;
|
|
14484
14594
|
anyLoggedInUser?: Maybe<JiraShareableEntityAnyLoggedInUserGrantInput>;
|
|
14595
|
+
user?: Maybe<JiraShareableEntityUserGrantInput>;
|
|
14485
14596
|
};
|
|
14486
14597
|
export declare type JiraShareableEntityUnknownProjectGrant = {
|
|
14487
14598
|
__typename?: 'JiraShareableEntityUnknownProjectGrant';
|
|
@@ -15015,6 +15126,10 @@ export declare type JiraUpdateUrlFieldInput = {
|
|
|
15015
15126
|
id: Scalars['ID'];
|
|
15016
15127
|
operation: JiraUrlFieldOperationInput;
|
|
15017
15128
|
};
|
|
15129
|
+
export declare type JiraUpdateVersionArchivedStatusInput = {
|
|
15130
|
+
id: Scalars['ID'];
|
|
15131
|
+
isArchived: Scalars['Boolean'];
|
|
15132
|
+
};
|
|
15018
15133
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
15019
15134
|
id: Scalars['ID'];
|
|
15020
15135
|
description?: Maybe<Scalars['String']>;
|
|
@@ -15046,6 +15161,10 @@ export declare type JiraUpdateVersionReleaseDateInput = {
|
|
|
15046
15161
|
id: Scalars['ID'];
|
|
15047
15162
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
15048
15163
|
};
|
|
15164
|
+
export declare type JiraUpdateVersionReleasedStatusInput = {
|
|
15165
|
+
id: Scalars['ID'];
|
|
15166
|
+
isReleased: Scalars['Boolean'];
|
|
15167
|
+
};
|
|
15049
15168
|
export declare type JiraUpdateVersionStartDateInput = {
|
|
15050
15169
|
id: Scalars['ID'];
|
|
15051
15170
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -15187,6 +15306,7 @@ export declare type JiraVersion = Node & {
|
|
|
15187
15306
|
versionIssueTableHiddenColumns?: Maybe<Array<Maybe<JiraVersionIssueTableColumn>>>;
|
|
15188
15307
|
epicsForFilter?: Maybe<JiraIssueConnection>;
|
|
15189
15308
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
15309
|
+
warningsCount?: Maybe<Scalars['Long']>;
|
|
15190
15310
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
15191
15311
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
15192
15312
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
@@ -19165,6 +19285,7 @@ export declare enum RateLimitingCurrency {
|
|
|
19165
19285
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
19166
19286
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
19167
19287
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
19288
|
+
ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
|
|
19168
19289
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
19169
19290
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY"
|
|
19170
19291
|
}
|
|
@@ -22490,9 +22611,7 @@ export declare type TownsquareQueryApi = {
|
|
|
22490
22611
|
project?: Maybe<TownsquareProject>;
|
|
22491
22612
|
goal?: Maybe<TownsquareGoal>;
|
|
22492
22613
|
projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
22493
|
-
projectByKey?: Maybe<TownsquareProject>;
|
|
22494
22614
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
22495
|
-
goalByKey?: Maybe<TownsquareGoal>;
|
|
22496
22615
|
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
22497
22616
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
22498
22617
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
@@ -22508,15 +22627,9 @@ export declare type TownsquareQueryApiGoalArgs = {
|
|
|
22508
22627
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
22509
22628
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
22510
22629
|
};
|
|
22511
|
-
export declare type TownsquareQueryApiProjectByKeyArgs = {
|
|
22512
|
-
key: Scalars['String'];
|
|
22513
|
-
};
|
|
22514
22630
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
22515
22631
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
22516
22632
|
};
|
|
22517
|
-
export declare type TownsquareQueryApiGoalByKeyArgs = {
|
|
22518
|
-
key: Scalars['String'];
|
|
22519
|
-
};
|
|
22520
22633
|
export declare type TownsquareQueryApiCommentsByAriArgs = {
|
|
22521
22634
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
22522
22635
|
};
|
|
@@ -22599,7 +22712,7 @@ export declare type TrelloBoard = {
|
|
|
22599
22712
|
id: Scalars['ID'];
|
|
22600
22713
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
22601
22714
|
name: Scalars['String'];
|
|
22602
|
-
objectId: Scalars['
|
|
22715
|
+
objectId: Scalars['ID'];
|
|
22603
22716
|
prefs: TrelloBoardPrefs;
|
|
22604
22717
|
shortLink: Scalars['TrelloShortLink'];
|
|
22605
22718
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
@@ -22691,8 +22804,8 @@ export declare type TrelloTemplateGalleryCategory = {
|
|
|
22691
22804
|
};
|
|
22692
22805
|
export declare type TrelloTemplateGalleryConnection = {
|
|
22693
22806
|
__typename?: 'TrelloTemplateGalleryConnection';
|
|
22694
|
-
edges: Array<
|
|
22695
|
-
nodes: Array<
|
|
22807
|
+
edges: Array<TrelloBoardEdge>;
|
|
22808
|
+
nodes: Array<TrelloBoard>;
|
|
22696
22809
|
pageInfo: PageInfo;
|
|
22697
22810
|
};
|
|
22698
22811
|
export declare type TrelloTemplateGalleryFilterInput = {
|
|
@@ -23563,14 +23676,32 @@ export declare type VirtualAgentMutationApiHandleFlowEditorActionsArgs = {
|
|
|
23563
23676
|
virtualAgentFlowEditorId: Scalars['ID'];
|
|
23564
23677
|
input: VirtualAgentFlowEditorActionInput;
|
|
23565
23678
|
};
|
|
23679
|
+
export declare type VirtualAgentProjectSettings = {
|
|
23680
|
+
__typename?: 'VirtualAgentProjectSettings';
|
|
23681
|
+
halpConnectivityState?: Maybe<Scalars['String']>;
|
|
23682
|
+
setupLink?: Maybe<Scalars['String']>;
|
|
23683
|
+
triageChannel?: Maybe<VirtualAgentSlackChannel>;
|
|
23684
|
+
testChannel?: Maybe<VirtualAgentSlackChannel>;
|
|
23685
|
+
errorMessage?: Maybe<Scalars['String']>;
|
|
23686
|
+
};
|
|
23687
|
+
export declare type VirtualAgentProjectSettingsQueryError = {
|
|
23688
|
+
__typename?: 'VirtualAgentProjectSettingsQueryError';
|
|
23689
|
+
message?: Maybe<Scalars['String']>;
|
|
23690
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
23691
|
+
};
|
|
23692
|
+
export declare type VirtualAgentProjectSettingsResult = VirtualAgentProjectSettings | VirtualAgentProjectSettingsQueryError;
|
|
23566
23693
|
export declare type VirtualAgentQueryApi = {
|
|
23567
23694
|
__typename?: 'VirtualAgentQueryApi';
|
|
23568
23695
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
23696
|
+
virtualAgentProjectSettingsByProjectId?: Maybe<VirtualAgentProjectSettingsResult>;
|
|
23569
23697
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
23570
23698
|
};
|
|
23571
23699
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
23572
23700
|
jiraProjectId: Scalars['ID'];
|
|
23573
23701
|
};
|
|
23702
|
+
export declare type VirtualAgentQueryApiVirtualAgentProjectSettingsByProjectIdArgs = {
|
|
23703
|
+
jiraProjectId: Scalars['ID'];
|
|
23704
|
+
};
|
|
23574
23705
|
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
23575
23706
|
first?: Maybe<Scalars['Int']>;
|
|
23576
23707
|
after?: Maybe<Scalars['String']>;
|
|
@@ -23582,6 +23713,15 @@ export declare type VirtualAgentQueryError = {
|
|
|
23582
23713
|
message?: Maybe<Scalars['String']>;
|
|
23583
23714
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
23584
23715
|
};
|
|
23716
|
+
export declare type VirtualAgentSlackChannel = {
|
|
23717
|
+
__typename?: 'VirtualAgentSlackChannel';
|
|
23718
|
+
id?: Maybe<Scalars['ID']>;
|
|
23719
|
+
slackChannelId?: Maybe<Scalars['String']>;
|
|
23720
|
+
channelName?: Maybe<Scalars['String']>;
|
|
23721
|
+
isVirtualAgentChannel?: Maybe<Scalars['Boolean']>;
|
|
23722
|
+
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']>;
|
|
23723
|
+
channelLink?: Maybe<Scalars['String']>;
|
|
23724
|
+
};
|
|
23585
23725
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
23586
23726
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
23587
23727
|
traffic?: Maybe<Scalars['Float']>;
|