randmar-api-client 1.3.0 → 1.4.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.
- package/dist/store/randmarApi.d.ts +531 -531
- package/package.json +1 -1
|
@@ -2114,667 +2114,667 @@ export type ProblemDetails = {
|
|
|
2114
2114
|
export type BillingInformation = object;
|
|
2115
2115
|
export type ShipToDetails = object;
|
|
2116
2116
|
export type ShipToLocation = {
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
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;
|
|
2137
2137
|
};
|
|
2138
2138
|
export type OrderLineItem = {
|
|
2139
2139
|
/** The order number this line item belongs to */
|
|
2140
|
-
|
|
2140
|
+
OrderNumber?: string | null;
|
|
2141
2141
|
/** The name of the reseller */
|
|
2142
|
-
|
|
2142
|
+
ResellerName?: string | null;
|
|
2143
2143
|
/** The name of the shipping recipient */
|
|
2144
|
-
|
|
2144
|
+
ShipToName?: string | null;
|
|
2145
2145
|
/** The purchase order number */
|
|
2146
|
-
|
|
2146
|
+
PONumber?: string | null;
|
|
2147
2147
|
/** The internal SKU for the product */
|
|
2148
|
-
|
|
2148
|
+
RandmarSKU?: string | null;
|
|
2149
2149
|
/** The description of the product */
|
|
2150
|
-
|
|
2150
|
+
Description?: string | null;
|
|
2151
2151
|
/** The product category */
|
|
2152
|
-
|
|
2152
|
+
Category?: string | null;
|
|
2153
2153
|
/** The warehouse location code */
|
|
2154
|
-
|
|
2154
|
+
Location?: string | null;
|
|
2155
2155
|
/** The quantity ordered */
|
|
2156
|
-
|
|
2156
|
+
QuantityOrdered?: number;
|
|
2157
2157
|
/** The quantity shipped */
|
|
2158
|
-
|
|
2158
|
+
QuantityShipped?: number;
|
|
2159
2159
|
/** The quantity on back order */
|
|
2160
|
-
|
|
2160
|
+
QuantityBackOrdered?: number;
|
|
2161
2161
|
/** The unit price of the product */
|
|
2162
|
-
|
|
2162
|
+
UnitPrice?: number;
|
|
2163
2163
|
/** The extended price (unit price × quantity) */
|
|
2164
|
-
|
|
2164
|
+
ExtendedPrice?: number;
|
|
2165
2165
|
/** The unit weight in kg */
|
|
2166
|
-
|
|
2166
|
+
UnitWeight?: number;
|
|
2167
2167
|
/** The manufacturer's part number */
|
|
2168
|
-
|
|
2168
|
+
ManufacturerPartNumber?: string | null;
|
|
2169
2169
|
/** The reseller ID */
|
|
2170
|
-
|
|
2170
|
+
ResellerId?: string | null;
|
|
2171
2171
|
/** The expected shipment date (format: YYYYMMDD) */
|
|
2172
|
-
|
|
2172
|
+
ExpectedShipmentDate?: number;
|
|
2173
2173
|
/** The actual shipment date (format: YYYYMMDD) */
|
|
2174
|
-
|
|
2174
|
+
ShipmentDate?: number;
|
|
2175
2175
|
/** The date the order was placed (format: YYYYMMDD) */
|
|
2176
|
-
|
|
2176
|
+
OrderDate?: number;
|
|
2177
2177
|
/** The opportunity manufacturer ID (if applicable) */
|
|
2178
|
-
|
|
2178
|
+
OpportunityManufacturerId?: string | null;
|
|
2179
2179
|
/** The opportunity manufacturer number (if applicable) */
|
|
2180
|
-
|
|
2180
|
+
OpportunityManufacturerNumber?: string | null;
|
|
2181
2181
|
};
|
|
2182
2182
|
export type OrderCharge = {
|
|
2183
2183
|
/** The reseller ID */
|
|
2184
|
-
|
|
2184
|
+
ResellerId?: string | null;
|
|
2185
2185
|
/** The order number this charge belongs to */
|
|
2186
|
-
|
|
2186
|
+
OrderNumber?: string | null;
|
|
2187
2187
|
/** The name of the reseller */
|
|
2188
|
-
|
|
2188
|
+
ResellerName?: string | null;
|
|
2189
2189
|
/** The name of the shipping recipient */
|
|
2190
|
-
|
|
2190
|
+
ShipToName?: string | null;
|
|
2191
2191
|
/** The purchase order number */
|
|
2192
|
-
|
|
2192
|
+
PONumber?: string | null;
|
|
2193
2193
|
/** The SKU code for the charge */
|
|
2194
|
-
|
|
2194
|
+
RandmarSKU?: string | null;
|
|
2195
2195
|
/** The description of the charge */
|
|
2196
|
-
|
|
2196
|
+
Description?: string | null;
|
|
2197
2197
|
/** The amount of the charge */
|
|
2198
|
-
|
|
2198
|
+
Price?: number;
|
|
2199
2199
|
};
|
|
2200
2200
|
export type OrderDocument = {
|
|
2201
2201
|
/** The unique identifier of the reseller */
|
|
2202
|
-
|
|
2202
|
+
ResellerId?: string | null;
|
|
2203
2203
|
/** The unique order number */
|
|
2204
|
-
|
|
2204
|
+
OrderNumber?: string | null;
|
|
2205
2205
|
/** The date when the order was placed (format: YYYYMMDD) */
|
|
2206
|
-
|
|
2206
|
+
OrderDate?: number;
|
|
2207
2207
|
/** The date when the order is scheduled to ship (format: YYYYMMDD) */
|
|
2208
|
-
|
|
2208
|
+
ShippingDate?: number;
|
|
2209
2209
|
/** The name of the shipping recipient */
|
|
2210
|
-
|
|
2210
|
+
ShipToName?: string | null;
|
|
2211
2211
|
/** The first line of the shipping address */
|
|
2212
|
-
|
|
2212
|
+
ShipToAddress1?: string | null;
|
|
2213
2213
|
/** The second line of the shipping address (optional) */
|
|
2214
|
-
|
|
2214
|
+
ShipToAddress2?: string | null;
|
|
2215
2215
|
/** The city for shipping */
|
|
2216
|
-
|
|
2216
|
+
ShipToCity?: string | null;
|
|
2217
2217
|
/** The province/state for shipping */
|
|
2218
|
-
|
|
2218
|
+
ShipToProvince?: string | null;
|
|
2219
2219
|
/** The postal/zip code for shipping */
|
|
2220
|
-
|
|
2220
|
+
ShipToPostalCode?: string | null;
|
|
2221
2221
|
/** The country code for shipping */
|
|
2222
|
-
|
|
2222
|
+
ShipToCountry?: string | null;
|
|
2223
2223
|
/** The purchase order number from the reseller (optional) */
|
|
2224
|
-
|
|
2224
|
+
PONumber?: string | null;
|
|
2225
2225
|
/** The date when the order was last modified (format: YYYYMMDD) */
|
|
2226
|
-
|
|
2226
|
+
LastEditDate?: number;
|
|
2227
2227
|
/** The warehouse location code */
|
|
2228
|
-
|
|
2228
|
+
Location?: string | null;
|
|
2229
2229
|
/** The name of the reseller */
|
|
2230
|
-
|
|
2230
|
+
ResellerName?: string | null;
|
|
2231
2231
|
/** The shipping carrier code */
|
|
2232
|
-
|
|
2232
|
+
ShipVia?: string | null;
|
|
2233
2233
|
/** The shipping carrier description */
|
|
2234
|
-
|
|
2234
|
+
ShipViaDescription?: string | null;
|
|
2235
2235
|
/** The number of shipments created for this order */
|
|
2236
|
-
|
|
2236
|
+
NumberOfShipments?: number;
|
|
2237
2237
|
/** Indicates if the order is on hold (0=Not On Hold, 1=On Hold) */
|
|
2238
|
-
|
|
2238
|
+
OnHold?: number;
|
|
2239
2239
|
/** The initial number of line items in the order */
|
|
2240
|
-
|
|
2240
|
+
InitialNumberOfLines?: number;
|
|
2241
2241
|
/** The current number of line items in the order */
|
|
2242
|
-
|
|
2242
|
+
NumberOfLines?: number;
|
|
2243
2243
|
/** The priority code of the order */
|
|
2244
|
-
|
|
2244
|
+
Priority?: string | null;
|
|
2245
2245
|
/** The end user's purchase order number */
|
|
2246
|
-
|
|
2246
|
+
EndUserPONumber?: string | null;
|
|
2247
2247
|
/** The contact name at the shipping address */
|
|
2248
|
-
|
|
2248
|
+
ShipToContactName?: string | null;
|
|
2249
2249
|
/** The contact phone number at the shipping address */
|
|
2250
|
-
|
|
2250
|
+
ShipToContactPhone?: string | null;
|
|
2251
2251
|
/** The calculated weight of the order in kg */
|
|
2252
|
-
|
|
2252
|
+
TheoreticalWeight?: number;
|
|
2253
2253
|
/** The subtotal of the order before taxes */
|
|
2254
|
-
|
|
2254
|
+
OrderTotal?: number;
|
|
2255
2255
|
/** General comments for the order */
|
|
2256
|
-
|
|
2256
|
+
Comments?: string | null;
|
|
2257
2257
|
/** Comments to be printed on the shipping slip */
|
|
2258
|
-
|
|
2258
|
+
ShippingSlipComment?: string | null;
|
|
2259
2259
|
/** The primary tax amount */
|
|
2260
|
-
|
|
2260
|
+
TaxAmount1?: number;
|
|
2261
2261
|
/** The primary tax rate as a percentage */
|
|
2262
|
-
|
|
2262
|
+
TaxRate1?: number;
|
|
2263
2263
|
/** The secondary tax amount (if applicable) */
|
|
2264
|
-
|
|
2264
|
+
TaxAmount2?: number;
|
|
2265
2265
|
/** The secondary tax rate as a percentage (if applicable) */
|
|
2266
|
-
|
|
2266
|
+
TaxRate2?: number;
|
|
2267
2267
|
/** The subtotal of the order before taxes */
|
|
2268
|
-
|
|
2268
|
+
SubTotal?: number;
|
|
2269
2269
|
/** The total amount of the order including taxes */
|
|
2270
|
-
|
|
2270
|
+
Total?: number;
|
|
2271
2271
|
/** The manufacturer ID (if applicable) */
|
|
2272
|
-
|
|
2272
|
+
ManufacturerId?: string | null;
|
|
2273
2273
|
/** The bid number (if applicable) */
|
|
2274
|
-
|
|
2274
|
+
BidNumber?: string | null;
|
|
2275
2275
|
/** The list of products in the order */
|
|
2276
|
-
|
|
2276
|
+
PartNumbers?: OrderLineItem[] | null;
|
|
2277
2277
|
/** The list of additional charges for the order */
|
|
2278
|
-
|
|
2278
|
+
Charges?: OrderCharge[] | null;
|
|
2279
2279
|
};
|
|
2280
2280
|
export type ConvertToShortModel = {
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2281
|
+
Title?: string | null;
|
|
2282
|
+
Text?: string | null;
|
|
2283
|
+
CameraSpeed?: number;
|
|
2284
|
+
WithRandmarBranding?: boolean;
|
|
2285
|
+
VoiceName?: string | null;
|
|
2286
2286
|
};
|
|
2287
2287
|
export type TextToSpeechModel = {
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2288
|
+
Caption?: string | null;
|
|
2289
|
+
VoiceName?: string | null;
|
|
2290
|
+
VoiceStyle?: string | null;
|
|
2291
2291
|
};
|
|
2292
2292
|
export type ShortsFromLongModel = {
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2293
|
+
WithBranding?: boolean | null;
|
|
2294
|
+
VideoUrl?: string | null;
|
|
2295
|
+
Title?: string | null;
|
|
2296
|
+
People?: string[] | null;
|
|
2297
|
+
Locale?: string | null;
|
|
2298
|
+
MultipleCameras?: boolean | null;
|
|
2299
2299
|
};
|
|
2300
2300
|
export type ManufacturerCategory = {
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
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;
|
|
2316
2316
|
};
|
|
2317
2317
|
export type Manufacturer = {
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
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;
|
|
2335
2335
|
};
|
|
2336
2336
|
export type Inventory = {
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
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;
|
|
2347
2347
|
};
|
|
2348
2348
|
export type Distribution = {
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2349
|
+
Price?: number;
|
|
2350
|
+
RegularPrice?: number;
|
|
2351
|
+
Cost?: number | null;
|
|
2352
|
+
MAP?: number;
|
|
2353
|
+
Currency?: string | null;
|
|
2354
|
+
ExchangeRate?: number;
|
|
2355
|
+
Inventory?: Inventory[] | null;
|
|
2356
2356
|
};
|
|
2357
2357
|
export type Opportunity = {
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
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;
|
|
2373
2373
|
};
|
|
2374
2374
|
export type Invoice = {
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
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;
|
|
2407
2407
|
};
|
|
2408
2408
|
export type Credit = {
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
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;
|
|
2435
2435
|
};
|
|
2436
2436
|
export type Order = {
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
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;
|
|
2459
2459
|
};
|
|
2460
2460
|
export type Shipment = {
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
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;
|
|
2481
2481
|
};
|
|
2482
2482
|
export type Return = {
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
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;
|
|
2502
2502
|
};
|
|
2503
2503
|
export type Receipt = {
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
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;
|
|
2513
2513
|
};
|
|
2514
2514
|
export type SalesStatistic = {
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2515
|
+
RandmarSKU?: string | null;
|
|
2516
|
+
Day?: number;
|
|
2517
|
+
Quantity?: number;
|
|
2518
|
+
ExtendedPrice?: number;
|
|
2519
2519
|
};
|
|
2520
2520
|
export type ResellerProduct = {
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
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;
|
|
2564
2564
|
};
|
|
2565
2565
|
export type UpcEntry = {
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2566
|
+
RandmarSKU?: string | null;
|
|
2567
|
+
UPC?: string | null;
|
|
2568
|
+
Unit?: string | null;
|
|
2569
|
+
Authorization?: string | null;
|
|
2570
2570
|
};
|
|
2571
2571
|
export type TransactionHistory = {
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
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;
|
|
2579
2579
|
};
|
|
2580
2580
|
export type PurchaseOrder = {
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
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;
|
|
2599
2599
|
};
|
|
2600
2600
|
export type OrderDetail = {
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
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;
|
|
2626
2626
|
};
|
|
2627
2627
|
export type CompletedOrderDetail = {
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
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;
|
|
2654
2654
|
};
|
|
2655
2655
|
export type FlatProduct = {
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
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;
|
|
2707
2707
|
};
|
|
2708
2708
|
export type ProductConvertToShortModel = {
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2709
|
+
Title?: string | null;
|
|
2710
|
+
Text?: string | null;
|
|
2711
|
+
CameraSpeed?: number;
|
|
2712
|
+
VoiceName?: string | null;
|
|
2713
|
+
VoiceStyle?: string | null;
|
|
2714
|
+
SceneName?: string | null;
|
|
2715
2715
|
};
|
|
2716
2716
|
export type ManufacturerProduct = {
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
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;
|
|
2756
2756
|
};
|
|
2757
2757
|
export type ReturnPartNumbers = {
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2758
|
+
RandmarSKU?: string | null;
|
|
2759
|
+
Quantity?: number;
|
|
2760
|
+
Reason?: string | null;
|
|
2761
|
+
SerailNumbers?: string | null;
|
|
2762
2762
|
};
|
|
2763
2763
|
export type ReturnRequest = {
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2764
|
+
InvoiceNumber?: string | null;
|
|
2765
|
+
ContactName?: string | null;
|
|
2766
|
+
ContactPhone?: string | null;
|
|
2767
|
+
ContactEmail?: string | null;
|
|
2768
|
+
Comments?: string | null;
|
|
2769
|
+
PartNumbers?: ReturnPartNumbers[] | null;
|
|
2770
2770
|
};
|
|
2771
2771
|
export type ManufacturerRmaPartNumber = {
|
|
2772
|
-
|
|
2773
|
-
|
|
2772
|
+
MPN?: string | null;
|
|
2773
|
+
SerialNumber?: string | null;
|
|
2774
2774
|
};
|
|
2775
2775
|
export type ManufacturerRma = {
|
|
2776
|
-
|
|
2777
|
-
|
|
2776
|
+
ManufacturerRMAPartNumbers?: ManufacturerRmaPartNumber[] | null;
|
|
2777
|
+
EmailAddresses?: string[] | null;
|
|
2778
2778
|
};
|
|
2779
2779
|
export type ShipmentDetails = object;
|
|
2780
2780
|
export declare const useGetV4ShopifyByShopifyHostNameAccountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|