@contrail/entity-types 1.2.0-alpha-skip-hydrate → 1.2.0-alpha-node-runtime
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/lib/app-version.d.ts +5 -0
- package/lib/app-version.js +6 -1
- package/lib/client.d.ts +0 -2
- package/lib/client.js +0 -2
- package/package.json +1 -1
package/lib/app-version.d.ts
CHANGED
|
@@ -11,6 +11,10 @@ export declare enum AppVersionStatus {
|
|
|
11
11
|
FAILED_ARCHIVING = "FAILED_ARCHIVING",
|
|
12
12
|
ARCHIVED = "ARCHIVED"
|
|
13
13
|
}
|
|
14
|
+
export declare enum NodeRuntime {
|
|
15
|
+
NODEJS_18_X = "nodejs18.x",
|
|
16
|
+
NODEJS_22_X = "nodejs22.x"
|
|
17
|
+
}
|
|
14
18
|
export interface AppVersion extends BaseManagedEntity {
|
|
15
19
|
orgId?: string;
|
|
16
20
|
appId?: string;
|
|
@@ -25,6 +29,7 @@ export interface AppVersion extends BaseManagedEntity {
|
|
|
25
29
|
appCodePackageId?: string;
|
|
26
30
|
appCodePackage?: AppCodePackage;
|
|
27
31
|
frameworkVersion?: number;
|
|
32
|
+
nodeRuntime?: NodeRuntime;
|
|
28
33
|
}
|
|
29
34
|
export interface ConfigProperty {
|
|
30
35
|
slug: string;
|
package/lib/app-version.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AppVersionStatus = void 0;
|
|
3
|
+
exports.NodeRuntime = exports.AppVersionStatus = void 0;
|
|
4
4
|
var AppVersionStatus;
|
|
5
5
|
(function (AppVersionStatus) {
|
|
6
6
|
AppVersionStatus["PUBLISHING"] = "PUBLISHING";
|
|
@@ -10,3 +10,8 @@ var AppVersionStatus;
|
|
|
10
10
|
AppVersionStatus["FAILED_ARCHIVING"] = "FAILED_ARCHIVING";
|
|
11
11
|
AppVersionStatus["ARCHIVED"] = "ARCHIVED";
|
|
12
12
|
})(AppVersionStatus = exports.AppVersionStatus || (exports.AppVersionStatus = {}));
|
|
13
|
+
var NodeRuntime;
|
|
14
|
+
(function (NodeRuntime) {
|
|
15
|
+
NodeRuntime["NODEJS_18_X"] = "nodejs18.x";
|
|
16
|
+
NodeRuntime["NODEJS_22_X"] = "nodejs22.x";
|
|
17
|
+
})(NodeRuntime = exports.NodeRuntime || (exports.NodeRuntime = {}));
|
package/lib/client.d.ts
CHANGED
|
@@ -55,7 +55,6 @@ export declare abstract class EntitiesClientCreateOptions {
|
|
|
55
55
|
relation?: string;
|
|
56
56
|
apiVersion?: API_VERSION;
|
|
57
57
|
suffix?: string;
|
|
58
|
-
skipHydrateRelationships?: boolean;
|
|
59
58
|
}
|
|
60
59
|
export declare abstract class EntitiesClientBatchCreateOptions {
|
|
61
60
|
entityName: string;
|
|
@@ -72,7 +71,6 @@ export declare abstract class EntitiesClientUpdateOptions {
|
|
|
72
71
|
relationId?: string;
|
|
73
72
|
apiVersion?: API_VERSION;
|
|
74
73
|
suffix?: string;
|
|
75
|
-
skipHydrateRelationships?: boolean;
|
|
76
74
|
}
|
|
77
75
|
export declare abstract class EntitiesClientBatchUpdateOptions {
|
|
78
76
|
entityName: string;
|
package/lib/client.js
CHANGED
|
@@ -63,7 +63,6 @@ class EntitiesClientCreateOptions {
|
|
|
63
63
|
relation;
|
|
64
64
|
apiVersion;
|
|
65
65
|
suffix;
|
|
66
|
-
skipHydrateRelationships;
|
|
67
66
|
}
|
|
68
67
|
exports.EntitiesClientCreateOptions = EntitiesClientCreateOptions;
|
|
69
68
|
class EntitiesClientBatchCreateOptions {
|
|
@@ -82,7 +81,6 @@ class EntitiesClientUpdateOptions {
|
|
|
82
81
|
relationId;
|
|
83
82
|
apiVersion;
|
|
84
83
|
suffix;
|
|
85
|
-
skipHydrateRelationships;
|
|
86
84
|
}
|
|
87
85
|
exports.EntitiesClientUpdateOptions = EntitiesClientUpdateOptions;
|
|
88
86
|
class EntitiesClientBatchUpdateOptions {
|