fams-ts 1.0.27 → 1.0.30
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 +40 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/approvals.d.ts
CHANGED
|
@@ -204,6 +204,36 @@ export interface Body_upload_payment_approvals_bulk_approvals_upload_bulk__post
|
|
|
204
204
|
processMetadata?: string;
|
|
205
205
|
documentNames?: string[];
|
|
206
206
|
}
|
|
207
|
+
export interface ChecklistItemResponse {
|
|
208
|
+
id: string;
|
|
209
|
+
label: string;
|
|
210
|
+
description?: string;
|
|
211
|
+
isRequired?: boolean;
|
|
212
|
+
order: number;
|
|
213
|
+
isChecked?: boolean;
|
|
214
|
+
comment?: string;
|
|
215
|
+
}
|
|
216
|
+
export interface ChecklistItemSchema {
|
|
217
|
+
label: string;
|
|
218
|
+
description?: string;
|
|
219
|
+
isRequired?: boolean;
|
|
220
|
+
order?: number;
|
|
221
|
+
}
|
|
222
|
+
export interface ChecklistResponseItemSchema {
|
|
223
|
+
itemId: string;
|
|
224
|
+
isChecked?: boolean;
|
|
225
|
+
comment?: string;
|
|
226
|
+
}
|
|
227
|
+
export interface ChecklistTemplateResponse {
|
|
228
|
+
id: string;
|
|
229
|
+
name: string;
|
|
230
|
+
departmentCode?: string;
|
|
231
|
+
stage?: string;
|
|
232
|
+
description?: string;
|
|
233
|
+
items?: ChecklistItemResponse[];
|
|
234
|
+
submittedBy?: string;
|
|
235
|
+
submittedAt?: string;
|
|
236
|
+
}
|
|
207
237
|
export interface CompositeInstructionLineRequest {
|
|
208
238
|
amount: number | string;
|
|
209
239
|
payFrom: string;
|
|
@@ -455,9 +485,19 @@ export interface ReturnPaymentApprovalRequest {
|
|
|
455
485
|
reason: string;
|
|
456
486
|
targetStage?: string;
|
|
457
487
|
}
|
|
488
|
+
export interface SetupChecklistTemplateRequest {
|
|
489
|
+
name: string;
|
|
490
|
+
departmentCode?: string;
|
|
491
|
+
stage?: string;
|
|
492
|
+
description?: string;
|
|
493
|
+
items?: ChecklistItemSchema[];
|
|
494
|
+
}
|
|
458
495
|
export interface SubmitApprovalRequest {
|
|
459
496
|
note?: string;
|
|
460
497
|
}
|
|
498
|
+
export interface SubmitChecklistResponseRequest {
|
|
499
|
+
items: ChecklistResponseItemSchema[];
|
|
500
|
+
}
|
|
461
501
|
export interface UpdateFolderRequest {
|
|
462
502
|
name?: string;
|
|
463
503
|
description?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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, AddCompositeApprovalInstructionRequest, ApplyApprovalForexRequest, ApprovalActorResponse, ApprovalCommentResponse, ApprovalDocumentUrlResponse, ApprovalForexDetailResponse, ApprovalInstructionResponse, ApprovalStageHistoryResponse, ApprovalStatusResponse, ApprovePaymentApprovalRequest, AssignApprovalRequest, AssignmentResponse, AssignmentUserSchema, AttachmentResponse, AuthorityResponse, Body_upload_attachment_approvals__id__attach__post, Body_upload_attachments_bulk_approvals__id__attach_bulk__post, Body_upload_payment_approval_approvals_upload__post, Body_upload_payment_approvals_bulk_approvals_upload_bulk__post, CompositeInstructionLineRequest, CreateAuthorityRequest, CreateDestinationRequest, CreateFolderRequest, DeleteFolderResponse, DepartmentSummaryResponse, DestinationResponse, DocumentExportResponse, ExportSecurityMetadata, FolderApprovalsResponse, FolderMembershipResponse, FolderResponse, ForexRateLookupResponse, ForexRateOptionResponse, GLPostingResponse, InlinePaymentDestinationRequest, PaymentApprovalDetailResponse, PaymentApprovalResponse, PaymentApprovalSummaryResponse, PaymentStatusResponse, PaymentVoucherDeductionResponse, PaymentVoucherDetailResponse, PaymentVoucherDocumentDetailsResponse, PostToGLRequest, ProcessedApprovalResponse, RejectPaymentApprovalRequest, RemoveApprovalFromFolderResponse, RenameApprovalDocumentRequest, RenameApprovalDocumentResponse, ReturnPaymentApprovalRequest, SubmitApprovalRequest, UpdateFolderRequest, VoucherResponse } from './approvals';
|
|
5
|
+
export { AIEDetailResponse, AIEDocumentDetailsResponse, AddApprovalCommentRequest, AddApprovalInstructionRequest, AddApprovalToFolderRequest, AddApprovalToFolderResponse, AddCompositeApprovalInstructionRequest, ApplyApprovalForexRequest, ApprovalActorResponse, ApprovalCommentResponse, ApprovalDocumentUrlResponse, ApprovalForexDetailResponse, ApprovalInstructionResponse, ApprovalStageHistoryResponse, ApprovalStatusResponse, ApprovePaymentApprovalRequest, AssignApprovalRequest, AssignmentResponse, AssignmentUserSchema, AttachmentResponse, AuthorityResponse, Body_upload_attachment_approvals__id__attach__post, Body_upload_attachments_bulk_approvals__id__attach_bulk__post, Body_upload_payment_approval_approvals_upload__post, Body_upload_payment_approvals_bulk_approvals_upload_bulk__post, ChecklistItemResponse, ChecklistItemSchema, ChecklistResponseItemSchema, ChecklistTemplateResponse, CompositeInstructionLineRequest, CreateAuthorityRequest, CreateDestinationRequest, CreateFolderRequest, DeleteFolderResponse, DepartmentSummaryResponse, DestinationResponse, DocumentExportResponse, ExportSecurityMetadata, FolderApprovalsResponse, FolderMembershipResponse, FolderResponse, ForexRateLookupResponse, ForexRateOptionResponse, GLPostingResponse, InlinePaymentDestinationRequest, PaymentApprovalDetailResponse, PaymentApprovalResponse, PaymentApprovalSummaryResponse, PaymentStatusResponse, PaymentVoucherDeductionResponse, PaymentVoucherDetailResponse, PaymentVoucherDocumentDetailsResponse, PostToGLRequest, ProcessedApprovalResponse, RejectPaymentApprovalRequest, RemoveApprovalFromFolderResponse, RenameApprovalDocumentRequest, RenameApprovalDocumentResponse, ReturnPaymentApprovalRequest, SetupChecklistTemplateRequest, SubmitApprovalRequest, SubmitChecklistResponseRequest, 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, SessionDeviceSchema, SessionLocationSchema, SessionNetworkSchema, SessionSchema, StageMetaSchema, TwoFactorChallengeSchema, TwoFactorDisableSchema, TwoFactorEnableSchema, TwoFactorRecoveryCodesResponseSchema, TwoFactorSetupResponseSchema, UpdateProfileSchema, UpdateRoleSchema, UserActivitySchema, UserInfoSchema, UserLoginSchema, UserLookupSchema, UserPermissionOverrideSchema, VerifyLoginTwoFactorSchema } from './auth';
|
|
8
8
|
export { AIECompositeLineRequest, AIEDocumentDetailsRequest, AIELineResponse, AIERequest, AIEResponse, BudgetHeadCreateRequest, BudgetHeadResponse, BudgetHeadTransactionEntry, BudgetHeadTransactionHistoryResponse, BudgetHeadUpdateRequest, BulkBudgetHeadCreateRequest, BulkBudgetHeadCreateResponse, CompositeAIERequest, UpdateAIERequest, VoteBookEntryResponse, VoteBookResponse } from './budget';
|