Skip to content

Commit

Permalink
Merge pull request #90 from apptreesoftware/eyu_0515
Browse files Browse the repository at this point in the history
Update purchase require Date as Date, Add Condition as a part of Inspection Detail
  • Loading branch information
eyuapptree authored May 16, 2024
2 parents 4314a4c + c4c5422 commit f91be73
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions model/famis_models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ export interface TrackingCode {
Id: number;
Name: string;
Active: boolean;
TabOrder: number
TabOrder: number;
}

export interface FcaRank {
Expand Down Expand Up @@ -779,6 +779,7 @@ export interface InspectionDetail {
UpdatedById: number;
UpdatedByExternalId: string;
Weight: number;
Condition?: InspectionCondition;
}

export interface InspectionItem {
Expand All @@ -805,7 +806,7 @@ export interface InspectionItem {
ScoringTypeId: number;
DisplayOnlyFlag: boolean;
IncludeInReportFlag: boolean;
InspectionConditions?: InspectionCondition[]
InspectionConditions?: InspectionCondition[];
}

export interface InspectionClass {
Expand Down
2 changes: 1 addition & 1 deletion model/request_models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ export interface PurchaseRequisitionUpdateRequest {

export interface PurchaseRequisitionLineCreateRequest {
PRId: number;
RequiredDate?: string;
RequiredDate?: Date;
RequestId?: number;
RequestExternalId?: string;
Material?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "facility360",
"version": "1.0.25",
"version": "1.0.26",
"description": "A Node based 360Facility client SDK",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit f91be73

Please sign in to comment.