@wix/auto_sdk_get-paid_billable-items 1.0.58 → 1.0.60
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/{billable-items-v1-billable-item-billable-items.universal-BP3V7EYy.d.ts → billable-items-v1-billable-item-billable-items.universal-CL50BvcU.d.ts} +4 -36
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/cjs/schemas.d.ts +804 -0
- package/build/cjs/schemas.js +1346 -0
- package/build/cjs/schemas.js.map +1 -0
- package/build/es/{billable-items-v1-billable-item-billable-items.universal-BP3V7EYy.d.mts → billable-items-v1-billable-item-billable-items.universal-CL50BvcU.d.mts} +4 -36
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/es/schemas.d.mts +804 -0
- package/build/es/schemas.mjs +1288 -0
- package/build/es/schemas.mjs.map +1 -0
- package/build/internal/cjs/{billable-items-v1-billable-item-billable-items.universal-BP3V7EYy.d.ts → billable-items-v1-billable-item-billable-items.universal-CL50BvcU.d.ts} +4 -36
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/cjs/schemas.d.ts +804 -0
- package/build/internal/cjs/schemas.js +1346 -0
- package/build/internal/cjs/schemas.js.map +1 -0
- package/build/internal/es/{billable-items-v1-billable-item-billable-items.universal-BP3V7EYy.d.mts → billable-items-v1-billable-item-billable-items.universal-CL50BvcU.d.mts} +4 -36
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/build/internal/es/schemas.d.mts +804 -0
- package/build/internal/es/schemas.mjs +1288 -0
- package/build/internal/es/schemas.mjs.map +1 -0
- package/package.json +11 -4
- package/schemas/package.json +3 -0
|
@@ -1187,7 +1187,6 @@ interface BillableItemCreatedEnvelope {
|
|
|
1187
1187
|
* @webhook
|
|
1188
1188
|
* @eventType wix.billable_items.v1.billable_item_created
|
|
1189
1189
|
* @slug created
|
|
1190
|
-
* @documentationMaturity preview
|
|
1191
1190
|
*/
|
|
1192
1191
|
declare function onBillableItemCreated(handler: (event: BillableItemCreatedEnvelope) => void | Promise<void>): void;
|
|
1193
1192
|
interface BillableItemDeletedEnvelope {
|
|
@@ -1206,7 +1205,6 @@ interface BillableItemDeletedEnvelope {
|
|
|
1206
1205
|
* @webhook
|
|
1207
1206
|
* @eventType wix.billable_items.v1.billable_item_deleted
|
|
1208
1207
|
* @slug deleted
|
|
1209
|
-
* @documentationMaturity preview
|
|
1210
1208
|
*/
|
|
1211
1209
|
declare function onBillableItemDeleted(handler: (event: BillableItemDeletedEnvelope) => void | Promise<void>): void;
|
|
1212
1210
|
interface BillableItemUpdatedEnvelope {
|
|
@@ -1227,14 +1225,12 @@ interface BillableItemUpdatedEnvelope {
|
|
|
1227
1225
|
* @webhook
|
|
1228
1226
|
* @eventType wix.billable_items.v1.billable_item_updated
|
|
1229
1227
|
* @slug updated
|
|
1230
|
-
* @documentationMaturity preview
|
|
1231
1228
|
*/
|
|
1232
1229
|
declare function onBillableItemUpdated(handler: (event: BillableItemUpdatedEnvelope) => void | Promise<void>): void;
|
|
1233
1230
|
/**
|
|
1234
1231
|
* Creates a billable item.
|
|
1235
1232
|
* @param billableItem - Billable item to create.
|
|
1236
1233
|
* @public
|
|
1237
|
-
* @documentationMaturity preview
|
|
1238
1234
|
* @requiredField billableItem
|
|
1239
1235
|
* @requiredField billableItem.name
|
|
1240
1236
|
* @requiredField billableItem.price
|
|
@@ -1250,7 +1246,6 @@ declare function createBillableItem(billableItem: NonNullablePaths<BillableItem,
|
|
|
1250
1246
|
* Retrieves a billable item.
|
|
1251
1247
|
* @param billableItemId - Billable item ID.
|
|
1252
1248
|
* @public
|
|
1253
|
-
* @documentationMaturity preview
|
|
1254
1249
|
* @requiredField billableItemId
|
|
1255
1250
|
* @permissionId BILLABLE_ITEMS.BILLABLE_ITEM_READ
|
|
1256
1251
|
* @applicableIdentity APP
|
|
@@ -1269,7 +1264,6 @@ declare function getBillableItem(billableItemId: string): Promise<NonNullablePat
|
|
|
1269
1264
|
* and prevents unintended overwrites.
|
|
1270
1265
|
* @param _id - Billable item ID.
|
|
1271
1266
|
* @public
|
|
1272
|
-
* @documentationMaturity preview
|
|
1273
1267
|
* @requiredField _id
|
|
1274
1268
|
* @requiredField billableItem
|
|
1275
1269
|
* @requiredField billableItem.name
|
|
@@ -1351,7 +1345,6 @@ interface UpdateBillableItem {
|
|
|
1351
1345
|
* Permanently deletes a billable item.
|
|
1352
1346
|
* @param billableItemId - Billable item ID to delete.
|
|
1353
1347
|
* @public
|
|
1354
|
-
* @documentationMaturity preview
|
|
1355
1348
|
* @requiredField billableItemId
|
|
1356
1349
|
* @permissionId BILLABLE_ITEMS.BILLABLE_ITEM_DELETE
|
|
1357
1350
|
* @applicableIdentity APP
|
|
@@ -1365,7 +1358,6 @@ declare function deleteBillableItem(billableItemId: string): Promise<void>;
|
|
|
1365
1358
|
*
|
|
1366
1359
|
* To learn how to query BillableItems, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
|
|
1367
1360
|
* @public
|
|
1368
|
-
* @documentationMaturity preview
|
|
1369
1361
|
* @permissionId BILLABLE_ITEMS.BILLABLE_ITEM_READ
|
|
1370
1362
|
* @applicableIdentity APP
|
|
1371
1363
|
* @fqn wix.billable_items.v1.BillableItems.QueryBillableItems
|
|
@@ -1387,65 +1379,46 @@ interface BillableItemsQueryResult extends QueryCursorResult {
|
|
|
1387
1379
|
interface BillableItemsQueryBuilder {
|
|
1388
1380
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
1389
1381
|
* @param value - Value to compare against.
|
|
1390
|
-
* @documentationMaturity preview
|
|
1391
1382
|
*/
|
|
1392
1383
|
eq: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId' | 'image' | 'tags', value: any) => BillableItemsQueryBuilder;
|
|
1393
1384
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
1394
1385
|
* @param value - Value to compare against.
|
|
1395
|
-
* @documentationMaturity preview
|
|
1396
1386
|
*/
|
|
1397
1387
|
ne: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId' | 'image' | 'tags', value: any) => BillableItemsQueryBuilder;
|
|
1398
1388
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
1399
1389
|
* @param value - Value to compare against.
|
|
1400
|
-
* @documentationMaturity preview
|
|
1401
1390
|
*/
|
|
1402
1391
|
ge: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId', value: any) => BillableItemsQueryBuilder;
|
|
1403
1392
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
1404
1393
|
* @param value - Value to compare against.
|
|
1405
|
-
* @documentationMaturity preview
|
|
1406
1394
|
*/
|
|
1407
1395
|
gt: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId', value: any) => BillableItemsQueryBuilder;
|
|
1408
1396
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
1409
1397
|
* @param value - Value to compare against.
|
|
1410
|
-
* @documentationMaturity preview
|
|
1411
1398
|
*/
|
|
1412
1399
|
le: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId', value: any) => BillableItemsQueryBuilder;
|
|
1413
1400
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
1414
1401
|
* @param value - Value to compare against.
|
|
1415
|
-
* @documentationMaturity preview
|
|
1416
1402
|
*/
|
|
1417
1403
|
lt: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId', value: any) => BillableItemsQueryBuilder;
|
|
1418
1404
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
1419
1405
|
* @param string - String to compare against. Case-insensitive.
|
|
1420
|
-
* @documentationMaturity preview
|
|
1421
1406
|
*/
|
|
1422
1407
|
startsWith: (propertyName: '_id' | 'name' | 'description' | 'price' | 'taxGroupId', value: string) => BillableItemsQueryBuilder;
|
|
1423
1408
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
1424
1409
|
* @param values - List of values to compare against.
|
|
1425
|
-
* @documentationMaturity preview
|
|
1426
1410
|
*/
|
|
1427
1411
|
hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId' | 'image' | 'tags', value: any[]) => BillableItemsQueryBuilder;
|
|
1428
|
-
/** @documentationMaturity preview */
|
|
1429
1412
|
in: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId' | 'image' | 'tags', value: any) => BillableItemsQueryBuilder;
|
|
1430
|
-
/** @documentationMaturity preview */
|
|
1431
1413
|
exists: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId' | 'image' | 'tags', value: boolean) => BillableItemsQueryBuilder;
|
|
1432
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
1433
|
-
* @documentationMaturity preview
|
|
1434
|
-
*/
|
|
1414
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
1435
1415
|
ascending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId' | 'image' | 'tags'>) => BillableItemsQueryBuilder;
|
|
1436
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
1437
|
-
* @documentationMaturity preview
|
|
1438
|
-
*/
|
|
1416
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
1439
1417
|
descending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'price' | 'taxGroupId' | 'image' | 'tags'>) => BillableItemsQueryBuilder;
|
|
1440
|
-
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
1441
|
-
* @documentationMaturity preview
|
|
1442
|
-
*/
|
|
1418
|
+
/** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
|
|
1443
1419
|
limit: (limit: number) => BillableItemsQueryBuilder;
|
|
1444
|
-
/** @param cursor - A pointer to specific record
|
|
1445
|
-
* @documentationMaturity preview
|
|
1446
|
-
*/
|
|
1420
|
+
/** @param cursor - A pointer to specific record */
|
|
1447
1421
|
skipTo: (cursor: string) => BillableItemsQueryBuilder;
|
|
1448
|
-
/** @documentationMaturity preview */
|
|
1449
1422
|
find: () => Promise<BillableItemsQueryResult>;
|
|
1450
1423
|
}
|
|
1451
1424
|
/**
|
|
@@ -1538,7 +1511,6 @@ declare const utils: {
|
|
|
1538
1511
|
* Create multiple billable items.
|
|
1539
1512
|
* @param billableItems - List of billable items to create.
|
|
1540
1513
|
* @public
|
|
1541
|
-
* @documentationMaturity preview
|
|
1542
1514
|
* @requiredField billableItems
|
|
1543
1515
|
* @param options - Field options.
|
|
1544
1516
|
* @permissionId BILLABLE_ITEMS.BILLABLE_ITEM_CREATE
|
|
@@ -1554,7 +1526,6 @@ interface BulkCreateBillableItemsOptions {
|
|
|
1554
1526
|
* Updates multiple billable items.
|
|
1555
1527
|
* @param billableItems - Billable items to update.
|
|
1556
1528
|
* @public
|
|
1557
|
-
* @documentationMaturity preview
|
|
1558
1529
|
* @requiredField billableItems
|
|
1559
1530
|
* @requiredField billableItems.billableItem
|
|
1560
1531
|
* @requiredField billableItems.billableItem._id
|
|
@@ -1573,7 +1544,6 @@ interface BulkUpdateBillableItemsOptions {
|
|
|
1573
1544
|
* Delete multiple billable items.
|
|
1574
1545
|
* @param billableItemIds - Billable item IDs to delete.
|
|
1575
1546
|
* @public
|
|
1576
|
-
* @documentationMaturity preview
|
|
1577
1547
|
* @requiredField billableItemIds
|
|
1578
1548
|
* @permissionId BILLABLE_ITEMS.BILLABLE_ITEM_DELETE
|
|
1579
1549
|
* @applicableIdentity APP
|
|
@@ -1585,7 +1555,6 @@ declare function bulkDeleteBillableItems(billableItemIds: string[]): Promise<Non
|
|
|
1585
1555
|
* A tag that appears both in the list of assign and unassign tags, will be assigned.
|
|
1586
1556
|
* @param billableItemIds - IDs of billable items which tags will be updated.
|
|
1587
1557
|
* @public
|
|
1588
|
-
* @documentationMaturity preview
|
|
1589
1558
|
* @requiredField billableItemIds
|
|
1590
1559
|
* @param options - Field options.
|
|
1591
1560
|
* @permissionId BILLABLE_ITEMS.BILLABLE_ITEM_UPDATE_TAGS
|
|
@@ -1611,7 +1580,6 @@ interface BulkUpdateBillableItemTagsOptions {
|
|
|
1611
1580
|
* Specify the returned jobId in 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.
|
|
1612
1581
|
* @param filter - Filter to select relevant billable items.
|
|
1613
1582
|
* @public
|
|
1614
|
-
* @documentationMaturity preview
|
|
1615
1583
|
* @requiredField filter
|
|
1616
1584
|
* @param options - Field options.
|
|
1617
1585
|
* @permissionId BILLABLE_ITEMS.BILLABLE_ITEM_UPDATE_TAGS
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { B as BillableItem, C as CreateBillableItemApplicationErrors, U as UpdateBillableItem, a as BulkCreateBillableItemsOptions, b as BulkCreateBillableItemsResponse, M as MaskedBillableItem, c as BulkUpdateBillableItemsOptions, d as BulkUpdateBillableItemsResponse, e as BulkDeleteBillableItemsResponse, f as BulkUpdateBillableItemTagsOptions, g as BulkUpdateBillableItemTagsResponse, h as BulkUpdateBillableItemTagsApplicationErrors, i as BulkUpdateBillableItemTagsByFilterOptions, j as BulkUpdateBillableItemTagsByFilterResponse, k as BulkUpdateBillableItemTagsByFilterApplicationErrors, l as BillableItemSearch, S as SearchBillableItemsResponse, m as BillableItemCreatedEnvelope, n as BillableItemDeletedEnvelope, o as BillableItemUpdatedEnvelope, p as BillableItemsQueryBuilder, q as BillableItemQuery, t as typedQueryBillableItems } from './billable-items-v1-billable-item-billable-items.universal-
|
|
3
|
-
export { P as AccountInfo, b2 as AccountInfoMetadata, J as ActionEvent, at as Aggregation, aH as AggregationData, au as AggregationKindOneOf, a_ as AggregationResults, a$ as AggregationResultsResultOneOf, aO as AggregationResultsScalarResult, A as AggregationType, bf as AggregationTypeWithLiterals, ag as ApplicationError, b0 as BaseEventMetadata, b4 as BillableItemQuerySpec, b5 as BillableItemSearchSpec, b3 as BillableItemsQueryResult, ai as BulkActionMetadata, ah as BulkBillableItemResult, ae as BulkCreateBillableItemsRequest, al as BulkDeleteBillableItemsRequest, am as BulkDeleteBillableItemsResponseBulkBillableItemResult, ap as BulkUpdateBillableItemTagsByFilterRequest, an as BulkUpdateBillableItemTagsRequest, ao as BulkUpdateBillableItemTagsResult, aj as BulkUpdateBillableItemsRequest, ak as BulkUpdateBillableItemsResponseBulkBillableItemResult, bh as CommonQueryWithEntityContext, bi as CommonSearchWithEntityContext, Q as CreateBillableItemRequest, V as CreateBillableItemResponse, a5 as CursorPaging, a7 as CursorPagingMetadata, a2 as CursorQuery, a3 as CursorQueryPagingMethodOneOf, ar as CursorSearch, as as CursorSearchPagingMethodOneOf, a8 as Cursors, aB as DateHistogramAggregation, aW as DateHistogramResult, aY as DateHistogramResults, $ as DeleteBillableItemRequest, a0 as DeleteBillableItemResponse, D as DomainEvent, z as DomainEventBodyOneOf, F as EntityCreatedEvent, H as EntityDeletedEvent, G as EntityUpdatedEvent, b1 as EventMetadata, E as ExtendedFields, X as GetBillableItemRequest, Y as GetBillableItemResponse, aX as GroupByValueResults, L as IdentificationData, O as IdentificationDataIdOneOf, aw as IncludeMissingValuesOptions, ac as InternalCursorPaging, aa as InternalCursorQuery, ab as InternalCursorQueryPagingMethodOneOf, a9 as InternalQueryBillableItemsRequest, ad as InternalQueryBillableItemsResponse, I as Interval, be as IntervalWithLiterals, af as ItemMetadata, K as MessageEnvelope, v as MissingValues, bb as MissingValuesWithLiterals, x as Mode, bg as ModeWithLiterals, aE as NestedAggregation, aC as NestedAggregationItem, aD as NestedAggregationItemKindOneOf, aK as NestedAggregationResults, aL as NestedAggregationResultsResultOneOf, N as NestedAggregationType, bd as NestedAggregationTypeWithLiterals, aT as NestedResultValue, aU as NestedResultValueResultOneOf, aZ as NestedResults, aP as NestedValueAggregationResult, aG as PagingMetadataV2, a1 as QueryBillableItemsRequest, a6 as QueryBillableItemsResponse, az as RangeAggregation, aJ as RangeAggregationResult, av as RangeBucket, aR as RangeResult, aN as RangeResults, R as RestoreInfo, aV as Results, aA as ScalarAggregation, aS as ScalarResult, w as ScalarType, bc as ScalarTypeWithLiterals, aq as SearchBillableItemsRequest, aF as SearchDetails, u as SortDirection, ba as SortDirectionWithLiterals, r as SortOrder, b8 as SortOrderWithLiterals, s as SortType, b9 as SortTypeWithLiterals, a4 as Sorting, y as TagList, T as Tags, Z as UpdateBillableItemRequest, _ as UpdateBillableItemResponse, ax as ValueAggregation, ay as ValueAggregationOptionsOneOf, aI as ValueAggregationResult, aQ as ValueResult, aM as ValueResults, W as WebhookIdentityType, b7 as WebhookIdentityTypeWithLiterals, b6 as utils } from './billable-items-v1-billable-item-billable-items.universal-
|
|
2
|
+
import { B as BillableItem, C as CreateBillableItemApplicationErrors, U as UpdateBillableItem, a as BulkCreateBillableItemsOptions, b as BulkCreateBillableItemsResponse, M as MaskedBillableItem, c as BulkUpdateBillableItemsOptions, d as BulkUpdateBillableItemsResponse, e as BulkDeleteBillableItemsResponse, f as BulkUpdateBillableItemTagsOptions, g as BulkUpdateBillableItemTagsResponse, h as BulkUpdateBillableItemTagsApplicationErrors, i as BulkUpdateBillableItemTagsByFilterOptions, j as BulkUpdateBillableItemTagsByFilterResponse, k as BulkUpdateBillableItemTagsByFilterApplicationErrors, l as BillableItemSearch, S as SearchBillableItemsResponse, m as BillableItemCreatedEnvelope, n as BillableItemDeletedEnvelope, o as BillableItemUpdatedEnvelope, p as BillableItemsQueryBuilder, q as BillableItemQuery, t as typedQueryBillableItems } from './billable-items-v1-billable-item-billable-items.universal-CL50BvcU.js';
|
|
3
|
+
export { P as AccountInfo, b2 as AccountInfoMetadata, J as ActionEvent, at as Aggregation, aH as AggregationData, au as AggregationKindOneOf, a_ as AggregationResults, a$ as AggregationResultsResultOneOf, aO as AggregationResultsScalarResult, A as AggregationType, bf as AggregationTypeWithLiterals, ag as ApplicationError, b0 as BaseEventMetadata, b4 as BillableItemQuerySpec, b5 as BillableItemSearchSpec, b3 as BillableItemsQueryResult, ai as BulkActionMetadata, ah as BulkBillableItemResult, ae as BulkCreateBillableItemsRequest, al as BulkDeleteBillableItemsRequest, am as BulkDeleteBillableItemsResponseBulkBillableItemResult, ap as BulkUpdateBillableItemTagsByFilterRequest, an as BulkUpdateBillableItemTagsRequest, ao as BulkUpdateBillableItemTagsResult, aj as BulkUpdateBillableItemsRequest, ak as BulkUpdateBillableItemsResponseBulkBillableItemResult, bh as CommonQueryWithEntityContext, bi as CommonSearchWithEntityContext, Q as CreateBillableItemRequest, V as CreateBillableItemResponse, a5 as CursorPaging, a7 as CursorPagingMetadata, a2 as CursorQuery, a3 as CursorQueryPagingMethodOneOf, ar as CursorSearch, as as CursorSearchPagingMethodOneOf, a8 as Cursors, aB as DateHistogramAggregation, aW as DateHistogramResult, aY as DateHistogramResults, $ as DeleteBillableItemRequest, a0 as DeleteBillableItemResponse, D as DomainEvent, z as DomainEventBodyOneOf, F as EntityCreatedEvent, H as EntityDeletedEvent, G as EntityUpdatedEvent, b1 as EventMetadata, E as ExtendedFields, X as GetBillableItemRequest, Y as GetBillableItemResponse, aX as GroupByValueResults, L as IdentificationData, O as IdentificationDataIdOneOf, aw as IncludeMissingValuesOptions, ac as InternalCursorPaging, aa as InternalCursorQuery, ab as InternalCursorQueryPagingMethodOneOf, a9 as InternalQueryBillableItemsRequest, ad as InternalQueryBillableItemsResponse, I as Interval, be as IntervalWithLiterals, af as ItemMetadata, K as MessageEnvelope, v as MissingValues, bb as MissingValuesWithLiterals, x as Mode, bg as ModeWithLiterals, aE as NestedAggregation, aC as NestedAggregationItem, aD as NestedAggregationItemKindOneOf, aK as NestedAggregationResults, aL as NestedAggregationResultsResultOneOf, N as NestedAggregationType, bd as NestedAggregationTypeWithLiterals, aT as NestedResultValue, aU as NestedResultValueResultOneOf, aZ as NestedResults, aP as NestedValueAggregationResult, aG as PagingMetadataV2, a1 as QueryBillableItemsRequest, a6 as QueryBillableItemsResponse, az as RangeAggregation, aJ as RangeAggregationResult, av as RangeBucket, aR as RangeResult, aN as RangeResults, R as RestoreInfo, aV as Results, aA as ScalarAggregation, aS as ScalarResult, w as ScalarType, bc as ScalarTypeWithLiterals, aq as SearchBillableItemsRequest, aF as SearchDetails, u as SortDirection, ba as SortDirectionWithLiterals, r as SortOrder, b8 as SortOrderWithLiterals, s as SortType, b9 as SortTypeWithLiterals, a4 as Sorting, y as TagList, T as Tags, Z as UpdateBillableItemRequest, _ as UpdateBillableItemResponse, ax as ValueAggregation, ay as ValueAggregationOptionsOneOf, aI as ValueAggregationResult, aQ as ValueResult, aM as ValueResults, W as WebhookIdentityType, b7 as WebhookIdentityTypeWithLiterals, b6 as utils } from './billable-items-v1-billable-item-billable-items.universal-CL50BvcU.js';
|
|
4
4
|
|
|
5
5
|
declare function createBillableItem$1(httpClient: HttpClient): CreateBillableItemSignature;
|
|
6
6
|
interface CreateBillableItemSignature {
|