fams-ts 1.0.22 → 1.0.23
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/approvals.d.ts +20 -0
- package/dist/budget.d.ts +25 -0
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/approvals.d.ts
CHANGED
|
@@ -54,6 +54,12 @@ export interface AddApprovalToFolderResponse {
|
|
|
54
54
|
addedBy?: string;
|
|
55
55
|
addedAt: string;
|
|
56
56
|
}
|
|
57
|
+
export interface AddCompositeApprovalInstructionRequest {
|
|
58
|
+
instruction: string;
|
|
59
|
+
payTo: InlinePaymentDestinationRequest | string;
|
|
60
|
+
authority: string;
|
|
61
|
+
lines?: CompositeInstructionLineRequest[];
|
|
62
|
+
}
|
|
57
63
|
export interface ApprovalActorResponse {
|
|
58
64
|
id: string;
|
|
59
65
|
username?: string;
|
|
@@ -159,6 +165,10 @@ export interface Body_upload_payment_approval_approvals_upload__post {
|
|
|
159
165
|
file: string;
|
|
160
166
|
processMetadata?: string;
|
|
161
167
|
}
|
|
168
|
+
export interface CompositeInstructionLineRequest {
|
|
169
|
+
amount: number | string;
|
|
170
|
+
payFrom: string;
|
|
171
|
+
}
|
|
162
172
|
export interface CreateAuthorityRequest {
|
|
163
173
|
name: string;
|
|
164
174
|
position: string;
|
|
@@ -349,6 +359,7 @@ export interface ProcessedApprovalResponse {
|
|
|
349
359
|
createdBy?: string;
|
|
350
360
|
createdAt: string;
|
|
351
361
|
documentUrl: string;
|
|
362
|
+
documentFileName?: string;
|
|
352
363
|
pvNumber?: string;
|
|
353
364
|
glPosted?: boolean;
|
|
354
365
|
processMetadata?: any;
|
|
@@ -368,6 +379,15 @@ export interface RemoveApprovalFromFolderResponse {
|
|
|
368
379
|
approvalId: string;
|
|
369
380
|
removed: boolean;
|
|
370
381
|
}
|
|
382
|
+
export interface RenameApprovalDocumentRequest {
|
|
383
|
+
documentName: string;
|
|
384
|
+
}
|
|
385
|
+
export interface RenameApprovalDocumentResponse {
|
|
386
|
+
id: string;
|
|
387
|
+
paymentId: string;
|
|
388
|
+
documentFileName: string;
|
|
389
|
+
processMetadata?: any;
|
|
390
|
+
}
|
|
371
391
|
export interface ReturnPaymentApprovalRequest {
|
|
372
392
|
reason: string;
|
|
373
393
|
targetStage?: string;
|
package/dist/budget.d.ts
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
* Auto-generated by custom Python script.
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
*/
|
|
5
|
+
export interface AIECompositeLineRequest {
|
|
6
|
+
budgetHeadCode: string;
|
|
7
|
+
amount: number | string;
|
|
8
|
+
instructionId?: string;
|
|
9
|
+
}
|
|
5
10
|
export interface AIEDocumentDetailsRequest {
|
|
6
11
|
treasuryForm?: string;
|
|
7
12
|
warrantType?: string;
|
|
@@ -46,6 +51,18 @@ export interface AIEDocumentDetailsResponse {
|
|
|
46
51
|
signatureDate?: string;
|
|
47
52
|
amountInWords: string;
|
|
48
53
|
}
|
|
54
|
+
export interface AIELineResponse {
|
|
55
|
+
id: string;
|
|
56
|
+
budgetHeadCode: string;
|
|
57
|
+
amount: string;
|
|
58
|
+
instructionId?: string;
|
|
59
|
+
budgetHeadName?: string;
|
|
60
|
+
headNo?: string;
|
|
61
|
+
subHeadNo?: string;
|
|
62
|
+
itemCode?: string;
|
|
63
|
+
classificationCode?: string;
|
|
64
|
+
accountCode?: string;
|
|
65
|
+
}
|
|
49
66
|
export interface AIERequest {
|
|
50
67
|
budgetHeadCode: string;
|
|
51
68
|
referenceNo: string;
|
|
@@ -63,6 +80,8 @@ export interface AIEResponse {
|
|
|
63
80
|
instructionId?: string;
|
|
64
81
|
createdAt: string;
|
|
65
82
|
documentDetails?: AIEDocumentDetailsResponse;
|
|
83
|
+
lines?: AIELineResponse[];
|
|
84
|
+
isComposite?: boolean;
|
|
66
85
|
}
|
|
67
86
|
export interface BudgetHeadCreateRequest {
|
|
68
87
|
code: string;
|
|
@@ -132,6 +151,12 @@ export interface BulkBudgetHeadCreateResponse {
|
|
|
132
151
|
skippedCodes: string[];
|
|
133
152
|
errors: string[];
|
|
134
153
|
}
|
|
154
|
+
export interface CompositeAIERequest {
|
|
155
|
+
referenceNo?: string;
|
|
156
|
+
purpose: string;
|
|
157
|
+
lines?: AIECompositeLineRequest[];
|
|
158
|
+
documentDetails?: AIEDocumentDetailsRequest;
|
|
159
|
+
}
|
|
135
160
|
export interface DocumentExportResponse {
|
|
136
161
|
format: string;
|
|
137
162
|
filename: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
* Auto-generated index.
|
|
3
3
|
*/
|
|
4
4
|
export { AccountCreateRequest, AccountResponse, Body_open_period_master_periods_open__period_code___post, HTTPValidationError, OpeningBalanceRequest, OpeningBalanceResponse, PeriodResponse, SettingsCategoryRequest, SettingsCategoryResponse, ValidationError } from './account';
|
|
5
|
-
export { AIEDetailResponse, AIEDocumentDetailsResponse, AddApprovalCommentRequest, AddApprovalInstructionRequest, AddApprovalToFolderRequest, AddApprovalToFolderResponse, ApprovalActorResponse, ApprovalCommentResponse, ApprovalDocumentUrlResponse, ApprovalInstructionResponse, ApprovalStageHistoryResponse, ApprovalStatusResponse, ApprovePaymentApprovalRequest, AssignApprovalRequest, AssignmentResponse, AssignmentUserSchema, AttachmentResponse, AuthorityResponse, Body_upload_attachment_approvals__id__attach__post, Body_upload_payment_approval_approvals_upload__post, CreateAuthorityRequest, CreateDestinationRequest, CreateFolderRequest, DeleteFolderResponse, DepartmentSummaryResponse, DestinationResponse, DocumentExportResponse, FolderApprovalsResponse, FolderMembershipResponse, FolderResponse, GLPostingResponse, InlinePaymentDestinationRequest, PaymentApprovalDetailResponse, PaymentApprovalResponse, PaymentApprovalSummaryResponse, PaymentStatusResponse, PaymentVoucherDeductionResponse, PaymentVoucherDetailResponse, PaymentVoucherDocumentDetailsResponse, PostToGLRequest, ProcessedApprovalResponse, RejectPaymentApprovalRequest, RemoveApprovalFromFolderResponse, ReturnPaymentApprovalRequest, SubmitApprovalRequest, UpdateFolderRequest, VoucherResponse } from './approvals';
|
|
5
|
+
export { AIEDetailResponse, AIEDocumentDetailsResponse, AddApprovalCommentRequest, AddApprovalInstructionRequest, AddApprovalToFolderRequest, AddApprovalToFolderResponse, AddCompositeApprovalInstructionRequest, ApprovalActorResponse, ApprovalCommentResponse, ApprovalDocumentUrlResponse, ApprovalInstructionResponse, ApprovalStageHistoryResponse, ApprovalStatusResponse, ApprovePaymentApprovalRequest, AssignApprovalRequest, AssignmentResponse, AssignmentUserSchema, AttachmentResponse, AuthorityResponse, Body_upload_attachment_approvals__id__attach__post, Body_upload_payment_approval_approvals_upload__post, CompositeInstructionLineRequest, CreateAuthorityRequest, CreateDestinationRequest, CreateFolderRequest, DeleteFolderResponse, DepartmentSummaryResponse, DestinationResponse, DocumentExportResponse, FolderApprovalsResponse, FolderMembershipResponse, FolderResponse, GLPostingResponse, InlinePaymentDestinationRequest, PaymentApprovalDetailResponse, PaymentApprovalResponse, PaymentApprovalSummaryResponse, PaymentStatusResponse, PaymentVoucherDeductionResponse, PaymentVoucherDetailResponse, PaymentVoucherDocumentDetailsResponse, PostToGLRequest, ProcessedApprovalResponse, RejectPaymentApprovalRequest, RemoveApprovalFromFolderResponse, RenameApprovalDocumentRequest, RenameApprovalDocumentResponse, ReturnPaymentApprovalRequest, SubmitApprovalRequest, UpdateFolderRequest, VoucherResponse } from './approvals';
|
|
6
6
|
export { AssetCreateSchema, LiabilityCreateSchema, ReceivableCreateSchema } from './assets';
|
|
7
7
|
export { ActiveSessionSchema, AssignUserRoleSchema, ChangePasswordSchema, CreateDepartmentSchema, CreatePermissionSchema, CreateRoleSchema, DepartmentSchema, LoginResponseSchema, ManagedUserRegisterSchema, PermissionSchema, RefreshTokenSchema, RolePermissionsSchema, RoleSchema, SessionSchema, UpdateRoleSchema, UserInfoSchema, UserLoginSchema, UserLookupSchema, UserPermissionOverrideSchema } from './auth';
|
|
8
|
-
export { AIEDocumentDetailsRequest, AIERequest, AIEResponse, BudgetHeadCreateRequest, BudgetHeadResponse, BudgetHeadTransactionEntry, BudgetHeadTransactionHistoryResponse, BudgetHeadUpdateRequest, BulkBudgetHeadCreateRequest, BulkBudgetHeadCreateResponse, UpdateAIERequest, VoteBookEntryResponse, VoteBookResponse } from './budget';
|
|
8
|
+
export { AIECompositeLineRequest, AIEDocumentDetailsRequest, AIELineResponse, AIERequest, AIEResponse, BudgetHeadCreateRequest, BudgetHeadResponse, BudgetHeadTransactionEntry, BudgetHeadTransactionHistoryResponse, BudgetHeadUpdateRequest, BulkBudgetHeadCreateRequest, BulkBudgetHeadCreateResponse, CompositeAIERequest, UpdateAIERequest, VoteBookEntryResponse, VoteBookResponse } from './budget';
|
|
9
9
|
export { PaymentLineCreateRequest, PaymentLineResponse, PaymentVoucherCreateRequest, PaymentVoucherDeductionRequest, PaymentVoucherDocumentDetailsRequest, PaymentVoucherResponse } from './expenditure';
|
|
10
10
|
export { MarkReadRequest, NotificationResponse } from './notifications';
|
|
11
11
|
export { ReceiptResponse, RecordReceiptRequest } from './receipts';
|