@dcl/schemas 9.11.0 → 9.11.1

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.
@@ -7,8 +7,8 @@ import { JSONSchema, ValidateFunction } from '../validation';
7
7
  export type LinkerAuthorization = {
8
8
  name: string;
9
9
  desc: string;
10
- startDate?: number;
11
- endDate?: number;
10
+ startDate?: string;
11
+ endDate?: string;
12
12
  contactInfo: {
13
13
  name: string;
14
14
  [key: string]: string;
@@ -9,8 +9,8 @@ var LinkerAuthorization;
9
9
  properties: {
10
10
  name: { type: 'string' },
11
11
  desc: { type: 'string' },
12
- startDate: { type: 'number', nullable: true },
13
- endDate: { type: 'number', nullable: true },
12
+ startDate: { type: 'string', nullable: true },
13
+ endDate: { type: 'string', nullable: true },
14
14
  contactInfo: {
15
15
  type: 'object',
16
16
  properties: {
package/dist/schemas.d.ts CHANGED
@@ -908,8 +908,8 @@ export declare namespace Link {
908
908
  export declare type LinkerAuthorization = {
909
909
  name: string;
910
910
  desc: string;
911
- startDate?: number;
912
- endDate?: number;
911
+ startDate?: string;
912
+ endDate?: string;
913
913
  contactInfo: {
914
914
  name: string;
915
915
  [key: string]: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "9.11.0",
2
+ "version": "9.11.1",
3
3
  "name": "@dcl/schemas",
4
4
  "main": "./dist/index.js",
5
5
  "typings": "./dist/index.d.ts",
@@ -36,5 +36,5 @@
36
36
  "files": [
37
37
  "dist"
38
38
  ],
39
- "commit": "52cf77b5accea55e9274ae2aa0b2a0d4f62b3ad6"
39
+ "commit": "9707faae07ee066ca8c2e7618caab120a7d77c48"
40
40
  }