@aptly-as/types 1.7.5 → 1.7.7

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.
@@ -17,7 +17,8 @@ export declare enum AptlyDocumentType {
17
17
  Prospect = "prospect",
18
18
  EndReport = "endReport",
19
19
  Contract = "contract",
20
- Chunk = "chunk"
20
+ Chunk = "chunk",
21
+ Gdpr = "gdpr"
21
22
  }
22
23
  export declare enum AptlyHistoryType {
23
24
  Added = "added",
package/enums/document.js CHANGED
@@ -22,6 +22,7 @@ var AptlyDocumentType;
22
22
  AptlyDocumentType["EndReport"] = "endReport";
23
23
  AptlyDocumentType["Contract"] = "contract";
24
24
  AptlyDocumentType["Chunk"] = "chunk";
25
+ AptlyDocumentType["Gdpr"] = "gdpr";
25
26
  })(AptlyDocumentType = exports.AptlyDocumentType || (exports.AptlyDocumentType = {}));
26
27
  var AptlyHistoryType;
27
28
  (function (AptlyHistoryType) {
@@ -8,6 +8,7 @@ import { AptlyMediaSrc } from './media';
8
8
  export declare type AptlyProject = AptlyProjectSchema<string, string>;
9
9
  export interface AptlyProjectSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> {
10
10
  organization: AptlyOrganizationSchema<ID, DATE> | ID;
11
+ template?: ID | null;
11
12
  /**
12
13
  * @deprecated dont think this is used anymore
13
14
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "1.7.5",
3
+ "version": "1.7.7",
4
4
  "description": "Aptly types and enums",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",