@vrplatform/log 2.0.0-alpha.53 → 2.0.0-alpha.54
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.
|
@@ -251,12 +251,13 @@ type HyperlineCustomerCreatedProps = Partial<{
|
|
|
251
251
|
userId: string;
|
|
252
252
|
tenantId: string;
|
|
253
253
|
customerId: string;
|
|
254
|
+
billingEmail: string;
|
|
255
|
+
billingAddress: string;
|
|
256
|
+
externalId: string;
|
|
257
|
+
name: string;
|
|
258
|
+
vatNumber: string;
|
|
254
259
|
}>;
|
|
255
|
-
type HyperlineCustomerUpdatedProps =
|
|
256
|
-
userId: string;
|
|
257
|
-
tenantId: string;
|
|
258
|
-
customerId: string;
|
|
259
|
-
}>;
|
|
260
|
+
type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
|
|
260
261
|
type HyperlineInvoiceReadyProps = Partial<{
|
|
261
262
|
status: 'ready';
|
|
262
263
|
paymentMethodType: string;
|
|
@@ -251,12 +251,13 @@ type HyperlineCustomerCreatedProps = Partial<{
|
|
|
251
251
|
userId: string;
|
|
252
252
|
tenantId: string;
|
|
253
253
|
customerId: string;
|
|
254
|
+
billingEmail: string;
|
|
255
|
+
billingAddress: string;
|
|
256
|
+
externalId: string;
|
|
257
|
+
name: string;
|
|
258
|
+
vatNumber: string;
|
|
254
259
|
}>;
|
|
255
|
-
type HyperlineCustomerUpdatedProps =
|
|
256
|
-
userId: string;
|
|
257
|
-
tenantId: string;
|
|
258
|
-
customerId: string;
|
|
259
|
-
}>;
|
|
260
|
+
type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
|
|
260
261
|
type HyperlineInvoiceReadyProps = Partial<{
|
|
261
262
|
status: 'ready';
|
|
262
263
|
paymentMethodType: string;
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -302,13 +302,14 @@ type HyperlineCustomerCreatedProps = Partial<{
|
|
|
302
302
|
userId: string;
|
|
303
303
|
tenantId: string;
|
|
304
304
|
customerId: string;
|
|
305
|
+
billingEmail: string;
|
|
306
|
+
billingAddress: string;
|
|
307
|
+
externalId: string;
|
|
308
|
+
name: string;
|
|
309
|
+
vatNumber: string;
|
|
305
310
|
}>;
|
|
306
311
|
|
|
307
|
-
type HyperlineCustomerUpdatedProps =
|
|
308
|
-
userId: string;
|
|
309
|
-
tenantId: string;
|
|
310
|
-
customerId: string;
|
|
311
|
-
}>;
|
|
312
|
+
type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
|
|
312
313
|
|
|
313
314
|
type HyperlineInvoiceReadyProps = Partial<{
|
|
314
315
|
status: 'ready';
|