@happyvertical/smrt-projects 0.39.4 → 0.39.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/AGENTS.md +36 -1
  2. package/SERVICE_TIME_MIGRATION.md +23 -0
  3. package/dist/collections/DevelopmentRequestHistories.d.ts +7 -0
  4. package/dist/collections/DevelopmentRequestHistories.d.ts.map +1 -0
  5. package/dist/collections/DevelopmentRequests.d.ts +20 -0
  6. package/dist/collections/DevelopmentRequests.d.ts.map +1 -0
  7. package/dist/collections/ProjectIntegrationAudits.d.ts +7 -0
  8. package/dist/collections/ProjectIntegrationAudits.d.ts.map +1 -0
  9. package/dist/collections/ProjectIntegrations.d.ts +28 -0
  10. package/dist/collections/ProjectIntegrations.d.ts.map +1 -0
  11. package/dist/index.d.ts +13 -1
  12. package/dist/index.d.ts.map +1 -1
  13. package/dist/index.js +1673 -33
  14. package/dist/index.js.map +1 -1
  15. package/dist/managed-client.d.ts +13 -0
  16. package/dist/managed-client.d.ts.map +1 -0
  17. package/dist/manifest.json +4790 -1109
  18. package/dist/models/DevelopmentRequest.d.ts +35 -0
  19. package/dist/models/DevelopmentRequest.d.ts.map +1 -0
  20. package/dist/models/DevelopmentRequestHistory.d.ts +22 -0
  21. package/dist/models/DevelopmentRequestHistory.d.ts.map +1 -0
  22. package/dist/models/ProjectIntegration.d.ts +24 -0
  23. package/dist/models/ProjectIntegration.d.ts.map +1 -0
  24. package/dist/models/ProjectIntegrationAudit.d.ts +16 -0
  25. package/dist/models/ProjectIntegrationAudit.d.ts.map +1 -0
  26. package/dist/models/delivery-control-plane.d.ts +83 -0
  27. package/dist/models/delivery-control-plane.d.ts.map +1 -0
  28. package/dist/models/service-evidence.d.ts +79 -0
  29. package/dist/models/service-evidence.d.ts.map +1 -0
  30. package/dist/services/assistance-request-service.d.ts +45 -0
  31. package/dist/services/assistance-request-service.d.ts.map +1 -0
  32. package/dist/services/delivery-service.d.ts +55 -0
  33. package/dist/services/delivery-service.d.ts.map +1 -0
  34. package/dist/services/development-request-service.d.ts +61 -0
  35. package/dist/services/development-request-service.d.ts.map +1 -0
  36. package/dist/services/index.d.ts +6 -0
  37. package/dist/services/index.d.ts.map +1 -0
  38. package/dist/services/service-evidence-service.d.ts +48 -0
  39. package/dist/services/service-evidence-service.d.ts.map +1 -0
  40. package/dist/services/subscription-commercial-resolver.d.ts +17 -0
  41. package/dist/services/subscription-commercial-resolver.d.ts.map +1 -0
  42. package/dist/smrt-knowledge.json +1823 -148
  43. package/dist/svelte/AssistanceLauncher.svelte +96 -0
  44. package/dist/svelte/AssistanceLauncher.svelte.d.ts +12 -0
  45. package/dist/svelte/AssistanceLauncher.svelte.d.ts.map +1 -0
  46. package/dist/svelte/DeliveryStatus.svelte +71 -0
  47. package/dist/svelte/DeliveryStatus.svelte.d.ts +8 -0
  48. package/dist/svelte/DeliveryStatus.svelte.d.ts.map +1 -0
  49. package/dist/svelte/DevelopmentBoard.svelte +103 -0
  50. package/dist/svelte/DevelopmentBoard.svelte.d.ts +10 -0
  51. package/dist/svelte/DevelopmentBoard.svelte.d.ts.map +1 -0
  52. package/dist/svelte/DevelopmentRequestDetail.svelte +92 -0
  53. package/dist/svelte/DevelopmentRequestDetail.svelte.d.ts +9 -0
  54. package/dist/svelte/DevelopmentRequestDetail.svelte.d.ts.map +1 -0
  55. package/dist/svelte/PreviewApprovalPanel.svelte +63 -0
  56. package/dist/svelte/PreviewApprovalPanel.svelte.d.ts +10 -0
  57. package/dist/svelte/PreviewApprovalPanel.svelte.d.ts.map +1 -0
  58. package/dist/svelte/ServiceEvidenceList.svelte +103 -0
  59. package/dist/svelte/ServiceEvidenceList.svelte.d.ts +8 -0
  60. package/dist/svelte/ServiceEvidenceList.svelte.d.ts.map +1 -0
  61. package/dist/svelte/components/DevelopmentRequestForm.svelte +70 -0
  62. package/dist/svelte/components/DevelopmentRequestForm.svelte.d.ts +19 -0
  63. package/dist/svelte/components/DevelopmentRequestForm.svelte.d.ts.map +1 -0
  64. package/dist/svelte/components/DevelopmentRequestList.svelte +218 -0
  65. package/dist/svelte/components/DevelopmentRequestList.svelte.d.ts +22 -0
  66. package/dist/svelte/components/DevelopmentRequestList.svelte.d.ts.map +1 -0
  67. package/dist/svelte/components/__tests__/DeliverySurfaces.test.js +98 -0
  68. package/dist/svelte/components/__tests__/DevelopmentRequest.test.js +52 -0
  69. package/dist/svelte/delivery-types.d.ts +36 -0
  70. package/dist/svelte/delivery-types.d.ts.map +1 -0
  71. package/dist/svelte/delivery-types.js +1 -0
  72. package/dist/svelte/i18n.d.ts +30 -0
  73. package/dist/svelte/i18n.d.ts.map +1 -1
  74. package/dist/svelte/i18n.js +30 -0
  75. package/dist/svelte/index.d.ts +18 -1
  76. package/dist/svelte/index.d.ts.map +1 -1
  77. package/dist/svelte/index.js +18 -1
  78. package/dist/types.d.ts +79 -0
  79. package/dist/types.d.ts.map +1 -1
  80. package/dist/ui.d.ts.map +1 -1
  81. package/dist/ui.js +106 -10
  82. package/dist/ui.js.map +1 -1
  83. package/package.json +11 -9
package/AGENTS.md CHANGED
@@ -1,6 +1,41 @@
1
1
  # @happyvertical/smrt-projects
2
2
 
3
- Provider-agnostic project management GitHub-style issues, PRs, projects, and repositories.
3
+ Provider-agnostic project management plus the managed-application delivery
4
+ control plane. Repository and board providers remain canonical; managed apps
5
+ only receive scoped Project Integration credentials and provider-neutral
6
+ request/delivery projections.
7
+
8
+ ## Managed application delivery (#1949)
9
+
10
+ - `ProjectIntegration` stores capability grants and a sensitive credential
11
+ hash; the raw credential is returned once by
12
+ `ProjectIntegrationCollection.provision()`/`rotate()` and is never persisted.
13
+ Provisioning, rotation, and revocation are append-only audited.
14
+ - The stable requester identity is supplied when authenticating
15
+ `ManagedProjectClient`; request reads are always restricted to that requester
16
+ and integration.
17
+ - `DevelopmentRequest` preserves evidence, origin, discussion, visibility, and
18
+ lifecycle history. `ManagedProjectClient` owns managed intake and
19
+ `DevelopmentRequestService` adds internal triage and work projection.
20
+ - `DevelopmentRequestWorkLink` connects zero-to-many provider-neutral work
21
+ items. Canonical status stays on the link and drives request lifecycle
22
+ projection without granting the managed app provider credentials.
23
+ - `ProjectDeliveryEvent` is idempotent per integration key and sequenced for
24
+ replay. Preview decisions flow through the control-plane adapter, never
25
+ directly to repository providers.
26
+ - `AssistanceRequest` preserves conversational intake before lossless routing
27
+ to Support, Development, or both. `smrt-support` supplies the concrete
28
+ `ProjectAssistanceSupportAdapter`.
29
+ - `ManagedProjectClient` deliberately exposes no repository or board client;
30
+ delivery and assistance use separate capability-gated service facades.
31
+
32
+ ## Shared Professional Service evidence (#1955)
33
+
34
+ `ServiceTimeEntry` is canonical here on the existing `service_time_entries`
35
+ table. Planning, development, and support use the same immutable evidence and
36
+ correction chain. `SubscriptionServiceCommercialResolver` prices client work
37
+ through `smrt-subscriptions` (#1925); provider compensation remains a separate
38
+ resolver and snapshot. See `SERVICE_TIME_MIGRATION.md`.
4
39
 
5
40
  ## Models
6
41
 
@@ -0,0 +1,23 @@
1
+ # Service Time Entry migration
2
+
3
+ `ServiceTimeEntry` moved from `@happyvertical/smrt-support` to
4
+ `@happyvertical/smrt-projects` in issue #1955.
5
+
6
+ There is no data migration and no duplicate table. The support import is a
7
+ compatibility subtype over the shared class; it restates the schema so an
8
+ isolated support manifest remains self-contained, while both paths map to the
9
+ existing `service_time_entries` table:
10
+
11
+ ```ts
12
+ // Preferred shared import
13
+ import { ServiceTimeEntry, ServiceEvidenceService } from '@happyvertical/smrt-projects';
14
+
15
+ // Supported compatibility import
16
+ import { ServiceTimeEntry } from '@happyvertical/smrt-support';
17
+ ```
18
+
19
+ Support-specific `SupportCharge` and `SupportCompensation` records remain
20
+ readable. New cross-domain approvals should use `ServiceEvidenceService` with
21
+ `SubscriptionServiceCommercialResolver`; this records a #1925 Client Charge
22
+ reference and a separate provider-compensation snapshot without rewriting the
23
+ approved duration or evidence.
@@ -0,0 +1,7 @@
1
+ import { SmrtCollection } from '@happyvertical/smrt-core';
2
+ import { DevelopmentRequestHistory } from '../models/DevelopmentRequestHistory';
3
+ export declare class DevelopmentRequestHistoryCollection extends SmrtCollection<DevelopmentRequestHistory> {
4
+ static readonly _itemClass: typeof DevelopmentRequestHistory;
5
+ listForRequest(tenantId: string, requestId: string): Promise<DevelopmentRequestHistory[]>;
6
+ }
7
+ //# sourceMappingURL=DevelopmentRequestHistories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DevelopmentRequestHistories.d.ts","sourceRoot":"","sources":["../../src/collections/DevelopmentRequestHistories.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,qCAAqC,CAAC;AAEhF,qBAAa,mCAAoC,SAAQ,cAAc,CAAC,yBAAyB,CAAC;IAChG,MAAM,CAAC,QAAQ,CAAC,UAAU,mCAA6B;IAEjD,cAAc,CAClB,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,GAChB,OAAO,CAAC,yBAAyB,EAAE,CAAC;CAQxC"}
@@ -0,0 +1,20 @@
1
+ import { SmrtCollection } from '@happyvertical/smrt-core';
2
+ import { DevelopmentRequest } from '../models/DevelopmentRequest';
3
+ import { DevelopmentRequestStatus, DevelopmentRequestTransitionInput, ManagedDevelopmentRequestCreateInput } from '../types';
4
+ export declare class DevelopmentRequestCollection extends SmrtCollection<DevelopmentRequest> {
5
+ static readonly _itemClass: typeof DevelopmentRequest;
6
+ createManaged(input: {
7
+ tenantId: string;
8
+ projectId: string;
9
+ integrationId: string;
10
+ } & ManagedDevelopmentRequestCreateInput): Promise<DevelopmentRequest>;
11
+ listByIntegrationRequester(input: {
12
+ tenantId: string;
13
+ integrationId: string;
14
+ requesterId: string;
15
+ }): Promise<DevelopmentRequest[]>;
16
+ transitionStatus(tenantId: string, requestId: string, transition: DevelopmentRequestTransitionInput): Promise<DevelopmentRequest>;
17
+ listForProject(tenantId: string, projectId: string, status?: DevelopmentRequestStatus): Promise<DevelopmentRequest[]>;
18
+ private recordHistory;
19
+ }
20
+ //# sourceMappingURL=DevelopmentRequests.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DevelopmentRequests.d.ts","sourceRoot":"","sources":["../../src/collections/DevelopmentRequests.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,KAAK,EACV,wBAAwB,EACxB,iCAAiC,EACjC,oCAAoC,EACrC,MAAM,UAAU,CAAC;AAGlB,qBAAa,4BAA6B,SAAQ,cAAc,CAAC,kBAAkB,CAAC;IAClF,MAAM,CAAC,QAAQ,CAAC,UAAU,4BAAsB;IAE1C,aAAa,CACjB,KAAK,EAAE;QACL,QAAQ,EAAE,MAAM,CAAC;QACjB,SAAS,EAAE,MAAM,CAAC;QAClB,aAAa,EAAE,MAAM,CAAC;KACvB,GAAG,oCAAoC,GACvC,OAAO,CAAC,kBAAkB,CAAC;IA2BxB,0BAA0B,CAAC,KAAK,EAAE;QACtC,QAAQ,EAAE,MAAM,CAAC;QACjB,aAAa,EAAE,MAAM,CAAC;QACtB,WAAW,EAAE,MAAM,CAAC;KACrB,GAAG,OAAO,CAAC,kBAAkB,EAAE,CAAC;IAa3B,gBAAgB,CACpB,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,iCAAiC,GAC5C,OAAO,CAAC,kBAAkB,CAAC;IAcxB,cAAc,CAClB,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,EACjB,MAAM,CAAC,EAAE,wBAAwB,GAChC,OAAO,CAAC,kBAAkB,EAAE,CAAC;YAWlB,aAAa;CAqB5B"}
@@ -0,0 +1,7 @@
1
+ import { SmrtCollection } from '@happyvertical/smrt-core';
2
+ import { ProjectIntegrationAudit } from '../models/ProjectIntegrationAudit';
3
+ export declare class ProjectIntegrationAuditCollection extends SmrtCollection<ProjectIntegrationAudit> {
4
+ static readonly _itemClass: typeof ProjectIntegrationAudit;
5
+ listForIntegration(tenantId: string, integrationId: string): Promise<ProjectIntegrationAudit[]>;
6
+ }
7
+ //# sourceMappingURL=ProjectIntegrationAudits.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProjectIntegrationAudits.d.ts","sourceRoot":"","sources":["../../src/collections/ProjectIntegrationAudits.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D,OAAO,EAAE,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AAE5E,qBAAa,iCAAkC,SAAQ,cAAc,CAAC,uBAAuB,CAAC;IAC5F,MAAM,CAAC,QAAQ,CAAC,UAAU,iCAA2B;IAE/C,kBAAkB,CACtB,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,GACpB,OAAO,CAAC,uBAAuB,EAAE,CAAC;CAQtC"}
@@ -0,0 +1,28 @@
1
+ import { SmrtCollection } from '@happyvertical/smrt-core';
2
+ import { ProjectIntegration } from '../models/ProjectIntegration';
3
+ import { ProjectIntegrationCapability } from '../types';
4
+ export declare class ProjectIntegrationCollection extends SmrtCollection<ProjectIntegration> {
5
+ static readonly _itemClass: typeof ProjectIntegration;
6
+ provision(input: {
7
+ tenantId: string;
8
+ projectId: string;
9
+ name: string;
10
+ capabilities: ProjectIntegrationCapability[];
11
+ }): Promise<{
12
+ integration: ProjectIntegration;
13
+ credential: string;
14
+ }>;
15
+ rotate(tenantId: string, integrationId: string): Promise<{
16
+ integration: ProjectIntegration;
17
+ credential: string;
18
+ }>;
19
+ revoke(tenantId: string, integrationId: string): Promise<ProjectIntegration>;
20
+ authenticate(credential: string): Promise<ProjectIntegration | null>;
21
+ listForProject(tenantId: string, projectId: string): Promise<ProjectIntegration[]>;
22
+ findActive(tenantId: string, integrationId: string): Promise<ProjectIntegration | null>;
23
+ private requireExisting;
24
+ private requireActive;
25
+ private recordAudit;
26
+ }
27
+ export declare function hashProjectIntegrationCredential(credential: string): string;
28
+ //# sourceMappingURL=ProjectIntegrations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProjectIntegrations.d.ts","sourceRoot":"","sources":["../../src/collections/ProjectIntegrations.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,UAAU,CAAC;AAG7D,qBAAa,4BAA6B,SAAQ,cAAc,CAAC,kBAAkB,CAAC;IAClF,MAAM,CAAC,QAAQ,CAAC,UAAU,4BAAsB;IAE1C,SAAS,CAAC,KAAK,EAAE;QACrB,QAAQ,EAAE,MAAM,CAAC;QACjB,SAAS,EAAE,MAAM,CAAC;QAClB,IAAI,EAAE,MAAM,CAAC;QACb,YAAY,EAAE,4BAA4B,EAAE,CAAC;KAC9C,GAAG,OAAO,CAAC;QAAE,WAAW,EAAE,kBAAkB,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAE,CAAC;IAkB9D,MAAM,CACV,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,GACpB,OAAO,CAAC;QAAE,WAAW,EAAE,kBAAkB,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAE,CAAC;IAW7D,MAAM,CACV,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,GACpB,OAAO,CAAC,kBAAkB,CAAC;IAYxB,YAAY,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,kBAAkB,GAAG,IAAI,CAAC;IAapE,cAAc,CAClB,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,GAChB,OAAO,CAAC,kBAAkB,EAAE,CAAC;IAS1B,UAAU,CACd,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,GACpB,OAAO,CAAC,kBAAkB,GAAG,IAAI,CAAC;YAOvB,eAAe;YAaf,aAAa;YAWb,WAAW;CAc1B;AAED,wBAAgB,gCAAgC,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAE3E"}
package/dist/index.d.ts CHANGED
@@ -1,14 +1,26 @@
1
+ export { DevelopmentRequestHistoryCollection } from './collections/DevelopmentRequestHistories';
2
+ export { DevelopmentRequestCollection } from './collections/DevelopmentRequests';
1
3
  export { IssueCollection } from './collections/Issues';
4
+ export { ProjectIntegrationAuditCollection } from './collections/ProjectIntegrationAudits';
5
+ export { ProjectIntegrationCollection } from './collections/ProjectIntegrations';
2
6
  export { ProjectCollection } from './collections/Projects';
3
7
  export { PullRequestCollection } from './collections/PullRequests';
4
8
  export { RepositoryCollection } from './collections/Repositories';
9
+ export { ManagedProjectClient } from './managed-client';
5
10
  export { Comment, type CommentOptions } from './models/Comment';
11
+ export { DevelopmentRequest, type DevelopmentRequestOptions, } from './models/DevelopmentRequest';
12
+ export { DevelopmentRequestHistory, type DevelopmentRequestHistoryOptions, } from './models/DevelopmentRequestHistory';
13
+ export * from './models/delivery-control-plane.js';
6
14
  export { Issue, type IssueOptions } from './models/Issue';
7
15
  export { Label, type LabelOptions } from './models/Label';
8
16
  export { Project, type ProjectOptions } from './models/Project';
17
+ export { ProjectIntegration, type ProjectIntegrationOptions, } from './models/ProjectIntegration';
18
+ export { ProjectIntegrationAudit, type ProjectIntegrationAuditOptions, } from './models/ProjectIntegrationAudit';
9
19
  export { PullRequest, type PullRequestOptions } from './models/PullRequest';
10
20
  export { Repository, type RepositoryOptions } from './models/Repository';
21
+ export * from './models/service-evidence.js';
11
22
  export { issueIncorporateFeedbackPrompt } from './prompts';
12
- export type { Branch, CreateIssueInput, CreatePRInput, IncorporateFeedbackOptions, IncorporateFeedbackResult, IProject, IRepository, ItemFilters, MergeMethod, ProjectConfig, ProjectField, ProjectFieldOption, ProjectItem, ProjectProviderType, ProjectStatus, RepositoryConfig, RepositoryProviderType, SDKComment, SDKIssue, SDKLabel, SDKProject, SDKPullRequest, SDKRepository, SearchFilters, SyncOptions, SyncStatus, UpdateIssueInput, User, } from './types';
23
+ export * from './services/index.js';
24
+ export type { AssistanceClassification, Branch, CreateIssueInput, CreatePRInput, DeliveryEventType, DevelopmentRequestEvidence, DevelopmentRequestOrigin, DevelopmentRequestStatus, DevelopmentRequestTransitionInput, DevelopmentRequestType, DevelopmentRequestVisibility, DevelopmentTriageDecision, IncorporateFeedbackOptions, IncorporateFeedbackResult, IProject, IRepository, ItemFilters, ManagedAssistanceRequestInput, ManagedDevelopmentRequestCreateInput, MergeMethod, ProjectConfig, ProjectField, ProjectFieldOption, ProjectIntegrationAuditAction, ProjectIntegrationCapability, ProjectIntegrationStatus, ProjectItem, ProjectProviderType, ProjectStatus, RepositoryConfig, RepositoryProviderType, SDKComment, SDKIssue, SDKLabel, SDKProject, SDKPullRequest, SDKRepository, SearchFilters, ServiceEvidence, ServiceParticipantKind, ServiceTimeEntrySource, ServiceTimeEntryStatus, SyncOptions, SyncStatus, UpdateIssueInput, User, } from './types';
13
25
  export { PROJECTS_MODULE_META, PROJECTS_UI_SLOTS } from './ui';
14
26
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AAKH,OAAO,wBAAwB,CAAC;AAGhC,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACnE,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAGlE,OAAO,EAAE,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAChE,OAAO,EAAE,KAAK,EAAE,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC1D,OAAO,EAAE,KAAK,EAAE,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAChE,OAAO,EAAE,WAAW,EAAE,KAAK,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,KAAK,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,8BAA8B,EAAE,MAAM,WAAW,CAAC;AAG3D,YAAY,EAEV,MAAM,EACN,gBAAgB,EAChB,aAAa,EAEb,0BAA0B,EAC1B,yBAAyB,EAEzB,QAAQ,EACR,WAAW,EACX,WAAW,EACX,WAAW,EACX,aAAa,EACb,YAAY,EACZ,kBAAkB,EAClB,WAAW,EACX,mBAAmB,EACnB,aAAa,EACb,gBAAgB,EAChB,sBAAsB,EACtB,UAAU,EACV,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,cAAc,EACd,aAAa,EACb,aAAa,EACb,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,IAAI,GACL,MAAM,SAAS,CAAC;AAGjB,OAAO,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,MAAM,MAAM,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AAKH,OAAO,wBAAwB,CAAC;AAEhC,OAAO,EAAE,mCAAmC,EAAE,MAAM,2CAA2C,CAAC;AAChG,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAEjF,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAE,iCAAiC,EAAE,MAAM,wCAAwC,CAAC;AAC3F,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AACjF,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACnE,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAExD,OAAO,EAAE,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAChE,OAAO,EACL,kBAAkB,EAClB,KAAK,yBAAyB,GAC/B,MAAM,6BAA6B,CAAC;AACrC,OAAO,EACL,yBAAyB,EACzB,KAAK,gCAAgC,GACtC,MAAM,oCAAoC,CAAC;AAC5C,cAAc,oCAAoC,CAAC;AACnD,OAAO,EAAE,KAAK,EAAE,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC1D,OAAO,EAAE,KAAK,EAAE,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAChE,OAAO,EACL,kBAAkB,EAClB,KAAK,yBAAyB,GAC/B,MAAM,6BAA6B,CAAC;AACrC,OAAO,EACL,uBAAuB,EACvB,KAAK,8BAA8B,GACpC,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,KAAK,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,KAAK,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACzE,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAE,8BAA8B,EAAE,MAAM,WAAW,CAAC;AAC3D,cAAc,qBAAqB,CAAC;AAGpC,YAAY,EACV,wBAAwB,EAExB,MAAM,EACN,gBAAgB,EAChB,aAAa,EACb,iBAAiB,EACjB,0BAA0B,EAC1B,wBAAwB,EACxB,wBAAwB,EACxB,iCAAiC,EACjC,sBAAsB,EACtB,4BAA4B,EAC5B,yBAAyB,EAEzB,0BAA0B,EAC1B,yBAAyB,EAEzB,QAAQ,EACR,WAAW,EACX,WAAW,EACX,6BAA6B,EAC7B,oCAAoC,EACpC,WAAW,EACX,aAAa,EACb,YAAY,EACZ,kBAAkB,EAClB,6BAA6B,EAC7B,4BAA4B,EAC5B,wBAAwB,EACxB,WAAW,EACX,mBAAmB,EACnB,aAAa,EACb,gBAAgB,EAChB,sBAAsB,EACtB,UAAU,EACV,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,cAAc,EACd,aAAa,EACb,aAAa,EACb,eAAe,EACf,sBAAsB,EACtB,sBAAsB,EACtB,sBAAsB,EACtB,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,IAAI,GACL,MAAM,SAAS,CAAC;AAGjB,OAAO,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,MAAM,MAAM,CAAC"}