@ikonintegration/module-contractor-api 1.0.4 → 1.0.5
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/Api.ts +5 -25
- package/dist/Api.d.ts +1629 -0
- package/dist/Api.js +899 -0
- package/dist/Api.js.map +1 -0
- package/package.json +1 -1
package/Api.ts
CHANGED
|
@@ -291,7 +291,7 @@ export interface DeleteDepartmentResponseSchema {
|
|
|
291
291
|
/** Deleted department ID */
|
|
292
292
|
departmentID: string
|
|
293
293
|
/** Deletion confirmation */
|
|
294
|
-
deleted:
|
|
294
|
+
deleted: boolean
|
|
295
295
|
}
|
|
296
296
|
|
|
297
297
|
export interface AssociateAdminSchema {
|
|
@@ -320,7 +320,7 @@ export interface DeleteDepartmentAdminResponseSchema {
|
|
|
320
320
|
/** Removed administrator user ID */
|
|
321
321
|
userID: string
|
|
322
322
|
/** Removal confirmation */
|
|
323
|
-
removed:
|
|
323
|
+
removed: boolean
|
|
324
324
|
}
|
|
325
325
|
|
|
326
326
|
/** List of departments (public fields) */
|
|
@@ -724,7 +724,7 @@ export interface DeleteSubmissionResponseSchema {
|
|
|
724
724
|
/** Deleted submission ID */
|
|
725
725
|
submissionID: string
|
|
726
726
|
/** Deletion confirmation */
|
|
727
|
-
deleted:
|
|
727
|
+
deleted: boolean
|
|
728
728
|
}
|
|
729
729
|
|
|
730
730
|
/** Approval result */
|
|
@@ -873,7 +873,7 @@ export interface PostReassignResponseSchema {
|
|
|
873
873
|
/** New department ID */
|
|
874
874
|
departmentID: string
|
|
875
875
|
/** Reassignment confirmation */
|
|
876
|
-
reassigned:
|
|
876
|
+
reassigned: boolean
|
|
877
877
|
}
|
|
878
878
|
|
|
879
879
|
/** Rejection result */
|
|
@@ -1020,16 +1020,6 @@ export enum UpdateContractorStatusSchemaStatusEnum {
|
|
|
1020
1020
|
Disabled = 'disabled',
|
|
1021
1021
|
}
|
|
1022
1022
|
|
|
1023
|
-
/** Deletion confirmation */
|
|
1024
|
-
export enum DeleteDepartmentResponseSchemaDeletedEnum {
|
|
1025
|
-
True = true,
|
|
1026
|
-
}
|
|
1027
|
-
|
|
1028
|
-
/** Removal confirmation */
|
|
1029
|
-
export enum DeleteDepartmentAdminResponseSchemaRemovedEnum {
|
|
1030
|
-
True = true,
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
1023
|
/**
|
|
1034
1024
|
* Submission type
|
|
1035
1025
|
* @example "Submission"
|
|
@@ -1079,11 +1069,6 @@ export enum UpdateSubmissionSchemaTypeEnum {
|
|
|
1079
1069
|
Reimbursement = 'Reimbursement',
|
|
1080
1070
|
}
|
|
1081
1071
|
|
|
1082
|
-
/** Deletion confirmation */
|
|
1083
|
-
export enum DeleteSubmissionResponseSchemaDeletedEnum {
|
|
1084
|
-
True = true,
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
1072
|
/** The section to assign the code to */
|
|
1088
1073
|
export enum SubmissionCodeItemSchemaSectionEnum {
|
|
1089
1074
|
Service = 'Service',
|
|
@@ -1095,11 +1080,6 @@ export enum GetPdfResponseSchemaContentTypeEnum {
|
|
|
1095
1080
|
ApplicationPdf = 'application/pdf',
|
|
1096
1081
|
}
|
|
1097
1082
|
|
|
1098
|
-
/** Reassignment confirmation */
|
|
1099
|
-
export enum PostReassignResponseSchemaReassignedEnum {
|
|
1100
|
-
True = true,
|
|
1101
|
-
}
|
|
1102
|
-
|
|
1103
1083
|
/**
|
|
1104
1084
|
* Content type (must be application/pdf for guest)
|
|
1105
1085
|
* @example "application/pdf"
|
|
@@ -1513,7 +1493,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
1513
1493
|
|
|
1514
1494
|
/**
|
|
1515
1495
|
* @title Contractor Module API
|
|
1516
|
-
* @version 1.0.
|
|
1496
|
+
* @version 1.0.5
|
|
1517
1497
|
* @baseUrl http://localhost:8080
|
|
1518
1498
|
* @contact Ikon Integration <ikon@ikonintegration.com> (http://example.com)
|
|
1519
1499
|
*/
|