@indigina/wms-api 0.0.93 → 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 +62 -1
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +266 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -521,9 +521,179 @@ 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
|
+
|
|
524
694
|
interface CartonDeliveryItems {
|
|
525
695
|
total: number;
|
|
526
|
-
data: Array<
|
|
696
|
+
data: Array<CartonDeliveryItemGridView>;
|
|
527
697
|
}
|
|
528
698
|
|
|
529
699
|
declare class CartonDeliveryItemsService extends BaseService {
|
|
@@ -592,9 +762,48 @@ declare class CartonDeliveryItemsService extends BaseService {
|
|
|
592
762
|
* https://openapi-generator.tech
|
|
593
763
|
* Do not edit the class manually.
|
|
594
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
|
+
|
|
595
804
|
interface Cartons {
|
|
596
805
|
total: number;
|
|
597
|
-
data: Array<
|
|
806
|
+
data: Array<CartonGridView>;
|
|
598
807
|
}
|
|
599
808
|
|
|
600
809
|
declare class CartonsService extends BaseService {
|
|
@@ -4003,6 +4212,59 @@ declare class UsersInternalService extends BaseService {
|
|
|
4003
4212
|
|
|
4004
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)[];
|
|
4005
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
|
+
}
|
|
4267
|
+
|
|
4006
4268
|
/**
|
|
4007
4269
|
* Wms.API.Client
|
|
4008
4270
|
*
|
|
@@ -4133,5 +4395,5 @@ declare class ApiModule {
|
|
|
4133
4395
|
|
|
4134
4396
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
4135
4397
|
|
|
4136
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, 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 };
|
|
4137
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItems, 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 };
|