fams-ts 1.0.9 → 1.0.10

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/account.d.ts CHANGED
@@ -7,12 +7,16 @@ export interface AccountCreateRequest {
7
7
  name?: string;
8
8
  type?: string;
9
9
  isActive?: boolean;
10
+ isPostable?: boolean;
11
+ defaultCreditAccountCode?: string;
10
12
  }
11
13
  export interface AccountResponse {
12
14
  code: string;
13
15
  name: string;
14
16
  type: string;
15
17
  isActive: boolean;
18
+ isPostable: boolean;
19
+ defaultCreditAccountCode?: string;
16
20
  }
17
21
  export interface Body_open_period_master_periods_open__period_code___post {
18
22
  startDate: string;
package/dist/assets.d.ts CHANGED
@@ -2,9 +2,28 @@
2
2
  * Auto-generated by custom Python script.
3
3
  * Do not edit manually.
4
4
  */
5
+ export interface AssetCreateSchema {
6
+ name: string;
7
+ acquisitionDate: string;
8
+ cost: number | string;
9
+ depreciationRate: number;
10
+ description?: string;
11
+ }
5
12
  export interface HTTPValidationError {
6
13
  detail?: ValidationError[];
7
14
  }
15
+ export interface LiabilityCreateSchema {
16
+ description: string;
17
+ amount: number | string;
18
+ dueDate: string;
19
+ liabilityType: string;
20
+ }
21
+ export interface ReceivableCreateSchema {
22
+ description: string;
23
+ amount: number | string;
24
+ dueDate: string;
25
+ receivableType: string;
26
+ }
8
27
  export interface ValidationError {
9
28
  loc: number | string[];
10
29
  msg: string;
package/dist/budget.d.ts CHANGED
@@ -31,6 +31,7 @@ export interface BudgetHeadResponse {
31
31
  accountCode: string;
32
32
  appropriation: string;
33
33
  commitments: string;
34
+ totalActual: string;
34
35
  available: string;
35
36
  }
36
37
  export interface HTTPValidationError {
@@ -30,6 +30,7 @@ export interface PaymentVoucherResponse {
30
30
  description: string;
31
31
  status: string;
32
32
  lines: PaymentLineResponse[];
33
+ stub?: boolean;
33
34
  }
34
35
  export interface ValidationError {
35
36
  loc: number | string[];
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@
3
3
  */
4
4
  export { AccountCreateRequest, AccountResponse, Body_open_period_master_periods_open__period_code___post, HTTPValidationError, OpeningBalanceRequest, OpeningBalanceResponse, PeriodResponse, ValidationError } from './account';
5
5
  export { AIEDetailResponse, AddApprovalCommentRequest, AddApprovalInstructionRequest, AddApprovalToFolderRequest, AddApprovalToFolderResponse, ApprovalCommentResponse, ApprovalDocumentUrlResponse, ApprovalInstructionResponse, ApprovalStatusResponse, ApprovePaymentApprovalRequest, AttachmentResponse, AuthorityResponse, Body_upload_attachment_approvals__id__attach__post, Body_upload_payment_approval_approvals_upload__post, CreateAuthorityRequest, CreateDestinationRequest, CreateFolderRequest, DeleteFolderResponse, DepartmentSummaryResponse, DestinationResponse, FolderApprovalsResponse, FolderMembershipResponse, FolderResponse, GLPostingResponse, PaymentApprovalDetailResponse, PaymentApprovalResponse, PaymentApprovalSummaryResponse, PaymentStatusResponse, PaymentVoucherDetailResponse, RejectPaymentApprovalRequest, RemoveApprovalFromFolderResponse, ReturnPaymentApprovalRequest, UpdateFolderRequest, VoucherResponse } from './approvals';
6
+ export { AssetCreateSchema, LiabilityCreateSchema, ReceivableCreateSchema } from './assets';
6
7
  export { ActiveSessionSchema, AssignUserRoleSchema, ChangePasswordSchema, CreateDepartmentSchema, CreatePermissionSchema, CreateRoleSchema, DepartmentSchema, LoginResponseSchema, PermissionSchema, RefreshTokenSchema, RolePermissionsSchema, RoleSchema, SessionSchema, UpdateRoleSchema, UserInfoSchema, UserLoginSchema, UserLookupSchema, UserPermissionOverrideSchema, UserRegisterSchema } from './auth';
7
8
  export { AIERequest, AIEResponse, BudgetHeadCreateRequest, BudgetHeadResponse } from './budget';
8
9
  export { PaymentLineCreateRequest, PaymentLineResponse, PaymentVoucherCreateRequest, PaymentVoucherResponse } from './expenditure';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fams-ts",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "TypeScript types for FAMS Backend (Auto-generated)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",