yellowgrid-api-ts 3.2.287 → 3.2.289
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 +2 -1
- package/dist/api.d.ts +2 -1
- package/dist/api.js +1 -0
- package/dist/models/ReportEnum.d.ts +5 -0
- package/dist/models/ReportEnum.js +5 -0
- package/docs/SearchSchoolModel.md +1 -1
- package/models/ReportEnum.ts +5 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -6783,6 +6783,7 @@ export const ReportRequestDTOReportEnum = {
|
|
|
6783
6783
|
_11: '11',
|
|
6784
6784
|
_12: '12',
|
|
6785
6785
|
_13: '13',
|
|
6786
|
+
_14: '14',
|
|
6786
6787
|
} as const;
|
|
6787
6788
|
|
|
6788
6789
|
export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
|
|
@@ -7442,7 +7443,7 @@ export interface SearchSchoolModel {
|
|
|
7442
7443
|
/**
|
|
7443
7444
|
* MIS
|
|
7444
7445
|
*/
|
|
7445
|
-
'mis'
|
|
7446
|
+
'mis'?: string | null;
|
|
7446
7447
|
/**
|
|
7447
7448
|
* Address
|
|
7448
7449
|
*/
|
package/dist/api.d.ts
CHANGED
|
@@ -6682,6 +6682,7 @@ export declare const ReportRequestDTOReportEnum: {
|
|
|
6682
6682
|
readonly _11: "11";
|
|
6683
6683
|
readonly _12: "12";
|
|
6684
6684
|
readonly _13: "13";
|
|
6685
|
+
readonly _14: "14";
|
|
6685
6686
|
};
|
|
6686
6687
|
export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
|
|
6687
6688
|
export declare const ReportRequestDTOGraphTypeEnum: {
|
|
@@ -7313,7 +7314,7 @@ export interface SearchSchoolModel {
|
|
|
7313
7314
|
/**
|
|
7314
7315
|
* MIS
|
|
7315
7316
|
*/
|
|
7316
|
-
'mis'
|
|
7317
|
+
'mis'?: string | null;
|
|
7317
7318
|
/**
|
|
7318
7319
|
* Address
|
|
7319
7320
|
*/
|
package/dist/api.js
CHANGED
|
@@ -64,5 +64,10 @@ export declare const ReportEnum: {
|
|
|
64
64
|
readonly value: 13;
|
|
65
65
|
readonly publicValue: "Billing - Unconnected Services";
|
|
66
66
|
};
|
|
67
|
+
readonly TCX_VALUE_ADD: {
|
|
68
|
+
readonly name: "TCX_VALUE_ADD";
|
|
69
|
+
readonly value: 14;
|
|
70
|
+
readonly publicValue: "3CX Value Add";
|
|
71
|
+
};
|
|
67
72
|
};
|
|
68
73
|
export type ReportEnum = typeof ReportEnum;
|
|
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**name** | **string** | School Name | [default to undefined]
|
|
13
13
|
**phaseOfEducation** | **string** | Phase of Education | [default to undefined]
|
|
14
14
|
**text** | **string** | Text Display | [default to undefined]
|
|
15
|
-
**mis** | **string** | MIS | [default to undefined]
|
|
15
|
+
**mis** | **string** | MIS | [optional] [default to undefined]
|
|
16
16
|
**address** | **string** | Address | [default to undefined]
|
|
17
17
|
|
|
18
18
|
## Example
|
package/models/ReportEnum.ts
CHANGED
|
@@ -63,6 +63,11 @@ export const ReportEnum = {
|
|
|
63
63
|
"name": "BILLING_UNCONNECTED_SERVICES",
|
|
64
64
|
"value": 13,
|
|
65
65
|
"publicValue": "Billing - Unconnected Services"
|
|
66
|
+
},
|
|
67
|
+
"TCX_VALUE_ADD": {
|
|
68
|
+
"name": "TCX_VALUE_ADD",
|
|
69
|
+
"value": 14,
|
|
70
|
+
"publicValue": "3CX Value Add"
|
|
66
71
|
}
|
|
67
72
|
} as const;
|
|
68
73
|
|