@merkl/api 1.11.20 → 1.11.22
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/src/eden/index.d.ts +40 -0
- package/dist/src/index.d.ts +60 -0
- package/dist/src/modules/v4/campaign/campaign.query-transformer.d.ts +85 -85
- package/dist/src/modules/v4/creator/creator.controller.d.ts +60 -0
- package/dist/src/modules/v4/creator/creator.controller.js.map +1 -1
- package/dist/src/modules/v4/hubspot/hubspot.model.d.ts +70 -0
- package/dist/src/modules/v4/hubspot/hubspot.repository.d.ts +18 -1
- package/dist/src/modules/v4/hubspot/hubspot.repository.js.map +1 -1
- package/dist/src/modules/v4/hubspot/hubspot.service.d.ts +5 -1
- package/dist/src/modules/v4/hubspot/hubspot.service.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.query-transformer.d.ts +56 -56
- package/dist/src/modules/v4/programPayload/subPayloads/drip.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +60 -0
- package/dist/src/modules/v4/transaction/transaction.service.d.ts +2332 -2332
- package/dist/src/utils/getAPR.d.ts +1233 -1233
- package/dist/src/utils/parseDistributionType.d.ts +1233 -1233
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
|
@@ -9391,6 +9391,26 @@ declare const eden: {
|
|
|
9391
9391
|
};
|
|
9392
9392
|
}>>;
|
|
9393
9393
|
};
|
|
9394
|
+
hubspotContext: {
|
|
9395
|
+
get: (options: {
|
|
9396
|
+
fetch?: RequestInit | undefined;
|
|
9397
|
+
headers: {
|
|
9398
|
+
authorization: string;
|
|
9399
|
+
};
|
|
9400
|
+
query?: Record<string, unknown> | undefined;
|
|
9401
|
+
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
9402
|
+
200: import("../modules/v4/hubspot/hubspot.model").HubSpotCompanyContext;
|
|
9403
|
+
422: {
|
|
9404
|
+
type: "validation";
|
|
9405
|
+
on: string;
|
|
9406
|
+
summary?: string | undefined;
|
|
9407
|
+
message?: string | undefined;
|
|
9408
|
+
found?: unknown;
|
|
9409
|
+
property?: string | undefined;
|
|
9410
|
+
expected?: string | undefined;
|
|
9411
|
+
};
|
|
9412
|
+
}>>;
|
|
9413
|
+
};
|
|
9394
9414
|
opportunities: {
|
|
9395
9415
|
get: (options: {
|
|
9396
9416
|
fetch?: RequestInit | undefined;
|
|
@@ -9924,6 +9944,26 @@ declare const eden: {
|
|
|
9924
9944
|
expected?: string | undefined;
|
|
9925
9945
|
};
|
|
9926
9946
|
}>>;
|
|
9947
|
+
context: {
|
|
9948
|
+
get: (options: {
|
|
9949
|
+
fetch?: RequestInit | undefined;
|
|
9950
|
+
headers: {
|
|
9951
|
+
authorization: string;
|
|
9952
|
+
};
|
|
9953
|
+
query?: Record<string, unknown> | undefined;
|
|
9954
|
+
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
9955
|
+
200: import("../modules/v4/hubspot/hubspot.model").HubSpotCompanyContext;
|
|
9956
|
+
422: {
|
|
9957
|
+
type: "validation";
|
|
9958
|
+
on: string;
|
|
9959
|
+
summary?: string | undefined;
|
|
9960
|
+
message?: string | undefined;
|
|
9961
|
+
found?: unknown;
|
|
9962
|
+
property?: string | undefined;
|
|
9963
|
+
expected?: string | undefined;
|
|
9964
|
+
};
|
|
9965
|
+
}>>;
|
|
9966
|
+
};
|
|
9927
9967
|
}) & {};
|
|
9928
9968
|
};
|
|
9929
9969
|
discord: {
|
package/dist/src/index.d.ts
CHANGED
|
@@ -9522,6 +9522,66 @@ declare const app: Elysia<"", {
|
|
|
9522
9522
|
};
|
|
9523
9523
|
};
|
|
9524
9524
|
};
|
|
9525
|
+
} & {
|
|
9526
|
+
creators: {
|
|
9527
|
+
":creator": {
|
|
9528
|
+
hubspotContext: {
|
|
9529
|
+
get: {
|
|
9530
|
+
body: unknown;
|
|
9531
|
+
params: {
|
|
9532
|
+
creator: string;
|
|
9533
|
+
};
|
|
9534
|
+
query: unknown;
|
|
9535
|
+
headers: {
|
|
9536
|
+
authorization: string;
|
|
9537
|
+
};
|
|
9538
|
+
response: {
|
|
9539
|
+
200: import("./modules/v4/hubspot/hubspot.model").HubSpotCompanyContext;
|
|
9540
|
+
422: {
|
|
9541
|
+
type: "validation";
|
|
9542
|
+
on: string;
|
|
9543
|
+
summary?: string | undefined;
|
|
9544
|
+
message?: string | undefined;
|
|
9545
|
+
found?: unknown;
|
|
9546
|
+
property?: string | undefined;
|
|
9547
|
+
expected?: string | undefined;
|
|
9548
|
+
};
|
|
9549
|
+
};
|
|
9550
|
+
};
|
|
9551
|
+
};
|
|
9552
|
+
};
|
|
9553
|
+
};
|
|
9554
|
+
} & {
|
|
9555
|
+
creators: {
|
|
9556
|
+
hubspot: {
|
|
9557
|
+
":hubspotCompanyId": {
|
|
9558
|
+
context: {
|
|
9559
|
+
get: {
|
|
9560
|
+
body: unknown;
|
|
9561
|
+
params: {
|
|
9562
|
+
hubspotCompanyId: string;
|
|
9563
|
+
};
|
|
9564
|
+
query: unknown;
|
|
9565
|
+
headers: {
|
|
9566
|
+
authorization: string;
|
|
9567
|
+
};
|
|
9568
|
+
response: {
|
|
9569
|
+
200: import("./modules/v4/hubspot/hubspot.model").HubSpotCompanyContext;
|
|
9570
|
+
422: {
|
|
9571
|
+
type: "validation";
|
|
9572
|
+
on: string;
|
|
9573
|
+
summary?: string | undefined;
|
|
9574
|
+
message?: string | undefined;
|
|
9575
|
+
found?: unknown;
|
|
9576
|
+
property?: string | undefined;
|
|
9577
|
+
expected?: string | undefined;
|
|
9578
|
+
};
|
|
9579
|
+
};
|
|
9580
|
+
};
|
|
9581
|
+
};
|
|
9582
|
+
};
|
|
9583
|
+
};
|
|
9584
|
+
};
|
|
9525
9585
|
} & {
|
|
9526
9586
|
creators: {
|
|
9527
9587
|
":creator": {
|