docs/NewEvent.md in talon_one-3.0.2 vs docs/NewEvent.md in talon_one-5.0.0

- old
+ new

@@ -3,19 +3,21 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **profile_id** | **String** | ID of the customer profile set by your integration layer. **Note:** If the customer does not yet have a known `profileId`, we recommend you use a guest `profileId`. | [optional] +**store_integration_id** | **String** | The integration ID of the store. You choose this ID when you create a store. | [optional] **type** | **String** | A string representing the event. Must not be a reserved event name. | **attributes** | [**Object**](.md) | Arbitrary additional JSON data associated with the event. | **session_id** | **String** | The ID of the session that this event occurred in. | ## Code Sample ```ruby require 'TalonOne' instance = TalonOne::NewEvent.new(profile_id: URNGV8294NV, + store_integration_id: STORE-001, type: pageViewed, attributes: {"myAttribute":"myValue"}, session_id: 175KJPS947296) ```