@parra/parra-js-sdk 0.3.227 → 0.3.228

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.
Files changed (2) hide show
  1. package/dist/ParraAPI.d.ts +10 -5
  2. package/package.json +1 -1
@@ -426,6 +426,7 @@ export interface TenantUserCollectionStub {
426
426
  last_updated_at?: string | null;
427
427
  last_seen_at?: string | null;
428
428
  last_login_at?: string | null;
429
+ has_password: boolean;
429
430
  }
430
431
  export interface TenantUserDataStub {
431
432
  id: string;
@@ -454,6 +455,7 @@ export interface TenantUserDataStub {
454
455
  last_updated_at?: string | null;
455
456
  last_seen_at?: string | null;
456
457
  last_login_at?: string | null;
458
+ has_password: boolean;
457
459
  }
458
460
  export interface TenantUser {
459
461
  id: string;
@@ -482,6 +484,7 @@ export interface TenantUser {
482
484
  last_updated_at?: string | null;
483
485
  last_seen_at?: string | null;
484
486
  last_login_at?: string | null;
487
+ has_password: boolean;
485
488
  properties: object;
486
489
  identities?: Array<Identity> | null;
487
490
  }
@@ -1294,7 +1297,8 @@ export interface CreateUserNoteRequestBody {
1294
1297
  title: string;
1295
1298
  type: string;
1296
1299
  description?: string | null;
1297
- user_id: string;
1300
+ user_id?: string | null;
1301
+ guest_user_id?: string | null;
1298
1302
  }
1299
1303
  export declare enum UserNoteStatus {
1300
1304
  pending = "pending",
@@ -1309,14 +1313,15 @@ export interface UserNote {
1309
1313
  title: string;
1310
1314
  type: string;
1311
1315
  description?: string | null;
1312
- user_id: string;
1316
+ user_id?: string | null;
1317
+ guest_user_id?: string | null;
1313
1318
  tenant_id: string;
1314
1319
  board_id: string;
1315
1320
  ticket_id?: string | null;
1316
1321
  status: UserNoteStatus;
1317
1322
  accepted_at?: string | null;
1318
1323
  rejected_at?: string | null;
1319
- user: TenantUserStub;
1324
+ user?: TenantUserStub | null;
1320
1325
  }
1321
1326
  export interface UserNoteCollectionResponse {
1322
1327
  page: number;
@@ -1470,7 +1475,7 @@ export interface RoadmapConfigurationTab {
1470
1475
  description?: string | null;
1471
1476
  }
1472
1477
  export interface AppRoadmapConfiguration {
1473
- form?: FeedbackFormDataStub;
1478
+ form?: FeedbackFormDataStub | null;
1474
1479
  tabs: Array<RoadmapConfigurationTab>;
1475
1480
  }
1476
1481
  export interface AppReleaseCollectionResponse {
@@ -2927,7 +2932,7 @@ declare class ParraAPI {
2927
2932
  $expand?: string;
2928
2933
  $search?: string;
2929
2934
  }, options?: Options) => Promise<TicketCollectionResponse>;
2930
- createUserNoteForBoard: (tenant_id: string, board_id: string, body: CreateUserNoteRequestBody, options?: Options) => Promise<UserNote>;
2935
+ createUserNoteForBoard: (tenant_id: string, board_id: string, body?: CreateUserNoteRequestBody, options?: Options) => Promise<UserNote>;
2931
2936
  paginateUserNotesForBoard: (tenant_id: string, board_id: string, query?: {
2932
2937
  $select?: string;
2933
2938
  $top?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.227",
3
+ "version": "0.3.228",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",