@membranehq/sdk 0.25.0 → 0.26.0
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/dts/membrane-instances/types.d.ts +32 -0
- package/dist/index.browser.d.mts +32 -0
- package/dist/index.browser.d.ts +32 -0
- package/dist/index.browser.js +16 -0
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +16 -0
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +32 -0
- package/dist/index.node.d.ts +32 -0
- package/dist/index.node.js +16 -0
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +16 -0
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.node.mjs
CHANGED
|
@@ -15957,6 +15957,14 @@ const MembraneInstance = z.object({
|
|
|
15957
15957
|
lastReportedAt: z.coerce.date().optional(),
|
|
15958
15958
|
activeTenants: z.number().optional(),
|
|
15959
15959
|
billableTenants: z.number().optional(),
|
|
15960
|
+
clusterName: z.string().optional(),
|
|
15961
|
+
argoCdUrl: z.url().optional(),
|
|
15962
|
+
grafanaUrl: z.url().optional(),
|
|
15963
|
+
mongoAtlasUrl: z.url().optional(),
|
|
15964
|
+
helmBranch: z.string().optional(),
|
|
15965
|
+
helmValuesPath: z.url().optional(),
|
|
15966
|
+
awsAccountName: z.string().optional(),
|
|
15967
|
+
awsSsoUrl: z.url().optional(),
|
|
15960
15968
|
});
|
|
15961
15969
|
const CreateMembraneInstanceRequest = z.object({
|
|
15962
15970
|
name: z.string().min(1),
|
|
@@ -15970,6 +15978,14 @@ const UpdateMembraneInstanceRequest = z
|
|
|
15970
15978
|
apiBaseUri: z.string().min(1).optional(),
|
|
15971
15979
|
consoleBaseUri: z.string().min(1).nullable().optional(),
|
|
15972
15980
|
orgId: z.string().min(1).nullable().optional(),
|
|
15981
|
+
clusterName: z.string().nullable().optional(),
|
|
15982
|
+
argoCdUrl: z.url().nullable().optional(),
|
|
15983
|
+
grafanaUrl: z.url().nullable().optional(),
|
|
15984
|
+
mongoAtlasUrl: z.url().nullable().optional(),
|
|
15985
|
+
helmBranch: z.string().nullable().optional(),
|
|
15986
|
+
helmValuesPath: z.url().nullable().optional(),
|
|
15987
|
+
awsAccountName: z.string().nullable().optional(),
|
|
15988
|
+
awsSsoUrl: z.url().nullable().optional(),
|
|
15973
15989
|
})
|
|
15974
15990
|
.strict();
|
|
15975
15991
|
const ListMembraneInstancesQuery = PaginationQuery.extend({
|