@rlvt/entity-manager-openapi-client 1.0.50 → 1.0.51
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/api.d.ts +5 -5
- package/build/definitions.d.ts +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -1347,7 +1347,7 @@ export default class {
|
|
|
1347
1347
|
};
|
|
1348
1348
|
name: string;
|
|
1349
1349
|
rules: {
|
|
1350
|
-
action: "create" | "read" | "update" | "delete" | "access";
|
|
1350
|
+
action: "create" | "read" | "update" | "delete" | "access" | "export";
|
|
1351
1351
|
fields?: string[] | undefined;
|
|
1352
1352
|
conditions?: {
|
|
1353
1353
|
[x: string]: unknown;
|
|
@@ -1367,7 +1367,7 @@ export default class {
|
|
|
1367
1367
|
create: (params: Record<string, never>, data: {
|
|
1368
1368
|
name: string;
|
|
1369
1369
|
rules: {
|
|
1370
|
-
action: "create" | "read" | "update" | "delete" | "access";
|
|
1370
|
+
action: "create" | "read" | "update" | "delete" | "access" | "export";
|
|
1371
1371
|
fields?: string[] | undefined;
|
|
1372
1372
|
conditions?: {
|
|
1373
1373
|
[x: string]: unknown;
|
|
@@ -1396,7 +1396,7 @@ export default class {
|
|
|
1396
1396
|
};
|
|
1397
1397
|
name: string;
|
|
1398
1398
|
rules: {
|
|
1399
|
-
action: "create" | "read" | "update" | "delete" | "access";
|
|
1399
|
+
action: "create" | "read" | "update" | "delete" | "access" | "export";
|
|
1400
1400
|
fields?: string[] | undefined;
|
|
1401
1401
|
conditions?: {
|
|
1402
1402
|
[x: string]: unknown;
|
|
@@ -1416,7 +1416,7 @@ export default class {
|
|
|
1416
1416
|
}, data: {
|
|
1417
1417
|
name?: string | undefined;
|
|
1418
1418
|
rules?: {
|
|
1419
|
-
action: "create" | "read" | "update" | "delete" | "access";
|
|
1419
|
+
action: "create" | "read" | "update" | "delete" | "access" | "export";
|
|
1420
1420
|
fields?: string[] | undefined;
|
|
1421
1421
|
conditions?: {
|
|
1422
1422
|
[x: string]: unknown;
|
|
@@ -1445,7 +1445,7 @@ export default class {
|
|
|
1445
1445
|
};
|
|
1446
1446
|
name: string;
|
|
1447
1447
|
rules: {
|
|
1448
|
-
action: "create" | "read" | "update" | "delete" | "access";
|
|
1448
|
+
action: "create" | "read" | "update" | "delete" | "access" | "export";
|
|
1449
1449
|
fields?: string[] | undefined;
|
|
1450
1450
|
conditions?: {
|
|
1451
1451
|
[x: string]: unknown;
|
package/build/definitions.d.ts
CHANGED
|
@@ -282,7 +282,7 @@ export declare type Pick_RoleRule_fields_or_conditions_or_inverted_or_reason_or_
|
|
|
282
282
|
};
|
|
283
283
|
inverted?: boolean;
|
|
284
284
|
reason?: string;
|
|
285
|
-
action: "create" | "read" | "update" | "delete" | "access";
|
|
285
|
+
action: "create" | "read" | "update" | "delete" | "access" | "export";
|
|
286
286
|
subject: "Company" | "Block" | "Campaign" | "BranchGroup" | "Datasource" | "OAuthClient" | "Statistics" | "BlockContent" | "User" | "Billing" | "Role" | "ResourceGroup" | "Invitation" | "Workflow" | "Content" | "ContentFontResource";
|
|
287
287
|
mustMatch?: ("companyId" | "roleId" | "resourceGroupIds" | "id" | {
|
|
288
288
|
field: string;
|
package/package.json
CHANGED