tenant_panam 0.2.2 → 0.2.3

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/dist/index.d.cts CHANGED
@@ -129,7 +129,7 @@ type CreatePersonType = {
129
129
  tenantId: string;
130
130
  };
131
131
  type EditPersonType = {
132
- id: number;
132
+ id: string;
133
133
  firstName: string;
134
134
  lastName: string;
135
135
  nationalId: string;
@@ -141,7 +141,7 @@ type EditPersonType = {
141
141
  tenantId: string;
142
142
  };
143
143
  type PersonType = {
144
- id: number;
144
+ id: string;
145
145
  firstName: string;
146
146
  lastName: string;
147
147
  nationalId: string;
@@ -260,11 +260,11 @@ type CreateTemplateSalaryType = {
260
260
  fixedItemMappings: FixedItemMapping[];
261
261
  };
262
262
  type EditTemplateSalaryType = {
263
- id: number;
263
+ id: string;
264
264
  name: string;
265
265
  };
266
266
  type TemplateSalaryType = {
267
- id: number;
267
+ id: string;
268
268
  templateName: string;
269
269
  reportFileName: string;
270
270
  templateJson: string;
package/dist/index.d.ts CHANGED
@@ -129,7 +129,7 @@ type CreatePersonType = {
129
129
  tenantId: string;
130
130
  };
131
131
  type EditPersonType = {
132
- id: number;
132
+ id: string;
133
133
  firstName: string;
134
134
  lastName: string;
135
135
  nationalId: string;
@@ -141,7 +141,7 @@ type EditPersonType = {
141
141
  tenantId: string;
142
142
  };
143
143
  type PersonType = {
144
- id: number;
144
+ id: string;
145
145
  firstName: string;
146
146
  lastName: string;
147
147
  nationalId: string;
@@ -260,11 +260,11 @@ type CreateTemplateSalaryType = {
260
260
  fixedItemMappings: FixedItemMapping[];
261
261
  };
262
262
  type EditTemplateSalaryType = {
263
- id: number;
263
+ id: string;
264
264
  name: string;
265
265
  };
266
266
  type TemplateSalaryType = {
267
- id: number;
267
+ id: string;
268
268
  templateName: string;
269
269
  reportFileName: string;
270
270
  templateJson: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tenant_panam",
3
3
  "private": false,
4
- "version": "0.2.2",
4
+ "version": "0.2.3",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
7
7
  "module": "dist/index.mjs",