@ignos/api-client 20250203.0.11064 → 20250203.0.11065-alpha

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.
@@ -1819,7 +1819,7 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
1819
1819
  protected processListProductionOrderActivities(response: Response): Promise<ProductionOrderOperationActivityDto[]>;
1820
1820
  }
1821
1821
  export interface IMesProductionScheduleClient {
1822
- listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: 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>;
1822
+ 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>;
1823
1823
  postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
1824
1824
  getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
1825
1825
  listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
@@ -1834,7 +1834,7 @@ export declare class MesProductionScheduleClient extends AuthorizedApiBase imple
1834
1834
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1835
1835
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1836
1836
  });
1837
- listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: 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>;
1837
+ 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>;
1838
1838
  protected processListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
1839
1839
  postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
1840
1840
  protected processPostListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
@@ -10110,6 +10110,7 @@ export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Com
10110
10110
  export declare class ListProductionScheduleOperationsRequest implements IListProductionScheduleOperationsRequest {
10111
10111
  resourceGroup?: string | null;
10112
10112
  resourceId?: string | null;
10113
+ departmentNumber?: string | null;
10113
10114
  pageSize?: number;
10114
10115
  continuationToken?: string | null;
10115
10116
  workOrderId?: string | null;
@@ -10142,6 +10143,7 @@ export declare class ListProductionScheduleOperationsRequest implements IListPro
10142
10143
  export interface IListProductionScheduleOperationsRequest {
10143
10144
  resourceGroup?: string | null;
10144
10145
  resourceId?: string | null;
10146
+ departmentNumber?: string | null;
10145
10147
  pageSize?: number;
10146
10148
  continuationToken?: string | null;
10147
10149
  workOrderId?: string | null;
@@ -14818,12 +14818,14 @@ export class MesProductionScheduleClient extends AuthorizedApiBase {
14818
14818
  this.http = http ? http : window;
14819
14819
  this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
14820
14820
  }
14821
- listProductionScheduleOperations(resourceGroup, resourceId, pageSize, continuationToken, workOrderId, projectId, partNumber, partName, material) {
14821
+ listProductionScheduleOperations(resourceGroup, resourceId, departmentNumber, pageSize, continuationToken, workOrderId, projectId, partNumber, partName, material) {
14822
14822
  let url_ = this.baseUrl + "/mes/productionschedule?";
14823
14823
  if (resourceGroup !== undefined && resourceGroup !== null)
14824
14824
  url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
14825
14825
  if (resourceId !== undefined && resourceId !== null)
14826
14826
  url_ += "resourceId=" + encodeURIComponent("" + resourceId) + "&";
14827
+ if (departmentNumber !== undefined && departmentNumber !== null)
14828
+ url_ += "departmentNumber=" + encodeURIComponent("" + departmentNumber) + "&";
14827
14829
  if (pageSize === null)
14828
14830
  throw new Error("The parameter 'pageSize' cannot be null.");
14829
14831
  else if (pageSize !== undefined)
@@ -36342,6 +36344,7 @@ export class ListProductionScheduleOperationsRequest {
36342
36344
  if (_data) {
36343
36345
  this.resourceGroup = _data["resourceGroup"];
36344
36346
  this.resourceId = _data["resourceId"];
36347
+ this.departmentNumber = _data["departmentNumber"];
36345
36348
  this.pageSize = _data["pageSize"];
36346
36349
  this.continuationToken = _data["continuationToken"];
36347
36350
  this.workOrderId = _data["workOrderId"];
@@ -36422,6 +36425,7 @@ export class ListProductionScheduleOperationsRequest {
36422
36425
  data = typeof data === 'object' ? data : {};
36423
36426
  data["resourceGroup"] = this.resourceGroup;
36424
36427
  data["resourceId"] = this.resourceId;
36428
+ data["departmentNumber"] = this.departmentNumber;
36425
36429
  data["pageSize"] = this.pageSize;
36426
36430
  data["continuationToken"] = this.continuationToken;
36427
36431
  data["workOrderId"] = this.workOrderId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250203.0.11064",
3
+ "version": "20250203.0.11065-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -15841,7 +15841,7 @@ export class MesProductionOrderClient extends AuthorizedApiBase implements IMesP
15841
15841
 
15842
15842
  export interface IMesProductionScheduleClient {
15843
15843
 
15844
- listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: 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>;
15844
+ 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>;
15845
15845
 
15846
15846
  postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
15847
15847
 
@@ -15867,12 +15867,14 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
15867
15867
  this.baseUrl = baseUrl ?? "";
15868
15868
  }
15869
15869
 
15870
- listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: 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> {
15870
+ 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> {
15871
15871
  let url_ = this.baseUrl + "/mes/productionschedule?";
15872
15872
  if (resourceGroup !== undefined && resourceGroup !== null)
15873
15873
  url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
15874
15874
  if (resourceId !== undefined && resourceId !== null)
15875
15875
  url_ += "resourceId=" + encodeURIComponent("" + resourceId) + "&";
15876
+ if (departmentNumber !== undefined && departmentNumber !== null)
15877
+ url_ += "departmentNumber=" + encodeURIComponent("" + departmentNumber) + "&";
15876
15878
  if (pageSize === null)
15877
15879
  throw new Error("The parameter 'pageSize' cannot be null.");
15878
15880
  else if (pageSize !== undefined)
@@ -45362,6 +45364,7 @@ export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Com
45362
45364
  export class ListProductionScheduleOperationsRequest implements IListProductionScheduleOperationsRequest {
45363
45365
  resourceGroup?: string | null;
45364
45366
  resourceId?: string | null;
45367
+ departmentNumber?: string | null;
45365
45368
  pageSize?: number;
45366
45369
  continuationToken?: string | null;
45367
45370
  workOrderId?: string | null;
@@ -45400,6 +45403,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
45400
45403
  if (_data) {
45401
45404
  this.resourceGroup = _data["resourceGroup"];
45402
45405
  this.resourceId = _data["resourceId"];
45406
+ this.departmentNumber = _data["departmentNumber"];
45403
45407
  this.pageSize = _data["pageSize"];
45404
45408
  this.continuationToken = _data["continuationToken"];
45405
45409
  this.workOrderId = _data["workOrderId"];
@@ -45482,6 +45486,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
45482
45486
  data = typeof data === 'object' ? data : {};
45483
45487
  data["resourceGroup"] = this.resourceGroup;
45484
45488
  data["resourceId"] = this.resourceId;
45489
+ data["departmentNumber"] = this.departmentNumber;
45485
45490
  data["pageSize"] = this.pageSize;
45486
45491
  data["continuationToken"] = this.continuationToken;
45487
45492
  data["workOrderId"] = this.workOrderId;
@@ -45557,6 +45562,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
45557
45562
  export interface IListProductionScheduleOperationsRequest {
45558
45563
  resourceGroup?: string | null;
45559
45564
  resourceId?: string | null;
45565
+ departmentNumber?: string | null;
45560
45566
  pageSize?: number;
45561
45567
  continuationToken?: string | null;
45562
45568
  workOrderId?: string | null;