@hygraph/app-sdk 0.0.4 → 0.0.5

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.
@@ -1,4 +1,4 @@
1
- export declare type ColorPalette = 'PINK' | 'PURPLE' | 'ORANGE' | 'RED' | 'BROWN' | 'TEAL' | 'GREEN' | 'YELLOW';
1
+ export declare type ColorPalette = 'PURPLE' | 'TEAL' | 'YELLOW' | 'GREEN' | 'BLUE' | 'RED' | 'PINK' | 'BROWN' | 'ORANGE' | 'INDIGO' | 'OLIVE' | 'ROSE' | 'NEUTRAL';
2
2
  export declare type Stage = {
3
3
  id: string;
4
4
  apiId: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hygraph/app-sdk",
3
3
  "license": "MIT",
4
- "version": "0.0.4",
4
+ "version": "0.0.5",
5
5
  "author": "Hygraph",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -12,12 +12,6 @@
12
12
  "unpkg": "dist/app-sdk.umd.production.min.js",
13
13
  "typings": "dist/index.d.ts",
14
14
  "types": "dist/index.d.ts",
15
- "scripts": {
16
- "build": "tsdx build --format cjs,esm,umd",
17
- "test": "echo \"Error: no test specified\" && exit 1",
18
- "lint": "tsdx lint",
19
- "prepare": "npm run build"
20
- },
21
15
  "files": [
22
16
  "dist",
23
17
  "src"
@@ -37,5 +31,9 @@
37
31
  "tslib": "^2.3.0",
38
32
  "typescript": "^4.3.5"
39
33
  },
40
- "gitHead": "9ab3d452f4e651239e4825ead748263e09abadd5"
41
- }
34
+ "scripts": {
35
+ "build": "tsdx build --format cjs,esm,umd",
36
+ "test": "echo \"Error: no test specified\" && exit 1",
37
+ "lint": "tsdx lint"
38
+ }
39
+ }
@@ -1,12 +1,17 @@
1
1
  export type ColorPalette =
2
- | 'PINK'
3
2
  | 'PURPLE'
4
- | 'ORANGE'
5
- | 'RED'
6
- | 'BROWN'
7
3
  | 'TEAL'
4
+ | 'YELLOW'
8
5
  | 'GREEN'
9
- | 'YELLOW';
6
+ | 'BLUE'
7
+ | 'RED'
8
+ | 'PINK'
9
+ | 'BROWN'
10
+ | 'ORANGE'
11
+ | 'INDIGO'
12
+ | 'OLIVE'
13
+ | 'ROSE'
14
+ | 'NEUTRAL';
10
15
 
11
16
  export type Stage = {
12
17
  id: string;