@indigina/wms-api 0.0.152 → 0.0.154
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/README.md +2 -2
- package/fesm2022/indigina-wms-api.mjs +150 -14
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +205 -94
package/package.json
CHANGED
|
@@ -6344,63 +6344,6 @@ declare class UserService extends BaseService {
|
|
|
6344
6344
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
6345
6345
|
}
|
|
6346
6346
|
|
|
6347
|
-
/**
|
|
6348
|
-
* Wms.API.Client
|
|
6349
|
-
*
|
|
6350
|
-
*
|
|
6351
|
-
*
|
|
6352
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6353
|
-
* https://openapi-generator.tech
|
|
6354
|
-
* Do not edit the class manually.
|
|
6355
|
-
*/
|
|
6356
|
-
declare const UserCompanyTypes: {
|
|
6357
|
-
readonly Dc: "DC";
|
|
6358
|
-
readonly Client: "Client";
|
|
6359
|
-
readonly OriginAgent: "OriginAgent";
|
|
6360
|
-
readonly DestinationAgent: "DestinationAgent";
|
|
6361
|
-
readonly Vendor: "Vendor";
|
|
6362
|
-
readonly Integration: "Integration";
|
|
6363
|
-
readonly SystemAdmin: "SystemAdmin";
|
|
6364
|
-
readonly ReportAdmin: "ReportAdmin";
|
|
6365
|
-
readonly SsSysAdmin: "SS_SysAdmin";
|
|
6366
|
-
readonly SsReportAdmin: "SS_ReportAdmin";
|
|
6367
|
-
};
|
|
6368
|
-
type UserCompanyTypes = typeof UserCompanyTypes[keyof typeof UserCompanyTypes];
|
|
6369
|
-
|
|
6370
|
-
/**
|
|
6371
|
-
* Wms.API.Client
|
|
6372
|
-
*
|
|
6373
|
-
*
|
|
6374
|
-
*
|
|
6375
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6376
|
-
* https://openapi-generator.tech
|
|
6377
|
-
* Do not edit the class manually.
|
|
6378
|
-
*/
|
|
6379
|
-
|
|
6380
|
-
interface UserCompany {
|
|
6381
|
-
id: number;
|
|
6382
|
-
userId: string;
|
|
6383
|
-
companyId: string;
|
|
6384
|
-
type: UserCompanyTypes;
|
|
6385
|
-
}
|
|
6386
|
-
declare namespace UserCompany {
|
|
6387
|
-
}
|
|
6388
|
-
|
|
6389
|
-
/**
|
|
6390
|
-
* Wms.API.Client
|
|
6391
|
-
*
|
|
6392
|
-
*
|
|
6393
|
-
*
|
|
6394
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6395
|
-
* https://openapi-generator.tech
|
|
6396
|
-
* Do not edit the class manually.
|
|
6397
|
-
*/
|
|
6398
|
-
|
|
6399
|
-
interface UserCompanies {
|
|
6400
|
-
total: number;
|
|
6401
|
-
data: Array<UserCompany>;
|
|
6402
|
-
}
|
|
6403
|
-
|
|
6404
6347
|
declare class UserCompaniesService extends BaseService {
|
|
6405
6348
|
protected httpClient: HttpClient;
|
|
6406
6349
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -6420,17 +6363,17 @@ declare class UserCompaniesService extends BaseService {
|
|
|
6420
6363
|
httpHeaderAccept?: 'application/json';
|
|
6421
6364
|
context?: HttpContext;
|
|
6422
6365
|
transferCache?: boolean;
|
|
6423
|
-
}): Observable<
|
|
6366
|
+
}): Observable<Companies>;
|
|
6424
6367
|
getUserCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6425
6368
|
httpHeaderAccept?: 'application/json';
|
|
6426
6369
|
context?: HttpContext;
|
|
6427
6370
|
transferCache?: boolean;
|
|
6428
|
-
}): Observable<HttpResponse<
|
|
6371
|
+
}): Observable<HttpResponse<Companies>>;
|
|
6429
6372
|
getUserCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6430
6373
|
httpHeaderAccept?: 'application/json';
|
|
6431
6374
|
context?: HttpContext;
|
|
6432
6375
|
transferCache?: boolean;
|
|
6433
|
-
}): Observable<HttpEvent<
|
|
6376
|
+
}): Observable<HttpEvent<Companies>>;
|
|
6434
6377
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserCompaniesService, [null, { optional: true; }, { optional: true; }]>;
|
|
6435
6378
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserCompaniesService>;
|
|
6436
6379
|
}
|
|
@@ -6975,14 +6918,198 @@ declare class WaveConfigGroupsService extends BaseService {
|
|
|
6975
6918
|
* https://openapi-generator.tech
|
|
6976
6919
|
* Do not edit the class manually.
|
|
6977
6920
|
*/
|
|
6978
|
-
|
|
6921
|
+
interface UnlockWaveResult {
|
|
6922
|
+
success: boolean;
|
|
6923
|
+
}
|
|
6924
|
+
|
|
6925
|
+
/**
|
|
6926
|
+
* Wms.API.Client
|
|
6927
|
+
*
|
|
6928
|
+
*
|
|
6929
|
+
*
|
|
6930
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6931
|
+
* https://openapi-generator.tech
|
|
6932
|
+
* Do not edit the class manually.
|
|
6933
|
+
*/
|
|
6934
|
+
declare const ClusterPackStatuses: {
|
|
6935
|
+
readonly ToBeProcessed: "ToBeProcessed";
|
|
6936
|
+
readonly PartiallySuccessful: "PartiallySuccessful";
|
|
6937
|
+
readonly AllSuccessful: "AllSuccessful";
|
|
6938
|
+
readonly AllFailed: "AllFailed";
|
|
6939
|
+
readonly NoLongerRequired: "NoLongerRequired";
|
|
6940
|
+
};
|
|
6941
|
+
type ClusterPackStatuses = typeof ClusterPackStatuses[keyof typeof ClusterPackStatuses];
|
|
6942
|
+
|
|
6943
|
+
/**
|
|
6944
|
+
* Wms.API.Client
|
|
6945
|
+
*
|
|
6946
|
+
*
|
|
6947
|
+
*
|
|
6948
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6949
|
+
* https://openapi-generator.tech
|
|
6950
|
+
* Do not edit the class manually.
|
|
6951
|
+
*/
|
|
6952
|
+
declare const DocumentGenerationStatuses: {
|
|
6953
|
+
readonly NoDocsToGenerate: "NoDocsToGenerate";
|
|
6954
|
+
readonly ToBeGenerated: "ToBeGenerated";
|
|
6955
|
+
readonly Regenerate: "Regenerate";
|
|
6956
|
+
readonly Complete: "Complete";
|
|
6957
|
+
readonly Exception: "Exception";
|
|
6958
|
+
};
|
|
6959
|
+
type DocumentGenerationStatuses = typeof DocumentGenerationStatuses[keyof typeof DocumentGenerationStatuses];
|
|
6960
|
+
|
|
6961
|
+
/**
|
|
6962
|
+
* Wms.API.Client
|
|
6963
|
+
*
|
|
6964
|
+
*
|
|
6965
|
+
*
|
|
6966
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6967
|
+
* https://openapi-generator.tech
|
|
6968
|
+
* Do not edit the class manually.
|
|
6969
|
+
*/
|
|
6970
|
+
declare const WaveStatuses: {
|
|
6971
|
+
readonly Active: "Active";
|
|
6972
|
+
readonly Complete: "Complete";
|
|
6973
|
+
readonly Closed: "Closed";
|
|
6974
|
+
};
|
|
6975
|
+
type WaveStatuses = typeof WaveStatuses[keyof typeof WaveStatuses];
|
|
6976
|
+
|
|
6977
|
+
/**
|
|
6978
|
+
* Wms.API.Client
|
|
6979
|
+
*
|
|
6980
|
+
*
|
|
6981
|
+
*
|
|
6982
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6983
|
+
* https://openapi-generator.tech
|
|
6984
|
+
* Do not edit the class manually.
|
|
6985
|
+
*/
|
|
6986
|
+
|
|
6987
|
+
interface WaveHistoryView {
|
|
6988
|
+
id: string;
|
|
6989
|
+
wavePickReleaseId: string;
|
|
6990
|
+
waveNumber: number;
|
|
6991
|
+
waveStatus: WaveStatuses;
|
|
6992
|
+
dispatchCount: number;
|
|
6993
|
+
skipped: boolean;
|
|
6994
|
+
shortShipped: boolean;
|
|
6995
|
+
createdDate: string;
|
|
6996
|
+
createdBy: string;
|
|
6997
|
+
completedDate?: string | null;
|
|
6998
|
+
completedBy?: string;
|
|
6999
|
+
closedDate?: string | null;
|
|
7000
|
+
closedBy?: string;
|
|
7001
|
+
waveConfigurationDescription: string;
|
|
7002
|
+
clientId: string;
|
|
7003
|
+
client: string;
|
|
7004
|
+
wavePickReleaseNumber: string;
|
|
7005
|
+
extPlatesPending: boolean;
|
|
7006
|
+
documentGenerationStatus: DocumentGenerationStatuses;
|
|
7007
|
+
locked: boolean;
|
|
7008
|
+
clusterPick: boolean;
|
|
7009
|
+
reverseSortOrder: boolean;
|
|
7010
|
+
containsCi?: boolean | null;
|
|
7011
|
+
containsNsr?: boolean | null;
|
|
7012
|
+
clusterPack: boolean;
|
|
7013
|
+
containsBuildKit: boolean;
|
|
7014
|
+
clusterPackStatus?: ClusterPackStatuses | null;
|
|
7015
|
+
autoPrint: boolean;
|
|
7016
|
+
printerDescription?: string | null;
|
|
7017
|
+
pickStartDate?: string | null;
|
|
7018
|
+
printed: boolean;
|
|
7019
|
+
}
|
|
7020
|
+
declare namespace WaveHistoryView {
|
|
7021
|
+
}
|
|
7022
|
+
|
|
7023
|
+
/**
|
|
7024
|
+
* Wms.API.Client
|
|
7025
|
+
*
|
|
7026
|
+
*
|
|
7027
|
+
*
|
|
7028
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7029
|
+
* https://openapi-generator.tech
|
|
7030
|
+
* Do not edit the class manually.
|
|
7031
|
+
*/
|
|
7032
|
+
|
|
7033
|
+
interface WaveHistories {
|
|
7034
|
+
total: number;
|
|
7035
|
+
data: Array<WaveHistoryView>;
|
|
7036
|
+
}
|
|
7037
|
+
|
|
7038
|
+
/**
|
|
7039
|
+
* Wms.API.Client
|
|
7040
|
+
*
|
|
7041
|
+
*
|
|
7042
|
+
*
|
|
7043
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7044
|
+
* https://openapi-generator.tech
|
|
7045
|
+
* Do not edit the class manually.
|
|
7046
|
+
*/
|
|
7047
|
+
declare const WaveHistoryTypes: {
|
|
6979
7048
|
readonly All: "All";
|
|
6980
7049
|
readonly ToBePrinted: "ToBePrinted";
|
|
6981
7050
|
readonly Active: "Active";
|
|
6982
7051
|
readonly Complete: "Complete";
|
|
6983
7052
|
readonly Closed: "Closed";
|
|
6984
7053
|
};
|
|
6985
|
-
type
|
|
7054
|
+
type WaveHistoryTypes = typeof WaveHistoryTypes[keyof typeof WaveHistoryTypes];
|
|
7055
|
+
|
|
7056
|
+
declare class WaveHistoryService extends BaseService {
|
|
7057
|
+
protected httpClient: HttpClient;
|
|
7058
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7059
|
+
/**
|
|
7060
|
+
* Getting waves by waveHistoryType
|
|
7061
|
+
* @endpoint get /waveHistories/{waveHistoryType}
|
|
7062
|
+
* @param waveHistoryType
|
|
7063
|
+
* @param $skip
|
|
7064
|
+
* @param $top
|
|
7065
|
+
* @param $orderby
|
|
7066
|
+
* @param $filter
|
|
7067
|
+
* @param $search
|
|
7068
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7069
|
+
* @param reportProgress flag to report request and response progress.
|
|
7070
|
+
* @param options additional options
|
|
7071
|
+
*/
|
|
7072
|
+
getWavesByHistoryType(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7073
|
+
httpHeaderAccept?: 'application/json';
|
|
7074
|
+
context?: HttpContext;
|
|
7075
|
+
transferCache?: boolean;
|
|
7076
|
+
}): Observable<WaveHistories>;
|
|
7077
|
+
getWavesByHistoryType(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7078
|
+
httpHeaderAccept?: 'application/json';
|
|
7079
|
+
context?: HttpContext;
|
|
7080
|
+
transferCache?: boolean;
|
|
7081
|
+
}): Observable<HttpResponse<WaveHistories>>;
|
|
7082
|
+
getWavesByHistoryType(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7083
|
+
httpHeaderAccept?: 'application/json';
|
|
7084
|
+
context?: HttpContext;
|
|
7085
|
+
transferCache?: boolean;
|
|
7086
|
+
}): Observable<HttpEvent<WaveHistories>>;
|
|
7087
|
+
/**
|
|
7088
|
+
* Unlock a wave
|
|
7089
|
+
* @endpoint patch /waveHistories/unlock/{waveId}
|
|
7090
|
+
* @param waveId
|
|
7091
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7092
|
+
* @param reportProgress flag to report request and response progress.
|
|
7093
|
+
* @param options additional options
|
|
7094
|
+
*/
|
|
7095
|
+
unlockWave(waveId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7096
|
+
httpHeaderAccept?: 'application/json';
|
|
7097
|
+
context?: HttpContext;
|
|
7098
|
+
transferCache?: boolean;
|
|
7099
|
+
}): Observable<UnlockWaveResult>;
|
|
7100
|
+
unlockWave(waveId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7101
|
+
httpHeaderAccept?: 'application/json';
|
|
7102
|
+
context?: HttpContext;
|
|
7103
|
+
transferCache?: boolean;
|
|
7104
|
+
}): Observable<HttpResponse<UnlockWaveResult>>;
|
|
7105
|
+
unlockWave(waveId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7106
|
+
httpHeaderAccept?: 'application/json';
|
|
7107
|
+
context?: HttpContext;
|
|
7108
|
+
transferCache?: boolean;
|
|
7109
|
+
}): Observable<HttpEvent<UnlockWaveResult>>;
|
|
7110
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WaveHistoryService, [null, { optional: true; }, { optional: true; }]>;
|
|
7111
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WaveHistoryService>;
|
|
7112
|
+
}
|
|
6986
7113
|
|
|
6987
7114
|
/**
|
|
6988
7115
|
* Wms.API.Client
|
|
@@ -6993,12 +7120,14 @@ type PickReleaseHistoryTypes = typeof PickReleaseHistoryTypes[keyof typeof PickR
|
|
|
6993
7120
|
* https://openapi-generator.tech
|
|
6994
7121
|
* Do not edit the class manually.
|
|
6995
7122
|
*/
|
|
6996
|
-
declare const
|
|
7123
|
+
declare const PickReleaseHistoryTypes: {
|
|
7124
|
+
readonly All: "All";
|
|
7125
|
+
readonly ToBePrinted: "ToBePrinted";
|
|
6997
7126
|
readonly Active: "Active";
|
|
6998
7127
|
readonly Complete: "Complete";
|
|
6999
7128
|
readonly Closed: "Closed";
|
|
7000
7129
|
};
|
|
7001
|
-
type
|
|
7130
|
+
type PickReleaseHistoryTypes = typeof PickReleaseHistoryTypes[keyof typeof PickReleaseHistoryTypes];
|
|
7002
7131
|
|
|
7003
7132
|
/**
|
|
7004
7133
|
* Wms.API.Client
|
|
@@ -7009,11 +7138,12 @@ type WavePickReleaseStatuses = typeof WavePickReleaseStatuses[keyof typeof WaveP
|
|
|
7009
7138
|
* https://openapi-generator.tech
|
|
7010
7139
|
* Do not edit the class manually.
|
|
7011
7140
|
*/
|
|
7012
|
-
declare const
|
|
7013
|
-
readonly
|
|
7014
|
-
readonly
|
|
7141
|
+
declare const WavePickReleaseStatuses: {
|
|
7142
|
+
readonly Active: "Active";
|
|
7143
|
+
readonly Complete: "Complete";
|
|
7144
|
+
readonly Closed: "Closed";
|
|
7015
7145
|
};
|
|
7016
|
-
type
|
|
7146
|
+
type WavePickReleaseStatuses = typeof WavePickReleaseStatuses[keyof typeof WavePickReleaseStatuses];
|
|
7017
7147
|
|
|
7018
7148
|
/**
|
|
7019
7149
|
* Wms.API.Client
|
|
@@ -7024,14 +7154,11 @@ type WavePickReleaseMethods = typeof WavePickReleaseMethods[keyof typeof WavePic
|
|
|
7024
7154
|
* https://openapi-generator.tech
|
|
7025
7155
|
* Do not edit the class manually.
|
|
7026
7156
|
*/
|
|
7027
|
-
declare const
|
|
7028
|
-
readonly
|
|
7029
|
-
readonly
|
|
7030
|
-
readonly Regenerate: "Regenerate";
|
|
7031
|
-
readonly Complete: "Complete";
|
|
7032
|
-
readonly Exception: "Exception";
|
|
7157
|
+
declare const WavePickReleaseMethods: {
|
|
7158
|
+
readonly Sku: "SKU";
|
|
7159
|
+
readonly Date: "Date";
|
|
7033
7160
|
};
|
|
7034
|
-
type
|
|
7161
|
+
type WavePickReleaseMethods = typeof WavePickReleaseMethods[keyof typeof WavePickReleaseMethods];
|
|
7035
7162
|
|
|
7036
7163
|
/**
|
|
7037
7164
|
* Wms.API.Client
|
|
@@ -7377,22 +7504,6 @@ declare class WavePickingAccessService extends BaseService {
|
|
|
7377
7504
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickingAccessService>;
|
|
7378
7505
|
}
|
|
7379
7506
|
|
|
7380
|
-
/**
|
|
7381
|
-
* Wms.API.Client
|
|
7382
|
-
*
|
|
7383
|
-
*
|
|
7384
|
-
*
|
|
7385
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7386
|
-
* https://openapi-generator.tech
|
|
7387
|
-
* Do not edit the class manually.
|
|
7388
|
-
*/
|
|
7389
|
-
declare const WaveStatuses: {
|
|
7390
|
-
readonly Active: "Active";
|
|
7391
|
-
readonly Complete: "Complete";
|
|
7392
|
-
readonly Closed: "Closed";
|
|
7393
|
-
};
|
|
7394
|
-
type WaveStatuses = typeof WaveStatuses[keyof typeof WaveStatuses];
|
|
7395
|
-
|
|
7396
7507
|
/**
|
|
7397
7508
|
* Wms.API.Client
|
|
7398
7509
|
*
|
|
@@ -7472,7 +7583,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
7472
7583
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
7473
7584
|
}
|
|
7474
7585
|
|
|
7475
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
|
|
7586
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
|
|
7476
7587
|
|
|
7477
7588
|
/**
|
|
7478
7589
|
* Wms.API.Client
|
|
@@ -7745,5 +7856,5 @@ declare class ApiModule {
|
|
|
7745
7856
|
|
|
7746
7857
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
7747
7858
|
|
|
7748
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService,
|
|
7749
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications,
|
|
7859
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClusterPackStatuses, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
7860
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurations, WaveHistories, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|