@wix/data-resourceusage-service 1.0.7 → 1.0.8

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.
@@ -1 +1,2 @@
1
- export * as data from '@wix/data-resourceusage-service_data';
1
+ import * as data from '@wix/data-resourceusage-service_data';
2
+ export { data };
@@ -24,5 +24,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.data = void 0;
27
- exports.data = __importStar(require("@wix/data-resourceusage-service_data"));
27
+ const data = __importStar(require("@wix/data-resourceusage-service_data"));
28
+ exports.data = data;
28
29
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6EAA6D"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2EAA6D;AAEpD,oBAAI"}
@@ -1 +1,2 @@
1
- export * as data from '@wix/data-resourceusage-service_data';
1
+ import * as data from '@wix/data-resourceusage-service_data';
2
+ export { data };
package/build/es/index.js CHANGED
@@ -1,2 +1,3 @@
1
- export * as data from '@wix/data-resourceusage-service_data';
1
+ import * as data from '@wix/data-resourceusage-service_data';
2
+ export { data };
2
3
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,sCAAsC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,sCAAsC,CAAC;AAE7D,OAAO,EAAE,IAAI,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/data-resourceusage-service",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,7 +18,7 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/data-resourceusage-service_data": "1.0.7"
21
+ "@wix/data-resourceusage-service_data": "1.0.8"
22
22
  },
23
23
  "devDependencies": {
24
24
  "glob": "^10.4.1",
@@ -43,5 +43,5 @@
43
43
  "fqdn": ""
44
44
  }
45
45
  },
46
- "falconPackageHash": "091ccf76691b53e49e4d32492f986dc20a1d2b36c18e3fbf220c114b"
46
+ "falconPackageHash": "aa297c8afc35df0392540f2821fb8d29a083d83e01ba7b4a3559b05f"
47
47
  }
@@ -1,3 +1,37 @@
1
+ type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
2
+ interface HttpClient {
3
+ request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
4
+ fetchWithAuth: typeof fetch;
5
+ wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
6
+ }
7
+ type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
8
+ type HttpResponse<T = any> = {
9
+ data: T;
10
+ status: number;
11
+ statusText: string;
12
+ headers: any;
13
+ request?: any;
14
+ };
15
+ type RequestOptions<_TResponse = any, Data = any> = {
16
+ method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
17
+ url: string;
18
+ data?: Data;
19
+ params?: URLSearchParams;
20
+ } & APIMetadata;
21
+ type APIMetadata = {
22
+ methodFqn?: string;
23
+ entityFqdn?: string;
24
+ packageName?: string;
25
+ };
26
+ type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
27
+
28
+ declare global {
29
+ // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
30
+ interface SymbolConstructor {
31
+ readonly observable: symbol;
32
+ }
33
+ }
34
+
1
35
  /** ResourceUsage describes site-wide resource limits and usage */
2
36
  interface ResourceUsage {
3
37
  /**
@@ -132,7 +166,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
132
166
  slug?: string;
133
167
  /** ID of the entity associated with the event. */
134
168
  entityId?: string;
135
- /** Event timestamp. */
169
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
136
170
  eventTime?: Date;
137
171
  /**
138
172
  * Whether the event was triggered as a result of a privacy regulation application
@@ -161,6 +195,9 @@ interface DomainEventBodyOneOf {
161
195
  interface EntityCreatedEvent {
162
196
  entity?: string;
163
197
  }
198
+ interface RestoreInfo {
199
+ deletedDate?: Date;
200
+ }
164
201
  interface EntityUpdatedEvent {
165
202
  /**
166
203
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -226,6 +263,8 @@ interface DataChanged extends DataChangedChangeOneOf {
226
263
  resumeToken?: string;
227
264
  /** Initiator of the request */
228
265
  initiator?: Initiator;
266
+ /** Identity of the user who initiated the request */
267
+ writer?: Identity;
229
268
  }
230
269
  /** @oneof */
231
270
  interface DataChangedChangeOneOf {
@@ -251,6 +290,18 @@ declare enum DataStore {
251
290
  interface Initiator {
252
291
  type?: Type;
253
292
  }
293
+ interface Identity {
294
+ /** User ID, when the request is initiated by a user */
295
+ userId?: string | null;
296
+ /** Member ID, when the request is initiated by a member */
297
+ memberId?: string | null;
298
+ /** Visitor ID, when the request is initiated by a visitor */
299
+ visitorId?: string | null;
300
+ /** External App ID, when the request is initiated by an external app */
301
+ externalAppId?: string | null;
302
+ /** Service ID, when the request is initiated by a service */
303
+ serviceId?: string | null;
304
+ }
254
305
  interface ChangesLost {
255
306
  clusterId?: string;
256
307
  }
@@ -381,46 +432,15 @@ interface GetResourceUsageOptions {
381
432
  consistentRead?: boolean;
382
433
  }
383
434
 
384
- type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
385
- interface HttpClient {
386
- request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
387
- fetchWithAuth: typeof fetch;
388
- wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
389
- }
390
- type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
391
- type HttpResponse<T = any> = {
392
- data: T;
393
- status: number;
394
- statusText: string;
395
- headers: any;
396
- request?: any;
397
- };
398
- type RequestOptions<_TResponse = any, Data = any> = {
399
- method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
400
- url: string;
401
- data?: Data;
402
- params?: URLSearchParams;
403
- } & APIMetadata;
404
- type APIMetadata = {
405
- methodFqn?: string;
406
- entityFqdn?: string;
407
- packageName?: string;
408
- };
409
- type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
410
-
411
- declare global {
412
- // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
413
- interface SymbolConstructor {
414
- readonly observable: symbol;
415
- }
435
+ declare function getResourceUsage$1(httpClient: HttpClient): GetResourceUsageSignature;
436
+ interface GetResourceUsageSignature {
437
+ /**
438
+ * Get current Resource Usage
439
+ */
440
+ (options?: GetResourceUsageOptions | undefined): Promise<GetResourceUsageResponse & GetResourceUsageResponseNonNullableFields>;
416
441
  }
417
442
 
418
- declare function getResourceUsage$1(httpClient: HttpClient): (options?: GetResourceUsageOptions) => Promise<GetResourceUsageResponse & GetResourceUsageResponseNonNullableFields>;
419
-
420
- declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
421
-
422
- type _publicGetResourceUsageType = typeof getResourceUsage$1;
423
- declare const getResourceUsage: ReturnType<typeof createRESTModule<_publicGetResourceUsageType>>;
443
+ declare const getResourceUsage: BuildRESTFunction<typeof getResourceUsage$1> & typeof getResourceUsage$1;
424
444
 
425
445
  type context_ActionEvent = ActionEvent;
426
446
  type context_BulkUpdateUsagesRequest = BulkUpdateUsagesRequest;
@@ -450,11 +470,13 @@ type context_GetStoredUsageRequest = GetStoredUsageRequest;
450
470
  type context_GetStoredUsageResponse = GetStoredUsageResponse;
451
471
  type context_IdentificationData = IdentificationData;
452
472
  type context_IdentificationDataIdOneOf = IdentificationDataIdOneOf;
473
+ type context_Identity = Identity;
453
474
  type context_Initiator = Initiator;
454
475
  type context_InstanceUsageUpdate = InstanceUsageUpdate;
455
476
  type context_MessageEnvelope = MessageEnvelope;
456
477
  type context_ReferenceChanged = ReferenceChanged;
457
478
  type context_ResourceUsage = ResourceUsage;
479
+ type context_RestoreInfo = RestoreInfo;
458
480
  type context_Segment = Segment;
459
481
  declare const context_Segment: typeof Segment;
460
482
  type context_SegmentChanged = SegmentChanged;
@@ -463,10 +485,9 @@ type context_Type = Type;
463
485
  declare const context_Type: typeof Type;
464
486
  type context_WebhookIdentityType = WebhookIdentityType;
465
487
  declare const context_WebhookIdentityType: typeof WebhookIdentityType;
466
- type context__publicGetResourceUsageType = _publicGetResourceUsageType;
467
488
  declare const context_getResourceUsage: typeof getResourceUsage;
468
489
  declare namespace context {
469
- export { type context_ActionEvent as ActionEvent, type context_BulkUpdateUsagesRequest as BulkUpdateUsagesRequest, type context_BulkUpdateUsagesResponse as BulkUpdateUsagesResponse, type context_ChangesLost as ChangesLost, context_CollectionType as CollectionType, type context_DataChangeEvent as DataChangeEvent, type context_DataChangeEventEventOneOf as DataChangeEventEventOneOf, type context_DataChanged as DataChanged, type context_DataChangedChangeOneOf as DataChangedChangeOneOf, type context_DataCollectionResourceUsage as DataCollectionResourceUsage, type context_DataCollectionResourceUsageUpdate as DataCollectionResourceUsageUpdate, context_DataStore as DataStore, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_GetResourceUsageOptions as GetResourceUsageOptions, type context_GetResourceUsageRequest as GetResourceUsageRequest, type context_GetResourceUsageResponse as GetResourceUsageResponse, type context_GetResourceUsageResponseNonNullableFields as GetResourceUsageResponseNonNullableFields, type context_GetStoredUsageRequest as GetStoredUsageRequest, type context_GetStoredUsageResponse as GetStoredUsageResponse, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Initiator as Initiator, type context_InstanceUsageUpdate as InstanceUsageUpdate, type context_MessageEnvelope as MessageEnvelope, type context_ReferenceChanged as ReferenceChanged, type context_ResourceUsage as ResourceUsage, context_Segment as Segment, type context_SegmentChanged as SegmentChanged, type context_SegmentMigrationStarted as SegmentMigrationStarted, context_Type as Type, context_WebhookIdentityType as WebhookIdentityType, type context__publicGetResourceUsageType as _publicGetResourceUsageType, context_getResourceUsage as getResourceUsage };
490
+ export { type context_ActionEvent as ActionEvent, type context_BulkUpdateUsagesRequest as BulkUpdateUsagesRequest, type context_BulkUpdateUsagesResponse as BulkUpdateUsagesResponse, type context_ChangesLost as ChangesLost, context_CollectionType as CollectionType, type context_DataChangeEvent as DataChangeEvent, type context_DataChangeEventEventOneOf as DataChangeEventEventOneOf, type context_DataChanged as DataChanged, type context_DataChangedChangeOneOf as DataChangedChangeOneOf, type context_DataCollectionResourceUsage as DataCollectionResourceUsage, type context_DataCollectionResourceUsageUpdate as DataCollectionResourceUsageUpdate, context_DataStore as DataStore, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_GetResourceUsageOptions as GetResourceUsageOptions, type context_GetResourceUsageRequest as GetResourceUsageRequest, type context_GetResourceUsageResponse as GetResourceUsageResponse, type context_GetResourceUsageResponseNonNullableFields as GetResourceUsageResponseNonNullableFields, type context_GetStoredUsageRequest as GetStoredUsageRequest, type context_GetStoredUsageResponse as GetStoredUsageResponse, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Identity as Identity, type context_Initiator as Initiator, type context_InstanceUsageUpdate as InstanceUsageUpdate, type context_MessageEnvelope as MessageEnvelope, type context_ReferenceChanged as ReferenceChanged, type context_ResourceUsage as ResourceUsage, type context_RestoreInfo as RestoreInfo, context_Segment as Segment, type context_SegmentChanged as SegmentChanged, type context_SegmentMigrationStarted as SegmentMigrationStarted, context_Type as Type, context_WebhookIdentityType as WebhookIdentityType, context_getResourceUsage as getResourceUsage };
470
491
  }
471
492
 
472
493
  export { context as data };
@@ -1,3 +1,37 @@
1
+ type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
2
+ interface HttpClient {
3
+ request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
4
+ fetchWithAuth: typeof fetch;
5
+ wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
6
+ }
7
+ type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
8
+ type HttpResponse<T = any> = {
9
+ data: T;
10
+ status: number;
11
+ statusText: string;
12
+ headers: any;
13
+ request?: any;
14
+ };
15
+ type RequestOptions<_TResponse = any, Data = any> = {
16
+ method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
17
+ url: string;
18
+ data?: Data;
19
+ params?: URLSearchParams;
20
+ } & APIMetadata;
21
+ type APIMetadata = {
22
+ methodFqn?: string;
23
+ entityFqdn?: string;
24
+ packageName?: string;
25
+ };
26
+ type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
27
+
28
+ declare global {
29
+ // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
30
+ interface SymbolConstructor {
31
+ readonly observable: symbol;
32
+ }
33
+ }
34
+
1
35
  /** ResourceUsage describes site-wide resource limits and usage */
2
36
  interface ResourceUsage {
3
37
  /**
@@ -132,7 +166,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
132
166
  slug?: string;
133
167
  /** ID of the entity associated with the event. */
134
168
  entityId?: string;
135
- /** Event timestamp. */
169
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
136
170
  eventTime?: Date;
137
171
  /**
138
172
  * Whether the event was triggered as a result of a privacy regulation application
@@ -161,6 +195,9 @@ interface DomainEventBodyOneOf {
161
195
  interface EntityCreatedEvent {
162
196
  entity?: string;
163
197
  }
198
+ interface RestoreInfo {
199
+ deletedDate?: Date;
200
+ }
164
201
  interface EntityUpdatedEvent {
165
202
  /**
166
203
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -226,6 +263,8 @@ interface DataChanged extends DataChangedChangeOneOf {
226
263
  resumeToken?: string;
227
264
  /** Initiator of the request */
228
265
  initiator?: Initiator;
266
+ /** Identity of the user who initiated the request */
267
+ writer?: Identity;
229
268
  }
230
269
  /** @oneof */
231
270
  interface DataChangedChangeOneOf {
@@ -251,6 +290,18 @@ declare enum DataStore {
251
290
  interface Initiator {
252
291
  type?: Type;
253
292
  }
293
+ interface Identity {
294
+ /** User ID, when the request is initiated by a user */
295
+ userId?: string | null;
296
+ /** Member ID, when the request is initiated by a member */
297
+ memberId?: string | null;
298
+ /** Visitor ID, when the request is initiated by a visitor */
299
+ visitorId?: string | null;
300
+ /** External App ID, when the request is initiated by an external app */
301
+ externalAppId?: string | null;
302
+ /** Service ID, when the request is initiated by a service */
303
+ serviceId?: string | null;
304
+ }
254
305
  interface ChangesLost {
255
306
  clusterId?: string;
256
307
  }
@@ -381,46 +432,15 @@ interface GetResourceUsageOptions {
381
432
  consistentRead?: boolean;
382
433
  }
383
434
 
384
- type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
385
- interface HttpClient {
386
- request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
387
- fetchWithAuth: typeof fetch;
388
- wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
389
- }
390
- type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
391
- type HttpResponse<T = any> = {
392
- data: T;
393
- status: number;
394
- statusText: string;
395
- headers: any;
396
- request?: any;
397
- };
398
- type RequestOptions<_TResponse = any, Data = any> = {
399
- method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
400
- url: string;
401
- data?: Data;
402
- params?: URLSearchParams;
403
- } & APIMetadata;
404
- type APIMetadata = {
405
- methodFqn?: string;
406
- entityFqdn?: string;
407
- packageName?: string;
408
- };
409
- type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
410
-
411
- declare global {
412
- // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
413
- interface SymbolConstructor {
414
- readonly observable: symbol;
415
- }
435
+ declare function getResourceUsage$1(httpClient: HttpClient): GetResourceUsageSignature;
436
+ interface GetResourceUsageSignature {
437
+ /**
438
+ * Get current Resource Usage
439
+ */
440
+ (options?: GetResourceUsageOptions | undefined): Promise<GetResourceUsageResponse & GetResourceUsageResponseNonNullableFields>;
416
441
  }
417
442
 
418
- declare function getResourceUsage$1(httpClient: HttpClient): (options?: GetResourceUsageOptions) => Promise<GetResourceUsageResponse & GetResourceUsageResponseNonNullableFields>;
419
-
420
- declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
421
-
422
- type _publicGetResourceUsageType = typeof getResourceUsage$1;
423
- declare const getResourceUsage: ReturnType<typeof createRESTModule<_publicGetResourceUsageType>>;
443
+ declare const getResourceUsage: BuildRESTFunction<typeof getResourceUsage$1> & typeof getResourceUsage$1;
424
444
 
425
445
  type index_d_ActionEvent = ActionEvent;
426
446
  type index_d_BulkUpdateUsagesRequest = BulkUpdateUsagesRequest;
@@ -450,11 +470,13 @@ type index_d_GetStoredUsageRequest = GetStoredUsageRequest;
450
470
  type index_d_GetStoredUsageResponse = GetStoredUsageResponse;
451
471
  type index_d_IdentificationData = IdentificationData;
452
472
  type index_d_IdentificationDataIdOneOf = IdentificationDataIdOneOf;
473
+ type index_d_Identity = Identity;
453
474
  type index_d_Initiator = Initiator;
454
475
  type index_d_InstanceUsageUpdate = InstanceUsageUpdate;
455
476
  type index_d_MessageEnvelope = MessageEnvelope;
456
477
  type index_d_ReferenceChanged = ReferenceChanged;
457
478
  type index_d_ResourceUsage = ResourceUsage;
479
+ type index_d_RestoreInfo = RestoreInfo;
458
480
  type index_d_Segment = Segment;
459
481
  declare const index_d_Segment: typeof Segment;
460
482
  type index_d_SegmentChanged = SegmentChanged;
@@ -463,10 +485,9 @@ type index_d_Type = Type;
463
485
  declare const index_d_Type: typeof Type;
464
486
  type index_d_WebhookIdentityType = WebhookIdentityType;
465
487
  declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
466
- type index_d__publicGetResourceUsageType = _publicGetResourceUsageType;
467
488
  declare const index_d_getResourceUsage: typeof getResourceUsage;
468
489
  declare namespace index_d {
469
- export { type index_d_ActionEvent as ActionEvent, type index_d_BulkUpdateUsagesRequest as BulkUpdateUsagesRequest, type index_d_BulkUpdateUsagesResponse as BulkUpdateUsagesResponse, type index_d_ChangesLost as ChangesLost, index_d_CollectionType as CollectionType, type index_d_DataChangeEvent as DataChangeEvent, type index_d_DataChangeEventEventOneOf as DataChangeEventEventOneOf, type index_d_DataChanged as DataChanged, type index_d_DataChangedChangeOneOf as DataChangedChangeOneOf, type index_d_DataCollectionResourceUsage as DataCollectionResourceUsage, type index_d_DataCollectionResourceUsageUpdate as DataCollectionResourceUsageUpdate, index_d_DataStore as DataStore, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_GetResourceUsageOptions as GetResourceUsageOptions, type index_d_GetResourceUsageRequest as GetResourceUsageRequest, type index_d_GetResourceUsageResponse as GetResourceUsageResponse, type index_d_GetResourceUsageResponseNonNullableFields as GetResourceUsageResponseNonNullableFields, type index_d_GetStoredUsageRequest as GetStoredUsageRequest, type index_d_GetStoredUsageResponse as GetStoredUsageResponse, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Initiator as Initiator, type index_d_InstanceUsageUpdate as InstanceUsageUpdate, type index_d_MessageEnvelope as MessageEnvelope, type index_d_ReferenceChanged as ReferenceChanged, type index_d_ResourceUsage as ResourceUsage, index_d_Segment as Segment, type index_d_SegmentChanged as SegmentChanged, type index_d_SegmentMigrationStarted as SegmentMigrationStarted, index_d_Type as Type, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicGetResourceUsageType as _publicGetResourceUsageType, index_d_getResourceUsage as getResourceUsage };
490
+ export { type index_d_ActionEvent as ActionEvent, type index_d_BulkUpdateUsagesRequest as BulkUpdateUsagesRequest, type index_d_BulkUpdateUsagesResponse as BulkUpdateUsagesResponse, type index_d_ChangesLost as ChangesLost, index_d_CollectionType as CollectionType, type index_d_DataChangeEvent as DataChangeEvent, type index_d_DataChangeEventEventOneOf as DataChangeEventEventOneOf, type index_d_DataChanged as DataChanged, type index_d_DataChangedChangeOneOf as DataChangedChangeOneOf, type index_d_DataCollectionResourceUsage as DataCollectionResourceUsage, type index_d_DataCollectionResourceUsageUpdate as DataCollectionResourceUsageUpdate, index_d_DataStore as DataStore, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_GetResourceUsageOptions as GetResourceUsageOptions, type index_d_GetResourceUsageRequest as GetResourceUsageRequest, type index_d_GetResourceUsageResponse as GetResourceUsageResponse, type index_d_GetResourceUsageResponseNonNullableFields as GetResourceUsageResponseNonNullableFields, type index_d_GetStoredUsageRequest as GetStoredUsageRequest, type index_d_GetStoredUsageResponse as GetStoredUsageResponse, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Identity as Identity, type index_d_Initiator as Initiator, type index_d_InstanceUsageUpdate as InstanceUsageUpdate, type index_d_MessageEnvelope as MessageEnvelope, type index_d_ReferenceChanged as ReferenceChanged, type index_d_ResourceUsage as ResourceUsage, type index_d_RestoreInfo as RestoreInfo, index_d_Segment as Segment, type index_d_SegmentChanged as SegmentChanged, type index_d_SegmentMigrationStarted as SegmentMigrationStarted, index_d_Type as Type, index_d_WebhookIdentityType as WebhookIdentityType, index_d_getResourceUsage as getResourceUsage };
470
491
  }
471
492
 
472
493
  export { index_d as data };