@ericsanchezok/synergy-sdk 1.2.2 → 1.2.4
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/gen/sdk.gen.d.ts +3 -2
- package/dist/gen/sdk.gen.js +3 -2
- package/dist/gen/types.gen.d.ts +2 -0
- package/package.json +1 -1
package/dist/gen/sdk.gen.d.ts
CHANGED
|
@@ -463,9 +463,9 @@ export declare class Scope extends HeyApiClient {
|
|
|
463
463
|
directory?: string;
|
|
464
464
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<ScopeCurrentResponses, unknown, ThrowOnError, "fields">;
|
|
465
465
|
/**
|
|
466
|
-
*
|
|
466
|
+
* Archive scope
|
|
467
467
|
*
|
|
468
|
-
*
|
|
468
|
+
* Archive a scope. Archived scopes are hidden from the list but can be restored.
|
|
469
469
|
*/
|
|
470
470
|
remove<ThrowOnError extends boolean = false>(parameters: {
|
|
471
471
|
scopeID: string;
|
|
@@ -484,6 +484,7 @@ export declare class Scope extends HeyApiClient {
|
|
|
484
484
|
url?: string;
|
|
485
485
|
color?: string;
|
|
486
486
|
};
|
|
487
|
+
archived?: number | null;
|
|
487
488
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<ScopeUpdateResponses, ScopeUpdateErrors, ThrowOnError, "fields">;
|
|
488
489
|
}
|
|
489
490
|
export declare class Git extends HeyApiClient {
|
package/dist/gen/sdk.gen.js
CHANGED
|
@@ -905,9 +905,9 @@ export class Scope extends HeyApiClient {
|
|
|
905
905
|
});
|
|
906
906
|
}
|
|
907
907
|
/**
|
|
908
|
-
*
|
|
908
|
+
* Archive scope
|
|
909
909
|
*
|
|
910
|
-
*
|
|
910
|
+
* Archive a scope. Archived scopes are hidden from the list but can be restored.
|
|
911
911
|
*/
|
|
912
912
|
remove(parameters, options) {
|
|
913
913
|
const params = buildClientParams([parameters], [
|
|
@@ -937,6 +937,7 @@ export class Scope extends HeyApiClient {
|
|
|
937
937
|
{ in: "query", key: "directory" },
|
|
938
938
|
{ in: "body", key: "name" },
|
|
939
939
|
{ in: "body", key: "icon" },
|
|
940
|
+
{ in: "body", key: "archived" },
|
|
940
941
|
],
|
|
941
942
|
},
|
|
942
943
|
]);
|
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -271,6 +271,7 @@ export type Scope = {
|
|
|
271
271
|
created: number;
|
|
272
272
|
updated: number;
|
|
273
273
|
initialized?: number;
|
|
274
|
+
archived?: number;
|
|
274
275
|
};
|
|
275
276
|
sandboxes: Array<string>;
|
|
276
277
|
};
|
|
@@ -3490,6 +3491,7 @@ export type ScopeUpdateData = {
|
|
|
3490
3491
|
url?: string;
|
|
3491
3492
|
color?: string;
|
|
3492
3493
|
};
|
|
3494
|
+
archived?: number | null;
|
|
3493
3495
|
};
|
|
3494
3496
|
path: {
|
|
3495
3497
|
scopeID: string;
|