@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.
Files changed (50) hide show
  1. package/client.d.mts +6 -0
  2. package/client.d.mts.map +1 -1
  3. package/client.d.ts +6 -0
  4. package/client.d.ts.map +1 -1
  5. package/client.js +6 -0
  6. package/client.js.map +1 -1
  7. package/client.mjs +6 -0
  8. package/client.mjs.map +1 -1
  9. package/examples/manifest/dental-practice-management/dental-practice-management.ts +0 -6
  10. package/examples/manifest/gym-membership-management/gym-membership-management.ts +0 -6
  11. package/examples/manifest/simple-todo-app/simple-todo-app.ts +0 -1
  12. package/lib/manifest/sdui-page.d.mts +0 -8
  13. package/lib/manifest/sdui-page.d.mts.map +1 -1
  14. package/lib/manifest/sdui-page.d.ts +0 -8
  15. package/lib/manifest/sdui-page.d.ts.map +1 -1
  16. package/lib/manifest/sdui-page.js +0 -4
  17. package/lib/manifest/sdui-page.js.map +1 -1
  18. package/lib/manifest/sdui-page.mjs +1 -5
  19. package/lib/manifest/sdui-page.mjs.map +1 -1
  20. package/package.json +1 -1
  21. package/resources/business-structure-paths.d.mts +109 -0
  22. package/resources/business-structure-paths.d.mts.map +1 -0
  23. package/resources/business-structure-paths.d.ts +109 -0
  24. package/resources/business-structure-paths.d.ts.map +1 -0
  25. package/resources/business-structure-paths.js +30 -0
  26. package/resources/business-structure-paths.js.map +1 -0
  27. package/resources/business-structure-paths.mjs +26 -0
  28. package/resources/business-structure-paths.mjs.map +1 -0
  29. package/resources/employee-documents.d.mts +14 -10
  30. package/resources/employee-documents.d.mts.map +1 -1
  31. package/resources/employee-documents.d.ts +14 -10
  32. package/resources/employee-documents.d.ts.map +1 -1
  33. package/resources/index.d.mts +1 -0
  34. package/resources/index.d.mts.map +1 -1
  35. package/resources/index.d.ts +1 -0
  36. package/resources/index.d.ts.map +1 -1
  37. package/resources/index.js +4 -2
  38. package/resources/index.js.map +1 -1
  39. package/resources/index.mjs +1 -0
  40. package/resources/index.mjs.map +1 -1
  41. package/src/client.ts +22 -0
  42. package/src/lib/manifest/sdui-page.ts +1 -12
  43. package/src/resources/business-structure-paths.ts +157 -0
  44. package/src/resources/employee-documents.ts +14 -10
  45. package/src/resources/index.ts +8 -0
  46. package/src/version.ts +1 -1
  47. package/version.d.mts +1 -1
  48. package/version.d.ts +1 -1
  49. package/version.js +1 -1
  50. package/version.mjs +1 -1
@@ -62,11 +62,13 @@ export namespace EmployeeDocumentCreateResponse {
62
62
  worker_id: string;
63
63
 
64
64
  /**
65
- * Optional ObjectId of the destination sub-folder on the worker's documents
66
- * profile. When omitted, documents land at the root of the worker's profile
67
- * (current default behavior). When supplied, the folder must exist, be in an
68
- * active state, be provisioned for the target worker, and the caller must have
69
- * UPLOAD permission on it — otherwise behavior is governed by `on_invalid_folder`.
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 ObjectId of the destination sub-folder on the worker's documents
133
- * profile. When omitted, documents land at the root of the worker's profile
134
- * (current default behavior). When supplied, the folder must exist, be in an
135
- * active state, be provisioned for the target worker, and the caller must have
136
- * UPLOAD permission on it — otherwise behavior is governed by `on_invalid_folder`.
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
 
@@ -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.58'; // x-release-please-version
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.58";
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.58";
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.58'; // x-release-please-version
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.58'; // x-release-please-version
1
+ export const VERSION = '0.2.0-alpha.59'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map