connectbase-client 0.4.0 → 0.5.0
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/README.md +2 -1
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -465,7 +465,8 @@ await cb.storage.setPageMeta('web-storage-id', {
|
|
|
465
465
|
description: '최고의 성능, 최저가 보장',
|
|
466
466
|
image: 'https://example.com/product.jpg',
|
|
467
467
|
og_type: 'product',
|
|
468
|
-
json_ld: JSON.stringify({ "@context": "https://schema.org", "@type": "Product", "name": "스마트폰" })
|
|
468
|
+
json_ld: JSON.stringify({ "@context": "https://schema.org", "@type": "Product", "name": "스마트폰" }),
|
|
469
|
+
robots_noindex: false // true면 검색 결과에서 제외
|
|
469
470
|
})
|
|
470
471
|
|
|
471
472
|
// 여러 페이지 일괄 등록
|
package/dist/index.d.mts
CHANGED
|
@@ -436,6 +436,8 @@ interface SetPageMetaRequest {
|
|
|
436
436
|
sitemap_priority?: number;
|
|
437
437
|
/** 캐노니컬 URL */
|
|
438
438
|
canonical_url?: string;
|
|
439
|
+
/** 검색엔진 noindex 설정 (true면 검색 결과에서 제외) */
|
|
440
|
+
robots_noindex?: boolean;
|
|
439
441
|
}
|
|
440
442
|
/**
|
|
441
443
|
* 페이지 메타 응답
|
|
@@ -452,6 +454,7 @@ interface PageMetaResponse {
|
|
|
452
454
|
include_in_sitemap: boolean;
|
|
453
455
|
sitemap_priority: number;
|
|
454
456
|
canonical_url?: string;
|
|
457
|
+
robots_noindex: boolean;
|
|
455
458
|
created_at: string;
|
|
456
459
|
updated_at: string;
|
|
457
460
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -436,6 +436,8 @@ interface SetPageMetaRequest {
|
|
|
436
436
|
sitemap_priority?: number;
|
|
437
437
|
/** 캐노니컬 URL */
|
|
438
438
|
canonical_url?: string;
|
|
439
|
+
/** 검색엔진 noindex 설정 (true면 검색 결과에서 제외) */
|
|
440
|
+
robots_noindex?: boolean;
|
|
439
441
|
}
|
|
440
442
|
/**
|
|
441
443
|
* 페이지 메타 응답
|
|
@@ -452,6 +454,7 @@ interface PageMetaResponse {
|
|
|
452
454
|
include_in_sitemap: boolean;
|
|
453
455
|
sitemap_priority: number;
|
|
454
456
|
canonical_url?: string;
|
|
457
|
+
robots_noindex: boolean;
|
|
455
458
|
created_at: string;
|
|
456
459
|
updated_at: string;
|
|
457
460
|
}
|