@wix/auto_sdk_restaurants_operation-groups 1.0.13 → 1.0.15
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/src/restaurants-v1-operation-group-operation-groups.http.d.ts +5 -5
- package/build/cjs/src/restaurants-v1-operation-group-operation-groups.http.js +5 -5
- package/build/cjs/src/restaurants-v1-operation-group-operation-groups.public.d.ts +7 -7
- package/build/cjs/src/restaurants-v1-operation-group-operation-groups.types.d.ts +11 -11
- package/build/cjs/src/restaurants-v1-operation-group-operation-groups.universal.d.ts +29 -23
- package/build/cjs/src/restaurants-v1-operation-group-operation-groups.universal.js +13 -7
- package/build/cjs/src/restaurants-v1-operation-group-operation-groups.universal.js.map +1 -1
- package/build/es/src/restaurants-v1-operation-group-operation-groups.http.d.ts +5 -5
- package/build/es/src/restaurants-v1-operation-group-operation-groups.http.js +5 -5
- package/build/es/src/restaurants-v1-operation-group-operation-groups.public.d.ts +7 -7
- package/build/es/src/restaurants-v1-operation-group-operation-groups.types.d.ts +11 -11
- package/build/es/src/restaurants-v1-operation-group-operation-groups.universal.d.ts +29 -23
- package/build/es/src/restaurants-v1-operation-group-operation-groups.universal.js +13 -7
- package/build/es/src/restaurants-v1-operation-group-operation-groups.universal.js.map +1 -1
- package/build/internal/cjs/src/restaurants-v1-operation-group-operation-groups.http.d.ts +5 -5
- package/build/internal/cjs/src/restaurants-v1-operation-group-operation-groups.http.js +5 -5
- package/build/internal/cjs/src/restaurants-v1-operation-group-operation-groups.public.d.ts +7 -7
- package/build/internal/cjs/src/restaurants-v1-operation-group-operation-groups.types.d.ts +11 -11
- package/build/internal/cjs/src/restaurants-v1-operation-group-operation-groups.universal.d.ts +29 -23
- package/build/internal/cjs/src/restaurants-v1-operation-group-operation-groups.universal.js +13 -7
- package/build/internal/cjs/src/restaurants-v1-operation-group-operation-groups.universal.js.map +1 -1
- package/build/internal/es/src/restaurants-v1-operation-group-operation-groups.http.d.ts +5 -5
- package/build/internal/es/src/restaurants-v1-operation-group-operation-groups.http.js +5 -5
- package/build/internal/es/src/restaurants-v1-operation-group-operation-groups.public.d.ts +7 -7
- package/build/internal/es/src/restaurants-v1-operation-group-operation-groups.types.d.ts +11 -11
- package/build/internal/es/src/restaurants-v1-operation-group-operation-groups.universal.d.ts +29 -23
- package/build/internal/es/src/restaurants-v1-operation-group-operation-groups.universal.js +13 -7
- package/build/internal/es/src/restaurants-v1-operation-group-operation-groups.universal.js.map +1 -1
- package/package.json +4 -4
|
@@ -30,13 +30,13 @@ export declare function bulkUpdateOperationGroups(payload: object): RequestOptio
|
|
|
30
30
|
/** Delete multiple OperationGroups in a single request. Works synchronously. */
|
|
31
31
|
export declare function bulkDeleteOperationGroups(payload: object): RequestOptionsFactory<any>;
|
|
32
32
|
/**
|
|
33
|
-
* Synchronously update tags on multiple
|
|
34
|
-
*
|
|
33
|
+
* Synchronously update tags on multiple operation groups.
|
|
34
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
35
35
|
*/
|
|
36
36
|
export declare function bulkUpdateOperationGroupTags(payload: object): RequestOptionsFactory<any>;
|
|
37
37
|
/**
|
|
38
|
-
* Asynchronously update tags on multiple
|
|
39
|
-
*
|
|
40
|
-
*
|
|
38
|
+
* Asynchronously update tags on multiple operation groups according to the specified filter.
|
|
39
|
+
* If a filter isn't specified, this method updates all operation groups.
|
|
40
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
41
41
|
*/
|
|
42
42
|
export declare function bulkUpdateOperationGroupTagsByFilter(payload: object): RequestOptionsFactory<any>;
|
|
@@ -351,8 +351,8 @@ function bulkDeleteOperationGroups(payload) {
|
|
|
351
351
|
}
|
|
352
352
|
exports.bulkDeleteOperationGroups = bulkDeleteOperationGroups;
|
|
353
353
|
/**
|
|
354
|
-
* Synchronously update tags on multiple
|
|
355
|
-
*
|
|
354
|
+
* Synchronously update tags on multiple operation groups.
|
|
355
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
356
356
|
*/
|
|
357
357
|
function bulkUpdateOperationGroupTags(payload) {
|
|
358
358
|
function __bulkUpdateOperationGroupTags({ host }) {
|
|
@@ -374,9 +374,9 @@ function bulkUpdateOperationGroupTags(payload) {
|
|
|
374
374
|
}
|
|
375
375
|
exports.bulkUpdateOperationGroupTags = bulkUpdateOperationGroupTags;
|
|
376
376
|
/**
|
|
377
|
-
* Asynchronously update tags on multiple
|
|
378
|
-
*
|
|
379
|
-
*
|
|
377
|
+
* Asynchronously update tags on multiple operation groups according to the specified filter.
|
|
378
|
+
* If a filter isn't specified, this method updates all operation groups.
|
|
379
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
380
380
|
*/
|
|
381
381
|
function bulkUpdateOperationGroupTagsByFilter(payload) {
|
|
382
382
|
function __bulkUpdateOperationGroupTagsByFilter({ host }) {
|
|
@@ -82,19 +82,19 @@ interface BulkDeleteOperationGroupsSignature {
|
|
|
82
82
|
export declare function bulkUpdateOperationGroupTags(httpClient: HttpClient): BulkUpdateOperationGroupTagsSignature;
|
|
83
83
|
interface BulkUpdateOperationGroupTagsSignature {
|
|
84
84
|
/**
|
|
85
|
-
* Synchronously update tags on multiple
|
|
86
|
-
*
|
|
87
|
-
* @param -
|
|
85
|
+
* Synchronously update tags on multiple operation groups.
|
|
86
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
87
|
+
* @param - IDs of the operation groups to update tags for.
|
|
88
88
|
*/
|
|
89
89
|
(operationGroupIds: string[], options?: BulkUpdateOperationGroupTagsOptions | undefined): Promise<BulkUpdateOperationGroupTagsResponse>;
|
|
90
90
|
}
|
|
91
91
|
export declare function bulkUpdateOperationGroupTagsByFilter(httpClient: HttpClient): BulkUpdateOperationGroupTagsByFilterSignature;
|
|
92
92
|
interface BulkUpdateOperationGroupTagsByFilterSignature {
|
|
93
93
|
/**
|
|
94
|
-
* Asynchronously update tags on multiple
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
* @param - Filter
|
|
94
|
+
* Asynchronously update tags on multiple operation groups according to the specified filter.
|
|
95
|
+
* If a filter isn't specified, this method updates all operation groups.
|
|
96
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
97
|
+
* @param - Filter that determines which operation groups to update tags for.
|
|
98
98
|
*/
|
|
99
99
|
(filter: Record<string, any>, options?: BulkUpdateOperationGroupTagsByFilterOptions | undefined): Promise<BulkUpdateOperationGroupTagsByFilterResponse>;
|
|
100
100
|
}
|
|
@@ -36,7 +36,7 @@ export interface OperationGroup {
|
|
|
36
36
|
name?: string | null;
|
|
37
37
|
/** Data Extensions */
|
|
38
38
|
extendedFields?: ExtendedFields;
|
|
39
|
-
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction)|[REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
39
|
+
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
40
40
|
tags?: Tags;
|
|
41
41
|
}
|
|
42
42
|
export interface ExtendedFields {
|
|
@@ -319,42 +319,42 @@ export interface BulkDeleteOperationGroupsResponseBulkOperationGroupResult {
|
|
|
319
319
|
}
|
|
320
320
|
export interface BulkUpdateOperationGroupTagsRequest {
|
|
321
321
|
/**
|
|
322
|
-
*
|
|
322
|
+
* IDs of the operation groups to update tags for.
|
|
323
323
|
* @minSize 1
|
|
324
324
|
* @maxSize 100
|
|
325
325
|
* @format GUID
|
|
326
326
|
*/
|
|
327
327
|
operationGroupIds: string[];
|
|
328
|
-
/**
|
|
328
|
+
/** Tags to assign to the operation groups. */
|
|
329
329
|
assignTags?: Tags;
|
|
330
|
-
/**
|
|
330
|
+
/** Tags to unassign from the operation groups. */
|
|
331
331
|
unassignTags?: Tags;
|
|
332
332
|
}
|
|
333
333
|
export interface BulkUpdateOperationGroupTagsResponse {
|
|
334
334
|
/**
|
|
335
|
-
* Results
|
|
335
|
+
* Results of the bulk update.
|
|
336
336
|
* @minSize 1
|
|
337
337
|
* @maxSize 100
|
|
338
338
|
*/
|
|
339
339
|
results?: BulkUpdateOperationGroupTagsResult[];
|
|
340
|
-
/** Metadata
|
|
340
|
+
/** Metadata for the bulk update. */
|
|
341
341
|
bulkActionMetadata?: BulkActionMetadata;
|
|
342
342
|
}
|
|
343
343
|
export interface BulkUpdateOperationGroupTagsResult {
|
|
344
|
-
/** Metadata
|
|
344
|
+
/** Metadata for the updated operation group. */
|
|
345
345
|
itemMetadata?: ItemMetadata;
|
|
346
346
|
}
|
|
347
347
|
export interface BulkUpdateOperationGroupTagsByFilterRequest {
|
|
348
|
-
/** Filter */
|
|
348
|
+
/** Filter that determines which operation groups to update tags for. */
|
|
349
349
|
filter: Record<string, any> | null;
|
|
350
|
-
/**
|
|
350
|
+
/** Tags to assign to the operation groups. */
|
|
351
351
|
assignTags?: Tags;
|
|
352
|
-
/**
|
|
352
|
+
/** Tags to unassign from the operation groups. */
|
|
353
353
|
unassignTags?: Tags;
|
|
354
354
|
}
|
|
355
355
|
export interface BulkUpdateOperationGroupTagsByFilterResponse {
|
|
356
356
|
/**
|
|
357
|
-
* Job ID
|
|
357
|
+
* Job ID. Pass this ID to Get Async Job ([SDK](https://dev.wix.com/docs/sdk/backend-modules/async-jobs/get-async-job) | [REST](https://dev.wix.com/docs/rest/business-management/async-job/get-async-job)) to track the job's status.
|
|
358
358
|
* @format GUID
|
|
359
359
|
*/
|
|
360
360
|
jobId?: string;
|
|
@@ -37,7 +37,7 @@ export interface OperationGroup {
|
|
|
37
37
|
name?: string | null;
|
|
38
38
|
/** Data Extensions */
|
|
39
39
|
extendedFields?: ExtendedFields;
|
|
40
|
-
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction)|[REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
40
|
+
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
41
41
|
tags?: Tags;
|
|
42
42
|
}
|
|
43
43
|
export interface ExtendedFields {
|
|
@@ -320,42 +320,42 @@ export interface BulkDeleteOperationGroupsResponseBulkOperationGroupResult {
|
|
|
320
320
|
}
|
|
321
321
|
export interface BulkUpdateOperationGroupTagsRequest {
|
|
322
322
|
/**
|
|
323
|
-
*
|
|
323
|
+
* IDs of the operation groups to update tags for.
|
|
324
324
|
* @minSize 1
|
|
325
325
|
* @maxSize 100
|
|
326
326
|
* @format GUID
|
|
327
327
|
*/
|
|
328
328
|
operationGroupIds: string[];
|
|
329
|
-
/**
|
|
329
|
+
/** Tags to assign to the operation groups. */
|
|
330
330
|
assignTags?: Tags;
|
|
331
|
-
/**
|
|
331
|
+
/** Tags to unassign from the operation groups. */
|
|
332
332
|
unassignTags?: Tags;
|
|
333
333
|
}
|
|
334
334
|
export interface BulkUpdateOperationGroupTagsResponse {
|
|
335
335
|
/**
|
|
336
|
-
* Results
|
|
336
|
+
* Results of the bulk update.
|
|
337
337
|
* @minSize 1
|
|
338
338
|
* @maxSize 100
|
|
339
339
|
*/
|
|
340
340
|
results?: BulkUpdateOperationGroupTagsResult[];
|
|
341
|
-
/** Metadata
|
|
341
|
+
/** Metadata for the bulk update. */
|
|
342
342
|
bulkActionMetadata?: BulkActionMetadata;
|
|
343
343
|
}
|
|
344
344
|
export interface BulkUpdateOperationGroupTagsResult {
|
|
345
|
-
/** Metadata
|
|
345
|
+
/** Metadata for the updated operation group. */
|
|
346
346
|
itemMetadata?: ItemMetadata;
|
|
347
347
|
}
|
|
348
348
|
export interface BulkUpdateOperationGroupTagsByFilterRequest {
|
|
349
|
-
/** Filter */
|
|
349
|
+
/** Filter that determines which operation groups to update tags for. */
|
|
350
350
|
filter: Record<string, any> | null;
|
|
351
|
-
/**
|
|
351
|
+
/** Tags to assign to the operation groups. */
|
|
352
352
|
assignTags?: Tags;
|
|
353
|
-
/**
|
|
353
|
+
/** Tags to unassign from the operation groups. */
|
|
354
354
|
unassignTags?: Tags;
|
|
355
355
|
}
|
|
356
356
|
export interface BulkUpdateOperationGroupTagsByFilterResponse {
|
|
357
357
|
/**
|
|
358
|
-
* Job ID
|
|
358
|
+
* Job ID. Pass this ID to Get Async Job ([SDK](https://dev.wix.com/docs/sdk/backend-modules/async-jobs/get-async-job) | [REST](https://dev.wix.com/docs/rest/business-management/async-job/get-async-job)) to track the job's status.
|
|
359
359
|
* @format GUID
|
|
360
360
|
*/
|
|
361
361
|
jobId?: string;
|
|
@@ -678,7 +678,7 @@ export interface UpdateOperationGroup {
|
|
|
678
678
|
name?: string | null;
|
|
679
679
|
/** Data Extensions */
|
|
680
680
|
extendedFields?: ExtendedFields;
|
|
681
|
-
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction)|[REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
681
|
+
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
682
682
|
tags?: Tags;
|
|
683
683
|
}
|
|
684
684
|
/**
|
|
@@ -839,38 +839,44 @@ export interface BulkUpdateOperationGroupsOptions {
|
|
|
839
839
|
*/
|
|
840
840
|
export declare function bulkDeleteOperationGroups(operationGroupIds: string[]): Promise<NonNullablePaths<BulkDeleteOperationGroupsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`>>;
|
|
841
841
|
/**
|
|
842
|
-
* Synchronously update tags on multiple
|
|
843
|
-
*
|
|
844
|
-
* @param operationGroupIds -
|
|
842
|
+
* Synchronously update tags on multiple operation groups.
|
|
843
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
844
|
+
* @param operationGroupIds - IDs of the operation groups to update tags for.
|
|
845
845
|
* @public
|
|
846
846
|
* @documentationMaturity preview
|
|
847
847
|
* @requiredField operationGroupIds
|
|
848
848
|
* @permissionId RESTAURANTS.OPERATION_GROUP_UPDATE_TAGS
|
|
849
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
850
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
851
|
+
* @applicableIdentity APP
|
|
849
852
|
* @fqn wix.restaurants.v1.OperationGroupService.BulkUpdateOperationGroupTags
|
|
850
853
|
*/
|
|
851
854
|
export declare function bulkUpdateOperationGroupTags(operationGroupIds: string[], options?: BulkUpdateOperationGroupTagsOptions): Promise<NonNullablePaths<BulkUpdateOperationGroupTagsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`>>;
|
|
852
855
|
export interface BulkUpdateOperationGroupTagsOptions {
|
|
853
|
-
/**
|
|
856
|
+
/** Tags to assign to the operation groups. */
|
|
854
857
|
assignTags?: Tags;
|
|
855
|
-
/**
|
|
858
|
+
/** Tags to unassign from the operation groups. */
|
|
856
859
|
unassignTags?: Tags;
|
|
857
860
|
}
|
|
858
861
|
/**
|
|
859
|
-
* Asynchronously update tags on multiple
|
|
860
|
-
*
|
|
861
|
-
*
|
|
862
|
-
* @param filter - Filter
|
|
862
|
+
* Asynchronously update tags on multiple operation groups according to the specified filter.
|
|
863
|
+
* If a filter isn't specified, this method updates all operation groups.
|
|
864
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
865
|
+
* @param filter - Filter that determines which operation groups to update tags for.
|
|
863
866
|
* @public
|
|
864
867
|
* @documentationMaturity preview
|
|
865
868
|
* @requiredField filter
|
|
866
869
|
* @permissionId RESTAURANTS.OPERATION_GROUP_UPDATE_TAGS
|
|
870
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
871
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
872
|
+
* @applicableIdentity APP
|
|
867
873
|
* @fqn wix.restaurants.v1.OperationGroupService.BulkUpdateOperationGroupTagsByFilter
|
|
868
874
|
*/
|
|
869
875
|
export declare function bulkUpdateOperationGroupTagsByFilter(filter: Record<string, any>, options?: BulkUpdateOperationGroupTagsByFilterOptions): Promise<NonNullablePaths<BulkUpdateOperationGroupTagsByFilterResponse, `jobId`>>;
|
|
870
876
|
export interface BulkUpdateOperationGroupTagsByFilterOptions {
|
|
871
|
-
/**
|
|
877
|
+
/** Tags to assign to the operation groups. */
|
|
872
878
|
assignTags?: Tags;
|
|
873
|
-
/**
|
|
879
|
+
/** Tags to unassign from the operation groups. */
|
|
874
880
|
unassignTags?: Tags;
|
|
875
881
|
}
|
|
876
882
|
export {};
|
|
@@ -376,13 +376,16 @@ async function bulkDeleteOperationGroups(operationGroupIds) {
|
|
|
376
376
|
}
|
|
377
377
|
exports.bulkDeleteOperationGroups = bulkDeleteOperationGroups;
|
|
378
378
|
/**
|
|
379
|
-
* Synchronously update tags on multiple
|
|
380
|
-
*
|
|
381
|
-
* @param operationGroupIds -
|
|
379
|
+
* Synchronously update tags on multiple operation groups.
|
|
380
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
381
|
+
* @param operationGroupIds - IDs of the operation groups to update tags for.
|
|
382
382
|
* @public
|
|
383
383
|
* @documentationMaturity preview
|
|
384
384
|
* @requiredField operationGroupIds
|
|
385
385
|
* @permissionId RESTAURANTS.OPERATION_GROUP_UPDATE_TAGS
|
|
386
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
387
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
388
|
+
* @applicableIdentity APP
|
|
386
389
|
* @fqn wix.restaurants.v1.OperationGroupService.BulkUpdateOperationGroupTags
|
|
387
390
|
*/
|
|
388
391
|
async function bulkUpdateOperationGroupTags(operationGroupIds, options) {
|
|
@@ -416,14 +419,17 @@ async function bulkUpdateOperationGroupTags(operationGroupIds, options) {
|
|
|
416
419
|
}
|
|
417
420
|
exports.bulkUpdateOperationGroupTags = bulkUpdateOperationGroupTags;
|
|
418
421
|
/**
|
|
419
|
-
* Asynchronously update tags on multiple
|
|
420
|
-
*
|
|
421
|
-
*
|
|
422
|
-
* @param filter - Filter
|
|
422
|
+
* Asynchronously update tags on multiple operation groups according to the specified filter.
|
|
423
|
+
* If a filter isn't specified, this method updates all operation groups.
|
|
424
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
425
|
+
* @param filter - Filter that determines which operation groups to update tags for.
|
|
423
426
|
* @public
|
|
424
427
|
* @documentationMaturity preview
|
|
425
428
|
* @requiredField filter
|
|
426
429
|
* @permissionId RESTAURANTS.OPERATION_GROUP_UPDATE_TAGS
|
|
430
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
431
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
432
|
+
* @applicableIdentity APP
|
|
427
433
|
* @fqn wix.restaurants.v1.OperationGroupService.BulkUpdateOperationGroupTagsByFilter
|
|
428
434
|
*/
|
|
429
435
|
async function bulkUpdateOperationGroupTagsByFilter(filter, options) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restaurants-v1-operation-group-operation-groups.universal.js","sourceRoot":"","sources":["../../../src/restaurants-v1-operation-group-operation-groups.universal.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"restaurants-v1-operation-group-operation-groups.universal.js","sourceRoot":"","sources":["../../../src/restaurants-v1-operation-group-operation-groups.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -30,13 +30,13 @@ export declare function bulkUpdateOperationGroups(payload: object): RequestOptio
|
|
|
30
30
|
/** Delete multiple OperationGroups in a single request. Works synchronously. */
|
|
31
31
|
export declare function bulkDeleteOperationGroups(payload: object): RequestOptionsFactory<any>;
|
|
32
32
|
/**
|
|
33
|
-
* Synchronously update tags on multiple
|
|
34
|
-
*
|
|
33
|
+
* Synchronously update tags on multiple operation groups.
|
|
34
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
35
35
|
*/
|
|
36
36
|
export declare function bulkUpdateOperationGroupTags(payload: object): RequestOptionsFactory<any>;
|
|
37
37
|
/**
|
|
38
|
-
* Asynchronously update tags on multiple
|
|
39
|
-
*
|
|
40
|
-
*
|
|
38
|
+
* Asynchronously update tags on multiple operation groups according to the specified filter.
|
|
39
|
+
* If a filter isn't specified, this method updates all operation groups.
|
|
40
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
41
41
|
*/
|
|
42
42
|
export declare function bulkUpdateOperationGroupTagsByFilter(payload: object): RequestOptionsFactory<any>;
|
|
@@ -340,8 +340,8 @@ export function bulkDeleteOperationGroups(payload) {
|
|
|
340
340
|
return __bulkDeleteOperationGroups;
|
|
341
341
|
}
|
|
342
342
|
/**
|
|
343
|
-
* Synchronously update tags on multiple
|
|
344
|
-
*
|
|
343
|
+
* Synchronously update tags on multiple operation groups.
|
|
344
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
345
345
|
*/
|
|
346
346
|
export function bulkUpdateOperationGroupTags(payload) {
|
|
347
347
|
function __bulkUpdateOperationGroupTags({ host }) {
|
|
@@ -362,9 +362,9 @@ export function bulkUpdateOperationGroupTags(payload) {
|
|
|
362
362
|
return __bulkUpdateOperationGroupTags;
|
|
363
363
|
}
|
|
364
364
|
/**
|
|
365
|
-
* Asynchronously update tags on multiple
|
|
366
|
-
*
|
|
367
|
-
*
|
|
365
|
+
* Asynchronously update tags on multiple operation groups according to the specified filter.
|
|
366
|
+
* If a filter isn't specified, this method updates all operation groups.
|
|
367
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
368
368
|
*/
|
|
369
369
|
export function bulkUpdateOperationGroupTagsByFilter(payload) {
|
|
370
370
|
function __bulkUpdateOperationGroupTagsByFilter({ host }) {
|
|
@@ -82,19 +82,19 @@ interface BulkDeleteOperationGroupsSignature {
|
|
|
82
82
|
export declare function bulkUpdateOperationGroupTags(httpClient: HttpClient): BulkUpdateOperationGroupTagsSignature;
|
|
83
83
|
interface BulkUpdateOperationGroupTagsSignature {
|
|
84
84
|
/**
|
|
85
|
-
* Synchronously update tags on multiple
|
|
86
|
-
*
|
|
87
|
-
* @param -
|
|
85
|
+
* Synchronously update tags on multiple operation groups.
|
|
86
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
87
|
+
* @param - IDs of the operation groups to update tags for.
|
|
88
88
|
*/
|
|
89
89
|
(operationGroupIds: string[], options?: BulkUpdateOperationGroupTagsOptions | undefined): Promise<BulkUpdateOperationGroupTagsResponse>;
|
|
90
90
|
}
|
|
91
91
|
export declare function bulkUpdateOperationGroupTagsByFilter(httpClient: HttpClient): BulkUpdateOperationGroupTagsByFilterSignature;
|
|
92
92
|
interface BulkUpdateOperationGroupTagsByFilterSignature {
|
|
93
93
|
/**
|
|
94
|
-
* Asynchronously update tags on multiple
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
* @param - Filter
|
|
94
|
+
* Asynchronously update tags on multiple operation groups according to the specified filter.
|
|
95
|
+
* If a filter isn't specified, this method updates all operation groups.
|
|
96
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
97
|
+
* @param - Filter that determines which operation groups to update tags for.
|
|
98
98
|
*/
|
|
99
99
|
(filter: Record<string, any>, options?: BulkUpdateOperationGroupTagsByFilterOptions | undefined): Promise<BulkUpdateOperationGroupTagsByFilterResponse>;
|
|
100
100
|
}
|
|
@@ -36,7 +36,7 @@ export interface OperationGroup {
|
|
|
36
36
|
name?: string | null;
|
|
37
37
|
/** Data Extensions */
|
|
38
38
|
extendedFields?: ExtendedFields;
|
|
39
|
-
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction)|[REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
39
|
+
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
40
40
|
tags?: Tags;
|
|
41
41
|
}
|
|
42
42
|
export interface ExtendedFields {
|
|
@@ -319,42 +319,42 @@ export interface BulkDeleteOperationGroupsResponseBulkOperationGroupResult {
|
|
|
319
319
|
}
|
|
320
320
|
export interface BulkUpdateOperationGroupTagsRequest {
|
|
321
321
|
/**
|
|
322
|
-
*
|
|
322
|
+
* IDs of the operation groups to update tags for.
|
|
323
323
|
* @minSize 1
|
|
324
324
|
* @maxSize 100
|
|
325
325
|
* @format GUID
|
|
326
326
|
*/
|
|
327
327
|
operationGroupIds: string[];
|
|
328
|
-
/**
|
|
328
|
+
/** Tags to assign to the operation groups. */
|
|
329
329
|
assignTags?: Tags;
|
|
330
|
-
/**
|
|
330
|
+
/** Tags to unassign from the operation groups. */
|
|
331
331
|
unassignTags?: Tags;
|
|
332
332
|
}
|
|
333
333
|
export interface BulkUpdateOperationGroupTagsResponse {
|
|
334
334
|
/**
|
|
335
|
-
* Results
|
|
335
|
+
* Results of the bulk update.
|
|
336
336
|
* @minSize 1
|
|
337
337
|
* @maxSize 100
|
|
338
338
|
*/
|
|
339
339
|
results?: BulkUpdateOperationGroupTagsResult[];
|
|
340
|
-
/** Metadata
|
|
340
|
+
/** Metadata for the bulk update. */
|
|
341
341
|
bulkActionMetadata?: BulkActionMetadata;
|
|
342
342
|
}
|
|
343
343
|
export interface BulkUpdateOperationGroupTagsResult {
|
|
344
|
-
/** Metadata
|
|
344
|
+
/** Metadata for the updated operation group. */
|
|
345
345
|
itemMetadata?: ItemMetadata;
|
|
346
346
|
}
|
|
347
347
|
export interface BulkUpdateOperationGroupTagsByFilterRequest {
|
|
348
|
-
/** Filter */
|
|
348
|
+
/** Filter that determines which operation groups to update tags for. */
|
|
349
349
|
filter: Record<string, any> | null;
|
|
350
|
-
/**
|
|
350
|
+
/** Tags to assign to the operation groups. */
|
|
351
351
|
assignTags?: Tags;
|
|
352
|
-
/**
|
|
352
|
+
/** Tags to unassign from the operation groups. */
|
|
353
353
|
unassignTags?: Tags;
|
|
354
354
|
}
|
|
355
355
|
export interface BulkUpdateOperationGroupTagsByFilterResponse {
|
|
356
356
|
/**
|
|
357
|
-
* Job ID
|
|
357
|
+
* Job ID. Pass this ID to Get Async Job ([SDK](https://dev.wix.com/docs/sdk/backend-modules/async-jobs/get-async-job) | [REST](https://dev.wix.com/docs/rest/business-management/async-job/get-async-job)) to track the job's status.
|
|
358
358
|
* @format GUID
|
|
359
359
|
*/
|
|
360
360
|
jobId?: string;
|
|
@@ -37,7 +37,7 @@ export interface OperationGroup {
|
|
|
37
37
|
name?: string | null;
|
|
38
38
|
/** Data Extensions */
|
|
39
39
|
extendedFields?: ExtendedFields;
|
|
40
|
-
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction)|[REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
40
|
+
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
41
41
|
tags?: Tags;
|
|
42
42
|
}
|
|
43
43
|
export interface ExtendedFields {
|
|
@@ -320,42 +320,42 @@ export interface BulkDeleteOperationGroupsResponseBulkOperationGroupResult {
|
|
|
320
320
|
}
|
|
321
321
|
export interface BulkUpdateOperationGroupTagsRequest {
|
|
322
322
|
/**
|
|
323
|
-
*
|
|
323
|
+
* IDs of the operation groups to update tags for.
|
|
324
324
|
* @minSize 1
|
|
325
325
|
* @maxSize 100
|
|
326
326
|
* @format GUID
|
|
327
327
|
*/
|
|
328
328
|
operationGroupIds: string[];
|
|
329
|
-
/**
|
|
329
|
+
/** Tags to assign to the operation groups. */
|
|
330
330
|
assignTags?: Tags;
|
|
331
|
-
/**
|
|
331
|
+
/** Tags to unassign from the operation groups. */
|
|
332
332
|
unassignTags?: Tags;
|
|
333
333
|
}
|
|
334
334
|
export interface BulkUpdateOperationGroupTagsResponse {
|
|
335
335
|
/**
|
|
336
|
-
* Results
|
|
336
|
+
* Results of the bulk update.
|
|
337
337
|
* @minSize 1
|
|
338
338
|
* @maxSize 100
|
|
339
339
|
*/
|
|
340
340
|
results?: BulkUpdateOperationGroupTagsResult[];
|
|
341
|
-
/** Metadata
|
|
341
|
+
/** Metadata for the bulk update. */
|
|
342
342
|
bulkActionMetadata?: BulkActionMetadata;
|
|
343
343
|
}
|
|
344
344
|
export interface BulkUpdateOperationGroupTagsResult {
|
|
345
|
-
/** Metadata
|
|
345
|
+
/** Metadata for the updated operation group. */
|
|
346
346
|
itemMetadata?: ItemMetadata;
|
|
347
347
|
}
|
|
348
348
|
export interface BulkUpdateOperationGroupTagsByFilterRequest {
|
|
349
|
-
/** Filter */
|
|
349
|
+
/** Filter that determines which operation groups to update tags for. */
|
|
350
350
|
filter: Record<string, any> | null;
|
|
351
|
-
/**
|
|
351
|
+
/** Tags to assign to the operation groups. */
|
|
352
352
|
assignTags?: Tags;
|
|
353
|
-
/**
|
|
353
|
+
/** Tags to unassign from the operation groups. */
|
|
354
354
|
unassignTags?: Tags;
|
|
355
355
|
}
|
|
356
356
|
export interface BulkUpdateOperationGroupTagsByFilterResponse {
|
|
357
357
|
/**
|
|
358
|
-
* Job ID
|
|
358
|
+
* Job ID. Pass this ID to Get Async Job ([SDK](https://dev.wix.com/docs/sdk/backend-modules/async-jobs/get-async-job) | [REST](https://dev.wix.com/docs/rest/business-management/async-job/get-async-job)) to track the job's status.
|
|
359
359
|
* @format GUID
|
|
360
360
|
*/
|
|
361
361
|
jobId?: string;
|
|
@@ -678,7 +678,7 @@ export interface UpdateOperationGroup {
|
|
|
678
678
|
name?: string | null;
|
|
679
679
|
/** Data Extensions */
|
|
680
680
|
extendedFields?: ExtendedFields;
|
|
681
|
-
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction)|[REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
681
|
+
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */
|
|
682
682
|
tags?: Tags;
|
|
683
683
|
}
|
|
684
684
|
/**
|
|
@@ -839,38 +839,44 @@ export interface BulkUpdateOperationGroupsOptions {
|
|
|
839
839
|
*/
|
|
840
840
|
export declare function bulkDeleteOperationGroups(operationGroupIds: string[]): Promise<NonNullablePaths<BulkDeleteOperationGroupsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`>>;
|
|
841
841
|
/**
|
|
842
|
-
* Synchronously update tags on multiple
|
|
843
|
-
*
|
|
844
|
-
* @param operationGroupIds -
|
|
842
|
+
* Synchronously update tags on multiple operation groups.
|
|
843
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
844
|
+
* @param operationGroupIds - IDs of the operation groups to update tags for.
|
|
845
845
|
* @public
|
|
846
846
|
* @documentationMaturity preview
|
|
847
847
|
* @requiredField operationGroupIds
|
|
848
848
|
* @permissionId RESTAURANTS.OPERATION_GROUP_UPDATE_TAGS
|
|
849
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
850
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
851
|
+
* @applicableIdentity APP
|
|
849
852
|
* @fqn wix.restaurants.v1.OperationGroupService.BulkUpdateOperationGroupTags
|
|
850
853
|
*/
|
|
851
854
|
export declare function bulkUpdateOperationGroupTags(operationGroupIds: string[], options?: BulkUpdateOperationGroupTagsOptions): Promise<NonNullablePaths<BulkUpdateOperationGroupTagsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`>>;
|
|
852
855
|
export interface BulkUpdateOperationGroupTagsOptions {
|
|
853
|
-
/**
|
|
856
|
+
/** Tags to assign to the operation groups. */
|
|
854
857
|
assignTags?: Tags;
|
|
855
|
-
/**
|
|
858
|
+
/** Tags to unassign from the operation groups. */
|
|
856
859
|
unassignTags?: Tags;
|
|
857
860
|
}
|
|
858
861
|
/**
|
|
859
|
-
* Asynchronously update tags on multiple
|
|
860
|
-
*
|
|
861
|
-
*
|
|
862
|
-
* @param filter - Filter
|
|
862
|
+
* Asynchronously update tags on multiple operation groups according to the specified filter.
|
|
863
|
+
* If a filter isn't specified, this method updates all operation groups.
|
|
864
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
865
|
+
* @param filter - Filter that determines which operation groups to update tags for.
|
|
863
866
|
* @public
|
|
864
867
|
* @documentationMaturity preview
|
|
865
868
|
* @requiredField filter
|
|
866
869
|
* @permissionId RESTAURANTS.OPERATION_GROUP_UPDATE_TAGS
|
|
870
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
871
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
872
|
+
* @applicableIdentity APP
|
|
867
873
|
* @fqn wix.restaurants.v1.OperationGroupService.BulkUpdateOperationGroupTagsByFilter
|
|
868
874
|
*/
|
|
869
875
|
export declare function bulkUpdateOperationGroupTagsByFilter(filter: Record<string, any>, options?: BulkUpdateOperationGroupTagsByFilterOptions): Promise<NonNullablePaths<BulkUpdateOperationGroupTagsByFilterResponse, `jobId`>>;
|
|
870
876
|
export interface BulkUpdateOperationGroupTagsByFilterOptions {
|
|
871
|
-
/**
|
|
877
|
+
/** Tags to assign to the operation groups. */
|
|
872
878
|
assignTags?: Tags;
|
|
873
|
-
/**
|
|
879
|
+
/** Tags to unassign from the operation groups. */
|
|
874
880
|
unassignTags?: Tags;
|
|
875
881
|
}
|
|
876
882
|
export {};
|