@fas-core/shared-types 1.0.107 → 1.0.109
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 +136 -65
- package/dist/index.d.ts +136 -65
- package/dist/index.js +68 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +68 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -82,6 +82,7 @@ interface ISummaryPricing {
|
|
|
82
82
|
discountAmount: number;
|
|
83
83
|
taxAmount: number;
|
|
84
84
|
shippingAmount: number;
|
|
85
|
+
handlingAmount?: number;
|
|
85
86
|
feesAmount?: number;
|
|
86
87
|
appliedFees?: IAppliedFee[];
|
|
87
88
|
totalAmount: number;
|
|
@@ -134,6 +135,25 @@ interface IShippingRate {
|
|
|
134
135
|
deliveryDays: number | null;
|
|
135
136
|
estimatedDelivery: string | null;
|
|
136
137
|
}
|
|
138
|
+
interface RateAddress {
|
|
139
|
+
addressee?: string;
|
|
140
|
+
addr1?: string;
|
|
141
|
+
addr2?: string;
|
|
142
|
+
city?: string;
|
|
143
|
+
state?: string;
|
|
144
|
+
zip?: string;
|
|
145
|
+
countryCode?: string;
|
|
146
|
+
isResidential?: boolean;
|
|
147
|
+
}
|
|
148
|
+
interface RatedShippingMethod {
|
|
149
|
+
id: string;
|
|
150
|
+
name: string;
|
|
151
|
+
shipping: number;
|
|
152
|
+
handling: number;
|
|
153
|
+
total: number;
|
|
154
|
+
free: boolean;
|
|
155
|
+
estimated: boolean;
|
|
156
|
+
}
|
|
137
157
|
|
|
138
158
|
interface IStoreSettings {
|
|
139
159
|
logo: string;
|
|
@@ -229,7 +249,6 @@ interface ICategory extends BaseEntity {
|
|
|
229
249
|
parent: ICategory;
|
|
230
250
|
subcategories?: ICategorySubcategory[];
|
|
231
251
|
stores: (IStore | string)[];
|
|
232
|
-
childOnly?: boolean;
|
|
233
252
|
image: string;
|
|
234
253
|
banners: IBannerSlide[];
|
|
235
254
|
sortOrder: number;
|
|
@@ -300,7 +319,6 @@ interface IProductVariantFields {
|
|
|
300
319
|
inventoryPolicy: InventoryPolicy;
|
|
301
320
|
brand: IBrand;
|
|
302
321
|
stores: (IStore | string)[];
|
|
303
|
-
childOnly?: boolean;
|
|
304
322
|
stock: IStock;
|
|
305
323
|
category: ICategory;
|
|
306
324
|
categories: ICategory[];
|
|
@@ -442,6 +460,9 @@ interface ResolvedAddonSelection extends AddonSelectionRef {
|
|
|
442
460
|
}
|
|
443
461
|
declare const resolveAddonSelections: (groups: IAddonGroup[], selections: AddonSelectionRef[]) => ResolvedAddonSelection[];
|
|
444
462
|
|
|
463
|
+
interface ICategorySequence {
|
|
464
|
+
[categoryId: string]: number;
|
|
465
|
+
}
|
|
445
466
|
interface IProduct extends BaseEntity, IProductVariantFields {
|
|
446
467
|
netsuiteId: string;
|
|
447
468
|
name: string;
|
|
@@ -456,6 +477,10 @@ interface IProduct extends BaseEntity, IProductVariantFields {
|
|
|
456
477
|
addons: (IAddonConfig | string)[];
|
|
457
478
|
googleCategory: string;
|
|
458
479
|
department: string;
|
|
480
|
+
featureBullets: string[];
|
|
481
|
+
mpn: string;
|
|
482
|
+
vendorName: string;
|
|
483
|
+
categorySequence?: ICategorySequence;
|
|
459
484
|
}
|
|
460
485
|
|
|
461
486
|
interface ICartItem extends BaseEntity {
|
|
@@ -707,8 +732,22 @@ type OrderStatusEnum = (typeof OrderStatusEnum)[keyof typeof OrderStatusEnum];
|
|
|
707
732
|
declare const ORDER_STATUS_VALUES: ("CANCELLED" | "REFUNDED" | "PARTIALLY_REFUNDED" | "CREATED" | "PAYMENT_FAILED" | "PENDING_APPROVAL" | "PENDING_FULFILLMENT" | "PARTIALLY_FULFILLED" | "PENDING_BILLING" | "BILLED" | "CLOSED" | "PENDING_RECEIPT" | "PENDING_REFUND" | "QUOTE_REQUESTED" | "QUOTE_OPEN" | "QUOTE_APPROVED" | "QUOTE_PROCESSED" | "QUOTE_CLOSED" | "QUOTE_VOIDED" | "QUOTE_EXPIRED")[];
|
|
708
733
|
declare const statusColors: Record<OrderStatusEnum, string>;
|
|
709
734
|
declare const PURCHASE_ORDER_STATUSES: OrderStatusEnum[];
|
|
735
|
+
declare const PLACED_OPEN_ORDER_STATUSES: OrderStatusEnum[];
|
|
736
|
+
declare const UNPLACED_ORDER_STATUSES: OrderStatusEnum[];
|
|
710
737
|
declare const OPEN_ORDER_STATUSES: OrderStatusEnum[];
|
|
711
738
|
declare const QUOTE_ORDER_STATUSES: OrderStatusEnum[];
|
|
739
|
+
declare const StatusToneEnum: {
|
|
740
|
+
readonly DONE: "done";
|
|
741
|
+
readonly MOVING: "moving";
|
|
742
|
+
readonly WAITING: "waiting";
|
|
743
|
+
readonly STOPPED: "stopped";
|
|
744
|
+
readonly CLOSED: "closed";
|
|
745
|
+
};
|
|
746
|
+
type StatusToneEnum = (typeof StatusToneEnum)[keyof typeof StatusToneEnum];
|
|
747
|
+
declare const STATUS_TONE_VALUES: ("done" | "moving" | "waiting" | "stopped" | "closed")[];
|
|
748
|
+
declare const statusTones: Record<OrderStatusEnum, StatusToneEnum>;
|
|
749
|
+
declare const statusTone: (status?: string) => StatusToneEnum;
|
|
750
|
+
declare const netsuiteStatusLabel: (status?: string, netsuiteStatusText?: string) => string;
|
|
712
751
|
interface IOrder extends BaseEntity {
|
|
713
752
|
orderId: string;
|
|
714
753
|
orderItems: IOrderItem[];
|
|
@@ -720,6 +759,11 @@ interface IOrder extends BaseEntity {
|
|
|
720
759
|
sourceQuote?: IOrder | string;
|
|
721
760
|
convertedOrder?: IOrder | string;
|
|
722
761
|
quoteValidUntil?: Date;
|
|
762
|
+
quotePricedAt?: Date;
|
|
763
|
+
quoteApprovedAt?: Date;
|
|
764
|
+
quoteReadyEmailedAt?: Date;
|
|
765
|
+
quoteReadyEmailedTotal?: number;
|
|
766
|
+
quoteReadyEmailedLines?: string;
|
|
723
767
|
paymentStatus: PaymentStatusEnum;
|
|
724
768
|
paymentMethod: PaymentMethodEnum;
|
|
725
769
|
paymentGateway: PaymentGatewayEnum;
|
|
@@ -730,6 +774,7 @@ interface IOrder extends BaseEntity {
|
|
|
730
774
|
tax?: AppliedTax | null;
|
|
731
775
|
acceptedTermsAt: Date;
|
|
732
776
|
customerNote: string;
|
|
777
|
+
poNumber?: string;
|
|
733
778
|
netsuite?: INetsuiteOrderLink | null;
|
|
734
779
|
netsuiteLastError?: {
|
|
735
780
|
message: string;
|
|
@@ -744,6 +789,7 @@ interface IOrder extends BaseEntity {
|
|
|
744
789
|
|
|
745
790
|
interface ICustomer extends BaseEntity {
|
|
746
791
|
netsuiteId: string;
|
|
792
|
+
netsuiteEntityId: string;
|
|
747
793
|
firstName: string;
|
|
748
794
|
lastName: string;
|
|
749
795
|
profileImage: string;
|
|
@@ -1454,6 +1500,9 @@ interface IPaymentLink extends BaseEntity {
|
|
|
1454
1500
|
createdBy?: string;
|
|
1455
1501
|
baseUrl: string;
|
|
1456
1502
|
}
|
|
1503
|
+
interface PaymentLinkView extends IPaymentLink {
|
|
1504
|
+
url: string;
|
|
1505
|
+
}
|
|
1457
1506
|
|
|
1458
1507
|
declare const SubscriptionChannelEnum: {
|
|
1459
1508
|
readonly EMAIL: "EMAIL";
|
|
@@ -1941,6 +1990,20 @@ declare const PRODUCT_FIELDS: {
|
|
|
1941
1990
|
readonly conditional: true;
|
|
1942
1991
|
readonly note: string;
|
|
1943
1992
|
};
|
|
1993
|
+
readonly mpn: {
|
|
1994
|
+
readonly before: "mpn";
|
|
1995
|
+
readonly target: "mpn";
|
|
1996
|
+
readonly policy: "always";
|
|
1997
|
+
readonly conditional: true;
|
|
1998
|
+
readonly note: string;
|
|
1999
|
+
};
|
|
2000
|
+
readonly vendorName: {
|
|
2001
|
+
readonly before: "vendorname";
|
|
2002
|
+
readonly target: "vendorName";
|
|
2003
|
+
readonly policy: "always";
|
|
2004
|
+
readonly conditional: true;
|
|
2005
|
+
readonly note: string;
|
|
2006
|
+
};
|
|
1944
2007
|
readonly itemType: {
|
|
1945
2008
|
readonly before: "itemtype";
|
|
1946
2009
|
readonly target: "itemType";
|
|
@@ -2147,13 +2210,6 @@ declare const PRODUCT_FIELDS: {
|
|
|
2147
2210
|
readonly pending: true;
|
|
2148
2211
|
readonly note: "Field exists in NetSuite and carries no data yet.";
|
|
2149
2212
|
};
|
|
2150
|
-
readonly childStoreOnly: {
|
|
2151
|
-
readonly after: "custitem_child_store_only";
|
|
2152
|
-
readonly target: "childOnly";
|
|
2153
|
-
readonly policy: "seed";
|
|
2154
|
-
readonly pending: true;
|
|
2155
|
-
readonly note: "Nothing is flagged yet. Our stores[] array already covers this.";
|
|
2156
|
-
};
|
|
2157
2213
|
};
|
|
2158
2214
|
|
|
2159
2215
|
type SyncPolicy = "always" | "seed";
|
|
@@ -2322,6 +2378,20 @@ declare const productFields: NetsuiteFieldProvider<{
|
|
|
2322
2378
|
readonly conditional: true;
|
|
2323
2379
|
readonly note: string;
|
|
2324
2380
|
};
|
|
2381
|
+
readonly mpn: {
|
|
2382
|
+
readonly before: "mpn";
|
|
2383
|
+
readonly target: "mpn";
|
|
2384
|
+
readonly policy: "always";
|
|
2385
|
+
readonly conditional: true;
|
|
2386
|
+
readonly note: string;
|
|
2387
|
+
};
|
|
2388
|
+
readonly vendorName: {
|
|
2389
|
+
readonly before: "vendorname";
|
|
2390
|
+
readonly target: "vendorName";
|
|
2391
|
+
readonly policy: "always";
|
|
2392
|
+
readonly conditional: true;
|
|
2393
|
+
readonly note: string;
|
|
2394
|
+
};
|
|
2325
2395
|
readonly itemType: {
|
|
2326
2396
|
readonly before: "itemtype";
|
|
2327
2397
|
readonly target: "itemType";
|
|
@@ -2528,13 +2598,6 @@ declare const productFields: NetsuiteFieldProvider<{
|
|
|
2528
2598
|
readonly pending: true;
|
|
2529
2599
|
readonly note: "Field exists in NetSuite and carries no data yet.";
|
|
2530
2600
|
};
|
|
2531
|
-
readonly childStoreOnly: {
|
|
2532
|
-
readonly after: "custitem_child_store_only";
|
|
2533
|
-
readonly target: "childOnly";
|
|
2534
|
-
readonly policy: "seed";
|
|
2535
|
-
readonly pending: true;
|
|
2536
|
-
readonly note: "Nothing is flagged yet. Our stores[] array already covers this.";
|
|
2537
|
-
};
|
|
2538
2601
|
}>;
|
|
2539
2602
|
declare const addonFields: NetsuiteFieldProvider<{
|
|
2540
2603
|
readonly netsuiteItemId: {
|
|
@@ -3537,6 +3600,20 @@ declare const PROVIDERS: readonly [NetsuiteFieldProvider<{
|
|
|
3537
3600
|
readonly conditional: true;
|
|
3538
3601
|
readonly note: string;
|
|
3539
3602
|
};
|
|
3603
|
+
readonly mpn: {
|
|
3604
|
+
readonly before: "mpn";
|
|
3605
|
+
readonly target: "mpn";
|
|
3606
|
+
readonly policy: "always";
|
|
3607
|
+
readonly conditional: true;
|
|
3608
|
+
readonly note: string;
|
|
3609
|
+
};
|
|
3610
|
+
readonly vendorName: {
|
|
3611
|
+
readonly before: "vendorname";
|
|
3612
|
+
readonly target: "vendorName";
|
|
3613
|
+
readonly policy: "always";
|
|
3614
|
+
readonly conditional: true;
|
|
3615
|
+
readonly note: string;
|
|
3616
|
+
};
|
|
3540
3617
|
readonly itemType: {
|
|
3541
3618
|
readonly before: "itemtype";
|
|
3542
3619
|
readonly target: "itemType";
|
|
@@ -3743,13 +3820,6 @@ declare const PROVIDERS: readonly [NetsuiteFieldProvider<{
|
|
|
3743
3820
|
readonly pending: true;
|
|
3744
3821
|
readonly note: "Field exists in NetSuite and carries no data yet.";
|
|
3745
3822
|
};
|
|
3746
|
-
readonly childStoreOnly: {
|
|
3747
|
-
readonly after: "custitem_child_store_only";
|
|
3748
|
-
readonly target: "childOnly";
|
|
3749
|
-
readonly policy: "seed";
|
|
3750
|
-
readonly pending: true;
|
|
3751
|
-
readonly note: "Nothing is flagged yet. Our stores[] array already covers this.";
|
|
3752
|
-
};
|
|
3753
3823
|
}>, NetsuiteFieldProvider<{
|
|
3754
3824
|
readonly netsuiteItemId: {
|
|
3755
3825
|
readonly before: "item.id";
|
|
@@ -4795,6 +4865,20 @@ declare const BY_ENTITY: {
|
|
|
4795
4865
|
readonly conditional: true;
|
|
4796
4866
|
readonly note: string;
|
|
4797
4867
|
};
|
|
4868
|
+
readonly mpn: {
|
|
4869
|
+
readonly before: "mpn";
|
|
4870
|
+
readonly target: "mpn";
|
|
4871
|
+
readonly policy: "always";
|
|
4872
|
+
readonly conditional: true;
|
|
4873
|
+
readonly note: string;
|
|
4874
|
+
};
|
|
4875
|
+
readonly vendorName: {
|
|
4876
|
+
readonly before: "vendorname";
|
|
4877
|
+
readonly target: "vendorName";
|
|
4878
|
+
readonly policy: "always";
|
|
4879
|
+
readonly conditional: true;
|
|
4880
|
+
readonly note: string;
|
|
4881
|
+
};
|
|
4798
4882
|
readonly itemType: {
|
|
4799
4883
|
readonly before: "itemtype";
|
|
4800
4884
|
readonly target: "itemType";
|
|
@@ -5001,13 +5085,6 @@ declare const BY_ENTITY: {
|
|
|
5001
5085
|
readonly pending: true;
|
|
5002
5086
|
readonly note: "Field exists in NetSuite and carries no data yet.";
|
|
5003
5087
|
};
|
|
5004
|
-
readonly childStoreOnly: {
|
|
5005
|
-
readonly after: "custitem_child_store_only";
|
|
5006
|
-
readonly target: "childOnly";
|
|
5007
|
-
readonly policy: "seed";
|
|
5008
|
-
readonly pending: true;
|
|
5009
|
-
readonly note: "Nothing is flagged yet. Our stores[] array already covers this.";
|
|
5010
|
-
};
|
|
5011
5088
|
}>;
|
|
5012
5089
|
readonly addon: NetsuiteFieldProvider<{
|
|
5013
5090
|
readonly netsuiteItemId: {
|
|
@@ -6040,10 +6117,9 @@ interface NetsuiteLinkResult {
|
|
|
6040
6117
|
declare const NetsuiteRecordTypeEnum: {
|
|
6041
6118
|
readonly SALES_ORDER: "salesOrder";
|
|
6042
6119
|
readonly ESTIMATE: "estimate";
|
|
6043
|
-
readonly CASH_SALE: "cashSale";
|
|
6044
6120
|
};
|
|
6045
6121
|
type NetsuiteRecordTypeEnum = (typeof NetsuiteRecordTypeEnum)[keyof typeof NetsuiteRecordTypeEnum];
|
|
6046
|
-
declare const NETSUITE_RECORD_TYPE_VALUES: ("salesOrder" | "estimate"
|
|
6122
|
+
declare const NETSUITE_RECORD_TYPE_VALUES: ("salesOrder" | "estimate")[];
|
|
6047
6123
|
declare const PushCheckStatusEnum: {
|
|
6048
6124
|
readonly PASS: "pass";
|
|
6049
6125
|
readonly WARN: "warn";
|
|
@@ -6147,41 +6223,35 @@ interface NetsuiteSyncDefinition {
|
|
|
6147
6223
|
fields: string[];
|
|
6148
6224
|
source: string;
|
|
6149
6225
|
}
|
|
6150
|
-
interface
|
|
6151
|
-
|
|
6152
|
-
|
|
6153
|
-
|
|
6154
|
-
detail?: string;
|
|
6155
|
-
}
|
|
6156
|
-
interface NetsuiteCashSaleReceipt {
|
|
6157
|
-
id: string;
|
|
6158
|
-
tranId?: string;
|
|
6159
|
-
status?: string;
|
|
6160
|
-
total?: number;
|
|
6161
|
-
postingPeriod?: string;
|
|
6162
|
-
paymentReference?: string;
|
|
6163
|
-
createdFrom?: string;
|
|
6164
|
-
recordUrl?: string;
|
|
6226
|
+
interface NetsuitePushAttempt {
|
|
6227
|
+
attempt: number;
|
|
6228
|
+
status: "ok" | "retrying" | "failed";
|
|
6229
|
+
ms: number;
|
|
6165
6230
|
httpStatus?: number;
|
|
6166
|
-
|
|
6167
|
-
checks?: NetsuiteCashSaleCheck[];
|
|
6168
|
-
totalMismatch?: {
|
|
6169
|
-
charged: number;
|
|
6170
|
-
landed: number;
|
|
6171
|
-
drift: number;
|
|
6172
|
-
};
|
|
6173
|
-
lastError?: {
|
|
6174
|
-
message: string;
|
|
6175
|
-
failedAt?: Date | string;
|
|
6176
|
-
};
|
|
6231
|
+
error?: string;
|
|
6177
6232
|
}
|
|
6178
|
-
interface
|
|
6233
|
+
interface NetsuitePushOutcome {
|
|
6179
6234
|
orderId: string;
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
|
-
|
|
6235
|
+
recordType: string;
|
|
6236
|
+
netsuiteId?: string;
|
|
6237
|
+
receipt?: NetsuiteReceipt;
|
|
6238
|
+
skipped?: string;
|
|
6239
|
+
payload?: Record<string, unknown>;
|
|
6240
|
+
attempts?: NetsuitePushAttempt[];
|
|
6241
|
+
}
|
|
6242
|
+
interface NetsuiteStatusChange {
|
|
6243
|
+
orderId: string;
|
|
6244
|
+
netsuiteId: string;
|
|
6245
|
+
from?: string;
|
|
6246
|
+
to: string;
|
|
6247
|
+
localStatus?: string;
|
|
6248
|
+
}
|
|
6249
|
+
interface NetsuiteStatusSyncResult {
|
|
6250
|
+
checked: number;
|
|
6251
|
+
changed: number;
|
|
6252
|
+
statusChanges: NetsuiteStatusChange[];
|
|
6253
|
+
shipmentsUpdated: number;
|
|
6254
|
+
fulfillments: number;
|
|
6185
6255
|
}
|
|
6186
6256
|
|
|
6187
6257
|
interface RevalidationResult {
|
|
@@ -6231,6 +6301,7 @@ interface CheckoutPayload {
|
|
|
6231
6301
|
shippingMethod?: string;
|
|
6232
6302
|
acceptedTerms: boolean;
|
|
6233
6303
|
customerNote?: string;
|
|
6304
|
+
poNumber?: string;
|
|
6234
6305
|
}
|
|
6235
6306
|
interface CheckoutResult {
|
|
6236
6307
|
order: IOrder;
|
|
@@ -6287,4 +6358,4 @@ interface IWishlist extends BaseEntity {
|
|
|
6287
6358
|
items: IWishlistItem[];
|
|
6288
6359
|
}
|
|
6289
6360
|
|
|
6290
|
-
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 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,
|
|
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 };
|