@forge/cli-shared 3.8.0-next.3 → 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 +18 -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 +148 -11
- 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,23 @@
|
|
|
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
|
+
|
|
3
21
|
## 3.8.0-next.3
|
|
4
22
|
|
|
5
23
|
### 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>;
|
|
@@ -5827,7 +5836,7 @@ export declare type DeleteColumnOutput = MutationResponse & {
|
|
|
5827
5836
|
};
|
|
5828
5837
|
export declare type DeleteCompassComponentExternalAliasInput = {
|
|
5829
5838
|
componentId: Scalars['ID'];
|
|
5830
|
-
externalAlias:
|
|
5839
|
+
externalAlias: CompassDeleteExternalAliasInput;
|
|
5831
5840
|
};
|
|
5832
5841
|
export declare type DeleteCompassComponentExternalAliasPayload = Payload & {
|
|
5833
5842
|
__typename?: 'DeleteCompassComponentExternalAliasPayload';
|
|
@@ -7316,6 +7325,7 @@ export declare type EcosystemQuery = {
|
|
|
7316
7325
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
7317
7326
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
7318
7327
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
7328
|
+
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
7319
7329
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
7320
7330
|
};
|
|
7321
7331
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -7353,6 +7363,9 @@ export declare type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
|
|
|
7353
7363
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
7354
7364
|
appId: Scalars['ID'];
|
|
7355
7365
|
};
|
|
7366
|
+
export declare type EcosystemQueryForgeAuditLogsArgs = {
|
|
7367
|
+
appId: Scalars['ID'];
|
|
7368
|
+
};
|
|
7356
7369
|
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
7357
7370
|
appId: Scalars['ID'];
|
|
7358
7371
|
};
|
|
@@ -7647,6 +7660,46 @@ export declare type ForgeAlertsUpdateConfigInput = {
|
|
|
7647
7660
|
alertName?: Maybe<Scalars['String']>;
|
|
7648
7661
|
triggerValue?: Maybe<Scalars['Float']>;
|
|
7649
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;
|
|
7650
7703
|
export declare type ForgeContextToken = {
|
|
7651
7704
|
__typename?: 'ForgeContextToken';
|
|
7652
7705
|
jwt: Scalars['String'];
|
|
@@ -7765,6 +7818,16 @@ export declare type ForgeMetricsLatenciesSeries = ForgeMetricsSeries & {
|
|
|
7765
7818
|
data: Array<ForgeMetricsLatenciesDataPoint>;
|
|
7766
7819
|
percentiles?: Maybe<Array<ForgeMetricsLatenciesPercentile>>;
|
|
7767
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
|
+
};
|
|
7768
7831
|
export declare type ForgeMetricsQuery = {
|
|
7769
7832
|
__typename?: 'ForgeMetricsQuery';
|
|
7770
7833
|
appId: Scalars['ID'];
|
|
@@ -7776,6 +7839,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
7776
7839
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
7777
7840
|
sites: ForgeMetricsSitesResult;
|
|
7778
7841
|
latencies: ForgeMetricsLatenciesResult;
|
|
7842
|
+
latencyBuckets: ForgeMetricsLatenciesResult;
|
|
7779
7843
|
};
|
|
7780
7844
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
7781
7845
|
query: ForgeMetricsQueryInput;
|
|
@@ -7802,6 +7866,10 @@ export declare type ForgeMetricsQueryLatenciesArgs = {
|
|
|
7802
7866
|
query: ForgeMetricsQueryInput;
|
|
7803
7867
|
percentiles?: Maybe<Array<Scalars['Float']>>;
|
|
7804
7868
|
};
|
|
7869
|
+
export declare type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
7870
|
+
query: ForgeMetricsLatencyBucketsQueryInput;
|
|
7871
|
+
percentiles?: Maybe<Array<Scalars['Float']>>;
|
|
7872
|
+
};
|
|
7805
7873
|
export declare type ForgeMetricsQueryFilters = {
|
|
7806
7874
|
environment?: Maybe<Scalars['ID']>;
|
|
7807
7875
|
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
@@ -11269,6 +11337,7 @@ export declare type JiraJqlField = {
|
|
|
11269
11337
|
__typename?: 'JiraJqlField';
|
|
11270
11338
|
jqlTerm: Scalars['ID'];
|
|
11271
11339
|
displayName?: Maybe<Scalars['String']>;
|
|
11340
|
+
type?: Maybe<Scalars['String']>;
|
|
11272
11341
|
dataTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
11273
11342
|
allowedClauseTypes: Array<JiraJqlClauseType>;
|
|
11274
11343
|
operators: Array<JiraJqlOperator>;
|
|
@@ -11837,6 +11906,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
11837
11906
|
export declare type JiraMutation = {
|
|
11838
11907
|
__typename?: 'JiraMutation';
|
|
11839
11908
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11909
|
+
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
11840
11910
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
11841
11911
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
11842
11912
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
@@ -11845,6 +11915,8 @@ export declare type JiraMutation = {
|
|
|
11845
11915
|
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
11846
11916
|
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11847
11917
|
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11918
|
+
updateVersionReleasedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
11919
|
+
updateVersionArchivedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
11848
11920
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
11849
11921
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
11850
11922
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
@@ -11890,6 +11962,9 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
|
11890
11962
|
cloudId: Scalars['ID'];
|
|
11891
11963
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
11892
11964
|
};
|
|
11965
|
+
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
11966
|
+
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
11967
|
+
};
|
|
11893
11968
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
11894
11969
|
input: JiraAddIssuesToFixVersionInput;
|
|
11895
11970
|
};
|
|
@@ -11914,6 +11989,12 @@ export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
|
11914
11989
|
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
11915
11990
|
input: JiraUpdateVersionReleaseDateInput;
|
|
11916
11991
|
};
|
|
11992
|
+
export declare type JiraMutationUpdateVersionReleasedStatusArgs = {
|
|
11993
|
+
input: JiraUpdateVersionReleasedStatusInput;
|
|
11994
|
+
};
|
|
11995
|
+
export declare type JiraMutationUpdateVersionArchivedStatusArgs = {
|
|
11996
|
+
input: JiraUpdateVersionArchivedStatusInput;
|
|
11997
|
+
};
|
|
11917
11998
|
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
11918
11999
|
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
11919
12000
|
};
|
|
@@ -12586,6 +12667,7 @@ export declare type JiraProject = Node & {
|
|
|
12586
12667
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
12587
12668
|
action?: Maybe<JiraProjectAction>;
|
|
12588
12669
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
12670
|
+
virtualAgentProjectSettings?: Maybe<VirtualAgentProjectSettingsResult>;
|
|
12589
12671
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
12590
12672
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
12591
12673
|
lead?: Maybe<User>;
|
|
@@ -13057,6 +13139,7 @@ export declare type JiraQuery = {
|
|
|
13057
13139
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
13058
13140
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
13059
13141
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
13142
|
+
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
13060
13143
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
13061
13144
|
filter?: Maybe<JiraFilter>;
|
|
13062
13145
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -13239,6 +13322,9 @@ export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
|
13239
13322
|
export declare type JiraQueryUserPreferencesArgs = {
|
|
13240
13323
|
cloudId: Scalars['ID'];
|
|
13241
13324
|
};
|
|
13325
|
+
export declare type JiraQueryJsmProjectTeamTypeArgs = {
|
|
13326
|
+
projectId: Scalars['ID'];
|
|
13327
|
+
};
|
|
13242
13328
|
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
13243
13329
|
cloudId: Scalars['ID'];
|
|
13244
13330
|
};
|
|
@@ -13980,6 +14066,19 @@ export declare type JiraServiceManagementCompletedApprovalEdge = {
|
|
|
13980
14066
|
node?: Maybe<JiraServiceManagementCompletedApproval>;
|
|
13981
14067
|
cursor: Scalars['String'];
|
|
13982
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
|
+
};
|
|
13983
14082
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateInput = {
|
|
13984
14083
|
name: Scalars['String'];
|
|
13985
14084
|
description?: Maybe<Scalars['String']>;
|
|
@@ -14220,6 +14319,10 @@ export declare type JiraServiceManagementProjectNavigationMetadata = {
|
|
|
14220
14319
|
queueId: Scalars['ID'];
|
|
14221
14320
|
queueName: Scalars['String'];
|
|
14222
14321
|
};
|
|
14322
|
+
export declare type JiraServiceManagementProjectTeamType = {
|
|
14323
|
+
__typename?: 'JiraServiceManagementProjectTeamType';
|
|
14324
|
+
teamType?: Maybe<Scalars['String']>;
|
|
14325
|
+
};
|
|
14223
14326
|
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
14224
14327
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
14225
14328
|
id: Scalars['ID'];
|
|
@@ -14369,6 +14472,11 @@ export declare type JiraServiceManagementUserResponder = {
|
|
|
14369
14472
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
14370
14473
|
user?: Maybe<User>;
|
|
14371
14474
|
};
|
|
14475
|
+
export declare type JiraServiceManagementWorkflowAndIssueSummary = {
|
|
14476
|
+
__typename?: 'JiraServiceManagementWorkflowAndIssueSummary';
|
|
14477
|
+
workflowId?: Maybe<Scalars['String']>;
|
|
14478
|
+
issueTypeId?: Maybe<Scalars['String']>;
|
|
14479
|
+
};
|
|
14372
14480
|
export declare type JiraServiceManagementWorkflowTemplateMetadata = {
|
|
14373
14481
|
__typename?: 'JiraServiceManagementWorkflowTemplateMetadata';
|
|
14374
14482
|
templateId?: Maybe<Scalars['String']>;
|
|
@@ -14467,7 +14575,7 @@ export declare type JiraShareableEntityProjectRoleGrantInput = {
|
|
|
14467
14575
|
projectId: Scalars['ID'];
|
|
14468
14576
|
projectRoleId: Scalars['Int'];
|
|
14469
14577
|
};
|
|
14470
|
-
export declare type JiraShareableEntityShareGrant = JiraShareableEntityGroupGrant | JiraShareableEntityProjectRoleGrant | JiraShareableEntityProjectGrant | JiraShareableEntityAnonymousAccessGrant | JiraShareableEntityAnyLoggedInUserGrant | JiraShareableEntityUnknownProjectGrant;
|
|
14578
|
+
export declare type JiraShareableEntityShareGrant = JiraShareableEntityGroupGrant | JiraShareableEntityProjectRoleGrant | JiraShareableEntityProjectGrant | JiraShareableEntityAnonymousAccessGrant | JiraShareableEntityAnyLoggedInUserGrant | JiraShareableEntityUnknownProjectGrant | JiraShareableEntityUserGrant;
|
|
14471
14579
|
export declare type JiraShareableEntityShareGrantConnection = {
|
|
14472
14580
|
__typename?: 'JiraShareableEntityShareGrantConnection';
|
|
14473
14581
|
pageInfo: PageInfo;
|
|
@@ -14484,6 +14592,7 @@ export declare type JiraShareableEntityShareGrantInput = {
|
|
|
14484
14592
|
projectRole?: Maybe<JiraShareableEntityProjectRoleGrantInput>;
|
|
14485
14593
|
anonymousAccess?: Maybe<JiraShareableEntityAnonymousAccessGrantInput>;
|
|
14486
14594
|
anyLoggedInUser?: Maybe<JiraShareableEntityAnyLoggedInUserGrantInput>;
|
|
14595
|
+
user?: Maybe<JiraShareableEntityUserGrantInput>;
|
|
14487
14596
|
};
|
|
14488
14597
|
export declare type JiraShareableEntityUnknownProjectGrant = {
|
|
14489
14598
|
__typename?: 'JiraShareableEntityUnknownProjectGrant';
|
|
@@ -15017,6 +15126,10 @@ export declare type JiraUpdateUrlFieldInput = {
|
|
|
15017
15126
|
id: Scalars['ID'];
|
|
15018
15127
|
operation: JiraUrlFieldOperationInput;
|
|
15019
15128
|
};
|
|
15129
|
+
export declare type JiraUpdateVersionArchivedStatusInput = {
|
|
15130
|
+
id: Scalars['ID'];
|
|
15131
|
+
isArchived: Scalars['Boolean'];
|
|
15132
|
+
};
|
|
15020
15133
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
15021
15134
|
id: Scalars['ID'];
|
|
15022
15135
|
description?: Maybe<Scalars['String']>;
|
|
@@ -15048,6 +15161,10 @@ export declare type JiraUpdateVersionReleaseDateInput = {
|
|
|
15048
15161
|
id: Scalars['ID'];
|
|
15049
15162
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
15050
15163
|
};
|
|
15164
|
+
export declare type JiraUpdateVersionReleasedStatusInput = {
|
|
15165
|
+
id: Scalars['ID'];
|
|
15166
|
+
isReleased: Scalars['Boolean'];
|
|
15167
|
+
};
|
|
15051
15168
|
export declare type JiraUpdateVersionStartDateInput = {
|
|
15052
15169
|
id: Scalars['ID'];
|
|
15053
15170
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -19168,6 +19285,7 @@ export declare enum RateLimitingCurrency {
|
|
|
19168
19285
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
19169
19286
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
19170
19287
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
19288
|
+
ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
|
|
19171
19289
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
19172
19290
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY"
|
|
19173
19291
|
}
|
|
@@ -22493,9 +22611,7 @@ export declare type TownsquareQueryApi = {
|
|
|
22493
22611
|
project?: Maybe<TownsquareProject>;
|
|
22494
22612
|
goal?: Maybe<TownsquareGoal>;
|
|
22495
22613
|
projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
22496
|
-
projectByKey?: Maybe<TownsquareProject>;
|
|
22497
22614
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
22498
|
-
goalByKey?: Maybe<TownsquareGoal>;
|
|
22499
22615
|
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
22500
22616
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
22501
22617
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
@@ -22511,15 +22627,9 @@ export declare type TownsquareQueryApiGoalArgs = {
|
|
|
22511
22627
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
22512
22628
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
22513
22629
|
};
|
|
22514
|
-
export declare type TownsquareQueryApiProjectByKeyArgs = {
|
|
22515
|
-
key: Scalars['String'];
|
|
22516
|
-
};
|
|
22517
22630
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
22518
22631
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
22519
22632
|
};
|
|
22520
|
-
export declare type TownsquareQueryApiGoalByKeyArgs = {
|
|
22521
|
-
key: Scalars['String'];
|
|
22522
|
-
};
|
|
22523
22633
|
export declare type TownsquareQueryApiCommentsByAriArgs = {
|
|
22524
22634
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
22525
22635
|
};
|
|
@@ -22602,7 +22712,7 @@ export declare type TrelloBoard = {
|
|
|
22602
22712
|
id: Scalars['ID'];
|
|
22603
22713
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
22604
22714
|
name: Scalars['String'];
|
|
22605
|
-
objectId: Scalars['
|
|
22715
|
+
objectId: Scalars['ID'];
|
|
22606
22716
|
prefs: TrelloBoardPrefs;
|
|
22607
22717
|
shortLink: Scalars['TrelloShortLink'];
|
|
22608
22718
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
@@ -23566,14 +23676,32 @@ export declare type VirtualAgentMutationApiHandleFlowEditorActionsArgs = {
|
|
|
23566
23676
|
virtualAgentFlowEditorId: Scalars['ID'];
|
|
23567
23677
|
input: VirtualAgentFlowEditorActionInput;
|
|
23568
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;
|
|
23569
23693
|
export declare type VirtualAgentQueryApi = {
|
|
23570
23694
|
__typename?: 'VirtualAgentQueryApi';
|
|
23571
23695
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
23696
|
+
virtualAgentProjectSettingsByProjectId?: Maybe<VirtualAgentProjectSettingsResult>;
|
|
23572
23697
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
23573
23698
|
};
|
|
23574
23699
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
23575
23700
|
jiraProjectId: Scalars['ID'];
|
|
23576
23701
|
};
|
|
23702
|
+
export declare type VirtualAgentQueryApiVirtualAgentProjectSettingsByProjectIdArgs = {
|
|
23703
|
+
jiraProjectId: Scalars['ID'];
|
|
23704
|
+
};
|
|
23577
23705
|
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
23578
23706
|
first?: Maybe<Scalars['Int']>;
|
|
23579
23707
|
after?: Maybe<Scalars['String']>;
|
|
@@ -23585,6 +23713,15 @@ export declare type VirtualAgentQueryError = {
|
|
|
23585
23713
|
message?: Maybe<Scalars['String']>;
|
|
23586
23714
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
23587
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
|
+
};
|
|
23588
23725
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
23589
23726
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
23590
23727
|
traffic?: Maybe<Scalars['Float']>;
|