@aptly-as/types 2.1.1 → 2.1.3

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
@@ -9,6 +9,7 @@ export declare enum AptlyModules {
9
9
  ProductsExtended = "productsExtended",
10
10
  Recommendations = "recommendations",
11
11
  Subcontractor = "subcontractor",
12
+ ThirdParty = "thirdParty",
12
13
  Support = "support",
13
14
  SupportComplaint = "supportComplaint",
14
15
  Testing = "testing",
@@ -64,6 +65,7 @@ export declare enum AptlyScopes {
64
65
  ProjectTheme = "projectTheme",
65
66
  ProjectSigning = "projectSigning",
66
67
  ProjectSubcontractor = "projectSubcontractor",
68
+ ProjectThirdParty = "projectThirdParty",
67
69
  ProjectUnits = "projectUnits",
68
70
  ProjectUnitInvites = "projectUnitInvites",
69
71
  ProjectUnitExtraFields = "projectUnitExtraFields",
package/core/scope.js CHANGED
@@ -10,6 +10,7 @@ export var AptlyModules;
10
10
  AptlyModules["ProductsExtended"] = "productsExtended";
11
11
  AptlyModules["Recommendations"] = "recommendations";
12
12
  AptlyModules["Subcontractor"] = "subcontractor";
13
+ AptlyModules["ThirdParty"] = "thirdParty";
13
14
  AptlyModules["Support"] = "support";
14
15
  AptlyModules["SupportComplaint"] = "supportComplaint";
15
16
  AptlyModules["Testing"] = "testing";
@@ -66,6 +67,7 @@ export var AptlyScopes;
66
67
  AptlyScopes["ProjectTheme"] = "projectTheme";
67
68
  AptlyScopes["ProjectSigning"] = "projectSigning";
68
69
  AptlyScopes["ProjectSubcontractor"] = "projectSubcontractor";
70
+ AptlyScopes["ProjectThirdParty"] = "projectThirdParty";
69
71
  AptlyScopes["ProjectUnits"] = "projectUnits";
70
72
  AptlyScopes["ProjectUnitInvites"] = "projectUnitInvites";
71
73
  AptlyScopes["ProjectUnitExtraFields"] = "projectUnitExtraFields";
package/enums/index.d.ts CHANGED
@@ -103,6 +103,7 @@ export declare enum AptlyIcon {
103
103
  Map = "map"
104
104
  }
105
105
  export declare enum AptlyProjectStatus {
106
+ Template = "template",
106
107
  NotStarted = "notStarted",
107
108
  Started = "started",
108
109
  Completed = "completed"
package/enums/index.js CHANGED
@@ -120,6 +120,7 @@ export var AptlyIcon;
120
120
  })(AptlyIcon || (AptlyIcon = {}));
121
121
  export var AptlyProjectStatus;
122
122
  (function (AptlyProjectStatus) {
123
+ AptlyProjectStatus["Template"] = "template";
123
124
  AptlyProjectStatus["NotStarted"] = "notStarted";
124
125
  AptlyProjectStatus["Started"] = "started";
125
126
  AptlyProjectStatus["Completed"] = "completed";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",