@ignos/api-client 20260806.207.1 → 20260807.209.1
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/lib/ignosportal-api.d.ts +7 -2
- package/lib/ignosportal-api.js +5 -1
- package/package.json +1 -1
- package/src/ignosportal-api.ts +11 -2
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2586,7 +2586,7 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
|
|
|
2586
2586
|
protected processListProductionOrderActivities(response: Response): Promise<ProductionOrderOperationActivityDto[]>;
|
|
2587
2587
|
}
|
|
2588
2588
|
export interface IMesProductionScheduleClient {
|
|
2589
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2589
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2590
2590
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2591
2591
|
getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
|
|
2592
2592
|
listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
|
|
@@ -2600,7 +2600,7 @@ export declare class MesProductionScheduleClient extends AuthorizedApiBase imple
|
|
|
2600
2600
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2601
2601
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2602
2602
|
});
|
|
2603
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2603
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2604
2604
|
protected processListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2605
2605
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2606
2606
|
protected processPostListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
@@ -7458,6 +7458,8 @@ export interface PlannerOperationDto {
|
|
|
7458
7458
|
isNewOperation: boolean;
|
|
7459
7459
|
weekGroup: string;
|
|
7460
7460
|
programStatus?: ProgramStatus | null;
|
|
7461
|
+
hasNotes?: boolean;
|
|
7462
|
+
notesUnread?: boolean;
|
|
7461
7463
|
}
|
|
7462
7464
|
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
7463
7465
|
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
@@ -7765,6 +7767,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
7765
7767
|
productionStatus: OperationStatusDto;
|
|
7766
7768
|
setupStatus?: OperationStatusDto | null;
|
|
7767
7769
|
programStatus?: ProgramStatus | null;
|
|
7770
|
+
hasNotes: boolean;
|
|
7771
|
+
notesUnread: boolean;
|
|
7768
7772
|
}
|
|
7769
7773
|
export interface SurroundingOperationDto {
|
|
7770
7774
|
id: string;
|
|
@@ -7826,6 +7830,7 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
7826
7830
|
operationStatuses?: OperationStatusDto[] | null;
|
|
7827
7831
|
after?: Date | null;
|
|
7828
7832
|
before?: Date | null;
|
|
7833
|
+
includeDiscussionSummary?: boolean;
|
|
7829
7834
|
}
|
|
7830
7835
|
export interface ProductionScheduleFiltersDto {
|
|
7831
7836
|
partNumbers?: FilterValueWithQuantity[];
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -21601,7 +21601,7 @@ export class MesProductionScheduleClient extends AuthorizedApiBase {
|
|
|
21601
21601
|
this.http = http ? http : window;
|
|
21602
21602
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
21603
21603
|
}
|
|
21604
|
-
listProductionScheduleOperations(resourceGroup, resourceId, departmentNumber, pageSize, continuationToken, workOrderId, projectId, partNumber, partName, material) {
|
|
21604
|
+
listProductionScheduleOperations(resourceGroup, resourceId, departmentNumber, pageSize, continuationToken, workOrderId, projectId, partNumber, partName, material, includeDiscussionSummary) {
|
|
21605
21605
|
let url_ = this.baseUrl + "/mes/productionschedule?";
|
|
21606
21606
|
if (resourceGroup !== undefined && resourceGroup !== null)
|
|
21607
21607
|
url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
|
|
@@ -21625,6 +21625,10 @@ export class MesProductionScheduleClient extends AuthorizedApiBase {
|
|
|
21625
21625
|
url_ += "partName=" + encodeURIComponent("" + partName) + "&";
|
|
21626
21626
|
if (material !== undefined && material !== null)
|
|
21627
21627
|
url_ += "material=" + encodeURIComponent("" + material) + "&";
|
|
21628
|
+
if (includeDiscussionSummary === null)
|
|
21629
|
+
throw new globalThis.Error("The parameter 'includeDiscussionSummary' cannot be null.");
|
|
21630
|
+
else if (includeDiscussionSummary !== undefined)
|
|
21631
|
+
url_ += "includeDiscussionSummary=" + encodeURIComponent("" + includeDiscussionSummary) + "&";
|
|
21628
21632
|
url_ = url_.replace(/[?&]$/, "");
|
|
21629
21633
|
let options_ = {
|
|
21630
21634
|
method: "GET",
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -23071,7 +23071,7 @@ export class MesProductionOrderClient extends AuthorizedApiBase implements IMesP
|
|
|
23071
23071
|
|
|
23072
23072
|
export interface IMesProductionScheduleClient {
|
|
23073
23073
|
|
|
23074
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
23074
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
23075
23075
|
|
|
23076
23076
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
23077
23077
|
|
|
@@ -23096,7 +23096,7 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
|
|
|
23096
23096
|
this.baseUrl = baseUrl ?? "";
|
|
23097
23097
|
}
|
|
23098
23098
|
|
|
23099
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto> {
|
|
23099
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto> {
|
|
23100
23100
|
let url_ = this.baseUrl + "/mes/productionschedule?";
|
|
23101
23101
|
if (resourceGroup !== undefined && resourceGroup !== null)
|
|
23102
23102
|
url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
|
|
@@ -23120,6 +23120,10 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
|
|
|
23120
23120
|
url_ += "partName=" + encodeURIComponent("" + partName) + "&";
|
|
23121
23121
|
if (material !== undefined && material !== null)
|
|
23122
23122
|
url_ += "material=" + encodeURIComponent("" + material) + "&";
|
|
23123
|
+
if (includeDiscussionSummary === null)
|
|
23124
|
+
throw new globalThis.Error("The parameter 'includeDiscussionSummary' cannot be null.");
|
|
23125
|
+
else if (includeDiscussionSummary !== undefined)
|
|
23126
|
+
url_ += "includeDiscussionSummary=" + encodeURIComponent("" + includeDiscussionSummary) + "&";
|
|
23123
23127
|
url_ = url_.replace(/[?&]$/, "");
|
|
23124
23128
|
|
|
23125
23129
|
let options_: RequestInit = {
|
|
@@ -35752,6 +35756,8 @@ export interface PlannerOperationDto {
|
|
|
35752
35756
|
isNewOperation: boolean;
|
|
35753
35757
|
weekGroup: string;
|
|
35754
35758
|
programStatus?: ProgramStatus | null;
|
|
35759
|
+
hasNotes?: boolean;
|
|
35760
|
+
notesUnread?: boolean;
|
|
35755
35761
|
}
|
|
35756
35762
|
|
|
35757
35763
|
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
@@ -36087,6 +36093,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
36087
36093
|
productionStatus: OperationStatusDto;
|
|
36088
36094
|
setupStatus?: OperationStatusDto | null;
|
|
36089
36095
|
programStatus?: ProgramStatus | null;
|
|
36096
|
+
hasNotes: boolean;
|
|
36097
|
+
notesUnread: boolean;
|
|
36090
36098
|
}
|
|
36091
36099
|
|
|
36092
36100
|
export interface SurroundingOperationDto {
|
|
@@ -36154,6 +36162,7 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
36154
36162
|
operationStatuses?: OperationStatusDto[] | null;
|
|
36155
36163
|
after?: Date | null;
|
|
36156
36164
|
before?: Date | null;
|
|
36165
|
+
includeDiscussionSummary?: boolean;
|
|
36157
36166
|
}
|
|
36158
36167
|
|
|
36159
36168
|
export interface ProductionScheduleFiltersDto {
|