@venturialstd/jira 0.1.22 → 0.1.24

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.
@@ -0,0 +1,22 @@
1
+ export interface JiraComments {
2
+ id: string;
3
+ author: JiraUsers;
4
+ body: any;
5
+ created: string;
6
+ updated: string;
7
+ visibility?: {
8
+ type: string;
9
+ value: string;
10
+ };
11
+ }
12
+ export interface JiraUsers {
13
+ accountId: string;
14
+ displayName: string;
15
+ emailAddress?: string;
16
+ avatarUrls?: {
17
+ '48x48': string;
18
+ '24x24': string;
19
+ '16x16': string;
20
+ '32x32': string;
21
+ };
22
+ }
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=slack.event.type.js.map
3
+ //# sourceMappingURL=jira.event.type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"jira.event.type.js","sourceRoot":"","sources":["../../../types/jira.event.type.ts"],"names":[],"mappings":"","sourcesContent":["export interface JiraComments {\r\n id: string;\r\n author: JiraUsers;\r\n body: any;\r\n created: string;\r\n updated: string;\r\n visibility?: {\r\n type: string;\r\n value: string;\r\n };\r\n}\r\n\r\nexport interface JiraUsers {\r\n accountId: string;\r\n displayName: string;\r\n emailAddress?: string;\r\n avatarUrls?: {\r\n '48x48': string;\r\n '24x24': string;\r\n '16x16': string;\r\n '32x32': string;\r\n };\r\n}\r\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@venturialstd/jira",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
4
4
  "description": "Jira Client",
5
5
  "main": "dist/jira/index.js",
6
6
  "types": "dist/jira/index.d.ts",
@@ -1,20 +0,0 @@
1
- export interface SlackMessageEvent {
2
- type: string;
3
- user?: string;
4
- text?: string;
5
- channel: string;
6
- ts: string;
7
- thread_ts?: string;
8
- bot_id?: string;
9
- client_msg_id?: string;
10
- team?: string;
11
- event_ts?: string;
12
- channel_type?: string;
13
- blocks?: unknown[];
14
- }
15
- export interface SlackChallengeResponse {
16
- challenge: string;
17
- }
18
- export interface SlackOkResponse {
19
- ok: boolean;
20
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"slack.event.type.js","sourceRoot":"","sources":["../../../types/slack.event.type.ts"],"names":[],"mappings":"","sourcesContent":["export interface SlackMessageEvent {\r\n type: string;\r\n user?: string;\r\n text?: string;\r\n channel: string;\r\n ts: string;\r\n thread_ts?: string;\r\n bot_id?: string;\r\n client_msg_id?: string;\r\n team?: string;\r\n event_ts?: string;\r\n channel_type?: string;\r\n blocks?: unknown[];\r\n}\r\n\r\nexport interface SlackChallengeResponse {\r\n challenge: string;\r\n}\r\n\r\nexport interface SlackOkResponse {\r\n ok: boolean;\r\n}\r\n"]}