gap-nodejs-sdk 1.0.858 → 1.0.860
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/dist/api/appointment_api/1.0.0/models/appointment.d.ts.map +1 -1
- package/dist/api/appointment_api/1.0.0/models/appointment.js +7 -1
- package/dist/api/appointment_api/1.0.0/types/response/appointment.d.ts +6 -0
- package/dist/api/appointment_api/1.0.0/types/response/appointment.d.ts.map +1 -1
- package/dist/api/referral_api/1.0.0/api/index.d.ts +2 -0
- package/dist/api/referral_api/1.0.0/api/index.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/api/index.js +1 -0
- package/dist/api/referral_api/1.0.0/api/referral.d.ts +16 -0
- package/dist/api/referral_api/1.0.0/api/referral.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/api/referral.js +77 -0
- package/dist/api/referral_api/1.0.0/endpoints/index.d.ts +2 -0
- package/dist/api/referral_api/1.0.0/endpoints/index.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/endpoints/index.js +1 -0
- package/dist/api/referral_api/1.0.0/endpoints/referral.d.ts +11 -0
- package/dist/api/referral_api/1.0.0/endpoints/referral.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/endpoints/referral.js +9 -0
- package/dist/api/referral_api/1.0.0/interfaces/index.d.ts +1 -0
- package/dist/api/referral_api/1.0.0/interfaces/index.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/interfaces/index.js +0 -0
- package/dist/api/referral_api/1.0.0/interfaces/referral.d.ts +12 -0
- package/dist/api/referral_api/1.0.0/interfaces/referral.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/interfaces/referral.js +2 -0
- package/dist/api/referral_api/1.0.0/models/index.d.ts +2 -0
- package/dist/api/referral_api/1.0.0/models/index.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/models/index.js +1 -0
- package/dist/api/referral_api/1.0.0/models/referral.d.ts +46 -0
- package/dist/api/referral_api/1.0.0/models/referral.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/models/referral.js +80 -0
- package/dist/api/referral_api/1.0.0/types/request/index.d.ts +2 -0
- package/dist/api/referral_api/1.0.0/types/request/index.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/types/request/index.js +1 -0
- package/dist/api/referral_api/1.0.0/types/request/referral.d.ts +34 -0
- package/dist/api/referral_api/1.0.0/types/request/referral.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/types/request/referral.js +1 -0
- package/dist/api/referral_api/1.0.0/types/response/index.d.ts +2 -0
- package/dist/api/referral_api/1.0.0/types/response/index.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/types/response/index.js +1 -0
- package/dist/api/referral_api/1.0.0/types/response/referral.d.ts +68 -0
- package/dist/api/referral_api/1.0.0/types/response/referral.d.ts.map +1 -0
- package/dist/api/referral_api/1.0.0/types/response/referral.js +1 -0
- package/dist/api/referral_api/api.d.ts +5 -0
- package/dist/api/referral_api/api.d.ts.map +1 -0
- package/dist/api/referral_api/api.js +12 -0
- package/dist/api/referral_api/enums/index.d.ts +11 -0
- package/dist/api/referral_api/enums/index.d.ts.map +1 -0
- package/dist/api/referral_api/enums/index.js +12 -0
- package/dist/api/referral_api/index.d.ts +6 -0
- package/dist/api/referral_api/index.d.ts.map +1 -0
- package/dist/api/referral_api/index.js +9 -0
- package/dist/gap-sdk.js +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ import AppointmentApi from "./api/appointment_api";
|
|
|
7
7
|
import GoOrderApi from "./api/go_order_api";
|
|
8
8
|
import UserApi from "./api/user_api";
|
|
9
9
|
import BaseApi from "./api/base_api";
|
|
10
|
+
import ReferralApi from "./api/referral_api";
|
|
11
|
+
import { ReferralStatus, ReferralSmsStatus } from "./api/referral_api/enums";
|
|
10
12
|
import { PosClientApiOther } from "./api/pos_client_api";
|
|
11
13
|
import { PaymentInterface } from "./payment/payment_interface";
|
|
12
14
|
export declare const Gap: {
|
|
@@ -18,6 +20,9 @@ export declare const Gap: {
|
|
|
18
20
|
GoOrderApi: typeof GoOrderApi;
|
|
19
21
|
UserApi: typeof UserApi;
|
|
20
22
|
BaseApi: typeof BaseApi;
|
|
23
|
+
ReferralApi: typeof ReferralApi;
|
|
24
|
+
ReferralStatus: typeof ReferralStatus;
|
|
25
|
+
ReferralSmsStatus: typeof ReferralSmsStatus;
|
|
21
26
|
PosClientApiOther: typeof PosClientApiOther;
|
|
22
27
|
Errors: typeof GapError;
|
|
23
28
|
Clover: typeof Clover;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,iBAAiB,CAAC;AAErC,OAAO,KAAK,QAAQ,MAAM,SAAS,CAAC;AACpC,OAAO,YAAY,MAAM,sBAAsB,CAAC;AAChD,OAAO,WAAW,MAAM,oBAAoB,CAAC;AAC7C,OAAO,YAAY,MAAM,uBAAuB,CAAC;AACjD,OAAO,cAAc,MAAM,uBAAuB,CAAC;AACnD,OAAO,UAAU,MAAM,oBAAoB,CAAC;AAC5C,OAAO,OAAO,MAAM,gBAAgB,CAAA;AACpC,OAAO,OAAO,MAAM,gBAAgB,CAAA;AACpC,OAAO,EAAC,iBAAiB,EAAC,MAAM,sBAAsB,CAAA;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAA;AAI9D,eAAO,MAAM,GAAG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,iBAAiB,CAAC;AAErC,OAAO,KAAK,QAAQ,MAAM,SAAS,CAAC;AACpC,OAAO,YAAY,MAAM,sBAAsB,CAAC;AAChD,OAAO,WAAW,MAAM,oBAAoB,CAAC;AAC7C,OAAO,YAAY,MAAM,uBAAuB,CAAC;AACjD,OAAO,cAAc,MAAM,uBAAuB,CAAC;AACnD,OAAO,UAAU,MAAM,oBAAoB,CAAC;AAC5C,OAAO,OAAO,MAAM,gBAAgB,CAAA;AACpC,OAAO,OAAO,MAAM,gBAAgB,CAAA;AACpC,OAAO,WAAW,MAAM,oBAAoB,CAAA;AAC5C,OAAO,EAAC,cAAc,EAAE,iBAAiB,EAAC,MAAM,0BAA0B,CAAA;AAC1E,OAAO,EAAC,iBAAiB,EAAC,MAAM,sBAAsB,CAAA;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAA;AAI9D,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;CAkBf,CAAC;AAIF,eAAe,GAAG,CAAC;AACnB,cAAc,SAAS,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -8,6 +8,8 @@ import AppointmentApi from "./api/appointment_api";
|
|
|
8
8
|
import GoOrderApi from "./api/go_order_api";
|
|
9
9
|
import UserApi from "./api/user_api";
|
|
10
10
|
import BaseApi from "./api/base_api";
|
|
11
|
+
import ReferralApi from "./api/referral_api";
|
|
12
|
+
import { ReferralStatus, ReferralSmsStatus } from "./api/referral_api/enums";
|
|
11
13
|
import { PosClientApiOther } from "./api/pos_client_api";
|
|
12
14
|
export const Gap = {
|
|
13
15
|
Context,
|
|
@@ -18,6 +20,9 @@ export const Gap = {
|
|
|
18
20
|
GoOrderApi,
|
|
19
21
|
UserApi,
|
|
20
22
|
BaseApi,
|
|
23
|
+
ReferralApi,
|
|
24
|
+
ReferralStatus,
|
|
25
|
+
ReferralSmsStatus,
|
|
21
26
|
PosClientApiOther,
|
|
22
27
|
Errors: GapError,
|
|
23
28
|
// CloverPayment, //For testing purpose
|
package/dist/types/index.d.ts
CHANGED
|
@@ -15,5 +15,8 @@ export * from '../api/base_api/1.0.0/types/request';
|
|
|
15
15
|
export * from '../api/base_api/1.0.0/types/response';
|
|
16
16
|
export * from '../api/go_order_api/1.0.0/types/response';
|
|
17
17
|
export * from '../api/go_order_api/1.0.0/types/request';
|
|
18
|
+
export * from '../api/referral_api/1.0.0/types/request';
|
|
19
|
+
export * from '../api/referral_api/1.0.0/types/response';
|
|
20
|
+
export * from '../api/referral_api/enums';
|
|
18
21
|
export * from '../mqtt/type';
|
|
19
22
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC;AACzD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AACzD,cAAc,yCAAyC,CAAC;AACxD,cAAc,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC;AACzD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AACzD,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC;AACzD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,cAAc,CAAC"}
|
package/dist/types/index.js
CHANGED
|
@@ -15,4 +15,7 @@ export * from '../api/base_api/1.0.0/types/request';
|
|
|
15
15
|
export * from '../api/base_api/1.0.0/types/response';
|
|
16
16
|
export * from '../api/go_order_api/1.0.0/types/response';
|
|
17
17
|
export * from '../api/go_order_api/1.0.0/types/request';
|
|
18
|
+
export * from '../api/referral_api/1.0.0/types/request';
|
|
19
|
+
export * from '../api/referral_api/1.0.0/types/response';
|
|
20
|
+
export * from '../api/referral_api/enums';
|
|
18
21
|
export * from '../mqtt/type';
|