New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@artsy/cohesion

Package Overview
Dependencies
Maintainers
12
Versions
482
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@artsy/cohesion - npm Package Compare versions

Comparing version 0.2.10-canary.31.546.0 to 0.2.10-canary.31.551.0

2

dist/Schema/Events/Tap.d.ts

@@ -17,3 +17,3 @@ import { ActionType } from "../Event";

*
* This schema describes events sent to Segment from [[tappedEntityGroup]]
* This schema describes events sent to Segment from [[tappedArtistGroup]]
*

@@ -20,0 +20,0 @@ * @example

{
"name": "@artsy/cohesion",
"version": "0.2.10-canary.31.546.0",
"version": "0.2.10-canary.31.551.0",
"description": "Analytics schema and library helpers",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -14,2 +14,4 @@ # Cohesion [![CircleCI](https://circleci.com/gh/artsy/cohesion.svg?style=svg)](https://circleci.com/gh/artsy/cohesion) [![npm version](https://badge.fury.io/js/%40artsy%2Fcohesion.svg)](https://www.npmjs.com/package/@artsy/2Fcohesion)

Requirements: [Yarn](https://classic.yarnpkg.com/en/docs/install/#mac-stable)
#### Set up:

@@ -33,2 +35,4 @@

To view docs locally, visit the full filepath of `docs/index.html` in your browser, i.e, `file:///Users/<MY_USER>/<MY_LOCAL_DIRECTORY>/cohesion/doc/index.html`
## Schema

@@ -40,3 +44,3 @@

Valid analytics events are described in `/Schema/Event.ts`.
Valid analytics events are described in `/Schema/Event.ts`, and individual event schemas live in the `Schema/Events` directory, divided by concern.

@@ -47,3 +51,3 @@ Typings for all allowed values, such as `ContextModule`, are exported for use by engineers in consuming projects.

1. In `Schema/ActionType.ts`, add the name of the new event. This name defines the corresponding downstream table's name in Redshift, and should use the [`lowerCamelCase`](https://wiki.c2.com/?LowerCamelCase) naming convention.
1. In `Schema/Event.ts`, add the name of the new event. This name defines the corresponding downstream table's name in Redshift, and should use the [`lowerCamelCase`](https://wiki.c2.com/?LowerCamelCase) naming convention.

@@ -61,8 +65,10 @@ ```typescript

2. In `Schema/Event.ts`, create an interface describing the shape of the new event, as it is recieved in Segment/Redshift.
2. In `Schema/Events` directory, create a new interface describing the shape of the new event, as it is recieved in Segment/Redshift.
- The name of the interface should match the `ActionType` created in step 1, but use the [`UpperCamelCase`](https://wiki.c2.com/?UpperCamelCase) naming convention.
- The `action` key is required and should match the `ActionType` created in step 1.
- If your event uses values not yet in the schema, such as a new `ContextModule`, add new values to the existing typings in the Schema directory.
```typescript
// Schema/Event.ts
// Schema/Events/MyNewEvent.ts

@@ -77,10 +83,18 @@ export interface MyNewEvent {

3. If your event uses values not yet in the schema, such as a new `ContextModule`, add new values to the existing typings in the Schema directory.
3. In `Schema/Event.ts`, add the new interface to the valid events master list, `Event`
4. Add descriptive comments with examples to explain the use of your new event. Our documentation is generated automatically from in-code comments, find more information on syntax in the [`typedoc` docs](https://typedoc.org/guides/doccomments/).
5. PR your changes. Once merged, the schema will be updated and your new event and values will be available to consumers of this package.
5. If you have created any new files, add an export statement to `Schema/index.ts` like so:
6. Data analysts should request an engineer to construct a new event helper for the `/Events` directory (see below).
```typescript
// Schema/index.ts
export * from "./Events/MyNewEvent"
```
6. PR your changes. Once merged, the schema will be updated and your new event and values will be available to consumers of this package.
7. Data analysts should request an engineer to construct a new event helper for the `/Events` directory (see below).
## Events

@@ -87,0 +101,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc