@ikonintegration/module-contractor-api 1.0.18 → 1.0.19

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 CHANGED
@@ -17,6 +17,66 @@ export interface ErrorResponse {
17
17
  errCode: string
18
18
  }
19
19
 
20
+ export interface CreateCodeSchema {
21
+ /** Unique code identifier (1-50 alphanumeric characters) */
22
+ codeID: CodeIDSchema
23
+ /**
24
+ * ID of the department this code belongs to
25
+ * @minLength 1
26
+ * @example "DEPT-2a1b3c4d5e6f"
27
+ */
28
+ departmentID: string
29
+ /**
30
+ * Description of the code (1-255 characters)
31
+ * @minLength 1
32
+ * @maxLength 255
33
+ * @example "Consulting services for safety audits"
34
+ */
35
+ description: string
36
+ }
37
+
38
+ /**
39
+ * Unique code identifier (1-50 alphanumeric characters)
40
+ * @minLength 1
41
+ * @maxLength 50
42
+ * @pattern ^[a-zA-Z0-9]+$
43
+ * @example "ACC001"
44
+ */
45
+ export type CodeIDSchema = string
46
+
47
+ /** Created code */
48
+ export interface PostCodeResponseSchema {
49
+ /** Code identifier */
50
+ codeID: string
51
+ /** Associated department ID */
52
+ departmentID: string
53
+ /** Code description */
54
+ description: string
55
+ }
56
+
57
+ export interface UpdateCodeSchema {
58
+ /**
59
+ * Updated description of the code (1-255 characters)
60
+ * @minLength 1
61
+ * @maxLength 255
62
+ * @example "Updated consulting services description"
63
+ */
64
+ description: string
65
+ }
66
+
67
+ /** Updated code */
68
+ export interface PutCodeResponseSchema {
69
+ /** Code identifier */
70
+ codeID: string
71
+ /** Associated department ID */
72
+ departmentID: string
73
+ /** Updated code description */
74
+ description: string
75
+ }
76
+
77
+ /** Code deletion result (empty body) */
78
+ export type DeleteCodeResponseSchema = object
79
+
20
80
  /** Codes list */
21
81
  export interface GetCodesResponseSchema {
22
82
  /** List of codes */
@@ -1100,58 +1160,51 @@ export interface PostApproveResponseSchema {
1100
1160
  status: string
1101
1161
  }
1102
1162
 
1103
- export interface CreateSubmissionCodeSchema {
1163
+ export interface AttachSubmissionCodeSchema {
1104
1164
  /**
1105
- * Description of the code (1-255 characters)
1106
- * @minLength 1
1107
- * @maxLength 255
1108
- * @example "Consulting services for safety audits"
1165
+ * The submission section the code is associated with
1166
+ * @example "Service"
1109
1167
  */
1110
- description: string
1168
+ section: AttachSubmissionCodeSchemaSectionEnum
1169
+ /**
1170
+ * Optional note for the code association (max 500 characters)
1171
+ * @maxLength 500
1172
+ * @example "Charge 20% to this code"
1173
+ */
1174
+ note?: string
1111
1175
  }
1112
1176
 
1113
- export interface SubmissionCodeMutationResponseSchema {
1114
- /** Code identifier */
1177
+ export interface SubmissionCodeAssociationResponseSchema {
1178
+ /** Parent submission ID */
1179
+ submissionID: string
1180
+ /**
1181
+ * The submission section the code is associated with
1182
+ * @example "Service"
1183
+ */
1184
+ section: SubmissionCodeAssociationResponseSchemaSectionEnum
1185
+ /** Associated catalog code ID */
1115
1186
  codeID: string
1116
- /** Derived department ID */
1117
- departmentID: string
1118
- /** Code description */
1119
- description: string
1187
+ /** Note for the association, or null when unset */
1188
+ note: string | null
1120
1189
  }
1121
1190
 
1122
- export interface UpdateSubmissionCodeSchema {
1191
+ export interface UpdateSubmissionCodeNoteSchema {
1123
1192
  /**
1124
- * Description of the code (1-255 characters)
1125
- * @minLength 1
1126
- * @maxLength 255
1127
- * @example "Consulting services for safety audits"
1193
+ * The submission section the code is associated with
1194
+ * @example "Service"
1128
1195
  */
1129
- description: string
1196
+ section: UpdateSubmissionCodeNoteSchemaSectionEnum
1197
+ /**
1198
+ * Optional note for the code association (max 500 characters)
1199
+ * @maxLength 500
1200
+ * @example "Charge 20% to this code"
1201
+ */
1202
+ note?: string
1130
1203
  }
1131
1204
 
1132
- /** Deletion result (empty body) */
1205
+ /** Detach result (empty body) */
1133
1206
  export type DeleteSubmissionCodeResponseSchema = object
1134
1207
 
1135
- export interface PutSubmissionCodesSchema {
1136
- /** Array of codes to assign to the submission sections */
1137
- codes: SubmissionCodeItemSchema[]
1138
- }
1139
-
1140
- /** Code assignment result */
1141
- export interface PutSubmissionCodesResponseSchema {
1142
- /** Submission ID */
1143
- submissionID: string
1144
- /** Assigned codes */
1145
- codes: {
1146
- /** Section (Service or Reimbursement) */
1147
- section: string
1148
- /** Billing code ID */
1149
- codeID: string
1150
- /** Optional note */
1151
- note: string | null
1152
- }[]
1153
- }
1154
-
1155
1208
  /** Request a presigned upload URL for a file attachment */
1156
1209
  export interface FileUploadRequestSchema {
1157
1210
  /**
@@ -1630,6 +1683,33 @@ export enum UpdateExpenseInputSchemaTransportationTypeEnum {
1630
1683
  Other = 'Other',
1631
1684
  }
1632
1685
 
1686
+ /**
1687
+ * The submission section the code is associated with
1688
+ * @example "Service"
1689
+ */
1690
+ export enum AttachSubmissionCodeSchemaSectionEnum {
1691
+ Service = 'Service',
1692
+ Reimbursement = 'Reimbursement',
1693
+ }
1694
+
1695
+ /**
1696
+ * The submission section the code is associated with
1697
+ * @example "Service"
1698
+ */
1699
+ export enum SubmissionCodeAssociationResponseSchemaSectionEnum {
1700
+ Service = 'Service',
1701
+ Reimbursement = 'Reimbursement',
1702
+ }
1703
+
1704
+ /**
1705
+ * The submission section the code is associated with
1706
+ * @example "Service"
1707
+ */
1708
+ export enum UpdateSubmissionCodeNoteSchemaSectionEnum {
1709
+ Service = 'Service',
1710
+ Reimbursement = 'Reimbursement',
1711
+ }
1712
+
1633
1713
  /** Content type */
1634
1714
  export enum GetPdfResponseSchemaContentTypeEnum {
1635
1715
  ApplicationPdf = 'application/pdf',
@@ -1643,6 +1723,18 @@ export enum GuestFileMetadataSchemaContentTypeEnum {
1643
1723
  ApplicationPdf = 'application/pdf',
1644
1724
  }
1645
1725
 
1726
+ export type CreateCodeData = PostCodeResponseSchema
1727
+
1728
+ export type CreateCodeError = ErrorResponse
1729
+
1730
+ export type UpdateCodeData = PutCodeResponseSchema
1731
+
1732
+ export type UpdateCodeError = ErrorResponse
1733
+
1734
+ export type DeleteCodeData = DeleteCodeResponseSchema
1735
+
1736
+ export type DeleteCodeError = ErrorResponse
1737
+
1646
1738
  export interface ListCodesParams {
1647
1739
  /**
1648
1740
  * Filter codes by department. If omitted, all codes are returned.
@@ -1805,21 +1897,61 @@ export type CreateApproveData = PostApproveResponseSchema
1805
1897
 
1806
1898
  export type CreateApproveError = ErrorResponse
1807
1899
 
1808
- export type CreateCodeData = SubmissionCodeMutationResponseSchema
1900
+ export type CreateCodeResult = SubmissionCodeAssociationResponseSchema
1809
1901
 
1810
- export type CreateCodeError = ErrorResponse
1902
+ export type CreateCodeFail = ErrorResponse
1811
1903
 
1812
- export type UpdateCodeData = SubmissionCodeMutationResponseSchema
1904
+ export type UpdateCodeResult = SubmissionCodeAssociationResponseSchema
1813
1905
 
1814
- export type UpdateCodeError = ErrorResponse
1906
+ export type UpdateCodeFail = ErrorResponse
1815
1907
 
1816
- export type DeleteCodeData = DeleteSubmissionCodeResponseSchema
1908
+ export interface DeleteCodeParams1 {
1909
+ /**
1910
+ * The submission section the code is associated with
1911
+ * @example "Service"
1912
+ */
1913
+ section: SectionEnum
1914
+ /**
1915
+ * Owner user identifier (submission partition key)
1916
+ * @minLength 1
1917
+ * @example "USR-2RvYIFNJR3CrJHKO0NqgGa1EwcS"
1918
+ */
1919
+ userId: string
1920
+ /**
1921
+ * Submission identifier
1922
+ * @minLength 1
1923
+ * @example "SUB-2RvYIFNJR3CrJHKO0NqgGa1EwcS"
1924
+ */
1925
+ submissionId: string
1926
+ /**
1927
+ * Code identifier
1928
+ * @minLength 1
1929
+ * @example "CODE-2RvYIFNJR3CrJHKO0NqgGa1EwcS"
1930
+ */
1931
+ codeId: string
1932
+ }
1817
1933
 
1818
- export type DeleteCodeError = ErrorResponse
1934
+ /**
1935
+ * The submission section the code is associated with
1936
+ * @example "Service"
1937
+ */
1938
+ export enum SectionEnum {
1939
+ Service = 'Service',
1940
+ Reimbursement = 'Reimbursement',
1941
+ }
1942
+
1943
+ export type DeleteCodeResult = DeleteSubmissionCodeResponseSchema
1819
1944
 
1820
- export type UpdateCodesData = PutSubmissionCodesResponseSchema
1945
+ export type DeleteCodeFail = ErrorResponse
1821
1946
 
1822
- export type UpdateCodesError = ErrorResponse
1947
+ /**
1948
+ * The submission section the code is associated with
1949
+ * @example "Service"
1950
+ */
1951
+ export enum DeleteCodeParams2SectionEnum {
1952
+ Service = 'Service',
1953
+ Reimbursement = 'Reimbursement',
1954
+ }
1823
1955
 
1824
1956
  export type CreateFileData = PostFileResponseSchema
1825
1957
 
@@ -1952,7 +2084,7 @@ export type ListExportData = GetSubmissionsExportResponseSchema
1952
2084
 
1953
2085
  export type ListExportError = ErrorResponse
1954
2086
 
1955
- export type CreateSearchData1 = SubmissionSearchResponse
2087
+ export type CreateSearchResult1 = SubmissionSearchResponse
1956
2088
 
1957
2089
  export type CreateSearchErrorData = ErrorResponse
1958
2090
 
@@ -2094,11 +2226,70 @@ export class HttpClient<SecurityDataType = unknown> {
2094
2226
 
2095
2227
  /**
2096
2228
  * @title Contractor Module API
2097
- * @version 1.0.18
2229
+ * @version 1.0.19
2098
2230
  * @baseUrl http://localhost:8080
2099
2231
  * @contact Ikon Integration <ikon@ikonintegration.com> (http://example.com)
2100
2232
  */
2101
2233
  export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
2234
+ code = {
2235
+ /**
2236
+ * @description Creates a new charging code associated with a department. Only Super Administrators can create codes.
2237
+ *
2238
+ * @tags Codes
2239
+ * @name CreateCode
2240
+ * @summary Create Code
2241
+ * @request POST:/code
2242
+ * @secure
2243
+ */
2244
+ createCode: (data: CreateCodeSchema, params: RequestParams = {}) =>
2245
+ this.request<CreateCodeData, CreateCodeError>({
2246
+ path: `/code`,
2247
+ method: 'POST',
2248
+ body: data,
2249
+ secure: true,
2250
+ type: ContentType.Json,
2251
+ format: 'json',
2252
+ ...params,
2253
+ }),
2254
+
2255
+ /**
2256
+ * @description Updates an existing charging code description. Only Super Administrators can update codes.
2257
+ *
2258
+ * @tags Codes
2259
+ * @name UpdateCode
2260
+ * @summary Update Code
2261
+ * @request PUT:/code/{codeID}
2262
+ * @secure
2263
+ */
2264
+ updateCode: (codeId: string, data: UpdateCodeSchema, params: RequestParams = {}) =>
2265
+ this.request<UpdateCodeData, UpdateCodeError>({
2266
+ path: `/code/${codeId}`,
2267
+ method: 'PUT',
2268
+ body: data,
2269
+ secure: true,
2270
+ type: ContentType.Json,
2271
+ format: 'json',
2272
+ ...params,
2273
+ }),
2274
+
2275
+ /**
2276
+ * @description Deletes a charging code. Prevents deletion if the code is referenced by existing submissions. Only Super Administrators can delete codes.
2277
+ *
2278
+ * @tags Codes
2279
+ * @name DeleteCode
2280
+ * @summary Delete Code
2281
+ * @request DELETE:/code/{codeID}
2282
+ * @secure
2283
+ */
2284
+ deleteCode: (codeId: string, params: RequestParams = {}) =>
2285
+ this.request<DeleteCodeData, DeleteCodeError>({
2286
+ path: `/code/${codeId}`,
2287
+ method: 'DELETE',
2288
+ secure: true,
2289
+ format: 'json',
2290
+ ...params,
2291
+ }),
2292
+ }
2102
2293
  codes = {
2103
2294
  /**
2104
2295
  * @description Returns all codes or codes filtered by department. Administrators and above can list codes.
@@ -2516,17 +2707,23 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
2516
2707
  }),
2517
2708
 
2518
2709
  /**
2519
- * @description Creates a new billing code bound to the parent submission's department. The codeID is System-generated and the departmentID is derived from the submission, so neither is taken from the request. Admin only.
2710
+ * @description Attaches an existing catalog code (addressed by codeID within the submission's department) to a submission's Service or Reimbursement section, with an optional note. Operates on the SubmissionCode association. Admin only.
2520
2711
  *
2521
2712
  * @tags Submissions
2522
2713
  * @name CreateCode
2523
- * @summary Create code on submission
2524
- * @request POST:/submission/{userID}/{submissionID}/code
2714
+ * @summary Attach a catalog code to a submission section
2715
+ * @request POST:/submission/{userID}/{submissionID}/code/{codeID}
2525
2716
  * @secure
2526
2717
  */
2527
- createCode: (userId: string, submissionId: string, data: CreateSubmissionCodeSchema, params: RequestParams = {}) =>
2528
- this.request<CreateCodeData, CreateCodeError>({
2529
- path: `/submission/${userId}/${submissionId}/code`,
2718
+ createCode: (
2719
+ userId: string,
2720
+ submissionId: string,
2721
+ codeId: string,
2722
+ data: AttachSubmissionCodeSchema,
2723
+ params: RequestParams = {}
2724
+ ) =>
2725
+ this.request<CreateCodeResult, CreateCodeFail>({
2726
+ path: `/submission/${userId}/${submissionId}/code/${codeId}`,
2530
2727
  method: 'POST',
2531
2728
  body: data,
2532
2729
  secure: true,
@@ -2536,11 +2733,11 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
2536
2733
  }),
2537
2734
 
2538
2735
  /**
2539
- * @description Updates the description of a billing code addressed by codeID and derived from the parent submission's department. Admin only.
2736
+ * @description Updates the note of a catalog code attached to a submission's Service or Reimbursement section. Operates on the SubmissionCode association. Admin only.
2540
2737
  *
2541
2738
  * @tags Submissions
2542
2739
  * @name UpdateCode
2543
- * @summary Update a submission code
2740
+ * @summary Update an attached submission code note
2544
2741
  * @request PUT:/submission/{userID}/{submissionID}/code/{codeID}
2545
2742
  * @secure
2546
2743
  */
@@ -2548,10 +2745,10 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
2548
2745
  userId: string,
2549
2746
  submissionId: string,
2550
2747
  codeId: string,
2551
- data: UpdateSubmissionCodeSchema,
2748
+ data: UpdateSubmissionCodeNoteSchema,
2552
2749
  params: RequestParams = {}
2553
2750
  ) =>
2554
- this.request<UpdateCodeData, UpdateCodeError>({
2751
+ this.request<UpdateCodeResult, UpdateCodeFail>({
2555
2752
  path: `/submission/${userId}/${submissionId}/code/${codeId}`,
2556
2753
  method: 'PUT',
2557
2754
  body: data,
@@ -2562,43 +2759,24 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
2562
2759
  }),
2563
2760
 
2564
2761
  /**
2565
- * @description Deletes a billing code owned by the submission's department. The owning departmentID is derived from the parent submission. Fails if the code is still referenced by any submission. Admin only.
2762
+ * @description Detaches an attached catalog code (addressed by codeID) from a submission's Service or Reimbursement section, identified by the required 'section' query parameter. Operates on the SubmissionCode association. Admin only.
2566
2763
  *
2567
2764
  * @tags Submissions
2568
2765
  * @name DeleteCode
2569
- * @summary Delete a code from a submission
2766
+ * @summary Detach a catalog code from a submission section
2570
2767
  * @request DELETE:/submission/{userID}/{submissionID}/code/{codeID}
2571
2768
  * @secure
2572
2769
  */
2573
- deleteCode: (userId: string, submissionId: string, codeId: string, params: RequestParams = {}) =>
2574
- this.request<DeleteCodeData, DeleteCodeError>({
2770
+ deleteCode: ({ userId, submissionId, codeId, ...query }: DeleteCodeParams1, params: RequestParams = {}) =>
2771
+ this.request<DeleteCodeResult, DeleteCodeFail>({
2575
2772
  path: `/submission/${userId}/${submissionId}/code/${codeId}`,
2576
2773
  method: 'DELETE',
2774
+ query: query,
2577
2775
  secure: true,
2578
2776
  format: 'json',
2579
2777
  ...params,
2580
2778
  }),
2581
2779
 
2582
- /**
2583
- * @description Assigns codes to Service and/or Reimbursement sections of a submission with optional notes. Only codes belonging to the submission's assigned department are allowed. Admin only.
2584
- *
2585
- * @tags Submissions
2586
- * @name UpdateCodes
2587
- * @summary Assign codes to submission sections
2588
- * @request PUT:/submission/{userID}/{submissionID}/codes
2589
- * @secure
2590
- */
2591
- updateCodes: (userId: string, submissionId: string, data: PutSubmissionCodesSchema, params: RequestParams = {}) =>
2592
- this.request<UpdateCodesData, UpdateCodesError>({
2593
- path: `/submission/${userId}/${submissionId}/codes`,
2594
- method: 'PUT',
2595
- body: data,
2596
- secure: true,
2597
- type: ContentType.Json,
2598
- format: 'json',
2599
- ...params,
2600
- }),
2601
-
2602
2780
  /**
2603
2781
  * @description Validates file constraints (size, type, count) and returns a presigned IKFS URL for uploading a file attachment to a submission line item. Max 10 MB, max 5 files per line item.
2604
2782
  *
@@ -2797,7 +2975,7 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
2797
2975
  }),
2798
2976
 
2799
2977
  /**
2800
- * @description Generate an Excel export of submissions scoped by role. Contractors see only their own submissions. Administrators see their department. Accountants and Super Administrators see all. Maximum 10,000 rows.
2978
+ * @description Generate an Excel export of submissions scoped by role. Contractors see only their own submissions. Administrators see their departments. Accountants and Super Administrators see all. Maximum 10,000 rows.
2801
2979
  *
2802
2980
  * @tags Submissions
2803
2981
  * @name ListExport
@@ -2824,7 +3002,7 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
2824
3002
  * @secure
2825
3003
  */
2826
3004
  createSearch: (data: SubmissionSearchInput, params: RequestParams = {}) =>
2827
- this.request<CreateSearchData1, CreateSearchErrorData>({
3005
+ this.request<CreateSearchResult1, CreateSearchErrorData>({
2828
3006
  path: `/submissions/search`,
2829
3007
  method: 'POST',
2830
3008
  body: data,
package/dist/Api.d.ts CHANGED
@@ -5,6 +5,60 @@ export interface ErrorResponse {
5
5
  /** Error code */
6
6
  errCode: string;
7
7
  }
8
+ export interface CreateCodeSchema {
9
+ /** Unique code identifier (1-50 alphanumeric characters) */
10
+ codeID: CodeIDSchema;
11
+ /**
12
+ * ID of the department this code belongs to
13
+ * @minLength 1
14
+ * @example "DEPT-2a1b3c4d5e6f"
15
+ */
16
+ departmentID: string;
17
+ /**
18
+ * Description of the code (1-255 characters)
19
+ * @minLength 1
20
+ * @maxLength 255
21
+ * @example "Consulting services for safety audits"
22
+ */
23
+ description: string;
24
+ }
25
+ /**
26
+ * Unique code identifier (1-50 alphanumeric characters)
27
+ * @minLength 1
28
+ * @maxLength 50
29
+ * @pattern ^[a-zA-Z0-9]+$
30
+ * @example "ACC001"
31
+ */
32
+ export type CodeIDSchema = string;
33
+ /** Created code */
34
+ export interface PostCodeResponseSchema {
35
+ /** Code identifier */
36
+ codeID: string;
37
+ /** Associated department ID */
38
+ departmentID: string;
39
+ /** Code description */
40
+ description: string;
41
+ }
42
+ export interface UpdateCodeSchema {
43
+ /**
44
+ * Updated description of the code (1-255 characters)
45
+ * @minLength 1
46
+ * @maxLength 255
47
+ * @example "Updated consulting services description"
48
+ */
49
+ description: string;
50
+ }
51
+ /** Updated code */
52
+ export interface PutCodeResponseSchema {
53
+ /** Code identifier */
54
+ codeID: string;
55
+ /** Associated department ID */
56
+ departmentID: string;
57
+ /** Updated code description */
58
+ description: string;
59
+ }
60
+ /** Code deletion result (empty body) */
61
+ export type DeleteCodeResponseSchema = object;
8
62
  /** Codes list */
9
63
  export interface GetCodesResponseSchema {
10
64
  /** List of codes */
@@ -1041,52 +1095,47 @@ export interface PostApproveResponseSchema {
1041
1095
  /** New submission status after approval */
1042
1096
  status: string;
1043
1097
  }
1044
- export interface CreateSubmissionCodeSchema {
1098
+ export interface AttachSubmissionCodeSchema {
1045
1099
  /**
1046
- * Description of the code (1-255 characters)
1047
- * @minLength 1
1048
- * @maxLength 255
1049
- * @example "Consulting services for safety audits"
1100
+ * The submission section the code is associated with
1101
+ * @example "Service"
1050
1102
  */
1051
- description: string;
1103
+ section: AttachSubmissionCodeSchemaSectionEnum;
1104
+ /**
1105
+ * Optional note for the code association (max 500 characters)
1106
+ * @maxLength 500
1107
+ * @example "Charge 20% to this code"
1108
+ */
1109
+ note?: string;
1052
1110
  }
1053
- export interface SubmissionCodeMutationResponseSchema {
1054
- /** Code identifier */
1111
+ export interface SubmissionCodeAssociationResponseSchema {
1112
+ /** Parent submission ID */
1113
+ submissionID: string;
1114
+ /**
1115
+ * The submission section the code is associated with
1116
+ * @example "Service"
1117
+ */
1118
+ section: SubmissionCodeAssociationResponseSchemaSectionEnum;
1119
+ /** Associated catalog code ID */
1055
1120
  codeID: string;
1056
- /** Derived department ID */
1057
- departmentID: string;
1058
- /** Code description */
1059
- description: string;
1121
+ /** Note for the association, or null when unset */
1122
+ note: string | null;
1060
1123
  }
1061
- export interface UpdateSubmissionCodeSchema {
1124
+ export interface UpdateSubmissionCodeNoteSchema {
1062
1125
  /**
1063
- * Description of the code (1-255 characters)
1064
- * @minLength 1
1065
- * @maxLength 255
1066
- * @example "Consulting services for safety audits"
1126
+ * The submission section the code is associated with
1127
+ * @example "Service"
1067
1128
  */
1068
- description: string;
1129
+ section: UpdateSubmissionCodeNoteSchemaSectionEnum;
1130
+ /**
1131
+ * Optional note for the code association (max 500 characters)
1132
+ * @maxLength 500
1133
+ * @example "Charge 20% to this code"
1134
+ */
1135
+ note?: string;
1069
1136
  }
1070
- /** Deletion result (empty body) */
1137
+ /** Detach result (empty body) */
1071
1138
  export type DeleteSubmissionCodeResponseSchema = object;
1072
- export interface PutSubmissionCodesSchema {
1073
- /** Array of codes to assign to the submission sections */
1074
- codes: SubmissionCodeItemSchema[];
1075
- }
1076
- /** Code assignment result */
1077
- export interface PutSubmissionCodesResponseSchema {
1078
- /** Submission ID */
1079
- submissionID: string;
1080
- /** Assigned codes */
1081
- codes: {
1082
- /** Section (Service or Reimbursement) */
1083
- section: string;
1084
- /** Billing code ID */
1085
- codeID: string;
1086
- /** Optional note */
1087
- note: string | null;
1088
- }[];
1089
- }
1090
1139
  /** Request a presigned upload URL for a file attachment */
1091
1140
  export interface FileUploadRequestSchema {
1092
1141
  /**
@@ -1529,6 +1578,30 @@ export declare enum UpdateExpenseInputSchemaTransportationTypeEnum {
1529
1578
  Rental = "Rental",
1530
1579
  Other = "Other"
1531
1580
  }
1581
+ /**
1582
+ * The submission section the code is associated with
1583
+ * @example "Service"
1584
+ */
1585
+ export declare enum AttachSubmissionCodeSchemaSectionEnum {
1586
+ Service = "Service",
1587
+ Reimbursement = "Reimbursement"
1588
+ }
1589
+ /**
1590
+ * The submission section the code is associated with
1591
+ * @example "Service"
1592
+ */
1593
+ export declare enum SubmissionCodeAssociationResponseSchemaSectionEnum {
1594
+ Service = "Service",
1595
+ Reimbursement = "Reimbursement"
1596
+ }
1597
+ /**
1598
+ * The submission section the code is associated with
1599
+ * @example "Service"
1600
+ */
1601
+ export declare enum UpdateSubmissionCodeNoteSchemaSectionEnum {
1602
+ Service = "Service",
1603
+ Reimbursement = "Reimbursement"
1604
+ }
1532
1605
  /** Content type */
1533
1606
  export declare enum GetPdfResponseSchemaContentTypeEnum {
1534
1607
  ApplicationPdf = "application/pdf"
@@ -1540,6 +1613,12 @@ export declare enum GetPdfResponseSchemaContentTypeEnum {
1540
1613
  export declare enum GuestFileMetadataSchemaContentTypeEnum {
1541
1614
  ApplicationPdf = "application/pdf"
1542
1615
  }
1616
+ export type CreateCodeData = PostCodeResponseSchema;
1617
+ export type CreateCodeError = ErrorResponse;
1618
+ export type UpdateCodeData = PutCodeResponseSchema;
1619
+ export type UpdateCodeError = ErrorResponse;
1620
+ export type DeleteCodeData = DeleteCodeResponseSchema;
1621
+ export type DeleteCodeError = ErrorResponse;
1543
1622
  export interface ListCodesParams {
1544
1623
  /**
1545
1624
  * Filter codes by department. If omitted, all codes are returned.
@@ -1653,14 +1732,53 @@ export type DeleteSubmissionData = DeleteSubmissionResponseSchema;
1653
1732
  export type DeleteSubmissionError = ErrorResponse;
1654
1733
  export type CreateApproveData = PostApproveResponseSchema;
1655
1734
  export type CreateApproveError = ErrorResponse;
1656
- export type CreateCodeData = SubmissionCodeMutationResponseSchema;
1657
- export type CreateCodeError = ErrorResponse;
1658
- export type UpdateCodeData = SubmissionCodeMutationResponseSchema;
1659
- export type UpdateCodeError = ErrorResponse;
1660
- export type DeleteCodeData = DeleteSubmissionCodeResponseSchema;
1661
- export type DeleteCodeError = ErrorResponse;
1662
- export type UpdateCodesData = PutSubmissionCodesResponseSchema;
1663
- export type UpdateCodesError = ErrorResponse;
1735
+ export type CreateCodeResult = SubmissionCodeAssociationResponseSchema;
1736
+ export type CreateCodeFail = ErrorResponse;
1737
+ export type UpdateCodeResult = SubmissionCodeAssociationResponseSchema;
1738
+ export type UpdateCodeFail = ErrorResponse;
1739
+ export interface DeleteCodeParams1 {
1740
+ /**
1741
+ * The submission section the code is associated with
1742
+ * @example "Service"
1743
+ */
1744
+ section: SectionEnum;
1745
+ /**
1746
+ * Owner user identifier (submission partition key)
1747
+ * @minLength 1
1748
+ * @example "USR-2RvYIFNJR3CrJHKO0NqgGa1EwcS"
1749
+ */
1750
+ userId: string;
1751
+ /**
1752
+ * Submission identifier
1753
+ * @minLength 1
1754
+ * @example "SUB-2RvYIFNJR3CrJHKO0NqgGa1EwcS"
1755
+ */
1756
+ submissionId: string;
1757
+ /**
1758
+ * Code identifier
1759
+ * @minLength 1
1760
+ * @example "CODE-2RvYIFNJR3CrJHKO0NqgGa1EwcS"
1761
+ */
1762
+ codeId: string;
1763
+ }
1764
+ /**
1765
+ * The submission section the code is associated with
1766
+ * @example "Service"
1767
+ */
1768
+ export declare enum SectionEnum {
1769
+ Service = "Service",
1770
+ Reimbursement = "Reimbursement"
1771
+ }
1772
+ export type DeleteCodeResult = DeleteSubmissionCodeResponseSchema;
1773
+ export type DeleteCodeFail = ErrorResponse;
1774
+ /**
1775
+ * The submission section the code is associated with
1776
+ * @example "Service"
1777
+ */
1778
+ export declare enum DeleteCodeParams2SectionEnum {
1779
+ Service = "Service",
1780
+ Reimbursement = "Reimbursement"
1781
+ }
1664
1782
  export type CreateFileData = PostFileResponseSchema;
1665
1783
  export type CreateFileError = ErrorResponse;
1666
1784
  export type GetFileData = GetFileResponseSchema;
@@ -1765,7 +1883,7 @@ export declare enum ListSubmissionsParams1TypeEnum {
1765
1883
  }
1766
1884
  export type ListExportData = GetSubmissionsExportResponseSchema;
1767
1885
  export type ListExportError = ErrorResponse;
1768
- export type CreateSearchData1 = SubmissionSearchResponse;
1886
+ export type CreateSearchResult1 = SubmissionSearchResponse;
1769
1887
  export type CreateSearchErrorData = ErrorResponse;
1770
1888
  import type { AxiosInstance, AxiosRequestConfig, ResponseType } from 'axios';
1771
1889
  export type QueryParamsType = Record<string | number, any>;
@@ -1810,11 +1928,43 @@ export declare class HttpClient<SecurityDataType = unknown> {
1810
1928
  }
1811
1929
  /**
1812
1930
  * @title Contractor Module API
1813
- * @version 1.0.18
1931
+ * @version 1.0.19
1814
1932
  * @baseUrl http://localhost:8080
1815
1933
  * @contact Ikon Integration <ikon@ikonintegration.com> (http://example.com)
1816
1934
  */
1817
1935
  export declare class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
1936
+ code: {
1937
+ /**
1938
+ * @description Creates a new charging code associated with a department. Only Super Administrators can create codes.
1939
+ *
1940
+ * @tags Codes
1941
+ * @name CreateCode
1942
+ * @summary Create Code
1943
+ * @request POST:/code
1944
+ * @secure
1945
+ */
1946
+ createCode: (data: CreateCodeSchema, params?: RequestParams) => Promise<PostCodeResponseSchema>;
1947
+ /**
1948
+ * @description Updates an existing charging code description. Only Super Administrators can update codes.
1949
+ *
1950
+ * @tags Codes
1951
+ * @name UpdateCode
1952
+ * @summary Update Code
1953
+ * @request PUT:/code/{codeID}
1954
+ * @secure
1955
+ */
1956
+ updateCode: (codeId: string, data: UpdateCodeSchema, params?: RequestParams) => Promise<PutCodeResponseSchema>;
1957
+ /**
1958
+ * @description Deletes a charging code. Prevents deletion if the code is referenced by existing submissions. Only Super Administrators can delete codes.
1959
+ *
1960
+ * @tags Codes
1961
+ * @name DeleteCode
1962
+ * @summary Delete Code
1963
+ * @request DELETE:/code/{codeID}
1964
+ * @secure
1965
+ */
1966
+ deleteCode: (codeId: string, params?: RequestParams) => Promise<object>;
1967
+ };
1818
1968
  codes: {
1819
1969
  /**
1820
1970
  * @description Returns all codes or codes filtered by department. Administrators and above can list codes.
@@ -2041,45 +2191,35 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2041
2191
  */
2042
2192
  createApprove: (userId: string, submissionId: string, params?: RequestParams) => Promise<PostApproveResponseSchema>;
2043
2193
  /**
2044
- * @description Creates a new billing code bound to the parent submission's department. The codeID is System-generated and the departmentID is derived from the submission, so neither is taken from the request. Admin only.
2194
+ * @description Attaches an existing catalog code (addressed by codeID within the submission's department) to a submission's Service or Reimbursement section, with an optional note. Operates on the SubmissionCode association. Admin only.
2045
2195
  *
2046
2196
  * @tags Submissions
2047
2197
  * @name CreateCode
2048
- * @summary Create code on submission
2049
- * @request POST:/submission/{userID}/{submissionID}/code
2198
+ * @summary Attach a catalog code to a submission section
2199
+ * @request POST:/submission/{userID}/{submissionID}/code/{codeID}
2050
2200
  * @secure
2051
2201
  */
2052
- createCode: (userId: string, submissionId: string, data: CreateSubmissionCodeSchema, params?: RequestParams) => Promise<SubmissionCodeMutationResponseSchema>;
2202
+ createCode: (userId: string, submissionId: string, codeId: string, data: AttachSubmissionCodeSchema, params?: RequestParams) => Promise<SubmissionCodeAssociationResponseSchema>;
2053
2203
  /**
2054
- * @description Updates the description of a billing code addressed by codeID and derived from the parent submission's department. Admin only.
2204
+ * @description Updates the note of a catalog code attached to a submission's Service or Reimbursement section. Operates on the SubmissionCode association. Admin only.
2055
2205
  *
2056
2206
  * @tags Submissions
2057
2207
  * @name UpdateCode
2058
- * @summary Update a submission code
2208
+ * @summary Update an attached submission code note
2059
2209
  * @request PUT:/submission/{userID}/{submissionID}/code/{codeID}
2060
2210
  * @secure
2061
2211
  */
2062
- updateCode: (userId: string, submissionId: string, codeId: string, data: UpdateSubmissionCodeSchema, params?: RequestParams) => Promise<SubmissionCodeMutationResponseSchema>;
2212
+ updateCode: (userId: string, submissionId: string, codeId: string, data: UpdateSubmissionCodeNoteSchema, params?: RequestParams) => Promise<SubmissionCodeAssociationResponseSchema>;
2063
2213
  /**
2064
- * @description Deletes a billing code owned by the submission's department. The owning departmentID is derived from the parent submission. Fails if the code is still referenced by any submission. Admin only.
2214
+ * @description Detaches an attached catalog code (addressed by codeID) from a submission's Service or Reimbursement section, identified by the required 'section' query parameter. Operates on the SubmissionCode association. Admin only.
2065
2215
  *
2066
2216
  * @tags Submissions
2067
2217
  * @name DeleteCode
2068
- * @summary Delete a code from a submission
2218
+ * @summary Detach a catalog code from a submission section
2069
2219
  * @request DELETE:/submission/{userID}/{submissionID}/code/{codeID}
2070
2220
  * @secure
2071
2221
  */
2072
- deleteCode: (userId: string, submissionId: string, codeId: string, params?: RequestParams) => Promise<object>;
2073
- /**
2074
- * @description Assigns codes to Service and/or Reimbursement sections of a submission with optional notes. Only codes belonging to the submission's assigned department are allowed. Admin only.
2075
- *
2076
- * @tags Submissions
2077
- * @name UpdateCodes
2078
- * @summary Assign codes to submission sections
2079
- * @request PUT:/submission/{userID}/{submissionID}/codes
2080
- * @secure
2081
- */
2082
- updateCodes: (userId: string, submissionId: string, data: PutSubmissionCodesSchema, params?: RequestParams) => Promise<PutSubmissionCodesResponseSchema>;
2222
+ deleteCode: ({ userId, submissionId, codeId, ...query }: DeleteCodeParams1, params?: RequestParams) => Promise<object>;
2083
2223
  /**
2084
2224
  * @description Validates file constraints (size, type, count) and returns a presigned IKFS URL for uploading a file attachment to a submission line item. Max 10 MB, max 5 files per line item.
2085
2225
  *
@@ -2183,7 +2323,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2183
2323
  */
2184
2324
  listSubmissions: (query: ListSubmissionsParams, params?: RequestParams) => Promise<GetSubmissionsResponseSchema>;
2185
2325
  /**
2186
- * @description Generate an Excel export of submissions scoped by role. Contractors see only their own submissions. Administrators see their department. Accountants and Super Administrators see all. Maximum 10,000 rows.
2326
+ * @description Generate an Excel export of submissions scoped by role. Contractors see only their own submissions. Administrators see their departments. Accountants and Super Administrators see all. Maximum 10,000 rows.
2187
2327
  *
2188
2328
  * @tags Submissions
2189
2329
  * @name ListExport
package/dist/Api.js CHANGED
@@ -13,7 +13,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
13
13
  return (mod && mod.__esModule) ? mod : { "default": mod };
14
14
  };
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.Api = exports.HttpClient = exports.ContentType = exports.ListSubmissionsParams1TypeEnum = exports.ListSubmissionsParams1StatusEnum = exports.TypeEnum1 = exports.StatusEnum = exports.GetSubmissionParams1ConsistentReadEnum = exports.ConsistentReadEnum = exports.ListContractorsParams1TypeEnum = exports.TypeEnum = exports.GuestFileMetadataSchemaContentTypeEnum = exports.GetPdfResponseSchemaContentTypeEnum = exports.UpdateExpenseInputSchemaTransportationTypeEnum = exports.UpdateExpenseInputSchemaMealTypeEnum = exports.UpdateExpenseInputSchemaTypeEnum = exports.UpdateSubmissionSchemaTypeEnum = exports.SubmissionCodeItemSchemaSectionEnum = exports.ExpenseItemSchemaTransportationTypeEnum = exports.ExpenseItemSchemaMealTypeEnum = exports.ExpenseItemSchemaTypeEnum = exports.SubmissionItemSchemaSourceEnum = exports.SubmissionItemSchemaStatusEnum = exports.SubmissionItemSchemaTypeEnum = exports.ExpenseInputSchemaTransportationTypeEnum = exports.ExpenseInputSchemaMealTypeEnum = exports.ExpenseInputSchemaTypeEnum = exports.CreateSubmissionSchemaTypeEnum = exports.UpdateContractorStatusSchemaStatusEnum = void 0;
16
+ exports.Api = exports.HttpClient = exports.ContentType = exports.ListSubmissionsParams1TypeEnum = exports.ListSubmissionsParams1StatusEnum = exports.TypeEnum1 = exports.StatusEnum = exports.DeleteCodeParams2SectionEnum = exports.SectionEnum = exports.GetSubmissionParams1ConsistentReadEnum = exports.ConsistentReadEnum = exports.ListContractorsParams1TypeEnum = exports.TypeEnum = exports.GuestFileMetadataSchemaContentTypeEnum = exports.GetPdfResponseSchemaContentTypeEnum = exports.UpdateSubmissionCodeNoteSchemaSectionEnum = exports.SubmissionCodeAssociationResponseSchemaSectionEnum = exports.AttachSubmissionCodeSchemaSectionEnum = exports.UpdateExpenseInputSchemaTransportationTypeEnum = exports.UpdateExpenseInputSchemaMealTypeEnum = exports.UpdateExpenseInputSchemaTypeEnum = exports.UpdateSubmissionSchemaTypeEnum = exports.SubmissionCodeItemSchemaSectionEnum = exports.ExpenseItemSchemaTransportationTypeEnum = exports.ExpenseItemSchemaMealTypeEnum = exports.ExpenseItemSchemaTypeEnum = exports.SubmissionItemSchemaSourceEnum = exports.SubmissionItemSchemaStatusEnum = exports.SubmissionItemSchemaTypeEnum = exports.ExpenseInputSchemaTransportationTypeEnum = exports.ExpenseInputSchemaMealTypeEnum = exports.ExpenseInputSchemaTypeEnum = exports.CreateSubmissionSchemaTypeEnum = exports.UpdateContractorStatusSchemaStatusEnum = void 0;
17
17
  /**
18
18
  * The contractor's local status. Set to 'active' to enable or 'disabled' to disable the account.
19
19
  * @example "active"
@@ -169,6 +169,33 @@ var UpdateExpenseInputSchemaTransportationTypeEnum;
169
169
  UpdateExpenseInputSchemaTransportationTypeEnum["Rental"] = "Rental";
170
170
  UpdateExpenseInputSchemaTransportationTypeEnum["Other"] = "Other";
171
171
  })(UpdateExpenseInputSchemaTransportationTypeEnum || (exports.UpdateExpenseInputSchemaTransportationTypeEnum = UpdateExpenseInputSchemaTransportationTypeEnum = {}));
172
+ /**
173
+ * The submission section the code is associated with
174
+ * @example "Service"
175
+ */
176
+ var AttachSubmissionCodeSchemaSectionEnum;
177
+ (function (AttachSubmissionCodeSchemaSectionEnum) {
178
+ AttachSubmissionCodeSchemaSectionEnum["Service"] = "Service";
179
+ AttachSubmissionCodeSchemaSectionEnum["Reimbursement"] = "Reimbursement";
180
+ })(AttachSubmissionCodeSchemaSectionEnum || (exports.AttachSubmissionCodeSchemaSectionEnum = AttachSubmissionCodeSchemaSectionEnum = {}));
181
+ /**
182
+ * The submission section the code is associated with
183
+ * @example "Service"
184
+ */
185
+ var SubmissionCodeAssociationResponseSchemaSectionEnum;
186
+ (function (SubmissionCodeAssociationResponseSchemaSectionEnum) {
187
+ SubmissionCodeAssociationResponseSchemaSectionEnum["Service"] = "Service";
188
+ SubmissionCodeAssociationResponseSchemaSectionEnum["Reimbursement"] = "Reimbursement";
189
+ })(SubmissionCodeAssociationResponseSchemaSectionEnum || (exports.SubmissionCodeAssociationResponseSchemaSectionEnum = SubmissionCodeAssociationResponseSchemaSectionEnum = {}));
190
+ /**
191
+ * The submission section the code is associated with
192
+ * @example "Service"
193
+ */
194
+ var UpdateSubmissionCodeNoteSchemaSectionEnum;
195
+ (function (UpdateSubmissionCodeNoteSchemaSectionEnum) {
196
+ UpdateSubmissionCodeNoteSchemaSectionEnum["Service"] = "Service";
197
+ UpdateSubmissionCodeNoteSchemaSectionEnum["Reimbursement"] = "Reimbursement";
198
+ })(UpdateSubmissionCodeNoteSchemaSectionEnum || (exports.UpdateSubmissionCodeNoteSchemaSectionEnum = UpdateSubmissionCodeNoteSchemaSectionEnum = {}));
172
199
  /** Content type */
173
200
  var GetPdfResponseSchemaContentTypeEnum;
174
201
  (function (GetPdfResponseSchemaContentTypeEnum) {
@@ -218,6 +245,24 @@ var GetSubmissionParams1ConsistentReadEnum;
218
245
  GetSubmissionParams1ConsistentReadEnum["True"] = "true";
219
246
  GetSubmissionParams1ConsistentReadEnum["False"] = "false";
220
247
  })(GetSubmissionParams1ConsistentReadEnum || (exports.GetSubmissionParams1ConsistentReadEnum = GetSubmissionParams1ConsistentReadEnum = {}));
248
+ /**
249
+ * The submission section the code is associated with
250
+ * @example "Service"
251
+ */
252
+ var SectionEnum;
253
+ (function (SectionEnum) {
254
+ SectionEnum["Service"] = "Service";
255
+ SectionEnum["Reimbursement"] = "Reimbursement";
256
+ })(SectionEnum || (exports.SectionEnum = SectionEnum = {}));
257
+ /**
258
+ * The submission section the code is associated with
259
+ * @example "Service"
260
+ */
261
+ var DeleteCodeParams2SectionEnum;
262
+ (function (DeleteCodeParams2SectionEnum) {
263
+ DeleteCodeParams2SectionEnum["Service"] = "Service";
264
+ DeleteCodeParams2SectionEnum["Reimbursement"] = "Reimbursement";
265
+ })(DeleteCodeParams2SectionEnum || (exports.DeleteCodeParams2SectionEnum = DeleteCodeParams2SectionEnum = {}));
221
266
  /**
222
267
  * Filter by submission status
223
268
  * @example "Submitted"
@@ -347,13 +392,67 @@ class HttpClient {
347
392
  exports.HttpClient = HttpClient;
348
393
  /**
349
394
  * @title Contractor Module API
350
- * @version 1.0.18
395
+ * @version 1.0.19
351
396
  * @baseUrl http://localhost:8080
352
397
  * @contact Ikon Integration <ikon@ikonintegration.com> (http://example.com)
353
398
  */
354
399
  class Api extends HttpClient {
355
400
  constructor() {
356
401
  super(...arguments);
402
+ this.code = {
403
+ /**
404
+ * @description Creates a new charging code associated with a department. Only Super Administrators can create codes.
405
+ *
406
+ * @tags Codes
407
+ * @name CreateCode
408
+ * @summary Create Code
409
+ * @request POST:/code
410
+ * @secure
411
+ */
412
+ createCode: (data, params = {}) => this.request({
413
+ path: `/code`,
414
+ method: 'POST',
415
+ body: data,
416
+ secure: true,
417
+ type: ContentType.Json,
418
+ format: 'json',
419
+ ...params,
420
+ }),
421
+ /**
422
+ * @description Updates an existing charging code description. Only Super Administrators can update codes.
423
+ *
424
+ * @tags Codes
425
+ * @name UpdateCode
426
+ * @summary Update Code
427
+ * @request PUT:/code/{codeID}
428
+ * @secure
429
+ */
430
+ updateCode: (codeId, data, params = {}) => this.request({
431
+ path: `/code/${codeId}`,
432
+ method: 'PUT',
433
+ body: data,
434
+ secure: true,
435
+ type: ContentType.Json,
436
+ format: 'json',
437
+ ...params,
438
+ }),
439
+ /**
440
+ * @description Deletes a charging code. Prevents deletion if the code is referenced by existing submissions. Only Super Administrators can delete codes.
441
+ *
442
+ * @tags Codes
443
+ * @name DeleteCode
444
+ * @summary Delete Code
445
+ * @request DELETE:/code/{codeID}
446
+ * @secure
447
+ */
448
+ deleteCode: (codeId, params = {}) => this.request({
449
+ path: `/code/${codeId}`,
450
+ method: 'DELETE',
451
+ secure: true,
452
+ format: 'json',
453
+ ...params,
454
+ }),
455
+ };
357
456
  this.codes = {
358
457
  /**
359
458
  * @description Returns all codes or codes filtered by department. Administrators and above can list codes.
@@ -731,16 +830,16 @@ class Api extends HttpClient {
731
830
  ...params,
732
831
  }),
733
832
  /**
734
- * @description Creates a new billing code bound to the parent submission's department. The codeID is System-generated and the departmentID is derived from the submission, so neither is taken from the request. Admin only.
833
+ * @description Attaches an existing catalog code (addressed by codeID within the submission's department) to a submission's Service or Reimbursement section, with an optional note. Operates on the SubmissionCode association. Admin only.
735
834
  *
736
835
  * @tags Submissions
737
836
  * @name CreateCode
738
- * @summary Create code on submission
739
- * @request POST:/submission/{userID}/{submissionID}/code
837
+ * @summary Attach a catalog code to a submission section
838
+ * @request POST:/submission/{userID}/{submissionID}/code/{codeID}
740
839
  * @secure
741
840
  */
742
- createCode: (userId, submissionId, data, params = {}) => this.request({
743
- path: `/submission/${userId}/${submissionId}/code`,
841
+ createCode: (userId, submissionId, codeId, data, params = {}) => this.request({
842
+ path: `/submission/${userId}/${submissionId}/code/${codeId}`,
744
843
  method: 'POST',
745
844
  body: data,
746
845
  secure: true,
@@ -749,11 +848,11 @@ class Api extends HttpClient {
749
848
  ...params,
750
849
  }),
751
850
  /**
752
- * @description Updates the description of a billing code addressed by codeID and derived from the parent submission's department. Admin only.
851
+ * @description Updates the note of a catalog code attached to a submission's Service or Reimbursement section. Operates on the SubmissionCode association. Admin only.
753
852
  *
754
853
  * @tags Submissions
755
854
  * @name UpdateCode
756
- * @summary Update a submission code
855
+ * @summary Update an attached submission code note
757
856
  * @request PUT:/submission/{userID}/{submissionID}/code/{codeID}
758
857
  * @secure
759
858
  */
@@ -767,39 +866,22 @@ class Api extends HttpClient {
767
866
  ...params,
768
867
  }),
769
868
  /**
770
- * @description Deletes a billing code owned by the submission's department. The owning departmentID is derived from the parent submission. Fails if the code is still referenced by any submission. Admin only.
869
+ * @description Detaches an attached catalog code (addressed by codeID) from a submission's Service or Reimbursement section, identified by the required 'section' query parameter. Operates on the SubmissionCode association. Admin only.
771
870
  *
772
871
  * @tags Submissions
773
872
  * @name DeleteCode
774
- * @summary Delete a code from a submission
873
+ * @summary Detach a catalog code from a submission section
775
874
  * @request DELETE:/submission/{userID}/{submissionID}/code/{codeID}
776
875
  * @secure
777
876
  */
778
- deleteCode: (userId, submissionId, codeId, params = {}) => this.request({
877
+ deleteCode: ({ userId, submissionId, codeId, ...query }, params = {}) => this.request({
779
878
  path: `/submission/${userId}/${submissionId}/code/${codeId}`,
780
879
  method: 'DELETE',
880
+ query: query,
781
881
  secure: true,
782
882
  format: 'json',
783
883
  ...params,
784
884
  }),
785
- /**
786
- * @description Assigns codes to Service and/or Reimbursement sections of a submission with optional notes. Only codes belonging to the submission's assigned department are allowed. Admin only.
787
- *
788
- * @tags Submissions
789
- * @name UpdateCodes
790
- * @summary Assign codes to submission sections
791
- * @request PUT:/submission/{userID}/{submissionID}/codes
792
- * @secure
793
- */
794
- updateCodes: (userId, submissionId, data, params = {}) => this.request({
795
- path: `/submission/${userId}/${submissionId}/codes`,
796
- method: 'PUT',
797
- body: data,
798
- secure: true,
799
- type: ContentType.Json,
800
- format: 'json',
801
- ...params,
802
- }),
803
885
  /**
804
886
  * @description Validates file constraints (size, type, count) and returns a presigned IKFS URL for uploading a file attachment to a submission line item. Max 10 MB, max 5 files per line item.
805
887
  *
@@ -974,7 +1056,7 @@ class Api extends HttpClient {
974
1056
  ...params,
975
1057
  }),
976
1058
  /**
977
- * @description Generate an Excel export of submissions scoped by role. Contractors see only their own submissions. Administrators see their department. Accountants and Super Administrators see all. Maximum 10,000 rows.
1059
+ * @description Generate an Excel export of submissions scoped by role. Contractors see only their own submissions. Administrators see their departments. Accountants and Super Administrators see all. Maximum 10,000 rows.
978
1060
  *
979
1061
  * @tags Submissions
980
1062
  * @name ListExport
package/dist/Api.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"Api.js","sourceRoot":"","sources":["../Api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Api.js","sourceRoot":"","sources":["../Api.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikonintegration/module-contractor-api",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "",
5
5
  "main": "dist/Api.js",
6
6
  "scripts": {