@wix/multilingual 1.0.21 → 1.0.23
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/build/cjs/context.d.ts +1 -0
- package/build/cjs/context.js +2 -1
- package/build/cjs/context.js.map +1 -1
- package/build/cjs/index.d.ts +1 -0
- package/build/cjs/index.js +2 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -0
- package/build/cjs/meta.js +2 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/context.d.ts +1 -0
- package/build/es/context.js +1 -0
- package/build/es/context.js.map +1 -1
- package/build/es/index.d.ts +1 -0
- package/build/es/index.js +1 -0
- package/build/es/index.js.map +1 -1
- package/build/es/meta.d.ts +1 -0
- package/build/es/meta.js +1 -0
- package/build/es/meta.js.map +1 -1
- package/package.json +4 -3
- package/type-bundles/context.bundle.d.ts +695 -139
- package/type-bundles/index.bundle.d.ts +695 -139
- package/type-bundles/meta.bundle.d.ts +197 -40
|
@@ -1,3 +1,42 @@
|
|
|
1
|
+
interface SyncEditorDataRequest$1 {
|
|
2
|
+
/** an optional filter for syncing the content */
|
|
3
|
+
syncFilter?: SyncFilter$1;
|
|
4
|
+
}
|
|
5
|
+
interface SyncFilter$1 {
|
|
6
|
+
/** content IETF BCP 47 language tag */
|
|
7
|
+
languageTag?: string;
|
|
8
|
+
}
|
|
9
|
+
interface SyncEditorDataResponse$1 {
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
interface SyncEditorDataRequest {
|
|
13
|
+
/** an optional filter for syncing the content */
|
|
14
|
+
syncFilter?: SyncFilter;
|
|
15
|
+
}
|
|
16
|
+
interface SyncFilter {
|
|
17
|
+
/** content IETF BCP 47 language tag */
|
|
18
|
+
languageTag?: string;
|
|
19
|
+
}
|
|
20
|
+
interface SyncEditorDataResponse {
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
type __PublicMethodMetaInfo$4<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
24
|
+
getUrl: (context: any) => string;
|
|
25
|
+
httpMethod: K;
|
|
26
|
+
path: string;
|
|
27
|
+
pathParams: M;
|
|
28
|
+
__requestType: T;
|
|
29
|
+
__originalRequestType: S;
|
|
30
|
+
__responseType: Q;
|
|
31
|
+
__originalResponseType: R;
|
|
32
|
+
};
|
|
33
|
+
declare function syncEditorData(): __PublicMethodMetaInfo$4<'GET', {}, SyncEditorDataRequest, SyncEditorDataRequest$1, SyncEditorDataResponse, SyncEditorDataResponse$1>;
|
|
34
|
+
|
|
35
|
+
declare const meta$4_syncEditorData: typeof syncEditorData;
|
|
36
|
+
declare namespace meta$4 {
|
|
37
|
+
export { type __PublicMethodMetaInfo$4 as __PublicMethodMetaInfo, meta$4_syncEditorData as syncEditorData };
|
|
38
|
+
}
|
|
39
|
+
|
|
1
40
|
/**
|
|
2
41
|
* A translatable content is a unit of content to translate.
|
|
3
42
|
*
|
|
@@ -5752,6 +5791,14 @@ interface UpdateContentResponse$1 {
|
|
|
5752
5791
|
/** Updated Content. */
|
|
5753
5792
|
content?: Content$1;
|
|
5754
5793
|
}
|
|
5794
|
+
interface UpdateContentByKeyRequest$1 {
|
|
5795
|
+
/** Content to be updated, may be partial. */
|
|
5796
|
+
content: Content$1;
|
|
5797
|
+
}
|
|
5798
|
+
interface UpdateContentByKeyResponse$1 {
|
|
5799
|
+
/** Updated Content. */
|
|
5800
|
+
content?: Content$1;
|
|
5801
|
+
}
|
|
5755
5802
|
interface DeleteContentRequest$1 {
|
|
5756
5803
|
/** Id of the Content to delete. */
|
|
5757
5804
|
contentId: string;
|
|
@@ -5763,26 +5810,32 @@ interface QueryContentsRequest$1 {
|
|
|
5763
5810
|
query?: CursorQuery$3;
|
|
5764
5811
|
}
|
|
5765
5812
|
interface CursorQuery$3 extends CursorQueryPagingMethodOneOf$3 {
|
|
5766
|
-
/**
|
|
5813
|
+
/**
|
|
5814
|
+
* Cursor paging options.
|
|
5815
|
+
*
|
|
5816
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
5817
|
+
*/
|
|
5767
5818
|
cursorPaging?: CursorPaging$3;
|
|
5768
5819
|
/**
|
|
5769
|
-
* Filter object
|
|
5770
|
-
*
|
|
5771
|
-
*
|
|
5772
|
-
* "fieldName2":{"$operator":"value2"}
|
|
5773
|
-
* }`
|
|
5774
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
5820
|
+
* Filter object.
|
|
5821
|
+
*
|
|
5822
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
5775
5823
|
*/
|
|
5776
5824
|
filter?: Record<string, any> | null;
|
|
5777
5825
|
/**
|
|
5778
|
-
* Sort object
|
|
5779
|
-
*
|
|
5826
|
+
* Sort object.
|
|
5827
|
+
*
|
|
5828
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
5780
5829
|
*/
|
|
5781
5830
|
sort?: Sorting$3[];
|
|
5782
5831
|
}
|
|
5783
5832
|
/** @oneof */
|
|
5784
5833
|
interface CursorQueryPagingMethodOneOf$3 {
|
|
5785
|
-
/**
|
|
5834
|
+
/**
|
|
5835
|
+
* Cursor paging options.
|
|
5836
|
+
*
|
|
5837
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
5838
|
+
*/
|
|
5786
5839
|
cursorPaging?: CursorPaging$3;
|
|
5787
5840
|
}
|
|
5788
5841
|
interface Sorting$3 {
|
|
@@ -5836,17 +5889,26 @@ interface SearchContentsRequest$1 {
|
|
|
5836
5889
|
}
|
|
5837
5890
|
interface CursorSearch$1 extends CursorSearchPagingMethodOneOf$1 {
|
|
5838
5891
|
/**
|
|
5839
|
-
* Cursor
|
|
5840
|
-
*
|
|
5892
|
+
* Cursor paging options.
|
|
5893
|
+
*
|
|
5894
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
5841
5895
|
*/
|
|
5842
5896
|
cursorPaging?: CursorPaging$3;
|
|
5843
|
-
/**
|
|
5897
|
+
/**
|
|
5898
|
+
* Filter object.
|
|
5899
|
+
*
|
|
5900
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
5901
|
+
*/
|
|
5844
5902
|
filter?: Record<string, any> | null;
|
|
5845
|
-
/**
|
|
5903
|
+
/**
|
|
5904
|
+
* List of sort objects.
|
|
5905
|
+
*
|
|
5906
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
5907
|
+
*/
|
|
5846
5908
|
sort?: Sorting$3[];
|
|
5847
5909
|
/** Aggregations | Faceted search: refers to a way to explore large amounts of data by displaying summaries about various partitions of the data and later allowing to narrow the navigation to a specific partition. */
|
|
5848
5910
|
aggregations?: Aggregation$1[];
|
|
5849
|
-
/** Free text to match in searchable fields */
|
|
5911
|
+
/** Free text to match in searchable fields. */
|
|
5850
5912
|
search?: SearchDetails$1;
|
|
5851
5913
|
/**
|
|
5852
5914
|
* UTC offset or IANA time zone. Valid values are
|
|
@@ -5862,8 +5924,9 @@ interface CursorSearch$1 extends CursorSearchPagingMethodOneOf$1 {
|
|
|
5862
5924
|
/** @oneof */
|
|
5863
5925
|
interface CursorSearchPagingMethodOneOf$1 {
|
|
5864
5926
|
/**
|
|
5865
|
-
* Cursor
|
|
5866
|
-
*
|
|
5927
|
+
* Cursor paging options.
|
|
5928
|
+
*
|
|
5929
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
5867
5930
|
*/
|
|
5868
5931
|
cursorPaging?: CursorPaging$3;
|
|
5869
5932
|
}
|
|
@@ -6292,11 +6355,11 @@ interface BulkActionMetadata$1 {
|
|
|
6292
6355
|
}
|
|
6293
6356
|
interface BulkUpdateContentRequest$1 {
|
|
6294
6357
|
/** Contents to be updated. TODO: think again if we want to increase maxSize */
|
|
6295
|
-
contents:
|
|
6358
|
+
contents: BulkUpdateContentRequestMaskedContent$1[];
|
|
6296
6359
|
/** set to `true` if you wish to receive back the created contents in the response */
|
|
6297
6360
|
returnEntity?: boolean;
|
|
6298
6361
|
}
|
|
6299
|
-
interface
|
|
6362
|
+
interface BulkUpdateContentRequestMaskedContent$1 {
|
|
6300
6363
|
/** Content to be updated, may be partial */
|
|
6301
6364
|
content?: Content$1;
|
|
6302
6365
|
}
|
|
@@ -6312,6 +6375,28 @@ interface BulkUpdateContentResponseBulkContentResult$1 {
|
|
|
6312
6375
|
/** Only exists if `returnEntity` was set to true in the request */
|
|
6313
6376
|
item?: Content$1;
|
|
6314
6377
|
}
|
|
6378
|
+
interface BulkUpdateContentByKeyRequest$1 {
|
|
6379
|
+
/** Contents to be updated. TODO: think again if we want to increase maxSize */
|
|
6380
|
+
contents: MaskedContent$1[];
|
|
6381
|
+
/** set to `true` if you wish to receive back the created contents in the response */
|
|
6382
|
+
returnEntity?: boolean;
|
|
6383
|
+
}
|
|
6384
|
+
interface MaskedContent$1 {
|
|
6385
|
+
/** Content to be updated, may be partial */
|
|
6386
|
+
content?: Content$1;
|
|
6387
|
+
}
|
|
6388
|
+
interface BulkUpdateContentByKeyResponse$1 {
|
|
6389
|
+
/** List of results */
|
|
6390
|
+
results?: BulkUpdateContentByKeyResponseBulkContentResult$1[];
|
|
6391
|
+
/** metadata */
|
|
6392
|
+
bulkActionMetadata?: BulkActionMetadata$1;
|
|
6393
|
+
}
|
|
6394
|
+
interface BulkUpdateContentByKeyResponseBulkContentResult$1 {
|
|
6395
|
+
/** metadata */
|
|
6396
|
+
itemMetadata?: ItemMetadata$1;
|
|
6397
|
+
/** Only exists if `returnEntity` was set to true in the request */
|
|
6398
|
+
item?: Content$1;
|
|
6399
|
+
}
|
|
6315
6400
|
interface BulkDeleteContentRequest$1 {
|
|
6316
6401
|
/** Content ids to be deleted. TODO: think again if we want to increase maxSize */
|
|
6317
6402
|
contentIds: string[];
|
|
@@ -6341,6 +6426,9 @@ interface GetContentResponseNonNullableFields$1 {
|
|
|
6341
6426
|
interface UpdateContentResponseNonNullableFields$1 {
|
|
6342
6427
|
content?: ContentNonNullableFields$1;
|
|
6343
6428
|
}
|
|
6429
|
+
interface UpdateContentByKeyResponseNonNullableFields$1 {
|
|
6430
|
+
content?: ContentNonNullableFields$1;
|
|
6431
|
+
}
|
|
6344
6432
|
interface QueryContentsResponseNonNullableFields$1 {
|
|
6345
6433
|
contents: ContentNonNullableFields$1[];
|
|
6346
6434
|
}
|
|
@@ -6430,6 +6518,14 @@ interface BulkUpdateContentResponseNonNullableFields$1 {
|
|
|
6430
6518
|
results: BulkUpdateContentResponseBulkContentResultNonNullableFields$1[];
|
|
6431
6519
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
6432
6520
|
}
|
|
6521
|
+
interface BulkUpdateContentByKeyResponseBulkContentResultNonNullableFields$1 {
|
|
6522
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
6523
|
+
item?: ContentNonNullableFields$1;
|
|
6524
|
+
}
|
|
6525
|
+
interface BulkUpdateContentByKeyResponseNonNullableFields$1 {
|
|
6526
|
+
results: BulkUpdateContentByKeyResponseBulkContentResultNonNullableFields$1[];
|
|
6527
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
6528
|
+
}
|
|
6433
6529
|
interface BulkDeleteContentResponseBulkContentResultNonNullableFields$1 {
|
|
6434
6530
|
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
6435
6531
|
}
|
|
@@ -7765,6 +7861,14 @@ interface UpdateContentResponse {
|
|
|
7765
7861
|
/** Updated Content. */
|
|
7766
7862
|
content?: Content;
|
|
7767
7863
|
}
|
|
7864
|
+
interface UpdateContentByKeyRequest {
|
|
7865
|
+
/** Content to be updated, may be partial. */
|
|
7866
|
+
content: Content;
|
|
7867
|
+
}
|
|
7868
|
+
interface UpdateContentByKeyResponse {
|
|
7869
|
+
/** Updated Content. */
|
|
7870
|
+
content?: Content;
|
|
7871
|
+
}
|
|
7768
7872
|
interface DeleteContentRequest {
|
|
7769
7873
|
/** Id of the Content to delete. */
|
|
7770
7874
|
contentId: string;
|
|
@@ -7776,26 +7880,32 @@ interface QueryContentsRequest {
|
|
|
7776
7880
|
query?: CursorQuery$2;
|
|
7777
7881
|
}
|
|
7778
7882
|
interface CursorQuery$2 extends CursorQueryPagingMethodOneOf$2 {
|
|
7779
|
-
/**
|
|
7883
|
+
/**
|
|
7884
|
+
* Cursor paging options.
|
|
7885
|
+
*
|
|
7886
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
7887
|
+
*/
|
|
7780
7888
|
cursorPaging?: CursorPaging$2;
|
|
7781
7889
|
/**
|
|
7782
|
-
* Filter object
|
|
7783
|
-
*
|
|
7784
|
-
*
|
|
7785
|
-
* "fieldName2":{"$operator":"value2"}
|
|
7786
|
-
* }`
|
|
7787
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
7890
|
+
* Filter object.
|
|
7891
|
+
*
|
|
7892
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
7788
7893
|
*/
|
|
7789
7894
|
filter?: Record<string, any> | null;
|
|
7790
7895
|
/**
|
|
7791
|
-
* Sort object
|
|
7792
|
-
*
|
|
7896
|
+
* Sort object.
|
|
7897
|
+
*
|
|
7898
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
7793
7899
|
*/
|
|
7794
7900
|
sort?: Sorting$2[];
|
|
7795
7901
|
}
|
|
7796
7902
|
/** @oneof */
|
|
7797
7903
|
interface CursorQueryPagingMethodOneOf$2 {
|
|
7798
|
-
/**
|
|
7904
|
+
/**
|
|
7905
|
+
* Cursor paging options.
|
|
7906
|
+
*
|
|
7907
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
7908
|
+
*/
|
|
7799
7909
|
cursorPaging?: CursorPaging$2;
|
|
7800
7910
|
}
|
|
7801
7911
|
interface Sorting$2 {
|
|
@@ -7849,17 +7959,26 @@ interface SearchContentsRequest {
|
|
|
7849
7959
|
}
|
|
7850
7960
|
interface CursorSearch extends CursorSearchPagingMethodOneOf {
|
|
7851
7961
|
/**
|
|
7852
|
-
* Cursor
|
|
7853
|
-
*
|
|
7962
|
+
* Cursor paging options.
|
|
7963
|
+
*
|
|
7964
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
7854
7965
|
*/
|
|
7855
7966
|
cursorPaging?: CursorPaging$2;
|
|
7856
|
-
/**
|
|
7967
|
+
/**
|
|
7968
|
+
* Filter object.
|
|
7969
|
+
*
|
|
7970
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
7971
|
+
*/
|
|
7857
7972
|
filter?: Record<string, any> | null;
|
|
7858
|
-
/**
|
|
7973
|
+
/**
|
|
7974
|
+
* List of sort objects.
|
|
7975
|
+
*
|
|
7976
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
7977
|
+
*/
|
|
7859
7978
|
sort?: Sorting$2[];
|
|
7860
7979
|
/** Aggregations | Faceted search: refers to a way to explore large amounts of data by displaying summaries about various partitions of the data and later allowing to narrow the navigation to a specific partition. */
|
|
7861
7980
|
aggregations?: Aggregation[];
|
|
7862
|
-
/** Free text to match in searchable fields */
|
|
7981
|
+
/** Free text to match in searchable fields. */
|
|
7863
7982
|
search?: SearchDetails;
|
|
7864
7983
|
/**
|
|
7865
7984
|
* UTC offset or IANA time zone. Valid values are
|
|
@@ -7875,8 +7994,9 @@ interface CursorSearch extends CursorSearchPagingMethodOneOf {
|
|
|
7875
7994
|
/** @oneof */
|
|
7876
7995
|
interface CursorSearchPagingMethodOneOf {
|
|
7877
7996
|
/**
|
|
7878
|
-
* Cursor
|
|
7879
|
-
*
|
|
7997
|
+
* Cursor paging options.
|
|
7998
|
+
*
|
|
7999
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
7880
8000
|
*/
|
|
7881
8001
|
cursorPaging?: CursorPaging$2;
|
|
7882
8002
|
}
|
|
@@ -8305,11 +8425,11 @@ interface BulkActionMetadata {
|
|
|
8305
8425
|
}
|
|
8306
8426
|
interface BulkUpdateContentRequest {
|
|
8307
8427
|
/** Contents to be updated. TODO: think again if we want to increase maxSize */
|
|
8308
|
-
contents:
|
|
8428
|
+
contents: BulkUpdateContentRequestMaskedContent[];
|
|
8309
8429
|
/** set to `true` if you wish to receive back the created contents in the response */
|
|
8310
8430
|
returnEntity?: boolean;
|
|
8311
8431
|
}
|
|
8312
|
-
interface
|
|
8432
|
+
interface BulkUpdateContentRequestMaskedContent {
|
|
8313
8433
|
/** Content to be updated, may be partial */
|
|
8314
8434
|
content?: Content;
|
|
8315
8435
|
}
|
|
@@ -8325,6 +8445,28 @@ interface BulkUpdateContentResponseBulkContentResult {
|
|
|
8325
8445
|
/** Only exists if `returnEntity` was set to true in the request */
|
|
8326
8446
|
item?: Content;
|
|
8327
8447
|
}
|
|
8448
|
+
interface BulkUpdateContentByKeyRequest {
|
|
8449
|
+
/** Contents to be updated. TODO: think again if we want to increase maxSize */
|
|
8450
|
+
contents: MaskedContent[];
|
|
8451
|
+
/** set to `true` if you wish to receive back the created contents in the response */
|
|
8452
|
+
returnEntity?: boolean;
|
|
8453
|
+
}
|
|
8454
|
+
interface MaskedContent {
|
|
8455
|
+
/** Content to be updated, may be partial */
|
|
8456
|
+
content?: Content;
|
|
8457
|
+
}
|
|
8458
|
+
interface BulkUpdateContentByKeyResponse {
|
|
8459
|
+
/** List of results */
|
|
8460
|
+
results?: BulkUpdateContentByKeyResponseBulkContentResult[];
|
|
8461
|
+
/** metadata */
|
|
8462
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
8463
|
+
}
|
|
8464
|
+
interface BulkUpdateContentByKeyResponseBulkContentResult {
|
|
8465
|
+
/** metadata */
|
|
8466
|
+
itemMetadata?: ItemMetadata;
|
|
8467
|
+
/** Only exists if `returnEntity` was set to true in the request */
|
|
8468
|
+
item?: Content;
|
|
8469
|
+
}
|
|
8328
8470
|
interface BulkDeleteContentRequest {
|
|
8329
8471
|
/** Content ids to be deleted. TODO: think again if we want to increase maxSize */
|
|
8330
8472
|
contentIds: string[];
|
|
@@ -8354,6 +8496,9 @@ interface GetContentResponseNonNullableFields {
|
|
|
8354
8496
|
interface UpdateContentResponseNonNullableFields {
|
|
8355
8497
|
content?: ContentNonNullableFields;
|
|
8356
8498
|
}
|
|
8499
|
+
interface UpdateContentByKeyResponseNonNullableFields {
|
|
8500
|
+
content?: ContentNonNullableFields;
|
|
8501
|
+
}
|
|
8357
8502
|
interface QueryContentsResponseNonNullableFields {
|
|
8358
8503
|
contents: ContentNonNullableFields[];
|
|
8359
8504
|
}
|
|
@@ -8443,6 +8588,14 @@ interface BulkUpdateContentResponseNonNullableFields {
|
|
|
8443
8588
|
results: BulkUpdateContentResponseBulkContentResultNonNullableFields[];
|
|
8444
8589
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
8445
8590
|
}
|
|
8591
|
+
interface BulkUpdateContentByKeyResponseBulkContentResultNonNullableFields {
|
|
8592
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
8593
|
+
item?: ContentNonNullableFields;
|
|
8594
|
+
}
|
|
8595
|
+
interface BulkUpdateContentByKeyResponseNonNullableFields {
|
|
8596
|
+
results: BulkUpdateContentByKeyResponseBulkContentResultNonNullableFields[];
|
|
8597
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
8598
|
+
}
|
|
8446
8599
|
interface BulkDeleteContentResponseBulkContentResultNonNullableFields {
|
|
8447
8600
|
itemMetadata?: ItemMetadataNonNullableFields;
|
|
8448
8601
|
}
|
|
@@ -8466,6 +8619,7 @@ declare function getContent(): __PublicMethodMetaInfo$1<'GET', {
|
|
|
8466
8619
|
contentId: string;
|
|
8467
8620
|
}, GetContentRequest, GetContentRequest$1, GetContentResponse & GetContentResponseNonNullableFields, GetContentResponse$1 & GetContentResponseNonNullableFields$1>;
|
|
8468
8621
|
declare function updateContent(): __PublicMethodMetaInfo$1<'PATCH', {}, UpdateContentRequest, UpdateContentRequest$1, UpdateContentResponse & UpdateContentResponseNonNullableFields, UpdateContentResponse$1 & UpdateContentResponseNonNullableFields$1>;
|
|
8622
|
+
declare function updateContentByKey(): __PublicMethodMetaInfo$1<'PATCH', {}, UpdateContentByKeyRequest, UpdateContentByKeyRequest$1, UpdateContentByKeyResponse & UpdateContentByKeyResponseNonNullableFields, UpdateContentByKeyResponse$1 & UpdateContentByKeyResponseNonNullableFields$1>;
|
|
8469
8623
|
declare function deleteContent(): __PublicMethodMetaInfo$1<'DELETE', {
|
|
8470
8624
|
contentId: string;
|
|
8471
8625
|
}, DeleteContentRequest, DeleteContentRequest$1, DeleteContentResponse, DeleteContentResponse$1>;
|
|
@@ -8473,19 +8627,22 @@ declare function queryContents(): __PublicMethodMetaInfo$1<'POST', {}, QueryCont
|
|
|
8473
8627
|
declare function searchContents(): __PublicMethodMetaInfo$1<'POST', {}, SearchContentsRequest, SearchContentsRequest$1, SearchContentsResponse & SearchContentsResponseNonNullableFields, SearchContentsResponse$1 & SearchContentsResponseNonNullableFields$1>;
|
|
8474
8628
|
declare function bulkCreateContent(): __PublicMethodMetaInfo$1<'POST', {}, BulkCreateContentRequest, BulkCreateContentRequest$1, BulkCreateContentResponse & BulkCreateContentResponseNonNullableFields, BulkCreateContentResponse$1 & BulkCreateContentResponseNonNullableFields$1>;
|
|
8475
8629
|
declare function bulkUpdateContent(): __PublicMethodMetaInfo$1<'POST', {}, BulkUpdateContentRequest, BulkUpdateContentRequest$1, BulkUpdateContentResponse & BulkUpdateContentResponseNonNullableFields, BulkUpdateContentResponse$1 & BulkUpdateContentResponseNonNullableFields$1>;
|
|
8630
|
+
declare function bulkUpdateContentByKey(): __PublicMethodMetaInfo$1<'POST', {}, BulkUpdateContentByKeyRequest, BulkUpdateContentByKeyRequest$1, BulkUpdateContentByKeyResponse & BulkUpdateContentByKeyResponseNonNullableFields, BulkUpdateContentByKeyResponse$1 & BulkUpdateContentByKeyResponseNonNullableFields$1>;
|
|
8476
8631
|
declare function bulkDeleteContent(): __PublicMethodMetaInfo$1<'POST', {}, BulkDeleteContentRequest, BulkDeleteContentRequest$1, BulkDeleteContentResponse & BulkDeleteContentResponseNonNullableFields, BulkDeleteContentResponse$1 & BulkDeleteContentResponseNonNullableFields$1>;
|
|
8477
8632
|
|
|
8478
8633
|
declare const meta$1_bulkCreateContent: typeof bulkCreateContent;
|
|
8479
8634
|
declare const meta$1_bulkDeleteContent: typeof bulkDeleteContent;
|
|
8480
8635
|
declare const meta$1_bulkUpdateContent: typeof bulkUpdateContent;
|
|
8636
|
+
declare const meta$1_bulkUpdateContentByKey: typeof bulkUpdateContentByKey;
|
|
8481
8637
|
declare const meta$1_createContent: typeof createContent;
|
|
8482
8638
|
declare const meta$1_deleteContent: typeof deleteContent;
|
|
8483
8639
|
declare const meta$1_getContent: typeof getContent;
|
|
8484
8640
|
declare const meta$1_queryContents: typeof queryContents;
|
|
8485
8641
|
declare const meta$1_searchContents: typeof searchContents;
|
|
8486
8642
|
declare const meta$1_updateContent: typeof updateContent;
|
|
8643
|
+
declare const meta$1_updateContentByKey: typeof updateContentByKey;
|
|
8487
8644
|
declare namespace meta$1 {
|
|
8488
|
-
export { type __PublicMethodMetaInfo$1 as __PublicMethodMetaInfo, meta$1_bulkCreateContent as bulkCreateContent, meta$1_bulkDeleteContent as bulkDeleteContent, meta$1_bulkUpdateContent as bulkUpdateContent, meta$1_createContent as createContent, meta$1_deleteContent as deleteContent, meta$1_getContent as getContent, meta$1_queryContents as queryContents, meta$1_searchContents as searchContents, meta$1_updateContent as updateContent };
|
|
8645
|
+
export { type __PublicMethodMetaInfo$1 as __PublicMethodMetaInfo, meta$1_bulkCreateContent as bulkCreateContent, meta$1_bulkDeleteContent as bulkDeleteContent, meta$1_bulkUpdateContent as bulkUpdateContent, meta$1_bulkUpdateContentByKey as bulkUpdateContentByKey, meta$1_createContent as createContent, meta$1_deleteContent as deleteContent, meta$1_getContent as getContent, meta$1_queryContents as queryContents, meta$1_searchContents as searchContents, meta$1_updateContent as updateContent, meta$1_updateContentByKey as updateContentByKey };
|
|
8489
8646
|
}
|
|
8490
8647
|
|
|
8491
8648
|
interface Schema$1 {
|
|
@@ -8954,4 +9111,4 @@ declare namespace meta {
|
|
|
8954
9111
|
export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_getSchema as getSchema, meta_getSchemaByKey as getSchemaByKey, meta_listSiteSchemas as listSiteSchemas, meta_querySchemas as querySchemas };
|
|
8955
9112
|
}
|
|
8956
9113
|
|
|
8957
|
-
export { meta$3 as machineTranslation, meta$2 as siteTranslator, meta$1 as translationContents, meta as translationSchemas };
|
|
9114
|
+
export { meta$4 as entityMapper, meta$3 as machineTranslation, meta$2 as siteTranslator, meta$1 as translationContents, meta as translationSchemas };
|