@cuby-ui/api 0.0.487 → 0.0.488

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.
Files changed (252) hide show
  1. package/constants/api-url.d.ts +10 -0
  2. package/constants/index.d.ts +10 -0
  3. package/constants/shared-construction-http-options.d.ts +4 -0
  4. package/constants/shared-factory-http-options.d.ts +4 -0
  5. package/constants/shared-instruction-http-options.d.ts +4 -0
  6. package/constants/shared-learning-http-option.d.ts +4 -0
  7. package/constants/shared-platform-http-options.d.ts +4 -0
  8. package/constants/shared-project-http-options.d.ts +4 -0
  9. package/constants/shared-schedule-http-options.d.ts +4 -0
  10. package/constants/storage-object-type.d.ts +6 -0
  11. package/constants/x-ndjson-config-options.d.ts +8 -0
  12. package/construction/index.d.ts +2 -0
  13. package/construction/models/action-job.d.ts +36 -0
  14. package/construction/models/approval.api.d.ts +14 -0
  15. package/construction/models/criterion-api.options.d.ts +32 -0
  16. package/construction/models/holder-acceptance-criterion-wrapper.d.ts +8 -0
  17. package/construction/models/index.d.ts +18 -0
  18. package/construction/models/job-action-type.d.ts +6 -0
  19. package/construction/models/job-api.options.d.ts +97 -0
  20. package/construction/models/main-job.d.ts +21 -0
  21. package/construction/models/modal-header.option.d.ts +8 -0
  22. package/construction/models/operation.model.d.ts +16 -0
  23. package/construction/models/quantum-group-resources-structure-api.options.d.ts +25 -0
  24. package/construction/models/resource.d.ts +27 -0
  25. package/construction/models/skill.model.d.ts +6 -0
  26. package/construction/models/stage-job-information.d.ts +10 -0
  27. package/construction/models/technology.api.options.d.ts +38 -0
  28. package/construction/models/technology.d.ts +46 -0
  29. package/construction/models/utility-api.options.d.ts +3 -0
  30. package/construction/models/utility-component-instruction-structure-api.options.d.ts +20 -0
  31. package/construction/models/utility.d.ts +40 -0
  32. package/construction/services/criterion-api.service.d.ts +25 -0
  33. package/construction/services/index.d.ts +6 -0
  34. package/construction/services/job-api.service.d.ts +32 -0
  35. package/construction/services/quantum-group-resources-structure-api.service.d.ts +15 -0
  36. package/construction/services/utility-api.service.d.ts +21 -0
  37. package/construction/services/utility-component-instruction-structure-api.service.d.ts +17 -0
  38. package/construction/services/utility-instructions-api.service.d.ts +10 -0
  39. package/esm2022/constants/api-url.mjs +2 -0
  40. package/esm2022/constants/index.mjs +10 -0
  41. package/esm2022/constants/shared-construction-http-options.mjs +6 -0
  42. package/esm2022/constants/shared-factory-http-options.mjs +6 -0
  43. package/esm2022/constants/shared-instruction-http-options.mjs +6 -0
  44. package/esm2022/constants/shared-learning-http-option.mjs +6 -0
  45. package/esm2022/constants/shared-platform-http-options.mjs +6 -0
  46. package/esm2022/constants/shared-project-http-options.mjs +6 -0
  47. package/esm2022/constants/shared-schedule-http-options.mjs +6 -0
  48. package/esm2022/constants/storage-object-type.mjs +5 -0
  49. package/esm2022/constants/x-ndjson-config-options.mjs +7 -0
  50. package/esm2022/construction/index.mjs +3 -0
  51. package/esm2022/construction/models/action-job.mjs +2 -0
  52. package/esm2022/construction/models/approval.api.mjs +2 -0
  53. package/esm2022/construction/models/criterion-api.options.mjs +2 -0
  54. package/esm2022/construction/models/holder-acceptance-criterion-wrapper.mjs +2 -0
  55. package/esm2022/construction/models/index.mjs +19 -0
  56. package/esm2022/construction/models/job-action-type.mjs +5 -0
  57. package/esm2022/construction/models/job-api.options.mjs +2 -0
  58. package/esm2022/construction/models/main-job.mjs +2 -0
  59. package/esm2022/construction/models/modal-header.option.mjs +2 -0
  60. package/esm2022/construction/models/operation.model.mjs +2 -0
  61. package/esm2022/construction/models/quantum-group-resources-structure-api.options.mjs +7 -0
  62. package/esm2022/construction/models/resource.mjs +7 -0
  63. package/esm2022/construction/models/skill.model.mjs +2 -0
  64. package/esm2022/construction/models/stage-job-information.mjs +2 -0
  65. package/esm2022/construction/models/technology.api.options.mjs +11 -0
  66. package/esm2022/construction/models/technology.mjs +2 -0
  67. package/esm2022/construction/models/utility-api.options.mjs +2 -0
  68. package/esm2022/construction/models/utility-component-instruction-structure-api.options.mjs +2 -0
  69. package/esm2022/construction/models/utility.mjs +2 -0
  70. package/esm2022/construction/services/criterion-api.service.mjs +93 -0
  71. package/esm2022/construction/services/index.mjs +7 -0
  72. package/esm2022/construction/services/job-api.service.mjs +128 -0
  73. package/esm2022/construction/services/quantum-group-resources-structure-api.service.mjs +30 -0
  74. package/esm2022/construction/services/utility-api.service.mjs +49 -0
  75. package/esm2022/construction/services/utility-component-instruction-structure-api.service.mjs +56 -0
  76. package/esm2022/construction/services/utility-instructions-api.service.mjs +25 -0
  77. package/esm2022/cuby-ui-api.mjs +5 -0
  78. package/esm2022/factory/index.mjs +3 -0
  79. package/esm2022/factory/models/arrow-work-flow-component-controller-api.options.mjs +6 -0
  80. package/esm2022/factory/models/arrow-work-flow-component-structure-api.options.mjs +2 -0
  81. package/esm2022/factory/models/arrow-work-flow-controller-api.options.mjs +2 -0
  82. package/esm2022/factory/models/arrow-work-flow-readiness-checklist-api.options.mjs +2 -0
  83. package/esm2022/factory/models/arrow-work-flow-trasnfer-controller-api.options.mjs +2 -0
  84. package/esm2022/factory/models/consumable.mjs +2 -0
  85. package/esm2022/factory/models/factory-api.options.mjs +2 -0
  86. package/esm2022/factory/models/index.mjs +14 -0
  87. package/esm2022/factory/models/intra-logistic.mjs +6 -0
  88. package/esm2022/factory/models/maintenance.mjs +2 -0
  89. package/esm2022/factory/models/manufacturer.mjs +2 -0
  90. package/esm2022/factory/models/measurment.mjs +2 -0
  91. package/esm2022/factory/models/specification.mjs +2 -0
  92. package/esm2022/factory/models/specifications.mjs +2 -0
  93. package/esm2022/factory/services/arrow-work-flow-actions-api.service.mjs +22 -0
  94. package/esm2022/factory/services/arrow-work-flow-component-controller-api.service.mjs +25 -0
  95. package/esm2022/factory/services/arrow-work-flow-component-structure-api.service.mjs +28 -0
  96. package/esm2022/factory/services/arrow-work-flow-readiness-checklist-api.service.mjs +25 -0
  97. package/esm2022/factory/services/arrow-work-flow-trasnfer-controller-api.service.mjs +61 -0
  98. package/esm2022/factory/services/factory-api.service.mjs +52 -0
  99. package/esm2022/factory/services/index.mjs +8 -0
  100. package/esm2022/factory/services/instructions-api.service.mjs +28 -0
  101. package/esm2022/index.mjs +9 -0
  102. package/esm2022/instruction/index.mjs +3 -0
  103. package/esm2022/instruction/models/index.mjs +2 -0
  104. package/esm2022/instruction/models/instruction-assessment-config.mjs +17 -0
  105. package/esm2022/instruction/services/index.mjs +2 -0
  106. package/esm2022/instruction/services/instruction-assessment-config-api.service.mjs +65 -0
  107. package/esm2022/platform/index.mjs +3 -0
  108. package/esm2022/platform/models/exchange-context-api.options.mjs +2 -0
  109. package/esm2022/platform/models/index.mjs +2 -0
  110. package/esm2022/platform/models/user-company-api.options.mjs +2 -0
  111. package/esm2022/platform/services/exchange-context-api.service.mjs +32 -0
  112. package/esm2022/platform/services/index.mjs +3 -0
  113. package/esm2022/platform/services/user-company-api.service.mjs +19 -0
  114. package/esm2022/project/index.mjs +3 -0
  115. package/esm2022/project/models/design-job-main-api.options.mjs +2 -0
  116. package/esm2022/project/models/design-job-main-group-api.options.mjs +2 -0
  117. package/esm2022/project/models/index.mjs +10 -0
  118. package/esm2022/project/models/project-api.options.mjs +2 -0
  119. package/esm2022/project/models/project-details-phase-init-api.options.mjs +2 -0
  120. package/esm2022/project/models/project-init-phase-api.options.mjs +2 -0
  121. package/esm2022/project/models/project-phase-design-technology-api.options.mjs +2 -0
  122. package/esm2022/project/models/project-resource-phase-init-api.options.mjs +2 -0
  123. package/esm2022/project/models/project-schedule-phase-init-api.options.mjs +2 -0
  124. package/esm2022/project/models/technology-phase-init-api.options.mjs +2 -0
  125. package/esm2022/project/services/crew-template-api.service.mjs +32 -0
  126. package/esm2022/project/services/design-job-main-api.service.mjs +22 -0
  127. package/esm2022/project/services/design-job-main-group-api.service.mjs +61 -0
  128. package/esm2022/project/services/index.mjs +11 -0
  129. package/esm2022/project/services/project-api.service.mjs +46 -0
  130. package/esm2022/project/services/project-details-phase-init-api.service.mjs +22 -0
  131. package/esm2022/project/services/project-init-phase-api.service.mjs +22 -0
  132. package/esm2022/project/services/project-phase-design-technology-api.service.mjs +34 -0
  133. package/esm2022/project/services/project-resource-phase-init-api.service.mjs +49 -0
  134. package/esm2022/project/services/project-schedule-phase-init-api.service.mjs +22 -0
  135. package/esm2022/project/services/technology-phase-init-api.service.mjs +38 -0
  136. package/esm2022/shared/index.mjs +3 -0
  137. package/esm2022/shared/models/criterion-type-operations.mjs +2 -0
  138. package/esm2022/shared/models/criterion.mjs +2 -0
  139. package/esm2022/shared/models/frame-api.options.mjs +2 -0
  140. package/esm2022/shared/models/index.mjs +19 -0
  141. package/esm2022/shared/models/instruction-type-operations.mjs +2 -0
  142. package/esm2022/shared/models/instruction.mjs +8 -0
  143. package/esm2022/shared/models/job.options.mjs +8 -0
  144. package/esm2022/shared/models/jtext-api.options.mjs +2 -0
  145. package/esm2022/shared/models/list-object-instruction.mjs +2 -0
  146. package/esm2022/shared/models/node-checklist-api.options.mjs +2 -0
  147. package/esm2022/shared/models/node-checklist.options.mjs +2 -0
  148. package/esm2022/shared/models/review-type.mjs +7 -0
  149. package/esm2022/shared/models/storage-object-criterion.mjs +2 -0
  150. package/esm2022/shared/models/storage-object-instruction.mjs +2 -0
  151. package/esm2022/shared/models/storage-object.mjs +2 -0
  152. package/esm2022/shared/models/subject.mjs +9 -0
  153. package/esm2022/shared/models/tree-struct-navigator-api.options.mjs +2 -0
  154. package/esm2022/shared/models/tree-struct-type.options.mjs +2 -0
  155. package/esm2022/shared/models/tree-struct.options.mjs +2 -0
  156. package/esm2022/shared/services/frame-api.service.mjs +45 -0
  157. package/esm2022/shared/services/index.mjs +6 -0
  158. package/esm2022/shared/services/jtext-api.service.mjs +53 -0
  159. package/esm2022/shared/services/node-checklist-api.service.mjs +61 -0
  160. package/esm2022/shared/services/tree-struct-api.service.mjs +31 -0
  161. package/esm2022/shared/services/tree-struct-navigator-api.service.mjs +54 -0
  162. package/esm2022/tokens/api-url-context.mjs +3 -0
  163. package/esm2022/tokens/index.mjs +2 -0
  164. package/factory/index.d.ts +2 -0
  165. package/factory/models/arrow-work-flow-component-controller-api.options.d.ts +56 -0
  166. package/factory/models/arrow-work-flow-component-structure-api.options.d.ts +7 -0
  167. package/factory/models/arrow-work-flow-controller-api.options.d.ts +56 -0
  168. package/factory/models/arrow-work-flow-readiness-checklist-api.options.d.ts +4 -0
  169. package/factory/models/arrow-work-flow-trasnfer-controller-api.options.d.ts +65 -0
  170. package/factory/models/consumable.d.ts +25 -0
  171. package/factory/models/factory-api.options.d.ts +26 -0
  172. package/factory/models/index.d.ts +13 -0
  173. package/factory/models/intra-logistic.d.ts +46 -0
  174. package/factory/models/maintenance.d.ts +12 -0
  175. package/factory/models/manufacturer.d.ts +5 -0
  176. package/factory/models/measurment.d.ts +6 -0
  177. package/factory/models/specification.d.ts +4 -0
  178. package/factory/models/specifications.d.ts +8 -0
  179. package/factory/services/arrow-work-flow-actions-api.service.d.ts +10 -0
  180. package/factory/services/arrow-work-flow-component-controller-api.service.d.ts +11 -0
  181. package/factory/services/arrow-work-flow-component-structure-api.service.d.ts +12 -0
  182. package/factory/services/arrow-work-flow-readiness-checklist-api.service.d.ts +11 -0
  183. package/factory/services/arrow-work-flow-trasnfer-controller-api.service.d.ts +20 -0
  184. package/factory/services/factory-api.service.d.ts +17 -0
  185. package/factory/services/index.d.ts +7 -0
  186. package/factory/services/instructions-api.service.d.ts +11 -0
  187. package/fesm2022/cuby-ui-api.mjs +1347 -0
  188. package/fesm2022/cuby-ui-api.mjs.map +1 -0
  189. package/index.d.ts +8 -0
  190. package/instruction/index.d.ts +2 -0
  191. package/instruction/models/index.d.ts +1 -0
  192. package/instruction/models/instruction-assessment-config.d.ts +43 -0
  193. package/instruction/services/index.d.ts +1 -0
  194. package/instruction/services/instruction-assessment-config-api.service.d.ts +25 -0
  195. package/package.json +1 -4
  196. package/platform/index.d.ts +2 -0
  197. package/platform/models/exchange-context-api.options.d.ts +19 -0
  198. package/platform/models/index.d.ts +2 -0
  199. package/platform/models/user-company-api.options.d.ts +20 -0
  200. package/platform/services/exchange-context-api.service.d.ts +10 -0
  201. package/platform/services/index.d.ts +2 -0
  202. package/platform/services/user-company-api.service.d.ts +9 -0
  203. package/project/index.d.ts +2 -0
  204. package/project/models/design-job-main-api.options.d.ts +12 -0
  205. package/project/models/design-job-main-group-api.options.d.ts +71 -0
  206. package/project/models/index.d.ts +9 -0
  207. package/project/models/project-api.options.d.ts +75 -0
  208. package/project/models/project-details-phase-init-api.options.d.ts +7 -0
  209. package/project/models/project-init-phase-api.options.d.ts +29 -0
  210. package/project/models/project-phase-design-technology-api.options.d.ts +33 -0
  211. package/project/models/project-resource-phase-init-api.options.d.ts +31 -0
  212. package/project/models/project-schedule-phase-init-api.options.d.ts +10 -0
  213. package/project/models/technology-phase-init-api.options.d.ts +4 -0
  214. package/project/services/crew-template-api.service.d.ts +12 -0
  215. package/project/services/design-job-main-api.service.d.ts +11 -0
  216. package/project/services/design-job-main-group-api.service.d.ts +20 -0
  217. package/project/services/index.d.ts +10 -0
  218. package/project/services/project-api.service.d.ts +15 -0
  219. package/project/services/project-details-phase-init-api.service.d.ts +10 -0
  220. package/project/services/project-init-phase-api.service.d.ts +10 -0
  221. package/project/services/project-phase-design-technology-api.service.d.ts +13 -0
  222. package/project/services/project-resource-phase-init-api.service.d.ts +14 -0
  223. package/project/services/project-schedule-phase-init-api.service.d.ts +10 -0
  224. package/project/services/technology-phase-init-api.service.d.ts +13 -0
  225. package/shared/index.d.ts +2 -0
  226. package/shared/models/criterion-type-operations.d.ts +7 -0
  227. package/shared/models/criterion.d.ts +7 -0
  228. package/shared/models/frame-api.options.d.ts +22 -0
  229. package/shared/models/index.d.ts +18 -0
  230. package/shared/models/instruction-type-operations.d.ts +7 -0
  231. package/shared/models/instruction.d.ts +15 -0
  232. package/shared/models/job.options.d.ts +64 -0
  233. package/shared/models/jtext-api.options.d.ts +20 -0
  234. package/shared/models/list-object-instruction.d.ts +6 -0
  235. package/shared/models/node-checklist-api.options.d.ts +29 -0
  236. package/shared/models/node-checklist.options.d.ts +46 -0
  237. package/shared/models/review-type.d.ts +5 -0
  238. package/shared/models/storage-object-criterion.d.ts +3 -0
  239. package/shared/models/storage-object-instruction.d.ts +3 -0
  240. package/shared/models/storage-object.d.ts +6 -0
  241. package/shared/models/subject.d.ts +9 -0
  242. package/shared/models/tree-struct-navigator-api.options.d.ts +21 -0
  243. package/shared/models/tree-struct-type.options.d.ts +10 -0
  244. package/shared/models/tree-struct.options.d.ts +15 -0
  245. package/shared/services/frame-api.service.d.ts +19 -0
  246. package/shared/services/index.d.ts +5 -0
  247. package/shared/services/jtext-api.service.d.ts +23 -0
  248. package/shared/services/node-checklist-api.service.d.ts +18 -0
  249. package/shared/services/tree-struct-api.service.d.ts +13 -0
  250. package/shared/services/tree-struct-navigator-api.service.d.ts +19 -0
  251. package/tokens/api-url-context.d.ts +6 -0
  252. package/tokens/index.d.ts +1 -0
@@ -0,0 +1,12 @@
1
+ import { CuiNullable } from '@cuby-ui/cdk';
2
+ import { Consumable } from './consumable';
3
+ export interface Maintenance {
4
+ readonly id: string;
5
+ readonly interval: {
6
+ readonly unitPeriod: string;
7
+ readonly value: CuiNullable<number>;
8
+ };
9
+ readonly duration: string;
10
+ readonly consumables: Consumable<any>[];
11
+ readonly holderInstructionStorageId?: string;
12
+ }
@@ -0,0 +1,5 @@
1
+ export interface Manufacturer {
2
+ readonly id?: string;
3
+ readonly name: string;
4
+ readonly link: string;
5
+ }
@@ -0,0 +1,6 @@
1
+ import { CuiNullable } from '@cuby-ui/cdk';
2
+ export interface Measurement {
3
+ readonly measure: string;
4
+ readonly unit: CuiNullable<string>;
5
+ readonly value: number;
6
+ }
@@ -0,0 +1,4 @@
1
+ export interface Specification {
2
+ readonly value: number;
3
+ readonly unit: string;
4
+ }
@@ -0,0 +1,8 @@
1
+ import { CuiNullable } from '@cuby-ui/cdk';
2
+ import { Specification } from './specification';
3
+ export interface Specifications {
4
+ readonly width: CuiNullable<Specification>;
5
+ readonly height: CuiNullable<Specification>;
6
+ readonly length: CuiNullable<Specification>;
7
+ readonly weight: CuiNullable<Specification>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import type { Observable } from 'rxjs';
2
+ import { WorkflowChecklistInformation } from '../models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CuiArrowWorkFlowActionsApiService {
5
+ private readonly httpClient;
6
+ private readonly WORKFLOW_ACTION_URL;
7
+ changeInformation(actionId: string, body: WorkflowChecklistInformation): Observable<void>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CuiArrowWorkFlowActionsApiService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<CuiArrowWorkFlowActionsApiService>;
10
+ }
@@ -0,0 +1,11 @@
1
+ import type { Observable } from 'rxjs';
2
+ import { WorkflowActionComponent, WorkflowComponentType } from '../models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CuiArrowWorkFlowComponentControllerApiService {
5
+ private readonly httpClient;
6
+ private readonly WORKFLOW_URL;
7
+ createComponent(arrowActionWorkFlowId: string, type: WorkflowComponentType): Observable<WorkflowActionComponent>;
8
+ deleteComponent(arrowActionWorkFlowId: string, componentId: string): Observable<void>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CuiArrowWorkFlowComponentControllerApiService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<CuiArrowWorkFlowComponentControllerApiService>;
11
+ }
@@ -0,0 +1,12 @@
1
+ import type { Observable } from 'rxjs';
2
+ import { MoveArrowWorkFlowStructureParams, WorkflowComponentType, WorkflowSuitableAction } from '../models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CuiArrowWorkFlowComponentStructureApiService {
5
+ private readonly httpClient;
6
+ private readonly WORKFLOW_URL;
7
+ moveStructure(arrowActionWorkFlowId: string, params: MoveArrowWorkFlowStructureParams): Observable<void>;
8
+ getStructureOptions(arrowActionWorkFlowId: string, type: WorkflowComponentType): Observable<WorkflowSuitableAction[]>;
9
+ deleteStructure(arrowActionWorkFlowId: string, type: WorkflowComponentType, structureId: string): Observable<void>;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<CuiArrowWorkFlowComponentStructureApiService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<CuiArrowWorkFlowComponentStructureApiService>;
12
+ }
@@ -0,0 +1,11 @@
1
+ import type { Observable } from 'rxjs';
2
+ import { WorkflowChecklistStructure } from '../models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CuiArrowWorkFlowReadinessChecklistApiService {
5
+ private readonly httpClient;
6
+ private readonly WORKFLOW_URL;
7
+ createChecklist(arrowId: string): Observable<WorkflowChecklistStructure>;
8
+ injectChecklist(arrowId: string, checklistId: string): Observable<WorkflowChecklistStructure>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CuiArrowWorkFlowReadinessChecklistApiService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<CuiArrowWorkFlowReadinessChecklistApiService>;
11
+ }
@@ -0,0 +1,20 @@
1
+ import type { Observable } from 'rxjs';
2
+ import { StorageObjectInstruction } from '../../shared';
3
+ import { AddArrowWorkFlowTransferRequestBody, AvailableAllWorkflowTransfer, CopyWorkflowInstructionRequestBody, CreateWorkflowInstructionRequestBody, InsertWorkflowInstructionRequestBody, TransferType, UnbindWorkflowInstructionRequestBody, UpdateArrowWorkFlowTransferRequestBody, WorkflowTransferStructure } from '../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CuiArrowWorkFlowTransferControllerApiService {
6
+ private readonly httpClient;
7
+ private readonly WORKFLOW_URL;
8
+ private readonly TRANSFER_URL;
9
+ createInstruction(body: CreateWorkflowInstructionRequestBody): Observable<StorageObjectInstruction>;
10
+ copyInstruction(body: CopyWorkflowInstructionRequestBody): Observable<StorageObjectInstruction>;
11
+ insertInstruction(body: InsertWorkflowInstructionRequestBody): Observable<StorageObjectInstruction>;
12
+ unbindInstruction(body: UnbindWorkflowInstructionRequestBody): Observable<StorageObjectInstruction>;
13
+ addTransfer(body: AddArrowWorkFlowTransferRequestBody): Observable<WorkflowTransferStructure>;
14
+ updateTransfer(body: UpdateArrowWorkFlowTransferRequestBody): Observable<WorkflowTransferStructure>;
15
+ insertTransfer(arrowActionWorkFlowId: string, id: string, transferType: TransferType): Observable<WorkflowTransferStructure>;
16
+ getAvailableTransferTypes(arrowActionWorkFlowId: string): Observable<TransferType[]>;
17
+ getAvailableAll<T extends AvailableAllWorkflowTransfer>(arrowActionWorkFlowId: string, type: TransferType): Observable<T[]>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<CuiArrowWorkFlowTransferControllerApiService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<CuiArrowWorkFlowTransferControllerApiService>;
20
+ }
@@ -0,0 +1,17 @@
1
+ import type { Observable } from 'rxjs';
2
+ import { FactoryMaterial, Structure } from '../models/factory-api.options';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CuiFactoryApiService {
5
+ private readonly httpClient;
6
+ private readonly FACTORY_MATERIAL_URL;
7
+ private readonly FACTORY_TOOL_URL;
8
+ private readonly FACTORY_PART_URL;
9
+ private readonly SHARED_HTTP_OPTIONS;
10
+ getMaterialsByIds(ids: string[]): Observable<Structure>;
11
+ getPartsByIds(ids: string[]): Observable<Structure>;
12
+ getPartsByIdsStream(ids: string[]): Observable<Structure>;
13
+ getToolsByIdsStream(ids: string[]): Observable<Structure>;
14
+ getToolsByIds(ids: string[]): Observable<FactoryMaterial>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<CuiFactoryApiService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<CuiFactoryApiService>;
17
+ }
@@ -0,0 +1,7 @@
1
+ export { CuiInstructionsApiService } from './instructions-api.service';
2
+ export { CuiArrowWorkFlowActionsApiService } from './arrow-work-flow-actions-api.service';
3
+ export { CuiArrowWorkFlowComponentControllerApiService } from './arrow-work-flow-component-controller-api.service';
4
+ export { CuiArrowWorkFlowReadinessChecklistApiService } from './arrow-work-flow-readiness-checklist-api.service';
5
+ export { CuiArrowWorkFlowComponentStructureApiService } from './arrow-work-flow-component-structure-api.service';
6
+ export { CuiArrowWorkFlowTransferControllerApiService } from './arrow-work-flow-trasnfer-controller-api.service';
7
+ export { CuiFactoryApiService } from './factory-api.service';
@@ -0,0 +1,11 @@
1
+ import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CuiInstructionsApiService {
4
+ private readonly httpClient;
5
+ private readonly INSTRUCTION_URL;
6
+ changeTitle(instructionId: string, title: string): Observable<void>;
7
+ changeDescription(instructionId: string, shortDescription: string): Observable<void>;
8
+ deleteInstruction(listingInstructionId: string, instructionStorageId: string): Observable<void>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CuiInstructionsApiService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<CuiInstructionsApiService>;
11
+ }