@aptly-as/types 2.6.4 → 2.6.6

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.
package/core/scope.d.ts CHANGED
@@ -81,6 +81,7 @@ export declare enum AptlyScopes {
81
81
  ProjectUpsellTemplates = "projectUpsellTemplates",
82
82
  Unit = "unit",
83
83
  UnitBooking = "unitBooking",
84
+ UnitDocuments = "unitDocuments",
84
85
  UnitInquiry = "unitInquiry",
85
86
  UnitNotes = "unitNotes",
86
87
  UnitOrders = "unitOrders",
package/core/scope.js CHANGED
@@ -83,6 +83,7 @@ export var AptlyScopes;
83
83
  AptlyScopes["ProjectUpsellTemplates"] = "projectUpsellTemplates";
84
84
  AptlyScopes["Unit"] = "unit";
85
85
  AptlyScopes["UnitBooking"] = "unitBooking";
86
+ AptlyScopes["UnitDocuments"] = "unitDocuments";
86
87
  AptlyScopes["UnitInquiry"] = "unitInquiry";
87
88
  AptlyScopes["UnitNotes"] = "unitNotes";
88
89
  AptlyScopes["UnitOrders"] = "unitOrders";
@@ -21,7 +21,8 @@ export declare enum AptlyDocumentType {
21
21
  Chunk = "chunk",
22
22
  Gdpr = "gdpr",
23
23
  Zip = "zip",
24
- CircuitDirectory = "circuitDirectory"
24
+ CircuitDirectory = "circuitDirectory",
25
+ DeclarationOfConformity = "declaration-of-conformity"
25
26
  }
26
27
  export declare enum AptlyHistoryType {
27
28
  Added = "added",
package/enums/document.js CHANGED
@@ -23,6 +23,7 @@ export var AptlyDocumentType;
23
23
  AptlyDocumentType["Gdpr"] = "gdpr";
24
24
  AptlyDocumentType["Zip"] = "zip";
25
25
  AptlyDocumentType["CircuitDirectory"] = "circuitDirectory";
26
+ AptlyDocumentType["DeclarationOfConformity"] = "declaration-of-conformity";
26
27
  })(AptlyDocumentType || (AptlyDocumentType = {}));
27
28
  export var AptlyHistoryType;
28
29
  (function (AptlyHistoryType) {
@@ -7,6 +7,7 @@ export declare enum AptlyWebhookType {
7
7
  UnitMessageReply = "aptly.unit.message.reply",
8
8
  UnitOrderCreated = "aptly.unit.order.created",
9
9
  UnitOrderSigned = "aptly.unit.order.signed",
10
+ UnitPaymentCreated = "aptly.unit.payment.created",
10
11
  UnitReportFinal = "aptly.unit.report.final",
11
12
  OrganizationAppUpdated = "aptly.organization.app.updated",
12
13
  OrganizationAppDeleted = "aptly.organization.app.deleted"
package/enums/webhook.js CHANGED
@@ -8,6 +8,7 @@ export var AptlyWebhookType;
8
8
  AptlyWebhookType["UnitMessageReply"] = "aptly.unit.message.reply";
9
9
  AptlyWebhookType["UnitOrderCreated"] = "aptly.unit.order.created";
10
10
  AptlyWebhookType["UnitOrderSigned"] = "aptly.unit.order.signed";
11
+ AptlyWebhookType["UnitPaymentCreated"] = "aptly.unit.payment.created";
11
12
  AptlyWebhookType["UnitReportFinal"] = "aptly.unit.report.final";
12
13
  AptlyWebhookType["OrganizationAppUpdated"] = "aptly.organization.app.updated";
13
14
  AptlyWebhookType["OrganizationAppDeleted"] = "aptly.organization.app.deleted";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "2.6.4",
3
+ "version": "2.6.6",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",