@forge/manifest 4.11.0 → 4.12.0-next.1
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/mapping/product-event-to-scope-mapping.json +64 -0
- package/out/schema/manifest-schema.json +273 -0
- package/out/schema/manifest.d.ts +126 -0
- package/out/types/module-types.d.ts +3 -0
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 4.12.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 88e09e3: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 4.12.0-next.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- e513723: Add Bitbucket modules and events for initial release
|
|
14
|
+
|
|
3
15
|
## 4.11.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -838,6 +838,70 @@
|
|
|
838
838
|
"read:component:compass"
|
|
839
839
|
]
|
|
840
840
|
}
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"productEvent": "avi:bitbucket:created:repository",
|
|
844
|
+
"oAuthScopes": {
|
|
845
|
+
"current": [
|
|
846
|
+
"read:repository:bitbucket"
|
|
847
|
+
]
|
|
848
|
+
}
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"productEvent": "avi:bitbucket:updated:repository",
|
|
852
|
+
"oAuthScopes": {
|
|
853
|
+
"current": [
|
|
854
|
+
"read:repository:bitbucket"
|
|
855
|
+
]
|
|
856
|
+
}
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"productEvent": "avi:bitbucket:push:repository",
|
|
860
|
+
"oAuthScopes": {
|
|
861
|
+
"current": [
|
|
862
|
+
"read:repository:bitbucket"
|
|
863
|
+
]
|
|
864
|
+
}
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"productEvent": "avi:bitbucket:deleted:repository",
|
|
868
|
+
"oAuthScopes": {
|
|
869
|
+
"current": [
|
|
870
|
+
"read:repository:bitbucket"
|
|
871
|
+
]
|
|
872
|
+
}
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"productEvent": "avi:bitbucket:created:pullrequest",
|
|
876
|
+
"oAuthScopes": {
|
|
877
|
+
"current": [
|
|
878
|
+
"read:pullrequest:bitbucket"
|
|
879
|
+
]
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"productEvent": "avi:bitbucket:updated:pullrequest",
|
|
884
|
+
"oAuthScopes": {
|
|
885
|
+
"current": [
|
|
886
|
+
"read:pullrequest:bitbucket"
|
|
887
|
+
]
|
|
888
|
+
}
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"productEvent": "avi:bitbucket:fulfilled:pullrequest",
|
|
892
|
+
"oAuthScopes": {
|
|
893
|
+
"current": [
|
|
894
|
+
"read:pullrequest:bitbucket"
|
|
895
|
+
]
|
|
896
|
+
}
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"productEvent": "avi:bitbucket:rejected:pullrequest",
|
|
900
|
+
"oAuthScopes": {
|
|
901
|
+
"current": [
|
|
902
|
+
"read:pullrequest:bitbucket"
|
|
903
|
+
]
|
|
904
|
+
}
|
|
841
905
|
}
|
|
842
906
|
]
|
|
843
907
|
}
|
|
@@ -7866,6 +7866,279 @@
|
|
|
7866
7866
|
},
|
|
7867
7867
|
"minItems": 1
|
|
7868
7868
|
},
|
|
7869
|
+
"bitbucket:repoPullRequestCard": {
|
|
7870
|
+
"type": "array",
|
|
7871
|
+
"items": {
|
|
7872
|
+
"oneOf": [
|
|
7873
|
+
{
|
|
7874
|
+
"type": "object",
|
|
7875
|
+
"properties": {
|
|
7876
|
+
"title": {
|
|
7877
|
+
"type": "string"
|
|
7878
|
+
},
|
|
7879
|
+
"iconUrl": {
|
|
7880
|
+
"type": "string"
|
|
7881
|
+
},
|
|
7882
|
+
"resource": {
|
|
7883
|
+
"type": "string",
|
|
7884
|
+
"minLength": 1,
|
|
7885
|
+
"maxLength": 23,
|
|
7886
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
7887
|
+
},
|
|
7888
|
+
"height": {
|
|
7889
|
+
"type": "integer"
|
|
7890
|
+
},
|
|
7891
|
+
"function": {
|
|
7892
|
+
"type": "string",
|
|
7893
|
+
"minLength": 1,
|
|
7894
|
+
"maxLength": 255,
|
|
7895
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
7896
|
+
},
|
|
7897
|
+
"key": {
|
|
7898
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
7899
|
+
}
|
|
7900
|
+
},
|
|
7901
|
+
"required": [
|
|
7902
|
+
"title",
|
|
7903
|
+
"function",
|
|
7904
|
+
"key"
|
|
7905
|
+
],
|
|
7906
|
+
"not": {
|
|
7907
|
+
"required": [
|
|
7908
|
+
"unlicensedAccess"
|
|
7909
|
+
]
|
|
7910
|
+
}
|
|
7911
|
+
},
|
|
7912
|
+
{
|
|
7913
|
+
"type": "object",
|
|
7914
|
+
"properties": {
|
|
7915
|
+
"title": {
|
|
7916
|
+
"type": "string",
|
|
7917
|
+
"minLength": 1,
|
|
7918
|
+
"maxLength": 255
|
|
7919
|
+
},
|
|
7920
|
+
"resolver": {
|
|
7921
|
+
"additionalProperties": false,
|
|
7922
|
+
"type": "object",
|
|
7923
|
+
"properties": {
|
|
7924
|
+
"function": {
|
|
7925
|
+
"type": "string",
|
|
7926
|
+
"minLength": 1,
|
|
7927
|
+
"maxLength": 255,
|
|
7928
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
7929
|
+
}
|
|
7930
|
+
},
|
|
7931
|
+
"required": [
|
|
7932
|
+
"function"
|
|
7933
|
+
]
|
|
7934
|
+
},
|
|
7935
|
+
"resource": {
|
|
7936
|
+
"type": "string",
|
|
7937
|
+
"minLength": 1,
|
|
7938
|
+
"maxLength": 23,
|
|
7939
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
7940
|
+
},
|
|
7941
|
+
"key": {
|
|
7942
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
7943
|
+
}
|
|
7944
|
+
},
|
|
7945
|
+
"required": [
|
|
7946
|
+
"title",
|
|
7947
|
+
"resource",
|
|
7948
|
+
"key"
|
|
7949
|
+
],
|
|
7950
|
+
"not": {
|
|
7951
|
+
"required": [
|
|
7952
|
+
"unlicensedAccess"
|
|
7953
|
+
]
|
|
7954
|
+
}
|
|
7955
|
+
}
|
|
7956
|
+
]
|
|
7957
|
+
},
|
|
7958
|
+
"minItems": 1
|
|
7959
|
+
},
|
|
7960
|
+
"bitbucket:repoCodeOverviewCard": {
|
|
7961
|
+
"type": "array",
|
|
7962
|
+
"items": {
|
|
7963
|
+
"oneOf": [
|
|
7964
|
+
{
|
|
7965
|
+
"type": "object",
|
|
7966
|
+
"properties": {
|
|
7967
|
+
"title": {
|
|
7968
|
+
"type": "string"
|
|
7969
|
+
},
|
|
7970
|
+
"iconUrl": {
|
|
7971
|
+
"type": "string"
|
|
7972
|
+
},
|
|
7973
|
+
"resource": {
|
|
7974
|
+
"type": "string",
|
|
7975
|
+
"minLength": 1,
|
|
7976
|
+
"maxLength": 23,
|
|
7977
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
7978
|
+
},
|
|
7979
|
+
"height": {
|
|
7980
|
+
"type": "integer"
|
|
7981
|
+
},
|
|
7982
|
+
"function": {
|
|
7983
|
+
"type": "string",
|
|
7984
|
+
"minLength": 1,
|
|
7985
|
+
"maxLength": 255,
|
|
7986
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
7987
|
+
},
|
|
7988
|
+
"key": {
|
|
7989
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
7990
|
+
}
|
|
7991
|
+
},
|
|
7992
|
+
"required": [
|
|
7993
|
+
"title",
|
|
7994
|
+
"function",
|
|
7995
|
+
"key"
|
|
7996
|
+
],
|
|
7997
|
+
"not": {
|
|
7998
|
+
"required": [
|
|
7999
|
+
"unlicensedAccess"
|
|
8000
|
+
]
|
|
8001
|
+
}
|
|
8002
|
+
},
|
|
8003
|
+
{
|
|
8004
|
+
"type": "object",
|
|
8005
|
+
"properties": {
|
|
8006
|
+
"title": {
|
|
8007
|
+
"type": "string",
|
|
8008
|
+
"minLength": 1,
|
|
8009
|
+
"maxLength": 255
|
|
8010
|
+
},
|
|
8011
|
+
"resolver": {
|
|
8012
|
+
"additionalProperties": false,
|
|
8013
|
+
"type": "object",
|
|
8014
|
+
"properties": {
|
|
8015
|
+
"function": {
|
|
8016
|
+
"type": "string",
|
|
8017
|
+
"minLength": 1,
|
|
8018
|
+
"maxLength": 255,
|
|
8019
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8020
|
+
}
|
|
8021
|
+
},
|
|
8022
|
+
"required": [
|
|
8023
|
+
"function"
|
|
8024
|
+
]
|
|
8025
|
+
},
|
|
8026
|
+
"resource": {
|
|
8027
|
+
"type": "string",
|
|
8028
|
+
"minLength": 1,
|
|
8029
|
+
"maxLength": 23,
|
|
8030
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8031
|
+
},
|
|
8032
|
+
"key": {
|
|
8033
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
8034
|
+
}
|
|
8035
|
+
},
|
|
8036
|
+
"required": [
|
|
8037
|
+
"title",
|
|
8038
|
+
"resource",
|
|
8039
|
+
"key"
|
|
8040
|
+
],
|
|
8041
|
+
"not": {
|
|
8042
|
+
"required": [
|
|
8043
|
+
"unlicensedAccess"
|
|
8044
|
+
]
|
|
8045
|
+
}
|
|
8046
|
+
}
|
|
8047
|
+
]
|
|
8048
|
+
},
|
|
8049
|
+
"minItems": 1
|
|
8050
|
+
},
|
|
8051
|
+
"bitbucket:repoCodeOverviewAction": {
|
|
8052
|
+
"type": "array",
|
|
8053
|
+
"items": {
|
|
8054
|
+
"oneOf": [
|
|
8055
|
+
{
|
|
8056
|
+
"type": "object",
|
|
8057
|
+
"properties": {
|
|
8058
|
+
"title": {
|
|
8059
|
+
"type": "string"
|
|
8060
|
+
},
|
|
8061
|
+
"iconUrl": {
|
|
8062
|
+
"type": "string"
|
|
8063
|
+
},
|
|
8064
|
+
"resource": {
|
|
8065
|
+
"type": "string",
|
|
8066
|
+
"minLength": 1,
|
|
8067
|
+
"maxLength": 23,
|
|
8068
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8069
|
+
},
|
|
8070
|
+
"height": {
|
|
8071
|
+
"type": "integer"
|
|
8072
|
+
},
|
|
8073
|
+
"function": {
|
|
8074
|
+
"type": "string",
|
|
8075
|
+
"minLength": 1,
|
|
8076
|
+
"maxLength": 255,
|
|
8077
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8078
|
+
},
|
|
8079
|
+
"key": {
|
|
8080
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
8081
|
+
}
|
|
8082
|
+
},
|
|
8083
|
+
"required": [
|
|
8084
|
+
"title",
|
|
8085
|
+
"function",
|
|
8086
|
+
"key"
|
|
8087
|
+
],
|
|
8088
|
+
"not": {
|
|
8089
|
+
"required": [
|
|
8090
|
+
"unlicensedAccess"
|
|
8091
|
+
]
|
|
8092
|
+
}
|
|
8093
|
+
},
|
|
8094
|
+
{
|
|
8095
|
+
"type": "object",
|
|
8096
|
+
"properties": {
|
|
8097
|
+
"title": {
|
|
8098
|
+
"type": "string",
|
|
8099
|
+
"minLength": 1,
|
|
8100
|
+
"maxLength": 255
|
|
8101
|
+
},
|
|
8102
|
+
"resolver": {
|
|
8103
|
+
"additionalProperties": false,
|
|
8104
|
+
"type": "object",
|
|
8105
|
+
"properties": {
|
|
8106
|
+
"function": {
|
|
8107
|
+
"type": "string",
|
|
8108
|
+
"minLength": 1,
|
|
8109
|
+
"maxLength": 255,
|
|
8110
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8111
|
+
}
|
|
8112
|
+
},
|
|
8113
|
+
"required": [
|
|
8114
|
+
"function"
|
|
8115
|
+
]
|
|
8116
|
+
},
|
|
8117
|
+
"resource": {
|
|
8118
|
+
"type": "string",
|
|
8119
|
+
"minLength": 1,
|
|
8120
|
+
"maxLength": 23,
|
|
8121
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8122
|
+
},
|
|
8123
|
+
"key": {
|
|
8124
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
8125
|
+
}
|
|
8126
|
+
},
|
|
8127
|
+
"required": [
|
|
8128
|
+
"title",
|
|
8129
|
+
"resource",
|
|
8130
|
+
"key"
|
|
8131
|
+
],
|
|
8132
|
+
"not": {
|
|
8133
|
+
"required": [
|
|
8134
|
+
"unlicensedAccess"
|
|
8135
|
+
]
|
|
8136
|
+
}
|
|
8137
|
+
}
|
|
8138
|
+
]
|
|
8139
|
+
},
|
|
8140
|
+
"minItems": 1
|
|
8141
|
+
},
|
|
7869
8142
|
"connect-jira:keyboardShortcuts": {
|
|
7870
8143
|
"type": "array",
|
|
7871
8144
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -4059,6 +4059,132 @@ export interface Modules {
|
|
|
4059
4059
|
}
|
|
4060
4060
|
)[]
|
|
4061
4061
|
];
|
|
4062
|
+
'bitbucket:repoPullRequestCard'?: [
|
|
4063
|
+
(
|
|
4064
|
+
| {
|
|
4065
|
+
title: string;
|
|
4066
|
+
iconUrl?: string;
|
|
4067
|
+
resource?: string;
|
|
4068
|
+
height?: number;
|
|
4069
|
+
function: string;
|
|
4070
|
+
key: ModuleKeySchema;
|
|
4071
|
+
[k: string]: unknown;
|
|
4072
|
+
}
|
|
4073
|
+
| {
|
|
4074
|
+
title: string;
|
|
4075
|
+
resolver?: {
|
|
4076
|
+
function: string;
|
|
4077
|
+
};
|
|
4078
|
+
resource: string;
|
|
4079
|
+
key: ModuleKeySchema;
|
|
4080
|
+
[k: string]: unknown;
|
|
4081
|
+
}
|
|
4082
|
+
),
|
|
4083
|
+
...(
|
|
4084
|
+
| {
|
|
4085
|
+
title: string;
|
|
4086
|
+
iconUrl?: string;
|
|
4087
|
+
resource?: string;
|
|
4088
|
+
height?: number;
|
|
4089
|
+
function: string;
|
|
4090
|
+
key: ModuleKeySchema;
|
|
4091
|
+
[k: string]: unknown;
|
|
4092
|
+
}
|
|
4093
|
+
| {
|
|
4094
|
+
title: string;
|
|
4095
|
+
resolver?: {
|
|
4096
|
+
function: string;
|
|
4097
|
+
};
|
|
4098
|
+
resource: string;
|
|
4099
|
+
key: ModuleKeySchema;
|
|
4100
|
+
[k: string]: unknown;
|
|
4101
|
+
}
|
|
4102
|
+
)[]
|
|
4103
|
+
];
|
|
4104
|
+
'bitbucket:repoCodeOverviewCard'?: [
|
|
4105
|
+
(
|
|
4106
|
+
| {
|
|
4107
|
+
title: string;
|
|
4108
|
+
iconUrl?: string;
|
|
4109
|
+
resource?: string;
|
|
4110
|
+
height?: number;
|
|
4111
|
+
function: string;
|
|
4112
|
+
key: ModuleKeySchema;
|
|
4113
|
+
[k: string]: unknown;
|
|
4114
|
+
}
|
|
4115
|
+
| {
|
|
4116
|
+
title: string;
|
|
4117
|
+
resolver?: {
|
|
4118
|
+
function: string;
|
|
4119
|
+
};
|
|
4120
|
+
resource: string;
|
|
4121
|
+
key: ModuleKeySchema;
|
|
4122
|
+
[k: string]: unknown;
|
|
4123
|
+
}
|
|
4124
|
+
),
|
|
4125
|
+
...(
|
|
4126
|
+
| {
|
|
4127
|
+
title: string;
|
|
4128
|
+
iconUrl?: string;
|
|
4129
|
+
resource?: string;
|
|
4130
|
+
height?: number;
|
|
4131
|
+
function: string;
|
|
4132
|
+
key: ModuleKeySchema;
|
|
4133
|
+
[k: string]: unknown;
|
|
4134
|
+
}
|
|
4135
|
+
| {
|
|
4136
|
+
title: string;
|
|
4137
|
+
resolver?: {
|
|
4138
|
+
function: string;
|
|
4139
|
+
};
|
|
4140
|
+
resource: string;
|
|
4141
|
+
key: ModuleKeySchema;
|
|
4142
|
+
[k: string]: unknown;
|
|
4143
|
+
}
|
|
4144
|
+
)[]
|
|
4145
|
+
];
|
|
4146
|
+
'bitbucket:repoCodeOverviewAction'?: [
|
|
4147
|
+
(
|
|
4148
|
+
| {
|
|
4149
|
+
title: string;
|
|
4150
|
+
iconUrl?: string;
|
|
4151
|
+
resource?: string;
|
|
4152
|
+
height?: number;
|
|
4153
|
+
function: string;
|
|
4154
|
+
key: ModuleKeySchema;
|
|
4155
|
+
[k: string]: unknown;
|
|
4156
|
+
}
|
|
4157
|
+
| {
|
|
4158
|
+
title: string;
|
|
4159
|
+
resolver?: {
|
|
4160
|
+
function: string;
|
|
4161
|
+
};
|
|
4162
|
+
resource: string;
|
|
4163
|
+
key: ModuleKeySchema;
|
|
4164
|
+
[k: string]: unknown;
|
|
4165
|
+
}
|
|
4166
|
+
),
|
|
4167
|
+
...(
|
|
4168
|
+
| {
|
|
4169
|
+
title: string;
|
|
4170
|
+
iconUrl?: string;
|
|
4171
|
+
resource?: string;
|
|
4172
|
+
height?: number;
|
|
4173
|
+
function: string;
|
|
4174
|
+
key: ModuleKeySchema;
|
|
4175
|
+
[k: string]: unknown;
|
|
4176
|
+
}
|
|
4177
|
+
| {
|
|
4178
|
+
title: string;
|
|
4179
|
+
resolver?: {
|
|
4180
|
+
function: string;
|
|
4181
|
+
};
|
|
4182
|
+
resource: string;
|
|
4183
|
+
key: ModuleKeySchema;
|
|
4184
|
+
[k: string]: unknown;
|
|
4185
|
+
}
|
|
4186
|
+
)[]
|
|
4187
|
+
];
|
|
4062
4188
|
'connect-jira:keyboardShortcuts'?: [
|
|
4063
4189
|
{
|
|
4064
4190
|
shortcut?: string;
|
|
@@ -53,6 +53,9 @@ export declare enum AllModuleTypes {
|
|
|
53
53
|
JiraServiceManagementPortalRequestViewAction = "jiraServiceManagement:portalRequestViewAction",
|
|
54
54
|
JiraServiceManagementPortalUserMenuAction = "jiraServiceManagement:portalUserMenuAction",
|
|
55
55
|
JiraServiceManagementPortalRequestCreatePropertyPanel = "jiraServiceManagement:portalRequestCreatePropertyPanel",
|
|
56
|
+
BitbucketRepoCodeOverviewCard = "bitbucket:repoCodeOverviewCard",
|
|
57
|
+
BitbucketRepoCodeOverviewAction = "bitbucket:repoCodeOverviewAction",
|
|
58
|
+
BitbucketRepoPullRequestCard = "bitbucket:repoPullRequestCard",
|
|
56
59
|
ConnectJiraAdminPages = "connect-jira:adminPages",
|
|
57
60
|
ConnectJiraJiraBackgroundScripts = "connect-jira:jiraBackgroundScripts",
|
|
58
61
|
ConnectJiraGeneralPages = "connect-jira:generalPages",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -57,6 +57,9 @@ var AllModuleTypes;
|
|
|
57
57
|
AllModuleTypes["JiraServiceManagementPortalRequestViewAction"] = "jiraServiceManagement:portalRequestViewAction";
|
|
58
58
|
AllModuleTypes["JiraServiceManagementPortalUserMenuAction"] = "jiraServiceManagement:portalUserMenuAction";
|
|
59
59
|
AllModuleTypes["JiraServiceManagementPortalRequestCreatePropertyPanel"] = "jiraServiceManagement:portalRequestCreatePropertyPanel";
|
|
60
|
+
AllModuleTypes["BitbucketRepoCodeOverviewCard"] = "bitbucket:repoCodeOverviewCard";
|
|
61
|
+
AllModuleTypes["BitbucketRepoCodeOverviewAction"] = "bitbucket:repoCodeOverviewAction";
|
|
62
|
+
AllModuleTypes["BitbucketRepoPullRequestCard"] = "bitbucket:repoPullRequestCard";
|
|
60
63
|
AllModuleTypes["ConnectJiraAdminPages"] = "connect-jira:adminPages";
|
|
61
64
|
AllModuleTypes["ConnectJiraJiraBackgroundScripts"] = "connect-jira:jiraBackgroundScripts";
|
|
62
65
|
AllModuleTypes["ConnectJiraGeneralPages"] = "connect-jira:generalPages";
|