@valiantys/atlassian-app-frontend 3.0.0-alpha-26 → 3.0.0-alpha-27

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.
@@ -36,7 +36,7 @@ declare interface CreatedIssue {
36
36
  id: string;
37
37
  key: string;
38
38
  self: string;
39
- transition: {
39
+ transition?: {
40
40
  status: number;
41
41
  errorCollection?: {
42
42
  errorMessages: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valiantys/atlassian-app-frontend",
3
- "version": "3.0.0-alpha-26",
3
+ "version": "3.0.0-alpha-27",
4
4
  "description": "This library provides an Atlassian Forge Custom UI wrapper component that handles all the setup necessary to support an app that can run deployed or in standalone mode",
5
5
  "exports": {
6
6
  "./atlassian-app": {
@@ -1,10 +1,10 @@
1
1
  import { JSX as JSX_2 } from 'react/jsx-runtime';
2
2
 
3
- declare interface JobLogEntry<T = string> {
3
+ declare interface JobLogEntry {
4
4
  jobId: string;
5
5
  startTime?: number;
6
6
  description?: string;
7
- result?: T;
7
+ result?: string;
8
8
  failed?: boolean;
9
9
  success?: boolean;
10
10
  inProgress?: boolean;
@@ -179,32 +179,11 @@
179
179
  "excerptTokens": [
180
180
  {
181
181
  "kind": "Content",
182
- "text": "export interface JobLogEntry<T = "
183
- },
184
- {
185
- "kind": "Content",
186
- "text": "string"
187
- },
188
- {
189
- "kind": "Content",
190
- "text": "> "
182
+ "text": "export interface JobLogEntry "
191
183
  }
192
184
  ],
193
185
  "fileUrlPath": "../../forge/shared/util-async-queue/src/lib/job-log-entry.d.ts",
194
186
  "releaseTag": "Public",
195
- "typeParameters": [
196
- {
197
- "typeParameterName": "T",
198
- "constraintTokenRange": {
199
- "startIndex": 0,
200
- "endIndex": 0
201
- },
202
- "defaultTypeTokenRange": {
203
- "startIndex": 1,
204
- "endIndex": 2
205
- }
206
- }
207
- ],
208
187
  "name": "JobLogEntry",
209
188
  "preserveMemberOrder": false,
210
189
  "members": [
@@ -354,7 +333,7 @@
354
333
  },
355
334
  {
356
335
  "kind": "Content",
357
- "text": "T"
336
+ "text": "string"
358
337
  },
359
338
  {
360
339
  "kind": "Content",
@@ -5,7 +5,7 @@
5
5
  ```ts
6
6
 
7
7
  // @public (undocumented)
8
- export interface JobLogEntry<T = string> {
8
+ export interface JobLogEntry {
9
9
  // (undocumented)
10
10
  description?: string;
11
11
  // (undocumented)
@@ -17,7 +17,7 @@ export interface JobLogEntry<T = string> {
17
17
  // (undocumented)
18
18
  jobId: string;
19
19
  // (undocumented)
20
- result?: T;
20
+ result?: string;
21
21
  // (undocumented)
22
22
  startTime?: number;
23
23
  // (undocumented)
@@ -1,8 +1,8 @@
1
- export declare interface JobLogEntry<T = string> {
1
+ export declare interface JobLogEntry {
2
2
  jobId: string;
3
3
  startTime?: number;
4
4
  description?: string;
5
- result?: T;
5
+ result?: string;
6
6
  failed?: boolean;
7
7
  success?: boolean;
8
8
  inProgress?: boolean;
@@ -840,7 +840,7 @@
840
840
  "excerptTokens": [
841
841
  {
842
842
  "kind": "Content",
843
- "text": "transition: "
843
+ "text": "transition?: "
844
844
  },
845
845
  {
846
846
  "kind": "Content",
@@ -852,7 +852,7 @@
852
852
  }
853
853
  ],
854
854
  "isReadonly": false,
855
- "isOptional": false,
855
+ "isOptional": true,
856
856
  "releaseTag": "Public",
857
857
  "name": "transition",
858
858
  "propertyTypeTokenRange": {
@@ -68,7 +68,7 @@ export interface CreatedIssue {
68
68
  // (undocumented)
69
69
  self: string;
70
70
  // (undocumented)
71
- transition: {
71
+ transition?: {
72
72
  status: number;
73
73
  errorCollection?: {
74
74
  errorMessages: string[];
@@ -36,7 +36,7 @@ export declare interface CreatedIssue {
36
36
  id: string;
37
37
  key: string;
38
38
  self: string;
39
- transition: {
39
+ transition?: {
40
40
  status: number;
41
41
  errorCollection?: {
42
42
  errorMessages: string[];