@wix/metro-common-builders 1.0.1612 → 1.0.1614
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/es/src/proto/client/index.d.ts +130 -0
- package/dist/es/src/proto/index.d.ts +65 -0
- package/dist/es/src/proto/index.js +1059 -60
- package/dist/es/src/proto/server/index.d.ts +130 -0
- package/dist/src/proto/client/index.d.ts +130 -0
- package/dist/src/proto/index.d.ts +65 -0
- package/dist/src/proto/index.js +1059 -60
- package/dist/src/proto/server/index.d.ts +130 -0
- package/package.json +4 -4
|
@@ -285,6 +285,7 @@ declare namespace $requests {
|
|
|
285
285
|
upsert?: $requests.wix.coreservices.businessschema.v1.IUpsertMethod;
|
|
286
286
|
bulkUpsert?: $requests.wix.coreservices.businessschema.v1.IBulkUpsertMethod;
|
|
287
287
|
count?: $requests.wix.coreservices.businessschema.v1.ICountMethod;
|
|
288
|
+
search?: $requests.wix.coreservices.businessschema.v1.ISearchMethod;
|
|
288
289
|
}
|
|
289
290
|
export class Methods implements IMethods {
|
|
290
291
|
constructor(data?: IMethods);
|
|
@@ -302,6 +303,7 @@ declare namespace $requests {
|
|
|
302
303
|
upsert?: $requests.wix.coreservices.businessschema.v1.IUpsertMethod;
|
|
303
304
|
bulkUpsert?: $requests.wix.coreservices.businessschema.v1.IBulkUpsertMethod;
|
|
304
305
|
count?: $requests.wix.coreservices.businessschema.v1.ICountMethod;
|
|
306
|
+
search?: $requests.wix.coreservices.businessschema.v1.ISearchMethod;
|
|
305
307
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
306
308
|
}
|
|
307
309
|
export interface IEventPayload {
|
|
@@ -340,6 +342,7 @@ declare namespace $requests {
|
|
|
340
342
|
deprecated?: $requests.wix.coreservices.businessschema.v1.IDeprecated;
|
|
341
343
|
externalPermissionScopes?: $requests.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
342
344
|
eventType?: string;
|
|
345
|
+
permissionsInfo?: $requests.wix.coreservices.businessschema.v1.IPermissionInfo[];
|
|
343
346
|
}
|
|
344
347
|
export class Event implements IEvent {
|
|
345
348
|
constructor(data?: IEvent);
|
|
@@ -356,6 +359,7 @@ declare namespace $requests {
|
|
|
356
359
|
deprecated?: $requests.wix.coreservices.businessschema.v1.IDeprecated;
|
|
357
360
|
externalPermissionScopes?: $requests.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
358
361
|
eventType?: string;
|
|
362
|
+
permissionsInfo?: $requests.wix.coreservices.businessschema.v1.IPermissionInfo[];
|
|
359
363
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
360
364
|
}
|
|
361
365
|
export interface IAction {
|
|
@@ -380,6 +384,7 @@ declare namespace $requests {
|
|
|
380
384
|
applicableIdentities?: $requests.wix.coreservices.businessschema.v1.ApplicableIdentity[];
|
|
381
385
|
externalPermissionScopes?: $requests.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
382
386
|
cacheSettings?: $requests.wix.coreservices.businessschema.v1.ICacheSettings;
|
|
387
|
+
permissionsInfo?: $requests.wix.coreservices.businessschema.v1.IPermissionInfo[];
|
|
383
388
|
}
|
|
384
389
|
export class Action implements IAction {
|
|
385
390
|
constructor(data?: IAction);
|
|
@@ -404,6 +409,17 @@ declare namespace $requests {
|
|
|
404
409
|
applicableIdentities?: $requests.wix.coreservices.businessschema.v1.ApplicableIdentity[];
|
|
405
410
|
externalPermissionScopes?: $requests.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
406
411
|
cacheSettings?: $requests.wix.coreservices.businessschema.v1.ICacheSettings;
|
|
412
|
+
permissionsInfo?: $requests.wix.coreservices.businessschema.v1.IPermissionInfo[];
|
|
413
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
414
|
+
}
|
|
415
|
+
export interface IPermissionInfo {
|
|
416
|
+
name?: string;
|
|
417
|
+
manual?: boolean;
|
|
418
|
+
}
|
|
419
|
+
export class PermissionInfo implements IPermissionInfo {
|
|
420
|
+
constructor(data?: IPermissionInfo);
|
|
421
|
+
name?: string;
|
|
422
|
+
manual?: boolean;
|
|
407
423
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
408
424
|
}
|
|
409
425
|
export enum ApplicableIdentity {
|
|
@@ -445,10 +461,12 @@ declare namespace $requests {
|
|
|
445
461
|
}
|
|
446
462
|
export interface ISdkMethodSignature {
|
|
447
463
|
args?: $requests.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[];
|
|
464
|
+
argsWithoutSpreadingOneof?: $requests.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[];
|
|
448
465
|
}
|
|
449
466
|
export class SdkMethodSignature implements ISdkMethodSignature {
|
|
450
467
|
constructor(data?: ISdkMethodSignature);
|
|
451
468
|
args?: $requests.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[];
|
|
469
|
+
argsWithoutSpreadingOneof?: $requests.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[];
|
|
452
470
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
453
471
|
}
|
|
454
472
|
export namespace SdkMethodSignature {
|
|
@@ -612,11 +630,15 @@ declare namespace $requests {
|
|
|
612
630
|
export interface IPaging {
|
|
613
631
|
type?: $requests.wix.coreservices.businessschema.v1.Paging.Type;
|
|
614
632
|
pagingMetadataField?: string;
|
|
633
|
+
cursorPagingMetadataField?: string;
|
|
634
|
+
offsetPagingMetadataField?: string;
|
|
615
635
|
}
|
|
616
636
|
export class Paging implements IPaging {
|
|
617
637
|
constructor(data?: IPaging);
|
|
618
638
|
type?: $requests.wix.coreservices.businessschema.v1.Paging.Type;
|
|
619
639
|
pagingMetadataField?: string;
|
|
640
|
+
cursorPagingMetadataField?: string;
|
|
641
|
+
offsetPagingMetadataField?: string;
|
|
620
642
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
621
643
|
}
|
|
622
644
|
export namespace Paging {
|
|
@@ -624,6 +646,7 @@ declare namespace $requests {
|
|
|
624
646
|
UNKNOWN_TYPE = "UNKNOWN_TYPE",
|
|
625
647
|
OFFSET = "OFFSET",
|
|
626
648
|
CURSOR = "CURSOR",
|
|
649
|
+
BOTH = "BOTH",
|
|
627
650
|
}
|
|
628
651
|
}
|
|
629
652
|
export interface ICreateMethod {
|
|
@@ -726,6 +749,34 @@ declare namespace $requests {
|
|
|
726
749
|
countField?: string;
|
|
727
750
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
728
751
|
}
|
|
752
|
+
export interface ISearchMethod {
|
|
753
|
+
actionName?: string;
|
|
754
|
+
searchField?: string;
|
|
755
|
+
cursorSearchField?: string;
|
|
756
|
+
offsetSearchField?: string;
|
|
757
|
+
itemField?: string;
|
|
758
|
+
itemsField?: string;
|
|
759
|
+
paging?: $requests.wix.coreservices.businessschema.v1.IPaging;
|
|
760
|
+
search?: $requests.wix.coreservices.businessschema.v1.ISearch[];
|
|
761
|
+
wql?: $requests.wix.coreservices.businessschema.v1.IWql;
|
|
762
|
+
queryOptionsName?: string;
|
|
763
|
+
namespace?: string;
|
|
764
|
+
}
|
|
765
|
+
export class SearchMethod implements ISearchMethod {
|
|
766
|
+
constructor(data?: ISearchMethod);
|
|
767
|
+
actionName?: string;
|
|
768
|
+
searchField?: string;
|
|
769
|
+
cursorSearchField?: string;
|
|
770
|
+
offsetSearchField?: string;
|
|
771
|
+
itemField?: string;
|
|
772
|
+
itemsField?: string;
|
|
773
|
+
paging?: $requests.wix.coreservices.businessschema.v1.IPaging;
|
|
774
|
+
search?: $requests.wix.coreservices.businessschema.v1.ISearch[];
|
|
775
|
+
wql?: $requests.wix.coreservices.businessschema.v1.IWql;
|
|
776
|
+
queryOptionsName?: string;
|
|
777
|
+
namespace?: string;
|
|
778
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
779
|
+
}
|
|
729
780
|
export interface IQueryMethod {
|
|
730
781
|
actionName?: string;
|
|
731
782
|
queryField?: string;
|
|
@@ -1019,11 +1070,13 @@ declare namespace $requests {
|
|
|
1019
1070
|
export interface IOneOf {
|
|
1020
1071
|
fields?: $requests.wix.coreservices.businessschema.v1.IField[];
|
|
1021
1072
|
name?: string;
|
|
1073
|
+
alignedWithEnum?: $requests.wix.coreservices.businessschema.v1.IAlignedWithEnum;
|
|
1022
1074
|
}
|
|
1023
1075
|
export class OneOf implements IOneOf {
|
|
1024
1076
|
constructor(data?: IOneOf);
|
|
1025
1077
|
fields?: $requests.wix.coreservices.businessschema.v1.IField[];
|
|
1026
1078
|
name?: string;
|
|
1079
|
+
alignedWithEnum?: $requests.wix.coreservices.businessschema.v1.IAlignedWithEnum;
|
|
1027
1080
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1028
1081
|
}
|
|
1029
1082
|
export enum Type {
|
|
@@ -1111,6 +1164,16 @@ declare namespace $requests {
|
|
|
1111
1164
|
IMAGE_LINK = "IMAGE_LINK",
|
|
1112
1165
|
}
|
|
1113
1166
|
}
|
|
1167
|
+
export interface IAlignedWithEnum {
|
|
1168
|
+
field?: string;
|
|
1169
|
+
suffix?: string;
|
|
1170
|
+
}
|
|
1171
|
+
export class AlignedWithEnum implements IAlignedWithEnum {
|
|
1172
|
+
constructor(data?: IAlignedWithEnum);
|
|
1173
|
+
field?: string;
|
|
1174
|
+
suffix?: string;
|
|
1175
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1176
|
+
}
|
|
1114
1177
|
export interface IService {
|
|
1115
1178
|
name?: string;
|
|
1116
1179
|
package?: string;
|
|
@@ -1123,6 +1186,7 @@ declare namespace $requests {
|
|
|
1123
1186
|
description?: string;
|
|
1124
1187
|
appendices?: $requests.wix.coreservices.businessschema.v1.IAppendix[];
|
|
1125
1188
|
ownershipTag?: $requests.wix.coreservices.businessschema.v1.ICodeOwnersTag;
|
|
1189
|
+
namespace?: string;
|
|
1126
1190
|
}
|
|
1127
1191
|
export class Service implements IService {
|
|
1128
1192
|
constructor(data?: IService);
|
|
@@ -1137,6 +1201,7 @@ declare namespace $requests {
|
|
|
1137
1201
|
description?: string;
|
|
1138
1202
|
appendices?: $requests.wix.coreservices.businessschema.v1.IAppendix[];
|
|
1139
1203
|
ownershipTag?: $requests.wix.coreservices.businessschema.v1.ICodeOwnersTag;
|
|
1204
|
+
namespace?: string;
|
|
1140
1205
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1141
1206
|
}
|
|
1142
1207
|
export interface IServer {
|
|
@@ -4193,6 +4258,7 @@ declare namespace $responses {
|
|
|
4193
4258
|
upsert?: $responses.wix.coreservices.businessschema.v1.IUpsertMethod;
|
|
4194
4259
|
bulkUpsert?: $responses.wix.coreservices.businessschema.v1.IBulkUpsertMethod;
|
|
4195
4260
|
count?: $responses.wix.coreservices.businessschema.v1.ICountMethod;
|
|
4261
|
+
search?: $responses.wix.coreservices.businessschema.v1.ISearchMethod;
|
|
4196
4262
|
}
|
|
4197
4263
|
export class Methods implements IMethods {
|
|
4198
4264
|
constructor(data?: IMethods);
|
|
@@ -4210,6 +4276,7 @@ declare namespace $responses {
|
|
|
4210
4276
|
upsert?: $responses.wix.coreservices.businessschema.v1.IUpsertMethod;
|
|
4211
4277
|
bulkUpsert?: $responses.wix.coreservices.businessschema.v1.IBulkUpsertMethod;
|
|
4212
4278
|
count?: $responses.wix.coreservices.businessschema.v1.ICountMethod;
|
|
4279
|
+
search?: $responses.wix.coreservices.businessschema.v1.ISearchMethod;
|
|
4213
4280
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4214
4281
|
}
|
|
4215
4282
|
export interface IEventPayload {
|
|
@@ -4248,6 +4315,7 @@ declare namespace $responses {
|
|
|
4248
4315
|
deprecated?: $responses.wix.coreservices.businessschema.v1.IDeprecated;
|
|
4249
4316
|
externalPermissionScopes: $responses.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
4250
4317
|
eventType?: string;
|
|
4318
|
+
permissionsInfo: $responses.wix.coreservices.businessschema.v1.IPermissionInfo[];
|
|
4251
4319
|
}
|
|
4252
4320
|
export class Event implements IEvent {
|
|
4253
4321
|
constructor(data?: IEvent);
|
|
@@ -4264,6 +4332,7 @@ declare namespace $responses {
|
|
|
4264
4332
|
deprecated?: $responses.wix.coreservices.businessschema.v1.IDeprecated;
|
|
4265
4333
|
externalPermissionScopes: $responses.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
4266
4334
|
eventType?: string;
|
|
4335
|
+
permissionsInfo: $responses.wix.coreservices.businessschema.v1.IPermissionInfo[];
|
|
4267
4336
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4268
4337
|
}
|
|
4269
4338
|
export interface IAction {
|
|
@@ -4288,6 +4357,7 @@ declare namespace $responses {
|
|
|
4288
4357
|
applicableIdentities: $responses.wix.coreservices.businessschema.v1.ApplicableIdentity[];
|
|
4289
4358
|
externalPermissionScopes: $responses.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
4290
4359
|
cacheSettings?: $responses.wix.coreservices.businessschema.v1.ICacheSettings;
|
|
4360
|
+
permissionsInfo: $responses.wix.coreservices.businessschema.v1.IPermissionInfo[];
|
|
4291
4361
|
}
|
|
4292
4362
|
export class Action implements IAction {
|
|
4293
4363
|
constructor(data?: IAction);
|
|
@@ -4312,6 +4382,17 @@ declare namespace $responses {
|
|
|
4312
4382
|
applicableIdentities: $responses.wix.coreservices.businessschema.v1.ApplicableIdentity[];
|
|
4313
4383
|
externalPermissionScopes: $responses.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
4314
4384
|
cacheSettings?: $responses.wix.coreservices.businessschema.v1.ICacheSettings;
|
|
4385
|
+
permissionsInfo: $responses.wix.coreservices.businessschema.v1.IPermissionInfo[];
|
|
4386
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4387
|
+
}
|
|
4388
|
+
export interface IPermissionInfo {
|
|
4389
|
+
name: string;
|
|
4390
|
+
manual: boolean;
|
|
4391
|
+
}
|
|
4392
|
+
export class PermissionInfo implements IPermissionInfo {
|
|
4393
|
+
constructor(data?: IPermissionInfo);
|
|
4394
|
+
name: string;
|
|
4395
|
+
manual: boolean;
|
|
4315
4396
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4316
4397
|
}
|
|
4317
4398
|
export enum ApplicableIdentity {
|
|
@@ -4353,10 +4434,12 @@ declare namespace $responses {
|
|
|
4353
4434
|
}
|
|
4354
4435
|
export interface ISdkMethodSignature {
|
|
4355
4436
|
args: $responses.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[];
|
|
4437
|
+
argsWithoutSpreadingOneof: $responses.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[];
|
|
4356
4438
|
}
|
|
4357
4439
|
export class SdkMethodSignature implements ISdkMethodSignature {
|
|
4358
4440
|
constructor(data?: ISdkMethodSignature);
|
|
4359
4441
|
args: $responses.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[];
|
|
4442
|
+
argsWithoutSpreadingOneof: $responses.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[];
|
|
4360
4443
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4361
4444
|
}
|
|
4362
4445
|
export namespace SdkMethodSignature {
|
|
@@ -4520,11 +4603,15 @@ declare namespace $responses {
|
|
|
4520
4603
|
export interface IPaging {
|
|
4521
4604
|
type: $responses.wix.coreservices.businessschema.v1.Paging.Type;
|
|
4522
4605
|
pagingMetadataField: string;
|
|
4606
|
+
cursorPagingMetadataField: string;
|
|
4607
|
+
offsetPagingMetadataField: string;
|
|
4523
4608
|
}
|
|
4524
4609
|
export class Paging implements IPaging {
|
|
4525
4610
|
constructor(data?: IPaging);
|
|
4526
4611
|
type: $responses.wix.coreservices.businessschema.v1.Paging.Type;
|
|
4527
4612
|
pagingMetadataField: string;
|
|
4613
|
+
cursorPagingMetadataField: string;
|
|
4614
|
+
offsetPagingMetadataField: string;
|
|
4528
4615
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4529
4616
|
}
|
|
4530
4617
|
export namespace Paging {
|
|
@@ -4532,6 +4619,7 @@ declare namespace $responses {
|
|
|
4532
4619
|
UNKNOWN_TYPE = "UNKNOWN_TYPE",
|
|
4533
4620
|
OFFSET = "OFFSET",
|
|
4534
4621
|
CURSOR = "CURSOR",
|
|
4622
|
+
BOTH = "BOTH",
|
|
4535
4623
|
}
|
|
4536
4624
|
}
|
|
4537
4625
|
export interface ICreateMethod {
|
|
@@ -4634,6 +4722,34 @@ declare namespace $responses {
|
|
|
4634
4722
|
countField: string;
|
|
4635
4723
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4636
4724
|
}
|
|
4725
|
+
export interface ISearchMethod {
|
|
4726
|
+
actionName: string;
|
|
4727
|
+
searchField: string;
|
|
4728
|
+
cursorSearchField: string;
|
|
4729
|
+
offsetSearchField: string;
|
|
4730
|
+
itemField: string;
|
|
4731
|
+
itemsField: string;
|
|
4732
|
+
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
4733
|
+
search: $responses.wix.coreservices.businessschema.v1.ISearch[];
|
|
4734
|
+
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
4735
|
+
queryOptionsName?: string;
|
|
4736
|
+
namespace?: string;
|
|
4737
|
+
}
|
|
4738
|
+
export class SearchMethod implements ISearchMethod {
|
|
4739
|
+
constructor(data?: ISearchMethod);
|
|
4740
|
+
actionName: string;
|
|
4741
|
+
searchField: string;
|
|
4742
|
+
cursorSearchField: string;
|
|
4743
|
+
offsetSearchField: string;
|
|
4744
|
+
itemField: string;
|
|
4745
|
+
itemsField: string;
|
|
4746
|
+
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
4747
|
+
search: $responses.wix.coreservices.businessschema.v1.ISearch[];
|
|
4748
|
+
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
4749
|
+
queryOptionsName?: string;
|
|
4750
|
+
namespace?: string;
|
|
4751
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4752
|
+
}
|
|
4637
4753
|
export interface IQueryMethod {
|
|
4638
4754
|
actionName: string;
|
|
4639
4755
|
queryField: string;
|
|
@@ -4927,11 +5043,13 @@ declare namespace $responses {
|
|
|
4927
5043
|
export interface IOneOf {
|
|
4928
5044
|
fields: $responses.wix.coreservices.businessschema.v1.IField[];
|
|
4929
5045
|
name: string;
|
|
5046
|
+
alignedWithEnum?: $responses.wix.coreservices.businessschema.v1.IAlignedWithEnum;
|
|
4930
5047
|
}
|
|
4931
5048
|
export class OneOf implements IOneOf {
|
|
4932
5049
|
constructor(data?: IOneOf);
|
|
4933
5050
|
fields: $responses.wix.coreservices.businessschema.v1.IField[];
|
|
4934
5051
|
name: string;
|
|
5052
|
+
alignedWithEnum?: $responses.wix.coreservices.businessschema.v1.IAlignedWithEnum;
|
|
4935
5053
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4936
5054
|
}
|
|
4937
5055
|
export enum Type {
|
|
@@ -5019,6 +5137,16 @@ declare namespace $responses {
|
|
|
5019
5137
|
IMAGE_LINK = "IMAGE_LINK",
|
|
5020
5138
|
}
|
|
5021
5139
|
}
|
|
5140
|
+
export interface IAlignedWithEnum {
|
|
5141
|
+
field: string;
|
|
5142
|
+
suffix?: string;
|
|
5143
|
+
}
|
|
5144
|
+
export class AlignedWithEnum implements IAlignedWithEnum {
|
|
5145
|
+
constructor(data?: IAlignedWithEnum);
|
|
5146
|
+
field: string;
|
|
5147
|
+
suffix?: string;
|
|
5148
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5149
|
+
}
|
|
5022
5150
|
export interface IService {
|
|
5023
5151
|
name: string;
|
|
5024
5152
|
package: string;
|
|
@@ -5031,6 +5159,7 @@ declare namespace $responses {
|
|
|
5031
5159
|
description: string;
|
|
5032
5160
|
appendices: $responses.wix.coreservices.businessschema.v1.IAppendix[];
|
|
5033
5161
|
ownershipTag?: $responses.wix.coreservices.businessschema.v1.ICodeOwnersTag;
|
|
5162
|
+
namespace?: string;
|
|
5034
5163
|
}
|
|
5035
5164
|
export class Service implements IService {
|
|
5036
5165
|
constructor(data?: IService);
|
|
@@ -5045,6 +5174,7 @@ declare namespace $responses {
|
|
|
5045
5174
|
description: string;
|
|
5046
5175
|
appendices: $responses.wix.coreservices.businessschema.v1.IAppendix[];
|
|
5047
5176
|
ownershipTag?: $responses.wix.coreservices.businessschema.v1.ICodeOwnersTag;
|
|
5177
|
+
namespace?: string;
|
|
5048
5178
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5049
5179
|
}
|
|
5050
5180
|
export interface IServer {
|
|
@@ -285,6 +285,7 @@ declare namespace $wrapper {
|
|
|
285
285
|
upsert?: ($wrapper.wix.coreservices.businessschema.v1.IUpsertMethod | null);
|
|
286
286
|
bulkUpsert?: ($wrapper.wix.coreservices.businessschema.v1.IBulkUpsertMethod | null);
|
|
287
287
|
count?: ($wrapper.wix.coreservices.businessschema.v1.ICountMethod | null);
|
|
288
|
+
search?: ($wrapper.wix.coreservices.businessschema.v1.ISearchMethod | null);
|
|
288
289
|
}
|
|
289
290
|
export class Methods implements IMethods {
|
|
290
291
|
constructor(data?: IMethods);
|
|
@@ -302,6 +303,7 @@ declare namespace $wrapper {
|
|
|
302
303
|
upsert?: ($wrapper.wix.coreservices.businessschema.v1.IUpsertMethod | null);
|
|
303
304
|
bulkUpsert?: ($wrapper.wix.coreservices.businessschema.v1.IBulkUpsertMethod | null);
|
|
304
305
|
count?: ($wrapper.wix.coreservices.businessschema.v1.ICountMethod | null);
|
|
306
|
+
search?: ($wrapper.wix.coreservices.businessschema.v1.ISearchMethod | null);
|
|
305
307
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
306
308
|
}
|
|
307
309
|
export interface IEventPayload {
|
|
@@ -340,6 +342,7 @@ declare namespace $wrapper {
|
|
|
340
342
|
deprecated?: ($wrapper.wix.coreservices.businessschema.v1.IDeprecated | null);
|
|
341
343
|
externalPermissionScopes?: ($wrapper.wix.coreservices.businessschema.v1.IExternalPermissionScope[] | null);
|
|
342
344
|
eventType?: (string | null);
|
|
345
|
+
permissionsInfo?: ($wrapper.wix.coreservices.businessschema.v1.IPermissionInfo[] | null);
|
|
343
346
|
}
|
|
344
347
|
export class Event implements IEvent {
|
|
345
348
|
constructor(data?: IEvent);
|
|
@@ -356,6 +359,7 @@ declare namespace $wrapper {
|
|
|
356
359
|
deprecated?: ($wrapper.wix.coreservices.businessschema.v1.IDeprecated | null);
|
|
357
360
|
externalPermissionScopes?: ($wrapper.wix.coreservices.businessschema.v1.IExternalPermissionScope[] | null);
|
|
358
361
|
eventType?: (string | null);
|
|
362
|
+
permissionsInfo?: ($wrapper.wix.coreservices.businessschema.v1.IPermissionInfo[] | null);
|
|
359
363
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
360
364
|
}
|
|
361
365
|
export interface IAction {
|
|
@@ -380,6 +384,7 @@ declare namespace $wrapper {
|
|
|
380
384
|
applicableIdentities?: ($wrapper.wix.coreservices.businessschema.v1.ApplicableIdentity[] | null);
|
|
381
385
|
externalPermissionScopes?: ($wrapper.wix.coreservices.businessschema.v1.IExternalPermissionScope[] | null);
|
|
382
386
|
cacheSettings?: ($wrapper.wix.coreservices.businessschema.v1.ICacheSettings | null);
|
|
387
|
+
permissionsInfo?: ($wrapper.wix.coreservices.businessschema.v1.IPermissionInfo[] | null);
|
|
383
388
|
}
|
|
384
389
|
export class Action implements IAction {
|
|
385
390
|
constructor(data?: IAction);
|
|
@@ -404,6 +409,17 @@ declare namespace $wrapper {
|
|
|
404
409
|
applicableIdentities?: ($wrapper.wix.coreservices.businessschema.v1.ApplicableIdentity[] | null);
|
|
405
410
|
externalPermissionScopes?: ($wrapper.wix.coreservices.businessschema.v1.IExternalPermissionScope[] | null);
|
|
406
411
|
cacheSettings?: ($wrapper.wix.coreservices.businessschema.v1.ICacheSettings | null);
|
|
412
|
+
permissionsInfo?: ($wrapper.wix.coreservices.businessschema.v1.IPermissionInfo[] | null);
|
|
413
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
414
|
+
}
|
|
415
|
+
export interface IPermissionInfo {
|
|
416
|
+
name?: (string | null);
|
|
417
|
+
manual?: (boolean | null);
|
|
418
|
+
}
|
|
419
|
+
export class PermissionInfo implements IPermissionInfo {
|
|
420
|
+
constructor(data?: IPermissionInfo);
|
|
421
|
+
name?: (string | null);
|
|
422
|
+
manual?: (boolean | null);
|
|
407
423
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
408
424
|
}
|
|
409
425
|
export enum ApplicableIdentity {
|
|
@@ -445,10 +461,12 @@ declare namespace $wrapper {
|
|
|
445
461
|
}
|
|
446
462
|
export interface ISdkMethodSignature {
|
|
447
463
|
args?: ($wrapper.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[] | null);
|
|
464
|
+
argsWithoutSpreadingOneof?: ($wrapper.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[] | null);
|
|
448
465
|
}
|
|
449
466
|
export class SdkMethodSignature implements ISdkMethodSignature {
|
|
450
467
|
constructor(data?: ISdkMethodSignature);
|
|
451
468
|
args?: ($wrapper.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[] | null);
|
|
469
|
+
argsWithoutSpreadingOneof?: ($wrapper.wix.coreservices.businessschema.v1.SdkMethodSignature.IArgument[] | null);
|
|
452
470
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
453
471
|
}
|
|
454
472
|
export namespace SdkMethodSignature {
|
|
@@ -612,11 +630,15 @@ declare namespace $wrapper {
|
|
|
612
630
|
export interface IPaging {
|
|
613
631
|
type?: ($wrapper.wix.coreservices.businessschema.v1.Paging.Type | null);
|
|
614
632
|
pagingMetadataField?: (string | null);
|
|
633
|
+
cursorPagingMetadataField?: (string | null);
|
|
634
|
+
offsetPagingMetadataField?: (string | null);
|
|
615
635
|
}
|
|
616
636
|
export class Paging implements IPaging {
|
|
617
637
|
constructor(data?: IPaging);
|
|
618
638
|
type?: ($wrapper.wix.coreservices.businessschema.v1.Paging.Type | null);
|
|
619
639
|
pagingMetadataField?: (string | null);
|
|
640
|
+
cursorPagingMetadataField?: (string | null);
|
|
641
|
+
offsetPagingMetadataField?: (string | null);
|
|
620
642
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
621
643
|
}
|
|
622
644
|
export namespace Paging {
|
|
@@ -624,6 +646,7 @@ declare namespace $wrapper {
|
|
|
624
646
|
UNKNOWN_TYPE = "UNKNOWN_TYPE",
|
|
625
647
|
OFFSET = "OFFSET",
|
|
626
648
|
CURSOR = "CURSOR",
|
|
649
|
+
BOTH = "BOTH",
|
|
627
650
|
}
|
|
628
651
|
}
|
|
629
652
|
export interface ICreateMethod {
|
|
@@ -726,6 +749,34 @@ declare namespace $wrapper {
|
|
|
726
749
|
countField?: (string | null);
|
|
727
750
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
728
751
|
}
|
|
752
|
+
export interface ISearchMethod {
|
|
753
|
+
actionName?: (string | null);
|
|
754
|
+
searchField?: (string | null);
|
|
755
|
+
cursorSearchField?: (string | null);
|
|
756
|
+
offsetSearchField?: (string | null);
|
|
757
|
+
itemField?: (string | null);
|
|
758
|
+
itemsField?: (string | null);
|
|
759
|
+
paging?: ($wrapper.wix.coreservices.businessschema.v1.IPaging | null);
|
|
760
|
+
search?: ($wrapper.wix.coreservices.businessschema.v1.ISearch[] | null);
|
|
761
|
+
wql?: ($wrapper.wix.coreservices.businessschema.v1.IWql | null);
|
|
762
|
+
queryOptionsName?: (string | null);
|
|
763
|
+
namespace?: (string | null);
|
|
764
|
+
}
|
|
765
|
+
export class SearchMethod implements ISearchMethod {
|
|
766
|
+
constructor(data?: ISearchMethod);
|
|
767
|
+
actionName?: (string | null);
|
|
768
|
+
searchField?: (string | null);
|
|
769
|
+
cursorSearchField?: (string | null);
|
|
770
|
+
offsetSearchField?: (string | null);
|
|
771
|
+
itemField?: (string | null);
|
|
772
|
+
itemsField?: (string | null);
|
|
773
|
+
paging?: ($wrapper.wix.coreservices.businessschema.v1.IPaging | null);
|
|
774
|
+
search?: ($wrapper.wix.coreservices.businessschema.v1.ISearch[] | null);
|
|
775
|
+
wql?: ($wrapper.wix.coreservices.businessschema.v1.IWql | null);
|
|
776
|
+
queryOptionsName?: (string | null);
|
|
777
|
+
namespace?: (string | null);
|
|
778
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
779
|
+
}
|
|
729
780
|
export interface IQueryMethod {
|
|
730
781
|
actionName?: (string | null);
|
|
731
782
|
queryField?: (string | null);
|
|
@@ -1019,11 +1070,13 @@ declare namespace $wrapper {
|
|
|
1019
1070
|
export interface IOneOf {
|
|
1020
1071
|
fields?: ($wrapper.wix.coreservices.businessschema.v1.IField[] | null);
|
|
1021
1072
|
name?: (string | null);
|
|
1073
|
+
alignedWithEnum?: ($wrapper.wix.coreservices.businessschema.v1.IAlignedWithEnum | null);
|
|
1022
1074
|
}
|
|
1023
1075
|
export class OneOf implements IOneOf {
|
|
1024
1076
|
constructor(data?: IOneOf);
|
|
1025
1077
|
fields?: ($wrapper.wix.coreservices.businessschema.v1.IField[] | null);
|
|
1026
1078
|
name?: (string | null);
|
|
1079
|
+
alignedWithEnum?: ($wrapper.wix.coreservices.businessschema.v1.IAlignedWithEnum | null);
|
|
1027
1080
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1028
1081
|
}
|
|
1029
1082
|
export enum Type {
|
|
@@ -1111,6 +1164,16 @@ declare namespace $wrapper {
|
|
|
1111
1164
|
IMAGE_LINK = "IMAGE_LINK",
|
|
1112
1165
|
}
|
|
1113
1166
|
}
|
|
1167
|
+
export interface IAlignedWithEnum {
|
|
1168
|
+
field?: (string | null);
|
|
1169
|
+
suffix?: (string | null);
|
|
1170
|
+
}
|
|
1171
|
+
export class AlignedWithEnum implements IAlignedWithEnum {
|
|
1172
|
+
constructor(data?: IAlignedWithEnum);
|
|
1173
|
+
field?: (string | null);
|
|
1174
|
+
suffix?: (string | null);
|
|
1175
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1176
|
+
}
|
|
1114
1177
|
export interface IService {
|
|
1115
1178
|
name?: (string | null);
|
|
1116
1179
|
package?: (string | null);
|
|
@@ -1123,6 +1186,7 @@ declare namespace $wrapper {
|
|
|
1123
1186
|
description?: (string | null);
|
|
1124
1187
|
appendices?: ($wrapper.wix.coreservices.businessschema.v1.IAppendix[] | null);
|
|
1125
1188
|
ownershipTag?: ($wrapper.wix.coreservices.businessschema.v1.ICodeOwnersTag | null);
|
|
1189
|
+
namespace?: (string | null);
|
|
1126
1190
|
}
|
|
1127
1191
|
export class Service implements IService {
|
|
1128
1192
|
constructor(data?: IService);
|
|
@@ -1137,6 +1201,7 @@ declare namespace $wrapper {
|
|
|
1137
1201
|
description?: (string | null);
|
|
1138
1202
|
appendices?: ($wrapper.wix.coreservices.businessschema.v1.IAppendix[] | null);
|
|
1139
1203
|
ownershipTag?: ($wrapper.wix.coreservices.businessschema.v1.ICodeOwnersTag | null);
|
|
1204
|
+
namespace?: (string | null);
|
|
1140
1205
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1141
1206
|
}
|
|
1142
1207
|
export interface IServer {
|