Skip to content

Commit

Permalink
NO-ISSUE b
Browse files Browse the repository at this point in the history
  • Loading branch information
Yang-33 committed Dec 28, 2023
1 parent db3d9f5 commit fe2d9b7
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe("{{operations.classname}}", () => {
{% if authMethods != null -%}
{% for authMethod in authMethods %}
{% if authMethod.isBasicBearer %}
channelAccessToken: string,
channelAccessToken: channel_access_token,
{% else %}
{% endif %}
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion lib/insight/tests/api/InsightClientTest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe("InsightClient", () => {
});

const client = new InsightClient({
channelAccessToken: string,
channelAccessToken: channel_access_token,
});

it("getFriendsDemographics", async () => {
Expand Down
2 changes: 1 addition & 1 deletion lib/liff/tests/api/LiffClientTest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe("LiffClient", () => {
});

const client = new LiffClient({
channelAccessToken: string,
channelAccessToken: channel_access_token,
});

it("addLIFFApp", async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe("ManageAudienceBlobClient", () => {
});

const client = new ManageAudienceBlobClient({
channelAccessToken: string,
channelAccessToken: channel_access_token,
});

it("addUserIdsToAudience", async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe("ManageAudienceClient", () => {
});

const client = new ManageAudienceClient({
channelAccessToken: string,
channelAccessToken: channel_access_token,
});

it("activateAudienceGroup", async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe("MessagingApiBlobClient", () => {
});

const client = new MessagingApiBlobClient({
channelAccessToken: string,
channelAccessToken: channel_access_token,
});

it("getMessageContent", async () => {
Expand Down
2 changes: 1 addition & 1 deletion lib/messaging-api/tests/api/MessagingApiClientTest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe("MessagingApiClient", () => {
});

const client = new MessagingApiClient({
channelAccessToken: string,
channelAccessToken: channel_access_token,
});

it("audienceMatch", async () => {
Expand Down
2 changes: 1 addition & 1 deletion lib/module/tests/api/LineModuleClientTest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe("LineModuleClient", () => {
});

const client = new LineModuleClient({
channelAccessToken: string,
channelAccessToken: channel_access_token,
});

it("acquireChatControl", async () => {
Expand Down
2 changes: 1 addition & 1 deletion lib/shop/tests/api/ShopClientTest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe("ShopClient", () => {
});

const client = new ShopClient({
channelAccessToken: string,
channelAccessToken: channel_access_token,
});

it("missionStickerV3", async () => {
Expand Down

0 comments on commit fe2d9b7

Please sign in to comment.