randmar-api-client 1.3.0 → 1.5.0

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.
@@ -2104,679 +2104,713 @@ export type GetV4PartnerByApplicationIdWarehousesApiArg = {
2104
2104
  applicationId: string;
2105
2105
  };
2106
2106
  export type ProblemDetails = {
2107
- type?: string | null;
2108
- title?: string | null;
2109
- status?: number | null;
2110
- detail?: string | null;
2111
- instance?: string | null;
2107
+ Type?: string | null;
2108
+ Title?: string | null;
2109
+ Status?: number | null;
2110
+ Detail?: string | null;
2111
+ Instance?: string | null;
2112
2112
  [key: string]: any;
2113
2113
  };
2114
- export type BillingInformation = object;
2115
- export type ShipToDetails = object;
2114
+ export type BillingInformation = {
2115
+ BillingName?: string | null;
2116
+ Country?: string | null;
2117
+ Address1?: string | null;
2118
+ Address2?: string | null;
2119
+ City?: string | null;
2120
+ Province?: string | null;
2121
+ PostalCode?: string | null;
2122
+ };
2116
2123
  export type ShipToLocation = {
2117
- name?: string | null;
2118
- street1?: string | null;
2119
- street2?: string | null;
2120
- city?: string | null;
2121
- province?: string | null;
2122
- postalCode?: string | null;
2123
- country?: string | null;
2124
- po?: string | null;
2125
- customerPo?: string | null;
2126
- comment?: string | null;
2127
- shippingSlipComment?: string | null;
2128
- shipToId?: string | null;
2129
- contactName?: string | null;
2130
- contactPhone?: string | null;
2131
- contactEmail?: string | null;
2132
- contactWebsite?: string | null;
2133
- shippingMethodId?: string | null;
2134
- shippingTimeId?: string | null;
2135
- expectedDateTime?: string;
2136
- allowPartialShipment?: boolean | null;
2124
+ Name?: string | null;
2125
+ Street1?: string | null;
2126
+ Street2?: string | null;
2127
+ City?: string | null;
2128
+ Province?: string | null;
2129
+ PostalCode?: string | null;
2130
+ Country?: string | null;
2131
+ Po?: string | null;
2132
+ CustomerPo?: string | null;
2133
+ Comment?: string | null;
2134
+ ShippingSlipComment?: string | null;
2135
+ ShipToId?: string | null;
2136
+ ContactName?: string | null;
2137
+ ContactPhone?: string | null;
2138
+ ContactEmail?: string | null;
2139
+ ContactWebsite?: string | null;
2140
+ ShippingMethodId?: string | null;
2141
+ ShippingTimeId?: string | null;
2142
+ ExpectedDateTime?: string;
2143
+ AllowPartialShipment?: boolean | null;
2144
+ };
2145
+ export type ShipToDetails = {
2146
+ ShipTo?: ShipToLocation;
2147
+ Dates?: string[] | null;
2137
2148
  };
2138
2149
  export type OrderLineItem = {
2139
2150
  /** The order number this line item belongs to */
2140
- orderNumber?: string | null;
2151
+ OrderNumber?: string | null;
2141
2152
  /** The name of the reseller */
2142
- resellerName?: string | null;
2153
+ ResellerName?: string | null;
2143
2154
  /** The name of the shipping recipient */
2144
- shipToName?: string | null;
2155
+ ShipToName?: string | null;
2145
2156
  /** The purchase order number */
2146
- poNumber?: string | null;
2157
+ PONumber?: string | null;
2147
2158
  /** The internal SKU for the product */
2148
- randmarSKU?: string | null;
2159
+ RandmarSKU?: string | null;
2149
2160
  /** The description of the product */
2150
- description?: string | null;
2161
+ Description?: string | null;
2151
2162
  /** The product category */
2152
- category?: string | null;
2163
+ Category?: string | null;
2153
2164
  /** The warehouse location code */
2154
- location?: string | null;
2165
+ Location?: string | null;
2155
2166
  /** The quantity ordered */
2156
- quantityOrdered?: number;
2167
+ QuantityOrdered?: number;
2157
2168
  /** The quantity shipped */
2158
- quantityShipped?: number;
2169
+ QuantityShipped?: number;
2159
2170
  /** The quantity on back order */
2160
- quantityBackOrdered?: number;
2171
+ QuantityBackOrdered?: number;
2161
2172
  /** The unit price of the product */
2162
- unitPrice?: number;
2173
+ UnitPrice?: number;
2163
2174
  /** The extended price (unit price × quantity) */
2164
- extendedPrice?: number;
2175
+ ExtendedPrice?: number;
2165
2176
  /** The unit weight in kg */
2166
- unitWeight?: number;
2177
+ UnitWeight?: number;
2167
2178
  /** The manufacturer's part number */
2168
- manufacturerPartNumber?: string | null;
2179
+ ManufacturerPartNumber?: string | null;
2169
2180
  /** The reseller ID */
2170
- resellerId?: string | null;
2181
+ ResellerId?: string | null;
2171
2182
  /** The expected shipment date (format: YYYYMMDD) */
2172
- expectedShipmentDate?: number;
2183
+ ExpectedShipmentDate?: number;
2173
2184
  /** The actual shipment date (format: YYYYMMDD) */
2174
- shipmentDate?: number;
2185
+ ShipmentDate?: number;
2175
2186
  /** The date the order was placed (format: YYYYMMDD) */
2176
- orderDate?: number;
2187
+ OrderDate?: number;
2177
2188
  /** The opportunity manufacturer ID (if applicable) */
2178
- opportunityManufacturerId?: string | null;
2189
+ OpportunityManufacturerId?: string | null;
2179
2190
  /** The opportunity manufacturer number (if applicable) */
2180
- opportunityManufacturerNumber?: string | null;
2191
+ OpportunityManufacturerNumber?: string | null;
2181
2192
  };
2182
2193
  export type OrderCharge = {
2183
2194
  /** The reseller ID */
2184
- resellerId?: string | null;
2195
+ ResellerId?: string | null;
2185
2196
  /** The order number this charge belongs to */
2186
- orderNumber?: string | null;
2197
+ OrderNumber?: string | null;
2187
2198
  /** The name of the reseller */
2188
- resellerName?: string | null;
2199
+ ResellerName?: string | null;
2189
2200
  /** The name of the shipping recipient */
2190
- shipToName?: string | null;
2201
+ ShipToName?: string | null;
2191
2202
  /** The purchase order number */
2192
- poNumber?: string | null;
2203
+ PONumber?: string | null;
2193
2204
  /** The SKU code for the charge */
2194
- randmarSKU?: string | null;
2205
+ RandmarSKU?: string | null;
2195
2206
  /** The description of the charge */
2196
- description?: string | null;
2207
+ Description?: string | null;
2197
2208
  /** The amount of the charge */
2198
- price?: number;
2209
+ Price?: number;
2199
2210
  };
2200
2211
  export type OrderDocument = {
2201
2212
  /** The unique identifier of the reseller */
2202
- resellerId?: string | null;
2213
+ ResellerId?: string | null;
2203
2214
  /** The unique order number */
2204
- orderNumber?: string | null;
2215
+ OrderNumber?: string | null;
2205
2216
  /** The date when the order was placed (format: YYYYMMDD) */
2206
- orderDate?: number;
2217
+ OrderDate?: number;
2207
2218
  /** The date when the order is scheduled to ship (format: YYYYMMDD) */
2208
- shippingDate?: number;
2219
+ ShippingDate?: number;
2209
2220
  /** The name of the shipping recipient */
2210
- shipToName?: string | null;
2221
+ ShipToName?: string | null;
2211
2222
  /** The first line of the shipping address */
2212
- shipToAddress1?: string | null;
2223
+ ShipToAddress1?: string | null;
2213
2224
  /** The second line of the shipping address (optional) */
2214
- shipToAddress2?: string | null;
2225
+ ShipToAddress2?: string | null;
2215
2226
  /** The city for shipping */
2216
- shipToCity?: string | null;
2227
+ ShipToCity?: string | null;
2217
2228
  /** The province/state for shipping */
2218
- shipToProvince?: string | null;
2229
+ ShipToProvince?: string | null;
2219
2230
  /** The postal/zip code for shipping */
2220
- shipToPostalCode?: string | null;
2231
+ ShipToPostalCode?: string | null;
2221
2232
  /** The country code for shipping */
2222
- shipToCountry?: string | null;
2233
+ ShipToCountry?: string | null;
2223
2234
  /** The purchase order number from the reseller (optional) */
2224
- poNumber?: string | null;
2235
+ PONumber?: string | null;
2225
2236
  /** The date when the order was last modified (format: YYYYMMDD) */
2226
- lastEditDate?: number;
2237
+ LastEditDate?: number;
2227
2238
  /** The warehouse location code */
2228
- location?: string | null;
2239
+ Location?: string | null;
2229
2240
  /** The name of the reseller */
2230
- resellerName?: string | null;
2241
+ ResellerName?: string | null;
2231
2242
  /** The shipping carrier code */
2232
- shipVia?: string | null;
2243
+ ShipVia?: string | null;
2233
2244
  /** The shipping carrier description */
2234
- shipViaDescription?: string | null;
2245
+ ShipViaDescription?: string | null;
2235
2246
  /** The number of shipments created for this order */
2236
- numberOfShipments?: number;
2247
+ NumberOfShipments?: number;
2237
2248
  /** Indicates if the order is on hold (0=Not On Hold, 1=On Hold) */
2238
- onHold?: number;
2249
+ OnHold?: number;
2239
2250
  /** The initial number of line items in the order */
2240
- initialNumberOfLines?: number;
2251
+ InitialNumberOfLines?: number;
2241
2252
  /** The current number of line items in the order */
2242
- numberOfLines?: number;
2253
+ NumberOfLines?: number;
2243
2254
  /** The priority code of the order */
2244
- priority?: string | null;
2255
+ Priority?: string | null;
2245
2256
  /** The end user's purchase order number */
2246
- endUserPONumber?: string | null;
2257
+ EndUserPONumber?: string | null;
2247
2258
  /** The contact name at the shipping address */
2248
- shipToContactName?: string | null;
2259
+ ShipToContactName?: string | null;
2249
2260
  /** The contact phone number at the shipping address */
2250
- shipToContactPhone?: string | null;
2261
+ ShipToContactPhone?: string | null;
2251
2262
  /** The calculated weight of the order in kg */
2252
- theoreticalWeight?: number;
2263
+ TheoreticalWeight?: number;
2253
2264
  /** The subtotal of the order before taxes */
2254
- orderTotal?: number;
2265
+ OrderTotal?: number;
2255
2266
  /** General comments for the order */
2256
- comments?: string | null;
2267
+ Comments?: string | null;
2257
2268
  /** Comments to be printed on the shipping slip */
2258
- shippingSlipComment?: string | null;
2269
+ ShippingSlipComment?: string | null;
2259
2270
  /** The primary tax amount */
2260
- taxAmount1?: number;
2271
+ TaxAmount1?: number;
2261
2272
  /** The primary tax rate as a percentage */
2262
- taxRate1?: number;
2273
+ TaxRate1?: number;
2263
2274
  /** The secondary tax amount (if applicable) */
2264
- taxAmount2?: number;
2275
+ TaxAmount2?: number;
2265
2276
  /** The secondary tax rate as a percentage (if applicable) */
2266
- taxRate2?: number;
2277
+ TaxRate2?: number;
2267
2278
  /** The subtotal of the order before taxes */
2268
- subTotal?: number;
2279
+ SubTotal?: number;
2269
2280
  /** The total amount of the order including taxes */
2270
- total?: number;
2281
+ Total?: number;
2271
2282
  /** The manufacturer ID (if applicable) */
2272
- manufacturerId?: string | null;
2283
+ ManufacturerId?: string | null;
2273
2284
  /** The bid number (if applicable) */
2274
- bidNumber?: string | null;
2285
+ BidNumber?: string | null;
2275
2286
  /** The list of products in the order */
2276
- partNumbers?: OrderLineItem[] | null;
2287
+ PartNumbers?: OrderLineItem[] | null;
2277
2288
  /** The list of additional charges for the order */
2278
- charges?: OrderCharge[] | null;
2289
+ Charges?: OrderCharge[] | null;
2279
2290
  };
2280
2291
  export type ConvertToShortModel = {
2281
- title?: string | null;
2282
- text?: string | null;
2283
- cameraSpeed?: number;
2284
- withRandmarBranding?: boolean;
2285
- voiceName?: string | null;
2292
+ Title?: string | null;
2293
+ Text?: string | null;
2294
+ CameraSpeed?: number;
2295
+ WithRandmarBranding?: boolean;
2296
+ VoiceName?: string | null;
2286
2297
  };
2287
2298
  export type TextToSpeechModel = {
2288
- caption?: string | null;
2289
- voiceName?: string | null;
2290
- voiceStyle?: string | null;
2299
+ Caption?: string | null;
2300
+ VoiceName?: string | null;
2301
+ VoiceStyle?: string | null;
2291
2302
  };
2292
2303
  export type ShortsFromLongModel = {
2293
- withBranding?: boolean | null;
2294
- videoUrl?: string | null;
2295
- title?: string | null;
2296
- people?: string[] | null;
2297
- locale?: string | null;
2298
- multipleCameras?: boolean | null;
2304
+ WithBranding?: boolean | null;
2305
+ VideoUrl?: string | null;
2306
+ Title?: string | null;
2307
+ People?: string[] | null;
2308
+ Locale?: string | null;
2309
+ MultipleCameras?: boolean | null;
2299
2310
  };
2300
2311
  export type ManufacturerCategory = {
2301
- manufacturerId?: string | null;
2302
- categoryCode?: string | null;
2303
- categoryName?: string | null;
2304
- starred?: boolean;
2305
- autoReorder?: boolean;
2306
- qualificationRequired?: boolean;
2307
- niche?: string | null;
2308
- a_GP?: number | null;
2309
- b_GP?: number | null;
2310
- c_GP?: number | null;
2311
- d_GP?: number | null;
2312
- cost_GP?: number | null;
2313
- leadTime?: number | null;
2314
- weeksOfStocking?: number | null;
2315
- minimumOrder?: number | null;
2312
+ ManufacturerId?: string | null;
2313
+ CategoryCode?: string | null;
2314
+ CategoryName?: string | null;
2315
+ Starred?: boolean;
2316
+ AutoReorder?: boolean;
2317
+ QualificationRequired?: boolean;
2318
+ Niche?: string | null;
2319
+ A_GP?: number | null;
2320
+ B_GP?: number | null;
2321
+ C_GP?: number | null;
2322
+ D_GP?: number | null;
2323
+ Cost_GP?: number | null;
2324
+ LeadTime?: number | null;
2325
+ WeeksOfStocking?: number | null;
2326
+ MinimumOrder?: number | null;
2316
2327
  };
2317
2328
  export type Manufacturer = {
2318
- manufacturerId?: string | null;
2319
- website?: string | null;
2320
- publicName?: string | null;
2321
- lastUpdatedDate?: number;
2322
- autoReorderDate?: number;
2323
- autoUpdate?: boolean;
2324
- publicEmail?: string | null;
2325
- defaultWeeksOfStocking?: number;
2326
- tags?: string | null;
2327
- creationDate?: number;
2328
- partnerPortal?: string | null;
2329
- partnerRegistrationLink?: string | null;
2330
- about?: string | null;
2331
- openToWork?: boolean;
2332
- publicResourcesLink?: string | null;
2333
- currencyCode?: string | null;
2334
- youtubePlaylist?: string | null;
2329
+ ManufacturerId?: string | null;
2330
+ Website?: string | null;
2331
+ PublicName?: string | null;
2332
+ LastUpdatedDate?: number;
2333
+ AutoReorderDate?: number;
2334
+ AutoUpdate?: boolean;
2335
+ PublicEmail?: string | null;
2336
+ DefaultWeeksOfStocking?: number;
2337
+ Tags?: string | null;
2338
+ CreationDate?: number;
2339
+ PartnerPortal?: string | null;
2340
+ PartnerRegistrationLink?: string | null;
2341
+ About?: string | null;
2342
+ OpenToWork?: boolean;
2343
+ PublicResourcesLink?: string | null;
2344
+ CurrencyCode?: string | null;
2345
+ YoutubePlaylist?: string | null;
2335
2346
  };
2336
2347
  export type Inventory = {
2337
- randmarSKU?: string | null;
2338
- warehouseId?: string | null;
2339
- warehouseType?: string | null;
2340
- name?: string | null;
2341
- city?: string | null;
2342
- province?: string | null;
2343
- country?: string | null;
2344
- availableQuantity?: number;
2345
- purchaseOrderQuantity?: number;
2346
- binLocation?: string | null;
2348
+ RandmarSKU?: string | null;
2349
+ WarehouseId?: string | null;
2350
+ WarehouseType?: string | null;
2351
+ Name?: string | null;
2352
+ City?: string | null;
2353
+ Province?: string | null;
2354
+ Country?: string | null;
2355
+ AvailableQuantity?: number;
2356
+ PurchaseOrderQuantity?: number;
2357
+ BinLocation?: string | null;
2347
2358
  };
2348
2359
  export type Distribution = {
2349
- price?: number;
2350
- regularPrice?: number;
2351
- cost?: number | null;
2352
- map?: number;
2353
- currency?: string | null;
2354
- exchangeRate?: number;
2355
- inventory?: Inventory[] | null;
2360
+ Price?: number;
2361
+ RegularPrice?: number;
2362
+ Cost?: number | null;
2363
+ MAP?: number;
2364
+ Currency?: string | null;
2365
+ ExchangeRate?: number;
2366
+ Inventory?: Inventory[] | null;
2356
2367
  };
2357
- export type Opportunity = {
2358
- manufacturerId?: string | null;
2359
- bidNumber?: string | null;
2360
- randmarSKU?: string | null;
2361
- bidPrice?: number;
2362
- bidPriceType?: string | null;
2363
- manufacturerId1?: string | null;
2364
- bidNumber1?: string | null;
2365
- opportunityName?: string | null;
2366
- description?: string | null;
2367
- defaultResellers?: string | null;
2368
- startDate?: string | null;
2369
- endDate?: string | null;
2370
- lastUpdate?: string | null;
2371
- active?: boolean;
2372
- canBeSetAsDefault?: boolean;
2368
+ export type OpportunityEntry = {
2369
+ Opportunity?: string | null;
2370
+ ManufacturerId?: string | null;
2371
+ BidNumber?: string | null;
2372
+ RandmarSKU?: string | null;
2373
+ BidPrice?: number | null;
2374
+ Price?: number | null;
2375
+ Rebate?: number | null;
2376
+ BidPriceType?: string | null;
2377
+ OpportunityName?: string | null;
2378
+ Description?: string | null;
2379
+ DefaultResellers?: string | null;
2380
+ StartDate?: string | null;
2381
+ EndDate?: string | null;
2382
+ LastUpdate?: string | null;
2383
+ Active?: boolean;
2384
+ CanBeSetAsDefault?: boolean;
2373
2385
  };
2374
2386
  export type Invoice = {
2375
- invoiceNumber?: string | null;
2376
- orderNumber?: string | null;
2377
- shipToName?: string | null;
2378
- resellerName?: string | null;
2379
- lineType?: string | null;
2380
- poNumber?: string | null;
2381
- randmarSKU?: string | null;
2382
- quantityShipped?: number;
2383
- unitPrice?: number;
2384
- extendedPrice?: number;
2385
- description?: string | null;
2386
- location?: string | null;
2387
- resellerId?: string | null;
2388
- quantityBackOrder?: number;
2389
- quantityOrdered?: number;
2390
- taxAmount1?: number;
2391
- taxAmount2?: number;
2392
- taxRate1?: number;
2393
- taxRate2?: number;
2394
- manufacturerPartNumber?: string | null;
2395
- category?: string | null;
2396
- invoiceDate?: number;
2397
- unitWeight?: number;
2398
- orderDate?: number;
2399
- shipToCountry?: string | null;
2400
- shipToPostalCode?: string | null;
2401
- shipToProvince?: string | null;
2402
- shipToCity?: string | null;
2403
- shipToAddress1?: string | null;
2404
- completionDate?: number;
2405
- opportunityManufacturerId?: string | null;
2406
- opportunityManufacturerNumber?: string | null;
2387
+ InvoiceNumber?: string | null;
2388
+ OrderNumber?: string | null;
2389
+ ShipToName?: string | null;
2390
+ ResellerName?: string | null;
2391
+ LineType?: string | null;
2392
+ PONumber?: string | null;
2393
+ RandmarSKU?: string | null;
2394
+ QuantityShipped?: number;
2395
+ UnitPrice?: number;
2396
+ ExtendedPrice?: number;
2397
+ Description?: string | null;
2398
+ Location?: string | null;
2399
+ ResellerId?: string | null;
2400
+ QuantityBackOrder?: number;
2401
+ QuantityOrdered?: number;
2402
+ TaxAmount1?: number;
2403
+ TaxAmount2?: number;
2404
+ TaxRate1?: number;
2405
+ TaxRate2?: number;
2406
+ ManufacturerPartNumber?: string | null;
2407
+ Category?: string | null;
2408
+ InvoiceDate?: number;
2409
+ UnitWeight?: number;
2410
+ OrderDate?: number;
2411
+ ShipToCountry?: string | null;
2412
+ ShipToPostalCode?: string | null;
2413
+ ShipToProvince?: string | null;
2414
+ ShipToCity?: string | null;
2415
+ ShipToAddress1?: string | null;
2416
+ CompletionDate?: number;
2417
+ OpportunityManufacturerId?: string | null;
2418
+ OpportunityManufacturerNumber?: string | null;
2407
2419
  };
2408
2420
  export type Credit = {
2409
- invoiceNumber?: string | null;
2410
- orderNumber?: string | null;
2411
- creditNumber?: string | null;
2412
- shipToName?: string | null;
2413
- resellerName?: string | null;
2414
- lineType?: string | null;
2415
- poNumber?: string | null;
2416
- randmarSKU?: string | null;
2417
- quantityShipped?: number;
2418
- unitPrice?: number;
2419
- extendedPrice?: number;
2420
- description?: string | null;
2421
- location?: string | null;
2422
- resellerId?: string | null;
2423
- quantityBackOrder?: number;
2424
- quantityOrdered?: number;
2425
- taxAmount1?: number;
2426
- taxAmount2?: number;
2427
- taxRate1?: number;
2428
- taxRate2?: number;
2429
- manufacturerPartNumber?: string | null;
2430
- category?: string | null;
2431
- invoiceDate?: number;
2432
- unitWeight?: number;
2433
- creditDate?: number;
2434
- returnType?: string | null;
2421
+ InvoiceNumber?: string | null;
2422
+ OrderNumber?: string | null;
2423
+ CreditNumber?: string | null;
2424
+ ShipToName?: string | null;
2425
+ ResellerName?: string | null;
2426
+ LineType?: string | null;
2427
+ PONumber?: string | null;
2428
+ RandmarSKU?: string | null;
2429
+ QuantityShipped?: number;
2430
+ UnitPrice?: number;
2431
+ ExtendedPrice?: number;
2432
+ Description?: string | null;
2433
+ Location?: string | null;
2434
+ ResellerId?: string | null;
2435
+ QuantityBackOrder?: number;
2436
+ QuantityOrdered?: number;
2437
+ TaxAmount1?: number;
2438
+ TaxAmount2?: number;
2439
+ TaxRate1?: number;
2440
+ TaxRate2?: number;
2441
+ ManufacturerPartNumber?: string | null;
2442
+ Category?: string | null;
2443
+ InvoiceDate?: number;
2444
+ UnitWeight?: number;
2445
+ CreditDate?: number;
2446
+ ReturnType?: string | null;
2435
2447
  };
2436
2448
  export type Order = {
2437
- orderNumber?: string | null;
2438
- resellerName?: string | null;
2439
- shipToName?: string | null;
2440
- poNumber?: string | null;
2441
- randmarSKU?: string | null;
2442
- description?: string | null;
2443
- category?: string | null;
2444
- location?: string | null;
2445
- quantityOrdered?: number;
2446
- quantityShipped?: number;
2447
- quantityBackOrdered?: number;
2448
- unitPrice?: number;
2449
- extendedPrice?: number;
2450
- unitWeight?: number;
2451
- manufacturerPartNumber?: string | null;
2452
- resellerId?: string | null;
2453
- expectedShipmentDate?: number;
2454
- shipmentDate?: number;
2455
- printStatus?: number;
2456
- orderDate?: number;
2457
- opportunityManufacturerId?: string | null;
2458
- opportunityManufacturerNumber?: string | null;
2449
+ OrderNumber?: string | null;
2450
+ ResellerName?: string | null;
2451
+ ShipToName?: string | null;
2452
+ PONumber?: string | null;
2453
+ RandmarSKU?: string | null;
2454
+ Description?: string | null;
2455
+ Category?: string | null;
2456
+ Location?: string | null;
2457
+ QuantityOrdered?: number;
2458
+ QuantityShipped?: number;
2459
+ QuantityBackOrdered?: number;
2460
+ UnitPrice?: number;
2461
+ ExtendedPrice?: number;
2462
+ UnitWeight?: number;
2463
+ ManufacturerPartNumber?: string | null;
2464
+ ResellerId?: string | null;
2465
+ ExpectedShipmentDate?: number;
2466
+ ShipmentDate?: number;
2467
+ PrintStatus?: number;
2468
+ OrderDate?: number;
2469
+ OpportunityManufacturerId?: string | null;
2470
+ OpportunityManufacturerNumber?: string | null;
2459
2471
  };
2460
2472
  export type Shipment = {
2461
- shipmentNumber?: string | null;
2462
- randmarSKU?: string | null;
2463
- quantityShipped?: number;
2464
- unitPrice?: number;
2465
- extendedPrice?: number;
2466
- description?: string | null;
2467
- location?: string | null;
2468
- resellerId?: string | null;
2469
- quantityBackOrder?: number;
2470
- quantityOrdered?: number;
2471
- manufacturerPartNumber?: string | null;
2472
- unitWeight?: number;
2473
- poNumber?: string | null;
2474
- resellerName?: string | null;
2475
- shipToName?: string | null;
2476
- orderNumber?: string | null;
2477
- shipmentDate?: number;
2478
- category?: string | null;
2479
- opportunityManufacturerId?: string | null;
2480
- opportunityManufacturerNumber?: string | null;
2473
+ ShipmentNumber?: string | null;
2474
+ RandmarSKU?: string | null;
2475
+ QuantityShipped?: number;
2476
+ UnitPrice?: number;
2477
+ ExtendedPrice?: number;
2478
+ Description?: string | null;
2479
+ Location?: string | null;
2480
+ ResellerId?: string | null;
2481
+ QuantityBackOrder?: number;
2482
+ QuantityOrdered?: number;
2483
+ ManufacturerPartNumber?: string | null;
2484
+ UnitWeight?: number;
2485
+ PONumber?: string | null;
2486
+ ResellerName?: string | null;
2487
+ ShipToName?: string | null;
2488
+ OrderNumber?: string | null;
2489
+ ShipmentDate?: number;
2490
+ Category?: string | null;
2491
+ OpportunityManufacturerId?: string | null;
2492
+ OpportunityManufacturerNumber?: string | null;
2481
2493
  };
2482
2494
  export type Return = {
2483
- returnNumber?: string | null;
2484
- randmarSKU?: string | null;
2485
- quantity?: number;
2486
- serialNumbers?: string | null;
2487
- reasonForReturn?: string | null;
2488
- returnNumber1?: string | null;
2489
- resellerId?: string | null;
2490
- status?: string | null;
2491
- invoiceNumber?: string | null;
2492
- requestDate?: string | null;
2493
- creditNumber?: string | null;
2494
- contactName?: string | null;
2495
- contactPhone?: string | null;
2496
- contactEmail?: string | null;
2497
- comments?: string | null;
2498
- resellerName?: string | null;
2499
- warehouseLocation?: string | null;
2500
- shipppingLabelOrderNumber?: string | null;
2501
- lastUpdatedDate?: string | null;
2495
+ ReturnNumber?: string | null;
2496
+ RandmarSKU?: string | null;
2497
+ Quantity?: number;
2498
+ SerialNumbers?: string | null;
2499
+ ReasonForReturn?: string | null;
2500
+ ReturnNumber1?: string | null;
2501
+ ResellerId?: string | null;
2502
+ Status?: string | null;
2503
+ InvoiceNumber?: string | null;
2504
+ RequestDate?: string | null;
2505
+ CreditNumber?: string | null;
2506
+ ContactName?: string | null;
2507
+ ContactPhone?: string | null;
2508
+ ContactEmail?: string | null;
2509
+ Comments?: string | null;
2510
+ ResellerName?: string | null;
2511
+ WarehouseLocation?: string | null;
2512
+ ShipppingLabelOrderNumber?: string | null;
2513
+ LastUpdatedDate?: string | null;
2502
2514
  };
2503
2515
  export type Receipt = {
2504
- vendorName?: string | null;
2505
- manufacturerId?: string | null;
2506
- manufacturerName?: string | null;
2507
- receiptDate?: number;
2508
- randmarSKU?: string | null;
2509
- location?: string | null;
2510
- description?: string | null;
2511
- quantity?: number;
2512
- mpn?: string | null;
2516
+ VendorName?: string | null;
2517
+ ManufacturerId?: string | null;
2518
+ ManufacturerName?: string | null;
2519
+ ReceiptDate?: number;
2520
+ RandmarSKU?: string | null;
2521
+ Location?: string | null;
2522
+ Description?: string | null;
2523
+ Quantity?: number;
2524
+ MPN?: string | null;
2513
2525
  };
2514
2526
  export type SalesStatistic = {
2515
- randmarSKU?: string | null;
2516
- day?: number;
2517
- quantity?: number;
2518
- extendedPrice?: number;
2527
+ RandmarSKU?: string | null;
2528
+ Day?: number;
2529
+ Quantity?: number;
2530
+ ExtendedPrice?: number;
2519
2531
  };
2520
2532
  export type ResellerProduct = {
2521
- randmarSKU?: string | null;
2522
- randmarTitle?: string | null;
2523
- category?: string | null;
2524
- unitWeight?: number;
2525
- upc?: string | null;
2526
- manufacturerName?: string | null;
2527
- productType?: string | null;
2528
- autoUpdate?: number;
2529
- createdBy?: string | null;
2530
- lastMaintainedDate?: number;
2531
- title?: string | null;
2532
- bodyHTML?: string | null;
2533
- map?: number | null;
2534
- manufacturerId?: string | null;
2535
- state?: string | null;
2536
- mpn?: string | null;
2537
- masterCarton?: number;
2538
- skidQuantity?: number | null;
2539
- serialNumber?: boolean;
2540
- opportunityOnly?: boolean;
2541
- voiceoverCaption?: string | null;
2542
- sceneName?: string | null;
2543
- require3DScan?: boolean;
2544
- transparencyCode?: boolean;
2545
- countryCodeOfOrigin?: string | null;
2546
- unitLength?: number | null;
2547
- unitWidth?: number | null;
2548
- unitHeight?: number | null;
2549
- manufacturerCategory?: ManufacturerCategory;
2550
- manufacturer?: Manufacturer;
2551
- distribution?: Distribution;
2552
- availableToBuy?: boolean;
2553
- opportunities?: Opportunity[] | null;
2554
- invoices?: Invoice[] | null;
2555
- credits?: Credit[] | null;
2556
- orders?: Order[] | null;
2557
- shipments?: Shipment[] | null;
2558
- instantRebates?: any[] | null;
2559
- returns?: Return[] | null;
2560
- receipts?: Receipt[] | null;
2561
- salesStatistics?: SalesStatistic[] | null;
2562
- canBeAllocated?: boolean;
2563
- shopifyProduct?: any | null;
2533
+ ManufacturerCategory?: ManufacturerCategory;
2534
+ Manufacturer?: Manufacturer;
2535
+ Distribution?: Distribution;
2536
+ AvailableToBuy?: boolean;
2537
+ Opportunities?: OpportunityEntry[] | null;
2538
+ Invoices?: Invoice[] | null;
2539
+ Credits?: Credit[] | null;
2540
+ Orders?: Order[] | null;
2541
+ Shipments?: Shipment[] | null;
2542
+ InstantRebates?: any[] | null;
2543
+ Returns?: Return[] | null;
2544
+ Receipts?: Receipt[] | null;
2545
+ SalesStatistics?: SalesStatistic[] | null;
2546
+ CanBeAllocated?: boolean;
2547
+ ShopifyProduct?: any | null;
2548
+ RandmarSKU?: string | null;
2549
+ RandmarTitle?: string | null;
2550
+ Category?: string | null;
2551
+ UnitWeight?: number;
2552
+ UPC?: string | null;
2553
+ ManufacturerName?: string | null;
2554
+ ProductType?: string | null;
2555
+ AutoUpdate?: number;
2556
+ CreatedBy?: string | null;
2557
+ LastMaintainedDate?: number;
2558
+ Title?: string | null;
2559
+ BodyHTML?: string | null;
2560
+ MAP?: number | null;
2561
+ ManufacturerId?: string | null;
2562
+ State?: string | null;
2563
+ MPN?: string | null;
2564
+ MasterCarton?: number;
2565
+ SkidQuantity?: number | null;
2566
+ SerialNumber?: boolean;
2567
+ OpportunityOnly?: boolean;
2568
+ VoiceoverCaption?: string | null;
2569
+ SceneName?: string | null;
2570
+ Require3DScan?: boolean;
2571
+ TransparencyCode?: boolean;
2572
+ CountryCodeOfOrigin?: string | null;
2573
+ UnitLength?: number | null;
2574
+ UnitWidth?: number | null;
2575
+ UnitHeight?: number | null;
2576
+ InstantRebate?: any | null;
2564
2577
  };
2565
2578
  export type UpcEntry = {
2566
- randmarSKU?: string | null;
2567
- upc?: string | null;
2568
- unit?: string | null;
2569
- authorization?: string | null;
2579
+ RandmarSKU?: string | null;
2580
+ UPC?: string | null;
2581
+ Unit?: string | null;
2582
+ Authorization?: string | null;
2570
2583
  };
2571
2584
  export type TransactionHistory = {
2572
- randmarSKU?: string | null;
2573
- location?: string | null;
2574
- transactionDate?: number;
2575
- category?: string | null;
2576
- documentNumber?: string | null;
2577
- transactionType?: string | null;
2578
- quantity?: number;
2585
+ RandmarSKU?: string | null;
2586
+ Location?: string | null;
2587
+ TransactionDate?: number;
2588
+ Category?: string | null;
2589
+ DocumentNumber?: string | null;
2590
+ TransactionType?: string | null;
2591
+ Quantity?: number;
2579
2592
  };
2580
2593
  export type PurchaseOrder = {
2581
- lineNumber?: number;
2582
- purchaseOrderNumber?: string | null;
2583
- vendorName?: string | null;
2584
- manufacturerName?: string | null;
2585
- vendorCode?: string | null;
2586
- randmarSKU?: string | null;
2587
- location?: string | null;
2588
- description?: string | null;
2589
- expectedArrivalDate?: number;
2590
- quantityOutstanding?: number;
2591
- quantityOrdered?: number;
2592
- quantityReceived?: number;
2593
- mpn?: string | null;
2594
- unitPrice?: number;
2595
- category?: string | null;
2596
- categoryName?: string | null;
2597
- manufacturerId?: string | null;
2598
- purchaseOrderDate?: number;
2594
+ LineNumber?: number;
2595
+ PurchaseOrderNumber?: string | null;
2596
+ VendorName?: string | null;
2597
+ ManufacturerName?: string | null;
2598
+ VendorCode?: string | null;
2599
+ RandmarSKU?: string | null;
2600
+ Location?: string | null;
2601
+ Description?: string | null;
2602
+ ExpectedArrivalDate?: number;
2603
+ QuantityOutstanding?: number;
2604
+ QuantityOrdered?: number;
2605
+ QuantityReceived?: number;
2606
+ MPN?: string | null;
2607
+ UnitPrice?: number;
2608
+ Category?: string | null;
2609
+ CategoryName?: string | null;
2610
+ ManufacturerId?: string | null;
2611
+ PurchaseOrderDate?: number;
2599
2612
  };
2600
2613
  export type OrderDetail = {
2601
- documentType?: string | null;
2602
- documentNumber?: string | null;
2603
- orderNumber?: string | null;
2604
- poNumber?: string | null;
2605
- orderDate?: number;
2606
- documentDate?: number;
2607
- resellerId?: string | null;
2608
- resellerName?: string | null;
2609
- shipToName?: string | null;
2610
- shipToZipCode?: string | null;
2611
- shipToCountryCode?: string | null;
2612
- warehouseCode?: string | null;
2613
- opportunityManufacTurerId?: string | null;
2614
- opportunityManufacturerNumber?: string | null;
2615
- shipViaDescription?: string | null;
2616
- randmarSKU?: string | null;
2617
- mpn?: string | null;
2618
- category?: string | null;
2619
- manufacturerId?: string | null;
2620
- manufacturerName?: string | null;
2621
- quantity?: number;
2622
- unitPrice?: number;
2623
- extendedPrice?: number;
2624
- unitWeight?: number;
2625
- extendedWeight?: number;
2614
+ DocumentType?: string | null;
2615
+ DocumentNumber?: string | null;
2616
+ OrderNumber?: string | null;
2617
+ PONumber?: string | null;
2618
+ OrderDate?: number;
2619
+ DocumentDate?: number;
2620
+ ResellerId?: string | null;
2621
+ ResellerName?: string | null;
2622
+ ShipToName?: string | null;
2623
+ ShipToZipCode?: string | null;
2624
+ ShipToCountryCode?: string | null;
2625
+ WarehouseCode?: string | null;
2626
+ OpportunityManufacTurerId?: string | null;
2627
+ OpportunityManufacturerNumber?: string | null;
2628
+ ShipViaDescription?: string | null;
2629
+ RandmarSKU?: string | null;
2630
+ MPN?: string | null;
2631
+ Category?: string | null;
2632
+ ManufacturerId?: string | null;
2633
+ ManufacturerName?: string | null;
2634
+ Quantity?: number;
2635
+ UnitPrice?: number;
2636
+ ExtendedPrice?: number;
2637
+ UnitWeight?: number;
2638
+ ExtendedWeight?: number;
2626
2639
  };
2627
2640
  export type CompletedOrderDetail = {
2628
- documentType?: string | null;
2629
- documentNumber?: string | null;
2630
- orderNumber?: string | null;
2631
- poNumber?: string | null;
2632
- orderDate?: number;
2633
- documentDate?: number;
2634
- resellerId?: string | null;
2635
- resellerName?: string | null;
2636
- shipToName?: string | null;
2637
- shipToZipCode?: string | null;
2638
- shipToCountryCode?: string | null;
2639
- warehouseCode?: string | null;
2640
- opportunityManufacTurerId?: string | null;
2641
- opportunityManufacturerNumber?: string | null;
2642
- shipViaDescription?: string | null;
2643
- randmarSKU?: string | null;
2644
- mpn?: string | null;
2645
- category?: string | null;
2646
- manufacturerId?: string | null;
2647
- quantity?: number;
2648
- standardCost?: number;
2649
- extendedStandardCost?: number;
2650
- unitPrice?: number;
2651
- extendedPrice?: number;
2652
- unitWeight?: number;
2653
- extendedWeight?: number;
2641
+ DocumentType?: string | null;
2642
+ DocumentNumber?: string | null;
2643
+ OrderNumber?: string | null;
2644
+ PONumber?: string | null;
2645
+ OrderDate?: number;
2646
+ DocumentDate?: number;
2647
+ ResellerId?: string | null;
2648
+ ResellerName?: string | null;
2649
+ ShipToName?: string | null;
2650
+ ShipToZipCode?: string | null;
2651
+ ShipToCountryCode?: string | null;
2652
+ WarehouseCode?: string | null;
2653
+ OpportunityManufacTurerId?: string | null;
2654
+ OpportunityManufacturerNumber?: string | null;
2655
+ ShipViaDescription?: string | null;
2656
+ RandmarSKU?: string | null;
2657
+ MPN?: string | null;
2658
+ Category?: string | null;
2659
+ ManufacturerId?: string | null;
2660
+ Quantity?: number;
2661
+ StandardCost?: number;
2662
+ ExtendedStandardCost?: number;
2663
+ UnitPrice?: number;
2664
+ ExtendedPrice?: number;
2665
+ UnitWeight?: number;
2666
+ ExtendedWeight?: number;
2654
2667
  };
2655
2668
  export type FlatProduct = {
2656
- randmarSKU?: string | null;
2657
- randmarTitle?: string | null;
2658
- category?: string | null;
2659
- unitWeight?: number;
2660
- upc?: string | null;
2661
- manufacturerName?: string | null;
2662
- productType?: string | null;
2663
- autoUpdate?: number;
2664
- createdBy?: string | null;
2665
- lastMaintainedDate?: number;
2666
- title?: string | null;
2667
- bodyHTML?: string | null;
2668
- map?: number | null;
2669
- manufacturerId?: string | null;
2670
- state?: string | null;
2671
- mpn?: string | null;
2672
- masterCarton?: number;
2673
- skidQuantity?: number | null;
2674
- serialNumber?: boolean;
2675
- opportunityOnly?: boolean;
2676
- voiceoverCaption?: string | null;
2677
- sceneName?: string | null;
2678
- require3DScan?: boolean;
2679
- transparencyCode?: boolean;
2680
- countryCodeOfOrigin?: string | null;
2681
- unitLength?: number | null;
2682
- unitWidth?: number | null;
2683
- unitHeight?: number | null;
2684
- manufacturerCategory?: ManufacturerCategory;
2685
- manufacturer?: Manufacturer;
2686
- distribution?: Distribution;
2687
- availableToBuy?: boolean | null;
2688
- opportunities?: Opportunity[] | null;
2689
- invoices?: Invoice[] | null;
2690
- credits?: Credit[] | null;
2691
- orders?: Order[] | null;
2692
- shipments?: Shipment[] | null;
2693
- instantRebates?: any[] | null;
2694
- returns?: Return[] | null;
2695
- receipts?: Receipt[] | null;
2696
- salesStatistics?: SalesStatistic[] | null;
2697
- canBeAllocated?: boolean | null;
2698
- shopifyProduct?: any | null;
2699
- upCs?: UpcEntry[] | null;
2700
- requisitions?: any[] | null;
2701
- transactionHistory?: TransactionHistory[] | null;
2702
- purchaseOrders?: PurchaseOrder[] | null;
2703
- contractPricings?: any[] | null;
2704
- isManufacturer?: boolean | null;
2705
- activeOrderDetails?: OrderDetail[] | null;
2706
- completedOrderDetails?: CompletedOrderDetail[] | null;
2669
+ ManufacturerCategory?: ManufacturerCategory;
2670
+ Manufacturer?: Manufacturer;
2671
+ Distribution?: Distribution;
2672
+ AvailableToBuy?: boolean | null;
2673
+ Opportunities?: OpportunityEntry[] | null;
2674
+ Invoices?: Invoice[] | null;
2675
+ Credits?: Credit[] | null;
2676
+ Orders?: Order[] | null;
2677
+ Shipments?: Shipment[] | null;
2678
+ InstantRebates?: any[] | null;
2679
+ Returns?: Return[] | null;
2680
+ Receipts?: Receipt[] | null;
2681
+ SalesStatistics?: SalesStatistic[] | null;
2682
+ CanBeAllocated?: boolean | null;
2683
+ ShopifyProduct?: any | null;
2684
+ UPCs?: UpcEntry[] | null;
2685
+ Requisitions?: any[] | null;
2686
+ TransactionHistory?: TransactionHistory[] | null;
2687
+ PurchaseOrders?: PurchaseOrder[] | null;
2688
+ ContractPricings?: any[] | null;
2689
+ IsManufacturer?: boolean | null;
2690
+ ActiveOrderDetails?: OrderDetail[] | null;
2691
+ CompletedOrderDetails?: CompletedOrderDetail[] | null;
2692
+ RandmarSKU?: string | null;
2693
+ RandmarTitle?: string | null;
2694
+ Category?: string | null;
2695
+ UnitWeight?: number;
2696
+ UPC?: string | null;
2697
+ ManufacturerName?: string | null;
2698
+ ProductType?: string | null;
2699
+ AutoUpdate?: number;
2700
+ CreatedBy?: string | null;
2701
+ LastMaintainedDate?: number;
2702
+ Title?: string | null;
2703
+ BodyHTML?: string | null;
2704
+ MAP?: number | null;
2705
+ ManufacturerId?: string | null;
2706
+ State?: string | null;
2707
+ MPN?: string | null;
2708
+ MasterCarton?: number;
2709
+ SkidQuantity?: number | null;
2710
+ SerialNumber?: boolean;
2711
+ OpportunityOnly?: boolean;
2712
+ VoiceoverCaption?: string | null;
2713
+ SceneName?: string | null;
2714
+ Require3DScan?: boolean;
2715
+ TransparencyCode?: boolean;
2716
+ CountryCodeOfOrigin?: string | null;
2717
+ UnitLength?: number | null;
2718
+ UnitWidth?: number | null;
2719
+ UnitHeight?: number | null;
2720
+ InstantRebate?: any | null;
2707
2721
  };
2708
2722
  export type ProductConvertToShortModel = {
2709
- title?: string | null;
2710
- text?: string | null;
2711
- cameraSpeed?: number;
2712
- voiceName?: string | null;
2713
- voiceStyle?: string | null;
2714
- sceneName?: string | null;
2723
+ Title?: string | null;
2724
+ Text?: string | null;
2725
+ CameraSpeed?: number;
2726
+ VoiceName?: string | null;
2727
+ VoiceStyle?: string | null;
2728
+ SceneName?: string | null;
2715
2729
  };
2716
2730
  export type ManufacturerProduct = {
2717
- randmarSKU?: string | null;
2718
- randmarTitle?: string | null;
2719
- category?: string | null;
2720
- unitWeight?: number;
2721
- upc?: string | null;
2722
- manufacturerName?: string | null;
2723
- productType?: string | null;
2724
- autoUpdate?: number;
2725
- createdBy?: string | null;
2726
- lastMaintainedDate?: number;
2727
- title?: string | null;
2728
- bodyHTML?: string | null;
2729
- map?: number | null;
2730
- manufacturerId?: string | null;
2731
- state?: string | null;
2732
- mpn?: string | null;
2733
- masterCarton?: number;
2734
- skidQuantity?: number | null;
2735
- serialNumber?: boolean;
2736
- opportunityOnly?: boolean;
2737
- voiceoverCaption?: string | null;
2738
- sceneName?: string | null;
2739
- require3DScan?: boolean;
2740
- transparencyCode?: boolean;
2741
- countryCodeOfOrigin?: string | null;
2742
- unitLength?: number | null;
2743
- unitWidth?: number | null;
2744
- unitHeight?: number | null;
2745
- isManufacturer?: boolean;
2746
- distribution?: Distribution;
2747
- activeOrderDetails?: OrderDetail[] | null;
2748
- completedOrderDetails?: CompletedOrderDetail[] | null;
2749
- salesStatistics?: SalesStatistic[] | null;
2750
- purchaseOrders?: PurchaseOrder[] | null;
2751
- requisitions?: any[] | null;
2752
- opportunities?: Opportunity[] | null;
2753
- transactionHistory?: TransactionHistory[] | null;
2754
- instantRebates?: any[] | null;
2755
- manufacturerCategory?: ManufacturerCategory;
2731
+ IsManufacturer?: boolean;
2732
+ Distribution?: Distribution;
2733
+ ActiveOrderDetails?: OrderDetail[] | null;
2734
+ CompletedOrderDetails?: CompletedOrderDetail[] | null;
2735
+ SalesStatistics?: SalesStatistic[] | null;
2736
+ PurchaseOrders?: PurchaseOrder[] | null;
2737
+ Requisitions?: any[] | null;
2738
+ Opportunities?: OpportunityEntry[] | null;
2739
+ TransactionHistory?: TransactionHistory[] | null;
2740
+ InstantRebates?: any[] | null;
2741
+ ManufacturerCategory?: ManufacturerCategory;
2742
+ RandmarSKU?: string | null;
2743
+ RandmarTitle?: string | null;
2744
+ Category?: string | null;
2745
+ UnitWeight?: number;
2746
+ UPC?: string | null;
2747
+ ManufacturerName?: string | null;
2748
+ ProductType?: string | null;
2749
+ AutoUpdate?: number;
2750
+ CreatedBy?: string | null;
2751
+ LastMaintainedDate?: number;
2752
+ Title?: string | null;
2753
+ BodyHTML?: string | null;
2754
+ MAP?: number | null;
2755
+ ManufacturerId?: string | null;
2756
+ State?: string | null;
2757
+ MPN?: string | null;
2758
+ MasterCarton?: number;
2759
+ SkidQuantity?: number | null;
2760
+ SerialNumber?: boolean;
2761
+ OpportunityOnly?: boolean;
2762
+ VoiceoverCaption?: string | null;
2763
+ SceneName?: string | null;
2764
+ Require3DScan?: boolean;
2765
+ TransparencyCode?: boolean;
2766
+ CountryCodeOfOrigin?: string | null;
2767
+ UnitLength?: number | null;
2768
+ UnitWidth?: number | null;
2769
+ UnitHeight?: number | null;
2770
+ InstantRebate?: any | null;
2756
2771
  };
2757
2772
  export type ReturnPartNumbers = {
2758
- randmarSKU?: string | null;
2759
- quantity?: number;
2760
- reason?: string | null;
2761
- serailNumbers?: string | null;
2773
+ RandmarSKU?: string | null;
2774
+ Quantity?: number;
2775
+ Reason?: string | null;
2776
+ SerailNumbers?: string | null;
2762
2777
  };
2763
2778
  export type ReturnRequest = {
2764
- invoiceNumber?: string | null;
2765
- contactName?: string | null;
2766
- contactPhone?: string | null;
2767
- contactEmail?: string | null;
2768
- comments?: string | null;
2769
- partNumbers?: ReturnPartNumbers[] | null;
2779
+ InvoiceNumber?: string | null;
2780
+ ContactName?: string | null;
2781
+ ContactPhone?: string | null;
2782
+ ContactEmail?: string | null;
2783
+ Comments?: string | null;
2784
+ PartNumbers?: ReturnPartNumbers[] | null;
2770
2785
  };
2771
2786
  export type ManufacturerRmaPartNumber = {
2772
- mpn?: string | null;
2773
- serialNumber?: string | null;
2787
+ MPN?: string | null;
2788
+ SerialNumber?: string | null;
2774
2789
  };
2775
2790
  export type ManufacturerRma = {
2776
- manufacturerRMAPartNumbers?: ManufacturerRmaPartNumber[] | null;
2777
- emailAddresses?: string[] | null;
2791
+ ManufacturerRMAPartNumbers?: ManufacturerRmaPartNumber[] | null;
2792
+ EmailAddresses?: string[] | null;
2793
+ };
2794
+ export type ShipmentAddress = {
2795
+ Name?: string | null;
2796
+ Street1?: string | null;
2797
+ Street2?: string | null;
2798
+ City?: string | null;
2799
+ Province?: string | null;
2800
+ PostalCode?: string | null;
2801
+ Country?: string | null;
2802
+ ContactName?: string | null;
2803
+ ContactPhone?: string | null;
2804
+ };
2805
+ export type ShipmentDetails = {
2806
+ From?: ShipmentAddress;
2807
+ To?: ShipmentAddress;
2808
+ NumberOfBoxes?: number;
2809
+ TotalWeight?: number;
2810
+ ReferenceNumber?: string | null;
2811
+ Carrier?: string | null;
2812
+ ToEmailAddress?: string | null;
2778
2813
  };
2779
- export type ShipmentDetails = object;
2780
2814
  export declare const useGetV4ShopifyByShopifyHostNameAccountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
2781
2815
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
2782
2816
  originalArgs?: undefined | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "randmar-api-client",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",