@wix/auto_sdk_benefit-programs_transactions 1.0.3 → 1.0.5
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/benefit-programs-v1-transaction-transactions.types.d.ts +13 -13
- package/build/cjs/src/benefit-programs-v1-transaction-transactions.universal.d.ts +13 -13
- package/build/es/src/benefit-programs-v1-transaction-transactions.types.d.ts +13 -13
- package/build/es/src/benefit-programs-v1-transaction-transactions.universal.d.ts +13 -13
- package/build/internal/cjs/src/benefit-programs-v1-transaction-transactions.types.d.ts +13 -13
- package/build/internal/cjs/src/benefit-programs-v1-transaction-transactions.universal.d.ts +13 -13
- package/build/internal/es/src/benefit-programs-v1-transaction-transactions.types.d.ts +13 -13
- package/build/internal/es/src/benefit-programs-v1-transaction-transactions.universal.d.ts +13 -13
- package/package.json +4 -4
|
@@ -26,7 +26,7 @@ export interface Transaction {
|
|
|
26
26
|
*/
|
|
27
27
|
pool?: PoolInfo;
|
|
28
28
|
/**
|
|
29
|
-
* Amount
|
|
29
|
+
* Amount the balance was adjusted in this transaction.
|
|
30
30
|
* @decimalValue options { gte:0, maxScale:4 }
|
|
31
31
|
*/
|
|
32
32
|
amount?: string;
|
|
@@ -85,7 +85,7 @@ export interface PoolInfo {
|
|
|
85
85
|
*/
|
|
86
86
|
poolDefinitionId?: string | null;
|
|
87
87
|
/**
|
|
88
|
-
* ID of the program definition the pool was created from.
|
|
88
|
+
* ID of the program definition containing the pool definition the pool was created from.
|
|
89
89
|
* @format GUID
|
|
90
90
|
* @readonly
|
|
91
91
|
*/
|
|
@@ -360,17 +360,13 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
360
360
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
361
361
|
cursorPaging?: CursorPaging;
|
|
362
362
|
/**
|
|
363
|
-
* Filter object
|
|
364
|
-
*
|
|
365
|
-
*
|
|
366
|
-
* "fieldName2":{"$operator":"value2"}
|
|
367
|
-
* }`
|
|
368
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
363
|
+
* Filter object.
|
|
364
|
+
* See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language)
|
|
365
|
+
* for more information.
|
|
369
366
|
*/
|
|
370
367
|
filter?: Record<string, any> | null;
|
|
371
368
|
/**
|
|
372
|
-
*
|
|
373
|
-
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
369
|
+
* List of sort objects.
|
|
374
370
|
* @maxSize 5
|
|
375
371
|
*/
|
|
376
372
|
sort?: Sorting[];
|
|
@@ -382,11 +378,15 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
382
378
|
}
|
|
383
379
|
export interface Sorting {
|
|
384
380
|
/**
|
|
385
|
-
*
|
|
381
|
+
* Field to sort by.
|
|
386
382
|
* @maxLength 512
|
|
387
383
|
*/
|
|
388
384
|
fieldName?: string;
|
|
389
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* Sort order. Use `ASC` for ascending order or `DESC` for descending order.
|
|
387
|
+
*
|
|
388
|
+
* Default: `ASC`
|
|
389
|
+
*/
|
|
390
390
|
order?: SortOrder;
|
|
391
391
|
}
|
|
392
392
|
export declare enum SortOrder {
|
|
@@ -397,7 +397,7 @@ export declare enum SortOrder {
|
|
|
397
397
|
}
|
|
398
398
|
export interface CursorPaging {
|
|
399
399
|
/**
|
|
400
|
-
* Maximum number of items to return
|
|
400
|
+
* Maximum number of items to return.
|
|
401
401
|
* @max 100
|
|
402
402
|
*/
|
|
403
403
|
limit?: number | null;
|
|
@@ -26,7 +26,7 @@ export interface Transaction {
|
|
|
26
26
|
*/
|
|
27
27
|
pool?: PoolInfo;
|
|
28
28
|
/**
|
|
29
|
-
* Amount
|
|
29
|
+
* Amount the balance was adjusted in this transaction.
|
|
30
30
|
* @decimalValue options { gte:0, maxScale:4 }
|
|
31
31
|
*/
|
|
32
32
|
amount?: string;
|
|
@@ -85,7 +85,7 @@ export interface PoolInfo {
|
|
|
85
85
|
*/
|
|
86
86
|
poolDefinitionId?: string | null;
|
|
87
87
|
/**
|
|
88
|
-
* ID of the program definition the pool was created from.
|
|
88
|
+
* ID of the program definition containing the pool definition the pool was created from.
|
|
89
89
|
* @format GUID
|
|
90
90
|
* @readonly
|
|
91
91
|
*/
|
|
@@ -360,17 +360,13 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
360
360
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
361
361
|
cursorPaging?: CursorPaging;
|
|
362
362
|
/**
|
|
363
|
-
* Filter object
|
|
364
|
-
*
|
|
365
|
-
*
|
|
366
|
-
* "fieldName2":{"$operator":"value2"}
|
|
367
|
-
* }`
|
|
368
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
363
|
+
* Filter object.
|
|
364
|
+
* See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language)
|
|
365
|
+
* for more information.
|
|
369
366
|
*/
|
|
370
367
|
filter?: Record<string, any> | null;
|
|
371
368
|
/**
|
|
372
|
-
*
|
|
373
|
-
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
369
|
+
* List of sort objects.
|
|
374
370
|
* @maxSize 5
|
|
375
371
|
*/
|
|
376
372
|
sort?: Sorting[];
|
|
@@ -382,11 +378,15 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
382
378
|
}
|
|
383
379
|
export interface Sorting {
|
|
384
380
|
/**
|
|
385
|
-
*
|
|
381
|
+
* Field to sort by.
|
|
386
382
|
* @maxLength 512
|
|
387
383
|
*/
|
|
388
384
|
fieldName?: string;
|
|
389
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* Sort order. Use `ASC` for ascending order or `DESC` for descending order.
|
|
387
|
+
*
|
|
388
|
+
* Default: `ASC`
|
|
389
|
+
*/
|
|
390
390
|
order?: SortOrder;
|
|
391
391
|
}
|
|
392
392
|
export declare enum SortOrder {
|
|
@@ -397,7 +397,7 @@ export declare enum SortOrder {
|
|
|
397
397
|
}
|
|
398
398
|
export interface CursorPaging {
|
|
399
399
|
/**
|
|
400
|
-
* Maximum number of items to return
|
|
400
|
+
* Maximum number of items to return.
|
|
401
401
|
* @max 100
|
|
402
402
|
*/
|
|
403
403
|
limit?: number | null;
|
|
@@ -26,7 +26,7 @@ export interface Transaction {
|
|
|
26
26
|
*/
|
|
27
27
|
pool?: PoolInfo;
|
|
28
28
|
/**
|
|
29
|
-
* Amount
|
|
29
|
+
* Amount the balance was adjusted in this transaction.
|
|
30
30
|
* @decimalValue options { gte:0, maxScale:4 }
|
|
31
31
|
*/
|
|
32
32
|
amount?: string;
|
|
@@ -85,7 +85,7 @@ export interface PoolInfo {
|
|
|
85
85
|
*/
|
|
86
86
|
poolDefinitionId?: string | null;
|
|
87
87
|
/**
|
|
88
|
-
* ID of the program definition the pool was created from.
|
|
88
|
+
* ID of the program definition containing the pool definition the pool was created from.
|
|
89
89
|
* @format GUID
|
|
90
90
|
* @readonly
|
|
91
91
|
*/
|
|
@@ -360,17 +360,13 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
360
360
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
361
361
|
cursorPaging?: CursorPaging;
|
|
362
362
|
/**
|
|
363
|
-
* Filter object
|
|
364
|
-
*
|
|
365
|
-
*
|
|
366
|
-
* "fieldName2":{"$operator":"value2"}
|
|
367
|
-
* }`
|
|
368
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
363
|
+
* Filter object.
|
|
364
|
+
* See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language)
|
|
365
|
+
* for more information.
|
|
369
366
|
*/
|
|
370
367
|
filter?: Record<string, any> | null;
|
|
371
368
|
/**
|
|
372
|
-
*
|
|
373
|
-
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
369
|
+
* List of sort objects.
|
|
374
370
|
* @maxSize 5
|
|
375
371
|
*/
|
|
376
372
|
sort?: Sorting[];
|
|
@@ -382,11 +378,15 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
382
378
|
}
|
|
383
379
|
export interface Sorting {
|
|
384
380
|
/**
|
|
385
|
-
*
|
|
381
|
+
* Field to sort by.
|
|
386
382
|
* @maxLength 512
|
|
387
383
|
*/
|
|
388
384
|
fieldName?: string;
|
|
389
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* Sort order. Use `ASC` for ascending order or `DESC` for descending order.
|
|
387
|
+
*
|
|
388
|
+
* Default: `ASC`
|
|
389
|
+
*/
|
|
390
390
|
order?: SortOrder;
|
|
391
391
|
}
|
|
392
392
|
export declare enum SortOrder {
|
|
@@ -397,7 +397,7 @@ export declare enum SortOrder {
|
|
|
397
397
|
}
|
|
398
398
|
export interface CursorPaging {
|
|
399
399
|
/**
|
|
400
|
-
* Maximum number of items to return
|
|
400
|
+
* Maximum number of items to return.
|
|
401
401
|
* @max 100
|
|
402
402
|
*/
|
|
403
403
|
limit?: number | null;
|
|
@@ -26,7 +26,7 @@ export interface Transaction {
|
|
|
26
26
|
*/
|
|
27
27
|
pool?: PoolInfo;
|
|
28
28
|
/**
|
|
29
|
-
* Amount
|
|
29
|
+
* Amount the balance was adjusted in this transaction.
|
|
30
30
|
* @decimalValue options { gte:0, maxScale:4 }
|
|
31
31
|
*/
|
|
32
32
|
amount?: string;
|
|
@@ -85,7 +85,7 @@ export interface PoolInfo {
|
|
|
85
85
|
*/
|
|
86
86
|
poolDefinitionId?: string | null;
|
|
87
87
|
/**
|
|
88
|
-
* ID of the program definition the pool was created from.
|
|
88
|
+
* ID of the program definition containing the pool definition the pool was created from.
|
|
89
89
|
* @format GUID
|
|
90
90
|
* @readonly
|
|
91
91
|
*/
|
|
@@ -360,17 +360,13 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
360
360
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
361
361
|
cursorPaging?: CursorPaging;
|
|
362
362
|
/**
|
|
363
|
-
* Filter object
|
|
364
|
-
*
|
|
365
|
-
*
|
|
366
|
-
* "fieldName2":{"$operator":"value2"}
|
|
367
|
-
* }`
|
|
368
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
363
|
+
* Filter object.
|
|
364
|
+
* See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language)
|
|
365
|
+
* for more information.
|
|
369
366
|
*/
|
|
370
367
|
filter?: Record<string, any> | null;
|
|
371
368
|
/**
|
|
372
|
-
*
|
|
373
|
-
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
369
|
+
* List of sort objects.
|
|
374
370
|
* @maxSize 5
|
|
375
371
|
*/
|
|
376
372
|
sort?: Sorting[];
|
|
@@ -382,11 +378,15 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
382
378
|
}
|
|
383
379
|
export interface Sorting {
|
|
384
380
|
/**
|
|
385
|
-
*
|
|
381
|
+
* Field to sort by.
|
|
386
382
|
* @maxLength 512
|
|
387
383
|
*/
|
|
388
384
|
fieldName?: string;
|
|
389
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* Sort order. Use `ASC` for ascending order or `DESC` for descending order.
|
|
387
|
+
*
|
|
388
|
+
* Default: `ASC`
|
|
389
|
+
*/
|
|
390
390
|
order?: SortOrder;
|
|
391
391
|
}
|
|
392
392
|
export declare enum SortOrder {
|
|
@@ -397,7 +397,7 @@ export declare enum SortOrder {
|
|
|
397
397
|
}
|
|
398
398
|
export interface CursorPaging {
|
|
399
399
|
/**
|
|
400
|
-
* Maximum number of items to return
|
|
400
|
+
* Maximum number of items to return.
|
|
401
401
|
* @max 100
|
|
402
402
|
*/
|
|
403
403
|
limit?: number | null;
|
|
@@ -26,7 +26,7 @@ export interface Transaction {
|
|
|
26
26
|
*/
|
|
27
27
|
pool?: PoolInfo;
|
|
28
28
|
/**
|
|
29
|
-
* Amount
|
|
29
|
+
* Amount the balance was adjusted in this transaction.
|
|
30
30
|
* @decimalValue options { gte:0, maxScale:4 }
|
|
31
31
|
*/
|
|
32
32
|
amount?: string;
|
|
@@ -85,7 +85,7 @@ export interface PoolInfo {
|
|
|
85
85
|
*/
|
|
86
86
|
poolDefinitionId?: string | null;
|
|
87
87
|
/**
|
|
88
|
-
* ID of the program definition the pool was created from.
|
|
88
|
+
* ID of the program definition containing the pool definition the pool was created from.
|
|
89
89
|
* @format GUID
|
|
90
90
|
* @readonly
|
|
91
91
|
*/
|
|
@@ -360,17 +360,13 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
360
360
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
361
361
|
cursorPaging?: CursorPaging;
|
|
362
362
|
/**
|
|
363
|
-
* Filter object
|
|
364
|
-
*
|
|
365
|
-
*
|
|
366
|
-
* "fieldName2":{"$operator":"value2"}
|
|
367
|
-
* }`
|
|
368
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
363
|
+
* Filter object.
|
|
364
|
+
* See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language)
|
|
365
|
+
* for more information.
|
|
369
366
|
*/
|
|
370
367
|
filter?: Record<string, any> | null;
|
|
371
368
|
/**
|
|
372
|
-
*
|
|
373
|
-
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
369
|
+
* List of sort objects.
|
|
374
370
|
* @maxSize 5
|
|
375
371
|
*/
|
|
376
372
|
sort?: Sorting[];
|
|
@@ -382,11 +378,15 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
382
378
|
}
|
|
383
379
|
export interface Sorting {
|
|
384
380
|
/**
|
|
385
|
-
*
|
|
381
|
+
* Field to sort by.
|
|
386
382
|
* @maxLength 512
|
|
387
383
|
*/
|
|
388
384
|
fieldName?: string;
|
|
389
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* Sort order. Use `ASC` for ascending order or `DESC` for descending order.
|
|
387
|
+
*
|
|
388
|
+
* Default: `ASC`
|
|
389
|
+
*/
|
|
390
390
|
order?: SortOrder;
|
|
391
391
|
}
|
|
392
392
|
export declare enum SortOrder {
|
|
@@ -397,7 +397,7 @@ export declare enum SortOrder {
|
|
|
397
397
|
}
|
|
398
398
|
export interface CursorPaging {
|
|
399
399
|
/**
|
|
400
|
-
* Maximum number of items to return
|
|
400
|
+
* Maximum number of items to return.
|
|
401
401
|
* @max 100
|
|
402
402
|
*/
|
|
403
403
|
limit?: number | null;
|
|
@@ -26,7 +26,7 @@ export interface Transaction {
|
|
|
26
26
|
*/
|
|
27
27
|
pool?: PoolInfo;
|
|
28
28
|
/**
|
|
29
|
-
* Amount
|
|
29
|
+
* Amount the balance was adjusted in this transaction.
|
|
30
30
|
* @decimalValue options { gte:0, maxScale:4 }
|
|
31
31
|
*/
|
|
32
32
|
amount?: string;
|
|
@@ -85,7 +85,7 @@ export interface PoolInfo {
|
|
|
85
85
|
*/
|
|
86
86
|
poolDefinitionId?: string | null;
|
|
87
87
|
/**
|
|
88
|
-
* ID of the program definition the pool was created from.
|
|
88
|
+
* ID of the program definition containing the pool definition the pool was created from.
|
|
89
89
|
* @format GUID
|
|
90
90
|
* @readonly
|
|
91
91
|
*/
|
|
@@ -360,17 +360,13 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
360
360
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
361
361
|
cursorPaging?: CursorPaging;
|
|
362
362
|
/**
|
|
363
|
-
* Filter object
|
|
364
|
-
*
|
|
365
|
-
*
|
|
366
|
-
* "fieldName2":{"$operator":"value2"}
|
|
367
|
-
* }`
|
|
368
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
363
|
+
* Filter object.
|
|
364
|
+
* See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language)
|
|
365
|
+
* for more information.
|
|
369
366
|
*/
|
|
370
367
|
filter?: Record<string, any> | null;
|
|
371
368
|
/**
|
|
372
|
-
*
|
|
373
|
-
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
369
|
+
* List of sort objects.
|
|
374
370
|
* @maxSize 5
|
|
375
371
|
*/
|
|
376
372
|
sort?: Sorting[];
|
|
@@ -382,11 +378,15 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
382
378
|
}
|
|
383
379
|
export interface Sorting {
|
|
384
380
|
/**
|
|
385
|
-
*
|
|
381
|
+
* Field to sort by.
|
|
386
382
|
* @maxLength 512
|
|
387
383
|
*/
|
|
388
384
|
fieldName?: string;
|
|
389
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* Sort order. Use `ASC` for ascending order or `DESC` for descending order.
|
|
387
|
+
*
|
|
388
|
+
* Default: `ASC`
|
|
389
|
+
*/
|
|
390
390
|
order?: SortOrder;
|
|
391
391
|
}
|
|
392
392
|
export declare enum SortOrder {
|
|
@@ -397,7 +397,7 @@ export declare enum SortOrder {
|
|
|
397
397
|
}
|
|
398
398
|
export interface CursorPaging {
|
|
399
399
|
/**
|
|
400
|
-
* Maximum number of items to return
|
|
400
|
+
* Maximum number of items to return.
|
|
401
401
|
* @max 100
|
|
402
402
|
*/
|
|
403
403
|
limit?: number | null;
|
|
@@ -26,7 +26,7 @@ export interface Transaction {
|
|
|
26
26
|
*/
|
|
27
27
|
pool?: PoolInfo;
|
|
28
28
|
/**
|
|
29
|
-
* Amount
|
|
29
|
+
* Amount the balance was adjusted in this transaction.
|
|
30
30
|
* @decimalValue options { gte:0, maxScale:4 }
|
|
31
31
|
*/
|
|
32
32
|
amount?: string;
|
|
@@ -85,7 +85,7 @@ export interface PoolInfo {
|
|
|
85
85
|
*/
|
|
86
86
|
poolDefinitionId?: string | null;
|
|
87
87
|
/**
|
|
88
|
-
* ID of the program definition the pool was created from.
|
|
88
|
+
* ID of the program definition containing the pool definition the pool was created from.
|
|
89
89
|
* @format GUID
|
|
90
90
|
* @readonly
|
|
91
91
|
*/
|
|
@@ -360,17 +360,13 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
360
360
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
361
361
|
cursorPaging?: CursorPaging;
|
|
362
362
|
/**
|
|
363
|
-
* Filter object
|
|
364
|
-
*
|
|
365
|
-
*
|
|
366
|
-
* "fieldName2":{"$operator":"value2"}
|
|
367
|
-
* }`
|
|
368
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
363
|
+
* Filter object.
|
|
364
|
+
* See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language)
|
|
365
|
+
* for more information.
|
|
369
366
|
*/
|
|
370
367
|
filter?: Record<string, any> | null;
|
|
371
368
|
/**
|
|
372
|
-
*
|
|
373
|
-
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
369
|
+
* List of sort objects.
|
|
374
370
|
* @maxSize 5
|
|
375
371
|
*/
|
|
376
372
|
sort?: Sorting[];
|
|
@@ -382,11 +378,15 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
382
378
|
}
|
|
383
379
|
export interface Sorting {
|
|
384
380
|
/**
|
|
385
|
-
*
|
|
381
|
+
* Field to sort by.
|
|
386
382
|
* @maxLength 512
|
|
387
383
|
*/
|
|
388
384
|
fieldName?: string;
|
|
389
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* Sort order. Use `ASC` for ascending order or `DESC` for descending order.
|
|
387
|
+
*
|
|
388
|
+
* Default: `ASC`
|
|
389
|
+
*/
|
|
390
390
|
order?: SortOrder;
|
|
391
391
|
}
|
|
392
392
|
export declare enum SortOrder {
|
|
@@ -397,7 +397,7 @@ export declare enum SortOrder {
|
|
|
397
397
|
}
|
|
398
398
|
export interface CursorPaging {
|
|
399
399
|
/**
|
|
400
|
-
* Maximum number of items to return
|
|
400
|
+
* Maximum number of items to return.
|
|
401
401
|
* @max 100
|
|
402
402
|
*/
|
|
403
403
|
limit?: number | null;
|
|
@@ -26,7 +26,7 @@ export interface Transaction {
|
|
|
26
26
|
*/
|
|
27
27
|
pool?: PoolInfo;
|
|
28
28
|
/**
|
|
29
|
-
* Amount
|
|
29
|
+
* Amount the balance was adjusted in this transaction.
|
|
30
30
|
* @decimalValue options { gte:0, maxScale:4 }
|
|
31
31
|
*/
|
|
32
32
|
amount?: string;
|
|
@@ -85,7 +85,7 @@ export interface PoolInfo {
|
|
|
85
85
|
*/
|
|
86
86
|
poolDefinitionId?: string | null;
|
|
87
87
|
/**
|
|
88
|
-
* ID of the program definition the pool was created from.
|
|
88
|
+
* ID of the program definition containing the pool definition the pool was created from.
|
|
89
89
|
* @format GUID
|
|
90
90
|
* @readonly
|
|
91
91
|
*/
|
|
@@ -360,17 +360,13 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
360
360
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
361
361
|
cursorPaging?: CursorPaging;
|
|
362
362
|
/**
|
|
363
|
-
* Filter object
|
|
364
|
-
*
|
|
365
|
-
*
|
|
366
|
-
* "fieldName2":{"$operator":"value2"}
|
|
367
|
-
* }`
|
|
368
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
363
|
+
* Filter object.
|
|
364
|
+
* See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language)
|
|
365
|
+
* for more information.
|
|
369
366
|
*/
|
|
370
367
|
filter?: Record<string, any> | null;
|
|
371
368
|
/**
|
|
372
|
-
*
|
|
373
|
-
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
369
|
+
* List of sort objects.
|
|
374
370
|
* @maxSize 5
|
|
375
371
|
*/
|
|
376
372
|
sort?: Sorting[];
|
|
@@ -382,11 +378,15 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
382
378
|
}
|
|
383
379
|
export interface Sorting {
|
|
384
380
|
/**
|
|
385
|
-
*
|
|
381
|
+
* Field to sort by.
|
|
386
382
|
* @maxLength 512
|
|
387
383
|
*/
|
|
388
384
|
fieldName?: string;
|
|
389
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* Sort order. Use `ASC` for ascending order or `DESC` for descending order.
|
|
387
|
+
*
|
|
388
|
+
* Default: `ASC`
|
|
389
|
+
*/
|
|
390
390
|
order?: SortOrder;
|
|
391
391
|
}
|
|
392
392
|
export declare enum SortOrder {
|
|
@@ -397,7 +397,7 @@ export declare enum SortOrder {
|
|
|
397
397
|
}
|
|
398
398
|
export interface CursorPaging {
|
|
399
399
|
/**
|
|
400
|
-
* Maximum number of items to return
|
|
400
|
+
* Maximum number of items to return.
|
|
401
401
|
* @max 100
|
|
402
402
|
*/
|
|
403
403
|
limit?: number | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_benefit-programs_transactions",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"service-plugins"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@wix/sdk-runtime": "^0.3.
|
|
32
|
-
"@wix/sdk-types": "^1.
|
|
31
|
+
"@wix/sdk-runtime": "^0.3.42",
|
|
32
|
+
"@wix/sdk-types": "^1.13.9"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"typescript": "^5.3.2"
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": "wix.benefit_programs.v1.transaction"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "ec037ae06ffa1c0eaed711b6d09210dee6c978440fad10a565c6bf67"
|
|
52
52
|
}
|