@erp-galoper/types 1.0.575 → 1.0.577
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/openapi.ts +50 -7
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -18337,6 +18337,29 @@ export interface paths {
|
|
|
18337
18337
|
patch?: never;
|
|
18338
18338
|
trace?: never;
|
|
18339
18339
|
};
|
|
18340
|
+
"/api/v1/pos/roles/permissions/": {
|
|
18341
|
+
parameters: {
|
|
18342
|
+
query?: never;
|
|
18343
|
+
header?: never;
|
|
18344
|
+
path?: never;
|
|
18345
|
+
cookie?: never;
|
|
18346
|
+
};
|
|
18347
|
+
/**
|
|
18348
|
+
* List Permissions
|
|
18349
|
+
* @description Endpoint for listing all permissions.
|
|
18350
|
+
* this route is only used incase pos mode is standalone
|
|
18351
|
+
* Responses:
|
|
18352
|
+
* - 200: ModulePermissions - All available permissions that can be assigned to roles
|
|
18353
|
+
*/
|
|
18354
|
+
get: operations["pos_role_views_list_permissions"];
|
|
18355
|
+
put?: never;
|
|
18356
|
+
post?: never;
|
|
18357
|
+
delete?: never;
|
|
18358
|
+
options?: never;
|
|
18359
|
+
head?: never;
|
|
18360
|
+
patch?: never;
|
|
18361
|
+
trace?: never;
|
|
18362
|
+
};
|
|
18340
18363
|
"/api/v1/pos/roles/": {
|
|
18341
18364
|
parameters: {
|
|
18342
18365
|
query?: never;
|
|
@@ -22719,8 +22742,10 @@ export interface components {
|
|
|
22719
22742
|
* Format: uuid
|
|
22720
22743
|
*/
|
|
22721
22744
|
id: string;
|
|
22722
|
-
/**
|
|
22723
|
-
|
|
22745
|
+
/** Serialnumber */
|
|
22746
|
+
serialNumber: string;
|
|
22747
|
+
/** Description */
|
|
22748
|
+
description: string;
|
|
22724
22749
|
};
|
|
22725
22750
|
/** ProjectSummaryInfo */
|
|
22726
22751
|
ProjectSummaryInfo: {
|
|
@@ -22773,8 +22798,7 @@ export interface components {
|
|
|
22773
22798
|
approvalStatus: components["schemas"]["ApprovalChoices"] | null;
|
|
22774
22799
|
/** Attachments */
|
|
22775
22800
|
attachments: string[] | null;
|
|
22776
|
-
|
|
22777
|
-
reversedIn: string | null;
|
|
22801
|
+
reversedIn: components["schemas"]["JournalVoucherSummaryInfo"] | null;
|
|
22778
22802
|
reversalOf: components["schemas"]["JournalVoucherSummaryInfo"] | null;
|
|
22779
22803
|
/** Journalitems */
|
|
22780
22804
|
journalItems: components["schemas"]["RetrieveJournalVoucherItemsSchema"][];
|
|
@@ -22923,8 +22947,7 @@ export interface components {
|
|
|
22923
22947
|
approvalStatus: components["schemas"]["ApprovalChoices"] | null;
|
|
22924
22948
|
/** Attachments */
|
|
22925
22949
|
attachments: string[] | null;
|
|
22926
|
-
|
|
22927
|
-
reversedIn: string | null;
|
|
22950
|
+
reversedIn: components["schemas"]["JournalVoucherSummaryInfo"] | null;
|
|
22928
22951
|
reversalOf: components["schemas"]["JournalVoucherSummaryInfo"] | null;
|
|
22929
22952
|
};
|
|
22930
22953
|
/** ReverseJournalVoucherSchema */
|
|
@@ -26984,7 +27007,7 @@ export interface components {
|
|
|
26984
27007
|
/**
|
|
26985
27008
|
* Id
|
|
26986
27009
|
* Format: uuid
|
|
26987
|
-
* @example
|
|
27010
|
+
* @example c93da359-72e1-449e-8f20-ae6a9af87dec
|
|
26988
27011
|
*/
|
|
26989
27012
|
id: string;
|
|
26990
27013
|
/**
|
|
@@ -83082,6 +83105,26 @@ export interface operations {
|
|
|
83082
83105
|
};
|
|
83083
83106
|
};
|
|
83084
83107
|
};
|
|
83108
|
+
pos_role_views_list_permissions: {
|
|
83109
|
+
parameters: {
|
|
83110
|
+
query?: never;
|
|
83111
|
+
header?: never;
|
|
83112
|
+
path?: never;
|
|
83113
|
+
cookie?: never;
|
|
83114
|
+
};
|
|
83115
|
+
requestBody?: never;
|
|
83116
|
+
responses: {
|
|
83117
|
+
/** @description OK */
|
|
83118
|
+
200: {
|
|
83119
|
+
headers: {
|
|
83120
|
+
[name: string]: unknown;
|
|
83121
|
+
};
|
|
83122
|
+
content: {
|
|
83123
|
+
"application/json": components["schemas"]["ModulePermissions"];
|
|
83124
|
+
};
|
|
83125
|
+
};
|
|
83126
|
+
};
|
|
83127
|
+
};
|
|
83085
83128
|
pos_role_views_list_pos_roles: {
|
|
83086
83129
|
parameters: {
|
|
83087
83130
|
query?: {
|