gap-nodejs-sdk 1.0.246 → 1.0.248

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.
Files changed (35) hide show
  1. package/dist/api/go_check_in_api/1.0.0/api/business.d.ts +11 -0
  2. package/dist/api/go_check_in_api/1.0.0/api/business.d.ts.map +1 -0
  3. package/dist/api/go_check_in_api/1.0.0/api/business.js +30 -0
  4. package/dist/api/go_check_in_api/1.0.0/api/index.d.ts +1 -0
  5. package/dist/api/go_check_in_api/1.0.0/api/index.d.ts.map +1 -1
  6. package/dist/api/go_check_in_api/1.0.0/api/index.js +1 -0
  7. package/dist/api/go_check_in_api/1.0.0/endpoints/business.d.ts +6 -0
  8. package/dist/api/go_check_in_api/1.0.0/endpoints/business.d.ts.map +1 -0
  9. package/dist/api/go_check_in_api/1.0.0/endpoints/business.js +4 -0
  10. package/dist/api/go_check_in_api/1.0.0/endpoints/index.d.ts +1 -0
  11. package/dist/api/go_check_in_api/1.0.0/endpoints/index.d.ts.map +1 -1
  12. package/dist/api/go_check_in_api/1.0.0/endpoints/index.js +1 -0
  13. package/dist/api/go_check_in_api/1.0.0/models/business.d.ts +33 -0
  14. package/dist/api/go_check_in_api/1.0.0/models/business.d.ts.map +1 -0
  15. package/dist/api/go_check_in_api/1.0.0/models/business.js +35 -0
  16. package/dist/api/go_check_in_api/1.0.0/models/index.d.ts +1 -0
  17. package/dist/api/go_check_in_api/1.0.0/models/index.d.ts.map +1 -1
  18. package/dist/api/go_check_in_api/1.0.0/models/index.js +1 -0
  19. package/dist/api/go_check_in_api/1.0.0/types/request/business.d.ts +3 -0
  20. package/dist/api/go_check_in_api/1.0.0/types/request/business.d.ts.map +1 -0
  21. package/dist/api/go_check_in_api/1.0.0/types/request/business.js +1 -0
  22. package/dist/api/go_check_in_api/1.0.0/types/request/index.d.ts +1 -0
  23. package/dist/api/go_check_in_api/1.0.0/types/request/index.d.ts.map +1 -1
  24. package/dist/api/go_check_in_api/1.0.0/types/request/index.js +1 -0
  25. package/dist/api/go_check_in_api/1.0.0/types/response/business.d.ts +34 -0
  26. package/dist/api/go_check_in_api/1.0.0/types/response/business.d.ts.map +1 -0
  27. package/dist/api/go_check_in_api/1.0.0/types/response/business.js +1 -0
  28. package/dist/api/go_check_in_api/1.0.0/types/response/index.d.ts +1 -0
  29. package/dist/api/go_check_in_api/1.0.0/types/response/index.d.ts.map +1 -1
  30. package/dist/api/go_check_in_api/1.0.0/types/response/index.js +1 -0
  31. package/dist/api/go_check_in_api/index.d.ts +1 -0
  32. package/dist/api/go_check_in_api/index.d.ts.map +1 -1
  33. package/dist/api/go_check_in_api/index.js +1 -0
  34. package/dist/gap-sdk.js +1 -1
  35. package/package.json +1 -1
@@ -0,0 +1,11 @@
1
+ import CategoryAbstractClass from "../interfaces/category";
2
+ import Base from "../../../../base/Base";
3
+ import { GapApiVersion } from "../../../../base_type";
4
+ import * as Request from "../types/request";
5
+ import * as Response from "../types/response";
6
+ export default class Business extends Base implements CategoryAbstractClass {
7
+ static API_VERSION: GapApiVersion;
8
+ static getBusinessSiteInfo(query: Request.GetBusinessSiteInfoRequest): Promise<Response.GetBusinessSiteInfoResponse>;
9
+ static updateBusinessSiteInfo(data: Request.UpdateBusinessSiteInfoRequest): Promise<Response.UpdateBusinessSiteInfoResponse>;
10
+ }
11
+ //# sourceMappingURL=business.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"business.d.ts","sourceRoot":"","sources":["../../../../../src/api/go_check_in_api/1.0.0/api/business.ts"],"names":[],"mappings":"AACA,OAAO,qBAAqB,MAAM,wBAAwB,CAAC;AAC3D,OAAO,IAAI,MAAM,uBAAuB,CAAC;AACzC,OAAO,EAAC,aAAa,EAAC,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,QAAQ,MAAM,mBAAmB,CAAC;AAI9C,MAAM,CAAC,OAAO,OAAO,QAAS,SAAQ,IAAK,YAAW,qBAAqB;IACvE,OAAc,WAAW,gBAAoB;WAEzB,mBAAmB,CAAC,KAAK,EAAE,OAAO,CAAC,0BAA0B,GAAG,OAAO,CAAC,QAAQ,CAAC,2BAA2B,CAAC;WAU7G,sBAAsB,CAAC,IAAI,EAAE,OAAO,CAAC,6BAA6B,GAAG,OAAO,CAAC,QAAQ,CAAC,8BAA8B,CAAC;CAU5I"}
@@ -0,0 +1,30 @@
1
+ import { __awaiter } from "tslib";
2
+ import { business } from "../endpoints";
3
+ import Base from "../../../../base/Base";
4
+ import { GapApiVersion } from "../../../../base_type";
5
+ import * as Model from "../models";
6
+ import { objectToFormData } from "../../../../utils/form-data";
7
+ export default class Business extends Base {
8
+ static getBusinessSiteInfo(query) {
9
+ var _a;
10
+ return __awaiter(this, void 0, void 0, function* () {
11
+ const response = yield this.client.get({
12
+ path: business.GET_BUSINESS_SITE_INFO,
13
+ query: query
14
+ });
15
+ return Model.BusinessSiteInfoModel((_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.data);
16
+ });
17
+ }
18
+ static updateBusinessSiteInfo(data) {
19
+ var _a;
20
+ return __awaiter(this, void 0, void 0, function* () {
21
+ const formData = objectToFormData(data);
22
+ const response = yield this.client.post({
23
+ path: business.UPDATE_BUSINESS_SITE_INFO,
24
+ data: formData
25
+ });
26
+ return Model.BusinessSiteInfoModel((_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.data);
27
+ });
28
+ }
29
+ }
30
+ Business.API_VERSION = GapApiVersion.V1;
@@ -6,4 +6,5 @@ export { default as SMS } from "./sms";
6
6
  export { default as Staff } from "./staff";
7
7
  export { default as Notification } from "./notification";
8
8
  export { default as Customer } from "./customer";
9
+ export { default as Business } from "./business";
9
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/go_check_in_api/1.0.0/api/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,MAAM,EAAC,MAAM,UAAU,CAAC;AAC3C,OAAO,EAAC,OAAO,IAAI,OAAO,EAAC,MAAM,WAAW,CAAC;AAC7C,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,GAAG,EAAC,MAAM,OAAO,CAAC;AACrC,OAAO,EAAC,OAAO,IAAI,KAAK,EAAC,MAAM,SAAS,CAAC;AACzC,OAAO,EAAC,OAAO,IAAI,YAAY,EAAC,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/go_check_in_api/1.0.0/api/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,MAAM,EAAC,MAAM,UAAU,CAAC;AAC3C,OAAO,EAAC,OAAO,IAAI,OAAO,EAAC,MAAM,WAAW,CAAC;AAC7C,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,GAAG,EAAC,MAAM,OAAO,CAAC;AACrC,OAAO,EAAC,OAAO,IAAI,KAAK,EAAC,MAAM,SAAS,CAAC;AACzC,OAAO,EAAC,OAAO,IAAI,YAAY,EAAC,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC"}
@@ -6,3 +6,4 @@ export { default as SMS } from "./sms";
6
6
  export { default as Staff } from "./staff";
7
7
  export { default as Notification } from "./notification";
8
8
  export { default as Customer } from "./customer";
9
+ export { default as Business } from "./business";
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ GET_BUSINESS_SITE_INFO: string;
3
+ UPDATE_BUSINESS_SITE_INFO: string;
4
+ };
5
+ export default _default;
6
+ //# sourceMappingURL=business.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"business.d.ts","sourceRoot":"","sources":["../../../../../src/api/go_check_in_api/1.0.0/endpoints/business.ts"],"names":[],"mappings":";;;;AAAA,wBAGC"}
@@ -0,0 +1,4 @@
1
+ export default {
2
+ GET_BUSINESS_SITE_INFO: '/v1/gocheckin/business/site/info',
3
+ UPDATE_BUSINESS_SITE_INFO: '/v1/gocheckin/business/site/info',
4
+ };
@@ -6,4 +6,5 @@ export { default as sms } from "./sms";
6
6
  export { default as staff } from "./staff";
7
7
  export { default as notification } from "./notification";
8
8
  export { default as customer } from "./customer";
9
+ export { default as business } from "./business";
9
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/go_check_in_api/1.0.0/endpoints/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,MAAM,EAAC,MAAM,UAAU,CAAC;AAC3C,OAAO,EAAC,OAAO,IAAI,OAAO,EAAC,MAAM,WAAW,CAAC;AAC7C,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,GAAG,EAAC,MAAM,OAAO,CAAC;AACrC,OAAO,EAAC,OAAO,IAAI,KAAK,EAAC,MAAM,SAAS,CAAC;AACzC,OAAO,EAAC,OAAO,IAAI,YAAY,EAAC,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/go_check_in_api/1.0.0/endpoints/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,MAAM,EAAC,MAAM,UAAU,CAAC;AAC3C,OAAO,EAAC,OAAO,IAAI,OAAO,EAAC,MAAM,WAAW,CAAC;AAC7C,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,GAAG,EAAC,MAAM,OAAO,CAAC;AACrC,OAAO,EAAC,OAAO,IAAI,KAAK,EAAC,MAAM,SAAS,CAAC;AACzC,OAAO,EAAC,OAAO,IAAI,YAAY,EAAC,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC"}
@@ -6,3 +6,4 @@ export { default as sms } from "./sms";
6
6
  export { default as staff } from "./staff";
7
7
  export { default as notification } from "./notification";
8
8
  export { default as customer } from "./customer";
9
+ export { default as business } from "./business";
@@ -0,0 +1,33 @@
1
+ export declare const BusinessSiteInfoModel: (data: any) => {
2
+ map_location: any;
3
+ id: any;
4
+ name: any;
5
+ address: any;
6
+ city: any;
7
+ postal_code: any;
8
+ state_code: any;
9
+ short_name: any;
10
+ phone: any;
11
+ open_time: any;
12
+ industry_id: any;
13
+ website: any;
14
+ facebook_url: any;
15
+ yelp_url: any;
16
+ google_url: any;
17
+ twitter_user: any;
18
+ instagram_user: any;
19
+ created_at: any;
20
+ updated_at: any;
21
+ logo_image: any;
22
+ cover_image: any;
23
+ business_code: any;
24
+ description: any;
25
+ check_yelp: any;
26
+ check_google: any;
27
+ country_code: any;
28
+ map_url: any;
29
+ order_active: any;
30
+ web_booking_active: any;
31
+ timezone: any;
32
+ };
33
+ //# sourceMappingURL=business.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"business.d.ts","sourceRoot":"","sources":["../../../../../src/api/go_check_in_api/1.0.0/models/business.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,SAAU,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiC9C,CAAA"}
@@ -0,0 +1,35 @@
1
+ export const BusinessSiteInfoModel = (data) => {
2
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5;
3
+ return {
4
+ map_location: (_a = data === null || data === void 0 ? void 0 : data.map_location) !== null && _a !== void 0 ? _a : null,
5
+ id: (_b = data === null || data === void 0 ? void 0 : data.id) !== null && _b !== void 0 ? _b : null,
6
+ name: (_c = data === null || data === void 0 ? void 0 : data.name) !== null && _c !== void 0 ? _c : null,
7
+ address: (_d = data === null || data === void 0 ? void 0 : data.address) !== null && _d !== void 0 ? _d : null,
8
+ city: (_e = data === null || data === void 0 ? void 0 : data.city) !== null && _e !== void 0 ? _e : null,
9
+ postal_code: (_f = data === null || data === void 0 ? void 0 : data.postal_code) !== null && _f !== void 0 ? _f : null,
10
+ state_code: (_g = data === null || data === void 0 ? void 0 : data.state_code) !== null && _g !== void 0 ? _g : null,
11
+ short_name: (_h = data === null || data === void 0 ? void 0 : data.short_name) !== null && _h !== void 0 ? _h : null,
12
+ phone: (_j = data === null || data === void 0 ? void 0 : data.phone) !== null && _j !== void 0 ? _j : null,
13
+ open_time: (_k = data === null || data === void 0 ? void 0 : data.open_time) !== null && _k !== void 0 ? _k : null,
14
+ industry_id: (_l = data === null || data === void 0 ? void 0 : data.industry_id) !== null && _l !== void 0 ? _l : null,
15
+ website: (_m = data === null || data === void 0 ? void 0 : data.website) !== null && _m !== void 0 ? _m : null,
16
+ facebook_url: (_o = data === null || data === void 0 ? void 0 : data.facebook_url) !== null && _o !== void 0 ? _o : null,
17
+ yelp_url: (_p = data === null || data === void 0 ? void 0 : data.yelp_url) !== null && _p !== void 0 ? _p : null,
18
+ google_url: (_q = data === null || data === void 0 ? void 0 : data.google_url) !== null && _q !== void 0 ? _q : null,
19
+ twitter_user: (_r = data === null || data === void 0 ? void 0 : data.twitter_user) !== null && _r !== void 0 ? _r : null,
20
+ instagram_user: (_s = data === null || data === void 0 ? void 0 : data.instagram_user) !== null && _s !== void 0 ? _s : null,
21
+ created_at: (_t = data === null || data === void 0 ? void 0 : data.created_at) !== null && _t !== void 0 ? _t : null,
22
+ updated_at: (_u = data === null || data === void 0 ? void 0 : data.updated_at) !== null && _u !== void 0 ? _u : null,
23
+ logo_image: (_v = data === null || data === void 0 ? void 0 : data.logo_image) !== null && _v !== void 0 ? _v : null,
24
+ cover_image: (_w = data === null || data === void 0 ? void 0 : data.cover_image) !== null && _w !== void 0 ? _w : null,
25
+ business_code: (_x = data === null || data === void 0 ? void 0 : data.business_code) !== null && _x !== void 0 ? _x : null,
26
+ description: (_y = data === null || data === void 0 ? void 0 : data.description) !== null && _y !== void 0 ? _y : null,
27
+ check_yelp: (_z = data === null || data === void 0 ? void 0 : data.check_yelp) !== null && _z !== void 0 ? _z : null,
28
+ check_google: (_0 = data === null || data === void 0 ? void 0 : data.check_google) !== null && _0 !== void 0 ? _0 : null,
29
+ country_code: (_1 = data === null || data === void 0 ? void 0 : data.country_code) !== null && _1 !== void 0 ? _1 : null,
30
+ map_url: (_2 = data === null || data === void 0 ? void 0 : data.map_url) !== null && _2 !== void 0 ? _2 : null,
31
+ order_active: (_3 = data === null || data === void 0 ? void 0 : data.order_active) !== null && _3 !== void 0 ? _3 : null,
32
+ web_booking_active: (_4 = data === null || data === void 0 ? void 0 : data.web_booking_active) !== null && _4 !== void 0 ? _4 : null,
33
+ timezone: (_5 = data === null || data === void 0 ? void 0 : data.timezone) !== null && _5 !== void 0 ? _5 : null,
34
+ };
35
+ };
@@ -6,4 +6,5 @@ export * from "./sms";
6
6
  export * from "./staff";
7
7
  export * from "./notification";
8
8
  export * from "./customer";
9
+ export * from "./business";
9
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/go_check_in_api/1.0.0/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,OAAO,CAAA;AACrB,cAAc,SAAS,CAAA;AACvB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,YAAY,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/go_check_in_api/1.0.0/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,OAAO,CAAA;AACrB,cAAc,SAAS,CAAA;AACvB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA"}
@@ -6,3 +6,4 @@ export * from "./sms";
6
6
  export * from "./staff";
7
7
  export * from "./notification";
8
8
  export * from "./customer";
9
+ export * from "./business";
@@ -0,0 +1,3 @@
1
+ export type GetBusinessSiteInfoRequest = {};
2
+ export type UpdateBusinessSiteInfoRequest = {};
3
+ //# sourceMappingURL=business.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"business.d.ts","sourceRoot":"","sources":["../../../../../../src/api/go_check_in_api/1.0.0/types/request/business.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,0BAA0B,GAAG,EAAE,CAAA;AAE3C,MAAM,MAAM,6BAA6B,GAAG,EAE3C,CAAA"}
@@ -6,4 +6,5 @@ export * from './sms';
6
6
  export * from './staff';
7
7
  export * from './notification';
8
8
  export * from './customer';
9
+ export * from './business';
9
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/api/go_check_in_api/1.0.0/types/request/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/api/go_check_in_api/1.0.0/types/request/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC"}
@@ -6,3 +6,4 @@ export * from './sms';
6
6
  export * from './staff';
7
7
  export * from './notification';
8
8
  export * from './customer';
9
+ export * from './business';
@@ -0,0 +1,34 @@
1
+ export type GetBusinessSiteInfoResponse = {
2
+ map_location: any[];
3
+ id: number;
4
+ name: string;
5
+ address: string;
6
+ city: string;
7
+ postal_code: string;
8
+ state_code: string;
9
+ short_name: string;
10
+ phone: string;
11
+ open_time: any;
12
+ industry_id: any;
13
+ website: any;
14
+ facebook_url: string;
15
+ yelp_url: string;
16
+ google_url: string;
17
+ twitter_user: any;
18
+ instagram_user: any;
19
+ created_at: string;
20
+ updated_at: string;
21
+ logo_image: string;
22
+ cover_image: string;
23
+ business_code: any;
24
+ description: string;
25
+ check_yelp: number;
26
+ check_google: number;
27
+ country_code: string;
28
+ map_url: string;
29
+ order_active: number;
30
+ web_booking_active: string;
31
+ timezone: string;
32
+ };
33
+ export type UpdateBusinessSiteInfoResponse = GetBusinessSiteInfoResponse;
34
+ //# sourceMappingURL=business.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"business.d.ts","sourceRoot":"","sources":["../../../../../../src/api/go_check_in_api/1.0.0/types/response/business.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,2BAA2B,GAAG;IACtC,YAAY,EAAE,GAAG,EAAE,CAAA;IACnB,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,MAAM,CAAA;IACf,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,EAAE,GAAG,CAAA;IACd,WAAW,EAAE,GAAG,CAAA;IAChB,OAAO,EAAE,GAAG,CAAA;IACZ,YAAY,EAAE,MAAM,CAAA;IACpB,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,EAAE,GAAG,CAAA;IACjB,cAAc,EAAE,GAAG,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE,MAAM,CAAA;IACnB,aAAa,EAAE,GAAG,CAAA;IAClB,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,EAAE,MAAM,CAAA;IACpB,YAAY,EAAE,MAAM,CAAA;IACpB,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;IACpB,kBAAkB,EAAE,MAAM,CAAA;IAC1B,QAAQ,EAAE,MAAM,CAAA;CACnB,CAAA;AAED,MAAM,MAAM,8BAA8B,GAAG,2BAA2B,CAAA"}
@@ -6,4 +6,5 @@ export * from './sms';
6
6
  export * from './staff';
7
7
  export * from './notification';
8
8
  export * from './customer';
9
+ export * from './business';
9
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/api/go_check_in_api/1.0.0/types/response/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/api/go_check_in_api/1.0.0/types/response/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC"}
@@ -6,3 +6,4 @@ export * from './sms';
6
6
  export * from './staff';
7
7
  export * from './notification';
8
8
  export * from './customer';
9
+ export * from './business';
@@ -8,6 +8,7 @@ export default class GoCheckInApi {
8
8
  staff: any;
9
9
  notification: any;
10
10
  customer: any;
11
+ business: any;
11
12
  constructor(domain: string, gClientId: string, token: string, version: GapApiVersion);
12
13
  }
13
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/api/go_check_in_api/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAG9C,MAAM,CAAC,OAAO,OAAO,YAAY;IAC7B,QAAQ,MAAC;IACT,MAAM,MAAC;IACP,OAAO,MAAC;IACR,QAAQ,MAAC;IACT,GAAG,MAAC;IACJ,KAAK,MAAC;IACN,YAAY,MAAC;IACb,QAAQ,MAAC;gBAEG,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,aAAa;CAYvF"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/api/go_check_in_api/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAG9C,MAAM,CAAC,OAAO,OAAO,YAAY;IAC7B,QAAQ,MAAC;IACT,MAAM,MAAC;IACP,OAAO,MAAC;IACR,QAAQ,MAAC;IACT,GAAG,MAAC;IACJ,KAAK,MAAC;IACN,YAAY,MAAC;IACb,QAAQ,MAAC;IACT,QAAQ,MAAC;gBAEG,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,aAAa;CAavF"}
@@ -12,5 +12,6 @@ export default class GoCheckInApi {
12
12
  this.staff = API.Staff;
13
13
  this.notification = API.Notification;
14
14
  this.customer = API.Customer;
15
+ this.business = API.Business;
15
16
  }
16
17
  }