@rlvt/entity-manager-openapi-client 1.0.148 → 1.0.150
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 +111 -5
- package/build/definitions.d.ts +18 -1
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -81,6 +81,9 @@ export default class {
|
|
|
81
81
|
readonly lastConnection: string & {
|
|
82
82
|
readonly?: "__readonly" | undefined;
|
|
83
83
|
};
|
|
84
|
+
readonly createdBy?: (string & {
|
|
85
|
+
readonly?: "__readonly" | undefined;
|
|
86
|
+
}) | undefined;
|
|
84
87
|
profile?: {
|
|
85
88
|
firstname?: string | undefined;
|
|
86
89
|
lastname?: string | undefined;
|
|
@@ -137,6 +140,9 @@ export default class {
|
|
|
137
140
|
readonly lastConnection: string & {
|
|
138
141
|
readonly?: "__readonly" | undefined;
|
|
139
142
|
};
|
|
143
|
+
readonly createdBy?: (string & {
|
|
144
|
+
readonly?: "__readonly" | undefined;
|
|
145
|
+
}) | undefined;
|
|
140
146
|
profile?: {
|
|
141
147
|
firstname?: string | undefined;
|
|
142
148
|
lastname?: string | undefined;
|
|
@@ -208,6 +214,9 @@ export default class {
|
|
|
208
214
|
readonly lastConnection: string & {
|
|
209
215
|
readonly?: "__readonly" | undefined;
|
|
210
216
|
};
|
|
217
|
+
readonly createdBy?: (string & {
|
|
218
|
+
readonly?: "__readonly" | undefined;
|
|
219
|
+
}) | undefined;
|
|
211
220
|
profile?: {
|
|
212
221
|
firstname?: string | undefined;
|
|
213
222
|
lastname?: string | undefined;
|
|
@@ -256,6 +265,9 @@ export default class {
|
|
|
256
265
|
readonly lastConnection: string & {
|
|
257
266
|
readonly?: "__readonly" | undefined;
|
|
258
267
|
};
|
|
268
|
+
readonly createdBy?: (string & {
|
|
269
|
+
readonly?: "__readonly" | undefined;
|
|
270
|
+
}) | undefined;
|
|
259
271
|
profile?: {
|
|
260
272
|
firstname?: string | undefined;
|
|
261
273
|
lastname?: string | undefined;
|
|
@@ -314,6 +326,9 @@ export default class {
|
|
|
314
326
|
readonly lastConnection: string & {
|
|
315
327
|
readonly?: "__readonly" | undefined;
|
|
316
328
|
};
|
|
329
|
+
readonly createdBy?: (string & {
|
|
330
|
+
readonly?: "__readonly" | undefined;
|
|
331
|
+
}) | undefined;
|
|
317
332
|
profile?: {
|
|
318
333
|
firstname?: string | undefined;
|
|
319
334
|
lastname?: string | undefined;
|
|
@@ -611,6 +626,9 @@ export default class {
|
|
|
611
626
|
readonly lastConnection: string & {
|
|
612
627
|
readonly?: "__readonly" | undefined;
|
|
613
628
|
};
|
|
629
|
+
readonly createdBy?: (string & {
|
|
630
|
+
readonly?: "__readonly" | undefined;
|
|
631
|
+
}) | undefined;
|
|
614
632
|
profile?: {
|
|
615
633
|
firstname?: string | undefined;
|
|
616
634
|
lastname?: string | undefined;
|
|
@@ -661,6 +679,9 @@ export default class {
|
|
|
661
679
|
readonly lastConnection: string & {
|
|
662
680
|
readonly?: "__readonly" | undefined;
|
|
663
681
|
};
|
|
682
|
+
readonly createdBy?: (string & {
|
|
683
|
+
readonly?: "__readonly" | undefined;
|
|
684
|
+
}) | undefined;
|
|
664
685
|
profile?: {
|
|
665
686
|
firstname?: string | undefined;
|
|
666
687
|
lastname?: string | undefined;
|
|
@@ -716,6 +737,9 @@ export default class {
|
|
|
716
737
|
readonly lastConnection: string & {
|
|
717
738
|
readonly?: "__readonly" | undefined;
|
|
718
739
|
};
|
|
740
|
+
readonly createdBy?: (string & {
|
|
741
|
+
readonly?: "__readonly" | undefined;
|
|
742
|
+
}) | undefined;
|
|
719
743
|
profile?: {
|
|
720
744
|
firstname?: string | undefined;
|
|
721
745
|
lastname?: string | undefined;
|
|
@@ -766,6 +790,9 @@ export default class {
|
|
|
766
790
|
readonly?: "__readonly" | undefined;
|
|
767
791
|
};
|
|
768
792
|
createdAt: string;
|
|
793
|
+
readonly createdBy?: (string & {
|
|
794
|
+
readonly?: "__readonly" | undefined;
|
|
795
|
+
}) | undefined;
|
|
769
796
|
state: InvitationState;
|
|
770
797
|
usedAt?: string | undefined;
|
|
771
798
|
}[];
|
|
@@ -798,6 +825,9 @@ export default class {
|
|
|
798
825
|
readonly?: "__readonly" | undefined;
|
|
799
826
|
};
|
|
800
827
|
createdAt: string;
|
|
828
|
+
readonly createdBy?: (string & {
|
|
829
|
+
readonly?: "__readonly" | undefined;
|
|
830
|
+
}) | undefined;
|
|
801
831
|
state: InvitationState;
|
|
802
832
|
usedAt?: string | undefined;
|
|
803
833
|
};
|
|
@@ -828,6 +858,9 @@ export default class {
|
|
|
828
858
|
readonly?: "__readonly" | undefined;
|
|
829
859
|
};
|
|
830
860
|
createdAt: string;
|
|
861
|
+
readonly createdBy?: (string & {
|
|
862
|
+
readonly?: "__readonly" | undefined;
|
|
863
|
+
}) | undefined;
|
|
831
864
|
state: InvitationState;
|
|
832
865
|
usedAt?: string | undefined;
|
|
833
866
|
};
|
|
@@ -1700,7 +1733,21 @@ export default class {
|
|
|
1700
1733
|
fields?: string[] | undefined;
|
|
1701
1734
|
conditions?: {
|
|
1702
1735
|
[x: string]: unknown;
|
|
1703
|
-
} |
|
|
1736
|
+
} | {
|
|
1737
|
+
options: {
|
|
1738
|
+
query: {
|
|
1739
|
+
$and: {
|
|
1740
|
+
[x: string]: unknown;
|
|
1741
|
+
}[];
|
|
1742
|
+
} | {
|
|
1743
|
+
$or: {
|
|
1744
|
+
[x: string]: unknown;
|
|
1745
|
+
}[];
|
|
1746
|
+
};
|
|
1747
|
+
datasourceIds?: string[] | undefined;
|
|
1748
|
+
};
|
|
1749
|
+
type: "datasource_query";
|
|
1750
|
+
}[] | undefined;
|
|
1704
1751
|
inverted?: boolean | undefined;
|
|
1705
1752
|
reason?: string | undefined;
|
|
1706
1753
|
action: "create" | "access" | "read" | "query" | "update" | "delete" | "export";
|
|
@@ -1725,7 +1772,21 @@ export default class {
|
|
|
1725
1772
|
fields?: string[] | undefined;
|
|
1726
1773
|
conditions?: {
|
|
1727
1774
|
[x: string]: unknown;
|
|
1728
|
-
} |
|
|
1775
|
+
} | {
|
|
1776
|
+
options: {
|
|
1777
|
+
query: {
|
|
1778
|
+
$and: {
|
|
1779
|
+
[x: string]: unknown;
|
|
1780
|
+
}[];
|
|
1781
|
+
} | {
|
|
1782
|
+
$or: {
|
|
1783
|
+
[x: string]: unknown;
|
|
1784
|
+
}[];
|
|
1785
|
+
};
|
|
1786
|
+
datasourceIds?: string[] | undefined;
|
|
1787
|
+
};
|
|
1788
|
+
type: "datasource_query";
|
|
1789
|
+
}[] | undefined;
|
|
1729
1790
|
inverted?: boolean | undefined;
|
|
1730
1791
|
reason?: string | undefined;
|
|
1731
1792
|
action: "create" | "access" | "read" | "query" | "update" | "delete" | "export";
|
|
@@ -1750,7 +1811,21 @@ export default class {
|
|
|
1750
1811
|
fields?: string[] | undefined;
|
|
1751
1812
|
conditions?: {
|
|
1752
1813
|
[x: string]: unknown;
|
|
1753
|
-
} |
|
|
1814
|
+
} | {
|
|
1815
|
+
options: {
|
|
1816
|
+
query: {
|
|
1817
|
+
$and: {
|
|
1818
|
+
[x: string]: unknown;
|
|
1819
|
+
}[];
|
|
1820
|
+
} | {
|
|
1821
|
+
$or: {
|
|
1822
|
+
[x: string]: unknown;
|
|
1823
|
+
}[];
|
|
1824
|
+
};
|
|
1825
|
+
datasourceIds?: string[] | undefined;
|
|
1826
|
+
};
|
|
1827
|
+
type: "datasource_query";
|
|
1828
|
+
}[] | undefined;
|
|
1754
1829
|
inverted?: boolean | undefined;
|
|
1755
1830
|
reason?: string | undefined;
|
|
1756
1831
|
action: "create" | "access" | "read" | "query" | "update" | "delete" | "export";
|
|
@@ -1776,7 +1851,21 @@ export default class {
|
|
|
1776
1851
|
fields?: string[] | undefined;
|
|
1777
1852
|
conditions?: {
|
|
1778
1853
|
[x: string]: unknown;
|
|
1779
|
-
} |
|
|
1854
|
+
} | {
|
|
1855
|
+
options: {
|
|
1856
|
+
query: {
|
|
1857
|
+
$and: {
|
|
1858
|
+
[x: string]: unknown;
|
|
1859
|
+
}[];
|
|
1860
|
+
} | {
|
|
1861
|
+
$or: {
|
|
1862
|
+
[x: string]: unknown;
|
|
1863
|
+
}[];
|
|
1864
|
+
};
|
|
1865
|
+
datasourceIds?: string[] | undefined;
|
|
1866
|
+
};
|
|
1867
|
+
type: "datasource_query";
|
|
1868
|
+
}[] | undefined;
|
|
1780
1869
|
inverted?: boolean | undefined;
|
|
1781
1870
|
reason?: string | undefined;
|
|
1782
1871
|
action: "create" | "access" | "read" | "query" | "update" | "delete" | "export";
|
|
@@ -1801,7 +1890,21 @@ export default class {
|
|
|
1801
1890
|
fields?: string[] | undefined;
|
|
1802
1891
|
conditions?: {
|
|
1803
1892
|
[x: string]: unknown;
|
|
1804
|
-
} |
|
|
1893
|
+
} | {
|
|
1894
|
+
options: {
|
|
1895
|
+
query: {
|
|
1896
|
+
$and: {
|
|
1897
|
+
[x: string]: unknown;
|
|
1898
|
+
}[];
|
|
1899
|
+
} | {
|
|
1900
|
+
$or: {
|
|
1901
|
+
[x: string]: unknown;
|
|
1902
|
+
}[];
|
|
1903
|
+
};
|
|
1904
|
+
datasourceIds?: string[] | undefined;
|
|
1905
|
+
};
|
|
1906
|
+
type: "datasource_query";
|
|
1907
|
+
}[] | undefined;
|
|
1805
1908
|
inverted?: boolean | undefined;
|
|
1806
1909
|
reason?: string | undefined;
|
|
1807
1910
|
action: "create" | "access" | "read" | "query" | "update" | "delete" | "export";
|
|
@@ -2006,6 +2109,9 @@ export default class {
|
|
|
2006
2109
|
readonly lastConnection: string & {
|
|
2007
2110
|
readonly?: "__readonly" | undefined;
|
|
2008
2111
|
};
|
|
2112
|
+
readonly createdBy?: (string & {
|
|
2113
|
+
readonly?: "__readonly" | undefined;
|
|
2114
|
+
}) | undefined;
|
|
2009
2115
|
profile?: {
|
|
2010
2116
|
firstname?: string | undefined;
|
|
2011
2117
|
lastname?: string | undefined;
|
package/build/definitions.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare type SerializedUser = {
|
|
|
33
33
|
readonly createdAt: (string) & readonlyP;
|
|
34
34
|
readonly updatedAt: (string) & readonlyP;
|
|
35
35
|
readonly lastConnection: (string) & readonlyP;
|
|
36
|
+
readonly createdBy?: (string) & readonlyP;
|
|
36
37
|
email: string;
|
|
37
38
|
profile?: UserProfile;
|
|
38
39
|
readonly hasOtp: (boolean) & readonlyP;
|
|
@@ -286,6 +287,7 @@ export declare type SerializedInvitation = {
|
|
|
286
287
|
readonly companyId: (string) & readonlyP;
|
|
287
288
|
readonly roleId: (string) & readonlyP;
|
|
288
289
|
readonly resourceGroupIds: (string[]) & readonlyP;
|
|
290
|
+
readonly createdBy?: (string) & readonlyP;
|
|
289
291
|
readonly email: (string) & readonlyP;
|
|
290
292
|
usedAt?: string;
|
|
291
293
|
createdAt: string;
|
|
@@ -321,11 +323,26 @@ export declare type InternalResponse_id_string = {
|
|
|
321
323
|
id: string;
|
|
322
324
|
};
|
|
323
325
|
};
|
|
326
|
+
export declare type DatasourceQueryCondition = {
|
|
327
|
+
type: "datasource_query";
|
|
328
|
+
options: {
|
|
329
|
+
datasourceIds?: string[];
|
|
330
|
+
query: {
|
|
331
|
+
$and: {
|
|
332
|
+
[key: string]: AnyValue;
|
|
333
|
+
}[];
|
|
334
|
+
} | {
|
|
335
|
+
$or: {
|
|
336
|
+
[key: string]: AnyValue;
|
|
337
|
+
}[];
|
|
338
|
+
};
|
|
339
|
+
};
|
|
340
|
+
};
|
|
324
341
|
export declare type RoleRule_Without_ToJSON = {
|
|
325
342
|
fields?: string[];
|
|
326
343
|
conditions?: {
|
|
327
344
|
[key: string]: AnyValue;
|
|
328
|
-
};
|
|
345
|
+
} | DatasourceQueryCondition[];
|
|
329
346
|
inverted?: boolean;
|
|
330
347
|
reason?: string;
|
|
331
348
|
action: "create" | "access" | "read" | "query" | "update" | "delete" | "export";
|
package/build/definitions.js
CHANGED
|
@@ -18,4 +18,4 @@ var Variables;
|
|
|
18
18
|
Variables["UTM_MEDIUM"] = "utm_medium";
|
|
19
19
|
Variables["UTM_TERM"] = "utm_term";
|
|
20
20
|
})(Variables = exports.Variables || (exports.Variables = {}));
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBc1NwQixJQUFZLGVBSVg7QUFKRCxXQUFZLGVBQWU7SUFDdkIsc0NBQW1CLENBQUE7SUFDbkIsZ0NBQWEsQ0FBQTtJQUNiLHdDQUFxQixDQUFBO0FBQ3pCLENBQUMsRUFKVyxlQUFlLEdBQWYsdUJBQWUsS0FBZix1QkFBZSxRQUkxQjtBQWtSRCxJQUFZLFNBT1g7QUFQRCxXQUFZLFNBQVM7SUFDakIsOEJBQW1CLENBQUE7SUFDbkIsOEJBQW1CLENBQUE7SUFDbkIsMENBQTZCLENBQUE7SUFDN0Isc0NBQXlCLENBQUE7SUFDekIsc0NBQXlCLENBQUE7SUFDekIsa0NBQXFCLENBQUE7QUFDekIsQ0FBQyxFQVBXLFNBQVMsR0FBVCxpQkFBUyxLQUFULGlCQUFTLFFBT3BCIn0=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rlvt/entity-manager-openapi-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.150+4b28ebd",
|
|
4
4
|
"description": "Openapi client for reelevant service",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"repository": "https://github.com/reelevant-tech/openapi-clients",
|