@gpt-platform/client 0.11.1 → 0.11.2

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.
Files changed (44) hide show
  1. package/dist/_internal/sdk.gen.d.ts +1101 -8
  2. package/dist/_internal/sdk.gen.d.ts.map +1 -1
  3. package/dist/_internal/types.gen.d.ts +38447 -64456
  4. package/dist/_internal/types.gen.d.ts.map +1 -1
  5. package/dist/gpt-client.d.ts +341 -73
  6. package/dist/gpt-client.d.ts.map +1 -1
  7. package/dist/index.d.ts +5 -2
  8. package/dist/index.d.ts.map +1 -1
  9. package/dist/index.js +8001 -415
  10. package/dist/index.js.map +1 -1
  11. package/dist/index.mjs +8000 -415
  12. package/dist/index.mjs.map +1 -1
  13. package/dist/namespaces/agents.d.ts +125 -1
  14. package/dist/namespaces/agents.d.ts.map +1 -1
  15. package/dist/namespaces/ai.d.ts +144 -0
  16. package/dist/namespaces/ai.d.ts.map +1 -1
  17. package/dist/namespaces/billing.d.ts +36 -0
  18. package/dist/namespaces/billing.d.ts.map +1 -1
  19. package/dist/namespaces/campaigns.d.ts +410 -15
  20. package/dist/namespaces/campaigns.d.ts.map +1 -1
  21. package/dist/namespaces/channels.d.ts +4 -0
  22. package/dist/namespaces/channels.d.ts.map +1 -1
  23. package/dist/namespaces/clinical.d.ts +40 -8
  24. package/dist/namespaces/clinical.d.ts.map +1 -1
  25. package/dist/namespaces/crm.d.ts +299 -10
  26. package/dist/namespaces/crm.d.ts.map +1 -1
  27. package/dist/namespaces/email.d.ts +534 -257
  28. package/dist/namespaces/email.d.ts.map +1 -1
  29. package/dist/namespaces/extraction.d.ts +369 -1
  30. package/dist/namespaces/extraction.d.ts.map +1 -1
  31. package/dist/namespaces/imports.d.ts +12 -25
  32. package/dist/namespaces/imports.d.ts.map +1 -1
  33. package/dist/namespaces/index.d.ts +9 -4
  34. package/dist/namespaces/index.d.ts.map +1 -1
  35. package/dist/namespaces/invoices.d.ts +1055 -0
  36. package/dist/namespaces/invoices.d.ts.map +1 -0
  37. package/dist/namespaces/recipes.d.ts +478 -0
  38. package/dist/namespaces/recipes.d.ts.map +1 -0
  39. package/dist/namespaces/scheduling.d.ts.map +1 -1
  40. package/dist/request-builder.d.ts +7 -0
  41. package/dist/request-builder.d.ts.map +1 -1
  42. package/dist/version.d.ts +1 -1
  43. package/llms.txt +283 -0
  44. package/package.json +1 -1
package/llms.txt CHANGED
@@ -44,6 +44,21 @@ client.setConfig({
44
44
  - `patchAgent-deploymentsByIdAccept-update()` - Accept an available version update
45
45
  - `deleteAgent-deploymentsById()` - /agent-deployments/:id operation on agent-deployment resource
46
46
 
47
+ ## Agent-execution
48
+
49
+ - `getAgent-executions()` - /agent-executions operation on agent-execution resource
50
+ - `getAgent-executionsById()` - /agent-executions/:id operation on agent-execution resource
51
+ - `patchAgent-executionsByIdCancel()` - /agent-executions/:id/cancel operation on agent-execution resource
52
+ - `patchAgent-executionsByIdResume()` - /agent-executions/:id/resume operation on agent-execution resource
53
+
54
+ ## Agent-soul
55
+
56
+ - `getAgent-souls()` - /agent-souls operation on agent-soul resource
57
+ - `getAgent-soulsById()` - /agent-souls/:id operation on agent-soul resource
58
+ - `postAgent-souls()` - /agent-souls operation on agent-soul resource
59
+ - `patchAgent-soulsById()` - /agent-souls/:id operation on agent-soul resource
60
+ - `deleteAgent-soulsById()` - /agent-souls/:id operation on agent-soul resource
61
+
47
62
  ## Agent-stats
48
63
 
49
64
  - `getAgentsByIdStats()` - /agents/:id/stats operation on agent-stats resource
@@ -469,12 +484,14 @@ flags, workspace mode, execution limits, and compliance tags
469
484
 
470
485
  - `getClinicalMeal-plans()` - /clinical/meal-plans operation on clinical-meal-plan resource
471
486
  - `getClinicalMeal-plansArchived()` - /clinical/meal-plans/archived operation on clinical-meal-plan resource
487
+ - `getClinicalMeal-plansBy-meal-schedule()` - /clinical/meal-plans/by-meal-schedule operation on clinical-meal-plan resource
472
488
  - `getClinicalMeal-plansBy-patient()` - /clinical/meal-plans/by-patient operation on clinical-meal-plan resource
473
489
  - `getClinicalMeal-plansBy-workspace()` - /clinical/meal-plans/by-workspace operation on clinical-meal-plan resource
474
490
  - `getClinicalMeal-plansById()` - /clinical/meal-plans/:id operation on clinical-meal-plan resource
475
491
  - `getClinicalSessionsByIdMealPlans()` - /clinical/sessions/:id/meal_plans operation on clinical-meal-plan resource
476
492
  - `postClinicalMeal-plans()` - /clinical/meal-plans operation on clinical-meal-plan resource
477
493
  - `patchClinicalMeal-plansById()` - /clinical/meal-plans/:id operation on clinical-meal-plan resource
494
+ - `patchClinicalMeal-plansByIdApprove()` - /clinical/meal-plans/:id/approve operation on clinical-meal-plan resource
478
495
  - `patchClinicalMeal-plansByIdArchive()` - /clinical/meal-plans/:id/archive operation on clinical-meal-plan resource
479
496
  - `patchClinicalMeal-plansByIdRestore()` - /clinical/meal-plans/:id/restore operation on clinical-meal-plan resource
480
497
  - `deleteClinicalMeal-plansByIdPermanent()` - /clinical/meal-plans/:id/permanent operation on clinical-meal-plan resource
@@ -604,6 +621,13 @@ flags, workspace mode, execution limits, and compliance tags
604
621
  - `getCompliance-requirement-completionsById()` - /compliance-requirement-completions/:id operation on compliance-requirement-completion resource
605
622
  - `postCompliance-requirement-completions()` - /compliance-requirement-completions operation on compliance-requirement-completion resource
606
623
 
624
+ ## Config-enum
625
+
626
+ - `getExtractionConfig-enums()` - /extraction/config-enums operation on config-enum resource
627
+ - `getExtractionConfig-enumsById()` - /extraction/config-enums/:id operation on config-enum resource
628
+ - `postExtractionConfig-enums()` - /extraction/config-enums operation on config-enum resource
629
+ - `patchExtractionConfig-enumsById()` - /extraction/config-enums/:id operation on config-enum resource
630
+
607
631
  ## Connector-instance
608
632
 
609
633
  - `getConnectors()` - /connectors operation on connector-instance resource
@@ -704,6 +728,15 @@ flags, workspace mode, execution limits, and compliance tags
704
728
  - `patchCrmActivitiesById()` - Update an activity's subject, body, sentiment, or AI-generated fields
705
729
  - `deleteCrmActivitiesById()` - Soft-delete an activity by setting deleted_at
706
730
 
731
+ ## Crm-address
732
+
733
+ - `getCrmAddressesById()` - /crm/addresses/:id operation on crm-address resource
734
+ - `getCrmAddressesEntityByEntityTypeByEntityId()` - /crm/addresses/entity/:entity_type/:entity_id operation on crm-address resource
735
+ - `postCrmAddresses()` - /crm/addresses operation on crm-address resource
736
+ - `patchCrmAddressesById()` - /crm/addresses/:id operation on crm-address resource
737
+ - `patchCrmAddressesByIdSet-primary()` - /crm/addresses/:id/set-primary operation on crm-address resource
738
+ - `deleteCrmAddressesById()` - /crm/addresses/:id operation on crm-address resource
739
+
707
740
  ## Crm-company
708
741
 
709
742
  - `getCrmCompaniesById()` - Fetch a single active company by ID; excludes soft-deleted records.
@@ -754,6 +787,24 @@ attribute-level property filters
754
787
  - `patchCrmDealsByIdMove-stage()` - Move a deal to a different pipeline stage
755
788
  - `deleteCrmDealsById()` - Soft-delete a deal by setting deleted_at
756
789
 
790
+ ## Crm-email-address
791
+
792
+ - `getCrmEmail-addressesById()` - /crm/email-addresses/:id operation on crm-email-address resource
793
+ - `getCrmEmail-addressesEntityByEntityTypeByEntityId()` - List all email addresses for a specific entity (contact or company).
794
+ - `postCrmEmail-addresses()` - Create a new email address for a contact or company
795
+ - `patchCrmEmail-addressesById()` - Update an existing email address
796
+ - `patchCrmEmail-addressesByIdSet-primary()` - Mark this email address as the primary for its entity, clearing any existing primary.
797
+ - `deleteCrmEmail-addressesById()` - /crm/email-addresses/:id operation on crm-email-address resource
798
+
799
+ ## Crm-phone-number
800
+
801
+ - `getCrmPhone-numbersById()` - /crm/phone-numbers/:id operation on crm-phone-number resource
802
+ - `getCrmPhone-numbersEntityByEntityTypeByEntityId()` - /crm/phone-numbers/entity/:entity_type/:entity_id operation on crm-phone-number resource
803
+ - `postCrmPhone-numbers()` - /crm/phone-numbers operation on crm-phone-number resource
804
+ - `patchCrmPhone-numbersById()` - /crm/phone-numbers/:id operation on crm-phone-number resource
805
+ - `patchCrmPhone-numbersByIdSet-primary()` - /crm/phone-numbers/:id/set-primary operation on crm-phone-number resource
806
+ - `deleteCrmPhone-numbersById()` - /crm/phone-numbers/:id operation on crm-phone-number resource
807
+
757
808
  ## Crm-pipeline
758
809
 
759
810
  - `getCrmPipelinesById()` - /crm/pipelines/:id operation on crm-pipeline resource
@@ -785,6 +836,23 @@ attribute-level property filters
785
836
  - `patchCrmRelationship-typesById()` - Update a relationship type's display name, allowed entity types, or properties schema
786
837
  - `deleteCrmRelationship-typesById()` - /crm/relationship-types/:id operation on crm-relationship-type resource
787
838
 
839
+ ## Crm-social-profile
840
+
841
+ - `getCrmSocial-profilesById()` - /crm/social-profiles/:id operation on crm-social-profile resource
842
+ - `getCrmSocial-profilesEntityByEntityTypeByEntityId()` - List all social profiles for a specific entity (contact or company).
843
+ - `postCrmSocial-profiles()` - Create a new social profile for a contact or company
844
+ - `patchCrmSocial-profilesById()` - Update an existing social profile
845
+ - `deleteCrmSocial-profilesById()` - /crm/social-profiles/:id operation on crm-social-profile resource
846
+
847
+ ## Crm-website
848
+
849
+ - `getCrmWebsitesById()` - /crm/websites/:id operation on crm-website resource
850
+ - `getCrmWebsitesEntityByEntityTypeByEntityId()` - List all websites for a given entity (contact or company).
851
+ - `postCrmWebsites()` - Create a website record for a contact or company
852
+ - `patchCrmWebsitesById()` - Update a website record
853
+ - `patchCrmWebsitesByIdSet-primary()` - Mark this website as primary and unset any other primary website for the same entity.
854
+ - `deleteCrmWebsitesById()` - /crm/websites/:id operation on crm-website resource
855
+
788
856
  ## Data-protection-impact-assessment
789
857
 
790
858
  - `getImpact-assessments()` - /impact-assessments operation on data-protection-impact-assessment resource
@@ -976,12 +1044,19 @@ attribute-level property filters
976
1044
  - `getExtractionAgentsById()` - /extraction/agents/:id operation on extraction-agent resource
977
1045
  - `postExtractionAgentsPredict()` - Predicts the best agents for a given input
978
1046
 
1047
+ ## Extraction-analysis
1048
+
1049
+ - `getExtractionAnalyses()` - /extraction/analyses operation on extraction-analysis resource
1050
+ - `getExtractionAnalysesBy-resultByExtractionResultId()` - Look up analysis by extraction_result_id
1051
+ - `getExtractionAnalysesById()` - /extraction/analyses/:id operation on extraction-analysis resource
1052
+
979
1053
  ## Extraction-batch
980
1054
 
981
1055
  - `getExtractionBatchesById()` - /extraction/batches/:id operation on extraction-batch resource
982
1056
  - `getExtractionBatchesByIdUpload-urls()` - Generate presigned URLs for batch document upload
983
1057
  - `getExtractionBatchesWorkspaceByWorkspaceId()` - List all batches for a workspace, unfiltered and unpaginated
984
1058
  - `postExtractionBatches()` - Create a new extraction batch to group related documents
1059
+ - `postExtractionBatchesByIdFinish-all()` - Finish upload for all documents in this batch that are awaiting processing
985
1060
  - `deleteExtractionBatchesById()` - /extraction/batches/:id operation on extraction-batch resource
986
1061
 
987
1062
  ## Extraction-document
@@ -1036,6 +1111,14 @@ fields
1036
1111
  - `patchExtractionResultsByIdSave-corrections()` - Apply human corrections to extracted field values
1037
1112
  - `deleteExtractionResultsById()` - Delete an ExtractionResult record
1038
1113
 
1114
+ ## Extraction-workflow
1115
+
1116
+ - `getExtraction-workflows()` - /extraction-workflows operation on extraction-workflow resource
1117
+ - `getExtraction-workflowsById()` - /extraction-workflows/:id operation on extraction-workflow resource
1118
+ - `postExtraction-workflows()` - /extraction-workflows operation on extraction-workflow resource
1119
+ - `patchExtraction-workflowsById()` - /extraction-workflows/:id operation on extraction-workflow resource
1120
+ - `deleteExtraction-workflowsById()` - /extraction-workflows/:id operation on extraction-workflow resource
1121
+
1039
1122
  ## Feature-definition
1040
1123
 
1041
1124
  - `getFeature-definitions()` - List all feature definitions
@@ -1074,8 +1157,12 @@ fields
1074
1157
  ## Graph-node
1075
1158
 
1076
1159
  - `getAiGraphNodes()` - Paginate Entity vertices for the caller's tenant; returns up to 50 nodes per page by default.
1160
+ - `getAiGraphNodesByNodeIdRelationships()` - List all relationships for a given node
1077
1161
  - `getAiGraphNodesLabelByLabel()` - Find all Entity vertices with an exact label match; use to look up a specific named entity in the knowledge graph.
1162
+ - `getAiGraphNodesSemantic()` - Semantic search for entities by label similarity using embeddings
1078
1163
  - `postAiGraphNodes()` - Create an Entity vertex in the knowledge graph; tenant_id is always forced from the actor and cannot be supplied by the caller
1164
+ - `postAiGraphRelationships()` - Create a relationship (edge) between two graph nodes
1165
+ - `postAiGraphRelationshipsDelete()` - Delete a relationship (edge) by matching from/to nodes and type
1079
1166
  - `deleteAiGraphNodesById()` - /ai/graph/nodes/:id operation on graph-node resource
1080
1167
 
1081
1168
  ## Invitations
@@ -1095,6 +1182,74 @@ fields
1095
1182
 
1096
1183
  - `getWalletInvoices()` - Read all invoices for the current tenant
1097
1184
 
1185
+ ## Invoices-activity
1186
+
1187
+ - `getInvoicesActivitiesById()` - /invoices/activities/:id operation on invoices-activity resource
1188
+
1189
+ ## Invoices-contact
1190
+
1191
+ - `getInvoicesContactsById()` - /invoices/contacts/:id operation on invoices-contact resource
1192
+ - `getInvoicesContactsWorkspaceByWorkspaceId()` - /invoices/contacts/workspace/:workspace_id operation on invoices-contact resource
1193
+ - `postInvoicesContacts()` - /invoices/contacts operation on invoices-contact resource
1194
+ - `patchInvoicesContactsById()` - /invoices/contacts/:id operation on invoices-contact resource
1195
+ - `deleteInvoicesContactsById()` - /invoices/contacts/:id operation on invoices-contact resource
1196
+
1197
+ ## Invoices-invoice
1198
+
1199
+ - `getInvoicesById()` - /invoices/:id operation on invoices-invoice resource
1200
+ - `getInvoicesWorkspaceByWorkspaceId()` - List invoices for a workspace with optional filters
1201
+ - `postInvoices()` - /invoices operation on invoices-invoice resource
1202
+ - `patchInvoicesById()` - /invoices/:id operation on invoices-invoice resource
1203
+ - `patchInvoicesByIdApply-ai-suggestions()` - /invoices/:id/apply-ai-suggestions operation on invoices-invoice resource
1204
+ - `patchInvoicesByIdApprove()` - /invoices/:id/approve operation on invoices-invoice resource
1205
+ - `patchInvoicesByIdDispute()` - /invoices/:id/dispute operation on invoices-invoice resource
1206
+ - `patchInvoicesByIdMark-overdue()` - /invoices/:id/mark-overdue operation on invoices-invoice resource
1207
+ - `patchInvoicesByIdMark-paid()` - /invoices/:id/mark-paid operation on invoices-invoice resource
1208
+ - `patchInvoicesByIdMark-viewed()` - /invoices/:id/mark-viewed operation on invoices-invoice resource
1209
+ - `patchInvoicesByIdResolve-dispute()` - /invoices/:id/resolve-dispute operation on invoices-invoice resource
1210
+ - `patchInvoicesByIdSchedule-payment()` - /invoices/:id/schedule-payment operation on invoices-invoice resource
1211
+ - `patchInvoicesByIdSend()` - /invoices/:id/send operation on invoices-invoice resource
1212
+ - `patchInvoicesByIdSubmit-for-approval()` - /invoices/:id/submit-for-approval operation on invoices-invoice resource
1213
+ - `patchInvoicesByIdVoid()` - /invoices/:id/void operation on invoices-invoice resource
1214
+ - `deleteInvoicesById()` - /invoices/:id operation on invoices-invoice resource
1215
+
1216
+ ## Invoices-line
1217
+
1218
+ - `getInvoicesLinesById()` - /invoices/lines/:id operation on invoices-line resource
1219
+ - `postInvoicesLines()` - /invoices/lines operation on invoices-line resource
1220
+ - `patchInvoicesLinesById()` - /invoices/lines/:id operation on invoices-line resource
1221
+ - `deleteInvoicesLinesById()` - /invoices/lines/:id operation on invoices-line resource
1222
+
1223
+ ## Invoices-payment
1224
+
1225
+ - `getInvoicesPaymentsById()` - /invoices/payments/:id operation on invoices-payment resource
1226
+ - `postInvoicesPayments()` - /invoices/payments operation on invoices-payment resource
1227
+ - `deleteInvoicesPaymentsById()` - /invoices/payments/:id operation on invoices-payment resource
1228
+
1229
+ ## Invoices-recurring-schedule
1230
+
1231
+ - `getInvoicesRecurring-schedulesById()` - /invoices/recurring-schedules/:id operation on invoices-recurring-schedule resource
1232
+ - `postInvoicesRecurring-schedules()` - /invoices/recurring-schedules operation on invoices-recurring-schedule resource
1233
+ - `patchInvoicesRecurring-schedulesById()` - /invoices/recurring-schedules/:id operation on invoices-recurring-schedule resource
1234
+ - `patchInvoicesRecurring-schedulesByIdPause()` - /invoices/recurring-schedules/:id/pause operation on invoices-recurring-schedule resource
1235
+ - `patchInvoicesRecurring-schedulesByIdResume()` - /invoices/recurring-schedules/:id/resume operation on invoices-recurring-schedule resource
1236
+ - `deleteInvoicesRecurring-schedulesById()` - /invoices/recurring-schedules/:id operation on invoices-recurring-schedule resource
1237
+
1238
+ ## Invoices-rule
1239
+
1240
+ - `getInvoicesRulesById()` - /invoices/rules/:id operation on invoices-rule resource
1241
+ - `postInvoicesRules()` - /invoices/rules operation on invoices-rule resource
1242
+ - `patchInvoicesRulesById()` - /invoices/rules/:id operation on invoices-rule resource
1243
+ - `patchInvoicesRulesByIdDeactivate()` - /invoices/rules/:id/deactivate operation on invoices-rule resource
1244
+ - `deleteInvoicesRulesById()` - /invoices/rules/:id operation on invoices-rule resource
1245
+
1246
+ ## Invoices-template
1247
+
1248
+ - `getInvoicesTemplatesById()` - /invoices/templates/:id operation on invoices-template resource
1249
+ - `postInvoicesTemplates()` - /invoices/templates operation on invoices-template resource
1250
+ - `patchInvoicesTemplatesById()` - /invoices/templates/:id operation on invoices-template resource
1251
+ - `deleteInvoicesTemplatesById()` - /invoices/templates/:id operation on invoices-template resource
1252
+
1098
1253
  ## Legal-acceptance
1099
1254
 
1100
1255
  - `getLegal-acceptances()` - /legal-acceptances operation on legal-acceptance resource
@@ -1224,6 +1379,14 @@ fields
1224
1379
  - `getSocialMetricsPostBySocialPostId()` - /social/metrics/post/:social_post_id operation on post-metric resource
1225
1380
  - `getSocialMetricsPostBySocialPostIdLatest()` - /social/metrics/post/:social_post_id/latest operation on post-metric resource
1226
1381
 
1382
+ ## Post-processing-hook
1383
+
1384
+ - `getPost-processing-hooks()` - /post-processing-hooks operation on post-processing-hook resource
1385
+ - `getPost-processing-hooksById()` - /post-processing-hooks/:id operation on post-processing-hook resource
1386
+ - `postPost-processing-hooks()` - /post-processing-hooks operation on post-processing-hook resource
1387
+ - `patchPost-processing-hooksById()` - /post-processing-hooks/:id operation on post-processing-hook resource
1388
+ - `deletePost-processing-hooksById()` - /post-processing-hooks/:id operation on post-processing-hook resource
1389
+
1227
1390
  ## Presigned-url
1228
1391
 
1229
1392
  - `postDocumentsPresigned-upload()` - /documents/presigned-upload operation on presigned-url resource
@@ -1235,6 +1398,125 @@ fields
1235
1398
  - `postProcessing-activities()` - Add a new GDPR Article 30 Record of Processing Activities (ROPA) entry, documenting a processing purpose, the categories of personal data processed, data subjects, recipients, and legal basis for the workspace.
1236
1399
  - `deleteProcessing-activitiesById()` - /processing-activities/:id operation on processing-activity resource
1237
1400
 
1401
+ ## Recipes-collection-recipe
1402
+
1403
+ - `getRecipesCollection-recipesById()` - /recipes/collection-recipes/:id operation on recipes-collection-recipe resource
1404
+ - `getRecipesCollection-recipesCollectionByCollectionId()` - List recipes in a collection
1405
+ - `postRecipesCollection-recipes()` - /recipes/collection-recipes operation on recipes-collection-recipe resource
1406
+ - `patchRecipesCollection-recipesById()` - /recipes/collection-recipes/:id operation on recipes-collection-recipe resource
1407
+ - `deleteRecipesCollection-recipesById()` - /recipes/collection-recipes/:id operation on recipes-collection-recipe resource
1408
+
1409
+ ## Recipes-enrichment-job
1410
+
1411
+ - `getRecipesEnrichment-jobsById()` - /recipes/enrichment-jobs/:id operation on recipes-enrichment-job resource
1412
+ - `getRecipesEnrichment-jobsRecipeByRecipeId()` - List enrichment jobs for a recipe
1413
+
1414
+ ## Recipes-food-item
1415
+
1416
+ - `getRecipesFood-itemsApplicationByApplicationId()` - List food items for an application
1417
+ - `getRecipesFood-itemsById()` - /recipes/food-items/:id operation on recipes-food-item resource
1418
+ - `postRecipesFood-items()` - /recipes/food-items operation on recipes-food-item resource
1419
+ - `patchRecipesFood-itemsById()` - /recipes/food-items/:id operation on recipes-food-item resource
1420
+ - `deleteRecipesFood-itemsById()` - /recipes/food-items/:id operation on recipes-food-item resource
1421
+
1422
+ ## Recipes-ingredient
1423
+
1424
+ - `getRecipesIngredientsById()` - /recipes/ingredients/:id operation on recipes-ingredient resource
1425
+ - `getRecipesIngredientsRecipeByRecipeId()` - List ingredients for a recipe
1426
+ - `postRecipesIngredients()` - /recipes/ingredients operation on recipes-ingredient resource
1427
+ - `patchRecipesIngredientsById()` - /recipes/ingredients/:id operation on recipes-ingredient resource
1428
+ - `deleteRecipesIngredientsById()` - /recipes/ingredients/:id operation on recipes-ingredient resource
1429
+
1430
+ ## Recipes-meal-schedule
1431
+
1432
+ - `getRecipesMeal-schedulesById()` - /recipes/meal-schedules/:id operation on recipes-meal-schedule resource
1433
+ - `getRecipesMeal-schedulesWorkspaceByWorkspaceId()` - List meal schedules for a workspace
1434
+ - `postRecipesMeal-schedules()` - /recipes/meal-schedules operation on recipes-meal-schedule resource
1435
+ - `patchRecipesMeal-schedulesById()` - /recipes/meal-schedules/:id operation on recipes-meal-schedule resource
1436
+ - `deleteRecipesMeal-schedulesById()` - /recipes/meal-schedules/:id operation on recipes-meal-schedule resource
1437
+
1438
+ ## Recipes-nutrition-summary
1439
+
1440
+ - `getRecipesNutrition-summariesById()` - /recipes/nutrition-summaries/:id operation on recipes-nutrition-summary resource
1441
+ - `getRecipesNutrition-summariesMeal-scheduleByMealScheduleId()` - List nutrition summaries for a meal schedule
1442
+
1443
+ ## Recipes-recipe
1444
+
1445
+ - `getRecipesById()` - /recipes/:id operation on recipes-recipe resource
1446
+ - `getRecipesWorkspaceByWorkspaceId()` - List recipes for a workspace, excluding archived
1447
+ - `getRecipesWorkspaceByWorkspaceIdContactByContactId()` - List recipes contributed by a specific contact
1448
+ - `getRecipesWorkspaceByWorkspaceIdPublished()` - List published recipes only
1449
+ - `postRecipes()` - /recipes operation on recipes-recipe resource
1450
+ - `postRecipesBulk-import()` - /recipes/bulk-import operation on recipes-recipe resource
1451
+ - `postRecipesImport()` - Import a recipe from an external connector source
1452
+ - `patchRecipesById()` - /recipes/:id operation on recipes-recipe resource
1453
+ - `patchRecipesByIdArchive()` - /recipes/:id/archive operation on recipes-recipe resource
1454
+ - `patchRecipesByIdRe-enrich()` - /recipes/:id/re-enrich operation on recipes-recipe resource
1455
+ - `patchRecipesByIdRestore()` - /recipes/:id/restore operation on recipes-recipe resource
1456
+ - `deleteRecipesById()` - Permanently delete a recipe
1457
+
1458
+ ## Recipes-recipe-collection
1459
+
1460
+ - `getRecipesCollectionsById()` - /recipes/collections/:id operation on recipes-recipe-collection resource
1461
+ - `getRecipesCollectionsWorkspaceByWorkspaceId()` - List collections for a workspace
1462
+ - `postRecipesCollections()` - /recipes/collections operation on recipes-recipe-collection resource
1463
+ - `patchRecipesCollectionsById()` - /recipes/collections/:id operation on recipes-recipe-collection resource
1464
+ - `deleteRecipesCollectionsById()` - /recipes/collections/:id operation on recipes-recipe-collection resource
1465
+
1466
+ ## Recipes-recipe-favorite
1467
+
1468
+ - `getRecipesFavoritesById()` - /recipes/favorites/:id operation on recipes-recipe-favorite resource
1469
+ - `getRecipesFavoritesWorkspaceByWorkspaceId()` - List favorites for a workspace
1470
+ - `postRecipesFavorites()` - /recipes/favorites operation on recipes-recipe-favorite resource
1471
+ - `patchRecipesFavoritesById()` - /recipes/favorites/:id operation on recipes-recipe-favorite resource
1472
+ - `deleteRecipesFavoritesById()` - /recipes/favorites/:id operation on recipes-recipe-favorite resource
1473
+
1474
+ ## Recipes-recipe-nutrition
1475
+
1476
+ - `getRecipesRecipe-nutritionsById()` - /recipes/recipe-nutritions/:id operation on recipes-recipe-nutrition resource
1477
+ - `postRecipesRecipe-nutritions()` - /recipes/recipe-nutritions operation on recipes-recipe-nutrition resource
1478
+ - `patchRecipesRecipe-nutritionsById()` - /recipes/recipe-nutritions/:id operation on recipes-recipe-nutrition resource
1479
+
1480
+ ## Recipes-recipe-tag
1481
+
1482
+ - `getRecipesRecipe-tagsById()` - /recipes/recipe-tags/:id operation on recipes-recipe-tag resource
1483
+ - `postRecipesRecipe-tags()` - /recipes/recipe-tags operation on recipes-recipe-tag resource
1484
+ - `deleteRecipesRecipe-tagsById()` - /recipes/recipe-tags/:id operation on recipes-recipe-tag resource
1485
+
1486
+ ## Recipes-scheduled-meal
1487
+
1488
+ - `getRecipesScheduled-mealsById()` - /recipes/scheduled-meals/:id operation on recipes-scheduled-meal resource
1489
+ - `getRecipesScheduled-mealsMeal-scheduleByMealScheduleId()` - List scheduled meals for a meal schedule
1490
+ - `postRecipesScheduled-meals()` - /recipes/scheduled-meals operation on recipes-scheduled-meal resource
1491
+ - `patchRecipesScheduled-mealsById()` - /recipes/scheduled-meals/:id operation on recipes-scheduled-meal resource
1492
+ - `deleteRecipesScheduled-mealsById()` - /recipes/scheduled-meals/:id operation on recipes-scheduled-meal resource
1493
+
1494
+ ## Recipes-shopping-list
1495
+
1496
+ - `getRecipesShopping-listsById()` - /recipes/shopping-lists/:id operation on recipes-shopping-list resource
1497
+ - `getRecipesShopping-listsWorkspaceByWorkspaceId()` - List shopping lists for a workspace
1498
+ - `postRecipesShopping-lists()` - /recipes/shopping-lists operation on recipes-shopping-list resource
1499
+ - `postRecipesShopping-listsGenerate()` - /recipes/shopping-lists/generate operation on recipes-shopping-list resource
1500
+ - `postRecipesShopping-listsRegenerate()` - /recipes/shopping-lists/regenerate operation on recipes-shopping-list resource
1501
+ - `patchRecipesShopping-listsById()` - /recipes/shopping-lists/:id operation on recipes-shopping-list resource
1502
+ - `deleteRecipesShopping-listsById()` - /recipes/shopping-lists/:id operation on recipes-shopping-list resource
1503
+
1504
+ ## Recipes-shopping-list-item
1505
+
1506
+ - `getRecipesShopping-list-itemsById()` - /recipes/shopping-list-items/:id operation on recipes-shopping-list-item resource
1507
+ - `getRecipesShopping-list-itemsShopping-listByShoppingListId()` - List items for a shopping list
1508
+ - `postRecipesShopping-list-items()` - /recipes/shopping-list-items operation on recipes-shopping-list-item resource
1509
+ - `patchRecipesShopping-list-itemsById()` - /recipes/shopping-list-items/:id operation on recipes-shopping-list-item resource
1510
+ - `deleteRecipesShopping-list-itemsById()` - /recipes/shopping-list-items/:id operation on recipes-shopping-list-item resource
1511
+
1512
+ ## Recipes-tag
1513
+
1514
+ - `getRecipesTagsApplicationByApplicationId()` - List tags for an application
1515
+ - `getRecipesTagsById()` - /recipes/tags/:id operation on recipes-tag resource
1516
+ - `postRecipesTags()` - /recipes/tags operation on recipes-tag resource
1517
+ - `patchRecipesTagsById()` - /recipes/tags/:id operation on recipes-tag resource
1518
+ - `deleteRecipesTagsById()` - /recipes/tags/:id operation on recipes-tag resource
1519
+
1238
1520
  ## Retention-policy
1239
1521
 
1240
1522
  - `getRetention-policies()` - /retention-policies operation on retention-policy resource
@@ -1630,6 +1912,7 @@ Microsoft)
1630
1912
  ## Wallet-public
1631
1913
 
1632
1914
  - `getWallet()` - Reads the wallet for the current tenant
1915
+ - `getWalletForecast()` - Credit usage forecast — burn rate and projected exhaustion date
1633
1916
  - `getWalletPlanPreview()` - Preview the cost and effective date of a plan change
1634
1917
  - `patchWalletAddons()` - Purchase an add-on for the wallet
1635
1918
  - `patchWalletAddonsByAddonSlugCancel()` - Cancel an add-on for the wallet
package/package.json CHANGED
@@ -334,5 +334,5 @@
334
334
  ]
335
335
  }
336
336
  },
337
- "version": "0.11.1"
337
+ "version": "0.11.2"
338
338
  }