@merkl/api 0.10.201 → 0.10.202

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.
@@ -72,8 +72,8 @@ export declare const CampaignController: Elysia<"/campaigns", false, {
72
72
  campaignId?: string | undefined;
73
73
  opportunityId?: string | undefined;
74
74
  test?: boolean | undefined;
75
+ creatorTag?: string | undefined;
75
76
  tokenSymbol?: string | undefined;
76
- creatorTag: string;
77
77
  };
78
78
  headers: unknown;
79
79
  response: {
@@ -144,8 +144,8 @@ export declare const CampaignController: Elysia<"/campaigns", false, {
144
144
  campaignId?: string | undefined;
145
145
  opportunityId?: string | undefined;
146
146
  test?: boolean | undefined;
147
+ creatorTag?: string | undefined;
147
148
  tokenSymbol?: string | undefined;
148
- creatorTag: string;
149
149
  };
150
150
  headers: unknown;
151
151
  response: {
@@ -100,7 +100,7 @@ export declare const CreateCampaignDto: import("@sinclair/typebox").TObject<{
100
100
  params: import("@sinclair/typebox").TString;
101
101
  }>;
102
102
  export declare const GetCampaignQueryDto: import("@sinclair/typebox").TObject<{
103
- creatorTag: import("@sinclair/typebox").TString;
103
+ creatorTag: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
104
104
  chainId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
105
105
  type: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
106
106
  INVALID: "INVALID";
@@ -61,7 +61,7 @@ export const CreateCampaignDto = t.Object({
61
61
  params: t.String(),
62
62
  });
63
63
  export const GetCampaignQueryDto = t.Object({
64
- creatorTag: t.String({ description: "Filter campaigns created by a user who has a specific tag" }),
64
+ creatorTag: t.Optional(t.String({ description: "Filter campaigns created by a user who has a specific tag" })),
65
65
  chainId: t.Optional(t.Numeric({
66
66
  description: "Filter by chain.<br>You can get the list of all supported chains by calling [GET /v4/chains](#tag/chains/GET/v4/chains/)",
67
67
  })),
@@ -585,8 +585,8 @@ export declare const v4: Elysia<"/v4", false, {
585
585
  campaignId?: string | undefined;
586
586
  opportunityId?: string | undefined;
587
587
  test?: boolean | undefined;
588
+ creatorTag?: string | undefined;
588
589
  tokenSymbol?: string | undefined;
589
- creatorTag: string;
590
590
  };
591
591
  headers: unknown;
592
592
  response: {
@@ -657,8 +657,8 @@ export declare const v4: Elysia<"/v4", false, {
657
657
  campaignId?: string | undefined;
658
658
  opportunityId?: string | undefined;
659
659
  test?: boolean | undefined;
660
+ creatorTag?: string | undefined;
660
661
  tokenSymbol?: string | undefined;
661
- creatorTag: string;
662
662
  };
663
663
  headers: unknown;
664
664
  response: {