@vendasta/forms_microservice 0.0.1 → 0.0.2

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.
@@ -1 +1,2 @@
1
- export { CreateFormRequest, CreateFormResponse, FormConfig, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, Styles, UpdateFormRequest, UpdateFormResponse, } from './api';
1
+ export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
2
+ export { CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, ListFormsRequestFilters, FormConfig, ListFormsResponseFormRow, FormSubmission, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, ListFormsRequest, ListFormsResponse, Styles, UpdateFormRequest, UpdateFormResponse, } from './api';
@@ -0,0 +1,16 @@
1
+ import * as i from '../interfaces';
2
+ export declare class PagedRequestOptions implements i.PagedRequestOptionsInterface {
3
+ cursor: string;
4
+ pageSize: number;
5
+ static fromProto(proto: any): PagedRequestOptions;
6
+ constructor(kwargs?: i.PagedRequestOptionsInterface);
7
+ toApiJson(): object;
8
+ }
9
+ export declare class PagedResponseMetadata implements i.PagedResponseMetadataInterface {
10
+ nextCursor: string;
11
+ hasMore: boolean;
12
+ totalResults: number;
13
+ static fromProto(proto: any): PagedResponseMetadata;
14
+ constructor(kwargs?: i.PagedResponseMetadataInterface);
15
+ toApiJson(): object;
16
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/forms_microservice",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.0.0",
6
6
  "@angular/core": "^13.0.0"