@membranehq/sdk 0.18.0 → 0.18.1
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 +6 -1
- package/dist/bundle.js.map +1 -1
- package/dist/dts/alerts/types.d.ts +14 -0
- package/dist/dts/orgs/types.d.ts +2 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +0 -1
- package/dist/dts/workspace-elements/api/connectors-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/customers-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-apps-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +1 -0
- package/dist/dts/workspace-elements/base/app-data-schemas/index.d.ts +4 -5
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +6 -7
- package/dist/dts/workspace-elements/base/data-link-tables/index.d.ts +0 -1
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +0 -2
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +0 -3
- package/dist/dts/workspace-elements/base/flows/index.d.ts +0 -2
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +8 -10
- package/dist/dts/workspaces/types.d.ts +7 -1
- package/dist/index.browser.d.mts +45 -32
- package/dist/index.browser.d.ts +45 -32
- package/dist/index.browser.js +32 -6
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +32 -6
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +45 -32
- package/dist/index.node.d.ts +45 -32
- package/dist/index.node.js +32 -6
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +32 -6
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/bundle.d.ts
CHANGED
|
@@ -4941,6 +4941,7 @@ declare const FindIntegrationsQuery: z.ZodObject<{
|
|
|
4941
4941
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
4942
4942
|
cursor: z.ZodOptional<z.ZodString>;
|
|
4943
4943
|
search: z.ZodOptional<z.ZodString>;
|
|
4944
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
4944
4945
|
}, z.core.$strip>;
|
|
4945
4946
|
type FindIntegrationsQuery = z.infer<typeof FindIntegrationsQuery>;
|
|
4946
4947
|
interface OpenNewConnectionOptions extends OpenConfigurationOptions {
|
|
@@ -5250,6 +5251,7 @@ declare const FindCustomersQuery: z.ZodObject<{
|
|
|
5250
5251
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5251
5252
|
cursor: z.ZodOptional<z.ZodString>;
|
|
5252
5253
|
search: z.ZodOptional<z.ZodString>;
|
|
5254
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
5253
5255
|
}, z.core.$strip>;
|
|
5254
5256
|
type FindCustomersQuery = z.infer<typeof FindCustomersQuery>;
|
|
5255
5257
|
declare const CustomerSelector: z.ZodObject<{
|
package/dist/bundle.js
CHANGED
|
@@ -29100,7 +29100,7 @@
|
|
|
29100
29100
|
authType: _enum(CONNECTOR_AUTH_TYPES).optional(),
|
|
29101
29101
|
optionsConfig: IntegrationOptions.optional(),
|
|
29102
29102
|
});
|
|
29103
|
-
BaseMembraneInterfaceEditableProperties.extend({
|
|
29103
|
+
const IntegrationEditableProperties = BaseMembraneInterfaceEditableProperties.extend({
|
|
29104
29104
|
logoUri: string$1().optional(),
|
|
29105
29105
|
externalAppId: string$1().optional(),
|
|
29106
29106
|
externalAppUuid: string$1().optional(),
|
|
@@ -29116,6 +29116,10 @@
|
|
|
29116
29116
|
parameters: record(string$1(), any()).optional(),
|
|
29117
29117
|
optionsConfig: IntegrationOptions.optional(),
|
|
29118
29118
|
});
|
|
29119
|
+
IntegrationEditableProperties.omit({
|
|
29120
|
+
connectorId: true,
|
|
29121
|
+
externalAppId: true,
|
|
29122
|
+
});
|
|
29119
29123
|
|
|
29120
29124
|
PaginationQuery.merge(SearchQuery)
|
|
29121
29125
|
.merge(IncludeArchivedQuery)
|
|
@@ -29181,6 +29185,7 @@
|
|
|
29181
29185
|
credentials: true,
|
|
29182
29186
|
connectorParameters: true,
|
|
29183
29187
|
input: true,
|
|
29188
|
+
externalAppId: true,
|
|
29184
29189
|
});
|
|
29185
29190
|
object({
|
|
29186
29191
|
success: boolean$1(),
|