@rippling/rippling-sdk 0.2.0-alpha.58 → 0.2.0-alpha.59
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/client.d.mts +6 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts +6 -0
- package/client.d.ts.map +1 -1
- package/client.js +6 -0
- package/client.js.map +1 -1
- package/client.mjs +6 -0
- package/client.mjs.map +1 -1
- package/examples/manifest/dental-practice-management/dental-practice-management.ts +0 -6
- package/examples/manifest/gym-membership-management/gym-membership-management.ts +0 -6
- package/examples/manifest/simple-todo-app/simple-todo-app.ts +0 -1
- package/lib/manifest/sdui-page.d.mts +0 -8
- package/lib/manifest/sdui-page.d.mts.map +1 -1
- package/lib/manifest/sdui-page.d.ts +0 -8
- package/lib/manifest/sdui-page.d.ts.map +1 -1
- package/lib/manifest/sdui-page.js +0 -4
- package/lib/manifest/sdui-page.js.map +1 -1
- package/lib/manifest/sdui-page.mjs +1 -5
- package/lib/manifest/sdui-page.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/business-structure-paths.d.mts +109 -0
- package/resources/business-structure-paths.d.mts.map +1 -0
- package/resources/business-structure-paths.d.ts +109 -0
- package/resources/business-structure-paths.d.ts.map +1 -0
- package/resources/business-structure-paths.js +30 -0
- package/resources/business-structure-paths.js.map +1 -0
- package/resources/business-structure-paths.mjs +26 -0
- package/resources/business-structure-paths.mjs.map +1 -0
- package/resources/employee-documents.d.mts +14 -10
- package/resources/employee-documents.d.mts.map +1 -1
- package/resources/employee-documents.d.ts +14 -10
- package/resources/employee-documents.d.ts.map +1 -1
- package/resources/index.d.mts +1 -0
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -0
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +4 -2
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/src/client.ts +22 -0
- package/src/lib/manifest/sdui-page.ts +1 -12
- package/src/resources/business-structure-paths.ts +157 -0
- package/src/resources/employee-documents.ts +14 -10
- package/src/resources/index.ts +8 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -62,11 +62,13 @@ export namespace EmployeeDocumentCreateResponse {
|
|
|
62
62
|
worker_id: string;
|
|
63
63
|
|
|
64
64
|
/**
|
|
65
|
-
* Optional
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
*
|
|
65
|
+
* Optional destination folder for documents. Accepts either: (1) an ObjectId
|
|
66
|
+
* string for custom folders, or (2) a default folder identifier ('root',
|
|
67
|
+
* 'confidential_documents', 'notices', 'work_authorization'). When omitted,
|
|
68
|
+
* documents land at the root of the worker's profile (current default behavior).
|
|
69
|
+
* When supplied, the folder must exist, be in an active state, be provisioned for
|
|
70
|
+
* the target worker, and the caller must have UPLOAD permission on it — otherwise
|
|
71
|
+
* behavior is governed by `on_invalid_folder`.
|
|
70
72
|
*/
|
|
71
73
|
folder_id?: string;
|
|
72
74
|
|
|
@@ -129,11 +131,13 @@ export namespace EmployeeDocumentCreateParams {
|
|
|
129
131
|
worker_id: string;
|
|
130
132
|
|
|
131
133
|
/**
|
|
132
|
-
* Optional
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
*
|
|
136
|
-
*
|
|
134
|
+
* Optional destination folder for documents. Accepts either: (1) an ObjectId
|
|
135
|
+
* string for custom folders, or (2) a default folder identifier ('root',
|
|
136
|
+
* 'confidential_documents', 'notices', 'work_authorization'). When omitted,
|
|
137
|
+
* documents land at the root of the worker's profile (current default behavior).
|
|
138
|
+
* When supplied, the folder must exist, be in an active state, be provisioned for
|
|
139
|
+
* the target worker, and the caller must have UPLOAD permission on it — otherwise
|
|
140
|
+
* behavior is governed by `on_invalid_folder`.
|
|
137
141
|
*/
|
|
138
142
|
folder_id?: string;
|
|
139
143
|
|
package/src/resources/index.ts
CHANGED
|
@@ -35,6 +35,14 @@ export {
|
|
|
35
35
|
type BusinessPartnerRetrieveParams,
|
|
36
36
|
type BusinessPartnersPageCursorURL,
|
|
37
37
|
} from './business-partners';
|
|
38
|
+
export {
|
|
39
|
+
BusinessStructurePaths,
|
|
40
|
+
type BusinessStructurePathListResponse,
|
|
41
|
+
type BusinessStructurePathRetrieveResponse,
|
|
42
|
+
type BusinessStructurePathListParams,
|
|
43
|
+
type BusinessStructurePathRetrieveParams,
|
|
44
|
+
type BusinessStructurePathListResponsesPageCursorURL,
|
|
45
|
+
} from './business-structure-paths';
|
|
38
46
|
export {
|
|
39
47
|
CandidateApplications,
|
|
40
48
|
type CandidateApplicationListResponse,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.2.0-alpha.
|
|
1
|
+
export const VERSION = '0.2.0-alpha.59'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.2.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.2.0-alpha.59";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.2.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.2.0-alpha.59";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '0.2.0-alpha.
|
|
4
|
+
exports.VERSION = '0.2.0-alpha.59'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.2.0-alpha.
|
|
1
|
+
export const VERSION = '0.2.0-alpha.59'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|