@keystrokehq/project_bubble 0.1.2 → 0.1.3

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.
@@ -7,8 +7,8 @@ const ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema = zod.z.obje
7
7
  type: zod.z.string().describe("Data type of the field (e.g., 'text', 'number')").nullable(),
8
8
  required: zod.z.boolean().describe("Whether the field is required").nullable(),
9
9
  description: zod.z.string().describe("Optional description of the field").nullable().optional()
10
- }).describe("Model for a single field in a data type.");
11
- const ProjectBubbleDataApiGetDataTypeFieldsOutput = zod.z.object({ fields: zod.z.array(ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema).describe("List of custom fields defined for this data type. Empty list indicates no custom fields are configured.") }).describe("Response model for retrieving fields of a specific Bubble data type.");
10
+ }).passthrough().describe("Model for a single field in a data type.");
11
+ const ProjectBubbleDataApiGetDataTypeFieldsOutput = zod.z.object({ fields: zod.z.array(ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema).describe("List of custom fields defined for this data type. Empty list indicates no custom fields are configured.") }).passthrough().describe("Response model for retrieving fields of a specific Bubble data type.");
12
12
  const projectBubbleDataApiGetDataTypeFields = require_action.action("PROJECT_BUBBLE_DATA_API_GET_DATA_TYPE_FIELDS", {
13
13
  slug: "project_bubble-data-api-get-data-type-fields",
14
14
  name: "Data API Get Data Type Fields",
@@ -1 +1 @@
1
- {"version":3,"file":"data-api-get-data-type-fields.cjs","names":["z","action"],"sources":["../../src/actions/data-api-get-data-type-fields.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProjectBubbleDataApiGetDataTypeFieldsInput = z.object({\n data_type: z.string().describe(\"The name of the Bubble data type to retrieve field schema for (case-sensitive).\"),\n}).describe(\"Request model for retrieving fields of a specific Bubble data type.\");\nconst ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema = z.object({\n name: z.string().describe(\"Name of the field\").nullable(),\n type: z.string().describe(\"Data type of the field (e.g., 'text', 'number')\").nullable(),\n required: z.boolean().describe(\"Whether the field is required\").nullable(),\n description: z.string().describe(\"Optional description of the field\").nullable().optional(),\n}).describe(\"Model for a single field in a data type.\");\nexport const ProjectBubbleDataApiGetDataTypeFieldsOutput = z.object({\n fields: z.array(ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema).describe(\"List of custom fields defined for this data type. Empty list indicates no custom fields are configured.\"),\n}).describe(\"Response model for retrieving fields of a specific Bubble data type.\");\n\nexport const projectBubbleDataApiGetDataTypeFields = action(\"PROJECT_BUBBLE_DATA_API_GET_DATA_TYPE_FIELDS\", {\n slug: \"project_bubble-data-api-get-data-type-fields\",\n name: \"Data API Get Data Type Fields\",\n description: \"Retrieves the field schema for a specific Bubble data type, returning metadata about each field including its name, data type, and whether it's required. Use this after discovering available data types to understand their structure before querying or manipulating records.\",\n input: ProjectBubbleDataApiGetDataTypeFieldsInput,\n output: ProjectBubbleDataApiGetDataTypeFieldsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6CA,IAAAA,EAAE,OAAO,EACjE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,EAClH,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACjF,MAAM,gEAAgEA,IAAAA,EAAE,OAAO;CAC7E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACtF,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACzE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,8CAA8CA,IAAAA,EAAE,OAAO,EAClE,QAAQA,IAAAA,EAAE,MAAM,6DAA6D,CAAC,CAAC,SAAS,yGAAyG,EACnM,CAAC,CAAC,CAAC,SAAS,sEAAsE;AAElF,MAAa,wCAAwCC,eAAAA,OAAO,gDAAgD;CAC1G,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"data-api-get-data-type-fields.cjs","names":["z","action"],"sources":["../../src/actions/data-api-get-data-type-fields.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProjectBubbleDataApiGetDataTypeFieldsInput = z.object({\n data_type: z.string().describe(\"The name of the Bubble data type to retrieve field schema for (case-sensitive).\"),\n}).describe(\"Request model for retrieving fields of a specific Bubble data type.\");\nconst ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema = z.object({\n name: z.string().describe(\"Name of the field\").nullable(),\n type: z.string().describe(\"Data type of the field (e.g., 'text', 'number')\").nullable(),\n required: z.boolean().describe(\"Whether the field is required\").nullable(),\n description: z.string().describe(\"Optional description of the field\").nullable().optional(),\n}).passthrough().describe(\"Model for a single field in a data type.\");\nexport const ProjectBubbleDataApiGetDataTypeFieldsOutput = z.object({\n fields: z.array(ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema).describe(\"List of custom fields defined for this data type. Empty list indicates no custom fields are configured.\"),\n}).passthrough().describe(\"Response model for retrieving fields of a specific Bubble data type.\");\n\nexport const projectBubbleDataApiGetDataTypeFields = action(\"PROJECT_BUBBLE_DATA_API_GET_DATA_TYPE_FIELDS\", {\n slug: \"project_bubble-data-api-get-data-type-fields\",\n name: \"Data API Get Data Type Fields\",\n description: \"Retrieves the field schema for a specific Bubble data type, returning metadata about each field including its name, data type, and whether it's required. Use this after discovering available data types to understand their structure before querying or manipulating records.\",\n input: ProjectBubbleDataApiGetDataTypeFieldsInput,\n output: ProjectBubbleDataApiGetDataTypeFieldsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6CA,IAAAA,EAAE,OAAO,EACjE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,EAClH,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACjF,MAAM,gEAAgEA,IAAAA,EAAE,OAAO;CAC7E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACtF,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACzE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,0CAA0C;AACpE,MAAa,8CAA8CA,IAAAA,EAAE,OAAO,EAClE,QAAQA,IAAAA,EAAE,MAAM,6DAA6D,CAAC,CAAC,SAAS,yGAAyG,EACnM,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sEAAsE;AAEhG,MAAa,wCAAwCC,eAAAA,OAAO,gDAAgD;CAC1G,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -10,8 +10,8 @@ declare const ProjectBubbleDataApiGetDataTypeFieldsOutput: z.ZodObject<{
10
10
  type: z.ZodNullable<z.ZodString>;
11
11
  required: z.ZodNullable<z.ZodBoolean>;
12
12
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
- }, z.core.$strip>>;
14
- }, z.core.$strip>;
13
+ }, z.core.$loose>>;
14
+ }, z.core.$loose>;
15
15
  declare const projectBubbleDataApiGetDataTypeFields: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  data_type: string;
17
17
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -10,8 +10,8 @@ declare const ProjectBubbleDataApiGetDataTypeFieldsOutput: z.ZodObject<{
10
10
  type: z.ZodNullable<z.ZodString>;
11
11
  required: z.ZodNullable<z.ZodBoolean>;
12
12
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
- }, z.core.$strip>>;
14
- }, z.core.$strip>;
13
+ }, z.core.$loose>>;
14
+ }, z.core.$loose>;
15
15
  declare const projectBubbleDataApiGetDataTypeFields: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  data_type: string;
17
17
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -7,13 +7,13 @@ const ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema = z.object({
7
7
  type: z.string().describe("Data type of the field (e.g., 'text', 'number')").nullable(),
8
8
  required: z.boolean().describe("Whether the field is required").nullable(),
9
9
  description: z.string().describe("Optional description of the field").nullable().optional()
10
- }).describe("Model for a single field in a data type.");
10
+ }).passthrough().describe("Model for a single field in a data type.");
11
11
  const projectBubbleDataApiGetDataTypeFields = action("PROJECT_BUBBLE_DATA_API_GET_DATA_TYPE_FIELDS", {
12
12
  slug: "project_bubble-data-api-get-data-type-fields",
13
13
  name: "Data API Get Data Type Fields",
14
14
  description: "Retrieves the field schema for a specific Bubble data type, returning metadata about each field including its name, data type, and whether it's required. Use this after discovering available data types to understand their structure before querying or manipulating records.",
15
15
  input: ProjectBubbleDataApiGetDataTypeFieldsInput,
16
- output: z.object({ fields: z.array(ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema).describe("List of custom fields defined for this data type. Empty list indicates no custom fields are configured.") }).describe("Response model for retrieving fields of a specific Bubble data type.")
16
+ output: z.object({ fields: z.array(ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema).describe("List of custom fields defined for this data type. Empty list indicates no custom fields are configured.") }).passthrough().describe("Response model for retrieving fields of a specific Bubble data type.")
17
17
  });
18
18
  //#endregion
19
19
  export { projectBubbleDataApiGetDataTypeFields };
@@ -1 +1 @@
1
- {"version":3,"file":"data-api-get-data-type-fields.mjs","names":[],"sources":["../../src/actions/data-api-get-data-type-fields.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProjectBubbleDataApiGetDataTypeFieldsInput = z.object({\n data_type: z.string().describe(\"The name of the Bubble data type to retrieve field schema for (case-sensitive).\"),\n}).describe(\"Request model for retrieving fields of a specific Bubble data type.\");\nconst ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema = z.object({\n name: z.string().describe(\"Name of the field\").nullable(),\n type: z.string().describe(\"Data type of the field (e.g., 'text', 'number')\").nullable(),\n required: z.boolean().describe(\"Whether the field is required\").nullable(),\n description: z.string().describe(\"Optional description of the field\").nullable().optional(),\n}).describe(\"Model for a single field in a data type.\");\nexport const ProjectBubbleDataApiGetDataTypeFieldsOutput = z.object({\n fields: z.array(ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema).describe(\"List of custom fields defined for this data type. Empty list indicates no custom fields are configured.\"),\n}).describe(\"Response model for retrieving fields of a specific Bubble data type.\");\n\nexport const projectBubbleDataApiGetDataTypeFields = action(\"PROJECT_BUBBLE_DATA_API_GET_DATA_TYPE_FIELDS\", {\n slug: \"project_bubble-data-api-get-data-type-fields\",\n name: \"Data API Get Data Type Fields\",\n description: \"Retrieves the field schema for a specific Bubble data type, returning metadata about each field including its name, data type, and whether it's required. Use this after discovering available data types to understand their structure before querying or manipulating records.\",\n input: ProjectBubbleDataApiGetDataTypeFieldsInput,\n output: ProjectBubbleDataApiGetDataTypeFieldsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6C,EAAE,OAAO,EACjE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,EAClH,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACjF,MAAM,gEAAgE,EAAE,OAAO;CAC7E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACtF,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACzE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAKtD,MAAa,wCAAwC,OAAO,gDAAgD;CAC1G,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATyD,EAAE,OAAO,EAClE,QAAQ,EAAE,MAAM,6DAA6D,CAAC,CAAC,SAAS,yGAAyG,EACnM,CAAC,CAAC,CAAC,SAAS,sEAOF;AACV,CAAC"}
1
+ {"version":3,"file":"data-api-get-data-type-fields.mjs","names":[],"sources":["../../src/actions/data-api-get-data-type-fields.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProjectBubbleDataApiGetDataTypeFieldsInput = z.object({\n data_type: z.string().describe(\"The name of the Bubble data type to retrieve field schema for (case-sensitive).\"),\n}).describe(\"Request model for retrieving fields of a specific Bubble data type.\");\nconst ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema = z.object({\n name: z.string().describe(\"Name of the field\").nullable(),\n type: z.string().describe(\"Data type of the field (e.g., 'text', 'number')\").nullable(),\n required: z.boolean().describe(\"Whether the field is required\").nullable(),\n description: z.string().describe(\"Optional description of the field\").nullable().optional(),\n}).passthrough().describe(\"Model for a single field in a data type.\");\nexport const ProjectBubbleDataApiGetDataTypeFieldsOutput = z.object({\n fields: z.array(ProjectBubbleDataApiGetDataTypeFields_DataTypeFieldInfoSchema).describe(\"List of custom fields defined for this data type. Empty list indicates no custom fields are configured.\"),\n}).passthrough().describe(\"Response model for retrieving fields of a specific Bubble data type.\");\n\nexport const projectBubbleDataApiGetDataTypeFields = action(\"PROJECT_BUBBLE_DATA_API_GET_DATA_TYPE_FIELDS\", {\n slug: \"project_bubble-data-api-get-data-type-fields\",\n name: \"Data API Get Data Type Fields\",\n description: \"Retrieves the field schema for a specific Bubble data type, returning metadata about each field including its name, data type, and whether it's required. Use this after discovering available data types to understand their structure before querying or manipulating records.\",\n input: ProjectBubbleDataApiGetDataTypeFieldsInput,\n output: ProjectBubbleDataApiGetDataTypeFieldsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6C,EAAE,OAAO,EACjE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,EAClH,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACjF,MAAM,gEAAgE,EAAE,OAAO;CAC7E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACtF,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACzE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,0CAA0C;AAKpE,MAAa,wCAAwC,OAAO,gDAAgD;CAC1G,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATyD,EAAE,OAAO,EAClE,QAAQ,EAAE,MAAM,6DAA6D,CAAC,CAAC,SAAS,yGAAyG,EACnM,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sEAOhB;AACV,CAAC"}
@@ -15,7 +15,7 @@ const ProjectBubbleDataApiGetObjectsOutput = zod.z.object({
15
15
  count: zod.z.number().int().describe("Total count of matching objects. Present only when count='yes'.").nullable().optional(),
16
16
  results: zod.z.array(zod.z.record(zod.z.string(), zod.z.unknown())).describe("List of objects matching the query. Each object includes its fields and metadata. Omitted when count='yes'.").nullable().optional(),
17
17
  remaining: zod.z.number().int().describe("Estimated number of objects remaining beyond the returned results.").nullable().optional()
18
- }).describe("Response model for listing objects in a Bubble Data API data type.");
18
+ }).passthrough().describe("Response model for listing objects in a Bubble Data API data type.");
19
19
  const projectBubbleDataApiGetObjects = require_action.action("PROJECT_BUBBLE_DATA_API_GET_OBJECTS", {
20
20
  slug: "project_bubble-data-api-get-objects",
21
21
  name: "Data API Get Objects",
@@ -1 +1 @@
1
- {"version":3,"file":"data-api-get-objects.cjs","names":["z","action"],"sources":["../../src/actions/data-api-get-objects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProjectBubbleDataApiGetObjectsInput = z.object({\n count: z.enum([\"yes\", \"no\"]).describe(\"If 'yes', return only the total count of matching objects instead of object data.\").optional(),\n limit: z.number().int().describe(\"Maximum number of objects to return (1–1000). Defaults to server-side setting if omitted.\").optional(),\n cursor: z.string().describe(\"Pagination cursor from a previous response for fetching the next page.\").optional(),\n data_type: z.string().describe(\"Name of the Bubble data type to list objects from (case-sensitive).\"),\n descending: z.enum([\"yes\", \"no\"]).describe(\"Sort in descending order when 'yes'; ascending when 'no' or omitted.\").optional(),\n sort_field: z.string().describe(\"Field name to sort results by (must be a valid field on the data type).\").optional(),\n constraints: z.string().describe(\"JSON-encoded search constraints to filter objects. For example: '{\\\"Status\\\":\\\"Active\\\"}'.\").optional(),\n ignore_fields: z.enum([\"yes\", \"no\"]).describe(\"If 'yes', omit null-valued fields in each returned object.\").optional(),\n}).describe(\"Request model for retrieving multiple objects from a Bubble Data API data type.\");\nexport const ProjectBubbleDataApiGetObjectsOutput = z.object({\n count: z.number().int().describe(\"Total count of matching objects. Present only when count='yes'.\").nullable().optional(),\n results: z.array(z.record(z.string(), z.unknown())).describe(\"List of objects matching the query. Each object includes its fields and metadata. Omitted when count='yes'.\").nullable().optional(),\n remaining: z.number().int().describe(\"Estimated number of objects remaining beyond the returned results.\").nullable().optional(),\n}).describe(\"Response model for listing objects in a Bubble Data API data type.\");\n\nexport const projectBubbleDataApiGetObjects = action(\"PROJECT_BUBBLE_DATA_API_GET_OBJECTS\", {\n slug: \"project_bubble-data-api-get-objects\",\n name: \"Data API Get Objects\",\n description: \"Tool to retrieve a list of objects for a specified data type. Use when you need to list items with optional filters, sorting, and pagination.\",\n input: ProjectBubbleDataApiGetObjectsInput,\n output: ProjectBubbleDataApiGetObjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sCAAsCA,IAAAA,EAAE,OAAO;CAC1D,OAAOA,IAAAA,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;CACpI,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS;CACvI,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;CAC/G,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;CACpG,YAAYA,IAAAA,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CAC5H,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yEAAyE,CAAC,CAAC,SAAS;CACpH,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,CAAC,CAAC,SAAS;CACxI,eAAeA,IAAAA,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;AACvH,CAAC,CAAC,CAAC,SAAS,iFAAiF;AAC7F,MAAa,uCAAuCA,IAAAA,EAAE,OAAO;CAC3D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChM,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjI,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAEhF,MAAa,iCAAiCC,eAAAA,OAAO,uCAAuC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"data-api-get-objects.cjs","names":["z","action"],"sources":["../../src/actions/data-api-get-objects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProjectBubbleDataApiGetObjectsInput = z.object({\n count: z.enum([\"yes\", \"no\"]).describe(\"If 'yes', return only the total count of matching objects instead of object data.\").optional(),\n limit: z.number().int().describe(\"Maximum number of objects to return (1–1000). Defaults to server-side setting if omitted.\").optional(),\n cursor: z.string().describe(\"Pagination cursor from a previous response for fetching the next page.\").optional(),\n data_type: z.string().describe(\"Name of the Bubble data type to list objects from (case-sensitive).\"),\n descending: z.enum([\"yes\", \"no\"]).describe(\"Sort in descending order when 'yes'; ascending when 'no' or omitted.\").optional(),\n sort_field: z.string().describe(\"Field name to sort results by (must be a valid field on the data type).\").optional(),\n constraints: z.string().describe(\"JSON-encoded search constraints to filter objects. For example: '{\\\"Status\\\":\\\"Active\\\"}'.\").optional(),\n ignore_fields: z.enum([\"yes\", \"no\"]).describe(\"If 'yes', omit null-valued fields in each returned object.\").optional(),\n}).describe(\"Request model for retrieving multiple objects from a Bubble Data API data type.\");\nexport const ProjectBubbleDataApiGetObjectsOutput = z.object({\n count: z.number().int().describe(\"Total count of matching objects. Present only when count='yes'.\").nullable().optional(),\n results: z.array(z.record(z.string(), z.unknown())).describe(\"List of objects matching the query. Each object includes its fields and metadata. Omitted when count='yes'.\").nullable().optional(),\n remaining: z.number().int().describe(\"Estimated number of objects remaining beyond the returned results.\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing objects in a Bubble Data API data type.\");\n\nexport const projectBubbleDataApiGetObjects = action(\"PROJECT_BUBBLE_DATA_API_GET_OBJECTS\", {\n slug: \"project_bubble-data-api-get-objects\",\n name: \"Data API Get Objects\",\n description: \"Tool to retrieve a list of objects for a specified data type. Use when you need to list items with optional filters, sorting, and pagination.\",\n input: ProjectBubbleDataApiGetObjectsInput,\n output: ProjectBubbleDataApiGetObjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sCAAsCA,IAAAA,EAAE,OAAO;CAC1D,OAAOA,IAAAA,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;CACpI,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS;CACvI,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;CAC/G,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;CACpG,YAAYA,IAAAA,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CAC5H,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yEAAyE,CAAC,CAAC,SAAS;CACpH,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,CAAC,CAAC,SAAS;CACxI,eAAeA,IAAAA,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;AACvH,CAAC,CAAC,CAAC,SAAS,iFAAiF;AAC7F,MAAa,uCAAuCA,IAAAA,EAAE,OAAO;CAC3D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChM,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oEAAoE;AAE9F,MAAa,iCAAiCC,eAAAA,OAAO,uCAAuC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -24,7 +24,7 @@ declare const ProjectBubbleDataApiGetObjectsOutput: z.ZodObject<{
24
24
  count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
25
25
  results: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
26
26
  remaining: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
27
- }, z.core.$strip>;
27
+ }, z.core.$loose>;
28
28
  declare const projectBubbleDataApiGetObjects: import("@keystrokehq/action").WorkflowActionDefinition<{
29
29
  data_type: string;
30
30
  count?: "yes" | "no" | undefined;
@@ -24,7 +24,7 @@ declare const ProjectBubbleDataApiGetObjectsOutput: z.ZodObject<{
24
24
  count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
25
25
  results: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
26
26
  remaining: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
27
- }, z.core.$strip>;
27
+ }, z.core.$loose>;
28
28
  declare const projectBubbleDataApiGetObjects: import("@keystrokehq/action").WorkflowActionDefinition<{
29
29
  data_type: string;
30
30
  count?: "yes" | "no" | undefined;
@@ -18,7 +18,7 @@ const projectBubbleDataApiGetObjects = action("PROJECT_BUBBLE_DATA_API_GET_OBJEC
18
18
  count: z.number().int().describe("Total count of matching objects. Present only when count='yes'.").nullable().optional(),
19
19
  results: z.array(z.record(z.string(), z.unknown())).describe("List of objects matching the query. Each object includes its fields and metadata. Omitted when count='yes'.").nullable().optional(),
20
20
  remaining: z.number().int().describe("Estimated number of objects remaining beyond the returned results.").nullable().optional()
21
- }).describe("Response model for listing objects in a Bubble Data API data type.")
21
+ }).passthrough().describe("Response model for listing objects in a Bubble Data API data type.")
22
22
  });
23
23
  //#endregion
24
24
  export { projectBubbleDataApiGetObjects };
@@ -1 +1 @@
1
- {"version":3,"file":"data-api-get-objects.mjs","names":[],"sources":["../../src/actions/data-api-get-objects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProjectBubbleDataApiGetObjectsInput = z.object({\n count: z.enum([\"yes\", \"no\"]).describe(\"If 'yes', return only the total count of matching objects instead of object data.\").optional(),\n limit: z.number().int().describe(\"Maximum number of objects to return (1–1000). Defaults to server-side setting if omitted.\").optional(),\n cursor: z.string().describe(\"Pagination cursor from a previous response for fetching the next page.\").optional(),\n data_type: z.string().describe(\"Name of the Bubble data type to list objects from (case-sensitive).\"),\n descending: z.enum([\"yes\", \"no\"]).describe(\"Sort in descending order when 'yes'; ascending when 'no' or omitted.\").optional(),\n sort_field: z.string().describe(\"Field name to sort results by (must be a valid field on the data type).\").optional(),\n constraints: z.string().describe(\"JSON-encoded search constraints to filter objects. For example: '{\\\"Status\\\":\\\"Active\\\"}'.\").optional(),\n ignore_fields: z.enum([\"yes\", \"no\"]).describe(\"If 'yes', omit null-valued fields in each returned object.\").optional(),\n}).describe(\"Request model for retrieving multiple objects from a Bubble Data API data type.\");\nexport const ProjectBubbleDataApiGetObjectsOutput = z.object({\n count: z.number().int().describe(\"Total count of matching objects. Present only when count='yes'.\").nullable().optional(),\n results: z.array(z.record(z.string(), z.unknown())).describe(\"List of objects matching the query. Each object includes its fields and metadata. Omitted when count='yes'.\").nullable().optional(),\n remaining: z.number().int().describe(\"Estimated number of objects remaining beyond the returned results.\").nullable().optional(),\n}).describe(\"Response model for listing objects in a Bubble Data API data type.\");\n\nexport const projectBubbleDataApiGetObjects = action(\"PROJECT_BUBBLE_DATA_API_GET_OBJECTS\", {\n slug: \"project_bubble-data-api-get-objects\",\n name: \"Data API Get Objects\",\n description: \"Tool to retrieve a list of objects for a specified data type. Use when you need to list items with optional filters, sorting, and pagination.\",\n input: ProjectBubbleDataApiGetObjectsInput,\n output: ProjectBubbleDataApiGetObjectsOutput,\n});\n"],"mappings":";;AAoBA,MAAa,iCAAiC,OAAO,uCAAuC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OApBiD,EAAE,OAAO;EAC1D,OAAO,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;EACpI,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS;EACvI,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;EAC/G,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;EACpG,YAAY,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;EAC5H,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yEAAyE,CAAC,CAAC,SAAS;EACpH,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,CAAC,CAAC,SAAS;EACxI,eAAe,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACvH,CAAC,CAAC,CAAC,SAAS,iFAWH;CACP,QAXkD,EAAE,OAAO;EAC3D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxH,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChM,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjI,CAAC,CAAC,CAAC,SAAS,oEAOF;AACV,CAAC"}
1
+ {"version":3,"file":"data-api-get-objects.mjs","names":[],"sources":["../../src/actions/data-api-get-objects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProjectBubbleDataApiGetObjectsInput = z.object({\n count: z.enum([\"yes\", \"no\"]).describe(\"If 'yes', return only the total count of matching objects instead of object data.\").optional(),\n limit: z.number().int().describe(\"Maximum number of objects to return (1–1000). Defaults to server-side setting if omitted.\").optional(),\n cursor: z.string().describe(\"Pagination cursor from a previous response for fetching the next page.\").optional(),\n data_type: z.string().describe(\"Name of the Bubble data type to list objects from (case-sensitive).\"),\n descending: z.enum([\"yes\", \"no\"]).describe(\"Sort in descending order when 'yes'; ascending when 'no' or omitted.\").optional(),\n sort_field: z.string().describe(\"Field name to sort results by (must be a valid field on the data type).\").optional(),\n constraints: z.string().describe(\"JSON-encoded search constraints to filter objects. For example: '{\\\"Status\\\":\\\"Active\\\"}'.\").optional(),\n ignore_fields: z.enum([\"yes\", \"no\"]).describe(\"If 'yes', omit null-valued fields in each returned object.\").optional(),\n}).describe(\"Request model for retrieving multiple objects from a Bubble Data API data type.\");\nexport const ProjectBubbleDataApiGetObjectsOutput = z.object({\n count: z.number().int().describe(\"Total count of matching objects. Present only when count='yes'.\").nullable().optional(),\n results: z.array(z.record(z.string(), z.unknown())).describe(\"List of objects matching the query. Each object includes its fields and metadata. Omitted when count='yes'.\").nullable().optional(),\n remaining: z.number().int().describe(\"Estimated number of objects remaining beyond the returned results.\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing objects in a Bubble Data API data type.\");\n\nexport const projectBubbleDataApiGetObjects = action(\"PROJECT_BUBBLE_DATA_API_GET_OBJECTS\", {\n slug: \"project_bubble-data-api-get-objects\",\n name: \"Data API Get Objects\",\n description: \"Tool to retrieve a list of objects for a specified data type. Use when you need to list items with optional filters, sorting, and pagination.\",\n input: ProjectBubbleDataApiGetObjectsInput,\n output: ProjectBubbleDataApiGetObjectsOutput,\n});\n"],"mappings":";;AAoBA,MAAa,iCAAiC,OAAO,uCAAuC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OApBiD,EAAE,OAAO;EAC1D,OAAO,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;EACpI,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS;EACvI,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;EAC/G,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;EACpG,YAAY,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;EAC5H,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yEAAyE,CAAC,CAAC,SAAS;EACpH,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,CAAC,CAAC,SAAS;EACxI,eAAe,EAAE,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACvH,CAAC,CAAC,CAAC,SAAS,iFAWH;CACP,QAXkD,EAAE,OAAO;EAC3D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxH,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChM,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oEAOhB;AACV,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/project_bubble",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"