@applite/js-sdk 0.0.11 → 0.0.12
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 +229 -6
- package/dist/index.d.ts +229 -6
- package/dist/index.js +121 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +119 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -62,7 +62,7 @@ type DiscountAppliesTo = "ALL" | "COLLECTIONS" | "PRODUCTS";
|
|
|
62
62
|
type ShippingRateType = "FLAT" | "WEIGHT_BASED" | "PRICE_BASED";
|
|
63
63
|
type SubscriptionStatus = "ACTIVE" | "PAST_DUE" | "CANCELED" | "SUSPENDED";
|
|
64
64
|
type FileType = "IMAGE" | "VIDEO" | "GIF";
|
|
65
|
-
type FieldType = "TEXT" | "NUMBER" | "SELECT" | "MULTIPLE_SELECT" | "EMAIL" | "PHONE" | "DATE";
|
|
65
|
+
type FieldType = "TEXT" | "NUMBER" | "SELECT" | "MULTIPLE_SELECT" | "EMAIL" | "PHONE" | "DATE" | "ADDRESS";
|
|
66
66
|
type AppointmentStatus = "PENDING" | "CONFIRMED" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
67
67
|
type KolaboAppStatus = "PENDING" | "APPROVED" | "REVALIATING" | "REJECTED";
|
|
68
68
|
type KolaboPartnerType = "INDEPENDENT" | "AGENCY";
|
|
@@ -402,6 +402,127 @@ declare class WelcomeItemApi {
|
|
|
402
402
|
}>>;
|
|
403
403
|
}
|
|
404
404
|
|
|
405
|
+
interface Address {
|
|
406
|
+
id: string;
|
|
407
|
+
appId: string;
|
|
408
|
+
customerId: string;
|
|
409
|
+
name: string;
|
|
410
|
+
firstName: string | null;
|
|
411
|
+
lastName: string | null;
|
|
412
|
+
phone: string | null;
|
|
413
|
+
email: string | null;
|
|
414
|
+
address: string;
|
|
415
|
+
address2: string | null;
|
|
416
|
+
city: string | null;
|
|
417
|
+
zip: string | null;
|
|
418
|
+
state: string | null;
|
|
419
|
+
country: string | null;
|
|
420
|
+
longitude: number | null;
|
|
421
|
+
latitude: number | null;
|
|
422
|
+
plateform: PlateformType | null;
|
|
423
|
+
createdAt: string;
|
|
424
|
+
updatedAt: string;
|
|
425
|
+
}
|
|
426
|
+
interface AddressListParams extends AppScopedParams {
|
|
427
|
+
customerId?: string;
|
|
428
|
+
plateform?: PlateformType;
|
|
429
|
+
}
|
|
430
|
+
interface CreateAddressParams extends AppScopedParams {
|
|
431
|
+
customerId: string;
|
|
432
|
+
name: string;
|
|
433
|
+
firstName?: string;
|
|
434
|
+
lastName?: string;
|
|
435
|
+
phone?: string;
|
|
436
|
+
email?: string;
|
|
437
|
+
address: string;
|
|
438
|
+
address2?: string;
|
|
439
|
+
city?: string;
|
|
440
|
+
zip?: string;
|
|
441
|
+
state?: string;
|
|
442
|
+
country?: string;
|
|
443
|
+
longitude?: number;
|
|
444
|
+
latitude?: number;
|
|
445
|
+
plateform?: PlateformType;
|
|
446
|
+
}
|
|
447
|
+
interface UpdateAddressParams extends AppScopedParams {
|
|
448
|
+
id: string;
|
|
449
|
+
addressId?: string;
|
|
450
|
+
customerId?: string;
|
|
451
|
+
name?: string;
|
|
452
|
+
firstName?: string;
|
|
453
|
+
lastName?: string;
|
|
454
|
+
phone?: string;
|
|
455
|
+
email?: string;
|
|
456
|
+
address?: string;
|
|
457
|
+
address2?: string;
|
|
458
|
+
city?: string;
|
|
459
|
+
zip?: string;
|
|
460
|
+
state?: string;
|
|
461
|
+
country?: string;
|
|
462
|
+
longitude?: number;
|
|
463
|
+
latitude?: number;
|
|
464
|
+
plateform?: PlateformType;
|
|
465
|
+
}
|
|
466
|
+
interface AddressDeleteParams extends AppScopedParams {
|
|
467
|
+
id: string;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
declare class AddressApi {
|
|
471
|
+
private readonly http;
|
|
472
|
+
constructor(http: HttpClient);
|
|
473
|
+
list(params: AddressListParams): Promise<ApiSuccessResponse<Address[]>>;
|
|
474
|
+
create(params: CreateAddressParams): Promise<ApiSuccessResponse<Address>>;
|
|
475
|
+
update(params: UpdateAddressParams): Promise<ApiSuccessResponse<Address>>;
|
|
476
|
+
delete(params: AddressDeleteParams): Promise<ApiSuccessResponse<{
|
|
477
|
+
deleted: boolean;
|
|
478
|
+
}>>;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
type NotificationPlatform = "IOS" | "ANDROID" | "WEB";
|
|
482
|
+
interface NotificationToken {
|
|
483
|
+
id: string;
|
|
484
|
+
customerId: string;
|
|
485
|
+
appId: string;
|
|
486
|
+
token: string;
|
|
487
|
+
platform: NotificationPlatform;
|
|
488
|
+
deviceId: string | null;
|
|
489
|
+
deviceName: string | null;
|
|
490
|
+
createdAt: string;
|
|
491
|
+
lastUsedAt: string;
|
|
492
|
+
}
|
|
493
|
+
interface RemoveTokenResponse {
|
|
494
|
+
removed: boolean;
|
|
495
|
+
}
|
|
496
|
+
interface RemoveAllTokensResponse {
|
|
497
|
+
removedCount: number;
|
|
498
|
+
}
|
|
499
|
+
interface SetNotificationTokenParams extends AppScopedParams {
|
|
500
|
+
customerId: string;
|
|
501
|
+
token: string;
|
|
502
|
+
platform: NotificationPlatform;
|
|
503
|
+
deviceId?: string;
|
|
504
|
+
deviceName?: string;
|
|
505
|
+
}
|
|
506
|
+
interface RemoveNotificationTokenParams extends AppScopedParams {
|
|
507
|
+
customerId: string;
|
|
508
|
+
token: string;
|
|
509
|
+
}
|
|
510
|
+
interface RemoveAllNotificationTokensParams extends AppScopedParams {
|
|
511
|
+
customerId: string;
|
|
512
|
+
}
|
|
513
|
+
interface ListNotificationTokensParams extends AppScopedParams {
|
|
514
|
+
customerId: string;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
declare class NotificationTokenApi {
|
|
518
|
+
private readonly http;
|
|
519
|
+
constructor(http: HttpClient);
|
|
520
|
+
set(params: SetNotificationTokenParams): Promise<ApiSuccessResponse<NotificationToken>>;
|
|
521
|
+
remove(params: RemoveNotificationTokenParams): Promise<ApiSuccessResponse<RemoveTokenResponse>>;
|
|
522
|
+
removeAll(params: RemoveAllNotificationTokensParams): Promise<ApiSuccessResponse<RemoveAllTokensResponse>>;
|
|
523
|
+
list(params: ListNotificationTokensParams): Promise<ApiSuccessResponse<NotificationToken[]>>;
|
|
524
|
+
}
|
|
525
|
+
|
|
405
526
|
/**
|
|
406
527
|
* Seller summary used in nested relations (badge, category, product, etc.)
|
|
407
528
|
*/
|
|
@@ -1513,6 +1634,7 @@ interface FieldOption {
|
|
|
1513
1634
|
interface ServiceField {
|
|
1514
1635
|
id: string;
|
|
1515
1636
|
serviceId: string;
|
|
1637
|
+
ref: string;
|
|
1516
1638
|
label: string;
|
|
1517
1639
|
description: string | null;
|
|
1518
1640
|
type: FieldType;
|
|
@@ -1523,6 +1645,7 @@ interface ServiceField {
|
|
|
1523
1645
|
maxLength: number | null;
|
|
1524
1646
|
regex: string | null;
|
|
1525
1647
|
multiplier: boolean;
|
|
1648
|
+
useSelect: boolean;
|
|
1526
1649
|
options: FieldOption[];
|
|
1527
1650
|
}
|
|
1528
1651
|
/**
|
|
@@ -1532,6 +1655,13 @@ interface ServiceSummary {
|
|
|
1532
1655
|
id: string;
|
|
1533
1656
|
name: string;
|
|
1534
1657
|
}
|
|
1658
|
+
/**
|
|
1659
|
+
* Service summary with fields for appointment display
|
|
1660
|
+
*/
|
|
1661
|
+
interface ServiceSummaryWithFields extends ServiceSummary {
|
|
1662
|
+
icon: string | null;
|
|
1663
|
+
fields: ServiceField[];
|
|
1664
|
+
}
|
|
1535
1665
|
/**
|
|
1536
1666
|
* Service list item with company and fields
|
|
1537
1667
|
*/
|
|
@@ -1569,6 +1699,7 @@ interface FieldOptionInput {
|
|
|
1569
1699
|
}
|
|
1570
1700
|
interface ServiceFieldInput {
|
|
1571
1701
|
id?: string;
|
|
1702
|
+
ref?: string;
|
|
1572
1703
|
label: string;
|
|
1573
1704
|
description?: string | null;
|
|
1574
1705
|
type: FieldType;
|
|
@@ -1579,6 +1710,7 @@ interface ServiceFieldInput {
|
|
|
1579
1710
|
maxLength?: number | null;
|
|
1580
1711
|
regex?: string | null;
|
|
1581
1712
|
multiplier?: boolean;
|
|
1713
|
+
useSelect?: boolean;
|
|
1582
1714
|
options?: FieldOptionInput[];
|
|
1583
1715
|
}
|
|
1584
1716
|
interface CreateServiceParams extends AppScopedParams {
|
|
@@ -1683,6 +1815,15 @@ declare class AgentApi {
|
|
|
1683
1815
|
}>>;
|
|
1684
1816
|
}
|
|
1685
1817
|
|
|
1818
|
+
/**
|
|
1819
|
+
* Customer summary for appointment display
|
|
1820
|
+
*/
|
|
1821
|
+
interface CustomerSummary {
|
|
1822
|
+
id: string;
|
|
1823
|
+
fullname: string;
|
|
1824
|
+
telephone: string;
|
|
1825
|
+
photoUrl: string | null;
|
|
1826
|
+
}
|
|
1686
1827
|
/**
|
|
1687
1828
|
* Appointment list item with service and agent
|
|
1688
1829
|
*/
|
|
@@ -1692,7 +1833,7 @@ interface MultiServiceAppointmentListItem {
|
|
|
1692
1833
|
companyId: string;
|
|
1693
1834
|
serviceId: string;
|
|
1694
1835
|
agentId: string | null;
|
|
1695
|
-
|
|
1836
|
+
customerId: string | null;
|
|
1696
1837
|
filledFields: Record<string, unknown>;
|
|
1697
1838
|
totalPrice: number;
|
|
1698
1839
|
date: string;
|
|
@@ -1700,8 +1841,9 @@ interface MultiServiceAppointmentListItem {
|
|
|
1700
1841
|
status: AppointmentStatus;
|
|
1701
1842
|
createdAt: string;
|
|
1702
1843
|
updatedAt: string;
|
|
1703
|
-
service:
|
|
1844
|
+
service: ServiceSummaryWithFields;
|
|
1704
1845
|
agent: AgentSummary | null;
|
|
1846
|
+
customer: CustomerSummary | null;
|
|
1705
1847
|
}
|
|
1706
1848
|
/**
|
|
1707
1849
|
* Appointment detail
|
|
@@ -1716,16 +1858,19 @@ interface CreateAppointmentParams extends AppScopedParams {
|
|
|
1716
1858
|
companyId: string;
|
|
1717
1859
|
serviceId: string;
|
|
1718
1860
|
agentId?: string | null;
|
|
1719
|
-
|
|
1861
|
+
customerId: string;
|
|
1720
1862
|
filledFields: Record<string, unknown>;
|
|
1721
1863
|
totalPrice: number;
|
|
1722
1864
|
date: string;
|
|
1723
1865
|
commune: string;
|
|
1724
|
-
status?: AppointmentStatus;
|
|
1866
|
+
status?: AppointmentStatus | null;
|
|
1725
1867
|
}
|
|
1726
1868
|
interface UpdateAppointmentStatusParams extends EntityIdParams {
|
|
1727
1869
|
status: AppointmentStatus;
|
|
1728
1870
|
}
|
|
1871
|
+
interface UpdateAppointmentAgentParams extends EntityIdParams {
|
|
1872
|
+
agentId: string | null;
|
|
1873
|
+
}
|
|
1729
1874
|
interface GetAppointmentParams extends EntityIdParams {
|
|
1730
1875
|
}
|
|
1731
1876
|
interface ListAppointmentsParams extends AppScopedParams {
|
|
@@ -1766,12 +1911,88 @@ declare class ServiceApi {
|
|
|
1766
1911
|
}>>;
|
|
1767
1912
|
}
|
|
1768
1913
|
|
|
1914
|
+
interface MultiServiceFieldOptionTemplate {
|
|
1915
|
+
id: string;
|
|
1916
|
+
templateId: string;
|
|
1917
|
+
label: string;
|
|
1918
|
+
value: string;
|
|
1919
|
+
description: string | null;
|
|
1920
|
+
price: number | null;
|
|
1921
|
+
}
|
|
1922
|
+
interface MultiServiceFieldTemplate {
|
|
1923
|
+
id: string;
|
|
1924
|
+
appId: string;
|
|
1925
|
+
ref: string | null;
|
|
1926
|
+
label: string;
|
|
1927
|
+
description: string | null;
|
|
1928
|
+
type: FieldType;
|
|
1929
|
+
min: number | null;
|
|
1930
|
+
max: number | null;
|
|
1931
|
+
minLength: number | null;
|
|
1932
|
+
maxLength: number | null;
|
|
1933
|
+
regex: string | null;
|
|
1934
|
+
required: boolean;
|
|
1935
|
+
multiplier: boolean;
|
|
1936
|
+
useSelect: boolean;
|
|
1937
|
+
options: MultiServiceFieldOptionTemplate[];
|
|
1938
|
+
createdAt: string;
|
|
1939
|
+
updatedAt: string;
|
|
1940
|
+
}
|
|
1941
|
+
interface ListFieldTemplatesParams extends AppScopedParams {
|
|
1942
|
+
}
|
|
1943
|
+
interface CreateFieldTemplateParams extends AppScopedParams {
|
|
1944
|
+
ref?: string;
|
|
1945
|
+
label: string;
|
|
1946
|
+
description?: string;
|
|
1947
|
+
type: FieldType;
|
|
1948
|
+
min?: number;
|
|
1949
|
+
max?: number;
|
|
1950
|
+
minLength?: number;
|
|
1951
|
+
maxLength?: number;
|
|
1952
|
+
regex?: string;
|
|
1953
|
+
required?: boolean;
|
|
1954
|
+
multiplier?: boolean;
|
|
1955
|
+
useSelect?: boolean;
|
|
1956
|
+
options?: FieldOptionInput[];
|
|
1957
|
+
}
|
|
1958
|
+
interface UpdateFieldTemplateParams extends AppScopedParams {
|
|
1959
|
+
id: string;
|
|
1960
|
+
ref?: string;
|
|
1961
|
+
label?: string;
|
|
1962
|
+
description?: string;
|
|
1963
|
+
type?: FieldType;
|
|
1964
|
+
min?: number;
|
|
1965
|
+
max?: number;
|
|
1966
|
+
minLength?: number;
|
|
1967
|
+
maxLength?: number;
|
|
1968
|
+
regex?: string;
|
|
1969
|
+
required?: boolean;
|
|
1970
|
+
multiplier?: boolean;
|
|
1971
|
+
useSelect?: boolean;
|
|
1972
|
+
options?: FieldOptionInput[];
|
|
1973
|
+
}
|
|
1974
|
+
interface DeleteFieldTemplateParams extends AppScopedParams {
|
|
1975
|
+
id: string;
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
declare class FieldTemplateApi {
|
|
1979
|
+
private readonly http;
|
|
1980
|
+
constructor(http: HttpClient);
|
|
1981
|
+
list(params: ListFieldTemplatesParams): Promise<ApiSuccessResponse<MultiServiceFieldTemplate[]>>;
|
|
1982
|
+
create(params: CreateFieldTemplateParams): Promise<ApiSuccessResponse<MultiServiceFieldTemplate>>;
|
|
1983
|
+
update(params: UpdateFieldTemplateParams): Promise<ApiSuccessResponse<MultiServiceFieldTemplate>>;
|
|
1984
|
+
delete(params: DeleteFieldTemplateParams): Promise<ApiSuccessResponse<{
|
|
1985
|
+
deleted: boolean;
|
|
1986
|
+
}>>;
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1769
1989
|
declare class MultiServiceApi {
|
|
1770
1990
|
private readonly http;
|
|
1771
1991
|
readonly company: CompanyApi;
|
|
1772
1992
|
readonly service: ServiceApi;
|
|
1773
1993
|
readonly appointment: AppointmentApi;
|
|
1774
1994
|
readonly agent: AgentApi;
|
|
1995
|
+
readonly fieldTemplate: FieldTemplateApi;
|
|
1775
1996
|
constructor(http: HttpClient);
|
|
1776
1997
|
}
|
|
1777
1998
|
|
|
@@ -1784,9 +2005,11 @@ declare class AppliteUI {
|
|
|
1784
2005
|
readonly finance: FinanceApi;
|
|
1785
2006
|
readonly welcomeItem: WelcomeItemApi;
|
|
1786
2007
|
readonly info: InfoApi;
|
|
2008
|
+
readonly address: AddressApi;
|
|
2009
|
+
readonly notificationToken: NotificationTokenApi;
|
|
1787
2010
|
readonly store: StoreApi;
|
|
1788
2011
|
readonly multiService: MultiServiceApi;
|
|
1789
2012
|
constructor(config?: AppliteUIConfig);
|
|
1790
2013
|
}
|
|
1791
2014
|
|
|
1792
|
-
export { type AdvancedImageType, AgentApi, type AgentSummary, type ApiErrorResponse, type ApiKeyParams, type ApiResponse, type ApiSuccessResponse, type ApiSuccessResponseWithMeta, type AppDetail, type AppScopedParams, type AppSummary, AppliteUI, type AppliteUIConfig, AppointmentApi, type AppointmentStatus, BadgeApi, type BalanceParams, CategoryApi, CollectionApi, type CollectionType, CompanyApi, type CompanySummary, type CreateAgentParams, type CreateAppParams, type CreateAppointmentParams, type CreateBadgeParams, type CreateCategoryParams, type CreateCollectionParams, type CreateCompanyParams, type CreateDiscountParams, type CreateOptionParams, type CreateOrderParams, type CreateProductParams, type CreateSellerParams, type CreateServiceParams, type CreateShippingProfileParams, type CreateStatisticParams, type CreateTagParams, type CreateTaxParams, type CreateWelcomeItemParams, type Currency, type Customer, type CustomerAddress, CustomerApi, type CustomerAuthParams, type CustomerBlockParams, type CustomerCheckParams, type CustomerDeleteParams, type CustomerDetail, type CustomerGetParams, type CustomerListFewItem, type CustomerListItem, type CustomerListParams, type CustomerSelfDeleteParams, type CustomerStoreReview, type CustomerTransaction, type CustomerUpdateParams, type DeleteAgentParams, type DeleteBadgeParams, type DeleteCategoryParams, type DeleteCollectionParams, type DeleteCompanyParams, type DeleteDiscountParams, type DeleteOptionParams, type DeleteOrderParams, type DeleteProductParams, type DeleteSellerParams, type DeleteServiceParams, type DeleteShippingProfileParams, type DeleteTagParams, type DeleteTaxParams, type DeleteWelcomeItemParams, DiscountApi, type DiscountAppliesTo, type DiscountMinRequirement, type DiscountType, type EntityIdParams, type FieldOption, type FieldOptionInput, type FieldType, type FileType, FinanceApi, type FulfillmentStatus, type GetAgentParams, type GetAppByIdParams, type GetAppBySlugParams, type GetAppointmentParams, type GetBadgeParams, type GetCategoryParams, type GetCollectionParams, type GetCompanyParams, type GetDiscountParams, type GetOptionParams, type GetOrderParams, type GetProductParams, type GetSellerParams, type GetServiceParams, type GetShippingProfileParams, type GetStatisticParams, type GetTagParams, type GetTaxParams, type GetWelcomeItemParams, HttpClient, type HttpClientConfig, InfoApi, type InventoryPolicy, type KolaboAppStatus, type KolaboPartnerType, type ListAgentsParams, type ListAppointmentsParams, type ListAppsParams, type ListBadgesParams, type ListCategoriesParams, type ListCollectionsParams, type ListCompaniesParams, type ListDiscountsParams, type ListOptionsParams, type ListOrdersParams, type ListParams, type ListProductsParams, type ListSellersParams, type ListServicesParams, type ListShippingProfilesParams, type ListTagsParams, type ListTaxesParams, type ListWelcomeItemsParams, type MemberRole, type MultiServiceAgentDetail, type MultiServiceAgentListItem, MultiServiceApi, type MultiServiceAppointmentDetail, type MultiServiceAppointmentListItem, type MultiServiceCompanyDetail, type MultiServiceCompanyListItem, type MultiServiceServiceDetail, type MultiServiceServiceListItem, OptionApi, type OptionValueInput, type OrderAddress, OrderApi, type OrderCartItem, type OrderCustomerSummary, type OrderItemInput, type OrderItemVariant, type OrderSellerSummary, type OrderStatus, type PaginationMeta, type PaymentStatus, type PlateformType, ProductApi, type ProductAttributeInput, type ProductDimension, type ProductImage, type ProductImageFull, type ProductStatus, type ProductVariantDetail, type ProductVariantInput, type ProductVariantListItem, type ProductVariantOptionValue, type SearchableListParams, SellerApi, type SellerSummary, ServiceApi, type ServiceField, type ServiceFieldInput, type ServiceSummary, type Sexe, ShippingApi, type ShippingRateInput, type ShippingRateType, type ShippingZoneInput, type Statistic, StatsApi, StoreApi, type StoreBadgeDetail, type StoreBadgeListItem, type StoreCategoryDetail, type StoreCategoryListItem, type StoreCollectionDetail, type StoreCollectionListItem, type StoreDiscountDetail, type StoreDiscountListItem, type StoreOptionDetail, type StoreOptionListItem, type StoreOptionType, type StoreOptionValue, type StoreOrderDetail, type StoreOrderListItem, type StoreProductDetail, type StoreProductListItem, type StoreSellerDetail, type StoreSellerListItem, type StoreShippingProfileDetail, type StoreShippingProfileListItem, type StoreShippingRate, type StoreShippingZone, type StoreTagDetail, type StoreTagListItem, type StoreTaxDetail, type StoreTaxListItem, type SubscriptionStatus, TagApi, TaxApi, type Transaction, type TransactionDetail, type TransactionGetParams, type TransactionListParams, type TransactionProvider, type TransactionStatus, type UpdateAgentParams, type UpdateAppointmentStatusParams, type UpdateBadgeParams, type UpdateCategoryParams, type UpdateCollectionParams, type UpdateCompanyParams, type UpdateDiscountParams, type UpdateOptionParams, type UpdateOrderParams, type UpdateProductParams, type UpdateSellerParams, type UpdateServiceParams, type UpdateShippingProfileParams, type UpdateStatisticParams, type UpdateTagParams, type UpdateTaxParams, type UpdateWelcomeItemParams, type WelcomeItem, WelcomeItemApi, type WithdrawParams, type WithdrawResult };
|
|
2015
|
+
export { type Address, AddressApi, type AddressDeleteParams, type AddressListParams, type AdvancedImageType, AgentApi, type AgentSummary, type ApiErrorResponse, type ApiKeyParams, type ApiResponse, type ApiSuccessResponse, type ApiSuccessResponseWithMeta, type AppDetail, type AppScopedParams, type AppSummary, AppliteUI, type AppliteUIConfig, AppointmentApi, type AppointmentStatus, BadgeApi, type BalanceParams, CategoryApi, CollectionApi, type CollectionType, CompanyApi, type CompanySummary, type CreateAddressParams, type CreateAgentParams, type CreateAppParams, type CreateAppointmentParams, type CreateBadgeParams, type CreateCategoryParams, type CreateCollectionParams, type CreateCompanyParams, type CreateDiscountParams, type CreateFieldTemplateParams, type CreateOptionParams, type CreateOrderParams, type CreateProductParams, type CreateSellerParams, type CreateServiceParams, type CreateShippingProfileParams, type CreateStatisticParams, type CreateTagParams, type CreateTaxParams, type CreateWelcomeItemParams, type Currency, type Customer, type CustomerAddress, CustomerApi, type CustomerAuthParams, type CustomerBlockParams, type CustomerCheckParams, type CustomerDeleteParams, type CustomerDetail, type CustomerGetParams, type CustomerListFewItem, type CustomerListItem, type CustomerListParams, type CustomerSelfDeleteParams, type CustomerStoreReview, type CustomerSummary, type CustomerTransaction, type CustomerUpdateParams, type DeleteAgentParams, type DeleteBadgeParams, type DeleteCategoryParams, type DeleteCollectionParams, type DeleteCompanyParams, type DeleteDiscountParams, type DeleteFieldTemplateParams, type DeleteOptionParams, type DeleteOrderParams, type DeleteProductParams, type DeleteSellerParams, type DeleteServiceParams, type DeleteShippingProfileParams, type DeleteTagParams, type DeleteTaxParams, type DeleteWelcomeItemParams, DiscountApi, type DiscountAppliesTo, type DiscountMinRequirement, type DiscountType, type EntityIdParams, type FieldOption, type FieldOptionInput, FieldTemplateApi, type FieldType, type FileType, FinanceApi, type FulfillmentStatus, type GetAgentParams, type GetAppByIdParams, type GetAppBySlugParams, type GetAppointmentParams, type GetBadgeParams, type GetCategoryParams, type GetCollectionParams, type GetCompanyParams, type GetDiscountParams, type GetOptionParams, type GetOrderParams, type GetProductParams, type GetSellerParams, type GetServiceParams, type GetShippingProfileParams, type GetStatisticParams, type GetTagParams, type GetTaxParams, type GetWelcomeItemParams, HttpClient, type HttpClientConfig, InfoApi, type InventoryPolicy, type KolaboAppStatus, type KolaboPartnerType, type ListAgentsParams, type ListAppointmentsParams, type ListAppsParams, type ListBadgesParams, type ListCategoriesParams, type ListCollectionsParams, type ListCompaniesParams, type ListDiscountsParams, type ListFieldTemplatesParams, type ListNotificationTokensParams, type ListOptionsParams, type ListOrdersParams, type ListParams, type ListProductsParams, type ListSellersParams, type ListServicesParams, type ListShippingProfilesParams, type ListTagsParams, type ListTaxesParams, type ListWelcomeItemsParams, type MemberRole, type MultiServiceAgentDetail, type MultiServiceAgentListItem, MultiServiceApi, type MultiServiceAppointmentDetail, type MultiServiceAppointmentListItem, type MultiServiceCompanyDetail, type MultiServiceCompanyListItem, type MultiServiceFieldOptionTemplate, type MultiServiceFieldTemplate, type MultiServiceServiceDetail, type MultiServiceServiceListItem, type NotificationPlatform, type NotificationToken, NotificationTokenApi, OptionApi, type OptionValueInput, type OrderAddress, OrderApi, type OrderCartItem, type OrderCustomerSummary, type OrderItemInput, type OrderItemVariant, type OrderSellerSummary, type OrderStatus, type PaginationMeta, type PaymentStatus, type PlateformType, ProductApi, type ProductAttributeInput, type ProductDimension, type ProductImage, type ProductImageFull, type ProductStatus, type ProductVariantDetail, type ProductVariantInput, type ProductVariantListItem, type ProductVariantOptionValue, type RemoveAllNotificationTokensParams, type RemoveAllTokensResponse, type RemoveNotificationTokenParams, type RemoveTokenResponse, type SearchableListParams, SellerApi, type SellerSummary, ServiceApi, type ServiceField, type ServiceFieldInput, type ServiceSummary, type ServiceSummaryWithFields, type SetNotificationTokenParams, type Sexe, ShippingApi, type ShippingRateInput, type ShippingRateType, type ShippingZoneInput, type Statistic, StatsApi, StoreApi, type StoreBadgeDetail, type StoreBadgeListItem, type StoreCategoryDetail, type StoreCategoryListItem, type StoreCollectionDetail, type StoreCollectionListItem, type StoreDiscountDetail, type StoreDiscountListItem, type StoreOptionDetail, type StoreOptionListItem, type StoreOptionType, type StoreOptionValue, type StoreOrderDetail, type StoreOrderListItem, type StoreProductDetail, type StoreProductListItem, type StoreSellerDetail, type StoreSellerListItem, type StoreShippingProfileDetail, type StoreShippingProfileListItem, type StoreShippingRate, type StoreShippingZone, type StoreTagDetail, type StoreTagListItem, type StoreTaxDetail, type StoreTaxListItem, type SubscriptionStatus, TagApi, TaxApi, type Transaction, type TransactionDetail, type TransactionGetParams, type TransactionListParams, type TransactionProvider, type TransactionStatus, type UpdateAddressParams, type UpdateAgentParams, type UpdateAppointmentAgentParams, type UpdateAppointmentStatusParams, type UpdateBadgeParams, type UpdateCategoryParams, type UpdateCollectionParams, type UpdateCompanyParams, type UpdateDiscountParams, type UpdateFieldTemplateParams, type UpdateOptionParams, type UpdateOrderParams, type UpdateProductParams, type UpdateSellerParams, type UpdateServiceParams, type UpdateShippingProfileParams, type UpdateStatisticParams, type UpdateTagParams, type UpdateTaxParams, type UpdateWelcomeItemParams, type WelcomeItem, WelcomeItemApi, type WithdrawParams, type WithdrawResult };
|