@aptly-as/types 2.7.1 → 2.7.2

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,28 +1,31 @@
1
1
  export declare enum AptlyDocumentType {
2
+ ArchitectDrawing = "architect-drawing",
3
+ BathroomDrawing = "bathroomDrawing",
4
+ Chunk = "chunk",
5
+ CircuitDirectory = "circuitDirectory",
6
+ Contract = "contract",
2
7
  Document = "document",
8
+ DeclarationOfConformity = "declaration-of-conformity",
3
9
  DeliveryDescription = "deliveryDescription",
4
- UnitPlan = "unitPlan",
5
10
  ElDrawing = "elDrawing",
6
- VVSDrawing = "vvsDrawing",
7
- BathroomDrawing = "bathroomDrawing",
11
+ EndReport = "endReport",
8
12
  FDV = "fdv",
9
- Manual = "manual",
13
+ Gdpr = "gdpr",
10
14
  KitchenDrawing = "kitchenDrawing",
11
- Receipt = "receipt",
15
+ InspectionReport = "inspectionReport",
16
+ Manual = "manual",
17
+ UnitPlan = "unitPlan",
18
+ OrderAttachment = "orderAttachment",
12
19
  PaymentReceipt = "payment-receipt",
20
+ PaymentReport = "payment-report",
13
21
  ProductAttachment = "productAttachment",
14
- SignedReceipt = "signedReceipt",
15
- OrderAttachment = "orderAttachment",
16
- InspectionReport = "inspectionReport",
17
- Public = "public",
18
22
  Prospect = "prospect",
19
- EndReport = "endReport",
20
- Contract = "contract",
21
- Chunk = "chunk",
22
- Gdpr = "gdpr",
23
- Zip = "zip",
24
- CircuitDirectory = "circuitDirectory",
25
- DeclarationOfConformity = "declaration-of-conformity"
23
+ Public = "public",
24
+ Receipt = "receipt",
25
+ RiskAssessment = "risk-assessment",
26
+ SignedReceipt = "signedReceipt",
27
+ VVSDrawing = "vvsDrawing",
28
+ Zip = "zip"
26
29
  }
27
30
  export declare enum AptlyHistoryType {
28
31
  Added = "added",
package/enums/document.js CHANGED
@@ -1,29 +1,32 @@
1
1
  export var AptlyDocumentType;
2
2
  (function (AptlyDocumentType) {
3
+ AptlyDocumentType["ArchitectDrawing"] = "architect-drawing";
4
+ AptlyDocumentType["BathroomDrawing"] = "bathroomDrawing";
5
+ AptlyDocumentType["Chunk"] = "chunk";
6
+ AptlyDocumentType["CircuitDirectory"] = "circuitDirectory";
7
+ AptlyDocumentType["Contract"] = "contract";
3
8
  AptlyDocumentType["Document"] = "document";
9
+ AptlyDocumentType["DeclarationOfConformity"] = "declaration-of-conformity";
4
10
  AptlyDocumentType["DeliveryDescription"] = "deliveryDescription";
5
- AptlyDocumentType["UnitPlan"] = "unitPlan";
6
11
  AptlyDocumentType["ElDrawing"] = "elDrawing";
7
- AptlyDocumentType["VVSDrawing"] = "vvsDrawing";
8
- AptlyDocumentType["BathroomDrawing"] = "bathroomDrawing";
12
+ AptlyDocumentType["EndReport"] = "endReport";
9
13
  AptlyDocumentType["FDV"] = "fdv";
10
- AptlyDocumentType["Manual"] = "manual";
14
+ AptlyDocumentType["Gdpr"] = "gdpr";
11
15
  AptlyDocumentType["KitchenDrawing"] = "kitchenDrawing";
12
- AptlyDocumentType["Receipt"] = "receipt";
16
+ AptlyDocumentType["InspectionReport"] = "inspectionReport";
17
+ AptlyDocumentType["Manual"] = "manual";
18
+ AptlyDocumentType["UnitPlan"] = "unitPlan";
19
+ AptlyDocumentType["OrderAttachment"] = "orderAttachment";
13
20
  AptlyDocumentType["PaymentReceipt"] = "payment-receipt";
21
+ AptlyDocumentType["PaymentReport"] = "payment-report";
14
22
  AptlyDocumentType["ProductAttachment"] = "productAttachment";
15
- AptlyDocumentType["SignedReceipt"] = "signedReceipt";
16
- AptlyDocumentType["OrderAttachment"] = "orderAttachment";
17
- AptlyDocumentType["InspectionReport"] = "inspectionReport";
18
- AptlyDocumentType["Public"] = "public";
19
23
  AptlyDocumentType["Prospect"] = "prospect";
20
- AptlyDocumentType["EndReport"] = "endReport";
21
- AptlyDocumentType["Contract"] = "contract";
22
- AptlyDocumentType["Chunk"] = "chunk";
23
- AptlyDocumentType["Gdpr"] = "gdpr";
24
+ AptlyDocumentType["Public"] = "public";
25
+ AptlyDocumentType["Receipt"] = "receipt";
26
+ AptlyDocumentType["RiskAssessment"] = "risk-assessment";
27
+ AptlyDocumentType["SignedReceipt"] = "signedReceipt";
28
+ AptlyDocumentType["VVSDrawing"] = "vvsDrawing";
24
29
  AptlyDocumentType["Zip"] = "zip";
25
- AptlyDocumentType["CircuitDirectory"] = "circuitDirectory";
26
- AptlyDocumentType["DeclarationOfConformity"] = "declaration-of-conformity";
27
30
  })(AptlyDocumentType || (AptlyDocumentType = {}));
28
31
  export var AptlyHistoryType;
29
32
  (function (AptlyHistoryType) {
@@ -1,6 +1,8 @@
1
1
  export type AptlyPaymentSettlement = AptlyPaymentSettlementSchema<string, string>;
2
2
  export interface AptlyPaymentSettlementSchema<ID, DATE> {
3
3
  _id: ID;
4
+ organization?: ID;
5
+ document?: ID;
4
6
  app: ID;
5
7
  externalId: string;
6
8
  externalRef: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "2.7.1",
3
+ "version": "2.7.2",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",