From 0d4c3b0de46ee496aab5a1580b44beae0eb410a2 Mon Sep 17 00:00:00 2001 From: Don C Date: Mon, 7 Jun 2021 11:11:16 -0700 Subject: [PATCH] add missing A4T for prefetch and response notifications fields for delivery api client --- .../target-tools/delivery-api-client/index.js | 298 ++++++++++-------- 1 file changed, 172 insertions(+), 126 deletions(-) diff --git a/packages/target-tools/delivery-api-client/index.js b/packages/target-tools/delivery-api-client/index.js index 2dbf24b8..a3d0a0ea 100644 --- a/packages/target-tools/delivery-api-client/index.js +++ b/packages/target-tools/delivery-api-client/index.js @@ -208,8 +208,8 @@ class TextApiResponse { return await this.raw.text(); } ; -} - +} + function ActionFromJSON(json) { return ActionFromJSONTyped(json); } @@ -237,8 +237,8 @@ function ActionToJSON(value) { 'cssSelector': value.cssSelector, 'content': OneOfstringobjectToJSON(value.content), }; -} - +} + function AddressFromJSON(json) { return AddressFromJSONTyped(json); } @@ -262,8 +262,8 @@ function AddressToJSON(value) { 'url': value.url, 'referringUrl': value.referringUrl, }; -} - +} + function AnalyticsPayloadFromJSON(json) { return AnalyticsPayloadFromJSONTyped(json); } @@ -287,8 +287,8 @@ function AnalyticsPayloadToJSON(value) { 'pe': value.pe, 'tnta': value.tnta, }; -} - +} + function AnalyticsRequestFromJSON(json) { return AnalyticsRequestFromJSONTyped(json); } @@ -316,8 +316,8 @@ function AnalyticsRequestToJSON(value) { 'trackingServer': value.trackingServer, 'trackingServerSecure': value.trackingServerSecure, }; -} - +} + function AnalyticsResponseFromJSON(json) { return AnalyticsResponseFromJSONTyped(json); } @@ -339,8 +339,8 @@ function AnalyticsResponseToJSON(value) { return { 'payload': AnalyticsPayloadToJSON(value.payload), }; -} - +} + function ApplicationFromJSON(json) { return ApplicationFromJSONTyped(json); } @@ -366,8 +366,8 @@ function ApplicationToJSON(value) { 'name': value.name, 'version': value.version, }; -} - +} + function AudienceManagerFromJSON(json) { return AudienceManagerFromJSONTyped(json); } @@ -391,8 +391,8 @@ function AudienceManagerToJSON(value) { 'locationHint': value.locationHint, 'blob': value.blob, }; -} - +} + var AuthenticatedState; (function (AuthenticatedState) { AuthenticatedState["Unknown"] = "unknown"; @@ -407,8 +407,8 @@ function AuthenticatedStateFromJSONTyped(json, ignoreDiscriminator) { } function AuthenticatedStateToJSON(value) { return value; -} - +} + function BrowserFromJSON(json) { return BrowserFromJSONTyped(json); } @@ -434,8 +434,8 @@ function BrowserToJSON(value) { 'language': value.language, 'webGLRenderer': value.webGLRenderer, }; -} - +} + var ChannelType; (function (ChannelType) { ChannelType["Mobile"] = "mobile"; @@ -449,8 +449,8 @@ function ChannelTypeFromJSONTyped(json, ignoreDiscriminator) { } function ChannelTypeToJSON(value) { return value; -} - +} + function ContextFromJSON(json) { return ContextFromJSONTyped(json); } @@ -492,8 +492,8 @@ function ContextToJSON(value) { 'userAgent': value.userAgent, 'beacon': value.beacon, }; -} - +} + function CustomerIdFromJSON(json) { return CustomerIdFromJSONTyped(json); } @@ -519,8 +519,8 @@ function CustomerIdToJSON(value) { 'integrationCode': value.integrationCode, 'authenticatedState': AuthenticatedStateToJSON(value.authenticatedState), }; -} - +} + var DecisioningMethod; (function (DecisioningMethod) { DecisioningMethod["ServerSide"] = "server-side"; @@ -535,8 +535,8 @@ function DecisioningMethodFromJSONTyped(json, ignoreDiscriminator) { } function DecisioningMethodToJSON(value) { return value; -} - +} + function DeliveryRequestFromJSON(json) { return DeliveryRequestFromJSONTyped(json); } @@ -582,8 +582,50 @@ function DeliveryRequestToJSON(value) { 'notifications': value.notifications === undefined ? undefined : (value.notifications.map(NotificationToJSON)), 'qaMode': QAModeToJSON(value.qaMode), }; -} - +} + +function TraceResponseFromJSON(json) { + return TraceResponseFromJSONTyped(json); +} + +function TraceResponseFromJSONTyped(json, ignoreDiscriminator) { + return json; +} + +function TraceResponseToJSON(value) { + return value; +} + +function NotificationResponseFromJSON(json) { + return NotificationResponseFromJSONTyped(json); +} + +function NotificationResponseFromJSONTyped(json, ignoreDiscriminator) { + if ((json === undefined) || (json === null)) { + return json; + } + return { + + 'id': !exists(json, 'id') ? undefined : json['id'], + 'trace': !exists(json, 'trace') ? undefined : TraceResponseFromJSON(json['trace']), + }; +} + +function NotificationResponseToJSON(value) { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + + 'id': value.id, + 'trace': TraceResponseToJSON(value.trace), + }; +} + + function DeliveryResponseFromJSON(json) { return DeliveryResponseFromJSONTyped(json); } @@ -599,6 +641,7 @@ function DeliveryResponseFromJSONTyped(json, ignoreDiscriminator) { 'edgeHost': !exists(json, 'edgeHost') ? undefined : json['edgeHost'], 'execute': !exists(json, 'execute') ? undefined : ExecuteResponseFromJSON(json['execute']), 'prefetch': !exists(json, 'prefetch') ? undefined : PrefetchResponseFromJSON(json['prefetch']), + 'notifications': !exists(json, 'notifications') ? undefined : (json['notifications'].map(NotificationResponseFromJSON)), }; } function DeliveryResponseToJSON(value) { @@ -616,9 +659,10 @@ function DeliveryResponseToJSON(value) { 'edgeHost': value.edgeHost, 'execute': ExecuteResponseToJSON(value.execute), 'prefetch': PrefetchResponseToJSON(value.prefetch), + 'notifications': value.notifications === undefined ? undefined : (value.notifications.map(NotificationResponseToJSON)), }; -} - +} + var DeviceType; (function (DeviceType) { DeviceType["Phone"] = "phone"; @@ -632,8 +676,8 @@ function DeviceTypeFromJSONTyped(json, ignoreDiscriminator) { } function DeviceTypeToJSON(value) { return value; -} - +} + function ExecuteRequestFromJSON(json) { return ExecuteRequestFromJSONTyped(json); } @@ -657,8 +701,8 @@ function ExecuteRequestToJSON(value) { 'pageLoad': RequestDetailsToJSON(value.pageLoad), 'mboxes': value.mboxes === undefined ? undefined : (value.mboxes.map(MboxRequestToJSON)), }; -} - +} + function ExecuteResponseFromJSON(json) { return ExecuteResponseFromJSONTyped(json); } @@ -682,8 +726,8 @@ function ExecuteResponseToJSON(value) { 'pageLoad': PageLoadResponseToJSON(value.pageLoad), 'mboxes': value.mboxes === undefined ? undefined : (value.mboxes.map(MboxResponseToJSON)), }; -} - +} + function ExperienceCloudFromJSON(json) { return ExperienceCloudFromJSONTyped(json); } @@ -707,8 +751,8 @@ function ExperienceCloudToJSON(value) { 'audienceManager': AudienceManagerToJSON(value.audienceManager), 'analytics': AnalyticsRequestToJSON(value.analytics), }; -} - +} + function GeoFromJSON(json) { return GeoFromJSONTyped(json); } @@ -742,8 +786,8 @@ function GeoToJSON(value) { 'city': value.city, 'zip': value.zip, }; -} - +} + var LoggingType; (function (LoggingType) { LoggingType["ServerSide"] = "server_side"; @@ -757,8 +801,8 @@ function LoggingTypeFromJSONTyped(json, ignoreDiscriminator) { } function LoggingTypeToJSON(value) { return value; -} - +} + function MboxRequestFromJSON(json) { return MboxRequestFromJSONTyped(json); } @@ -792,8 +836,8 @@ function MboxRequestToJSON(value) { 'index': value.index, 'name': value.name, }; -} - +} + function MboxRequestAllOfFromJSON(json) { return MboxRequestAllOfFromJSONTyped(json); } @@ -817,8 +861,8 @@ function MboxRequestAllOfToJSON(value) { 'index': value.index, 'name': value.name, }; -} - +} + function MboxResponseFromJSON(json) { return MboxResponseFromJSONTyped(json); } @@ -850,8 +894,8 @@ function MboxResponseToJSON(value) { 'analytics': AnalyticsResponseToJSON(value.analytics), 'trace': value.trace, }; -} - +} + function MetricFromJSON(json) { return MetricFromJSONTyped(json); } @@ -863,6 +907,7 @@ function MetricFromJSONTyped(json, ignoreDiscriminator) { 'type': !exists(json, 'type') ? undefined : MetricTypeFromJSON(json['type']), 'selector': !exists(json, 'selector') ? undefined : json['selector'], 'eventToken': !exists(json, 'eventToken') ? undefined : json['eventToken'], + 'analytics': !exists(json, 'analytics') ? undefined : AnalyticsResponseFromJSON(json['analytics']), }; } function MetricToJSON(value) { @@ -876,9 +921,10 @@ function MetricToJSON(value) { 'type': MetricTypeToJSON(value.type), 'selector': value.selector, 'eventToken': value.eventToken, + 'analytics': AnalyticsResponseToJSON(value.analytics), }; -} - +} + var MetricType; (function (MetricType) { MetricType["Click"] = "click"; @@ -892,8 +938,8 @@ function MetricTypeFromJSONTyped(json, ignoreDiscriminator) { } function MetricTypeToJSON(value) { return value; -} - +} + function MobilePlatformFromJSON(json) { return MobilePlatformFromJSONTyped(json); } @@ -921,8 +967,8 @@ function MobilePlatformToJSON(value) { 'platformType': MobilePlatformTypeToJSON(value.platformType), 'version': value.version, }; -} - +} + var MobilePlatformType; (function (MobilePlatformType) { MobilePlatformType["Android"] = "android"; @@ -936,8 +982,8 @@ function MobilePlatformTypeFromJSONTyped(json, ignoreDiscriminator) { } function MobilePlatformTypeToJSON(value) { return value; -} - +} + function NotificationFromJSON(json) { return NotificationFromJSONTyped(json); } @@ -983,8 +1029,8 @@ function NotificationToJSON(value) { 'view': NotificationViewToJSON(value.view), 'pageLoad': NotificationPageLoadToJSON(value.pageLoad), }; -} - +} + function NotificationAllOfFromJSON(json) { return NotificationAllOfFromJSONTyped(json); } @@ -1020,8 +1066,8 @@ function NotificationAllOfToJSON(value) { 'view': NotificationViewToJSON(value.view), 'pageLoad': NotificationPageLoadToJSON(value.pageLoad), }; -} - +} + function NotificationMboxFromJSON(json) { return NotificationMboxFromJSONTyped(json); } @@ -1045,8 +1091,8 @@ function NotificationMboxToJSON(value) { 'name': value.name, 'state': value.state, }; -} - +} + function NotificationPageLoadFromJSON(json) { return NotificationPageLoadFromJSONTyped(json); } @@ -1068,8 +1114,8 @@ function NotificationPageLoadToJSON(value) { return { 'state': value.state, }; -} - +} + function NotificationViewFromJSON(json) { return NotificationViewFromJSONTyped(json); } @@ -1095,8 +1141,8 @@ function NotificationViewToJSON(value) { 'key': value.key, 'state': value.state, }; -} - +} + function OptionFromJSON(json) { return OptionFromJSONTyped(json); } @@ -1124,8 +1170,8 @@ function OptionToJSON(value) { 'eventToken': value.eventToken, 'responseTokens': value.responseTokens, }; -} - +} + var OptionType; (function (OptionType) { OptionType["Html"] = "html"; @@ -1142,8 +1188,8 @@ function OptionTypeFromJSONTyped(json, ignoreDiscriminator) { } function OptionTypeToJSON(value) { return value; -} - +} + function OrderFromJSON(json) { return OrderFromJSONTyped(json); } @@ -1177,8 +1223,8 @@ function OrderToJSON(value) { 'duplicate': value.duplicate, 'outlier': value.outlier, }; -} - +} + function PageLoadResponseFromJSON(json) { return PageLoadResponseFromJSONTyped(json); } @@ -1208,8 +1254,8 @@ function PageLoadResponseToJSON(value) { 'state': value.state, 'trace': value.trace, }; -} - +} + function PrefetchMboxResponseFromJSON(json) { return PrefetchMboxResponseFromJSONTyped(json); } @@ -1243,8 +1289,8 @@ function PrefetchMboxResponseToJSON(value) { 'trace': value.trace, 'state': value.state, }; -} - +} + function PrefetchMboxResponseAllOfFromJSON(json) { return PrefetchMboxResponseAllOfFromJSONTyped(json); } @@ -1266,8 +1312,8 @@ function PrefetchMboxResponseAllOfToJSON(value) { return { 'state': value.state, }; -} - +} + function PrefetchRequestFromJSON(json) { return PrefetchRequestFromJSONTyped(json); } @@ -1293,8 +1339,8 @@ function PrefetchRequestToJSON(value) { 'pageLoad': RequestDetailsToJSON(value.pageLoad), 'mboxes': value.mboxes === undefined ? undefined : (value.mboxes.map(MboxRequestToJSON)), }; -} - +} + function PrefetchResponseFromJSON(json) { return PrefetchResponseFromJSONTyped(json); } @@ -1322,8 +1368,8 @@ function PrefetchResponseToJSON(value) { 'mboxes': value.mboxes === undefined ? undefined : (value.mboxes.map(PrefetchMboxResponseToJSON)), 'metrics': value.metrics === undefined ? undefined : (value.metrics.map(MetricToJSON)), }; -} - +} + function ProductFromJSON(json) { return ProductFromJSONTyped(json); } @@ -1347,8 +1393,8 @@ function ProductToJSON(value) { 'id': value.id, 'categoryId': value.categoryId, }; -} - +} + function PropertyFromJSON(json) { return PropertyFromJSONTyped(json); } @@ -1370,8 +1416,8 @@ function PropertyToJSON(value) { return { 'token': value.token, }; -} - +} + function QAModeFromJSON(json) { return QAModeFromJSONTyped(json); } @@ -1401,8 +1447,8 @@ function QAModeToJSON(value) { 'evaluateAsFalseAudienceIds': value.evaluateAsFalseAudienceIds, 'previewIndexes': value.previewIndexes === undefined ? undefined : (value.previewIndexes.map(QAModePreviewIndexToJSON)), }; -} - +} + function QAModePreviewIndexFromJSON(json) { return QAModePreviewIndexFromJSONTyped(json); } @@ -1426,8 +1472,8 @@ function QAModePreviewIndexToJSON(value) { 'activityIndex': value.activityIndex, 'experienceIndex': value.experienceIndex, }; -} - +} + function RequestDetailsFromJSON(json) { return RequestDetailsFromJSONTyped(json); } @@ -1457,8 +1503,8 @@ function RequestDetailsToJSON(value) { 'order': OrderToJSON(value.order), 'product': ProductToJSON(value.product), }; -} - +} + function ScreenFromJSON(json) { return ScreenFromJSONTyped(json); } @@ -1488,8 +1534,8 @@ function ScreenToJSON(value) { 'pixelRatio': value.pixelRatio, 'orientation': ScreenOrientationTypeToJSON(value.orientation), }; -} - +} + var ScreenOrientationType; (function (ScreenOrientationType) { ScreenOrientationType["Portrait"] = "portrait"; @@ -1503,8 +1549,8 @@ function ScreenOrientationTypeFromJSONTyped(json, ignoreDiscriminator) { } function ScreenOrientationTypeToJSON(value) { return value; -} - +} + function TelemetryFromJSON(json) { return TelemetryFromJSONTyped(json); } @@ -1526,8 +1572,8 @@ function TelemetryToJSON(value) { return { 'entries': value.entries === undefined ? undefined : (value.entries.map(TelemetryEntryToJSON)), }; -} - +} + function TelemetryEntryFromJSON(json) { return TelemetryEntryFromJSONTyped(json); } @@ -1555,8 +1601,8 @@ function TelemetryEntryToJSON(value) { 'execution': value.execution, 'features': TelemetryFeaturesToJSON(value.features), }; -} - +} + function TelemetryFeaturesFromJSON(json) { return TelemetryFeaturesFromJSONTyped(json); } @@ -1578,8 +1624,8 @@ function TelemetryFeaturesToJSON(value) { return { 'decisioningMethod': DecisioningMethodToJSON(value.decisioningMethod), }; -} - +} + function TraceFromJSON(json) { return TraceFromJSONTyped(json); } @@ -1603,8 +1649,8 @@ function TraceToJSON(value) { 'authorizationToken': value.authorizationToken, 'usage': value.usage, }; -} - +} + function UnexpectedErrorFromJSON(json) { return UnexpectedErrorFromJSONTyped(json); } @@ -1628,8 +1674,8 @@ function UnexpectedErrorToJSON(value) { 'status': value.status, 'message': value.message, }; -} - +} + function ViewFromJSON(json) { return ViewFromJSONTyped(json); } @@ -1663,8 +1709,8 @@ function ViewToJSON(value) { 'state': value.state, 'trace': value.trace, }; -} - +} + function ViewRequestFromJSON(json) { return ViewRequestFromJSONTyped(json); } @@ -1698,8 +1744,8 @@ function ViewRequestToJSON(value) { 'name': value.name, 'key': value.key, }; -} - +} + function ViewRequestAllOfFromJSON(json) { return ViewRequestAllOfFromJSONTyped(json); } @@ -1723,8 +1769,8 @@ function ViewRequestAllOfToJSON(value) { 'name': value.name, 'key': value.key, }; -} - +} + function VisitorIdFromJSON(json) { return VisitorIdFromJSONTyped(json); } @@ -1752,8 +1798,8 @@ function VisitorIdToJSON(value) { 'marketingCloudVisitorId': value.marketingCloudVisitorId, 'customerIds': value.customerIds === undefined ? undefined : (value.customerIds.map(CustomerIdToJSON)), }; -} - +} + function WindowFromJSON(json) { return WindowFromJSONTyped(json); } @@ -1777,8 +1823,8 @@ function WindowToJSON(value) { 'width': value.width, 'height': value.height, }; -} - +} + function DateTimeFromJSON(value) { return new Date(value); } @@ -1787,8 +1833,8 @@ function DateTimeFromJSONTyped(value, ignoreDiscriminator) { } function DateTimeToJSON(value) { return value != null && typeof value !== 'undefined' ? value.toISOString() : ''; -} - +} + function OneOfstringobjectFromJSON(value) { return value; } @@ -1806,8 +1852,8 @@ function OneOfstringobjectarrayFromJSONTyped(value, ignoreDiscriminator) { } function OneOfstringobjectarrayToJSON(value) { return value; -} - +} + class DeliveryApi extends BaseAPI { async executeRaw(requestParameters) { if (requestParameters.imsOrgId === null || requestParameters.imsOrgId === undefined) { @@ -1844,7 +1890,7 @@ class DeliveryApi extends BaseAPI { const response = await this.executeRaw({ imsOrgId: imsOrgId, sessionId: sessionId, deliveryRequest: deliveryRequest, version: version }); return await response.value(); } -} - -export { ActionFromJSON, ActionFromJSONTyped, ActionToJSON, AddressFromJSON, AddressFromJSONTyped, AddressToJSON, AnalyticsPayloadFromJSON, AnalyticsPayloadFromJSONTyped, AnalyticsPayloadToJSON, AnalyticsRequestFromJSON, AnalyticsRequestFromJSONTyped, AnalyticsRequestToJSON, AnalyticsResponseFromJSON, AnalyticsResponseFromJSONTyped, AnalyticsResponseToJSON, ApplicationFromJSON, ApplicationFromJSONTyped, ApplicationToJSON, AudienceManagerFromJSON, AudienceManagerFromJSONTyped, AudienceManagerToJSON, AuthenticatedState, AuthenticatedStateFromJSON, AuthenticatedStateFromJSONTyped, AuthenticatedStateToJSON, BASE_PATH, BaseAPI, BlobApiResponse, BrowserFromJSON, BrowserFromJSONTyped, BrowserToJSON, COLLECTION_FORMATS, ChannelType, ChannelTypeFromJSON, ChannelTypeFromJSONTyped, ChannelTypeToJSON, Configuration, ContextFromJSON, ContextFromJSONTyped, ContextToJSON, CustomerIdFromJSON, CustomerIdFromJSONTyped, CustomerIdToJSON, DateTimeFromJSON, DateTimeFromJSONTyped, DateTimeToJSON, DecisioningMethod, DecisioningMethodFromJSON, DecisioningMethodFromJSONTyped, DecisioningMethodToJSON, DeliveryApi, DeliveryRequestFromJSON, DeliveryRequestFromJSONTyped, DeliveryRequestToJSON, DeliveryResponseFromJSON, DeliveryResponseFromJSONTyped, DeliveryResponseToJSON, DeviceType, DeviceTypeFromJSON, DeviceTypeFromJSONTyped, DeviceTypeToJSON, ExecuteRequestFromJSON, ExecuteRequestFromJSONTyped, ExecuteRequestToJSON, ExecuteResponseFromJSON, ExecuteResponseFromJSONTyped, ExecuteResponseToJSON, ExperienceCloudFromJSON, ExperienceCloudFromJSONTyped, ExperienceCloudToJSON, GeoFromJSON, GeoFromJSONTyped, GeoToJSON, JSONApiResponse, LoggingType, LoggingTypeFromJSON, LoggingTypeFromJSONTyped, LoggingTypeToJSON, MboxRequestAllOfFromJSON, MboxRequestAllOfFromJSONTyped, MboxRequestAllOfToJSON, MboxRequestFromJSON, MboxRequestFromJSONTyped, MboxRequestToJSON, MboxResponseFromJSON, MboxResponseFromJSONTyped, MboxResponseToJSON, MetricFromJSON, MetricFromJSONTyped, MetricToJSON, MetricType, MetricTypeFromJSON, MetricTypeFromJSONTyped, MetricTypeToJSON, MobilePlatformFromJSON, MobilePlatformFromJSONTyped, MobilePlatformToJSON, MobilePlatformType, MobilePlatformTypeFromJSON, MobilePlatformTypeFromJSONTyped, MobilePlatformTypeToJSON, NotificationAllOfFromJSON, NotificationAllOfFromJSONTyped, NotificationAllOfToJSON, NotificationFromJSON, NotificationFromJSONTyped, NotificationMboxFromJSON, NotificationMboxFromJSONTyped, NotificationMboxToJSON, NotificationPageLoadFromJSON, NotificationPageLoadFromJSONTyped, NotificationPageLoadToJSON, NotificationToJSON, NotificationViewFromJSON, NotificationViewFromJSONTyped, NotificationViewToJSON, OneOfstringobjectFromJSON, OneOfstringobjectFromJSONTyped, OneOfstringobjectToJSON, OneOfstringobjectarrayFromJSON, OneOfstringobjectarrayFromJSONTyped, OneOfstringobjectarrayToJSON, OptionFromJSON, OptionFromJSONTyped, OptionToJSON, OptionType, OptionTypeFromJSON, OptionTypeFromJSONTyped, OptionTypeToJSON, OrderFromJSON, OrderFromJSONTyped, OrderToJSON, PageLoadResponseFromJSON, PageLoadResponseFromJSONTyped, PageLoadResponseToJSON, PrefetchMboxResponseAllOfFromJSON, PrefetchMboxResponseAllOfFromJSONTyped, PrefetchMboxResponseAllOfToJSON, PrefetchMboxResponseFromJSON, PrefetchMboxResponseFromJSONTyped, PrefetchMboxResponseToJSON, PrefetchRequestFromJSON, PrefetchRequestFromJSONTyped, PrefetchRequestToJSON, PrefetchResponseFromJSON, PrefetchResponseFromJSONTyped, PrefetchResponseToJSON, ProductFromJSON, ProductFromJSONTyped, ProductToJSON, PropertyFromJSON, PropertyFromJSONTyped, PropertyToJSON, QAModeFromJSON, QAModeFromJSONTyped, QAModePreviewIndexFromJSON, QAModePreviewIndexFromJSONTyped, QAModePreviewIndexToJSON, QAModeToJSON, RequestDetailsFromJSON, RequestDetailsFromJSONTyped, RequestDetailsToJSON, RequiredError, ScreenFromJSON, ScreenFromJSONTyped, ScreenOrientationType, ScreenOrientationTypeFromJSON, ScreenOrientationTypeFromJSONTyped, ScreenOrientationTypeToJSON, ScreenToJSON, TelemetryEntryFromJSON, TelemetryEntryFromJSONTyped, TelemetryEntryToJSON, TelemetryFeaturesFromJSON, TelemetryFeaturesFromJSONTyped, TelemetryFeaturesToJSON, TelemetryFromJSON, TelemetryFromJSONTyped, TelemetryToJSON, TextApiResponse, TraceFromJSON, TraceFromJSONTyped, TraceToJSON, UnexpectedErrorFromJSON, UnexpectedErrorFromJSONTyped, UnexpectedErrorToJSON, ViewFromJSON, ViewFromJSONTyped, ViewRequestAllOfFromJSON, ViewRequestAllOfFromJSONTyped, ViewRequestAllOfToJSON, ViewRequestFromJSON, ViewRequestFromJSONTyped, ViewRequestToJSON, ViewToJSON, VisitorIdFromJSON, VisitorIdFromJSONTyped, VisitorIdToJSON, VoidApiResponse, WindowFromJSON, WindowFromJSONTyped, WindowToJSON, canConsumeForm, exists, mapValues, querystring }; -//# sourceMappingURL=index.js.map +} + +export { ActionFromJSON, ActionFromJSONTyped, ActionToJSON, AddressFromJSON, AddressFromJSONTyped, AddressToJSON, AnalyticsPayloadFromJSON, AnalyticsPayloadFromJSONTyped, AnalyticsPayloadToJSON, AnalyticsRequestFromJSON, AnalyticsRequestFromJSONTyped, AnalyticsRequestToJSON, AnalyticsResponseFromJSON, AnalyticsResponseFromJSONTyped, AnalyticsResponseToJSON, ApplicationFromJSON, ApplicationFromJSONTyped, ApplicationToJSON, AudienceManagerFromJSON, AudienceManagerFromJSONTyped, AudienceManagerToJSON, AuthenticatedState, AuthenticatedStateFromJSON, AuthenticatedStateFromJSONTyped, AuthenticatedStateToJSON, BASE_PATH, BaseAPI, BlobApiResponse, BrowserFromJSON, BrowserFromJSONTyped, BrowserToJSON, COLLECTION_FORMATS, ChannelType, ChannelTypeFromJSON, ChannelTypeFromJSONTyped, ChannelTypeToJSON, Configuration, ContextFromJSON, ContextFromJSONTyped, ContextToJSON, CustomerIdFromJSON, CustomerIdFromJSONTyped, CustomerIdToJSON, DateTimeFromJSON, DateTimeFromJSONTyped, DateTimeToJSON, DecisioningMethod, DecisioningMethodFromJSON, DecisioningMethodFromJSONTyped, DecisioningMethodToJSON, DeliveryApi, DeliveryRequestFromJSON, DeliveryRequestFromJSONTyped, DeliveryRequestToJSON, DeliveryResponseFromJSON, DeliveryResponseFromJSONTyped, DeliveryResponseToJSON, DeviceType, DeviceTypeFromJSON, DeviceTypeFromJSONTyped, DeviceTypeToJSON, ExecuteRequestFromJSON, ExecuteRequestFromJSONTyped, ExecuteRequestToJSON, ExecuteResponseFromJSON, ExecuteResponseFromJSONTyped, ExecuteResponseToJSON, ExperienceCloudFromJSON, ExperienceCloudFromJSONTyped, ExperienceCloudToJSON, GeoFromJSON, GeoFromJSONTyped, GeoToJSON, JSONApiResponse, LoggingType, LoggingTypeFromJSON, LoggingTypeFromJSONTyped, LoggingTypeToJSON, MboxRequestAllOfFromJSON, MboxRequestAllOfFromJSONTyped, MboxRequestAllOfToJSON, MboxRequestFromJSON, MboxRequestFromJSONTyped, MboxRequestToJSON, MboxResponseFromJSON, MboxResponseFromJSONTyped, MboxResponseToJSON, MetricFromJSON, MetricFromJSONTyped, MetricToJSON, MetricType, MetricTypeFromJSON, MetricTypeFromJSONTyped, MetricTypeToJSON, MobilePlatformFromJSON, MobilePlatformFromJSONTyped, MobilePlatformToJSON, MobilePlatformType, MobilePlatformTypeFromJSON, MobilePlatformTypeFromJSONTyped, MobilePlatformTypeToJSON, NotificationAllOfFromJSON, NotificationAllOfFromJSONTyped, NotificationAllOfToJSON, NotificationFromJSON, NotificationFromJSONTyped, NotificationMboxFromJSON, NotificationMboxFromJSONTyped, NotificationMboxToJSON, NotificationPageLoadFromJSON, NotificationPageLoadFromJSONTyped, NotificationPageLoadToJSON, NotificationToJSON, NotificationViewFromJSON, NotificationViewFromJSONTyped, NotificationViewToJSON, OneOfstringobjectFromJSON, OneOfstringobjectFromJSONTyped, OneOfstringobjectToJSON, OneOfstringobjectarrayFromJSON, OneOfstringobjectarrayFromJSONTyped, OneOfstringobjectarrayToJSON, OptionFromJSON, OptionFromJSONTyped, OptionToJSON, OptionType, OptionTypeFromJSON, OptionTypeFromJSONTyped, OptionTypeToJSON, OrderFromJSON, OrderFromJSONTyped, OrderToJSON, PageLoadResponseFromJSON, PageLoadResponseFromJSONTyped, PageLoadResponseToJSON, PrefetchMboxResponseAllOfFromJSON, PrefetchMboxResponseAllOfFromJSONTyped, PrefetchMboxResponseAllOfToJSON, PrefetchMboxResponseFromJSON, PrefetchMboxResponseFromJSONTyped, PrefetchMboxResponseToJSON, PrefetchRequestFromJSON, PrefetchRequestFromJSONTyped, PrefetchRequestToJSON, PrefetchResponseFromJSON, PrefetchResponseFromJSONTyped, PrefetchResponseToJSON, ProductFromJSON, ProductFromJSONTyped, ProductToJSON, PropertyFromJSON, PropertyFromJSONTyped, PropertyToJSON, QAModeFromJSON, QAModeFromJSONTyped, QAModePreviewIndexFromJSON, QAModePreviewIndexFromJSONTyped, QAModePreviewIndexToJSON, QAModeToJSON, RequestDetailsFromJSON, RequestDetailsFromJSONTyped, RequestDetailsToJSON, RequiredError, ScreenFromJSON, ScreenFromJSONTyped, ScreenOrientationType, ScreenOrientationTypeFromJSON, ScreenOrientationTypeFromJSONTyped, ScreenOrientationTypeToJSON, ScreenToJSON, TelemetryEntryFromJSON, TelemetryEntryFromJSONTyped, TelemetryEntryToJSON, TelemetryFeaturesFromJSON, TelemetryFeaturesFromJSONTyped, TelemetryFeaturesToJSON, TelemetryFromJSON, TelemetryFromJSONTyped, TelemetryToJSON, TextApiResponse, TraceFromJSON, TraceFromJSONTyped, TraceToJSON, UnexpectedErrorFromJSON, UnexpectedErrorFromJSONTyped, UnexpectedErrorToJSON, ViewFromJSON, ViewFromJSONTyped, ViewRequestAllOfFromJSON, ViewRequestAllOfFromJSONTyped, ViewRequestAllOfToJSON, ViewRequestFromJSON, ViewRequestFromJSONTyped, ViewRequestToJSON, ViewToJSON, VisitorIdFromJSON, VisitorIdFromJSONTyped, VisitorIdToJSON, VoidApiResponse, WindowFromJSON, WindowFromJSONTyped, WindowToJSON, canConsumeForm, exists, mapValues, querystring }; +//# sourceMappingURL=index.js.map