@indigina/wms-api 0.0.92 → 0.0.94
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 +188 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +337 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -521,9 +521,289 @@ declare class CarrierProviderIntegrationsService extends BaseService {
|
|
|
521
521
|
* https://openapi-generator.tech
|
|
522
522
|
* Do not edit the class manually.
|
|
523
523
|
*/
|
|
524
|
+
declare const DcLocationStatus: {
|
|
525
|
+
readonly Active: "Active";
|
|
526
|
+
readonly Suspended: "Suspended";
|
|
527
|
+
readonly Closed: "Closed";
|
|
528
|
+
};
|
|
529
|
+
type DcLocationStatus = typeof DcLocationStatus[keyof typeof DcLocationStatus];
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
* Wms.API.Client
|
|
533
|
+
*
|
|
534
|
+
*
|
|
535
|
+
*
|
|
536
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
537
|
+
* https://openapi-generator.tech
|
|
538
|
+
* Do not edit the class manually.
|
|
539
|
+
*/
|
|
540
|
+
declare const StorageType: {
|
|
541
|
+
readonly PickFace: "PickFace";
|
|
542
|
+
readonly Bulk: "Bulk";
|
|
543
|
+
readonly CrossDock: "CrossDock";
|
|
544
|
+
};
|
|
545
|
+
type StorageType = typeof StorageType[keyof typeof StorageType];
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* Wms.API.Client
|
|
549
|
+
*
|
|
550
|
+
*
|
|
551
|
+
*
|
|
552
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
553
|
+
* https://openapi-generator.tech
|
|
554
|
+
* Do not edit the class manually.
|
|
555
|
+
*/
|
|
556
|
+
interface Channel {
|
|
557
|
+
channelName?: string;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* Wms.API.Client
|
|
562
|
+
*
|
|
563
|
+
*
|
|
564
|
+
*
|
|
565
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
566
|
+
* https://openapi-generator.tech
|
|
567
|
+
* Do not edit the class manually.
|
|
568
|
+
*/
|
|
569
|
+
interface ProductMaster1 {
|
|
570
|
+
productDescription?: string;
|
|
571
|
+
productCode?: string;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Wms.API.Client
|
|
576
|
+
*
|
|
577
|
+
*
|
|
578
|
+
*
|
|
579
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
580
|
+
* https://openapi-generator.tech
|
|
581
|
+
* Do not edit the class manually.
|
|
582
|
+
*/
|
|
583
|
+
|
|
584
|
+
interface ProductMasterSystemEan {
|
|
585
|
+
productMaster?: ProductMaster1;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
/**
|
|
589
|
+
* Wms.API.Client
|
|
590
|
+
*
|
|
591
|
+
*
|
|
592
|
+
*
|
|
593
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
594
|
+
* https://openapi-generator.tech
|
|
595
|
+
* Do not edit the class manually.
|
|
596
|
+
*/
|
|
597
|
+
|
|
598
|
+
interface CartonDeliveryItemCarton {
|
|
599
|
+
bestBeforeDate?: string | null;
|
|
600
|
+
lotNo?: string;
|
|
601
|
+
number: number;
|
|
602
|
+
productMasterSystemEan?: ProductMasterSystemEan;
|
|
603
|
+
channel?: Channel;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
/**
|
|
607
|
+
* Wms.API.Client
|
|
608
|
+
*
|
|
609
|
+
*
|
|
610
|
+
*
|
|
611
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
612
|
+
* https://openapi-generator.tech
|
|
613
|
+
* Do not edit the class manually.
|
|
614
|
+
*/
|
|
615
|
+
declare const LocationType: {
|
|
616
|
+
readonly AvailableStock: "AvailableStock";
|
|
617
|
+
readonly CrossDock: "CrossDock";
|
|
618
|
+
readonly Quarantine: "Quarantine";
|
|
619
|
+
readonly Returns: "Returns";
|
|
620
|
+
readonly WebStock: "WebStock";
|
|
621
|
+
readonly BulkStock: "BulkStock";
|
|
622
|
+
readonly Qc: "QC";
|
|
623
|
+
readonly Query: "Query";
|
|
624
|
+
readonly TestCode: "TestCode";
|
|
625
|
+
};
|
|
626
|
+
type LocationType = typeof LocationType[keyof typeof LocationType];
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* Wms.API.Client
|
|
630
|
+
*
|
|
631
|
+
*
|
|
632
|
+
*
|
|
633
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
634
|
+
* https://openapi-generator.tech
|
|
635
|
+
* Do not edit the class manually.
|
|
636
|
+
*/
|
|
637
|
+
interface CartonDeliveryItemDelivery {
|
|
638
|
+
deliveryNumber?: string;
|
|
639
|
+
hbRef?: string;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
/**
|
|
643
|
+
* Wms.API.Client
|
|
644
|
+
*
|
|
645
|
+
*
|
|
646
|
+
*
|
|
647
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
648
|
+
* https://openapi-generator.tech
|
|
649
|
+
* Do not edit the class manually.
|
|
650
|
+
*/
|
|
651
|
+
|
|
652
|
+
interface CartonDeliveryItemDeliveryItem {
|
|
653
|
+
lineNo: number;
|
|
654
|
+
delivery?: CartonDeliveryItemDelivery;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* Wms.API.Client
|
|
659
|
+
*
|
|
660
|
+
*
|
|
661
|
+
*
|
|
662
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
663
|
+
* https://openapi-generator.tech
|
|
664
|
+
* Do not edit the class manually.
|
|
665
|
+
*/
|
|
666
|
+
|
|
667
|
+
interface CartonDeliveryItemGridView {
|
|
668
|
+
id: string;
|
|
669
|
+
quantity: number;
|
|
670
|
+
createdDate: string;
|
|
671
|
+
client?: string;
|
|
672
|
+
clientId: number;
|
|
673
|
+
createdByUser: string;
|
|
674
|
+
carton?: CartonDeliveryItemCarton;
|
|
675
|
+
deliveryItem?: CartonDeliveryItemDeliveryItem;
|
|
676
|
+
fullLocationPath?: string;
|
|
677
|
+
storageType?: StorageType;
|
|
678
|
+
dcLocationStatus?: DcLocationStatus;
|
|
679
|
+
locationType?: LocationType;
|
|
680
|
+
}
|
|
681
|
+
declare namespace CartonDeliveryItemGridView {
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
/**
|
|
685
|
+
* Wms.API.Client
|
|
686
|
+
*
|
|
687
|
+
*
|
|
688
|
+
*
|
|
689
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
690
|
+
* https://openapi-generator.tech
|
|
691
|
+
* Do not edit the class manually.
|
|
692
|
+
*/
|
|
693
|
+
|
|
694
|
+
interface CartonDeliveryItems {
|
|
695
|
+
total: number;
|
|
696
|
+
data: Array<CartonDeliveryItemGridView>;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
declare class CartonDeliveryItemsService extends BaseService {
|
|
700
|
+
protected httpClient: HttpClient;
|
|
701
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
702
|
+
/**
|
|
703
|
+
* Getting cartonDeliveryItems
|
|
704
|
+
* @param $skip
|
|
705
|
+
* @param $top
|
|
706
|
+
* @param $orderby
|
|
707
|
+
* @param $filter
|
|
708
|
+
* @param $search
|
|
709
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
710
|
+
* @param reportProgress flag to report request and response progress.
|
|
711
|
+
*/
|
|
712
|
+
getCartonDeliveryItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
713
|
+
httpHeaderAccept?: 'application/json';
|
|
714
|
+
context?: HttpContext;
|
|
715
|
+
transferCache?: boolean;
|
|
716
|
+
}): Observable<CartonDeliveryItems>;
|
|
717
|
+
getCartonDeliveryItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
718
|
+
httpHeaderAccept?: 'application/json';
|
|
719
|
+
context?: HttpContext;
|
|
720
|
+
transferCache?: boolean;
|
|
721
|
+
}): Observable<HttpResponse<CartonDeliveryItems>>;
|
|
722
|
+
getCartonDeliveryItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
723
|
+
httpHeaderAccept?: 'application/json';
|
|
724
|
+
context?: HttpContext;
|
|
725
|
+
transferCache?: boolean;
|
|
726
|
+
}): Observable<HttpEvent<CartonDeliveryItems>>;
|
|
727
|
+
/**
|
|
728
|
+
* CartonDeliveryItems list
|
|
729
|
+
* @param $skip
|
|
730
|
+
* @param $top
|
|
731
|
+
* @param $orderby
|
|
732
|
+
* @param $filter
|
|
733
|
+
* @param searchTerm
|
|
734
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
735
|
+
* @param reportProgress flag to report request and response progress.
|
|
736
|
+
*/
|
|
737
|
+
getCartonDeliveryItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
738
|
+
httpHeaderAccept?: 'application/json';
|
|
739
|
+
context?: HttpContext;
|
|
740
|
+
transferCache?: boolean;
|
|
741
|
+
}): Observable<CartonDeliveryItems>;
|
|
742
|
+
getCartonDeliveryItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
743
|
+
httpHeaderAccept?: 'application/json';
|
|
744
|
+
context?: HttpContext;
|
|
745
|
+
transferCache?: boolean;
|
|
746
|
+
}): Observable<HttpResponse<CartonDeliveryItems>>;
|
|
747
|
+
getCartonDeliveryItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
748
|
+
httpHeaderAccept?: 'application/json';
|
|
749
|
+
context?: HttpContext;
|
|
750
|
+
transferCache?: boolean;
|
|
751
|
+
}): Observable<HttpEvent<CartonDeliveryItems>>;
|
|
752
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CartonDeliveryItemsService, [null, { optional: true; }, { optional: true; }]>;
|
|
753
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CartonDeliveryItemsService>;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
/**
|
|
757
|
+
* Wms.API.Client
|
|
758
|
+
*
|
|
759
|
+
*
|
|
760
|
+
*
|
|
761
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
762
|
+
* https://openapi-generator.tech
|
|
763
|
+
* Do not edit the class manually.
|
|
764
|
+
*/
|
|
765
|
+
|
|
766
|
+
interface CartonGridView {
|
|
767
|
+
id: string;
|
|
768
|
+
clientName: string;
|
|
769
|
+
number: number;
|
|
770
|
+
quantity: number;
|
|
771
|
+
qtyOnHand: number;
|
|
772
|
+
confirmedGrnQuantity: number;
|
|
773
|
+
unconfirmedGrnQuantity: number;
|
|
774
|
+
pickedQuantity: number;
|
|
775
|
+
waveAllocatedQuantity: number;
|
|
776
|
+
replenishmentToQuantity: number;
|
|
777
|
+
replenishmentFromQuantity: number;
|
|
778
|
+
bestBeforeDate?: string | null;
|
|
779
|
+
lotNo?: string;
|
|
780
|
+
lastDeliveryDate?: string | null;
|
|
781
|
+
lastPickDate?: string | null;
|
|
782
|
+
createdDate: string;
|
|
783
|
+
suspended: boolean;
|
|
784
|
+
dcLocationId?: string;
|
|
785
|
+
productMasterSystemEan?: ProductMasterSystemEan;
|
|
786
|
+
fullLocationPath?: string;
|
|
787
|
+
storageType?: StorageType;
|
|
788
|
+
dcLocationStatus?: DcLocationStatus;
|
|
789
|
+
locationType?: LocationType;
|
|
790
|
+
}
|
|
791
|
+
declare namespace CartonGridView {
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
/**
|
|
795
|
+
* Wms.API.Client
|
|
796
|
+
*
|
|
797
|
+
*
|
|
798
|
+
*
|
|
799
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
800
|
+
* https://openapi-generator.tech
|
|
801
|
+
* Do not edit the class manually.
|
|
802
|
+
*/
|
|
803
|
+
|
|
524
804
|
interface Cartons {
|
|
525
805
|
total: number;
|
|
526
|
-
data: Array<
|
|
806
|
+
data: Array<CartonGridView>;
|
|
527
807
|
}
|
|
528
808
|
|
|
529
809
|
declare class CartonsService extends BaseService {
|
|
@@ -3930,7 +4210,60 @@ declare class UsersInternalService extends BaseService {
|
|
|
3930
4210
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
3931
4211
|
}
|
|
3932
4212
|
|
|
3933
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
4213
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
4214
|
+
|
|
4215
|
+
/**
|
|
4216
|
+
* Wms.API.Client
|
|
4217
|
+
*
|
|
4218
|
+
*
|
|
4219
|
+
*
|
|
4220
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4221
|
+
* https://openapi-generator.tech
|
|
4222
|
+
* Do not edit the class manually.
|
|
4223
|
+
*/
|
|
4224
|
+
|
|
4225
|
+
interface CartonDeliveryItemView {
|
|
4226
|
+
id: string;
|
|
4227
|
+
quantity: number;
|
|
4228
|
+
createdDate: string;
|
|
4229
|
+
client?: string;
|
|
4230
|
+
clientId: number;
|
|
4231
|
+
createdByUser: string;
|
|
4232
|
+
carton?: CartonDeliveryItemCarton;
|
|
4233
|
+
deliveryItem?: CartonDeliveryItemDeliveryItem;
|
|
4234
|
+
}
|
|
4235
|
+
|
|
4236
|
+
/**
|
|
4237
|
+
* Wms.API.Client
|
|
4238
|
+
*
|
|
4239
|
+
*
|
|
4240
|
+
*
|
|
4241
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4242
|
+
* https://openapi-generator.tech
|
|
4243
|
+
* Do not edit the class manually.
|
|
4244
|
+
*/
|
|
4245
|
+
|
|
4246
|
+
interface CartonView {
|
|
4247
|
+
id: string;
|
|
4248
|
+
clientName: string;
|
|
4249
|
+
number: number;
|
|
4250
|
+
quantity: number;
|
|
4251
|
+
qtyOnHand: number;
|
|
4252
|
+
confirmedGrnQuantity: number;
|
|
4253
|
+
unconfirmedGrnQuantity: number;
|
|
4254
|
+
pickedQuantity: number;
|
|
4255
|
+
waveAllocatedQuantity: number;
|
|
4256
|
+
replenishmentToQuantity: number;
|
|
4257
|
+
replenishmentFromQuantity: number;
|
|
4258
|
+
bestBeforeDate?: string | null;
|
|
4259
|
+
lotNo?: string;
|
|
4260
|
+
lastDeliveryDate?: string | null;
|
|
4261
|
+
lastPickDate?: string | null;
|
|
4262
|
+
createdDate: string;
|
|
4263
|
+
suspended: boolean;
|
|
4264
|
+
dcLocationId?: string;
|
|
4265
|
+
productMasterSystemEan?: ProductMasterSystemEan;
|
|
4266
|
+
}
|
|
3934
4267
|
|
|
3935
4268
|
/**
|
|
3936
4269
|
* Wms.API.Client
|
|
@@ -4062,5 +4395,5 @@ declare class ApiModule {
|
|
|
4062
4395
|
|
|
4063
4396
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
4064
4397
|
|
|
4065
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationsService, DcsService, DeliveriesService, Delivery, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4066
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, Cartons, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|
|
4398
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcsService, DeliveriesService, Delivery, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, LocationType, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4399
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|