Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Wide Angle Analytics - Public API - Preview
# Wide Angle Analytics - Public API

## About Wide Angle Analytics
## About Wide Angle Analytics

Wide Angle Analytics is a trailblazer in the SaaS, privacy-focused analytics space. Wide Angle Analytics simplifies collecting, analyzing, and using data to reach business decisions and uncover actionable insights. Data collection and analytics should be creating the potential for value and protecting the business, not hurting it. Wide Angle Analytics respects users' privacy by not collecting personal data by default, in strict compliance with GDPR.

Learn more about [privatc-friendly and GDPR-compliant web analytics](https://wideangle.co/documentation).

Learn more about [privacy-friendly and GDPR-compliant web analytics](https://wideangle.co/documentation).
Binary file not shown.
Binary file removed assets/fonts/Montserrat-VariableFont_wght.woff2
Binary file not shown.
93 changes: 0 additions & 93 deletions assets/fonts/OFL.txt

This file was deleted.

Binary file added assets/fonts/worksans-italic.woff2
Binary file not shown.
Binary file added assets/fonts/worksans-regular.woff2
Binary file not shown.
34 changes: 17 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,55 +23,55 @@
<link rel="stylesheet" href="assets/styles/tailwind.min.css" />
<style type="text/css" media="screen">
@font-face {
font-family: "Montserrat";
src: url('assets/fonts/Montserrat-VariableFont_wght.woff2');
font-family: "Work Sans";
src: url('assets/fonts/worksans-regular.woff2');
font-style: normal;
font-weight: 100;
}
@font-face {
font-family: "Montserrat";
src: url('assets/fonts/Montserrat-VariableFont_wght.woff2');
font-family: "Work Sans";
src: url('assets/fonts/worksans-regular.woff2');
font-style: normal;
font-weight: 200;
}
@font-face {
font-family: "Montserrat";
src: url('assets/fonts/Montserrat-VariableFont_wght.woff2');
font-family: "Work Sans";
src: url('assets/fonts/worksans-regular.woff2');
font-style: normal;
font-weight: 300;
}
@font-face {
font-family: "Montserrat";
src: url('assets/fonts/Montserrat-VariableFont_wght.woff2');
font-family: "Work Sans";
src: url('assets/fonts/worksans-regular.woff2');
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: "Montserrat";
src: url('assets/fonts/Montserrat-VariableFont_wght.woff2');
font-family: "Work Sans";
src: url('assets/fonts/worksans-regular.woff2');
font-style: normal;
font-weight: 500;
}
@font-face {
font-family: "Montserrat";
src: url('assets/fonts/Montserrat-VariableFont_wght.woff2');
font-family: "Work Sans";
src: url('assets/fonts/worksans-regular.woff2');
font-style: normal;
font-weight: 600;
}
@font-face {
font-family: "Montserrat";
src: url('assets/fonts/Montserrat-VariableFont_wght.woff2');
font-family: "Work Sans";
src: url('assets/fonts/worksans-regular.woff2');
font-style: normal;
font-weight: 700;
}
@font-face {
font-family: "Montserrat";
src: url('assets/fonts/Montserrat-VariableFont_wght.woff2');
font-family: "Work Sans";
src: url('assets/fonts/worksans-regular.woff2');
font-style: normal;
font-weight: 800;
}
body {
font-family: 'Montserrat', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-family: 'Work Sans', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb( 10,0,120);
}
a {
Expand Down
15 changes: 13 additions & 2 deletions spec/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ info:
termsOfService: https://wideangle.co/policy/terms
contact:
email: "developers@wideangle.co"
version: 0.0.3
version: 1.1.0
externalDocs:
description: |-
Find out more about Wide Angle Analytics
url: https://wideangle.co/documentation
servers:
- url: https://wideangle.co/public/api/v1
- url: https://sandbox.wideangle.co/public/api/v1
tags:
- name: events
description: Web Events API
Expand Down Expand Up @@ -128,6 +127,8 @@ components:
$ref: '#/components/schemas/ViewPort'
parameters:
$ref: '#/components/schemas/Parameter'
values:
$ref: '#/components/schemas/Value'
userAgent:
anyOf:
- $ref: '#/components/schemas/ParsedUserAgent'
Expand Down Expand Up @@ -200,6 +201,7 @@ components:
- click
- download
- action
- values
Parameter:
type: object
additionalProperties:
Expand All @@ -210,6 +212,15 @@ components:
utm_media: social
utm_content: https://twitter.com/FromWideAngle/status/1592893022001242117
name: trial-intent
Value:
type: object
additionalProperties:
type: double
example:
item1: 10.02
item2: 33.12
total: 43.14
attempt: 3
ApiErrorResponse:
type: object
properties:
Expand Down