@contrail/flexplm 1.1.44 → 1.1.45

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.
@@ -69,6 +69,7 @@ export interface AsyncEventsPayloadType extends AsyncPayloadType {
69
69
  events?: PayloadType[];
70
70
  eventsFileId?: string;
71
71
  eventsDownloadLink?: string;
72
+ eventsAdminDownloadLink?: string;
72
73
  }
73
74
  export interface EntityPayloadType extends PayloadType {
74
75
  entityReference: string;
@@ -584,7 +584,8 @@ class BaseProcessPublishAssortment {
584
584
  eventType,
585
585
  objectClass: 'LCSSeason',
586
586
  eventsFileId: uploadFile.id,
587
- eventsDownloadLink: uploadFile.downloadUrl
587
+ eventsDownloadLink: uploadFile.downloadUrl,
588
+ eventsAdminDownloadLink: uploadFile.adminDownloadUrl
588
589
  };
589
590
  if (sendMode === 'vibeiqfile') {
590
591
  const flexPLMConnect = new flexplm_connect_1.FlexPLMConnect(this.config);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrail/flexplm",
3
- "version": "1.1.44",
3
+ "version": "1.1.45",
4
4
  "description": "Library used for integration with flexplm.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -74,6 +74,7 @@ export interface AsyncEventsPayloadType extends AsyncPayloadType {
74
74
  events?: PayloadType[];
75
75
  eventsFileId?: string;
76
76
  eventsDownloadLink?: string;
77
+ eventsAdminDownloadLink?: string;
77
78
  }
78
79
 
79
80
  export interface EntityPayloadType extends PayloadType {
@@ -707,8 +707,9 @@ export class BaseProcessPublishAssortment {
707
707
  eventType,
708
708
  objectClass: 'LCSSeason',
709
709
  eventsFileId: uploadFile.id,
710
- eventsDownloadLink: uploadFile.downloadUrl
711
- };
710
+ eventsDownloadLink: uploadFile.downloadUrl,
711
+ eventsAdminDownloadLink: uploadFile.adminDownloadUrl
712
+ };
712
713
 
713
714
  if (sendMode === 'vibeiqfile') {
714
715
  const flexPLMConnect = new FlexPLMConnect(this.config);