@spytecgps/nova-orm 1.4.66 → 1.4.68
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.
- package/dist/entities/billingCustomerStripe.d.ts +14 -0
- package/dist/entities/billingDunning.d.ts +16 -0
- package/dist/entities/billingSubscriptionStripe.d.ts +25 -0
- package/dist/entities/index.d.ts +4 -1
- package/dist/entities/reportScheduleConfiguration.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/enums.d.ts +9 -2
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare class BillingCustomerStripe {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string | null;
|
|
4
|
+
email: string | null;
|
|
5
|
+
phone: string | null;
|
|
6
|
+
street: string | null;
|
|
7
|
+
city: string | null;
|
|
8
|
+
region: string | null;
|
|
9
|
+
country: string | null;
|
|
10
|
+
postalCode: string | null;
|
|
11
|
+
createdAt: Date | null;
|
|
12
|
+
updatedAt: Date | null;
|
|
13
|
+
taxExempt: boolean;
|
|
14
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ChurnbusterEventType, DevicePlatform } from '../types/enums';
|
|
2
|
+
export declare const platformArray: readonly [DevicePlatform.shopify, DevicePlatform.braintree, DevicePlatform.acumatica, DevicePlatform.klarna, DevicePlatform.amazon, DevicePlatform.braintree_amazon, DevicePlatform.demo, DevicePlatform.stripe, DevicePlatform.stripe_amazon];
|
|
3
|
+
export type Platform = typeof platformArray[number];
|
|
4
|
+
export declare const eventTypeArray: readonly [ChurnbusterEventType.campaign_started, ChurnbusterEventType.email_bounced, ChurnbusterEventType.campaign_recovered, ChurnbusterEventType.campaign_lost];
|
|
5
|
+
export type EventType = typeof eventTypeArray[number];
|
|
6
|
+
export declare class BillingDunning {
|
|
7
|
+
subscriptionId: string;
|
|
8
|
+
customerId: string;
|
|
9
|
+
email: string | null;
|
|
10
|
+
platform: Platform;
|
|
11
|
+
eventType: EventType;
|
|
12
|
+
churnBusterId: string;
|
|
13
|
+
captureUrl: string;
|
|
14
|
+
createdAt: Date | null;
|
|
15
|
+
updatedAt: Date | null;
|
|
16
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export declare class BillingSubscriptionStripe {
|
|
2
|
+
subscriptionId: string;
|
|
3
|
+
customerId: string;
|
|
4
|
+
planId: string | null;
|
|
5
|
+
subscriptionStart: Date | null;
|
|
6
|
+
subscriptionEnd: Date | null;
|
|
7
|
+
subscriptionValue: number | null;
|
|
8
|
+
subscriptionPeriodMonths: number | null;
|
|
9
|
+
quantity: number | null;
|
|
10
|
+
status: string | null;
|
|
11
|
+
paymentType: string | null;
|
|
12
|
+
paymentDetails: object | null;
|
|
13
|
+
discounts: object | null;
|
|
14
|
+
addons: object | null;
|
|
15
|
+
balance: number | null;
|
|
16
|
+
paymentMethod: string | null;
|
|
17
|
+
cancelAt: Date | null;
|
|
18
|
+
canceledAt: Date | null;
|
|
19
|
+
isPaused: boolean;
|
|
20
|
+
resumesAt: Date | null;
|
|
21
|
+
isTrial: boolean;
|
|
22
|
+
trialEnd: Date | null;
|
|
23
|
+
createdAt: Date | null;
|
|
24
|
+
updatedAt: Date | null;
|
|
25
|
+
}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -21,8 +21,10 @@ import { BeaconBleMesh } from './beaconBleMesh';
|
|
|
21
21
|
import { Billing } from './billing';
|
|
22
22
|
import { BillingCustomerAmazon } from './billingCustomerAmazon';
|
|
23
23
|
import { BillingCustomerBraintree } from './billingCustomerBraintree';
|
|
24
|
+
import { BillingCustomerStripe } from './billingCustomerStripe';
|
|
24
25
|
import { BillingDeviceHistory } from './billingDeviceHistory';
|
|
25
26
|
import { BillingDeviceTypePlan } from './billingDeviceTypePlan';
|
|
27
|
+
import { BillingDunning } from './billingDunning';
|
|
26
28
|
import { BillingHubspotPaymentLog } from './billingHubspotPaymentLog';
|
|
27
29
|
import { BillingKlarnaCustomer } from './billingKlarnaCustomer';
|
|
28
30
|
import { BillingKlarnaOrder } from './billingKlarnaOrder';
|
|
@@ -31,6 +33,7 @@ import { BillingPlans } from './billingPlans';
|
|
|
31
33
|
import { BillingStatusHistoryBraintree } from './billingStatusHistoryBraintree';
|
|
32
34
|
import { BillingSubscriptionAmazon } from './billingSubscriptionAmazon';
|
|
33
35
|
import { BillingSubscriptionBraintree } from './billingSubscriptionBraintree';
|
|
36
|
+
import { BillingSubscriptionStripe } from './billingSubscriptionStripe';
|
|
34
37
|
import { Blacklist } from './blacklist';
|
|
35
38
|
import { BlacklistType } from './blacklistType';
|
|
36
39
|
import { BLEMesh } from './bleMesh';
|
|
@@ -164,4 +167,4 @@ import { UserRegistrationAttempt } from './userRegistrationAttempt';
|
|
|
164
167
|
import { UserSecurityRole } from './userSecurityRole';
|
|
165
168
|
import { WebsocketConnection } from './websocketConnection';
|
|
166
169
|
export * from './customerAttribute';
|
|
167
|
-
export { AcumaticaAmazonProduct, AcumaticaImeiIccidData, AcumaticaOrderShipmentDetails, AcumaticaShipment, AcumaticaShipmentAmazon, AempToken, Alert, AlertType, AppFeatureType, AsinPromotion, AssetCategory, AssetProfile, AssetProfileCategory, AssetProfileCustomField, AssetProfileMedia, AssetProfileNote, AssetProfileType, AvalaraExemptCert, AvalaraQueue, BeaconBleMesh, Billing, BillingCustomerAmazon, BillingCustomerBraintree, BillingDeviceHistory, BillingDeviceTypePlan, BillingHubspotPaymentLog, BillingKlarnaCustomer, BillingKlarnaOrder, BillingPlanFeatures, BillingPlans, BillingStatusHistoryBraintree, BillingSubscriptionAmazon, BillingSubscriptionBraintree, Blacklist, BlacklistType, BLEMesh, BLEMeshConfiguration, Boundary, BoundaryEvent, CellTower, Client, ClientAlertConfiguration, ClientAlertRecipient, ClientApiToken, ClientAppFeature, ClientConfiguration, ClientDeviceIcon, ClientDeviceSetting, ClientIngestorConfiguration, ClientIssuesConfiguration, ClientType, Country, CustomReport, CustomReportColumn, CustomReportColumnCategory, CustomReportDataSource, CustomReportSelectedColumn, CustomSecurityRole, DataExport, DataSourceType, Deactivation, DeactivationReason, DemoAccountTemplate, DemoAccountTemplateAssetProfile, DemoAccountTemplateDevice, DemoDeviceData, Device, DeviceBehavior, DeviceBleMesh, DeviceBleMeshUpdateTask, DeviceCameraConfiguration, DeviceCameraMedia, DeviceCameraMediaEventType, DeviceCameraMediaStreamingData, DeviceCameraMediaSyncStatus, DeviceCameraRequestedPictureData, DeviceCameraRequestedVideoData, DeviceChangesHistory, DeviceCustomConfiguration, DeviceEventsTriggerConfiguration, DeviceHistory, DeviceModelListener, DevicePairing, DevicePromotion, DeviceReplacement, DeviceStatus, DeviceTask, DeviceType, DeviceTypeFeature, DeviceTypeFirmware, DeviceTypePromotion, EmailDomain, EntityTag, EntityType, Feature, FirmwareAutoUpgradeBlacklist, FirmwareUpgradeTask, HistoricalBillingPlan, IccidStatus, ImeiIccidCarrier, ImeiIccidHistory, ImeiIccidImport, Industry, Issue, IssueType, LatestPosition, LatestUserAppInfo, LiveLink, LiveLinkMedia, M2Sync, Magento2Gps, Magento2Plan, MarketplacePromotion, MobileNetwork, NotificationRecipient, OrderShipmentInternational, Organization, Plan, Position, Promotion, PromotionHistory, Region, ReportScheduleConfiguration, SecurityRole, ServiceProvider, ServiceProviderProduct, ServiceProviderProductNetwork, ServiceProviderProductType, Sim, Tag, Task, TaskSchedule, Trip, TripCompletionStatus, TripPosition, TripStatus, User, UserActivation, UserActivationDevice, UserActivationEvent, UserActivationMetric, UserAlertComplain, UserAlertConfiguration, UserAlertNotificationsConfig, UserAppFeedback, UserAppIncident, UserAuthorizedBoundary, UserAuthorizedBoundarySecurityView, UserAuthorizedDevice, UserAuthorizedDeviceSecurityView, UserCancellationDueDevice, UserCarrierDeactivateDevice, UserCarrierReactivateDevice, UserConfiguration, UserDataDeletionRequest, UserDeviceBehaviorTask, UserFreeOfferDevice, UserInvitation, UserRatingRequest, UserRegistrationAttempt, UserSecurityRole, WebsocketConnection, TicketManager, StripePriceMapping, StripeAddonMapping, };
|
|
170
|
+
export { AcumaticaAmazonProduct, AcumaticaImeiIccidData, AcumaticaOrderShipmentDetails, AcumaticaShipment, AcumaticaShipmentAmazon, AempToken, Alert, AlertType, AppFeatureType, AsinPromotion, AssetCategory, AssetProfile, AssetProfileCategory, AssetProfileCustomField, AssetProfileMedia, AssetProfileNote, AssetProfileType, AvalaraExemptCert, AvalaraQueue, BeaconBleMesh, Billing, BillingCustomerAmazon, BillingCustomerBraintree, BillingDeviceHistory, BillingDeviceTypePlan, BillingHubspotPaymentLog, BillingKlarnaCustomer, BillingKlarnaOrder, BillingPlanFeatures, BillingPlans, BillingStatusHistoryBraintree, BillingSubscriptionAmazon, BillingSubscriptionBraintree, Blacklist, BlacklistType, BLEMesh, BLEMeshConfiguration, Boundary, BoundaryEvent, CellTower, Client, ClientAlertConfiguration, ClientAlertRecipient, ClientApiToken, ClientAppFeature, ClientConfiguration, ClientDeviceIcon, ClientDeviceSetting, ClientIngestorConfiguration, ClientIssuesConfiguration, ClientType, Country, CustomReport, CustomReportColumn, CustomReportColumnCategory, CustomReportDataSource, CustomReportSelectedColumn, CustomSecurityRole, DataExport, DataSourceType, Deactivation, DeactivationReason, DemoAccountTemplate, DemoAccountTemplateAssetProfile, DemoAccountTemplateDevice, DemoDeviceData, Device, DeviceBehavior, DeviceBleMesh, DeviceBleMeshUpdateTask, DeviceCameraConfiguration, DeviceCameraMedia, DeviceCameraMediaEventType, DeviceCameraMediaStreamingData, DeviceCameraMediaSyncStatus, DeviceCameraRequestedPictureData, DeviceCameraRequestedVideoData, DeviceChangesHistory, DeviceCustomConfiguration, DeviceEventsTriggerConfiguration, DeviceHistory, DeviceModelListener, DevicePairing, DevicePromotion, DeviceReplacement, DeviceStatus, DeviceTask, DeviceType, DeviceTypeFeature, DeviceTypeFirmware, DeviceTypePromotion, EmailDomain, EntityTag, EntityType, Feature, FirmwareAutoUpgradeBlacklist, FirmwareUpgradeTask, HistoricalBillingPlan, IccidStatus, ImeiIccidCarrier, ImeiIccidHistory, ImeiIccidImport, Industry, Issue, IssueType, LatestPosition, LatestUserAppInfo, LiveLink, LiveLinkMedia, M2Sync, Magento2Gps, Magento2Plan, MarketplacePromotion, MobileNetwork, NotificationRecipient, OrderShipmentInternational, Organization, Plan, Position, Promotion, PromotionHistory, Region, ReportScheduleConfiguration, SecurityRole, ServiceProvider, ServiceProviderProduct, ServiceProviderProductNetwork, ServiceProviderProductType, Sim, Tag, Task, TaskSchedule, Trip, TripCompletionStatus, TripPosition, TripStatus, User, UserActivation, UserActivationDevice, UserActivationEvent, UserActivationMetric, UserAlertComplain, UserAlertConfiguration, UserAlertNotificationsConfig, UserAppFeedback, UserAppIncident, UserAuthorizedBoundary, UserAuthorizedBoundarySecurityView, UserAuthorizedDevice, UserAuthorizedDeviceSecurityView, UserCancellationDueDevice, UserCarrierDeactivateDevice, UserCarrierReactivateDevice, UserConfiguration, UserDataDeletionRequest, UserDeviceBehaviorTask, UserFreeOfferDevice, UserInvitation, UserRatingRequest, UserRegistrationAttempt, UserSecurityRole, WebsocketConnection, TicketManager, StripePriceMapping, StripeAddonMapping, BillingDunning, BillingSubscriptionStripe, BillingCustomerStripe, };
|