@membranehq/sdk 0.11.4-beta.0 → 0.11.4
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 +2 -0
- package/dist/bundle.js +2390 -4435
- package/dist/bundle.js.map +1 -1
- package/dist/dts/orgs/types.d.ts +0 -15
- package/dist/dts/workspace-elements/api/customers-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-apps-api.d.ts +1 -0
- package/dist/dts/workspace-elements/base/data-collections/utils.d.ts +1 -1
- package/dist/dts/workspace-elements-catalog/index.d.ts +3 -0
- package/dist/dts/workspaces/types.d.ts +0 -45
- package/dist/index.browser.d.mts +7 -61
- package/dist/index.browser.d.ts +7 -61
- package/dist/index.browser.js +81 -10
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +81 -10
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +7 -61
- package/dist/index.node.d.ts +7 -61
- package/dist/index.node.js +81 -10
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +81 -10
- package/dist/index.node.mjs.map +1 -1
- package/package.json +45 -2
package/dist/bundle.d.ts
CHANGED
|
@@ -4494,6 +4494,7 @@ declare const UpdateCustomerRequest: z.ZodObject<{
|
|
|
4494
4494
|
type UpdateCustomerRequest = z.infer<typeof UpdateCustomerRequest>;
|
|
4495
4495
|
declare const FindCustomersQuery: z.ZodObject<{
|
|
4496
4496
|
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
4497
|
+
isActive: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
4497
4498
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
4498
4499
|
cursor: z.ZodOptional<z.ZodString>;
|
|
4499
4500
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -5227,6 +5228,7 @@ declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
|
|
|
5227
5228
|
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
5228
5229
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
5229
5230
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
5231
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5230
5232
|
}, z.core.$strip>;
|
|
5231
5233
|
type FindDataLinkTableInstancesQuery = z.infer<typeof FindDataLinkTableInstancesQuery>;
|
|
5232
5234
|
interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|