@spytecgps/nova-orm 1.3.117 → 1.3.119
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/enums.d.ts +42 -0
- package/package.json +1 -1
package/dist/types/enums.d.ts
CHANGED
|
@@ -138,3 +138,45 @@ export declare enum StreamingStatus {
|
|
|
138
138
|
Closed = "closed",
|
|
139
139
|
Failed = "failed"
|
|
140
140
|
}
|
|
141
|
+
export declare enum DevicePlatform {
|
|
142
|
+
shopify = "shopify",
|
|
143
|
+
braintree = "braintree",
|
|
144
|
+
acumatica = "acumatica",
|
|
145
|
+
klarna = "klarna",
|
|
146
|
+
amazon = "amazon",
|
|
147
|
+
braintree_amazon = "braintree_amazon"
|
|
148
|
+
}
|
|
149
|
+
export declare enum DeviceModels {
|
|
150
|
+
UNKNOWN = "UNKNOWN",
|
|
151
|
+
GV50 = "GV50",
|
|
152
|
+
GV500 = "GV500",
|
|
153
|
+
GL501 = "GL501",
|
|
154
|
+
GL300 = "GL300",
|
|
155
|
+
GL500 = "GL500",
|
|
156
|
+
GV350 = "GV350",
|
|
157
|
+
PRIME = "PRIME",
|
|
158
|
+
GV620 = "GV620",
|
|
159
|
+
GL50 = "GL50",
|
|
160
|
+
GB100 = "GB100",
|
|
161
|
+
GL31 = "GL31",
|
|
162
|
+
GL30 = "GL30",
|
|
163
|
+
MCX101 = "MCX101",
|
|
164
|
+
MCX301 = "MCX301"
|
|
165
|
+
}
|
|
166
|
+
export declare enum DeviceEventType {
|
|
167
|
+
'new_activation' = "new_activation",
|
|
168
|
+
'reactivation' = "reactivation",
|
|
169
|
+
'subscription_change' = "subscription_change",
|
|
170
|
+
'resumption' = "resumption",
|
|
171
|
+
'device_swap' = "device_swap"
|
|
172
|
+
}
|
|
173
|
+
export declare enum DeviceActivationSource {
|
|
174
|
+
'sieva' = 1,
|
|
175
|
+
'manual' = 2,
|
|
176
|
+
'api' = 3,
|
|
177
|
+
'web' = 4,
|
|
178
|
+
'mobile' = 5,
|
|
179
|
+
'ios' = 6,
|
|
180
|
+
'android' = 7,
|
|
181
|
+
'activation_site' = 8
|
|
182
|
+
}
|