@lana-commerce/core 13.1.0-alpha.2 → 13.1.0-alpha.3
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/CHANGELOG.md +2 -0
- package/cjs/react/popperBinder.js +2 -3
- package/esm/react/popperBinder.js +2 -3
- package/package.json +1 -1
- package/types/json/commerceTypes.d.ts +0 -258
package/CHANGELOG.md
CHANGED
|
@@ -11,10 +11,12 @@ This project adheres to [Semantic Versioning][semantic versioning].
|
|
|
11
11
|
|
|
12
12
|
- Add "clear" event to "modules/advancedSearch".
|
|
13
13
|
- Extend "invoiceFormat" to support storage fees (internal thing).
|
|
14
|
+
- A bunch of internal APIs were removed. While it's a major change, I put it here, because we know for sure that nobody was using those.
|
|
14
15
|
|
|
15
16
|
### Patch Changes
|
|
16
17
|
|
|
17
18
|
- Fix a bug in "modules/advancedSearch". Locale changes were incorrectly ignored in effect body.
|
|
19
|
+
- Avoid using findDOMNode in popper.js related code.
|
|
18
20
|
|
|
19
21
|
## [Released]
|
|
20
22
|
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PopperBinder = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
const react_dom_1 = tslib_1.__importDefault(require("react-dom"));
|
|
6
5
|
const index_js_1 = tslib_1.__importDefault(require("../vendor/popper/index.js"));
|
|
7
6
|
class PopperBinder {
|
|
8
7
|
constructor(params) {
|
|
@@ -42,8 +41,8 @@ class PopperBinder {
|
|
|
42
41
|
return;
|
|
43
42
|
}
|
|
44
43
|
if (!this.popper && triggerRef && menuRef) {
|
|
45
|
-
const triggerEl =
|
|
46
|
-
const menuEl =
|
|
44
|
+
const triggerEl = triggerRef.current;
|
|
45
|
+
const menuEl = menuRef.current;
|
|
47
46
|
this.popper = new index_js_1.default(triggerEl, menuEl, {
|
|
48
47
|
onUpdate: this.handleUpdate,
|
|
49
48
|
placement: placement || "bottom-end",
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import ReactDOM from "react-dom";
|
|
2
1
|
import Popper from "../vendor/popper/index.js";
|
|
3
2
|
export class PopperBinder {
|
|
4
3
|
params;
|
|
@@ -39,8 +38,8 @@ export class PopperBinder {
|
|
|
39
38
|
return;
|
|
40
39
|
}
|
|
41
40
|
if (!this.popper && triggerRef && menuRef) {
|
|
42
|
-
const triggerEl =
|
|
43
|
-
const menuEl =
|
|
41
|
+
const triggerEl = triggerRef.current;
|
|
42
|
+
const menuEl = menuRef.current;
|
|
44
43
|
this.popper = new Popper(triggerEl, menuEl, {
|
|
45
44
|
onUpdate: this.handleUpdate,
|
|
46
45
|
placement: placement || "bottom-end",
|
package/package.json
CHANGED
|
@@ -276,76 +276,6 @@ export interface AuspostOptions {
|
|
|
276
276
|
export interface AuspostOptionsCreate {
|
|
277
277
|
auth_key: string;
|
|
278
278
|
}
|
|
279
|
-
export interface Blog {
|
|
280
|
-
/** Images referenced by "raw_content". */
|
|
281
|
-
content_image_files: Array<{
|
|
282
|
-
id: string;
|
|
283
|
-
} | File | null>;
|
|
284
|
-
/** The date and time when blog was created, RFC 3339 format */
|
|
285
|
-
created_at: string;
|
|
286
|
-
/** A unique blog identifier */
|
|
287
|
-
id: string;
|
|
288
|
-
revisions: Array<BlogRevision>;
|
|
289
|
-
/** The date and time when blog was last updated, RFC 3339 format */
|
|
290
|
-
updated_at: string;
|
|
291
|
-
}
|
|
292
|
-
export interface BlogExpandableItems {
|
|
293
|
-
/** Generic array of expandable items */
|
|
294
|
-
items: Array<{
|
|
295
|
-
id: string;
|
|
296
|
-
} | Blog | null>;
|
|
297
|
-
}
|
|
298
|
-
export type BlogFilterType = "any" | "draft" | "public";
|
|
299
|
-
export interface BlogPage {
|
|
300
|
-
/** Total number of items in the collection */
|
|
301
|
-
count: number;
|
|
302
|
-
items: Array<Blog>;
|
|
303
|
-
/** Key of the last item for keyset based iteration */
|
|
304
|
-
last_key: string;
|
|
305
|
-
}
|
|
306
|
-
export interface BlogRevision {
|
|
307
|
-
/** Topic of this revision */
|
|
308
|
-
blog_topic?: {
|
|
309
|
-
id: string;
|
|
310
|
-
} | BlogTopic | null;
|
|
311
|
-
/** The date and time when blog revision was created, RFC 3339 format */
|
|
312
|
-
created_at: string;
|
|
313
|
-
/** Images file for this blog revision */
|
|
314
|
-
image_files: Array<{
|
|
315
|
-
id: string;
|
|
316
|
-
} | File | null>;
|
|
317
|
-
/** 2-letter language code */
|
|
318
|
-
language: string;
|
|
319
|
-
/** Meta description for SEO purposes */
|
|
320
|
-
meta_description: string;
|
|
321
|
-
/** SEO-friendly title of the content block */
|
|
322
|
-
meta_title: string;
|
|
323
|
-
/** Whether server thinks blog is published or not (depends on server time) */
|
|
324
|
-
published: boolean;
|
|
325
|
-
/** The date and time when blog was published or null */
|
|
326
|
-
published_at: string | null;
|
|
327
|
-
/** Raw content of the blog */
|
|
328
|
-
raw_content: string;
|
|
329
|
-
/** Title of the blog */
|
|
330
|
-
title: string;
|
|
331
|
-
/** The date and time when blog revision was last bumped, RFC 3339 format */
|
|
332
|
-
used_at: string;
|
|
333
|
-
/** Author of the revision */
|
|
334
|
-
user?: {
|
|
335
|
-
id: string;
|
|
336
|
-
} | User | null;
|
|
337
|
-
}
|
|
338
|
-
export interface BlogTopic {
|
|
339
|
-
/** The date and time when blog topic was created, RFC 3339 format */
|
|
340
|
-
created_at: string;
|
|
341
|
-
/** A unique blog topic identifier */
|
|
342
|
-
id: string;
|
|
343
|
-
/** Support topic title */
|
|
344
|
-
title: string;
|
|
345
|
-
/** The date and time when blog topic was last updated, RFC 3339 format */
|
|
346
|
-
updated_at: string;
|
|
347
|
-
}
|
|
348
|
-
export type BlogsPageSortBy = "created_at" | "updated_at";
|
|
349
279
|
export interface Brand {
|
|
350
280
|
/** Image files referenced by "raw_content". */
|
|
351
281
|
content_image_files: Array<{
|
|
@@ -7700,85 +7630,6 @@ export interface SupplierSearchResult {
|
|
|
7700
7630
|
} | Supplier | null>;
|
|
7701
7631
|
}
|
|
7702
7632
|
export type SuppliersPageSortBy = "created_at";
|
|
7703
|
-
export interface SupportArticle {
|
|
7704
|
-
/** Image files referenced by "raw_content". */
|
|
7705
|
-
content_image_files: Array<{
|
|
7706
|
-
id: string;
|
|
7707
|
-
} | File | null>;
|
|
7708
|
-
/** The date and time when support article was created, RFC 3339 format */
|
|
7709
|
-
created_at: string;
|
|
7710
|
-
/** A unique support article identifier */
|
|
7711
|
-
id: string;
|
|
7712
|
-
/** Article rating from 0 to 100 */
|
|
7713
|
-
rating: number;
|
|
7714
|
-
revisions: Array<SupportArticleRevision>;
|
|
7715
|
-
/** The date and time when support article was last updated, RFC 3339 format */
|
|
7716
|
-
updated_at: string;
|
|
7717
|
-
/** Was your vote positive or negative */
|
|
7718
|
-
vote: boolean;
|
|
7719
|
-
/** Whether you voted or not */
|
|
7720
|
-
voted: boolean;
|
|
7721
|
-
}
|
|
7722
|
-
export interface SupportArticleExpandableItems {
|
|
7723
|
-
/** Generic array of expandable items */
|
|
7724
|
-
items: Array<{
|
|
7725
|
-
id: string;
|
|
7726
|
-
} | SupportArticle | null>;
|
|
7727
|
-
}
|
|
7728
|
-
export type SupportArticleFilterType = "any" | "draft" | "internal" | "public";
|
|
7729
|
-
export interface SupportArticlePage {
|
|
7730
|
-
/** Total number of items in the collection */
|
|
7731
|
-
count: number;
|
|
7732
|
-
items: Array<SupportArticle>;
|
|
7733
|
-
/** Key of the last item for keyset based iteration */
|
|
7734
|
-
last_key: string;
|
|
7735
|
-
}
|
|
7736
|
-
export interface SupportArticleRevision {
|
|
7737
|
-
/** The date and time when support article revision was created, RFC 3339 format */
|
|
7738
|
-
created_at: string;
|
|
7739
|
-
/** Whether support article is internal or not */
|
|
7740
|
-
internal: boolean;
|
|
7741
|
-
keywords: Array<string>;
|
|
7742
|
-
/** 2-letter language code */
|
|
7743
|
-
language: string;
|
|
7744
|
-
/** Meta description for SEO purposes */
|
|
7745
|
-
meta_description: string;
|
|
7746
|
-
/** SEO-friendly title of the content block */
|
|
7747
|
-
meta_title: string;
|
|
7748
|
-
/** Whether server thinks support article is published or not (depends on server time) */
|
|
7749
|
-
published: boolean;
|
|
7750
|
-
/** The date and time when support article was published or null */
|
|
7751
|
-
published_at: string | null;
|
|
7752
|
-
/** Raw content of the support article */
|
|
7753
|
-
raw_content: string;
|
|
7754
|
-
/** Articles related to this article */
|
|
7755
|
-
related_articles: Array<{
|
|
7756
|
-
id: string;
|
|
7757
|
-
} | SupportArticle | null>;
|
|
7758
|
-
/** Topic of this revision */
|
|
7759
|
-
support_topic?: {
|
|
7760
|
-
id: string;
|
|
7761
|
-
} | SupportTopic | null;
|
|
7762
|
-
/** Title of the support article */
|
|
7763
|
-
title: string;
|
|
7764
|
-
/** The date and time when support article revision was last bumped, RFC 3339 format */
|
|
7765
|
-
used_at: string;
|
|
7766
|
-
/** Author of this revision */
|
|
7767
|
-
user?: {
|
|
7768
|
-
id: string;
|
|
7769
|
-
} | User | null;
|
|
7770
|
-
}
|
|
7771
|
-
export type SupportArticlesPageSortBy = "created_at" | "updated_at";
|
|
7772
|
-
export interface SupportTopic {
|
|
7773
|
-
/** The date and time when support topic was created, RFC 3339 format */
|
|
7774
|
-
created_at: string;
|
|
7775
|
-
/** A unique support topic identifier */
|
|
7776
|
-
id: string;
|
|
7777
|
-
/** Support topic title */
|
|
7778
|
-
title: string;
|
|
7779
|
-
/** The date and time when support topic was last updated, RFC 3339 format */
|
|
7780
|
-
updated_at: string;
|
|
7781
|
-
}
|
|
7782
7633
|
export interface SurveyQuestion {
|
|
7783
7634
|
/** A set of possible survey question answers (for predefined kind) */
|
|
7784
7635
|
answers: Array<string>;
|
|
@@ -9022,21 +8873,6 @@ export interface AuditLogPageExpansionMap {
|
|
|
9022
8873
|
"items.geo_region_info"?: true;
|
|
9023
8874
|
"items.user"?: true | UserExpansionMap;
|
|
9024
8875
|
}
|
|
9025
|
-
export interface BlogExpansionMap {
|
|
9026
|
-
content_image_files?: true | FileExpansionMap;
|
|
9027
|
-
"revisions.blog_topic"?: true;
|
|
9028
|
-
"revisions.image_files"?: true | FileExpansionMap;
|
|
9029
|
-
"revisions.user"?: true | UserExpansionMap;
|
|
9030
|
-
}
|
|
9031
|
-
export interface BlogExpandableItemsExpansionMap {
|
|
9032
|
-
items?: true | BlogExpansionMap;
|
|
9033
|
-
}
|
|
9034
|
-
export interface BlogPageExpansionMap {
|
|
9035
|
-
"items.content_image_files"?: true | FileExpansionMap;
|
|
9036
|
-
"items.revisions.blog_topic"?: true;
|
|
9037
|
-
"items.revisions.image_files"?: true | FileExpansionMap;
|
|
9038
|
-
"items.revisions.user"?: true | UserExpansionMap;
|
|
9039
|
-
}
|
|
9040
8876
|
export interface BrandExpansionMap {
|
|
9041
8877
|
content_image_files?: true | FileExpansionMap;
|
|
9042
8878
|
"custom_field_objects.brands"?: true | BrandExpansionMap;
|
|
@@ -9634,21 +9470,6 @@ export interface SupplierPageExpansionMap {
|
|
|
9634
9470
|
export interface SupplierSearchResultExpansionMap {
|
|
9635
9471
|
items?: true | SupplierExpansionMap;
|
|
9636
9472
|
}
|
|
9637
|
-
export interface SupportArticleExpansionMap {
|
|
9638
|
-
content_image_files?: true | FileExpansionMap;
|
|
9639
|
-
"revisions.related_articles"?: true | SupportArticleExpansionMap;
|
|
9640
|
-
"revisions.support_topic"?: true;
|
|
9641
|
-
"revisions.user"?: true | UserExpansionMap;
|
|
9642
|
-
}
|
|
9643
|
-
export interface SupportArticleExpandableItemsExpansionMap {
|
|
9644
|
-
items?: true | SupportArticleExpansionMap;
|
|
9645
|
-
}
|
|
9646
|
-
export interface SupportArticlePageExpansionMap {
|
|
9647
|
-
"items.content_image_files"?: true | FileExpansionMap;
|
|
9648
|
-
"items.revisions.related_articles"?: true | SupportArticleExpansionMap;
|
|
9649
|
-
"items.revisions.support_topic"?: true;
|
|
9650
|
-
"items.revisions.user"?: true | UserExpansionMap;
|
|
9651
|
-
}
|
|
9652
9473
|
export interface TaxRuleExpansionMap {
|
|
9653
9474
|
"zones.country"?: true;
|
|
9654
9475
|
"zones.province"?: true;
|
|
@@ -9855,34 +9676,6 @@ export interface EndpointAuthRefresh extends Endpoint<EndpointAuthRefresh, Token
|
|
|
9855
9676
|
data(v: Token): EndpointAuthRefresh;
|
|
9856
9677
|
extract(v: Extractor<TokenAndUserID>): EndpointAuthRefresh;
|
|
9857
9678
|
}
|
|
9858
|
-
export interface EndpointBlogs extends Endpoint<EndpointBlogs, Array<Blog>> {
|
|
9859
|
-
/** Output filtering */
|
|
9860
|
-
fields(v: Array<string>): EndpointBlogs;
|
|
9861
|
-
/** List of blog ids. See also: [Unique Identifiers](/overview/concepts/unique-identifiers) */
|
|
9862
|
-
ids(v: Array<string>): EndpointBlogs;
|
|
9863
|
-
/** When asking for multiple items, allow returning less than was asked (in case some are missing) */
|
|
9864
|
-
loose(v: boolean): EndpointBlogs;
|
|
9865
|
-
expand(v: BlogExpansionMap): EndpointBlogs;
|
|
9866
|
-
extract(v: Extractor<Array<Blog>>): EndpointBlogs;
|
|
9867
|
-
}
|
|
9868
|
-
export interface EndpointBlogsPage extends Endpoint<EndpointBlogsPage, BlogPage> {
|
|
9869
|
-
/** Output filtering */
|
|
9870
|
-
fields(v: Array<string>): EndpointBlogsPage;
|
|
9871
|
-
/** Key of the last item from previous page. See also: [Pagination](/overview/concepts/pagination) */
|
|
9872
|
-
last_key(v: string): EndpointBlogsPage;
|
|
9873
|
-
/** Return up to N entries (pagination). See also: [Pagination](/overview/concepts/pagination) */
|
|
9874
|
-
limit(v: number): EndpointBlogsPage;
|
|
9875
|
-
/** Skip N entries (pagination). See also: [Pagination](/overview/concepts/pagination) */
|
|
9876
|
-
offset(v: number): EndpointBlogsPage;
|
|
9877
|
-
/** Whether to sort output in some specific way. See also: [Pagination](/overview/concepts/pagination) */
|
|
9878
|
-
sort_by(v: BlogsPageSortBy): EndpointBlogsPage;
|
|
9879
|
-
/** Whether to use descending sort order. See also: [Pagination](/overview/concepts/pagination) */
|
|
9880
|
-
sort_desc(v: boolean): EndpointBlogsPage;
|
|
9881
|
-
/** Filter blogs output by a type */
|
|
9882
|
-
type(v: BlogFilterType): EndpointBlogsPage;
|
|
9883
|
-
expand(v: BlogPageExpansionMap): EndpointBlogsPage;
|
|
9884
|
-
extract(v: Extractor<BlogPage>): EndpointBlogsPage;
|
|
9885
|
-
}
|
|
9886
9679
|
export interface EndpointBranding extends Endpoint<EndpointBranding, Branding> {
|
|
9887
9680
|
/** Output filtering */
|
|
9888
9681
|
fields(v: Array<string>): EndpointBranding;
|
|
@@ -13989,11 +13782,6 @@ export interface EndpointSubscriptionsSkipNext extends Endpoint<EndpointSubscrip
|
|
|
13989
13782
|
expand(v: SubscriptionExpansionMap): EndpointSubscriptionsSkipNext;
|
|
13990
13783
|
extract(v: Extractor<Subscription>): EndpointSubscriptionsSkipNext;
|
|
13991
13784
|
}
|
|
13992
|
-
export interface EndpointSuggestBlogs extends Endpoint<EndpointSuggestBlogs, BlogExpandableItems> {
|
|
13993
|
-
data(v: Query): EndpointSuggestBlogs;
|
|
13994
|
-
expand(v: BlogExpandableItemsExpansionMap): EndpointSuggestBlogs;
|
|
13995
|
-
extract(v: Extractor<BlogExpandableItems>): EndpointSuggestBlogs;
|
|
13996
|
-
}
|
|
13997
13785
|
export interface EndpointSuggestBrands extends Endpoint<EndpointSuggestBrands, BrandExpandableItems> {
|
|
13998
13786
|
/** Unique shop identifier. See also: [Unique Identifiers](/overview/concepts/unique-identifiers) */
|
|
13999
13787
|
shop_id(v: string): EndpointSuggestBrands;
|
|
@@ -14098,11 +13886,6 @@ export interface EndpointSuggestSuppliers extends Endpoint<EndpointSuggestSuppli
|
|
|
14098
13886
|
expand(v: SupplierExpandableItemsExpansionMap): EndpointSuggestSuppliers;
|
|
14099
13887
|
extract(v: Extractor<SupplierExpandableItems>): EndpointSuggestSuppliers;
|
|
14100
13888
|
}
|
|
14101
|
-
export interface EndpointSuggestSupportArticles extends Endpoint<EndpointSuggestSupportArticles, SupportArticleExpandableItems> {
|
|
14102
|
-
data(v: Query): EndpointSuggestSupportArticles;
|
|
14103
|
-
expand(v: SupportArticleExpandableItemsExpansionMap): EndpointSuggestSupportArticles;
|
|
14104
|
-
extract(v: Extractor<SupportArticleExpandableItems>): EndpointSuggestSupportArticles;
|
|
14105
|
-
}
|
|
14106
13889
|
export interface EndpointSuggestTransfers extends Endpoint<EndpointSuggestTransfers, TransferExpandableItems> {
|
|
14107
13890
|
/** Unique shop identifier. See also: [Unique Identifiers](/overview/concepts/unique-identifiers) */
|
|
14108
13891
|
shop_id(v: string): EndpointSuggestTransfers;
|
|
@@ -14180,40 +13963,6 @@ export interface EndpointSuppliersPage extends Endpoint<EndpointSuppliersPage, S
|
|
|
14180
13963
|
expand(v: SupplierPageExpansionMap): EndpointSuppliersPage;
|
|
14181
13964
|
extract(v: Extractor<SupplierPage>): EndpointSuppliersPage;
|
|
14182
13965
|
}
|
|
14183
|
-
export interface EndpointSupportArticles extends Endpoint<EndpointSupportArticles, Array<SupportArticle>> {
|
|
14184
|
-
/** Output filtering */
|
|
14185
|
-
fields(v: Array<string>): EndpointSupportArticles;
|
|
14186
|
-
/** List of support article ids. See also: [Unique Identifiers](/overview/concepts/unique-identifiers) */
|
|
14187
|
-
ids(v: Array<string>): EndpointSupportArticles;
|
|
14188
|
-
/** When asking for multiple items, allow returning less than was asked (in case some are missing) */
|
|
14189
|
-
loose(v: boolean): EndpointSupportArticles;
|
|
14190
|
-
expand(v: SupportArticleExpansionMap): EndpointSupportArticles;
|
|
14191
|
-
extract(v: Extractor<Array<SupportArticle>>): EndpointSupportArticles;
|
|
14192
|
-
}
|
|
14193
|
-
export interface EndpointSupportArticlesPage extends Endpoint<EndpointSupportArticlesPage, SupportArticlePage> {
|
|
14194
|
-
/** Output filtering */
|
|
14195
|
-
fields(v: Array<string>): EndpointSupportArticlesPage;
|
|
14196
|
-
/** Key of the last item from previous page. See also: [Pagination](/overview/concepts/pagination) */
|
|
14197
|
-
last_key(v: string): EndpointSupportArticlesPage;
|
|
14198
|
-
/** Return up to N entries (pagination). See also: [Pagination](/overview/concepts/pagination) */
|
|
14199
|
-
limit(v: number): EndpointSupportArticlesPage;
|
|
14200
|
-
/** Skip N entries (pagination). See also: [Pagination](/overview/concepts/pagination) */
|
|
14201
|
-
offset(v: number): EndpointSupportArticlesPage;
|
|
14202
|
-
/** Whether to sort output in some specific way. See also: [Pagination](/overview/concepts/pagination) */
|
|
14203
|
-
sort_by(v: SupportArticlesPageSortBy): EndpointSupportArticlesPage;
|
|
14204
|
-
/** Whether to use descending sort order. See also: [Pagination](/overview/concepts/pagination) */
|
|
14205
|
-
sort_desc(v: boolean): EndpointSupportArticlesPage;
|
|
14206
|
-
/** Filter support articles output by a type */
|
|
14207
|
-
type(v: SupportArticleFilterType): EndpointSupportArticlesPage;
|
|
14208
|
-
expand(v: SupportArticlePageExpansionMap): EndpointSupportArticlesPage;
|
|
14209
|
-
extract(v: Extractor<SupportArticlePage>): EndpointSupportArticlesPage;
|
|
14210
|
-
}
|
|
14211
|
-
export interface EndpointSupportArticlesVote extends Endpoint<EndpointSupportArticlesVote, void> {
|
|
14212
|
-
/** Unique support article identifier. See also: [Unique Identifiers](/overview/concepts/unique-identifiers) */
|
|
14213
|
-
support_article_id(v: string): EndpointSupportArticlesVote;
|
|
14214
|
-
/** Should be "yes" or "no" */
|
|
14215
|
-
vote(v: string): EndpointSupportArticlesVote;
|
|
14216
|
-
}
|
|
14217
13966
|
export interface EndpointSurveyQuestionsDelete extends Endpoint<EndpointSurveyQuestionsDelete, void> {
|
|
14218
13967
|
/** List of survey question ids. See also: [Unique Identifiers](/overview/concepts/unique-identifiers) */
|
|
14219
13968
|
ids(v: Array<string>): EndpointSurveyQuestionsDelete;
|
|
@@ -14931,8 +14680,6 @@ export interface ReqFunction {
|
|
|
14931
14680
|
(ctx: Context, v: "POST:auth/password/reset.json"): EndpointAuthPasswordReset;
|
|
14932
14681
|
(ctx: Context, v: "POST:auth/password/verify.json"): EndpointAuthPasswordVerify;
|
|
14933
14682
|
(ctx: Context, v: "POST:auth/refresh.json"): EndpointAuthRefresh;
|
|
14934
|
-
(ctx: Context, v: "GET:blogs.json"): EndpointBlogs;
|
|
14935
|
-
(ctx: Context, v: "GET:blogs/page.json"): EndpointBlogsPage;
|
|
14936
14683
|
(ctx: Context, v: "GET:branding.json"): EndpointBranding;
|
|
14937
14684
|
(ctx: Context, v: "POST:branding.json"): EndpointBrandingCreate;
|
|
14938
14685
|
(ctx: Context, v: "GET:branding/default.json"): EndpointBrandingDefault;
|
|
@@ -15293,7 +15040,6 @@ export interface ReqFunction {
|
|
|
15293
15040
|
(ctx: Context, v: "POST:subscriptions/pause.json"): EndpointSubscriptionsPause;
|
|
15294
15041
|
(ctx: Context, v: "POST:subscriptions/resume.json"): EndpointSubscriptionsResume;
|
|
15295
15042
|
(ctx: Context, v: "POST:subscriptions/skip_next.json"): EndpointSubscriptionsSkipNext;
|
|
15296
|
-
(ctx: Context, v: "POST:suggest/blogs.json"): EndpointSuggestBlogs;
|
|
15297
15043
|
(ctx: Context, v: "POST:suggest/brands.json"): EndpointSuggestBrands;
|
|
15298
15044
|
(ctx: Context, v: "POST:suggest/categories.json"): EndpointSuggestCategories;
|
|
15299
15045
|
(ctx: Context, v: "POST:suggest/content_blocks.json"): EndpointSuggestContentBlocks;
|
|
@@ -15308,7 +15054,6 @@ export interface ReqFunction {
|
|
|
15308
15054
|
(ctx: Context, v: "POST:suggest/reviews.json"): EndpointSuggestReviews;
|
|
15309
15055
|
(ctx: Context, v: "POST:suggest/subscriptions.json"): EndpointSuggestSubscriptions;
|
|
15310
15056
|
(ctx: Context, v: "POST:suggest/suppliers.json"): EndpointSuggestSuppliers;
|
|
15311
|
-
(ctx: Context, v: "POST:suggest/support_articles.json"): EndpointSuggestSupportArticles;
|
|
15312
15057
|
(ctx: Context, v: "POST:suggest/transfers.json"): EndpointSuggestTransfers;
|
|
15313
15058
|
(ctx: Context, v: "DELETE:suppliers.json"): EndpointSuppliersDelete;
|
|
15314
15059
|
(ctx: Context, v: "GET:suppliers.json"): EndpointSuppliers;
|
|
@@ -15316,9 +15061,6 @@ export interface ReqFunction {
|
|
|
15316
15061
|
(ctx: Context, v: "POST:suppliers/export.json"): EndpointSuppliersExport;
|
|
15317
15062
|
(ctx: Context, v: "POST:suppliers/import.json"): EndpointSuppliersImport;
|
|
15318
15063
|
(ctx: Context, v: "GET:suppliers/page.json"): EndpointSuppliersPage;
|
|
15319
|
-
(ctx: Context, v: "GET:support_articles.json"): EndpointSupportArticles;
|
|
15320
|
-
(ctx: Context, v: "GET:support_articles/page.json"): EndpointSupportArticlesPage;
|
|
15321
|
-
(ctx: Context, v: "POST:support_articles/vote.json"): EndpointSupportArticlesVote;
|
|
15322
15064
|
(ctx: Context, v: "DELETE:survey_questions.json"): EndpointSurveyQuestionsDelete;
|
|
15323
15065
|
(ctx: Context, v: "GET:survey_questions.json"): EndpointSurveyQuestions;
|
|
15324
15066
|
(ctx: Context, v: "POST:survey_questions.json"): EndpointSurveyQuestionsCreate;
|