@membranehq/sdk 0.15.4 → 0.15.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 +69 -4
- package/dist/bundle.js +163 -6
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +1 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +1 -0
- package/dist/dts/api-client.d.ts +6 -2
- package/dist/dts/auth/auth-context-permissions.d.ts +59 -0
- package/dist/dts/auth/index.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +37 -0
- package/dist/dts/scenario-templates/index.d.ts +2 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +14 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +25 -0
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/customers-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/data-link-tables-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +12 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +32 -10
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +11 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/packages-api.d.ts +3 -0
- package/dist/dts/workspace-elements/base/action-instances/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +6 -0
- package/dist/dts/workspace-elements/base/app-data-schemas/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/app-event-subscriptions/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/app-event-types/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +2 -4
- package/dist/dts/workspace-elements/base/data-collections/schemas.d.ts +1 -1
- package/dist/dts/workspace-elements/base/data-link-tables/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/packages/index.d.ts +1 -0
- package/dist/dts/workspace-elements/types.d.ts +5 -0
- package/dist/dts/workspaces/types.d.ts +33 -1
- package/dist/index.browser.d.mts +309 -39
- package/dist/index.browser.d.ts +309 -39
- package/dist/index.browser.js +126 -9
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +124 -10
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +309 -39
- package/dist/index.node.d.ts +309 -39
- package/dist/index.node.js +126 -9
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +124 -10
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -34,7 +34,9 @@ export declare enum RateLimits {
|
|
|
34
34
|
WorkspaceElementCreationsPerSecond = "workspaceElementCreationsPerSecond",
|
|
35
35
|
WorkspaceElementCreationsPerHour = "workspaceElementCreationsPerHour",
|
|
36
36
|
WorkspaceElementSearchIndexingPerMinute = "workspaceElementSearchIndexingPerMinute",
|
|
37
|
-
ExternalEventsPerCustomerPerDay = "externalEventsPerCustomerPerDay"
|
|
37
|
+
ExternalEventsPerCustomerPerDay = "externalEventsPerCustomerPerDay",
|
|
38
|
+
McpOAuthAuthorizationsPerHour = "mcpOAuthAuthorizationsPerHour",
|
|
39
|
+
McpOAuthTokensPerHour = "mcpOAuthTokensPerHour"
|
|
38
40
|
}
|
|
39
41
|
export declare enum WorkspaceSizeLimits {
|
|
40
42
|
TotalNumberOfCustomers = "totalNumberOfCustomers",
|
|
@@ -186,6 +188,16 @@ export declare const WorkspaceLimitsSchema: z.ZodObject<{
|
|
|
186
188
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
187
189
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
188
190
|
}, z.core.$strip>>;
|
|
191
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
192
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
193
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
194
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
195
|
+
}, z.core.$strip>>;
|
|
196
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
197
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
198
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
199
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
200
|
+
}, z.core.$strip>>;
|
|
189
201
|
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
190
202
|
value: z.ZodOptional<z.ZodNumber>;
|
|
191
203
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -419,6 +431,16 @@ export declare const Workspace: z.ZodObject<{
|
|
|
419
431
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
420
432
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
421
433
|
}, z.core.$strip>>;
|
|
434
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
435
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
436
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
437
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
438
|
+
}, z.core.$strip>>;
|
|
439
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
440
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
441
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
442
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
443
|
+
}, z.core.$strip>>;
|
|
422
444
|
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
423
445
|
value: z.ZodOptional<z.ZodNumber>;
|
|
424
446
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -674,6 +696,16 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
674
696
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
675
697
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
676
698
|
}, z.core.$strip>>;
|
|
699
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
700
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
701
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
702
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
703
|
+
}, z.core.$strip>>;
|
|
704
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
705
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
706
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
707
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
708
|
+
}, z.core.$strip>>;
|
|
677
709
|
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
678
710
|
value: z.ZodOptional<z.ZodNumber>;
|
|
679
711
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|