@merkl/api 0.16.11 → 0.16.13
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 +5 -5
- package/dist/src/index.d.ts +1 -1
- package/dist/src/modules/v4/router.d.ts +1 -1
- package/dist/src/modules/v4/status/status.controller.d.ts +1 -1
- package/dist/src/modules/v4/status/status.repository.d.ts +1 -1
- package/dist/src/modules/v4/status/status.repository.js +1 -1
- package/dist/src/modules/v4/status/status.service.d.ts +1 -1
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -2720,7 +2720,7 @@ declare const eden: {
|
|
2720
2720
|
Opportunity: {
|
2721
2721
|
name: string;
|
2722
2722
|
type: string;
|
2723
|
-
|
2723
|
+
identifier: string;
|
2724
2724
|
};
|
2725
2725
|
CampaignStatus: {
|
2726
2726
|
error: string;
|
@@ -5834,7 +5834,7 @@ declare const eden: {
|
|
5834
5834
|
Opportunity: {
|
5835
5835
|
name: string;
|
5836
5836
|
type: string;
|
5837
|
-
|
5837
|
+
identifier: string;
|
5838
5838
|
};
|
5839
5839
|
CampaignStatus: {
|
5840
5840
|
error: string;
|
@@ -10274,7 +10274,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
10274
10274
|
Opportunity: {
|
10275
10275
|
name: string;
|
10276
10276
|
type: string;
|
10277
|
-
|
10277
|
+
identifier: string;
|
10278
10278
|
};
|
10279
10279
|
CampaignStatus: {
|
10280
10280
|
error: string;
|
@@ -14413,7 +14413,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14413
14413
|
Opportunity: {
|
14414
14414
|
name: string;
|
14415
14415
|
type: string;
|
14416
|
-
|
14416
|
+
identifier: string;
|
14417
14417
|
};
|
14418
14418
|
CampaignStatus: {
|
14419
14419
|
error: string;
|
@@ -17527,7 +17527,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17527
17527
|
Opportunity: {
|
17528
17528
|
name: string;
|
17529
17529
|
type: string;
|
17530
|
-
|
17530
|
+
identifier: string;
|
17531
17531
|
};
|
17532
17532
|
CampaignStatus: {
|
17533
17533
|
error: string;
|
package/dist/src/index.d.ts
CHANGED