yellowgrid-api-ts 3.2.148-dev.0 → 3.2.149-dev.0
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.
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const HostingPriceListEnum: {
|
|
2
|
+
readonly HOSTING_ONLY: {
|
|
3
|
+
readonly name: "HOSTING_ONLY";
|
|
4
|
+
readonly value: 1;
|
|
5
|
+
readonly publicValue: "HO - Hosting Only";
|
|
6
|
+
};
|
|
7
|
+
readonly HOSTING_ONLY_BESPOKE: {
|
|
8
|
+
readonly name: "HOSTING_ONLY_BESPOKE";
|
|
9
|
+
readonly value: 2;
|
|
10
|
+
readonly publicValue: "HOB - Hosted Only Bespoke";
|
|
11
|
+
};
|
|
12
|
+
readonly HOSTING_AND_SUPPORT: {
|
|
13
|
+
readonly name: "HOSTING_AND_SUPPORT";
|
|
14
|
+
readonly value: 3;
|
|
15
|
+
readonly publicValue: "HS - Hosted & Support";
|
|
16
|
+
};
|
|
17
|
+
readonly HOSTING_AND_SUPPORT_BESPOKE: {
|
|
18
|
+
readonly name: "HOSTING_AND_SUPPORT_BESPOKE";
|
|
19
|
+
readonly value: 4;
|
|
20
|
+
readonly publicValue: "HSB - Hosted & Support Bespoke";
|
|
21
|
+
};
|
|
22
|
+
readonly END_USER: {
|
|
23
|
+
readonly name: "END_USER";
|
|
24
|
+
readonly value: 5;
|
|
25
|
+
readonly publicValue: "YG - Yellowgrid Customer";
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export type HostingPriceListEnum = typeof HostingPriceListEnum;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HostingPriceListEnum = void 0;
|
|
4
|
+
exports.HostingPriceListEnum = {
|
|
5
|
+
"HOSTING_ONLY": {
|
|
6
|
+
"name": "HOSTING_ONLY",
|
|
7
|
+
"value": 1,
|
|
8
|
+
"publicValue": "HO - Hosting Only"
|
|
9
|
+
},
|
|
10
|
+
"HOSTING_ONLY_BESPOKE": {
|
|
11
|
+
"name": "HOSTING_ONLY_BESPOKE",
|
|
12
|
+
"value": 2,
|
|
13
|
+
"publicValue": "HOB - Hosted Only Bespoke"
|
|
14
|
+
},
|
|
15
|
+
"HOSTING_AND_SUPPORT": {
|
|
16
|
+
"name": "HOSTING_AND_SUPPORT",
|
|
17
|
+
"value": 3,
|
|
18
|
+
"publicValue": "HS - Hosted & Support"
|
|
19
|
+
},
|
|
20
|
+
"HOSTING_AND_SUPPORT_BESPOKE": {
|
|
21
|
+
"name": "HOSTING_AND_SUPPORT_BESPOKE",
|
|
22
|
+
"value": 4,
|
|
23
|
+
"publicValue": "HSB - Hosted & Support Bespoke"
|
|
24
|
+
},
|
|
25
|
+
"END_USER": {
|
|
26
|
+
"name": "END_USER",
|
|
27
|
+
"value": 5,
|
|
28
|
+
"publicValue": "YG - Yellowgrid Customer"
|
|
29
|
+
}
|
|
30
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export const HostingPriceListEnum = {
|
|
2
|
+
"HOSTING_ONLY": {
|
|
3
|
+
"name": "HOSTING_ONLY",
|
|
4
|
+
"value": 1,
|
|
5
|
+
"publicValue": "HO - Hosting Only"
|
|
6
|
+
},
|
|
7
|
+
"HOSTING_ONLY_BESPOKE": {
|
|
8
|
+
"name": "HOSTING_ONLY_BESPOKE",
|
|
9
|
+
"value": 2,
|
|
10
|
+
"publicValue": "HOB - Hosted Only Bespoke"
|
|
11
|
+
},
|
|
12
|
+
"HOSTING_AND_SUPPORT": {
|
|
13
|
+
"name": "HOSTING_AND_SUPPORT",
|
|
14
|
+
"value": 3,
|
|
15
|
+
"publicValue": "HS - Hosted & Support"
|
|
16
|
+
},
|
|
17
|
+
"HOSTING_AND_SUPPORT_BESPOKE": {
|
|
18
|
+
"name": "HOSTING_AND_SUPPORT_BESPOKE",
|
|
19
|
+
"value": 4,
|
|
20
|
+
"publicValue": "HSB - Hosted & Support Bespoke"
|
|
21
|
+
},
|
|
22
|
+
"END_USER": {
|
|
23
|
+
"name": "END_USER",
|
|
24
|
+
"value": 5,
|
|
25
|
+
"publicValue": "YG - Yellowgrid Customer"
|
|
26
|
+
}
|
|
27
|
+
} as const;
|
|
28
|
+
|
|
29
|
+
export type HostingPriceListEnum = typeof HostingPriceListEnum;
|