@indigina/wms-api 0.0.181 → 0.0.183

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.181",
3
+ "version": "0.0.183",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -2098,6 +2098,39 @@ interface Companies {
2098
2098
  data: Array<Company>;
2099
2099
  }
2100
2100
 
2101
+ /**
2102
+ * Wms.API.Client
2103
+ *
2104
+ *
2105
+ *
2106
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2107
+ * https://openapi-generator.tech
2108
+ * Do not edit the class manually.
2109
+ */
2110
+ declare const CompanyType: {
2111
+ readonly Carrier: "Carrier";
2112
+ readonly TransportServices: "TransportServices";
2113
+ readonly Company: "Company";
2114
+ readonly Vendor: "Vendor";
2115
+ readonly Customer: "Customer";
2116
+ readonly ShippingAgent: "ShippingAgent";
2117
+ readonly ShipFrom: "ShipFrom";
2118
+ readonly OriginAgent: "OriginAgent";
2119
+ readonly ShipTo: "ShipTo";
2120
+ readonly BuyingAgent: "BuyingAgent";
2121
+ readonly Seller: "Seller";
2122
+ readonly DistributionCentre: "DistributionCentre";
2123
+ readonly Client: "Client";
2124
+ readonly SysAdmin: "SysAdmin";
2125
+ readonly LocalAgent: "LocalAgent";
2126
+ readonly CarrierProvider: "CarrierProvider";
2127
+ readonly WholesaleCustomer: "WholesaleCustomer";
2128
+ readonly WebCustomer: "WebCustomer";
2129
+ readonly DestinationAgent: "DestinationAgent";
2130
+ readonly ForwardingAgent: "ForwardingAgent";
2131
+ };
2132
+ type CompanyType = typeof CompanyType[keyof typeof CompanyType];
2133
+
2101
2134
  /**
2102
2135
  * Wms.API.Client
2103
2136
  *
@@ -2177,6 +2210,33 @@ declare class CompaniesService extends BaseService {
2177
2210
  context?: HttpContext;
2178
2211
  transferCache?: boolean;
2179
2212
  }): Observable<HttpEvent<Companies>>;
2213
+ /**
2214
+ * Getting companies by company type
2215
+ * @endpoint get /companies/{companyType}
2216
+ * @param companyType
2217
+ * @param $skip
2218
+ * @param $top
2219
+ * @param $orderby
2220
+ * @param $filter
2221
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2222
+ * @param reportProgress flag to report request and response progress.
2223
+ * @param options additional options
2224
+ */
2225
+ getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
2226
+ httpHeaderAccept?: 'application/json';
2227
+ context?: HttpContext;
2228
+ transferCache?: boolean;
2229
+ }): Observable<Companies>;
2230
+ getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
2231
+ httpHeaderAccept?: 'application/json';
2232
+ context?: HttpContext;
2233
+ transferCache?: boolean;
2234
+ }): Observable<HttpResponse<Companies>>;
2235
+ getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
2236
+ httpHeaderAccept?: 'application/json';
2237
+ context?: HttpContext;
2238
+ transferCache?: boolean;
2239
+ }): Observable<HttpEvent<Companies>>;
2180
2240
  /**
2181
2241
  * Getting ship-to companies
2182
2242
  * @endpoint get /companies/ship-to
@@ -2312,6 +2372,334 @@ declare class ContactsService extends BaseService {
2312
2372
  static ɵprov: i0.ɵɵInjectableDeclaration<ContactsService>;
2313
2373
  }
2314
2374
 
2375
+ /**
2376
+ * Wms.API.Client
2377
+ *
2378
+ *
2379
+ *
2380
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2381
+ * https://openapi-generator.tech
2382
+ * Do not edit the class manually.
2383
+ */
2384
+ interface CountContinuousInventoryGridView {
2385
+ id: string;
2386
+ paused: boolean;
2387
+ clientId: string;
2388
+ client: string;
2389
+ nextRunDate?: string | null;
2390
+ numberOfReleases: number;
2391
+ includeWeekends: boolean;
2392
+ includeBulk: boolean;
2393
+ includeEmptyLocations: boolean;
2394
+ createDate: string;
2395
+ createdByUser: string;
2396
+ lastModifiedDate?: string | null;
2397
+ lastModifiedUser?: string;
2398
+ }
2399
+
2400
+ /**
2401
+ * Wms.API.Client
2402
+ *
2403
+ *
2404
+ *
2405
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2406
+ * https://openapi-generator.tech
2407
+ * Do not edit the class manually.
2408
+ */
2409
+
2410
+ interface CountContinuousInventories {
2411
+ total: number;
2412
+ data: Array<CountContinuousInventoryGridView>;
2413
+ }
2414
+
2415
+ /**
2416
+ * Wms.API.Client
2417
+ *
2418
+ *
2419
+ *
2420
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2421
+ * https://openapi-generator.tech
2422
+ * Do not edit the class manually.
2423
+ */
2424
+ interface CountContinuousInventory {
2425
+ id: string;
2426
+ dcId: string;
2427
+ clientId: string;
2428
+ numberOfReleases: number;
2429
+ includeWeekends: boolean;
2430
+ includeBulk: boolean;
2431
+ includeEmptyLocations: boolean;
2432
+ paused: boolean;
2433
+ nextRunDate?: string | null;
2434
+ lastPausedDate?: string | null;
2435
+ lastPausedUserId?: string | null;
2436
+ createDate: string;
2437
+ createUserId: string;
2438
+ lastModifiedDate?: string | null;
2439
+ lastModifiedUserId?: string | null;
2440
+ }
2441
+
2442
+ /**
2443
+ * Wms.API.Client
2444
+ *
2445
+ *
2446
+ *
2447
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2448
+ * https://openapi-generator.tech
2449
+ * Do not edit the class manually.
2450
+ */
2451
+ interface CountContinuousInventoryClient {
2452
+ id: string;
2453
+ companyDescription: string;
2454
+ }
2455
+
2456
+ /**
2457
+ * Wms.API.Client
2458
+ *
2459
+ *
2460
+ *
2461
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2462
+ * https://openapi-generator.tech
2463
+ * Do not edit the class manually.
2464
+ */
2465
+
2466
+ interface CountContinuousInventoryClients {
2467
+ total: number;
2468
+ data: Array<CountContinuousInventoryClient>;
2469
+ }
2470
+
2471
+ /**
2472
+ * Wms.API.Client
2473
+ *
2474
+ *
2475
+ *
2476
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2477
+ * https://openapi-generator.tech
2478
+ * Do not edit the class manually.
2479
+ */
2480
+ interface CreateCountContinuousInventory {
2481
+ clientId: string;
2482
+ numberOfReleases: number;
2483
+ includeWeekends: boolean;
2484
+ includeBulk: boolean;
2485
+ includeEmptyLocations: boolean;
2486
+ }
2487
+
2488
+ /**
2489
+ * Wms.API.Client
2490
+ *
2491
+ *
2492
+ *
2493
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2494
+ * https://openapi-generator.tech
2495
+ * Do not edit the class manually.
2496
+ */
2497
+ interface UpdateCountContinuousInventory {
2498
+ numberOfReleases: number;
2499
+ includeWeekends: boolean;
2500
+ includeBulk: boolean;
2501
+ includeEmptyLocations: boolean;
2502
+ }
2503
+
2504
+ declare class CountContinuousInventoryService extends BaseService {
2505
+ protected httpClient: HttpClient;
2506
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
2507
+ /**
2508
+ * Activate a paused continuous inventory record
2509
+ * @endpoint put /CountContinuousInventories/{id}/activate
2510
+ * @param id
2511
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2512
+ * @param reportProgress flag to report request and response progress.
2513
+ * @param options additional options
2514
+ */
2515
+ activateCountContinuousInventory(id: string, observe?: 'body', reportProgress?: boolean, options?: {
2516
+ httpHeaderAccept?: 'application/json';
2517
+ context?: HttpContext;
2518
+ transferCache?: boolean;
2519
+ }): Observable<any>;
2520
+ activateCountContinuousInventory(id: string, observe?: 'response', reportProgress?: boolean, options?: {
2521
+ httpHeaderAccept?: 'application/json';
2522
+ context?: HttpContext;
2523
+ transferCache?: boolean;
2524
+ }): Observable<HttpResponse<any>>;
2525
+ activateCountContinuousInventory(id: string, observe?: 'events', reportProgress?: boolean, options?: {
2526
+ httpHeaderAccept?: 'application/json';
2527
+ context?: HttpContext;
2528
+ transferCache?: boolean;
2529
+ }): Observable<HttpEvent<any>>;
2530
+ /**
2531
+ * Create a continuous inventory record
2532
+ * @endpoint post /CountContinuousInventories
2533
+ * @param createCountContinuousInventory
2534
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2535
+ * @param reportProgress flag to report request and response progress.
2536
+ * @param options additional options
2537
+ */
2538
+ createCountContinuousInventory(createCountContinuousInventory: CreateCountContinuousInventory, observe?: 'body', reportProgress?: boolean, options?: {
2539
+ httpHeaderAccept?: 'application/json';
2540
+ context?: HttpContext;
2541
+ transferCache?: boolean;
2542
+ }): Observable<CountContinuousInventory>;
2543
+ createCountContinuousInventory(createCountContinuousInventory: CreateCountContinuousInventory, observe?: 'response', reportProgress?: boolean, options?: {
2544
+ httpHeaderAccept?: 'application/json';
2545
+ context?: HttpContext;
2546
+ transferCache?: boolean;
2547
+ }): Observable<HttpResponse<CountContinuousInventory>>;
2548
+ createCountContinuousInventory(createCountContinuousInventory: CreateCountContinuousInventory, observe?: 'events', reportProgress?: boolean, options?: {
2549
+ httpHeaderAccept?: 'application/json';
2550
+ context?: HttpContext;
2551
+ transferCache?: boolean;
2552
+ }): Observable<HttpEvent<CountContinuousInventory>>;
2553
+ /**
2554
+ * Delete a continuous inventory record
2555
+ * @endpoint delete /CountContinuousInventories/{id}
2556
+ * @param id
2557
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2558
+ * @param reportProgress flag to report request and response progress.
2559
+ * @param options additional options
2560
+ */
2561
+ deleteCountContinuousInventory(id: string, observe?: 'body', reportProgress?: boolean, options?: {
2562
+ httpHeaderAccept?: 'application/json';
2563
+ context?: HttpContext;
2564
+ transferCache?: boolean;
2565
+ }): Observable<any>;
2566
+ deleteCountContinuousInventory(id: string, observe?: 'response', reportProgress?: boolean, options?: {
2567
+ httpHeaderAccept?: 'application/json';
2568
+ context?: HttpContext;
2569
+ transferCache?: boolean;
2570
+ }): Observable<HttpResponse<any>>;
2571
+ deleteCountContinuousInventory(id: string, observe?: 'events', reportProgress?: boolean, options?: {
2572
+ httpHeaderAccept?: 'application/json';
2573
+ context?: HttpContext;
2574
+ transferCache?: boolean;
2575
+ }): Observable<HttpEvent<any>>;
2576
+ /**
2577
+ * Getting continuous inventory records
2578
+ * @endpoint get /CountContinuousInventories
2579
+ * @param $skip
2580
+ * @param $top
2581
+ * @param $orderby
2582
+ * @param $filter
2583
+ * @param $search
2584
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2585
+ * @param reportProgress flag to report request and response progress.
2586
+ * @param options additional options
2587
+ */
2588
+ getCountContinuousInventories($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
2589
+ httpHeaderAccept?: 'application/json';
2590
+ context?: HttpContext;
2591
+ transferCache?: boolean;
2592
+ }): Observable<CountContinuousInventories>;
2593
+ getCountContinuousInventories($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
2594
+ httpHeaderAccept?: 'application/json';
2595
+ context?: HttpContext;
2596
+ transferCache?: boolean;
2597
+ }): Observable<HttpResponse<CountContinuousInventories>>;
2598
+ getCountContinuousInventories($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
2599
+ httpHeaderAccept?: 'application/json';
2600
+ context?: HttpContext;
2601
+ transferCache?: boolean;
2602
+ }): Observable<HttpEvent<CountContinuousInventories>>;
2603
+ /**
2604
+ * CountContinuousInventories list
2605
+ * @endpoint get /CountContinuousInventories/search
2606
+ * @param $skip
2607
+ * @param $top
2608
+ * @param $orderby
2609
+ * @param $filter
2610
+ * @param searchTerm
2611
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2612
+ * @param reportProgress flag to report request and response progress.
2613
+ * @param options additional options
2614
+ */
2615
+ getCountContinuousInventoriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
2616
+ httpHeaderAccept?: 'application/json';
2617
+ context?: HttpContext;
2618
+ transferCache?: boolean;
2619
+ }): Observable<CountContinuousInventories>;
2620
+ getCountContinuousInventoriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
2621
+ httpHeaderAccept?: 'application/json';
2622
+ context?: HttpContext;
2623
+ transferCache?: boolean;
2624
+ }): Observable<HttpResponse<CountContinuousInventories>>;
2625
+ getCountContinuousInventoriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
2626
+ httpHeaderAccept?: 'application/json';
2627
+ context?: HttpContext;
2628
+ transferCache?: boolean;
2629
+ }): Observable<HttpEvent<CountContinuousInventories>>;
2630
+ /**
2631
+ * Get the clients that can still be given continuous inventory in the current DC
2632
+ * @endpoint get /CountContinuousInventories/clients
2633
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2634
+ * @param reportProgress flag to report request and response progress.
2635
+ * @param options additional options
2636
+ */
2637
+ getCountContinuousInventoryClients(observe?: 'body', reportProgress?: boolean, options?: {
2638
+ httpHeaderAccept?: 'application/json';
2639
+ context?: HttpContext;
2640
+ transferCache?: boolean;
2641
+ }): Observable<CountContinuousInventoryClients>;
2642
+ getCountContinuousInventoryClients(observe?: 'response', reportProgress?: boolean, options?: {
2643
+ httpHeaderAccept?: 'application/json';
2644
+ context?: HttpContext;
2645
+ transferCache?: boolean;
2646
+ }): Observable<HttpResponse<CountContinuousInventoryClients>>;
2647
+ getCountContinuousInventoryClients(observe?: 'events', reportProgress?: boolean, options?: {
2648
+ httpHeaderAccept?: 'application/json';
2649
+ context?: HttpContext;
2650
+ transferCache?: boolean;
2651
+ }): Observable<HttpEvent<CountContinuousInventoryClients>>;
2652
+ /**
2653
+ * Pause a continuous inventory record
2654
+ * @endpoint put /CountContinuousInventories/{id}/pause
2655
+ * @param id
2656
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2657
+ * @param reportProgress flag to report request and response progress.
2658
+ * @param options additional options
2659
+ */
2660
+ pauseCountContinuousInventory(id: string, observe?: 'body', reportProgress?: boolean, options?: {
2661
+ httpHeaderAccept?: 'application/json';
2662
+ context?: HttpContext;
2663
+ transferCache?: boolean;
2664
+ }): Observable<any>;
2665
+ pauseCountContinuousInventory(id: string, observe?: 'response', reportProgress?: boolean, options?: {
2666
+ httpHeaderAccept?: 'application/json';
2667
+ context?: HttpContext;
2668
+ transferCache?: boolean;
2669
+ }): Observable<HttpResponse<any>>;
2670
+ pauseCountContinuousInventory(id: string, observe?: 'events', reportProgress?: boolean, options?: {
2671
+ httpHeaderAccept?: 'application/json';
2672
+ context?: HttpContext;
2673
+ transferCache?: boolean;
2674
+ }): Observable<HttpEvent<any>>;
2675
+ /**
2676
+ * Update a continuous inventory record
2677
+ * @endpoint put /CountContinuousInventories/{id}
2678
+ * @param id
2679
+ * @param updateCountContinuousInventory
2680
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2681
+ * @param reportProgress flag to report request and response progress.
2682
+ * @param options additional options
2683
+ */
2684
+ updateCountContinuousInventory(id: string, updateCountContinuousInventory: UpdateCountContinuousInventory, observe?: 'body', reportProgress?: boolean, options?: {
2685
+ httpHeaderAccept?: 'application/json';
2686
+ context?: HttpContext;
2687
+ transferCache?: boolean;
2688
+ }): Observable<CountContinuousInventory>;
2689
+ updateCountContinuousInventory(id: string, updateCountContinuousInventory: UpdateCountContinuousInventory, observe?: 'response', reportProgress?: boolean, options?: {
2690
+ httpHeaderAccept?: 'application/json';
2691
+ context?: HttpContext;
2692
+ transferCache?: boolean;
2693
+ }): Observable<HttpResponse<CountContinuousInventory>>;
2694
+ updateCountContinuousInventory(id: string, updateCountContinuousInventory: UpdateCountContinuousInventory, observe?: 'events', reportProgress?: boolean, options?: {
2695
+ httpHeaderAccept?: 'application/json';
2696
+ context?: HttpContext;
2697
+ transferCache?: boolean;
2698
+ }): Observable<HttpEvent<CountContinuousInventory>>;
2699
+ static ɵfac: i0.ɵɵFactoryDeclaration<CountContinuousInventoryService, [null, { optional: true; }, { optional: true; }]>;
2700
+ static ɵprov: i0.ɵɵInjectableDeclaration<CountContinuousInventoryService>;
2701
+ }
2702
+
2315
2703
  /**
2316
2704
  * Wms.API.Client
2317
2705
  *
@@ -10079,7 +10467,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
10079
10467
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
10080
10468
  }
10081
10469
 
10082
- declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
10470
+ declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountContinuousInventoryService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
10083
10471
 
10084
10472
  /**
10085
10473
  * Wms.API.Client
@@ -10395,5 +10783,5 @@ declare class ApiModule {
10395
10783
 
10396
10784
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
10397
10785
 
10398
- export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, Configuration, ContactsService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
10399
- export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountRecords, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
10786
+ export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
10787
+ export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UpdateCountContinuousInventory, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };