@nomalism-com/types 0.45.31 → 0.45.32

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.
@@ -15,7 +15,6 @@ export interface IDataPayload {
15
15
  value: unknown;
16
16
  updated_at: Date;
17
17
  updated_by: string;
18
- location_id: string;
19
18
  history?: IDataPayload[];
20
19
  }
21
20
  export type IData = {
@@ -8,7 +8,7 @@ interface IMainPersona extends Persona {
8
8
  country: Country | null;
9
9
  reason_for_exemption: ReasonForExemption | null;
10
10
  }
11
- interface IStoreOperator extends Pick<StoreOperator, 'id' | 'location_id' | 'superuser'> {
11
+ interface IStoreOperator extends Pick<StoreOperator, 'id' | 'superuser'> {
12
12
  main_persona: Pick<Persona, 'name' | 'email'>;
13
13
  theme: Pick<Theme, 'colors'> | null;
14
14
  system_modules: SystemModuleEnum[];
@@ -191,7 +191,6 @@ export type IBrokerTopicPayload = {
191
191
  google_sheet_id: string;
192
192
  original_document_header_id?: string;
193
193
  user_id: string;
194
- location_id: string;
195
194
  };
196
195
  [IBrokerTopic.user_send_email_password]: {
197
196
  token: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nomalism-com/types",
3
3
  "description": "A nomalism package with all necessary types and validations for developing APIs",
4
- "version": "0.45.31",
4
+ "version": "0.45.32",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",