@fas-core/shared-types 1.0.109 → 1.0.111
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/index.d.mts +76 -61
- package/dist/index.d.ts +76 -61
- package/dist/index.js +25 -21
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -21
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -251,7 +251,11 @@ interface ICategory extends BaseEntity {
|
|
|
251
251
|
stores: (IStore | string)[];
|
|
252
252
|
image: string;
|
|
253
253
|
banners: IBannerSlide[];
|
|
254
|
+
urlFragment: string;
|
|
255
|
+
urlFragmentOverride: string;
|
|
254
256
|
sortOrder: number;
|
|
257
|
+
directProductCount: number;
|
|
258
|
+
onlineProductCount: number;
|
|
255
259
|
status: boolean;
|
|
256
260
|
isOnline: boolean;
|
|
257
261
|
netsuiteId: string;
|
|
@@ -293,6 +297,7 @@ declare const SALE_TYPE_VALUES: SaleType[];
|
|
|
293
297
|
|
|
294
298
|
interface SaleTypedLike {
|
|
295
299
|
saleType?: SaleType;
|
|
300
|
+
quoteOnly?: boolean;
|
|
296
301
|
metaData?: unknown;
|
|
297
302
|
price?: {
|
|
298
303
|
price?: number;
|
|
@@ -314,6 +319,12 @@ interface IProductVariantFields {
|
|
|
314
319
|
stockDescription?: string;
|
|
315
320
|
noPriceMessage?: string;
|
|
316
321
|
itemType?: string;
|
|
322
|
+
upc?: string;
|
|
323
|
+
uom?: string;
|
|
324
|
+
project360?: string;
|
|
325
|
+
family?: string;
|
|
326
|
+
quoteOnly?: boolean;
|
|
327
|
+
purchasable?: boolean;
|
|
317
328
|
isSeriesComponent?: boolean;
|
|
318
329
|
flexWarrantyEligible?: boolean;
|
|
319
330
|
inventoryPolicy: InventoryPolicy;
|
|
@@ -467,6 +478,8 @@ interface IProduct extends BaseEntity, IProductVariantFields {
|
|
|
467
478
|
netsuiteId: string;
|
|
468
479
|
name: string;
|
|
469
480
|
slug: string;
|
|
481
|
+
urlComponent: string;
|
|
482
|
+
slugField: string;
|
|
470
483
|
sku: string;
|
|
471
484
|
hasVariants: boolean;
|
|
472
485
|
variantType: ProductVariantType;
|
|
@@ -1818,7 +1831,7 @@ declare const CATEGORY_FIELDS: {
|
|
|
1818
1831
|
readonly slug: {
|
|
1819
1832
|
readonly before: "urlfragment";
|
|
1820
1833
|
readonly target: "slug";
|
|
1821
|
-
readonly policy: "
|
|
1834
|
+
readonly policy: "always";
|
|
1822
1835
|
readonly identity: true;
|
|
1823
1836
|
readonly note: string;
|
|
1824
1837
|
readonly caution: string;
|
|
@@ -1934,6 +1947,7 @@ declare const PRODUCT_FIELDS: {
|
|
|
1934
1947
|
readonly target: "price.discount";
|
|
1935
1948
|
readonly policy: "always";
|
|
1936
1949
|
readonly conditional: true;
|
|
1950
|
+
readonly derivedFrom: readonly ["price.price", "price.originalPrice"];
|
|
1937
1951
|
readonly note: string;
|
|
1938
1952
|
};
|
|
1939
1953
|
readonly weight: {
|
|
@@ -2064,9 +2078,9 @@ declare const PRODUCT_FIELDS: {
|
|
|
2064
2078
|
readonly before: "urlcomponent";
|
|
2065
2079
|
readonly after: "custitem_slug";
|
|
2066
2080
|
readonly target: "slug";
|
|
2067
|
-
readonly policy: "
|
|
2081
|
+
readonly policy: "always";
|
|
2068
2082
|
readonly identity: true;
|
|
2069
|
-
readonly note:
|
|
2083
|
+
readonly note: string;
|
|
2070
2084
|
readonly caution: "The sync matches on netsuiteId first and falls back to slug. Changing it on a product NetSuite has never supplied makes the next run miss it and insert a second one.";
|
|
2071
2085
|
};
|
|
2072
2086
|
readonly name: {
|
|
@@ -2113,14 +2127,15 @@ declare const PRODUCT_FIELDS: {
|
|
|
2113
2127
|
readonly target: "saleType";
|
|
2114
2128
|
readonly policy: "always";
|
|
2115
2129
|
readonly conditional: true;
|
|
2116
|
-
readonly
|
|
2130
|
+
readonly derivedFrom: readonly ["quoteOnly", "price.price"];
|
|
2131
|
+
readonly note: string;
|
|
2117
2132
|
};
|
|
2118
2133
|
readonly quoteOnly: {
|
|
2119
2134
|
readonly before: "dontshowprice";
|
|
2120
2135
|
readonly after: "custitem_quote_only";
|
|
2121
|
-
readonly target: "
|
|
2122
|
-
readonly policy: "
|
|
2123
|
-
readonly note:
|
|
2136
|
+
readonly target: "quoteOnly";
|
|
2137
|
+
readonly policy: "always";
|
|
2138
|
+
readonly note: string;
|
|
2124
2139
|
};
|
|
2125
2140
|
readonly image: {
|
|
2126
2141
|
readonly before: "storedisplayimage";
|
|
@@ -2176,10 +2191,9 @@ declare const PRODUCT_FIELDS: {
|
|
|
2176
2191
|
};
|
|
2177
2192
|
readonly family: {
|
|
2178
2193
|
readonly after: "custitem_family";
|
|
2179
|
-
readonly target: "
|
|
2180
|
-
readonly policy: "
|
|
2181
|
-
readonly
|
|
2182
|
-
readonly note: "Populated on 17,552 items. No storefront field consumes it yet.";
|
|
2194
|
+
readonly target: "family";
|
|
2195
|
+
readonly policy: "always";
|
|
2196
|
+
readonly note: "Populated on 17,552 items. The product family name, e.g. PLUTO or K-DUCER.";
|
|
2183
2197
|
};
|
|
2184
2198
|
readonly primaryCategory: {
|
|
2185
2199
|
readonly before: "commercecategoryitemassociation.primarycategory";
|
|
@@ -2205,10 +2219,9 @@ declare const PRODUCT_FIELDS: {
|
|
|
2205
2219
|
};
|
|
2206
2220
|
readonly features: {
|
|
2207
2221
|
readonly after: "custitem_features";
|
|
2208
|
-
readonly target: "
|
|
2209
|
-
readonly policy: "
|
|
2210
|
-
readonly
|
|
2211
|
-
readonly note: "Field exists in NetSuite and carries no data yet.";
|
|
2222
|
+
readonly target: "featureBullets";
|
|
2223
|
+
readonly policy: "always";
|
|
2224
|
+
readonly note: string;
|
|
2212
2225
|
};
|
|
2213
2226
|
};
|
|
2214
2227
|
|
|
@@ -2222,6 +2235,7 @@ interface FieldMapping {
|
|
|
2222
2235
|
pending?: boolean;
|
|
2223
2236
|
conditional?: boolean;
|
|
2224
2237
|
identity?: boolean;
|
|
2238
|
+
derivedFrom?: readonly string[];
|
|
2225
2239
|
caution?: string;
|
|
2226
2240
|
note?: string;
|
|
2227
2241
|
}
|
|
@@ -2322,6 +2336,7 @@ declare const productFields: NetsuiteFieldProvider<{
|
|
|
2322
2336
|
readonly target: "price.discount";
|
|
2323
2337
|
readonly policy: "always";
|
|
2324
2338
|
readonly conditional: true;
|
|
2339
|
+
readonly derivedFrom: readonly ["price.price", "price.originalPrice"];
|
|
2325
2340
|
readonly note: string;
|
|
2326
2341
|
};
|
|
2327
2342
|
readonly weight: {
|
|
@@ -2452,9 +2467,9 @@ declare const productFields: NetsuiteFieldProvider<{
|
|
|
2452
2467
|
readonly before: "urlcomponent";
|
|
2453
2468
|
readonly after: "custitem_slug";
|
|
2454
2469
|
readonly target: "slug";
|
|
2455
|
-
readonly policy: "
|
|
2470
|
+
readonly policy: "always";
|
|
2456
2471
|
readonly identity: true;
|
|
2457
|
-
readonly note:
|
|
2472
|
+
readonly note: string;
|
|
2458
2473
|
readonly caution: "The sync matches on netsuiteId first and falls back to slug. Changing it on a product NetSuite has never supplied makes the next run miss it and insert a second one.";
|
|
2459
2474
|
};
|
|
2460
2475
|
readonly name: {
|
|
@@ -2501,14 +2516,15 @@ declare const productFields: NetsuiteFieldProvider<{
|
|
|
2501
2516
|
readonly target: "saleType";
|
|
2502
2517
|
readonly policy: "always";
|
|
2503
2518
|
readonly conditional: true;
|
|
2504
|
-
readonly
|
|
2519
|
+
readonly derivedFrom: readonly ["quoteOnly", "price.price"];
|
|
2520
|
+
readonly note: string;
|
|
2505
2521
|
};
|
|
2506
2522
|
readonly quoteOnly: {
|
|
2507
2523
|
readonly before: "dontshowprice";
|
|
2508
2524
|
readonly after: "custitem_quote_only";
|
|
2509
|
-
readonly target: "
|
|
2510
|
-
readonly policy: "
|
|
2511
|
-
readonly note:
|
|
2525
|
+
readonly target: "quoteOnly";
|
|
2526
|
+
readonly policy: "always";
|
|
2527
|
+
readonly note: string;
|
|
2512
2528
|
};
|
|
2513
2529
|
readonly image: {
|
|
2514
2530
|
readonly before: "storedisplayimage";
|
|
@@ -2564,10 +2580,9 @@ declare const productFields: NetsuiteFieldProvider<{
|
|
|
2564
2580
|
};
|
|
2565
2581
|
readonly family: {
|
|
2566
2582
|
readonly after: "custitem_family";
|
|
2567
|
-
readonly target: "
|
|
2568
|
-
readonly policy: "
|
|
2569
|
-
readonly
|
|
2570
|
-
readonly note: "Populated on 17,552 items. No storefront field consumes it yet.";
|
|
2583
|
+
readonly target: "family";
|
|
2584
|
+
readonly policy: "always";
|
|
2585
|
+
readonly note: "Populated on 17,552 items. The product family name, e.g. PLUTO or K-DUCER.";
|
|
2571
2586
|
};
|
|
2572
2587
|
readonly primaryCategory: {
|
|
2573
2588
|
readonly before: "commercecategoryitemassociation.primarycategory";
|
|
@@ -2593,10 +2608,9 @@ declare const productFields: NetsuiteFieldProvider<{
|
|
|
2593
2608
|
};
|
|
2594
2609
|
readonly features: {
|
|
2595
2610
|
readonly after: "custitem_features";
|
|
2596
|
-
readonly target: "
|
|
2597
|
-
readonly policy: "
|
|
2598
|
-
readonly
|
|
2599
|
-
readonly note: "Field exists in NetSuite and carries no data yet.";
|
|
2611
|
+
readonly target: "featureBullets";
|
|
2612
|
+
readonly policy: "always";
|
|
2613
|
+
readonly note: string;
|
|
2600
2614
|
};
|
|
2601
2615
|
}>;
|
|
2602
2616
|
declare const addonFields: NetsuiteFieldProvider<{
|
|
@@ -2878,7 +2892,7 @@ declare const categoryFields: NetsuiteFieldProvider<{
|
|
|
2878
2892
|
readonly slug: {
|
|
2879
2893
|
readonly before: "urlfragment";
|
|
2880
2894
|
readonly target: "slug";
|
|
2881
|
-
readonly policy: "
|
|
2895
|
+
readonly policy: "always";
|
|
2882
2896
|
readonly identity: true;
|
|
2883
2897
|
readonly note: string;
|
|
2884
2898
|
readonly caution: string;
|
|
@@ -3544,6 +3558,7 @@ declare const PROVIDERS: readonly [NetsuiteFieldProvider<{
|
|
|
3544
3558
|
readonly target: "price.discount";
|
|
3545
3559
|
readonly policy: "always";
|
|
3546
3560
|
readonly conditional: true;
|
|
3561
|
+
readonly derivedFrom: readonly ["price.price", "price.originalPrice"];
|
|
3547
3562
|
readonly note: string;
|
|
3548
3563
|
};
|
|
3549
3564
|
readonly weight: {
|
|
@@ -3674,9 +3689,9 @@ declare const PROVIDERS: readonly [NetsuiteFieldProvider<{
|
|
|
3674
3689
|
readonly before: "urlcomponent";
|
|
3675
3690
|
readonly after: "custitem_slug";
|
|
3676
3691
|
readonly target: "slug";
|
|
3677
|
-
readonly policy: "
|
|
3692
|
+
readonly policy: "always";
|
|
3678
3693
|
readonly identity: true;
|
|
3679
|
-
readonly note:
|
|
3694
|
+
readonly note: string;
|
|
3680
3695
|
readonly caution: "The sync matches on netsuiteId first and falls back to slug. Changing it on a product NetSuite has never supplied makes the next run miss it and insert a second one.";
|
|
3681
3696
|
};
|
|
3682
3697
|
readonly name: {
|
|
@@ -3723,14 +3738,15 @@ declare const PROVIDERS: readonly [NetsuiteFieldProvider<{
|
|
|
3723
3738
|
readonly target: "saleType";
|
|
3724
3739
|
readonly policy: "always";
|
|
3725
3740
|
readonly conditional: true;
|
|
3726
|
-
readonly
|
|
3741
|
+
readonly derivedFrom: readonly ["quoteOnly", "price.price"];
|
|
3742
|
+
readonly note: string;
|
|
3727
3743
|
};
|
|
3728
3744
|
readonly quoteOnly: {
|
|
3729
3745
|
readonly before: "dontshowprice";
|
|
3730
3746
|
readonly after: "custitem_quote_only";
|
|
3731
|
-
readonly target: "
|
|
3732
|
-
readonly policy: "
|
|
3733
|
-
readonly note:
|
|
3747
|
+
readonly target: "quoteOnly";
|
|
3748
|
+
readonly policy: "always";
|
|
3749
|
+
readonly note: string;
|
|
3734
3750
|
};
|
|
3735
3751
|
readonly image: {
|
|
3736
3752
|
readonly before: "storedisplayimage";
|
|
@@ -3786,10 +3802,9 @@ declare const PROVIDERS: readonly [NetsuiteFieldProvider<{
|
|
|
3786
3802
|
};
|
|
3787
3803
|
readonly family: {
|
|
3788
3804
|
readonly after: "custitem_family";
|
|
3789
|
-
readonly target: "
|
|
3790
|
-
readonly policy: "
|
|
3791
|
-
readonly
|
|
3792
|
-
readonly note: "Populated on 17,552 items. No storefront field consumes it yet.";
|
|
3805
|
+
readonly target: "family";
|
|
3806
|
+
readonly policy: "always";
|
|
3807
|
+
readonly note: "Populated on 17,552 items. The product family name, e.g. PLUTO or K-DUCER.";
|
|
3793
3808
|
};
|
|
3794
3809
|
readonly primaryCategory: {
|
|
3795
3810
|
readonly before: "commercecategoryitemassociation.primarycategory";
|
|
@@ -3815,10 +3830,9 @@ declare const PROVIDERS: readonly [NetsuiteFieldProvider<{
|
|
|
3815
3830
|
};
|
|
3816
3831
|
readonly features: {
|
|
3817
3832
|
readonly after: "custitem_features";
|
|
3818
|
-
readonly target: "
|
|
3819
|
-
readonly policy: "
|
|
3820
|
-
readonly
|
|
3821
|
-
readonly note: "Field exists in NetSuite and carries no data yet.";
|
|
3833
|
+
readonly target: "featureBullets";
|
|
3834
|
+
readonly policy: "always";
|
|
3835
|
+
readonly note: string;
|
|
3822
3836
|
};
|
|
3823
3837
|
}>, NetsuiteFieldProvider<{
|
|
3824
3838
|
readonly netsuiteItemId: {
|
|
@@ -4096,7 +4110,7 @@ declare const PROVIDERS: readonly [NetsuiteFieldProvider<{
|
|
|
4096
4110
|
readonly slug: {
|
|
4097
4111
|
readonly before: "urlfragment";
|
|
4098
4112
|
readonly target: "slug";
|
|
4099
|
-
readonly policy: "
|
|
4113
|
+
readonly policy: "always";
|
|
4100
4114
|
readonly identity: true;
|
|
4101
4115
|
readonly note: string;
|
|
4102
4116
|
readonly caution: string;
|
|
@@ -4809,6 +4823,7 @@ declare const BY_ENTITY: {
|
|
|
4809
4823
|
readonly target: "price.discount";
|
|
4810
4824
|
readonly policy: "always";
|
|
4811
4825
|
readonly conditional: true;
|
|
4826
|
+
readonly derivedFrom: readonly ["price.price", "price.originalPrice"];
|
|
4812
4827
|
readonly note: string;
|
|
4813
4828
|
};
|
|
4814
4829
|
readonly weight: {
|
|
@@ -4939,9 +4954,9 @@ declare const BY_ENTITY: {
|
|
|
4939
4954
|
readonly before: "urlcomponent";
|
|
4940
4955
|
readonly after: "custitem_slug";
|
|
4941
4956
|
readonly target: "slug";
|
|
4942
|
-
readonly policy: "
|
|
4957
|
+
readonly policy: "always";
|
|
4943
4958
|
readonly identity: true;
|
|
4944
|
-
readonly note:
|
|
4959
|
+
readonly note: string;
|
|
4945
4960
|
readonly caution: "The sync matches on netsuiteId first and falls back to slug. Changing it on a product NetSuite has never supplied makes the next run miss it and insert a second one.";
|
|
4946
4961
|
};
|
|
4947
4962
|
readonly name: {
|
|
@@ -4988,14 +5003,15 @@ declare const BY_ENTITY: {
|
|
|
4988
5003
|
readonly target: "saleType";
|
|
4989
5004
|
readonly policy: "always";
|
|
4990
5005
|
readonly conditional: true;
|
|
4991
|
-
readonly
|
|
5006
|
+
readonly derivedFrom: readonly ["quoteOnly", "price.price"];
|
|
5007
|
+
readonly note: string;
|
|
4992
5008
|
};
|
|
4993
5009
|
readonly quoteOnly: {
|
|
4994
5010
|
readonly before: "dontshowprice";
|
|
4995
5011
|
readonly after: "custitem_quote_only";
|
|
4996
|
-
readonly target: "
|
|
4997
|
-
readonly policy: "
|
|
4998
|
-
readonly note:
|
|
5012
|
+
readonly target: "quoteOnly";
|
|
5013
|
+
readonly policy: "always";
|
|
5014
|
+
readonly note: string;
|
|
4999
5015
|
};
|
|
5000
5016
|
readonly image: {
|
|
5001
5017
|
readonly before: "storedisplayimage";
|
|
@@ -5051,10 +5067,9 @@ declare const BY_ENTITY: {
|
|
|
5051
5067
|
};
|
|
5052
5068
|
readonly family: {
|
|
5053
5069
|
readonly after: "custitem_family";
|
|
5054
|
-
readonly target: "
|
|
5055
|
-
readonly policy: "
|
|
5056
|
-
readonly
|
|
5057
|
-
readonly note: "Populated on 17,552 items. No storefront field consumes it yet.";
|
|
5070
|
+
readonly target: "family";
|
|
5071
|
+
readonly policy: "always";
|
|
5072
|
+
readonly note: "Populated on 17,552 items. The product family name, e.g. PLUTO or K-DUCER.";
|
|
5058
5073
|
};
|
|
5059
5074
|
readonly primaryCategory: {
|
|
5060
5075
|
readonly before: "commercecategoryitemassociation.primarycategory";
|
|
@@ -5080,10 +5095,9 @@ declare const BY_ENTITY: {
|
|
|
5080
5095
|
};
|
|
5081
5096
|
readonly features: {
|
|
5082
5097
|
readonly after: "custitem_features";
|
|
5083
|
-
readonly target: "
|
|
5084
|
-
readonly policy: "
|
|
5085
|
-
readonly
|
|
5086
|
-
readonly note: "Field exists in NetSuite and carries no data yet.";
|
|
5098
|
+
readonly target: "featureBullets";
|
|
5099
|
+
readonly policy: "always";
|
|
5100
|
+
readonly note: string;
|
|
5087
5101
|
};
|
|
5088
5102
|
}>;
|
|
5089
5103
|
readonly addon: NetsuiteFieldProvider<{
|
|
@@ -5365,7 +5379,7 @@ declare const BY_ENTITY: {
|
|
|
5365
5379
|
readonly slug: {
|
|
5366
5380
|
readonly before: "urlfragment";
|
|
5367
5381
|
readonly target: "slug";
|
|
5368
|
-
readonly policy: "
|
|
5382
|
+
readonly policy: "always";
|
|
5369
5383
|
readonly identity: true;
|
|
5370
5384
|
readonly note: string;
|
|
5371
5385
|
readonly caution: string;
|
|
@@ -6017,6 +6031,7 @@ interface FieldSource {
|
|
|
6017
6031
|
}
|
|
6018
6032
|
declare const netsuiteFieldSource: (entity: NetsuiteOwnedEntity, field: string) => FieldSource | undefined;
|
|
6019
6033
|
declare const netsuiteFieldNote: (entity: NetsuiteOwnedEntity, field: string) => string | undefined;
|
|
6034
|
+
declare const netsuiteFieldDerivedFrom: (entity: NetsuiteOwnedEntity, field: string) => readonly string[];
|
|
6020
6035
|
declare const netsuiteFieldCaution: (entity: NetsuiteOwnedEntity, field: string) => string | undefined;
|
|
6021
6036
|
interface NetsuiteRelationSource {
|
|
6022
6037
|
field: string;
|
|
@@ -6358,4 +6373,4 @@ interface IWishlist extends BaseEntity {
|
|
|
6358
6373
|
items: IWishlistItem[];
|
|
6359
6374
|
}
|
|
6360
6375
|
|
|
6361
|
-
export { ACTIVE_SUBSCRIPTION_CHANNELS, ADMIN_ACTIONS, ADMIN_AUDIT_ACTIONS, ADMIN_RESOURCES, ADMIN_RESOURCE_LIST, ALL_STORES, AWAITING_PAYMENT_STATUSES, type AddonAmountInput, type AddonGroupNetsuiteLink, type AddonNetsuiteLink, type AddonSelectionRef, type AddonSnapshot, type ApiResponse, type AppliedTax, BRAND_FIELDS, type BaseEntity, CAMPAIGN_RECIPIENT_STATUS_VALUES, CAMPAIGN_STATUS_VALUES, CART_STATUS_VALUES, CATEGORY_FIELDS, CONFIGURATOR_CONDITION_TYPE_VALUES, CONFIGURATOR_EFFECT_TYPE_VALUES, CONFIGURATOR_SELECT_MODE_VALUES, CONFIGURATOR_SOURCE_VALUES, type CacheStatus, type CacheStoreTarget, CampaignRecipientStatusEnum, CampaignStatusEnum, type CartIssue, type CartIssueType, CartIssueTypes, CartStatusEnum, type CartValidation, type CategoryImportSummary, type CheckoutAddressInput, type CheckoutPayload, type CheckoutResult, ConfiguratorConditionTypeEnum, ConfiguratorEffectTypeEnum, ConfiguratorErrorCodeEnum, type ConfiguratorEvalContext, type ConfiguratorEvalError, type ConfiguratorEvalResult, ConfiguratorSelectModeEnum, type ConfiguratorSelections, ConfiguratorSourceEnum, type CouponNetsuiteLink, DEFAULT_SUBSCRIPTION_TOPICS, DISCOUNT_TYPE_VALUES, DiscountTypeEnum, EMAIL_PARAM_MISMATCH_KIND_VALUES, EMAIL_TEMPLATE_EVENT_VALUES, EMAIL_TEMPLATE_VARIABLES_BY_EVENT, EMPTY_ACCESS, type EffectiveAccess, type EmailParamMismatch, EmailParamMismatchKindEnum, EmailTemplateEventEnum, FEE_APPLIES_TO_VALUES, FeeAppliesToEnum, type FieldMap, type FieldMapping, type FieldSource, type IAddonConfig, type IAddonGroup, type IAddress, type IAdmin, type IAdminAction, type IAdminAuditAction, type IAdminAuditLog, type IAdminBaseAction, type IAdminPermission, type IAdminResource, type IAdminRole, type IAdminRoleCreate, type IAdminSafe, type IAdminStoreAccess, type IAppliedFee, type IBannerSlide, type IBlogAuthor, type IBlogCategory, type IBlogPost, type IBrand, type ICampaign, type ICampaignRecipient, type ICampaignStats, type ICart, type ICartItem, type ICartServicePlanSnapshot, type ICategory, type ICategorySequence, type ICategorySubcategory, type IConfigurator, type IConfiguratorCondition, type IConfiguratorEffect, type IConfiguratorFacet, type IConfiguratorFacetValue, type IConfiguratorOption, type IConfiguratorPriceAdjustment, type IConfiguratorQuery, type IConfiguratorRule, type IConfiguratorSection, type IConfiguratorStep, type IConfiguratorTarget, type IContact, type ICountry, type ICoupon, type ICurrency, type ICustomer, type IDiscountType, type IEmailTemplate, type IFaq, type IFaqCategory, type IKeyValue, type ILinePricing, type IMediaAsset, INVENTORY_POLICY_VALUES, type INetsuiteEvent, type INetsuiteOrderLink, type INetsuiteQueueEntry, type INotification, type IOrder, type IOrderItem, type IOrderLog, type IOrderShipment, type IOrderTransaction, type IPaymentLink, type IPodcastEpisode, type IPrice, type IProduct, type IProductDailyStat, type IProductRelationGroup, type IProductTechnicalSpec, type IProductTechnicalSpecTable, type IProductVariantFields, type IProductVariantOptionGroup, type IProductVariantOptionMatrix, type IProductVariantOptionValue, type IRedirect, type IRedirectSuggestion, type IRefundTransaction, type IRelationGroup, type ISEOMetaData, type ISelectableFee, type IServicePlan, type IShipFromAddress, type IShipping, type IShippingRate, type IState, type IStock, type IStore, type IStoreFee, type IStoreSettings, type ISubscriber, type ISubscriberConsent, type ISubscription, type ISummaryPricing, type ITaxRate, type ITechnicalSpecColumn, type ITechnicalSpecGroup, type ITransactionBase, type IUnmatched404, type IVariant, type IVariantOptionSelection, type IWishlist, type IWishlistItem, type Id, type InventoryPolicy, InventoryPolicyEnum, type LineChargeInput, type MatchResult, type Metadata, NETSUITE_EVENT_STATE_VALUES, NETSUITE_OWNED_FIELDS, NETSUITE_RECORD_TYPE_VALUES, NETSUITE_RELATION_GROUPS, NOTIFICATION_TYPE_VALUES, NetsuiteEventStateEnum, NetsuiteFieldProvider, type NetsuiteLinkResult, type NetsuiteOrderPreview, type NetsuiteOwnedEntity, type NetsuitePreviewLine, type NetsuitePushAttempt, type NetsuitePushOutcome, type NetsuiteReceipt, NetsuiteRecordTypeEnum, type NetsuiteRelationSource, type NetsuiteStatusChange, type NetsuiteStatusSyncResult, type NetsuiteSyncDefinition, NotificationTypeEnum, OPEN_ORDER_STATUSES, ORDER_LOG_TYPE_VALUES, ORDER_STATUS_VALUES, type OfferedAddon, type OfferedAddonGroup, type OfferedServicePlan, OrderLogTypeEnum, OrderStatusEnum, PAYMENT_GATEWAY_VALUES, PAYMENT_LINK_STATUS_VALUES, PAYMENT_METHOD_VALUES, PAYMENT_STATUS_VALUES, PLACED_OPEN_ORDER_STATUSES, PRICING_TYPE_VALUES, PRODUCT_FIELDS, PRODUCT_VARIANT_TYPE_VALUES, PROVIDERS, PURCHASE_ORDER_STATUSES, PUSH_CHECK_STATUS_VALUES, PaymentGatewayEnum, PaymentLinkStatusEnum, type PaymentLinkView, PaymentMethodEnum, PaymentStatusEnum, type PricedLineLike, type PricingType, PricingTypeEnum, type ProductAddonScope, ProductEventTypeEnum, type ProductServicePlanScope, type ProductVariantType, ProductVariantTypeEnum, type PromotionSyncResult, type PushCheck, PushCheckStatusEnum, type PushField, QUOTE_ORDER_STATUSES, RELATION_FIELDS, RESOURCE_OPERATIONS, RETIRED_CART_STATUSES, type RateAddress, type RatedShippingMethod, type RedirectTargetType, type ResolveAccessInput, type ResolvedAddonSelection, type RevalidationResult, SALE_TYPE_VALUES, SERVICE_PLAN_ELIGIBILITY_FIELD, STATUS_TONE_VALUES, SUBSCRIPTION_CHANNEL_VALUES, SUBSCRIPTION_TOPIC_LABELS, SUBSCRIPTION_TOPIC_VALUES, type SaleType, SaleTypeEnum, type SaleTypedLike, type SelectedShippingMethod, type ServicePlanNetsuiteLink, StatusToneEnum, type StockDemandLine, type StockStatus, StockStatusEnum, type StockVerdict, StockVerdictEnum, type StoreAccessCheckInput, type StoreScopeInput, SubscriptionChannelEnum, SubscriptionTopicEnum, type SyncPolicy, type SyncRisk, TAX_RATE_SOURCE_VALUES, TRANSACTION_TYPE_VALUES, TaxRateSourceEnum, type TaxSyncResult, TransactionTypeEnum, UNPLACED_ORDER_STATUSES, type VariantOptionMode, WIRED_EMAIL_TEMPLATE_EVENTS, actionsForResource, addonFields, addonUnitAmount, addonsOfLine, addonsUnitAmount, adjustmentsFor, applyPriceAdjustments, baseUnitPriceOfLine, blogAuthorFields, blogCategoryFields, blogPostFields, brandFields, can, canAny, canonicalizePath, canonicalizeSlug, categoryFields, chargesOfLine, conditionHolds, couponFields, demandByKey, evaluateConfigurator, feeHint, formatMoney, grantedPermissions, groupHasDefaultAddon, hasStoreAccess, isConfigurationValid, isNetsuiteOwned, isNonEmptyString, isQuoteOnlyItem, isValidAction, isValidEmail, missingGrants, netsuiteFieldCaution, netsuiteFieldConditional, netsuiteFieldNote, netsuiteFieldRisk, netsuiteFieldSource, netsuiteRelationSource, netsuiteStatusLabel, normalizeLineQuantity, normalizeNumber, normalizePath, orderLogTypeColorMap, paymentLinkStatusColorMap, paymentMethodColorMap, paymentStatusColorMap, podcastFields, productFields, readMapped, resolveAddonSelections, resolveEffectivePermissions, resolveProductAddonGroups, resolveProductServicePlans, resolveStoreScope, roundMoney, saleTypeOf, servicePlanFields, statusColors, statusTone, statusTones, stockVerdict, syncOwnerFor, toIdString, typeColorMap };
|
|
6376
|
+
export { ACTIVE_SUBSCRIPTION_CHANNELS, ADMIN_ACTIONS, ADMIN_AUDIT_ACTIONS, ADMIN_RESOURCES, ADMIN_RESOURCE_LIST, ALL_STORES, AWAITING_PAYMENT_STATUSES, type AddonAmountInput, type AddonGroupNetsuiteLink, type AddonNetsuiteLink, type AddonSelectionRef, type AddonSnapshot, type ApiResponse, type AppliedTax, BRAND_FIELDS, type BaseEntity, CAMPAIGN_RECIPIENT_STATUS_VALUES, CAMPAIGN_STATUS_VALUES, CART_STATUS_VALUES, CATEGORY_FIELDS, CONFIGURATOR_CONDITION_TYPE_VALUES, CONFIGURATOR_EFFECT_TYPE_VALUES, CONFIGURATOR_SELECT_MODE_VALUES, CONFIGURATOR_SOURCE_VALUES, type CacheStatus, type CacheStoreTarget, CampaignRecipientStatusEnum, CampaignStatusEnum, type CartIssue, type CartIssueType, CartIssueTypes, CartStatusEnum, type CartValidation, type CategoryImportSummary, type CheckoutAddressInput, type CheckoutPayload, type CheckoutResult, ConfiguratorConditionTypeEnum, ConfiguratorEffectTypeEnum, ConfiguratorErrorCodeEnum, type ConfiguratorEvalContext, type ConfiguratorEvalError, type ConfiguratorEvalResult, ConfiguratorSelectModeEnum, type ConfiguratorSelections, ConfiguratorSourceEnum, type CouponNetsuiteLink, DEFAULT_SUBSCRIPTION_TOPICS, DISCOUNT_TYPE_VALUES, DiscountTypeEnum, EMAIL_PARAM_MISMATCH_KIND_VALUES, EMAIL_TEMPLATE_EVENT_VALUES, EMAIL_TEMPLATE_VARIABLES_BY_EVENT, EMPTY_ACCESS, type EffectiveAccess, type EmailParamMismatch, EmailParamMismatchKindEnum, EmailTemplateEventEnum, FEE_APPLIES_TO_VALUES, FeeAppliesToEnum, type FieldMap, type FieldMapping, type FieldSource, type IAddonConfig, type IAddonGroup, type IAddress, type IAdmin, type IAdminAction, type IAdminAuditAction, type IAdminAuditLog, type IAdminBaseAction, type IAdminPermission, type IAdminResource, type IAdminRole, type IAdminRoleCreate, type IAdminSafe, type IAdminStoreAccess, type IAppliedFee, type IBannerSlide, type IBlogAuthor, type IBlogCategory, type IBlogPost, type IBrand, type ICampaign, type ICampaignRecipient, type ICampaignStats, type ICart, type ICartItem, type ICartServicePlanSnapshot, type ICategory, type ICategorySequence, type ICategorySubcategory, type IConfigurator, type IConfiguratorCondition, type IConfiguratorEffect, type IConfiguratorFacet, type IConfiguratorFacetValue, type IConfiguratorOption, type IConfiguratorPriceAdjustment, type IConfiguratorQuery, type IConfiguratorRule, type IConfiguratorSection, type IConfiguratorStep, type IConfiguratorTarget, type IContact, type ICountry, type ICoupon, type ICurrency, type ICustomer, type IDiscountType, type IEmailTemplate, type IFaq, type IFaqCategory, type IKeyValue, type ILinePricing, type IMediaAsset, INVENTORY_POLICY_VALUES, type INetsuiteEvent, type INetsuiteOrderLink, type INetsuiteQueueEntry, type INotification, type IOrder, type IOrderItem, type IOrderLog, type IOrderShipment, type IOrderTransaction, type IPaymentLink, type IPodcastEpisode, type IPrice, type IProduct, type IProductDailyStat, type IProductRelationGroup, type IProductTechnicalSpec, type IProductTechnicalSpecTable, type IProductVariantFields, type IProductVariantOptionGroup, type IProductVariantOptionMatrix, type IProductVariantOptionValue, type IRedirect, type IRedirectSuggestion, type IRefundTransaction, type IRelationGroup, type ISEOMetaData, type ISelectableFee, type IServicePlan, type IShipFromAddress, type IShipping, type IShippingRate, type IState, type IStock, type IStore, type IStoreFee, type IStoreSettings, type ISubscriber, type ISubscriberConsent, type ISubscription, type ISummaryPricing, type ITaxRate, type ITechnicalSpecColumn, type ITechnicalSpecGroup, type ITransactionBase, type IUnmatched404, type IVariant, type IVariantOptionSelection, type IWishlist, type IWishlistItem, type Id, type InventoryPolicy, InventoryPolicyEnum, type LineChargeInput, type MatchResult, type Metadata, NETSUITE_EVENT_STATE_VALUES, NETSUITE_OWNED_FIELDS, NETSUITE_RECORD_TYPE_VALUES, NETSUITE_RELATION_GROUPS, NOTIFICATION_TYPE_VALUES, NetsuiteEventStateEnum, NetsuiteFieldProvider, type NetsuiteLinkResult, type NetsuiteOrderPreview, type NetsuiteOwnedEntity, type NetsuitePreviewLine, type NetsuitePushAttempt, type NetsuitePushOutcome, type NetsuiteReceipt, NetsuiteRecordTypeEnum, type NetsuiteRelationSource, type NetsuiteStatusChange, type NetsuiteStatusSyncResult, type NetsuiteSyncDefinition, NotificationTypeEnum, OPEN_ORDER_STATUSES, ORDER_LOG_TYPE_VALUES, ORDER_STATUS_VALUES, type OfferedAddon, type OfferedAddonGroup, type OfferedServicePlan, OrderLogTypeEnum, OrderStatusEnum, PAYMENT_GATEWAY_VALUES, PAYMENT_LINK_STATUS_VALUES, PAYMENT_METHOD_VALUES, PAYMENT_STATUS_VALUES, PLACED_OPEN_ORDER_STATUSES, PRICING_TYPE_VALUES, PRODUCT_FIELDS, PRODUCT_VARIANT_TYPE_VALUES, PROVIDERS, PURCHASE_ORDER_STATUSES, PUSH_CHECK_STATUS_VALUES, PaymentGatewayEnum, PaymentLinkStatusEnum, type PaymentLinkView, PaymentMethodEnum, PaymentStatusEnum, type PricedLineLike, type PricingType, PricingTypeEnum, type ProductAddonScope, ProductEventTypeEnum, type ProductServicePlanScope, type ProductVariantType, ProductVariantTypeEnum, type PromotionSyncResult, type PushCheck, PushCheckStatusEnum, type PushField, QUOTE_ORDER_STATUSES, RELATION_FIELDS, RESOURCE_OPERATIONS, RETIRED_CART_STATUSES, type RateAddress, type RatedShippingMethod, type RedirectTargetType, type ResolveAccessInput, type ResolvedAddonSelection, type RevalidationResult, SALE_TYPE_VALUES, SERVICE_PLAN_ELIGIBILITY_FIELD, STATUS_TONE_VALUES, SUBSCRIPTION_CHANNEL_VALUES, SUBSCRIPTION_TOPIC_LABELS, SUBSCRIPTION_TOPIC_VALUES, type SaleType, SaleTypeEnum, type SaleTypedLike, type SelectedShippingMethod, type ServicePlanNetsuiteLink, StatusToneEnum, type StockDemandLine, type StockStatus, StockStatusEnum, type StockVerdict, StockVerdictEnum, type StoreAccessCheckInput, type StoreScopeInput, SubscriptionChannelEnum, SubscriptionTopicEnum, type SyncPolicy, type SyncRisk, TAX_RATE_SOURCE_VALUES, TRANSACTION_TYPE_VALUES, TaxRateSourceEnum, type TaxSyncResult, TransactionTypeEnum, UNPLACED_ORDER_STATUSES, type VariantOptionMode, WIRED_EMAIL_TEMPLATE_EVENTS, actionsForResource, addonFields, addonUnitAmount, addonsOfLine, addonsUnitAmount, adjustmentsFor, applyPriceAdjustments, baseUnitPriceOfLine, blogAuthorFields, blogCategoryFields, blogPostFields, brandFields, can, canAny, canonicalizePath, canonicalizeSlug, categoryFields, chargesOfLine, conditionHolds, couponFields, demandByKey, evaluateConfigurator, feeHint, formatMoney, grantedPermissions, groupHasDefaultAddon, hasStoreAccess, isConfigurationValid, isNetsuiteOwned, isNonEmptyString, isQuoteOnlyItem, isValidAction, isValidEmail, missingGrants, netsuiteFieldCaution, netsuiteFieldConditional, netsuiteFieldDerivedFrom, netsuiteFieldNote, netsuiteFieldRisk, netsuiteFieldSource, netsuiteRelationSource, netsuiteStatusLabel, normalizeLineQuantity, normalizeNumber, normalizePath, orderLogTypeColorMap, paymentLinkStatusColorMap, paymentMethodColorMap, paymentStatusColorMap, podcastFields, productFields, readMapped, resolveAddonSelections, resolveEffectivePermissions, resolveProductAddonGroups, resolveProductServicePlans, resolveStoreScope, roundMoney, saleTypeOf, servicePlanFields, statusColors, statusTone, statusTones, stockVerdict, syncOwnerFor, toIdString, typeColorMap };
|