btrz-api-client 5.193.0 → 5.195.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/lib/client-standalone-min.js +3 -3
- package/lib/client.js +31 -10
- package/lib/endpoints/accounts/shifts.js +14 -1
- package/lib/endpoints/ratality/auth.js +23 -0
- package/lib/endpoints/ratality/clients.js +40 -0
- package/lib/endpoints/ratality/integrations.js +53 -0
- package/package.json +1 -1
- package/src/client.js +16 -1
- package/src/endpoints/accounts/shifts.js +9 -1
- package/src/endpoints/ratality/auth.js +19 -0
- package/src/endpoints/ratality/clients.js +35 -0
- package/src/endpoints/ratality/integrations.js +44 -0
- package/test/endpoints/accounts/shifts.test.js +7 -0
- package/test/endpoints/ratality/auth.test.js +23 -0
- package/test/endpoints/ratality/client.test.js +32 -0
- package/test/endpoints/ratality/integrations.test.js +90 -0
- package/types/client.d.ts +46 -0
- package/types/endpoints/accounts/shifts.d.ts +8 -0
- package/types/endpoints/ratality/auth.d.ts +9 -0
- package/types/endpoints/ratality/clients.d.ts +15 -0
- package/types/endpoints/ratality/integrations.d.ts +20 -0
- package/types/initializedClient.d.ts +46 -0
|
@@ -2428,6 +2428,14 @@ declare const _exports: {
|
|
|
2428
2428
|
headers: any;
|
|
2429
2429
|
}): any;
|
|
2430
2430
|
};
|
|
2431
|
+
commissions: {
|
|
2432
|
+
get({ token, jwtToken, shiftId, headers }: {
|
|
2433
|
+
token: any;
|
|
2434
|
+
jwtToken: any;
|
|
2435
|
+
shiftId: any;
|
|
2436
|
+
headers: any;
|
|
2437
|
+
}): any;
|
|
2438
|
+
};
|
|
2431
2439
|
};
|
|
2432
2440
|
shiftSettings: {
|
|
2433
2441
|
get: ({ token, jwtToken, query, headers }: {
|
|
@@ -4414,5 +4422,43 @@ declare const _exports: {
|
|
|
4414
4422
|
client: import("axios").AxiosInstance;
|
|
4415
4423
|
};
|
|
4416
4424
|
};
|
|
4425
|
+
ratality: {
|
|
4426
|
+
auth: {
|
|
4427
|
+
create: ({ data, headers }: {
|
|
4428
|
+
data: any;
|
|
4429
|
+
headers: any;
|
|
4430
|
+
}) => any;
|
|
4431
|
+
};
|
|
4432
|
+
clients: {
|
|
4433
|
+
create: ({ jwtToken, data, headers }: {
|
|
4434
|
+
jwtToken: any;
|
|
4435
|
+
data: any;
|
|
4436
|
+
headers: any;
|
|
4437
|
+
}) => any;
|
|
4438
|
+
get: ({ jwtToken, clientId }: {
|
|
4439
|
+
jwtToken: any;
|
|
4440
|
+
clientId: any;
|
|
4441
|
+
}) => any;
|
|
4442
|
+
};
|
|
4443
|
+
integrations: {
|
|
4444
|
+
get: ({ jwtToken, clientId }: {
|
|
4445
|
+
jwtToken: any;
|
|
4446
|
+
clientId: any;
|
|
4447
|
+
}) => any;
|
|
4448
|
+
create: ({ jwtToken, clientId, data }: {
|
|
4449
|
+
jwtToken: any;
|
|
4450
|
+
clientId: any;
|
|
4451
|
+
data: any;
|
|
4452
|
+
}) => any;
|
|
4453
|
+
remove: ({ jwtToken, clientId, integrationType }: {
|
|
4454
|
+
jwtToken: any;
|
|
4455
|
+
clientId: any;
|
|
4456
|
+
integrationType: any;
|
|
4457
|
+
}) => any;
|
|
4458
|
+
};
|
|
4459
|
+
__test: {
|
|
4460
|
+
client: import("axios").AxiosInstance;
|
|
4461
|
+
};
|
|
4462
|
+
};
|
|
4417
4463
|
};
|
|
4418
4464
|
export = _exports;
|