yellowgrid-api-ts 3.2.259 → 3.2.261
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/api.ts +3 -0
- package/dist/api.d.ts +3 -0
- package/dist/api.js +3 -0
- package/dist/models/ReportEnum.d.ts +15 -0
- package/dist/models/ReportEnum.js +15 -0
- package/models/ReportEnum.ts +15 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -6035,6 +6035,9 @@ export const ReportRequestDTOReportEnum = {
|
|
|
6035
6035
|
_8: '8',
|
|
6036
6036
|
_9: '9',
|
|
6037
6037
|
_10: '10',
|
|
6038
|
+
_11: '11',
|
|
6039
|
+
_12: '12',
|
|
6040
|
+
_13: '13',
|
|
6038
6041
|
} as const;
|
|
6039
6042
|
|
|
6040
6043
|
export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
|
package/dist/api.d.ts
CHANGED
|
@@ -5956,6 +5956,9 @@ export declare const ReportRequestDTOReportEnum: {
|
|
|
5956
5956
|
readonly _8: "8";
|
|
5957
5957
|
readonly _9: "9";
|
|
5958
5958
|
readonly _10: "10";
|
|
5959
|
+
readonly _11: "11";
|
|
5960
|
+
readonly _12: "12";
|
|
5961
|
+
readonly _13: "13";
|
|
5959
5962
|
};
|
|
5960
5963
|
export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
|
|
5961
5964
|
export declare const ReportRequestDTOGraphTypeEnum: {
|
package/dist/api.js
CHANGED
|
@@ -49,5 +49,20 @@ export declare const ReportEnum: {
|
|
|
49
49
|
readonly value: 10;
|
|
50
50
|
readonly publicValue: "Tech Support Customers";
|
|
51
51
|
};
|
|
52
|
+
readonly BILLING_BUNDLE_CALLS: {
|
|
53
|
+
readonly name: "BILLING_BUNDLE_CALLS";
|
|
54
|
+
readonly value: 11;
|
|
55
|
+
readonly publicValue: "Billing - Bundle Calls With Cost";
|
|
56
|
+
};
|
|
57
|
+
readonly BILLING_UNCONNECTED_CALLS: {
|
|
58
|
+
readonly name: "BILLING_UNCONNECTED_CALLS";
|
|
59
|
+
readonly value: 12;
|
|
60
|
+
readonly publicValue: "Billing - Unconnected Calls";
|
|
61
|
+
};
|
|
62
|
+
readonly BILLING_UNCONNECTED_SERVICES: {
|
|
63
|
+
readonly name: "BILLING_UNCONNECTED_SERVICES";
|
|
64
|
+
readonly value: 13;
|
|
65
|
+
readonly publicValue: "Billing - Unconnected Services";
|
|
66
|
+
};
|
|
52
67
|
};
|
|
53
68
|
export type ReportEnum = typeof ReportEnum;
|
|
@@ -51,5 +51,20 @@ exports.ReportEnum = {
|
|
|
51
51
|
"name": "TECH_SUPPORT_CUSTOMERS",
|
|
52
52
|
"value": 10,
|
|
53
53
|
"publicValue": "Tech Support Customers"
|
|
54
|
+
},
|
|
55
|
+
"BILLING_BUNDLE_CALLS": {
|
|
56
|
+
"name": "BILLING_BUNDLE_CALLS",
|
|
57
|
+
"value": 11,
|
|
58
|
+
"publicValue": "Billing - Bundle Calls With Cost"
|
|
59
|
+
},
|
|
60
|
+
"BILLING_UNCONNECTED_CALLS": {
|
|
61
|
+
"name": "BILLING_UNCONNECTED_CALLS",
|
|
62
|
+
"value": 12,
|
|
63
|
+
"publicValue": "Billing - Unconnected Calls"
|
|
64
|
+
},
|
|
65
|
+
"BILLING_UNCONNECTED_SERVICES": {
|
|
66
|
+
"name": "BILLING_UNCONNECTED_SERVICES",
|
|
67
|
+
"value": 13,
|
|
68
|
+
"publicValue": "Billing - Unconnected Services"
|
|
54
69
|
}
|
|
55
70
|
};
|
package/models/ReportEnum.ts
CHANGED
|
@@ -48,6 +48,21 @@ export const ReportEnum = {
|
|
|
48
48
|
"name": "TECH_SUPPORT_CUSTOMERS",
|
|
49
49
|
"value": 10,
|
|
50
50
|
"publicValue": "Tech Support Customers"
|
|
51
|
+
},
|
|
52
|
+
"BILLING_BUNDLE_CALLS": {
|
|
53
|
+
"name": "BILLING_BUNDLE_CALLS",
|
|
54
|
+
"value": 11,
|
|
55
|
+
"publicValue": "Billing - Bundle Calls With Cost"
|
|
56
|
+
},
|
|
57
|
+
"BILLING_UNCONNECTED_CALLS": {
|
|
58
|
+
"name": "BILLING_UNCONNECTED_CALLS",
|
|
59
|
+
"value": 12,
|
|
60
|
+
"publicValue": "Billing - Unconnected Calls"
|
|
61
|
+
},
|
|
62
|
+
"BILLING_UNCONNECTED_SERVICES": {
|
|
63
|
+
"name": "BILLING_UNCONNECTED_SERVICES",
|
|
64
|
+
"value": 13,
|
|
65
|
+
"publicValue": "Billing - Unconnected Services"
|
|
51
66
|
}
|
|
52
67
|
} as const;
|
|
53
68
|
|