@meshery/schemas 1.3.44 → 1.3.45
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/cloudApi.d.mts +882 -4
- package/dist/cloudApi.d.ts +882 -4
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1beta1/pattern/Pattern.d.ts +1424 -3
- package/dist/constructs/v1beta1/pattern/PatternSchema.js +49 -1
- package/dist/constructs/v1beta1/pattern/PatternSchema.mjs +49 -1
- package/dist/constructs/v1beta2/design/Design.d.ts +1465 -3
- package/dist/constructs/v1beta2/design/DesignSchema.js +45 -1
- package/dist/constructs/v1beta2/design/DesignSchema.mjs +45 -1
- package/dist/constructs/v1beta3/design/Design.d.ts +363 -3
- package/dist/constructs/v1beta3/design/DesignSchema.js +6 -1
- package/dist/constructs/v1beta3/design/DesignSchema.mjs +6 -1
- package/dist/constructs/v1beta3/subscription/Subscription.d.ts +436 -0
- package/dist/constructs/v1beta3/subscription/SubscriptionSchema.js +1 -1
- package/dist/constructs/v1beta3/subscription/SubscriptionSchema.mjs +1 -1
- package/dist/index.js +100 -8
- package/dist/index.mjs +100 -8
- package/dist/mesheryApi.d.mts +235 -3
- package/dist/mesheryApi.d.ts +235 -3
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/dist/permissions.d.mts +71 -1
- package/dist/permissions.d.ts +71 -1
- package/dist/permissions.js +1 -1
- package/dist/permissions.mjs +1 -1
- package/package.json +2 -2
package/dist/permissions.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ interface Key {
|
|
|
23
23
|
/**
|
|
24
24
|
* Permissions Index ID used for this generated file.
|
|
25
25
|
*/
|
|
26
|
-
declare const PERMISSIONS_INDEX_ID: "
|
|
26
|
+
declare const PERMISSIONS_INDEX_ID: "d057e3586c1981a401736292e1807743181fcc3adbe54c8b696d9cc927838ec5";
|
|
27
27
|
/**
|
|
28
28
|
* Creates a PermissionKey from a UUID string.
|
|
29
29
|
* @param uuid - The UUID string to convert
|
|
@@ -1834,6 +1834,56 @@ declare const Keys: {
|
|
|
1834
1834
|
readonly function: "Reset Database";
|
|
1835
1835
|
readonly description: "Reset Meshery database";
|
|
1836
1836
|
};
|
|
1837
|
+
/**
|
|
1838
|
+
* Import a model into the capabilities registry
|
|
1839
|
+
*/
|
|
1840
|
+
readonly MesherySystemImportModel: {
|
|
1841
|
+
readonly id: PermissionKey;
|
|
1842
|
+
readonly category: "Meshery System";
|
|
1843
|
+
readonly subcategory: "Settings";
|
|
1844
|
+
readonly function: "Import Model";
|
|
1845
|
+
readonly description: "Import a model into the capabilities registry";
|
|
1846
|
+
};
|
|
1847
|
+
/**
|
|
1848
|
+
* Create a new model in the capabilities registry
|
|
1849
|
+
*/
|
|
1850
|
+
readonly MesherySystemCreateModel: {
|
|
1851
|
+
readonly id: PermissionKey;
|
|
1852
|
+
readonly category: "Meshery System";
|
|
1853
|
+
readonly subcategory: "Settings";
|
|
1854
|
+
readonly function: "Create Model";
|
|
1855
|
+
readonly description: "Create a new model in the capabilities registry";
|
|
1856
|
+
};
|
|
1857
|
+
/**
|
|
1858
|
+
* Create a new relationship definition in the capabilities registry
|
|
1859
|
+
*/
|
|
1860
|
+
readonly MesherySystemCreateRelationship: {
|
|
1861
|
+
readonly id: PermissionKey;
|
|
1862
|
+
readonly category: "Meshery System";
|
|
1863
|
+
readonly subcategory: "Settings";
|
|
1864
|
+
readonly function: "Create Relationship";
|
|
1865
|
+
readonly description: "Create a new relationship definition in the capabilities registry";
|
|
1866
|
+
};
|
|
1867
|
+
/**
|
|
1868
|
+
* View server-wide defaults for Meshery Operator MeshSync and Broker
|
|
1869
|
+
*/
|
|
1870
|
+
readonly MesherySystemViewControllersConfig: {
|
|
1871
|
+
readonly id: PermissionKey;
|
|
1872
|
+
readonly category: "Meshery System";
|
|
1873
|
+
readonly subcategory: "Settings";
|
|
1874
|
+
readonly function: "View Controllers Config";
|
|
1875
|
+
readonly description: "View server-wide defaults for Meshery Operator MeshSync and Broker";
|
|
1876
|
+
};
|
|
1877
|
+
/**
|
|
1878
|
+
* Edit and save server-wide defaults for Meshery Operator Meshsync and Broker
|
|
1879
|
+
*/
|
|
1880
|
+
readonly MesherySystemEditControllersConfig: {
|
|
1881
|
+
readonly id: PermissionKey;
|
|
1882
|
+
readonly category: "Meshery System";
|
|
1883
|
+
readonly subcategory: "Settings";
|
|
1884
|
+
readonly function: "Edit Controllers Config";
|
|
1885
|
+
readonly description: "Edit and save server-wide defaults for Meshery Operator Meshsync and Broker";
|
|
1886
|
+
};
|
|
1837
1887
|
/**
|
|
1838
1888
|
* No description available
|
|
1839
1889
|
*/
|
|
@@ -5180,6 +5230,26 @@ declare const PermissionKeys: {
|
|
|
5180
5230
|
* Reset Meshery database
|
|
5181
5231
|
*/
|
|
5182
5232
|
readonly MesherySystemResetDatabase: PermissionKey;
|
|
5233
|
+
/**
|
|
5234
|
+
* Import a model into the capabilities registry
|
|
5235
|
+
*/
|
|
5236
|
+
readonly MesherySystemImportModel: PermissionKey;
|
|
5237
|
+
/**
|
|
5238
|
+
* Create a new model in the capabilities registry
|
|
5239
|
+
*/
|
|
5240
|
+
readonly MesherySystemCreateModel: PermissionKey;
|
|
5241
|
+
/**
|
|
5242
|
+
* Create a new relationship definition in the capabilities registry
|
|
5243
|
+
*/
|
|
5244
|
+
readonly MesherySystemCreateRelationship: PermissionKey;
|
|
5245
|
+
/**
|
|
5246
|
+
* View server-wide defaults for Meshery Operator MeshSync and Broker
|
|
5247
|
+
*/
|
|
5248
|
+
readonly MesherySystemViewControllersConfig: PermissionKey;
|
|
5249
|
+
/**
|
|
5250
|
+
* Edit and save server-wide defaults for Meshery Operator Meshsync and Broker
|
|
5251
|
+
*/
|
|
5252
|
+
readonly MesherySystemEditControllersConfig: PermissionKey;
|
|
5183
5253
|
/**
|
|
5184
5254
|
* No description available
|
|
5185
5255
|
*/
|