yellowgrid-api-ts 3.2.159-dev.0 → 3.2.160-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.
- package/dist/models/HostingPriceListEnum.d.ts +5 -5
- package/dist/models/HostingPriceListEnum.js +5 -5
- package/dist/models/PaymentMethodEnum.d.ts +13 -0
- package/dist/models/PaymentMethodEnum.js +15 -0
- package/dist/models/UserGroupEnum.d.ts +28 -0
- package/dist/models/UserGroupEnum.js +30 -0
- package/models/HostingPriceListEnum.ts +5 -5
- package/models/PaymentMethodEnum.ts +14 -0
- package/models/UserGroupEnum.ts +29 -0
- package/package.json +1 -1
|
@@ -2,27 +2,27 @@ export declare const HostingPriceListEnum: {
|
|
|
2
2
|
readonly HOSTING_ONLY: {
|
|
3
3
|
readonly name: "HOSTING_ONLY";
|
|
4
4
|
readonly value: 1;
|
|
5
|
-
readonly publicValue: "
|
|
5
|
+
readonly publicValue: "Hosting Only";
|
|
6
6
|
};
|
|
7
7
|
readonly HOSTING_ONLY_BESPOKE: {
|
|
8
8
|
readonly name: "HOSTING_ONLY_BESPOKE";
|
|
9
9
|
readonly value: 2;
|
|
10
|
-
readonly publicValue: "
|
|
10
|
+
readonly publicValue: "Hosting Only (Bespoke)";
|
|
11
11
|
};
|
|
12
12
|
readonly HOSTING_AND_SUPPORT: {
|
|
13
13
|
readonly name: "HOSTING_AND_SUPPORT";
|
|
14
14
|
readonly value: 3;
|
|
15
|
-
readonly publicValue: "
|
|
15
|
+
readonly publicValue: "Hosting & Support";
|
|
16
16
|
};
|
|
17
17
|
readonly HOSTING_AND_SUPPORT_BESPOKE: {
|
|
18
18
|
readonly name: "HOSTING_AND_SUPPORT_BESPOKE";
|
|
19
19
|
readonly value: 4;
|
|
20
|
-
readonly publicValue: "
|
|
20
|
+
readonly publicValue: "Hosting & Support (Bespoke)";
|
|
21
21
|
};
|
|
22
22
|
readonly END_USER: {
|
|
23
23
|
readonly name: "END_USER";
|
|
24
24
|
readonly value: 5;
|
|
25
|
-
readonly publicValue: "
|
|
25
|
+
readonly publicValue: "End User";
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
28
|
export type HostingPriceListEnum = typeof HostingPriceListEnum;
|
|
@@ -5,26 +5,26 @@ exports.HostingPriceListEnum = {
|
|
|
5
5
|
"HOSTING_ONLY": {
|
|
6
6
|
"name": "HOSTING_ONLY",
|
|
7
7
|
"value": 1,
|
|
8
|
-
"publicValue": "
|
|
8
|
+
"publicValue": "Hosting Only"
|
|
9
9
|
},
|
|
10
10
|
"HOSTING_ONLY_BESPOKE": {
|
|
11
11
|
"name": "HOSTING_ONLY_BESPOKE",
|
|
12
12
|
"value": 2,
|
|
13
|
-
"publicValue": "
|
|
13
|
+
"publicValue": "Hosting Only (Bespoke)"
|
|
14
14
|
},
|
|
15
15
|
"HOSTING_AND_SUPPORT": {
|
|
16
16
|
"name": "HOSTING_AND_SUPPORT",
|
|
17
17
|
"value": 3,
|
|
18
|
-
"publicValue": "
|
|
18
|
+
"publicValue": "Hosting & Support"
|
|
19
19
|
},
|
|
20
20
|
"HOSTING_AND_SUPPORT_BESPOKE": {
|
|
21
21
|
"name": "HOSTING_AND_SUPPORT_BESPOKE",
|
|
22
22
|
"value": 4,
|
|
23
|
-
"publicValue": "
|
|
23
|
+
"publicValue": "Hosting & Support (Bespoke)"
|
|
24
24
|
},
|
|
25
25
|
"END_USER": {
|
|
26
26
|
"name": "END_USER",
|
|
27
27
|
"value": 5,
|
|
28
|
-
"publicValue": "
|
|
28
|
+
"publicValue": "End User"
|
|
29
29
|
}
|
|
30
30
|
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const PaymentMethodEnum: {
|
|
2
|
+
readonly CARD: {
|
|
3
|
+
readonly name: "CARD";
|
|
4
|
+
readonly value: "card";
|
|
5
|
+
readonly publicValue: "card";
|
|
6
|
+
};
|
|
7
|
+
readonly BACS: {
|
|
8
|
+
readonly name: "BACS";
|
|
9
|
+
readonly value: "bacs";
|
|
10
|
+
readonly publicValue: "bacs";
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export type PaymentMethodEnum = typeof PaymentMethodEnum;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PaymentMethodEnum = void 0;
|
|
4
|
+
exports.PaymentMethodEnum = {
|
|
5
|
+
"CARD": {
|
|
6
|
+
"name": "CARD",
|
|
7
|
+
"value": "card",
|
|
8
|
+
"publicValue": "card"
|
|
9
|
+
},
|
|
10
|
+
"BACS": {
|
|
11
|
+
"name": "BACS",
|
|
12
|
+
"value": "bacs",
|
|
13
|
+
"publicValue": "bacs"
|
|
14
|
+
}
|
|
15
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const UserGroupEnum: {
|
|
2
|
+
readonly ALL: {
|
|
3
|
+
readonly name: "ALL";
|
|
4
|
+
readonly value: "All";
|
|
5
|
+
readonly publicValue: "All";
|
|
6
|
+
};
|
|
7
|
+
readonly STANDARD: {
|
|
8
|
+
readonly name: "STANDARD";
|
|
9
|
+
readonly value: "Standard";
|
|
10
|
+
readonly publicValue: "Standard";
|
|
11
|
+
};
|
|
12
|
+
readonly TECHNICAL: {
|
|
13
|
+
readonly name: "TECHNICAL";
|
|
14
|
+
readonly value: "Technical";
|
|
15
|
+
readonly publicValue: "Technical";
|
|
16
|
+
};
|
|
17
|
+
readonly PRIVILEGED: {
|
|
18
|
+
readonly name: "PRIVILEGED";
|
|
19
|
+
readonly value: "Privileged";
|
|
20
|
+
readonly publicValue: "Privileged";
|
|
21
|
+
};
|
|
22
|
+
readonly DEVELOPMENT: {
|
|
23
|
+
readonly name: "DEVELOPMENT";
|
|
24
|
+
readonly value: "Development";
|
|
25
|
+
readonly publicValue: "Development";
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export type UserGroupEnum = typeof UserGroupEnum;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UserGroupEnum = void 0;
|
|
4
|
+
exports.UserGroupEnum = {
|
|
5
|
+
"ALL": {
|
|
6
|
+
"name": "ALL",
|
|
7
|
+
"value": "All",
|
|
8
|
+
"publicValue": "All"
|
|
9
|
+
},
|
|
10
|
+
"STANDARD": {
|
|
11
|
+
"name": "STANDARD",
|
|
12
|
+
"value": "Standard",
|
|
13
|
+
"publicValue": "Standard"
|
|
14
|
+
},
|
|
15
|
+
"TECHNICAL": {
|
|
16
|
+
"name": "TECHNICAL",
|
|
17
|
+
"value": "Technical",
|
|
18
|
+
"publicValue": "Technical"
|
|
19
|
+
},
|
|
20
|
+
"PRIVILEGED": {
|
|
21
|
+
"name": "PRIVILEGED",
|
|
22
|
+
"value": "Privileged",
|
|
23
|
+
"publicValue": "Privileged"
|
|
24
|
+
},
|
|
25
|
+
"DEVELOPMENT": {
|
|
26
|
+
"name": "DEVELOPMENT",
|
|
27
|
+
"value": "Development",
|
|
28
|
+
"publicValue": "Development"
|
|
29
|
+
}
|
|
30
|
+
};
|
|
@@ -2,27 +2,27 @@ export const HostingPriceListEnum = {
|
|
|
2
2
|
"HOSTING_ONLY": {
|
|
3
3
|
"name": "HOSTING_ONLY",
|
|
4
4
|
"value": 1,
|
|
5
|
-
"publicValue": "
|
|
5
|
+
"publicValue": "Hosting Only"
|
|
6
6
|
},
|
|
7
7
|
"HOSTING_ONLY_BESPOKE": {
|
|
8
8
|
"name": "HOSTING_ONLY_BESPOKE",
|
|
9
9
|
"value": 2,
|
|
10
|
-
"publicValue": "
|
|
10
|
+
"publicValue": "Hosting Only (Bespoke)"
|
|
11
11
|
},
|
|
12
12
|
"HOSTING_AND_SUPPORT": {
|
|
13
13
|
"name": "HOSTING_AND_SUPPORT",
|
|
14
14
|
"value": 3,
|
|
15
|
-
"publicValue": "
|
|
15
|
+
"publicValue": "Hosting & Support"
|
|
16
16
|
},
|
|
17
17
|
"HOSTING_AND_SUPPORT_BESPOKE": {
|
|
18
18
|
"name": "HOSTING_AND_SUPPORT_BESPOKE",
|
|
19
19
|
"value": 4,
|
|
20
|
-
"publicValue": "
|
|
20
|
+
"publicValue": "Hosting & Support (Bespoke)"
|
|
21
21
|
},
|
|
22
22
|
"END_USER": {
|
|
23
23
|
"name": "END_USER",
|
|
24
24
|
"value": 5,
|
|
25
|
-
"publicValue": "
|
|
25
|
+
"publicValue": "End User"
|
|
26
26
|
}
|
|
27
27
|
} as const;
|
|
28
28
|
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export const PaymentMethodEnum = {
|
|
2
|
+
"CARD": {
|
|
3
|
+
"name": "CARD",
|
|
4
|
+
"value": "card",
|
|
5
|
+
"publicValue": "card"
|
|
6
|
+
},
|
|
7
|
+
"BACS": {
|
|
8
|
+
"name": "BACS",
|
|
9
|
+
"value": "bacs",
|
|
10
|
+
"publicValue": "bacs"
|
|
11
|
+
}
|
|
12
|
+
} as const;
|
|
13
|
+
|
|
14
|
+
export type PaymentMethodEnum = typeof PaymentMethodEnum;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export const UserGroupEnum = {
|
|
2
|
+
"ALL": {
|
|
3
|
+
"name": "ALL",
|
|
4
|
+
"value": "All",
|
|
5
|
+
"publicValue": "All"
|
|
6
|
+
},
|
|
7
|
+
"STANDARD": {
|
|
8
|
+
"name": "STANDARD",
|
|
9
|
+
"value": "Standard",
|
|
10
|
+
"publicValue": "Standard"
|
|
11
|
+
},
|
|
12
|
+
"TECHNICAL": {
|
|
13
|
+
"name": "TECHNICAL",
|
|
14
|
+
"value": "Technical",
|
|
15
|
+
"publicValue": "Technical"
|
|
16
|
+
},
|
|
17
|
+
"PRIVILEGED": {
|
|
18
|
+
"name": "PRIVILEGED",
|
|
19
|
+
"value": "Privileged",
|
|
20
|
+
"publicValue": "Privileged"
|
|
21
|
+
},
|
|
22
|
+
"DEVELOPMENT": {
|
|
23
|
+
"name": "DEVELOPMENT",
|
|
24
|
+
"value": "Development",
|
|
25
|
+
"publicValue": "Development"
|
|
26
|
+
}
|
|
27
|
+
} as const;
|
|
28
|
+
|
|
29
|
+
export type UserGroupEnum = typeof UserGroupEnum;
|