@membranehq/sdk 0.9.5 → 0.9.6
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/bundle.d.ts +1080 -187
- package/dist/dts/orgs/types.d.ts +10 -0
- package/dist/dts/workspace-elements/base/connectors/auth.d.ts +1540 -51
- package/dist/dts/workspace-elements/base/connectors/methods.d.ts +111 -34
- package/dist/dts/workspace-elements/base/connectors/types.d.ts +2188 -53
- package/dist/dts/workspace-elements/base/connectors/udm.d.ts +29 -13
- package/dist/dts/workspace-elements/base/data-collections/schemas.d.ts +5 -4
- package/dist/dts/workspaces/compare.d.ts +4 -1
- package/dist/dts/workspaces/types.d.ts +24 -2
- package/dist/index.browser.d.mts +4216 -458
- package/dist/index.browser.d.ts +4216 -458
- package/dist/index.browser.js +228 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +199 -2
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +4216 -458
- package/dist/index.node.d.ts +4216 -458
- package/dist/index.node.js +228 -1
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +199 -2
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/dts/orgs/types.d.ts
CHANGED
|
@@ -263,6 +263,11 @@ export declare const AccountResponse: z.ZodObject<{
|
|
|
263
263
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
264
264
|
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
265
265
|
}, z.core.$strip>>;
|
|
266
|
+
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodObject<{
|
|
267
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
268
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
269
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
270
|
+
}, z.core.$strip>>;
|
|
266
271
|
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
267
272
|
value: z.ZodOptional<z.ZodNumber>;
|
|
268
273
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -323,6 +328,11 @@ export declare const AccountResponse: z.ZodObject<{
|
|
|
323
328
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
324
329
|
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
325
330
|
}, z.core.$strip>>;
|
|
331
|
+
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
332
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
333
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
334
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
335
|
+
}, z.core.$strip>>;
|
|
326
336
|
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
327
337
|
value: z.ZodOptional<z.ZodNumber>;
|
|
328
338
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|