@ai2aim.ai/hivemind-sdk 1.0.3 → 1.0.5

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/client.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { AdminLoginParams, AdminLoginResponse, AgentCreateParams, AgentCreateResponse, AgentQueryParams, AgentQueryResponse, AudioSynthesizeParams, AudioTranscribeParams, AuditLogResponse, ChangeOrgStatusResponse, DataChatParams, DataChatResponse, DocumentProcessedWebhook, DocumentUploadResponse, ForecastParams, ForecastResponse, GenerateImageParams, GenerateVideoParams, HealthResponse, InvoiceResponse, JobAcceptedResponse, JobStatusResponse, OrgBootstrapResponse, OrgCreateParams, Organization, PredictParams, PredictResponse, QueryParams, QueryResponse, RotateApiKeyResponse, ScrapeParams, ScrapeResponse, ScrapeStatusResponse, ScrapingConfigResponse, TrainModelParams, TrainModelResponse, UsageSummaryResponse, HivemindClientConfigInput, RequestOptions, VideoCompleteWebhook } from "./types";
1
+ import type { AdminLoginParams, AdminLoginResponse, AdminAuditResponse, AgentCreateParams, AgentCreateResponse, AgentQueryParams, AgentQueryResponse, AudioSynthesizeParams, AudioTranscribeParams, AuditLogResponse, CacheStatsResponse, ChangeOrgStatusResponse, ConfigOverview, DataChatParams, DataChatResponse, DocumentGenerateResponse, DocumentGenerateSectionParams, DocumentProcessedWebhook, DocumentUploadResponse, FeatureFlag, FeatureFlagUpdate, ForecastParams, ForecastResponse, GenerateImageParams, GenerateVideoParams, HealthResponse, InboundTrafficStats, InvoiceResponse, JiraConnectRequest, JiraConnectResponse, JiraDisconnectResponse, JiraIntegrationStatusResponse, JiraSyncRequest, JiraSyncResponse, JiraWebhookAckResponse, BlueprintCreateParams, BlueprintUpdateParams, BlueprintResponse, BlueprintListResponse, DocumentCreateFromBlueprintParams, DocumentUpdateSectionParams, DocumentWorkflowActionParams, ManagedDocumentResponse, ManagedDocumentListResponse, JobAcceptedResponse, JobListResponse, JobStatusResponse, LogLevelRequest, LogLevelResponse, LoggerInfo, MaintenanceModeRequest, MaintenanceModeResponse, OrgBootstrapResponse, OrgCreateParams, OrgListResponse, Organization, OutboundStatusResponse, PredictParams, PredictResponse, PricingResponse, QueryParams, QueryResponse, RateLimitEntry, RotateApiKeyResponse, ScrapeParams, ScrapeResponse, ScrapeStatusResponse, ScrapingConfigResponse, TierConfigResponse, TrainModelParams, TrainModelResponse, UpdateSettingRequest, UpdateSettingResponse, UsageSummaryResponse, WebhookAckResponse, HivemindClientConfigInput, RequestOptions, VideoCompleteWebhook } from "./types";
2
2
  export * from "./types";
3
3
  /**
4
4
  * Error thrown when an API request fails.
@@ -24,15 +24,13 @@ export declare class HivemindClient {
24
24
  private readonly baseUrl;
25
25
  private readonly prefix;
26
26
  private readonly config;
27
- private iapToken;
28
- private iapTokenExpiry;
29
- private fetchAgent;
30
27
  constructor(config: HivemindClientConfigInput);
31
- private getIapToken;
32
28
  private request;
33
29
  private get;
34
30
  private post;
35
31
  private del;
32
+ private put;
33
+ private patch;
36
34
  /**
37
35
  * Check service health status. No authentication required.
38
36
  *
@@ -555,9 +553,7 @@ export declare class HivemindClient {
555
553
  *
556
554
  * **Endpoint:** `POST /v1/webhook/video-complete`
557
555
  */
558
- sendVideoCompleteWebhook(payload: VideoCompleteWebhook): Promise<{
559
- received: boolean;
560
- }>;
556
+ sendVideoCompleteWebhook(payload: VideoCompleteWebhook): Promise<WebhookAckResponse>;
561
557
  /**
562
558
  * Send a document processing completion webhook notification.
563
559
  *
@@ -569,8 +565,489 @@ export declare class HivemindClient {
569
565
  *
570
566
  * **Endpoint:** `POST /v1/webhook/document-processed`
571
567
  */
572
- sendDocumentProcessedWebhook(payload: DocumentProcessedWebhook): Promise<{
573
- received: boolean;
568
+ sendDocumentProcessedWebhook(payload: DocumentProcessedWebhook): Promise<WebhookAckResponse>;
569
+ /**
570
+ * Get full service configuration overview.
571
+ *
572
+ * **Auth:** Requires `adminKey` in client config.
573
+ *
574
+ * **Endpoint:** `GET /v1/admin/config`
575
+ */
576
+ getAdminConfig(): Promise<ConfigOverview>;
577
+ /**
578
+ * Get runtime setting overrides.
579
+ *
580
+ * **Auth:** Requires `adminKey` in client config.
581
+ *
582
+ * **Endpoint:** `GET /v1/admin/config/overrides`
583
+ */
584
+ getAdminConfigOverrides(): Promise<{
585
+ overrides: Record<string, unknown>;
586
+ }>;
587
+ /**
588
+ * Update a mutable runtime setting (e.g. log_level, debug, cors_allow_origins).
589
+ *
590
+ * **Auth:** Requires `adminKey` in client config.
591
+ *
592
+ * @param params - Setting key and new value.
593
+ *
594
+ * **Endpoint:** `PUT /v1/admin/settings`
595
+ */
596
+ updateAdminSetting(params: UpdateSettingRequest): Promise<UpdateSettingResponse>;
597
+ /**
598
+ * Get the current application log level.
599
+ *
600
+ * **Auth:** Requires `adminKey` in client config.
601
+ *
602
+ * **Endpoint:** `GET /v1/admin/logging/level`
603
+ */
604
+ getLogLevel(): Promise<LogLevelResponse>;
605
+ /**
606
+ * Change the application log level.
607
+ *
608
+ * **Auth:** Requires `adminKey` in client config.
609
+ *
610
+ * @param params - The new log level (DEBUG, INFO, WARNING, ERROR, CRITICAL).
611
+ *
612
+ * **Endpoint:** `PUT /v1/admin/logging/level`
613
+ */
614
+ setLogLevel(params: LogLevelRequest): Promise<LogLevelResponse>;
615
+ /**
616
+ * List all loggers with their levels and handlers.
617
+ *
618
+ * **Auth:** Requires `adminKey` in client config.
619
+ *
620
+ * **Endpoint:** `GET /v1/admin/logging/loggers`
621
+ */
622
+ getLoggers(): Promise<{
623
+ loggers: LoggerInfo[];
624
+ }>;
625
+ /**
626
+ * Get inbound traffic statistics.
627
+ *
628
+ * **Auth:** Requires `adminKey` in client config.
629
+ *
630
+ * **Endpoint:** `GET /v1/admin/traffic/inbound`
631
+ */
632
+ getInboundTraffic(): Promise<InboundTrafficStats>;
633
+ /**
634
+ * Reset inbound traffic counters.
635
+ *
636
+ * **Auth:** Requires `adminKey` in client config.
637
+ *
638
+ * **Endpoint:** `POST /v1/admin/traffic/inbound/reset`
639
+ */
640
+ resetInboundTraffic(): Promise<{
641
+ status: string;
642
+ timestamp: string;
643
+ }>;
644
+ /**
645
+ * Check health of outbound dependencies (GCP, Vertex, BigQuery, Redis).
646
+ *
647
+ * **Auth:** Requires `adminKey` in client config.
648
+ *
649
+ * **Endpoint:** `GET /v1/admin/traffic/outbound`
650
+ */
651
+ getOutboundStatus(): Promise<OutboundStatusResponse>;
652
+ /**
653
+ * Get the current CORS allowed origins.
654
+ *
655
+ * **Auth:** Requires `adminKey` in client config.
656
+ *
657
+ * **Endpoint:** `GET /v1/admin/cors`
658
+ */
659
+ getCors(): Promise<{
660
+ allow_origins: string[];
661
+ }>;
662
+ /**
663
+ * Update the CORS allowed origins.
664
+ *
665
+ * **Auth:** Requires `adminKey` in client config.
666
+ *
667
+ * @param allowOrigins - Comma-separated origins or `"*"`.
668
+ *
669
+ * **Endpoint:** `PUT /v1/admin/cors`
670
+ */
671
+ setCors(allowOrigins: string): Promise<{
672
+ previous: string;
673
+ new: string;
674
+ note: string;
675
+ }>;
676
+ /**
677
+ * List all rate-limit entries.
678
+ *
679
+ * **Auth:** Requires `adminKey` in client config.
680
+ *
681
+ * **Endpoint:** `GET /v1/admin/rate-limits`
682
+ */
683
+ getRateLimits(): Promise<{
684
+ rate_limits: RateLimitEntry[];
685
+ }>;
686
+ /**
687
+ * Reset the rate-limit counter for an organization.
688
+ *
689
+ * **Auth:** Requires `adminKey` in client config.
690
+ *
691
+ * @param orgId - Organization identifier.
692
+ *
693
+ * **Endpoint:** `POST /v1/admin/rate-limits/reset/{orgId}`
694
+ */
695
+ resetRateLimit(orgId: string): Promise<{
696
+ org_id: string;
697
+ status: string;
698
+ }>;
699
+ /**
700
+ * List all organizations (admin view).
701
+ *
702
+ * **Auth:** Requires `adminKey` in client config.
703
+ *
704
+ * @param limit - Maximum number of organizations to return (1–1000, default 100).
705
+ *
706
+ * **Endpoint:** `GET /v1/admin/organizations`
707
+ */
708
+ listOrganizations(limit?: number): Promise<OrgListResponse>;
709
+ /**
710
+ * List recent jobs across all organizations (admin view).
711
+ *
712
+ * **Auth:** Requires `adminKey` in client config.
713
+ *
714
+ * @param limit - Maximum number of jobs to return (1–500, default 50).
715
+ *
716
+ * **Endpoint:** `GET /v1/admin/jobs`
717
+ */
718
+ listJobs(limit?: number): Promise<JobListResponse>;
719
+ /**
720
+ * Get all feature flags.
721
+ *
722
+ * **Auth:** Requires `adminKey` in client config.
723
+ *
724
+ * **Endpoint:** `GET /v1/admin/feature-flags`
725
+ */
726
+ getFeatureFlags(): Promise<{
727
+ flags: Record<string, unknown>;
728
+ }>;
729
+ /**
730
+ * Get a single feature flag by key.
731
+ *
732
+ * **Auth:** Requires `adminKey` in client config.
733
+ *
734
+ * @param key - Feature flag key.
735
+ *
736
+ * **Endpoint:** `GET /v1/admin/feature-flags/{key}`
737
+ */
738
+ getFeatureFlag(key: string): Promise<FeatureFlag>;
739
+ /**
740
+ * Create or update a feature flag.
741
+ *
742
+ * **Auth:** Requires `adminKey` in client config.
743
+ *
744
+ * @param params - Flag key and enabled status.
745
+ *
746
+ * **Endpoint:** `PUT /v1/admin/feature-flags`
747
+ */
748
+ setFeatureFlag(params: FeatureFlagUpdate): Promise<FeatureFlag>;
749
+ /**
750
+ * Delete a feature flag.
751
+ *
752
+ * **Auth:** Requires `adminKey` in client config.
753
+ *
754
+ * @param key - Feature flag key to delete.
755
+ *
756
+ * **Endpoint:** `DELETE /v1/admin/feature-flags/{key}`
757
+ */
758
+ deleteFeatureFlag(key: string): Promise<{
759
+ key: string;
760
+ deleted: boolean;
761
+ }>;
762
+ /**
763
+ * Get current maintenance mode state.
764
+ *
765
+ * **Auth:** Requires `adminKey` in client config.
766
+ *
767
+ * **Endpoint:** `GET /v1/admin/maintenance`
768
+ */
769
+ getMaintenanceMode(): Promise<MaintenanceModeResponse>;
770
+ /**
771
+ * Enable or disable maintenance mode.
772
+ *
773
+ * **Auth:** Requires `adminKey` in client config.
774
+ *
775
+ * @param params - Enabled flag and optional message.
776
+ *
777
+ * **Endpoint:** `PUT /v1/admin/maintenance`
778
+ */
779
+ setMaintenanceMode(params: MaintenanceModeRequest): Promise<MaintenanceModeResponse>;
780
+ /**
781
+ * Get cache statistics.
782
+ *
783
+ * **Auth:** Requires `adminKey` in client config.
784
+ *
785
+ * **Endpoint:** `GET /v1/admin/cache`
786
+ */
787
+ getCacheStats(): Promise<CacheStatsResponse>;
788
+ /**
789
+ * Flush all caches.
790
+ *
791
+ * **Auth:** Requires `adminKey` in client config.
792
+ *
793
+ * **Endpoint:** `POST /v1/admin/cache/flush`
794
+ */
795
+ flushCache(): Promise<{
796
+ status: string;
797
+ backend: string;
798
+ }>;
799
+ /**
800
+ * Get all tier configurations.
801
+ *
802
+ * **Auth:** Requires `adminKey` in client config.
803
+ *
804
+ * **Endpoint:** `GET /v1/admin/tiers`
805
+ */
806
+ getTiers(): Promise<{
807
+ tiers: TierConfigResponse[];
574
808
  }>;
809
+ /**
810
+ * Get current pricing configuration.
811
+ *
812
+ * **Auth:** Requires `adminKey` in client config.
813
+ *
814
+ * **Endpoint:** `GET /v1/admin/pricing`
815
+ */
816
+ getPricing(): Promise<PricingResponse>;
817
+ /**
818
+ * Get admin-level audit log entries.
819
+ *
820
+ * **Auth:** Requires `adminKey` in client config.
821
+ *
822
+ * @param limit - Maximum entries to return (1–1000, default 100).
823
+ *
824
+ * **Endpoint:** `GET /v1/admin/audit`
825
+ */
826
+ getAdminAudit(limit?: number): Promise<AdminAuditResponse>;
827
+ /**
828
+ * Get system information (Python version, platform, architecture, PID, etc.).
829
+ *
830
+ * **Auth:** Requires `adminKey` in client config.
831
+ *
832
+ * **Endpoint:** `GET /v1/admin/system`
833
+ */
834
+ getSystemInfo(): Promise<Record<string, unknown>>;
835
+ /**
836
+ * Connect a Jira Cloud site using an API token.
837
+ * Validates credentials, registers a webhook, and stores the encrypted token.
838
+ *
839
+ * **Auth:** Requires org-scoped API key.
840
+ *
841
+ * @param orgId - Organization identifier.
842
+ * @param params - Jira connection details (site_url, email, api_token).
843
+ * @param options - Optional per-request overrides.
844
+ *
845
+ * **Endpoint:** `POST /v1/organizations/{orgId}/integrations/jira/connect`
846
+ */
847
+ connectJira(orgId: string, params: JiraConnectRequest, options?: RequestOptions): Promise<JiraConnectResponse>;
848
+ /**
849
+ * Get the current Jira integration status for an organization.
850
+ *
851
+ * **Auth:** Requires org-scoped API key.
852
+ *
853
+ * @param orgId - Organization identifier.
854
+ * @param options - Optional per-request overrides.
855
+ *
856
+ * **Endpoint:** `GET /v1/organizations/{orgId}/integrations/jira/status`
857
+ */
858
+ getJiraStatus(orgId: string, options?: RequestOptions): Promise<JiraIntegrationStatusResponse>;
859
+ /**
860
+ * Disconnect (unlink) an organization's Jira integration.
861
+ * Deregisters the webhook and deletes stored credentials.
862
+ *
863
+ * **Auth:** Requires org-scoped API key.
864
+ *
865
+ * @param orgId - Organization identifier.
866
+ * @param options - Optional per-request overrides.
867
+ *
868
+ * **Endpoint:** `DELETE /v1/organizations/{orgId}/integrations/jira`
869
+ */
870
+ disconnectJira(orgId: string, options?: RequestOptions): Promise<JiraDisconnectResponse>;
871
+ /**
872
+ * Trigger a bulk sync of Jira issues from specified projects into the
873
+ * document store for RAG retrieval.
874
+ *
875
+ * **Auth:** Requires org-scoped API key.
876
+ *
877
+ * @param orgId - Organization identifier.
878
+ * @param params - Object containing `project_keys` array.
879
+ * @param options - Optional per-request overrides.
880
+ *
881
+ * **Endpoint:** `POST /v1/organizations/{orgId}/integrations/jira/sync`
882
+ */
883
+ syncJira(orgId: string, params: JiraSyncRequest, options?: RequestOptions): Promise<JiraSyncResponse>;
884
+ /**
885
+ * Send a Jira webhook event manually.
886
+ *
887
+ * **Auth:** Requires `webhookSecret` in client config.
888
+ *
889
+ * @param payload - Jira webhook payload (issue, webhookEvent, etc.).
890
+ *
891
+ * **Endpoint:** `POST /v1/webhook/jira`
892
+ */
893
+ sendJiraWebhook(payload: Record<string, unknown>): Promise<JiraWebhookAckResponse>;
894
+ /**
895
+ * Create a new document blueprint (template).
896
+ *
897
+ * **Auth:** Requires org-scoped API key.
898
+ *
899
+ * @param orgId - Organization ID.
900
+ * @param params - Blueprint details (name, sections, workflow_config, etc.).
901
+ *
902
+ * **Endpoint:** `POST /v1/organizations/{orgId}/blueprints`
903
+ */
904
+ createBlueprint(orgId: string, params: BlueprintCreateParams, options?: RequestOptions): Promise<BlueprintResponse>;
905
+ /**
906
+ * List all blueprints for an organization.
907
+ *
908
+ * **Auth:** Requires org-scoped API key.
909
+ *
910
+ * @param orgId - Organization ID.
911
+ *
912
+ * **Endpoint:** `GET /v1/organizations/{orgId}/blueprints`
913
+ */
914
+ listBlueprints(orgId: string, options?: RequestOptions): Promise<BlueprintListResponse>;
915
+ /**
916
+ * Get a single blueprint by ID.
917
+ *
918
+ * **Auth:** Requires org-scoped API key.
919
+ *
920
+ * @param orgId - Organization ID.
921
+ * @param blueprintId - Blueprint ID.
922
+ *
923
+ * **Endpoint:** `GET /v1/organizations/{orgId}/blueprints/{blueprintId}`
924
+ */
925
+ getBlueprint(orgId: string, blueprintId: string, options?: RequestOptions): Promise<BlueprintResponse>;
926
+ /**
927
+ * Update an existing blueprint. Only provided fields are changed.
928
+ *
929
+ * **Auth:** Requires org-scoped API key.
930
+ *
931
+ * @param orgId - Organization ID.
932
+ * @param blueprintId - Blueprint ID.
933
+ * @param params - Fields to update.
934
+ *
935
+ * **Endpoint:** `PUT /v1/organizations/{orgId}/blueprints/{blueprintId}`
936
+ */
937
+ updateBlueprint(orgId: string, blueprintId: string, params: BlueprintUpdateParams, options?: RequestOptions): Promise<BlueprintResponse>;
938
+ /**
939
+ * Publish a blueprint, making it available for document creation.
940
+ *
941
+ * **Auth:** Requires org-scoped API key.
942
+ *
943
+ * @param orgId - Organization ID.
944
+ * @param blueprintId - Blueprint ID.
945
+ *
946
+ * **Endpoint:** `POST /v1/organizations/{orgId}/blueprints/{blueprintId}/publish`
947
+ */
948
+ publishBlueprint(orgId: string, blueprintId: string, options?: RequestOptions): Promise<BlueprintResponse>;
949
+ /**
950
+ * Archive a blueprint, preventing new documents from being created from it.
951
+ *
952
+ * **Auth:** Requires org-scoped API key.
953
+ *
954
+ * @param orgId - Organization ID.
955
+ * @param blueprintId - Blueprint ID.
956
+ *
957
+ * **Endpoint:** `POST /v1/organizations/{orgId}/blueprints/{blueprintId}/archive`
958
+ */
959
+ archiveBlueprint(orgId: string, blueprintId: string, options?: RequestOptions): Promise<BlueprintResponse>;
960
+ /**
961
+ * Permanently delete a blueprint.
962
+ *
963
+ * **Auth:** Requires org-scoped API key.
964
+ *
965
+ * @param orgId - Organization ID.
966
+ * @param blueprintId - Blueprint ID.
967
+ *
968
+ * **Endpoint:** `DELETE /v1/organizations/{orgId}/blueprints/{blueprintId}`
969
+ */
970
+ deleteBlueprint(orgId: string, blueprintId: string, options?: RequestOptions): Promise<void>;
971
+ /**
972
+ * Create a new managed document from a published blueprint.
973
+ *
974
+ * **Auth:** Requires org-scoped API key.
975
+ *
976
+ * @param orgId - Organization ID.
977
+ * @param params - Document details (blueprint_id, title, sections, etc.).
978
+ *
979
+ * **Endpoint:** `POST /v1/organizations/{orgId}/documents/create`
980
+ */
981
+ createDocumentFromBlueprint(orgId: string, params: DocumentCreateFromBlueprintParams, options?: RequestOptions): Promise<ManagedDocumentResponse>;
982
+ /**
983
+ * List all managed documents for an organization.
984
+ *
985
+ * **Auth:** Requires org-scoped API key.
986
+ *
987
+ * @param orgId - Organization ID.
988
+ *
989
+ * **Endpoint:** `GET /v1/organizations/{orgId}/documents/managed`
990
+ */
991
+ listManagedDocuments(orgId: string, options?: RequestOptions): Promise<ManagedDocumentListResponse>;
992
+ /**
993
+ * Get a single managed document by ID.
994
+ *
995
+ * **Auth:** Requires org-scoped API key.
996
+ *
997
+ * @param orgId - Organization ID.
998
+ * @param documentId - Document ID.
999
+ *
1000
+ * **Endpoint:** `GET /v1/organizations/{orgId}/documents/managed/{documentId}`
1001
+ */
1002
+ getManagedDocument(orgId: string, documentId: string, options?: RequestOptions): Promise<ManagedDocumentResponse>;
1003
+ /**
1004
+ * Update the content of a document section. Only allowed in draft/revision status.
1005
+ *
1006
+ * **Auth:** Requires org-scoped API key.
1007
+ *
1008
+ * @param orgId - Organization ID.
1009
+ * @param documentId - Document ID.
1010
+ * @param params - Section ID and new content.
1011
+ *
1012
+ * **Endpoint:** `PATCH /v1/organizations/{orgId}/documents/managed/{documentId}/sections`
1013
+ */
1014
+ updateDocumentSection(orgId: string, documentId: string, params: DocumentUpdateSectionParams, options?: RequestOptions): Promise<ManagedDocumentResponse>;
1015
+ /**
1016
+ * Perform a workflow action on a managed document.
1017
+ *
1018
+ * Actions: submit, approve, reject, request_changes, seal.
1019
+ *
1020
+ * **Auth:** Requires org-scoped API key.
1021
+ *
1022
+ * @param orgId - Organization ID.
1023
+ * @param documentId - Document ID.
1024
+ * @param params - Action type and optional comment.
1025
+ *
1026
+ * **Endpoint:** `POST /v1/organizations/{orgId}/documents/managed/{documentId}/workflow`
1027
+ */
1028
+ performDocumentWorkflow(orgId: string, documentId: string, params: DocumentWorkflowActionParams, options?: RequestOptions): Promise<ManagedDocumentResponse>;
1029
+ /**
1030
+ * Permanently delete a managed document.
1031
+ *
1032
+ * **Auth:** Requires org-scoped API key.
1033
+ *
1034
+ * @param orgId - Organization ID.
1035
+ * @param documentId - Document ID.
1036
+ *
1037
+ * **Endpoint:** `DELETE /v1/organizations/{orgId}/documents/managed/{documentId}`
1038
+ */
1039
+ deleteManagedDocument(orgId: string, documentId: string, options?: RequestOptions): Promise<void>;
1040
+ /**
1041
+ * AI-generate content for a document section using the blueprint's AI rules.
1042
+ *
1043
+ * **Auth:** Requires org-scoped API key.
1044
+ *
1045
+ * @param orgId - Organization ID.
1046
+ * @param documentId - Document ID.
1047
+ * @param params - Section ID and optional context for generation.
1048
+ *
1049
+ * **Endpoint:** `POST /v1/organizations/{orgId}/documents/managed/{documentId}/generate`
1050
+ */
1051
+ generateDocumentSection(orgId: string, documentId: string, params: DocumentGenerateSectionParams, options?: RequestOptions): Promise<DocumentGenerateResponse>;
575
1052
  }
576
1053
  //# sourceMappingURL=client.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}