@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
|
@@ -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);
|