@membranehq/sdk 0.11.3 → 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 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 {
@@ -439,21 +439,6 @@ export declare const AccountResponse: z.ZodObject<{
439
439
  defaultValue: z.ZodOptional<z.ZodNumber>;
440
440
  unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
441
441
  }, z.core.$strip>>;
442
- createDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
443
- value: z.ZodOptional<z.ZodNumber>;
444
- defaultValue: z.ZodOptional<z.ZodNumber>;
445
- unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
446
- }, z.core.$strip>>;
447
- updateDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
448
- value: z.ZodOptional<z.ZodNumber>;
449
- defaultValue: z.ZodOptional<z.ZodNumber>;
450
- unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
451
- }, z.core.$strip>>;
452
- parallelWriteDatabaseRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
453
- value: z.ZodOptional<z.ZodNumber>;
454
- defaultValue: z.ZodOptional<z.ZodNumber>;
455
- unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
456
- }, z.core.$strip>>;
457
442
  }, z.core.$strip>>;
458
443
  settings: z.ZodOptional<z.ZodObject<{
459
444
  enableApiLogs: z.ZodOptional<z.ZodBoolean>;
@@ -15,6 +15,7 @@ export declare const UpdateCustomerRequest: z.ZodObject<{
15
15
  export type UpdateCustomerRequest = z.infer<typeof UpdateCustomerRequest>;
16
16
  export declare const FindCustomersQuery: z.ZodObject<{
17
17
  isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
18
+ isActive: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
18
19
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
19
20
  cursor: z.ZodOptional<z.ZodString>;
20
21
  search: z.ZodOptional<z.ZodString>;
@@ -12,6 +12,7 @@ export declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
12
12
  dataLinkTableId: z.ZodOptional<z.ZodString>;
13
13
  connectionId: z.ZodOptional<z.ZodString>;
14
14
  integrationId: z.ZodOptional<z.ZodString>;
15
+ instanceKey: z.ZodOptional<z.ZodString>;
15
16
  }, z.core.$strip>;
16
17
  export type FindDataLinkTableInstancesQuery = z.infer<typeof FindDataLinkTableInstancesQuery>;
17
18
  export interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
@@ -4,5 +4,6 @@ export declare const ListExternalAppsQuery: z.ZodObject<{
4
4
  cursor: z.ZodOptional<z.ZodString>;
5
5
  search: z.ZodOptional<z.ZodString>;
6
6
  category: z.ZodOptional<z.ZodString>;
7
+ isConnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
7
8
  }, z.core.$strip>;
8
9
  export type ListExternalAppsQuery = z.infer<typeof ListExternalAppsQuery>;
@@ -19,6 +19,9 @@ export interface WorkspaceElementSpec {
19
19
  parentFieldKey?: string;
20
20
  universalParentFieldKey?: string;
21
21
  canBeAddedToPackage?: boolean;
22
+ hasParentChildRelationship?: boolean;
23
+ hasKey?: boolean;
24
+ hasUuid?: boolean;
22
25
  }
23
26
  export interface WorkspaceElements {
24
27
  flows?: Record<string, CreateFlowRequest>;
@@ -255,21 +255,6 @@ export declare const WorkspaceLimitsSchema: z.ZodObject<{
255
255
  defaultValue: z.ZodOptional<z.ZodNumber>;
256
256
  unit: z.ZodEnum<typeof LimitUnits>;
257
257
  }, z.core.$strip>>;
258
- createDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
259
- value: z.ZodOptional<z.ZodNumber>;
260
- defaultValue: z.ZodOptional<z.ZodNumber>;
261
- unit: z.ZodEnum<typeof LimitUnits>;
262
- }, z.core.$strip>>;
263
- updateDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
264
- value: z.ZodOptional<z.ZodNumber>;
265
- defaultValue: z.ZodOptional<z.ZodNumber>;
266
- unit: z.ZodEnum<typeof LimitUnits>;
267
- }, z.core.$strip>>;
268
- parallelWriteDatabaseRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
269
- value: z.ZodOptional<z.ZodNumber>;
270
- defaultValue: z.ZodOptional<z.ZodNumber>;
271
- unit: z.ZodEnum<typeof LimitUnits>;
272
- }, z.core.$strip>>;
273
258
  }, z.core.$strip>;
274
259
  export interface WorkspaceExport {
275
260
  [WorkspaceElementType.AppDataSchema]: AppDataSchemaExportProperties[];
@@ -498,21 +483,6 @@ export declare const Workspace: z.ZodObject<{
498
483
  defaultValue: z.ZodOptional<z.ZodNumber>;
499
484
  unit: z.ZodEnum<typeof LimitUnits>;
500
485
  }, z.core.$strip>>;
501
- createDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
502
- value: z.ZodOptional<z.ZodNumber>;
503
- defaultValue: z.ZodOptional<z.ZodNumber>;
504
- unit: z.ZodEnum<typeof LimitUnits>;
505
- }, z.core.$strip>>;
506
- updateDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
507
- value: z.ZodOptional<z.ZodNumber>;
508
- defaultValue: z.ZodOptional<z.ZodNumber>;
509
- unit: z.ZodEnum<typeof LimitUnits>;
510
- }, z.core.$strip>>;
511
- parallelWriteDatabaseRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
512
- value: z.ZodOptional<z.ZodNumber>;
513
- defaultValue: z.ZodOptional<z.ZodNumber>;
514
- unit: z.ZodEnum<typeof LimitUnits>;
515
- }, z.core.$strip>>;
516
486
  }, z.core.$strip>>;
517
487
  settings: z.ZodOptional<z.ZodObject<{
518
488
  enableApiLogs: z.ZodOptional<z.ZodBoolean>;
@@ -752,21 +722,6 @@ export declare const AppSchema: z.ZodObject<{
752
722
  defaultValue: z.ZodOptional<z.ZodNumber>;
753
723
  unit: z.ZodEnum<typeof LimitUnits>;
754
724
  }, z.core.$strip>>;
755
- createDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
756
- value: z.ZodOptional<z.ZodNumber>;
757
- defaultValue: z.ZodOptional<z.ZodNumber>;
758
- unit: z.ZodEnum<typeof LimitUnits>;
759
- }, z.core.$strip>>;
760
- updateDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
761
- value: z.ZodOptional<z.ZodNumber>;
762
- defaultValue: z.ZodOptional<z.ZodNumber>;
763
- unit: z.ZodEnum<typeof LimitUnits>;
764
- }, z.core.$strip>>;
765
- parallelWriteDatabaseRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
766
- value: z.ZodOptional<z.ZodNumber>;
767
- defaultValue: z.ZodOptional<z.ZodNumber>;
768
- unit: z.ZodEnum<typeof LimitUnits>;
769
- }, z.core.$strip>>;
770
725
  }, z.core.$strip>>;
771
726
  settings: z.ZodOptional<z.ZodObject<{
772
727
  enableApiLogs: z.ZodOptional<z.ZodBoolean>;
@@ -13006,6 +13006,7 @@ declare const UpdateCustomerRequest: z.ZodObject<{
13006
13006
  type UpdateCustomerRequest = z.infer<typeof UpdateCustomerRequest>;
13007
13007
  declare const FindCustomersQuery: z.ZodObject<{
13008
13008
  isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
13009
+ isActive: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
13009
13010
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
13010
13011
  cursor: z.ZodOptional<z.ZodString>;
13011
13012
  search: z.ZodOptional<z.ZodString>;
@@ -13080,6 +13081,7 @@ declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
13080
13081
  dataLinkTableId: z.ZodOptional<z.ZodString>;
13081
13082
  connectionId: z.ZodOptional<z.ZodString>;
13082
13083
  integrationId: z.ZodOptional<z.ZodString>;
13084
+ instanceKey: z.ZodOptional<z.ZodString>;
13083
13085
  }, z.core.$strip>;
13084
13086
  type FindDataLinkTableInstancesQuery = z.infer<typeof FindDataLinkTableInstancesQuery>;
13085
13087
  interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
@@ -14708,6 +14710,7 @@ declare const ListExternalAppsQuery: z.ZodObject<{
14708
14710
  cursor: z.ZodOptional<z.ZodString>;
14709
14711
  search: z.ZodOptional<z.ZodString>;
14710
14712
  category: z.ZodOptional<z.ZodString>;
14713
+ isConnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
14711
14714
  }, z.core.$strip>;
14712
14715
  type ListExternalAppsQuery = z.infer<typeof ListExternalAppsQuery>;
14713
14716
 
@@ -15358,6 +15361,9 @@ interface WorkspaceElementSpec {
15358
15361
  parentFieldKey?: string;
15359
15362
  universalParentFieldKey?: string;
15360
15363
  canBeAddedToPackage?: boolean;
15364
+ hasParentChildRelationship?: boolean;
15365
+ hasKey?: boolean;
15366
+ hasUuid?: boolean;
15361
15367
  }
15362
15368
  interface WorkspaceElements {
15363
15369
  flows?: Record<string, CreateFlowRequest>;
@@ -15775,21 +15781,6 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
15775
15781
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
15776
15782
  unit: z$1.ZodEnum<typeof LimitUnits>;
15777
15783
  }, z$1.core.$strip>>;
15778
- createDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
15779
- value: z$1.ZodOptional<z$1.ZodNumber>;
15780
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
15781
- unit: z$1.ZodEnum<typeof LimitUnits>;
15782
- }, z$1.core.$strip>>;
15783
- updateDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
15784
- value: z$1.ZodOptional<z$1.ZodNumber>;
15785
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
15786
- unit: z$1.ZodEnum<typeof LimitUnits>;
15787
- }, z$1.core.$strip>>;
15788
- parallelWriteDatabaseRequestsPerCustomer: z$1.ZodOptional<z$1.ZodObject<{
15789
- value: z$1.ZodOptional<z$1.ZodNumber>;
15790
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
15791
- unit: z$1.ZodEnum<typeof LimitUnits>;
15792
- }, z$1.core.$strip>>;
15793
15784
  }, z$1.core.$strip>;
15794
15785
  interface WorkspaceExport {
15795
15786
  [WorkspaceElementType.AppDataSchema]: AppDataSchemaExportProperties[];
@@ -16018,21 +16009,6 @@ declare const AppSchema: z$1.ZodObject<{
16018
16009
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16019
16010
  unit: z$1.ZodEnum<typeof LimitUnits>;
16020
16011
  }, z$1.core.$strip>>;
16021
- createDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
16022
- value: z$1.ZodOptional<z$1.ZodNumber>;
16023
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16024
- unit: z$1.ZodEnum<typeof LimitUnits>;
16025
- }, z$1.core.$strip>>;
16026
- updateDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
16027
- value: z$1.ZodOptional<z$1.ZodNumber>;
16028
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16029
- unit: z$1.ZodEnum<typeof LimitUnits>;
16030
- }, z$1.core.$strip>>;
16031
- parallelWriteDatabaseRequestsPerCustomer: z$1.ZodOptional<z$1.ZodObject<{
16032
- value: z$1.ZodOptional<z$1.ZodNumber>;
16033
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16034
- unit: z$1.ZodEnum<typeof LimitUnits>;
16035
- }, z$1.core.$strip>>;
16036
16012
  }, z$1.core.$strip>>;
16037
16013
  settings: z$1.ZodOptional<z$1.ZodObject<{
16038
16014
  enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -16272,21 +16248,6 @@ declare const Workspace: z$1.ZodObject<{
16272
16248
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16273
16249
  unit: z$1.ZodEnum<typeof LimitUnits>;
16274
16250
  }, z$1.core.$strip>>;
16275
- createDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
16276
- value: z$1.ZodOptional<z$1.ZodNumber>;
16277
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16278
- unit: z$1.ZodEnum<typeof LimitUnits>;
16279
- }, z$1.core.$strip>>;
16280
- updateDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
16281
- value: z$1.ZodOptional<z$1.ZodNumber>;
16282
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16283
- unit: z$1.ZodEnum<typeof LimitUnits>;
16284
- }, z$1.core.$strip>>;
16285
- parallelWriteDatabaseRequestsPerCustomer: z$1.ZodOptional<z$1.ZodObject<{
16286
- value: z$1.ZodOptional<z$1.ZodNumber>;
16287
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16288
- unit: z$1.ZodEnum<typeof LimitUnits>;
16289
- }, z$1.core.$strip>>;
16290
16251
  }, z$1.core.$strip>>;
16291
16252
  settings: z$1.ZodOptional<z$1.ZodObject<{
16292
16253
  enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -16846,21 +16807,6 @@ declare const AccountResponse: z.ZodObject<{
16846
16807
  defaultValue: z.ZodOptional<z.ZodNumber>;
16847
16808
  unit: z.ZodEnum<typeof LimitUnits>;
16848
16809
  }, z.core.$strip>>;
16849
- createDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
16850
- value: z.ZodOptional<z.ZodNumber>;
16851
- defaultValue: z.ZodOptional<z.ZodNumber>;
16852
- unit: z.ZodEnum<typeof LimitUnits>;
16853
- }, z.core.$strip>>;
16854
- updateDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
16855
- value: z.ZodOptional<z.ZodNumber>;
16856
- defaultValue: z.ZodOptional<z.ZodNumber>;
16857
- unit: z.ZodEnum<typeof LimitUnits>;
16858
- }, z.core.$strip>>;
16859
- parallelWriteDatabaseRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
16860
- value: z.ZodOptional<z.ZodNumber>;
16861
- defaultValue: z.ZodOptional<z.ZodNumber>;
16862
- unit: z.ZodEnum<typeof LimitUnits>;
16863
- }, z.core.$strip>>;
16864
16810
  }, z.core.$strip>>;
16865
16811
  settings: z.ZodOptional<z.ZodObject<{
16866
16812
  enableApiLogs: z.ZodOptional<z.ZodBoolean>;
@@ -13006,6 +13006,7 @@ declare const UpdateCustomerRequest: z.ZodObject<{
13006
13006
  type UpdateCustomerRequest = z.infer<typeof UpdateCustomerRequest>;
13007
13007
  declare const FindCustomersQuery: z.ZodObject<{
13008
13008
  isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
13009
+ isActive: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
13009
13010
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
13010
13011
  cursor: z.ZodOptional<z.ZodString>;
13011
13012
  search: z.ZodOptional<z.ZodString>;
@@ -13080,6 +13081,7 @@ declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
13080
13081
  dataLinkTableId: z.ZodOptional<z.ZodString>;
13081
13082
  connectionId: z.ZodOptional<z.ZodString>;
13082
13083
  integrationId: z.ZodOptional<z.ZodString>;
13084
+ instanceKey: z.ZodOptional<z.ZodString>;
13083
13085
  }, z.core.$strip>;
13084
13086
  type FindDataLinkTableInstancesQuery = z.infer<typeof FindDataLinkTableInstancesQuery>;
13085
13087
  interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
@@ -14708,6 +14710,7 @@ declare const ListExternalAppsQuery: z.ZodObject<{
14708
14710
  cursor: z.ZodOptional<z.ZodString>;
14709
14711
  search: z.ZodOptional<z.ZodString>;
14710
14712
  category: z.ZodOptional<z.ZodString>;
14713
+ isConnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
14711
14714
  }, z.core.$strip>;
14712
14715
  type ListExternalAppsQuery = z.infer<typeof ListExternalAppsQuery>;
14713
14716
 
@@ -15358,6 +15361,9 @@ interface WorkspaceElementSpec {
15358
15361
  parentFieldKey?: string;
15359
15362
  universalParentFieldKey?: string;
15360
15363
  canBeAddedToPackage?: boolean;
15364
+ hasParentChildRelationship?: boolean;
15365
+ hasKey?: boolean;
15366
+ hasUuid?: boolean;
15361
15367
  }
15362
15368
  interface WorkspaceElements {
15363
15369
  flows?: Record<string, CreateFlowRequest>;
@@ -15775,21 +15781,6 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
15775
15781
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
15776
15782
  unit: z$1.ZodEnum<typeof LimitUnits>;
15777
15783
  }, z$1.core.$strip>>;
15778
- createDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
15779
- value: z$1.ZodOptional<z$1.ZodNumber>;
15780
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
15781
- unit: z$1.ZodEnum<typeof LimitUnits>;
15782
- }, z$1.core.$strip>>;
15783
- updateDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
15784
- value: z$1.ZodOptional<z$1.ZodNumber>;
15785
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
15786
- unit: z$1.ZodEnum<typeof LimitUnits>;
15787
- }, z$1.core.$strip>>;
15788
- parallelWriteDatabaseRequestsPerCustomer: z$1.ZodOptional<z$1.ZodObject<{
15789
- value: z$1.ZodOptional<z$1.ZodNumber>;
15790
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
15791
- unit: z$1.ZodEnum<typeof LimitUnits>;
15792
- }, z$1.core.$strip>>;
15793
15784
  }, z$1.core.$strip>;
15794
15785
  interface WorkspaceExport {
15795
15786
  [WorkspaceElementType.AppDataSchema]: AppDataSchemaExportProperties[];
@@ -16018,21 +16009,6 @@ declare const AppSchema: z$1.ZodObject<{
16018
16009
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16019
16010
  unit: z$1.ZodEnum<typeof LimitUnits>;
16020
16011
  }, z$1.core.$strip>>;
16021
- createDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
16022
- value: z$1.ZodOptional<z$1.ZodNumber>;
16023
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16024
- unit: z$1.ZodEnum<typeof LimitUnits>;
16025
- }, z$1.core.$strip>>;
16026
- updateDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
16027
- value: z$1.ZodOptional<z$1.ZodNumber>;
16028
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16029
- unit: z$1.ZodEnum<typeof LimitUnits>;
16030
- }, z$1.core.$strip>>;
16031
- parallelWriteDatabaseRequestsPerCustomer: z$1.ZodOptional<z$1.ZodObject<{
16032
- value: z$1.ZodOptional<z$1.ZodNumber>;
16033
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16034
- unit: z$1.ZodEnum<typeof LimitUnits>;
16035
- }, z$1.core.$strip>>;
16036
16012
  }, z$1.core.$strip>>;
16037
16013
  settings: z$1.ZodOptional<z$1.ZodObject<{
16038
16014
  enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -16272,21 +16248,6 @@ declare const Workspace: z$1.ZodObject<{
16272
16248
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16273
16249
  unit: z$1.ZodEnum<typeof LimitUnits>;
16274
16250
  }, z$1.core.$strip>>;
16275
- createDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
16276
- value: z$1.ZodOptional<z$1.ZodNumber>;
16277
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16278
- unit: z$1.ZodEnum<typeof LimitUnits>;
16279
- }, z$1.core.$strip>>;
16280
- updateDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
16281
- value: z$1.ZodOptional<z$1.ZodNumber>;
16282
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16283
- unit: z$1.ZodEnum<typeof LimitUnits>;
16284
- }, z$1.core.$strip>>;
16285
- parallelWriteDatabaseRequestsPerCustomer: z$1.ZodOptional<z$1.ZodObject<{
16286
- value: z$1.ZodOptional<z$1.ZodNumber>;
16287
- defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
16288
- unit: z$1.ZodEnum<typeof LimitUnits>;
16289
- }, z$1.core.$strip>>;
16290
16251
  }, z$1.core.$strip>>;
16291
16252
  settings: z$1.ZodOptional<z$1.ZodObject<{
16292
16253
  enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -16846,21 +16807,6 @@ declare const AccountResponse: z.ZodObject<{
16846
16807
  defaultValue: z.ZodOptional<z.ZodNumber>;
16847
16808
  unit: z.ZodEnum<typeof LimitUnits>;
16848
16809
  }, z.core.$strip>>;
16849
- createDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
16850
- value: z.ZodOptional<z.ZodNumber>;
16851
- defaultValue: z.ZodOptional<z.ZodNumber>;
16852
- unit: z.ZodEnum<typeof LimitUnits>;
16853
- }, z.core.$strip>>;
16854
- updateDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
16855
- value: z.ZodOptional<z.ZodNumber>;
16856
- defaultValue: z.ZodOptional<z.ZodNumber>;
16857
- unit: z.ZodEnum<typeof LimitUnits>;
16858
- }, z.core.$strip>>;
16859
- parallelWriteDatabaseRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
16860
- value: z.ZodOptional<z.ZodNumber>;
16861
- defaultValue: z.ZodOptional<z.ZodNumber>;
16862
- unit: z.ZodEnum<typeof LimitUnits>;
16863
- }, z.core.$strip>>;
16864
16810
  }, z.core.$strip>>;
16865
16811
  settings: z.ZodOptional<z.ZodObject<{
16866
16812
  enableApiLogs: z.ZodOptional<z.ZodBoolean>;
@@ -10266,7 +10266,16 @@ const DataSourceInstanceApiResponse = BaseDataSourceInstance.extend({
10266
10266
 
10267
10267
  const ListExternalAppsQuery = PaginationQuery.extend({
10268
10268
  search: z.z.string().optional(),
10269
- category: z.z.string().optional(),
10269
+ category: z.z
10270
+ .string()
10271
+ .optional()
10272
+ .meta({ hidden: true }),
10273
+ isConnected: zodBooleanCoercion()
10274
+ .optional()
10275
+ .meta({
10276
+ filterTitle: 'Is Connected',
10277
+ isFlag: true,
10278
+ }),
10270
10279
  });
10271
10280
 
10272
10281
  const ExternalEvent = BaseExternalEvent.extend({
@@ -10407,7 +10416,18 @@ const UpdateCustomerRequest = z.z.object({
10407
10416
  });
10408
10417
  const FindCustomersQuery = z.z
10409
10418
  .object({
10410
- isTest: zodBooleanCoercion().optional(),
10419
+ isTest: zodBooleanCoercion()
10420
+ .optional()
10421
+ .meta({
10422
+ filterTitle: 'Is Test',
10423
+ isFlag: true,
10424
+ }),
10425
+ isActive: zodBooleanCoercion()
10426
+ .optional()
10427
+ .meta({
10428
+ filterTitle: 'Is Active',
10429
+ isFlag: true,
10430
+ }),
10411
10431
  })
10412
10432
  .merge(PaginationQuery)
10413
10433
  .merge(SearchQuery);
@@ -10451,8 +10471,26 @@ const FindDataLinkTableInstancesQuery = PaginationQuery.extend({
10451
10471
  hidden: true,
10452
10472
  }),
10453
10473
  dataLinkTableId: z.z.string().optional(),
10454
- connectionId: z.z.string().optional(),
10455
- integrationId: z.z.string().optional(),
10474
+ connectionId: z.z
10475
+ .string()
10476
+ .optional()
10477
+ .meta({
10478
+ filterTitle: 'Connection',
10479
+ referenceElementType: exports.WorkspaceElementType.Connection,
10480
+ }),
10481
+ integrationId: z.z
10482
+ .string()
10483
+ .optional()
10484
+ .meta({
10485
+ filterTitle: 'Integration',
10486
+ referenceElementType: exports.WorkspaceElementType.Integration,
10487
+ }),
10488
+ instanceKey: z.z
10489
+ .string()
10490
+ .optional()
10491
+ .meta({
10492
+ filterTitle: 'Instance Key',
10493
+ }),
10456
10494
  });
10457
10495
  const FindDataLinksInTableQuery = PaginationQuery.extend({
10458
10496
  direction: z.z.enum(exports.DataLinkDirection).optional(),
@@ -10513,7 +10551,12 @@ const FindAppEventSubscriptionsQuery = PaginationQuery.merge(SearchQuery)
10513
10551
  }),
10514
10552
  appEventTypeId: z.z.string().optional(),
10515
10553
  isSubscribed: zodBooleanCoercion().optional(),
10516
- instanceKey: z.z.string().optional(),
10554
+ instanceKey: z.z
10555
+ .string()
10556
+ .optional()
10557
+ .meta({
10558
+ filterTitle: 'Instance Key',
10559
+ }),
10517
10560
  });
10518
10561
  const AppEventSubscriptionApiResponse = BaseAppEventSubscription.extend({
10519
10562
  appEventType: BaseAppEventType.optional(),
@@ -10535,7 +10578,12 @@ const FindAppDataSchemaInstancesQuery = PaginationQuery.extend({
10535
10578
  hidden: true,
10536
10579
  }),
10537
10580
  appDataSchemaId: z.z.string().optional(),
10538
- instanceKey: z.z.string().optional(),
10581
+ instanceKey: z.z
10582
+ .string()
10583
+ .optional()
10584
+ .meta({
10585
+ filterTitle: 'Instance Key',
10586
+ }),
10539
10587
  });
10540
10588
  const AppDataSchemaInstanceApiResponse = BaseAppDataSchemaInstance.extend({
10541
10589
  user: BaseCustomer.optional(),
@@ -10589,7 +10637,13 @@ const ListExternalEventSubscriptionsQuery = CommonListElementsQuery.extend({
10589
10637
  userId: z.z.string().optional().meta({
10590
10638
  hidden: true,
10591
10639
  }),
10592
- connectionId: z.z.string().optional(),
10640
+ connectionId: z.z
10641
+ .string()
10642
+ .optional()
10643
+ .meta({
10644
+ filterTitle: 'Connection',
10645
+ referenceElementType: exports.WorkspaceElementType.Connection,
10646
+ }),
10593
10647
  integrationId: z.z
10594
10648
  .string()
10595
10649
  .optional()
@@ -10878,6 +10932,7 @@ const WorkspaceElementSpecs = {
10878
10932
  apiPath: 'external-apps',
10879
10933
  name: 'App',
10880
10934
  namePlural: 'Apps',
10935
+ hasKey: true,
10881
10936
  },
10882
10937
  [exports.WorkspaceElementType.Integration]: {
10883
10938
  type: exports.WorkspaceElementType.Integration,
@@ -10886,6 +10941,7 @@ const WorkspaceElementSpecs = {
10886
10941
  namePlural: 'Integrations',
10887
10942
  editablePropertiesSchema: IntegrationEditableProperties,
10888
10943
  exportPropertiesSchema: IntegrationExportProperties,
10944
+ hasKey: true,
10889
10945
  },
10890
10946
  [exports.WorkspaceElementType.Connector]: {
10891
10947
  type: exports.WorkspaceElementType.Connector,
@@ -10893,12 +10949,15 @@ const WorkspaceElementSpecs = {
10893
10949
  name: 'Connector',
10894
10950
  namePlural: 'Connectors',
10895
10951
  exportPropertiesSchema: ConnectorExportProperties,
10952
+ hasKey: true,
10896
10953
  },
10897
10954
  [exports.WorkspaceElementType.Connection]: {
10898
10955
  type: exports.WorkspaceElementType.Connection,
10899
10956
  apiPath: 'connections',
10900
10957
  name: 'Connection',
10901
10958
  namePlural: 'Connections',
10959
+ hasKey: false,
10960
+ hasUuid: false,
10902
10961
  },
10903
10962
  [exports.WorkspaceElementType.Package]: {
10904
10963
  type: exports.WorkspaceElementType.Package,
@@ -10911,6 +10970,8 @@ const WorkspaceElementSpecs = {
10911
10970
  findQuerySchema: FindPackagesQuery,
10912
10971
  isMembraneInterface: true,
10913
10972
  isIntegrationLevel: true,
10973
+ hasKey: true,
10974
+ hasParentChildRelationship: true,
10914
10975
  },
10915
10976
  [exports.WorkspaceElementType.ActionInstance]: {
10916
10977
  type: exports.WorkspaceElementType.ActionInstance,
@@ -10924,6 +10985,7 @@ const WorkspaceElementSpecs = {
10924
10985
  apiPath: 'actions',
10925
10986
  name: 'Action',
10926
10987
  namePlural: 'Actions',
10988
+ parentFieldKey: 'parentId',
10927
10989
  editablePropertiesSchema: ActionEditableProperties,
10928
10990
  exportPropertiesSchema: ActionExportProperties,
10929
10991
  apiResponseSchema: ActionApiResponse,
@@ -10931,6 +10993,8 @@ const WorkspaceElementSpecs = {
10931
10993
  isMembraneInterface: true,
10932
10994
  isIntegrationLevel: true,
10933
10995
  canBeAddedToPackage: true,
10996
+ hasParentChildRelationship: true,
10997
+ hasKey: true,
10934
10998
  },
10935
10999
  [exports.WorkspaceElementType.ActionRunLogRecord]: {
10936
11000
  type: exports.WorkspaceElementType.ActionRunLogRecord,
@@ -10951,6 +11015,8 @@ const WorkspaceElementSpecs = {
10951
11015
  isMembraneInterface: true,
10952
11016
  isIntegrationLevel: true,
10953
11017
  canBeAddedToPackage: true,
11018
+ hasParentChildRelationship: true,
11019
+ hasKey: true,
10954
11020
  },
10955
11021
  [exports.WorkspaceElementType.FlowInstance]: {
10956
11022
  type: exports.WorkspaceElementType.FlowInstance,
@@ -10982,6 +11048,8 @@ const WorkspaceElementSpecs = {
10982
11048
  isMembraneInterface: true,
10983
11049
  isIntegrationLevel: true,
10984
11050
  canBeAddedToPackage: true,
11051
+ hasParentChildRelationship: true,
11052
+ hasKey: true,
10985
11053
  },
10986
11054
  [exports.WorkspaceElementType.FieldMappingInstance]: {
10987
11055
  type: exports.WorkspaceElementType.FieldMappingInstance,
@@ -11006,6 +11074,8 @@ const WorkspaceElementSpecs = {
11006
11074
  isMembraneInterface: true,
11007
11075
  isIntegrationLevel: true,
11008
11076
  canBeAddedToPackage: true,
11077
+ hasParentChildRelationship: true,
11078
+ hasKey: true,
11009
11079
  },
11010
11080
  [exports.WorkspaceElementType.DataSourceInstance]: {
11011
11081
  type: exports.WorkspaceElementType.DataSourceInstance,
@@ -11027,6 +11097,7 @@ const WorkspaceElementSpecs = {
11027
11097
  findQuerySchema: FindDataLinkTablesQuery,
11028
11098
  isMembraneInterface: true,
11029
11099
  canBeAddedToPackage: true,
11100
+ hasKey: true,
11030
11101
  },
11031
11102
  [exports.WorkspaceElementType.DataLinkTableInstance]: {
11032
11103
  type: exports.WorkspaceElementType.DataLinkTableInstance,
@@ -11045,6 +11116,7 @@ const WorkspaceElementSpecs = {
11045
11116
  exportPropertiesSchema: AppEventTypeExportProperties,
11046
11117
  editablePropertiesSchema: AppEventTypeEditableProperties,
11047
11118
  canBeAddedToPackage: true,
11119
+ hasKey: true,
11048
11120
  },
11049
11121
  [exports.WorkspaceElementType.AppEventSubscription]: {
11050
11122
  type: exports.WorkspaceElementType.AppEventSubscription,
@@ -11068,6 +11140,7 @@ const WorkspaceElementSpecs = {
11068
11140
  exportPropertiesSchema: AppDataSchemaExportProperties,
11069
11141
  editablePropertiesSchema: AppDataSchemaEditableProperties,
11070
11142
  canBeAddedToPackage: true,
11143
+ hasKey: true,
11071
11144
  },
11072
11145
  [exports.WorkspaceElementType.AppDataSchemaInstance]: {
11073
11146
  type: exports.WorkspaceElementType.AppDataSchemaInstance,
@@ -11102,6 +11175,7 @@ const WorkspaceElementSpecs = {
11102
11175
  name: 'Screen',
11103
11176
  namePlural: 'Screens',
11104
11177
  isMembraneInterface: true,
11178
+ hasKey: true,
11105
11179
  },
11106
11180
  };
11107
11181
 
@@ -11864,9 +11938,6 @@ const WorkspaceLimitsSchema = z.object({
11864
11938
  webhookRequestsPerCustomerPerSecond: WorkspaceLimit.optional(),
11865
11939
  webhookRequestsPerCustomerPerHour: WorkspaceLimit.optional(),
11866
11940
  externalEventsPerCustomerPerDay: WorkspaceLimit.optional(),
11867
- createDatabaseRequestsPerCustomerPerSecond: WorkspaceLimit.optional(),
11868
- updateDatabaseRequestsPerCustomerPerSecond: WorkspaceLimit.optional(),
11869
- parallelWriteDatabaseRequestsPerCustomer: WorkspaceLimit.optional(),
11870
11941
  });
11871
11942
  const WorkspaceSettingsSchema = z.object({
11872
11943
  enableApiLogs: z.boolean().optional(),