@parra/parra-js-sdk 0.2.98 → 0.2.100

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.
@@ -590,7 +590,7 @@ export interface TemplateStub {
590
590
  created_at: string;
591
591
  updated_at: string;
592
592
  deleted_at?: string | null;
593
- tenant_id: string;
593
+ tenant_id?: string | null;
594
594
  question_id?: string | null;
595
595
  title: string;
596
596
  description?: string | null;
@@ -601,7 +601,7 @@ export interface Template {
601
601
  created_at: string;
602
602
  updated_at: string;
603
603
  deleted_at?: string | null;
604
- tenant_id: string;
604
+ tenant_id?: string | null;
605
605
  question_id?: string | null;
606
606
  title: string;
607
607
  description?: string | null;
@@ -630,6 +630,10 @@ export interface TemplateTag {
630
630
  deleted_at?: string | null;
631
631
  title: string;
632
632
  description?: string | null;
633
+ template_count: number;
634
+ }
635
+ export interface TemplateTagCollectionMetadata {
636
+ total_template_count: number;
633
637
  }
634
638
  export interface TemplateTagCollectionResponse {
635
639
  page: number;
@@ -637,8 +641,8 @@ export interface TemplateTagCollectionResponse {
637
641
  page_size: number;
638
642
  total_count: number;
639
643
  data: Array<TemplateTag>;
644
+ metadata?: TemplateTagCollectionMetadata;
640
645
  }
641
- export declare type TemplateTagResponse = Array<TemplateTag>;
642
646
  export interface TenantUserStub {
643
647
  id: string;
644
648
  created_at: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.2.98",
3
+ "version": "0.2.100",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",