@vrplatform/log 2.0.23 → 2.0.24
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.
|
@@ -265,8 +265,19 @@ type HyperlineCustomerCreatedProps = Partial<{
|
|
|
265
265
|
externalId: string;
|
|
266
266
|
name: string;
|
|
267
267
|
vatNumber: string;
|
|
268
|
+
webhookEventType: 'customer.created';
|
|
269
|
+
}>;
|
|
270
|
+
type HyperlineCustomerUpdatedProps = Partial<{
|
|
271
|
+
userId: string;
|
|
272
|
+
tenantId: string;
|
|
273
|
+
customerId: string;
|
|
274
|
+
billingEmail: string;
|
|
275
|
+
billingAddress: string;
|
|
276
|
+
externalId: string;
|
|
277
|
+
name: string;
|
|
278
|
+
vatNumber: string;
|
|
279
|
+
webhookEventType: 'customer.updated';
|
|
268
280
|
}>;
|
|
269
|
-
type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
|
|
270
281
|
type HyperlineInvoiceReadyProps = Partial<{
|
|
271
282
|
status: 'ready';
|
|
272
283
|
paymentMethodType: string;
|
|
@@ -265,8 +265,19 @@ type HyperlineCustomerCreatedProps = Partial<{
|
|
|
265
265
|
externalId: string;
|
|
266
266
|
name: string;
|
|
267
267
|
vatNumber: string;
|
|
268
|
+
webhookEventType: 'customer.created';
|
|
269
|
+
}>;
|
|
270
|
+
type HyperlineCustomerUpdatedProps = Partial<{
|
|
271
|
+
userId: string;
|
|
272
|
+
tenantId: string;
|
|
273
|
+
customerId: string;
|
|
274
|
+
billingEmail: string;
|
|
275
|
+
billingAddress: string;
|
|
276
|
+
externalId: string;
|
|
277
|
+
name: string;
|
|
278
|
+
vatNumber: string;
|
|
279
|
+
webhookEventType: 'customer.updated';
|
|
268
280
|
}>;
|
|
269
|
-
type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
|
|
270
281
|
type HyperlineInvoiceReadyProps = Partial<{
|
|
271
282
|
status: 'ready';
|
|
272
283
|
paymentMethodType: string;
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -327,9 +327,20 @@ type HyperlineCustomerCreatedProps = Partial<{
|
|
|
327
327
|
externalId: string;
|
|
328
328
|
name: string;
|
|
329
329
|
vatNumber: string;
|
|
330
|
+
webhookEventType: 'customer.created';
|
|
330
331
|
}>;
|
|
331
332
|
|
|
332
|
-
type HyperlineCustomerUpdatedProps =
|
|
333
|
+
type HyperlineCustomerUpdatedProps = Partial<{
|
|
334
|
+
userId: string;
|
|
335
|
+
tenantId: string;
|
|
336
|
+
customerId: string;
|
|
337
|
+
billingEmail: string;
|
|
338
|
+
billingAddress: string;
|
|
339
|
+
externalId: string;
|
|
340
|
+
name: string;
|
|
341
|
+
vatNumber: string;
|
|
342
|
+
webhookEventType: 'customer.updated';
|
|
343
|
+
}>;
|
|
333
344
|
|
|
334
345
|
type HyperlineInvoiceReadyProps = Partial<{
|
|
335
346
|
status: 'ready';
|