@equipmyschool/emsweb3-models 1.0.41 → 1.0.44
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/enums.ts +0 -0
- package/index.d.ts +6 -1
- package/index.js +0 -0
- package/package.json +1 -1
package/enums.ts
CHANGED
|
File without changes
|
package/index.d.ts
CHANGED
|
@@ -124,7 +124,7 @@ export interface NewRegistration {
|
|
|
124
124
|
export interface OrderProblem {
|
|
125
125
|
ID: number;
|
|
126
126
|
Reference: string;
|
|
127
|
-
|
|
127
|
+
WaitingOn: User;
|
|
128
128
|
Reason: string;
|
|
129
129
|
}
|
|
130
130
|
export interface Country {
|
|
@@ -503,6 +503,10 @@ export interface Project {
|
|
|
503
503
|
RetainOrders: boolean;
|
|
504
504
|
RetainProducts: boolean;
|
|
505
505
|
}
|
|
506
|
+
export interface ProjectClosureResponse {
|
|
507
|
+
Successful: boolean;
|
|
508
|
+
IncompleteOrders: OrderProblem[];
|
|
509
|
+
}
|
|
506
510
|
export interface ProjectInfo extends IActionable, IProject, FolderInfo {
|
|
507
511
|
DeliveryAddressID: number;
|
|
508
512
|
InvoiceAddressID: number;
|
|
@@ -540,6 +544,7 @@ export interface RegistrationRequest extends UserDetail {
|
|
|
540
544
|
CompanyType: CompanyType;
|
|
541
545
|
}
|
|
542
546
|
export interface ReportProblemRequest {
|
|
547
|
+
ProblemUrl: string;
|
|
543
548
|
ProblemType: number;
|
|
544
549
|
Comment: string;
|
|
545
550
|
}
|
package/index.js
CHANGED
|
File without changes
|